Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net
[linux-2.6-microblaze.git] / drivers / net / ethernet / mellanox / mlx5 / core / eswitch_offloads.c
1 /*
2  * Copyright (c) 2016, Mellanox Technologies. All rights reserved.
3  *
4  * This software is available to you under a choice of one of two
5  * licenses.  You may choose to be licensed under the terms of the GNU
6  * General Public License (GPL) Version 2, available from the file
7  * COPYING in the main directory of this source tree, or the
8  * OpenIB.org BSD license below:
9  *
10  *     Redistribution and use in source and binary forms, with or
11  *     without modification, are permitted provided that the following
12  *     conditions are met:
13  *
14  *      - Redistributions of source code must retain the above
15  *        copyright notice, this list of conditions and the following
16  *        disclaimer.
17  *
18  *      - Redistributions in binary form must reproduce the above
19  *        copyright notice, this list of conditions and the following
20  *        disclaimer in the documentation and/or other materials
21  *        provided with the distribution.
22  *
23  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
24  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
25  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
26  * NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
27  * BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN
28  * ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN
29  * CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
30  * SOFTWARE.
31  */
32
33 #include <linux/etherdevice.h>
34 #include <linux/mlx5/driver.h>
35 #include <linux/mlx5/mlx5_ifc.h>
36 #include <linux/mlx5/vport.h>
37 #include <linux/mlx5/fs.h>
38 #include "mlx5_core.h"
39 #include "eswitch.h"
40
41 enum {
42         FDB_FAST_PATH = 0,
43         FDB_SLOW_PATH
44 };
45
46 struct mlx5_flow_handle *
47 mlx5_eswitch_add_offloaded_rule(struct mlx5_eswitch *esw,
48                                 struct mlx5_flow_spec *spec,
49                                 struct mlx5_esw_flow_attr *attr)
50 {
51         struct mlx5_flow_destination dest[2] = {};
52         struct mlx5_flow_act flow_act = {0};
53         struct mlx5_fc *counter = NULL;
54         struct mlx5_flow_handle *rule;
55         void *misc;
56         int i = 0;
57
58         if (esw->mode != SRIOV_OFFLOADS)
59                 return ERR_PTR(-EOPNOTSUPP);
60
61         /* per flow vlan pop/push is emulated, don't set that into the firmware */
62         flow_act.action = attr->action & ~(MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH | MLX5_FLOW_CONTEXT_ACTION_VLAN_POP);
63
64         if (flow_act.action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST) {
65                 dest[i].type = MLX5_FLOW_DESTINATION_TYPE_VPORT;
66                 dest[i].vport_num = attr->out_rep->vport;
67                 i++;
68         }
69         if (flow_act.action & MLX5_FLOW_CONTEXT_ACTION_COUNT) {
70                 counter = mlx5_fc_create(esw->dev, true);
71                 if (IS_ERR(counter))
72                         return ERR_CAST(counter);
73                 dest[i].type = MLX5_FLOW_DESTINATION_TYPE_COUNTER;
74                 dest[i].counter = counter;
75                 i++;
76         }
77
78         misc = MLX5_ADDR_OF(fte_match_param, spec->match_value, misc_parameters);
79         MLX5_SET(fte_match_set_misc, misc, source_port, attr->in_rep->vport);
80
81         misc = MLX5_ADDR_OF(fte_match_param, spec->match_criteria, misc_parameters);
82         MLX5_SET_TO_ONES(fte_match_set_misc, misc, source_port);
83
84         spec->match_criteria_enable = MLX5_MATCH_OUTER_HEADERS |
85                                       MLX5_MATCH_MISC_PARAMETERS;
86         if (flow_act.action & MLX5_FLOW_CONTEXT_ACTION_DECAP)
87                 spec->match_criteria_enable |= MLX5_MATCH_INNER_HEADERS;
88
89         if (attr->encap)
90                 flow_act.encap_id = attr->encap->encap_id;
91
92         rule = mlx5_add_flow_rules((struct mlx5_flow_table *)esw->fdb_table.fdb,
93                                    spec, &flow_act, dest, i);
94         if (IS_ERR(rule))
95                 mlx5_fc_destroy(esw->dev, counter);
96
97         return rule;
98 }
99
100 static int esw_set_global_vlan_pop(struct mlx5_eswitch *esw, u8 val)
101 {
102         struct mlx5_eswitch_rep *rep;
103         int vf_vport, err = 0;
104
105         esw_debug(esw->dev, "%s applying global %s policy\n", __func__, val ? "pop" : "none");
106         for (vf_vport = 1; vf_vport < esw->enabled_vports; vf_vport++) {
107                 rep = &esw->offloads.vport_reps[vf_vport];
108                 if (!rep->valid)
109                         continue;
110
111                 err = __mlx5_eswitch_set_vport_vlan(esw, rep->vport, 0, 0, val);
112                 if (err)
113                         goto out;
114         }
115
116 out:
117         return err;
118 }
119
120 static struct mlx5_eswitch_rep *
121 esw_vlan_action_get_vport(struct mlx5_esw_flow_attr *attr, bool push, bool pop)
122 {
123         struct mlx5_eswitch_rep *in_rep, *out_rep, *vport = NULL;
124
125         in_rep  = attr->in_rep;
126         out_rep = attr->out_rep;
127
128         if (push)
129                 vport = in_rep;
130         else if (pop)
131                 vport = out_rep;
132         else
133                 vport = in_rep;
134
135         return vport;
136 }
137
138 static int esw_add_vlan_action_check(struct mlx5_esw_flow_attr *attr,
139                                      bool push, bool pop, bool fwd)
140 {
141         struct mlx5_eswitch_rep *in_rep, *out_rep;
142
143         if ((push || pop) && !fwd)
144                 goto out_notsupp;
145
146         in_rep  = attr->in_rep;
147         out_rep = attr->out_rep;
148
149         if (push && in_rep->vport == FDB_UPLINK_VPORT)
150                 goto out_notsupp;
151
152         if (pop && out_rep->vport == FDB_UPLINK_VPORT)
153                 goto out_notsupp;
154
155         /* vport has vlan push configured, can't offload VF --> wire rules w.o it */
156         if (!push && !pop && fwd)
157                 if (in_rep->vlan && out_rep->vport == FDB_UPLINK_VPORT)
158                         goto out_notsupp;
159
160         /* protects against (1) setting rules with different vlans to push and
161          * (2) setting rules w.o vlans (attr->vlan = 0) && w. vlans to push (!= 0)
162          */
163         if (push && in_rep->vlan_refcount && (in_rep->vlan != attr->vlan))
164                 goto out_notsupp;
165
166         return 0;
167
168 out_notsupp:
169         return -ENOTSUPP;
170 }
171
172 int mlx5_eswitch_add_vlan_action(struct mlx5_eswitch *esw,
173                                  struct mlx5_esw_flow_attr *attr)
174 {
175         struct offloads_fdb *offloads = &esw->fdb_table.offloads;
176         struct mlx5_eswitch_rep *vport = NULL;
177         bool push, pop, fwd;
178         int err = 0;
179
180         push = !!(attr->action & MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH);
181         pop  = !!(attr->action & MLX5_FLOW_CONTEXT_ACTION_VLAN_POP);
182         fwd  = !!(attr->action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST);
183
184         err = esw_add_vlan_action_check(attr, push, pop, fwd);
185         if (err)
186                 return err;
187
188         attr->vlan_handled = false;
189
190         vport = esw_vlan_action_get_vport(attr, push, pop);
191
192         if (!push && !pop && fwd) {
193                 /* tracks VF --> wire rules without vlan push action */
194                 if (attr->out_rep->vport == FDB_UPLINK_VPORT) {
195                         vport->vlan_refcount++;
196                         attr->vlan_handled = true;
197                 }
198
199                 return 0;
200         }
201
202         if (!push && !pop)
203                 return 0;
204
205         if (!(offloads->vlan_push_pop_refcount)) {
206                 /* it's the 1st vlan rule, apply global vlan pop policy */
207                 err = esw_set_global_vlan_pop(esw, SET_VLAN_STRIP);
208                 if (err)
209                         goto out;
210         }
211         offloads->vlan_push_pop_refcount++;
212
213         if (push) {
214                 if (vport->vlan_refcount)
215                         goto skip_set_push;
216
217                 err = __mlx5_eswitch_set_vport_vlan(esw, vport->vport, attr->vlan, 0,
218                                                     SET_VLAN_INSERT | SET_VLAN_STRIP);
219                 if (err)
220                         goto out;
221                 vport->vlan = attr->vlan;
222 skip_set_push:
223                 vport->vlan_refcount++;
224         }
225 out:
226         if (!err)
227                 attr->vlan_handled = true;
228         return err;
229 }
230
231 int mlx5_eswitch_del_vlan_action(struct mlx5_eswitch *esw,
232                                  struct mlx5_esw_flow_attr *attr)
233 {
234         struct offloads_fdb *offloads = &esw->fdb_table.offloads;
235         struct mlx5_eswitch_rep *vport = NULL;
236         bool push, pop, fwd;
237         int err = 0;
238
239         if (!attr->vlan_handled)
240                 return 0;
241
242         push = !!(attr->action & MLX5_FLOW_CONTEXT_ACTION_VLAN_PUSH);
243         pop  = !!(attr->action & MLX5_FLOW_CONTEXT_ACTION_VLAN_POP);
244         fwd  = !!(attr->action & MLX5_FLOW_CONTEXT_ACTION_FWD_DEST);
245
246         vport = esw_vlan_action_get_vport(attr, push, pop);
247
248         if (!push && !pop && fwd) {
249                 /* tracks VF --> wire rules without vlan push action */
250                 if (attr->out_rep->vport == FDB_UPLINK_VPORT)
251                         vport->vlan_refcount--;
252
253                 return 0;
254         }
255
256         if (push) {
257                 vport->vlan_refcount--;
258                 if (vport->vlan_refcount)
259                         goto skip_unset_push;
260
261                 vport->vlan = 0;
262                 err = __mlx5_eswitch_set_vport_vlan(esw, vport->vport,
263                                                     0, 0, SET_VLAN_STRIP);
264                 if (err)
265                         goto out;
266         }
267
268 skip_unset_push:
269         offloads->vlan_push_pop_refcount--;
270         if (offloads->vlan_push_pop_refcount)
271                 return 0;
272
273         /* no more vlan rules, stop global vlan pop policy */
274         err = esw_set_global_vlan_pop(esw, 0);
275
276 out:
277         return err;
278 }
279
280 static struct mlx5_flow_handle *
281 mlx5_eswitch_add_send_to_vport_rule(struct mlx5_eswitch *esw, int vport, u32 sqn)
282 {
283         struct mlx5_flow_act flow_act = {0};
284         struct mlx5_flow_destination dest;
285         struct mlx5_flow_handle *flow_rule;
286         struct mlx5_flow_spec *spec;
287         void *misc;
288
289         spec = mlx5_vzalloc(sizeof(*spec));
290         if (!spec) {
291                 esw_warn(esw->dev, "FDB: Failed to alloc match parameters\n");
292                 flow_rule = ERR_PTR(-ENOMEM);
293                 goto out;
294         }
295
296         misc = MLX5_ADDR_OF(fte_match_param, spec->match_value, misc_parameters);
297         MLX5_SET(fte_match_set_misc, misc, source_sqn, sqn);
298         MLX5_SET(fte_match_set_misc, misc, source_port, 0x0); /* source vport is 0 */
299
300         misc = MLX5_ADDR_OF(fte_match_param, spec->match_criteria, misc_parameters);
301         MLX5_SET_TO_ONES(fte_match_set_misc, misc, source_sqn);
302         MLX5_SET_TO_ONES(fte_match_set_misc, misc, source_port);
303
304         spec->match_criteria_enable = MLX5_MATCH_MISC_PARAMETERS;
305         dest.type = MLX5_FLOW_DESTINATION_TYPE_VPORT;
306         dest.vport_num = vport;
307         flow_act.action = MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
308
309         flow_rule = mlx5_add_flow_rules(esw->fdb_table.offloads.fdb, spec,
310                                         &flow_act, &dest, 1);
311         if (IS_ERR(flow_rule))
312                 esw_warn(esw->dev, "FDB: Failed to add send to vport rule err %ld\n", PTR_ERR(flow_rule));
313 out:
314         kvfree(spec);
315         return flow_rule;
316 }
317
318 void mlx5_eswitch_sqs2vport_stop(struct mlx5_eswitch *esw,
319                                  struct mlx5_eswitch_rep *rep)
320 {
321         struct mlx5_esw_sq *esw_sq, *tmp;
322
323         if (esw->mode != SRIOV_OFFLOADS)
324                 return;
325
326         list_for_each_entry_safe(esw_sq, tmp, &rep->vport_sqs_list, list) {
327                 mlx5_del_flow_rules(esw_sq->send_to_vport_rule);
328                 list_del(&esw_sq->list);
329                 kfree(esw_sq);
330         }
331 }
332
333 int mlx5_eswitch_sqs2vport_start(struct mlx5_eswitch *esw,
334                                  struct mlx5_eswitch_rep *rep,
335                                  u16 *sqns_array, int sqns_num)
336 {
337         struct mlx5_flow_handle *flow_rule;
338         struct mlx5_esw_sq *esw_sq;
339         int err;
340         int i;
341
342         if (esw->mode != SRIOV_OFFLOADS)
343                 return 0;
344
345         for (i = 0; i < sqns_num; i++) {
346                 esw_sq = kzalloc(sizeof(*esw_sq), GFP_KERNEL);
347                 if (!esw_sq) {
348                         err = -ENOMEM;
349                         goto out_err;
350                 }
351
352                 /* Add re-inject rule to the PF/representor sqs */
353                 flow_rule = mlx5_eswitch_add_send_to_vport_rule(esw,
354                                                                 rep->vport,
355                                                                 sqns_array[i]);
356                 if (IS_ERR(flow_rule)) {
357                         err = PTR_ERR(flow_rule);
358                         kfree(esw_sq);
359                         goto out_err;
360                 }
361                 esw_sq->send_to_vport_rule = flow_rule;
362                 list_add(&esw_sq->list, &rep->vport_sqs_list);
363         }
364         return 0;
365
366 out_err:
367         mlx5_eswitch_sqs2vport_stop(esw, rep);
368         return err;
369 }
370
371 static int esw_add_fdb_miss_rule(struct mlx5_eswitch *esw)
372 {
373         struct mlx5_flow_act flow_act = {0};
374         struct mlx5_flow_destination dest;
375         struct mlx5_flow_handle *flow_rule = NULL;
376         struct mlx5_flow_spec *spec;
377         int err = 0;
378
379         spec = mlx5_vzalloc(sizeof(*spec));
380         if (!spec) {
381                 esw_warn(esw->dev, "FDB: Failed to alloc match parameters\n");
382                 err = -ENOMEM;
383                 goto out;
384         }
385
386         dest.type = MLX5_FLOW_DESTINATION_TYPE_VPORT;
387         dest.vport_num = 0;
388         flow_act.action = MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
389
390         flow_rule = mlx5_add_flow_rules(esw->fdb_table.offloads.fdb, spec,
391                                         &flow_act, &dest, 1);
392         if (IS_ERR(flow_rule)) {
393                 err = PTR_ERR(flow_rule);
394                 esw_warn(esw->dev,  "FDB: Failed to add miss flow rule err %d\n", err);
395                 goto out;
396         }
397
398         esw->fdb_table.offloads.miss_rule = flow_rule;
399 out:
400         kvfree(spec);
401         return err;
402 }
403
404 #define MAX_PF_SQ 256
405 #define ESW_OFFLOADS_NUM_ENTRIES (1 << 13) /* 8K */
406 #define ESW_OFFLOADS_NUM_GROUPS  4
407
408 static int esw_create_offloads_fdb_table(struct mlx5_eswitch *esw, int nvports)
409 {
410         int inlen = MLX5_ST_SZ_BYTES(create_flow_group_in);
411         struct mlx5_core_dev *dev = esw->dev;
412         struct mlx5_flow_namespace *root_ns;
413         struct mlx5_flow_table *fdb = NULL;
414         struct mlx5_flow_group *g;
415         u32 *flow_group_in;
416         void *match_criteria;
417         int table_size, ix, err = 0;
418         u32 flags = 0;
419
420         flow_group_in = mlx5_vzalloc(inlen);
421         if (!flow_group_in)
422                 return -ENOMEM;
423
424         root_ns = mlx5_get_flow_namespace(dev, MLX5_FLOW_NAMESPACE_FDB);
425         if (!root_ns) {
426                 esw_warn(dev, "Failed to get FDB flow namespace\n");
427                 goto ns_err;
428         }
429
430         esw_debug(dev, "Create offloads FDB table, log_max_size(%d)\n",
431                   MLX5_CAP_ESW_FLOWTABLE_FDB(dev, log_max_ft_size));
432
433         if (MLX5_CAP_ESW_FLOWTABLE_FDB(dev, encap) &&
434             MLX5_CAP_ESW_FLOWTABLE_FDB(dev, decap))
435                 flags |= MLX5_FLOW_TABLE_TUNNEL_EN;
436
437         fdb = mlx5_create_auto_grouped_flow_table(root_ns, FDB_FAST_PATH,
438                                                   ESW_OFFLOADS_NUM_ENTRIES,
439                                                   ESW_OFFLOADS_NUM_GROUPS, 0,
440                                                   flags);
441         if (IS_ERR(fdb)) {
442                 err = PTR_ERR(fdb);
443                 esw_warn(dev, "Failed to create Fast path FDB Table err %d\n", err);
444                 goto fast_fdb_err;
445         }
446         esw->fdb_table.fdb = fdb;
447
448         table_size = nvports + MAX_PF_SQ + 1;
449         fdb = mlx5_create_flow_table(root_ns, FDB_SLOW_PATH, table_size, 0, 0);
450         if (IS_ERR(fdb)) {
451                 err = PTR_ERR(fdb);
452                 esw_warn(dev, "Failed to create slow path FDB Table err %d\n", err);
453                 goto slow_fdb_err;
454         }
455         esw->fdb_table.offloads.fdb = fdb;
456
457         /* create send-to-vport group */
458         memset(flow_group_in, 0, inlen);
459         MLX5_SET(create_flow_group_in, flow_group_in, match_criteria_enable,
460                  MLX5_MATCH_MISC_PARAMETERS);
461
462         match_criteria = MLX5_ADDR_OF(create_flow_group_in, flow_group_in, match_criteria);
463
464         MLX5_SET_TO_ONES(fte_match_param, match_criteria, misc_parameters.source_sqn);
465         MLX5_SET_TO_ONES(fte_match_param, match_criteria, misc_parameters.source_port);
466
467         ix = nvports + MAX_PF_SQ;
468         MLX5_SET(create_flow_group_in, flow_group_in, start_flow_index, 0);
469         MLX5_SET(create_flow_group_in, flow_group_in, end_flow_index, ix - 1);
470
471         g = mlx5_create_flow_group(fdb, flow_group_in);
472         if (IS_ERR(g)) {
473                 err = PTR_ERR(g);
474                 esw_warn(dev, "Failed to create send-to-vport flow group err(%d)\n", err);
475                 goto send_vport_err;
476         }
477         esw->fdb_table.offloads.send_to_vport_grp = g;
478
479         /* create miss group */
480         memset(flow_group_in, 0, inlen);
481         MLX5_SET(create_flow_group_in, flow_group_in, match_criteria_enable, 0);
482
483         MLX5_SET(create_flow_group_in, flow_group_in, start_flow_index, ix);
484         MLX5_SET(create_flow_group_in, flow_group_in, end_flow_index, ix + 1);
485
486         g = mlx5_create_flow_group(fdb, flow_group_in);
487         if (IS_ERR(g)) {
488                 err = PTR_ERR(g);
489                 esw_warn(dev, "Failed to create miss flow group err(%d)\n", err);
490                 goto miss_err;
491         }
492         esw->fdb_table.offloads.miss_grp = g;
493
494         err = esw_add_fdb_miss_rule(esw);
495         if (err)
496                 goto miss_rule_err;
497
498         return 0;
499
500 miss_rule_err:
501         mlx5_destroy_flow_group(esw->fdb_table.offloads.miss_grp);
502 miss_err:
503         mlx5_destroy_flow_group(esw->fdb_table.offloads.send_to_vport_grp);
504 send_vport_err:
505         mlx5_destroy_flow_table(esw->fdb_table.offloads.fdb);
506 slow_fdb_err:
507         mlx5_destroy_flow_table(esw->fdb_table.fdb);
508 fast_fdb_err:
509 ns_err:
510         kvfree(flow_group_in);
511         return err;
512 }
513
514 static void esw_destroy_offloads_fdb_table(struct mlx5_eswitch *esw)
515 {
516         if (!esw->fdb_table.fdb)
517                 return;
518
519         esw_debug(esw->dev, "Destroy offloads FDB Table\n");
520         mlx5_del_flow_rules(esw->fdb_table.offloads.miss_rule);
521         mlx5_destroy_flow_group(esw->fdb_table.offloads.send_to_vport_grp);
522         mlx5_destroy_flow_group(esw->fdb_table.offloads.miss_grp);
523
524         mlx5_destroy_flow_table(esw->fdb_table.offloads.fdb);
525         mlx5_destroy_flow_table(esw->fdb_table.fdb);
526 }
527
528 static int esw_create_offloads_table(struct mlx5_eswitch *esw)
529 {
530         struct mlx5_flow_namespace *ns;
531         struct mlx5_flow_table *ft_offloads;
532         struct mlx5_core_dev *dev = esw->dev;
533         int err = 0;
534
535         ns = mlx5_get_flow_namespace(dev, MLX5_FLOW_NAMESPACE_OFFLOADS);
536         if (!ns) {
537                 esw_warn(esw->dev, "Failed to get offloads flow namespace\n");
538                 return -ENOMEM;
539         }
540
541         ft_offloads = mlx5_create_flow_table(ns, 0, dev->priv.sriov.num_vfs + 2, 0, 0);
542         if (IS_ERR(ft_offloads)) {
543                 err = PTR_ERR(ft_offloads);
544                 esw_warn(esw->dev, "Failed to create offloads table, err %d\n", err);
545                 return err;
546         }
547
548         esw->offloads.ft_offloads = ft_offloads;
549         return 0;
550 }
551
552 static void esw_destroy_offloads_table(struct mlx5_eswitch *esw)
553 {
554         struct mlx5_esw_offload *offloads = &esw->offloads;
555
556         mlx5_destroy_flow_table(offloads->ft_offloads);
557 }
558
559 static int esw_create_vport_rx_group(struct mlx5_eswitch *esw)
560 {
561         int inlen = MLX5_ST_SZ_BYTES(create_flow_group_in);
562         struct mlx5_flow_group *g;
563         struct mlx5_priv *priv = &esw->dev->priv;
564         u32 *flow_group_in;
565         void *match_criteria, *misc;
566         int err = 0;
567         int nvports = priv->sriov.num_vfs + 2;
568
569         flow_group_in = mlx5_vzalloc(inlen);
570         if (!flow_group_in)
571                 return -ENOMEM;
572
573         /* create vport rx group */
574         memset(flow_group_in, 0, inlen);
575         MLX5_SET(create_flow_group_in, flow_group_in, match_criteria_enable,
576                  MLX5_MATCH_MISC_PARAMETERS);
577
578         match_criteria = MLX5_ADDR_OF(create_flow_group_in, flow_group_in, match_criteria);
579         misc = MLX5_ADDR_OF(fte_match_param, match_criteria, misc_parameters);
580         MLX5_SET_TO_ONES(fte_match_set_misc, misc, source_port);
581
582         MLX5_SET(create_flow_group_in, flow_group_in, start_flow_index, 0);
583         MLX5_SET(create_flow_group_in, flow_group_in, end_flow_index, nvports - 1);
584
585         g = mlx5_create_flow_group(esw->offloads.ft_offloads, flow_group_in);
586
587         if (IS_ERR(g)) {
588                 err = PTR_ERR(g);
589                 mlx5_core_warn(esw->dev, "Failed to create vport rx group err %d\n", err);
590                 goto out;
591         }
592
593         esw->offloads.vport_rx_group = g;
594 out:
595         kfree(flow_group_in);
596         return err;
597 }
598
599 static void esw_destroy_vport_rx_group(struct mlx5_eswitch *esw)
600 {
601         mlx5_destroy_flow_group(esw->offloads.vport_rx_group);
602 }
603
604 struct mlx5_flow_handle *
605 mlx5_eswitch_create_vport_rx_rule(struct mlx5_eswitch *esw, int vport, u32 tirn)
606 {
607         struct mlx5_flow_act flow_act = {0};
608         struct mlx5_flow_destination dest;
609         struct mlx5_flow_handle *flow_rule;
610         struct mlx5_flow_spec *spec;
611         void *misc;
612
613         spec = mlx5_vzalloc(sizeof(*spec));
614         if (!spec) {
615                 esw_warn(esw->dev, "Failed to alloc match parameters\n");
616                 flow_rule = ERR_PTR(-ENOMEM);
617                 goto out;
618         }
619
620         misc = MLX5_ADDR_OF(fte_match_param, spec->match_value, misc_parameters);
621         MLX5_SET(fte_match_set_misc, misc, source_port, vport);
622
623         misc = MLX5_ADDR_OF(fte_match_param, spec->match_criteria, misc_parameters);
624         MLX5_SET_TO_ONES(fte_match_set_misc, misc, source_port);
625
626         spec->match_criteria_enable = MLX5_MATCH_MISC_PARAMETERS;
627         dest.type = MLX5_FLOW_DESTINATION_TYPE_TIR;
628         dest.tir_num = tirn;
629
630         flow_act.action = MLX5_FLOW_CONTEXT_ACTION_FWD_DEST;
631         flow_rule = mlx5_add_flow_rules(esw->offloads.ft_offloads, spec,
632                                        &flow_act, &dest, 1);
633         if (IS_ERR(flow_rule)) {
634                 esw_warn(esw->dev, "fs offloads: Failed to add vport rx rule err %ld\n", PTR_ERR(flow_rule));
635                 goto out;
636         }
637
638 out:
639         kvfree(spec);
640         return flow_rule;
641 }
642
643 static int esw_offloads_start(struct mlx5_eswitch *esw)
644 {
645         int err, err1, num_vfs = esw->dev->priv.sriov.num_vfs;
646
647         if (esw->mode != SRIOV_LEGACY) {
648                 esw_warn(esw->dev, "Can't set offloads mode, SRIOV legacy not enabled\n");
649                 return -EINVAL;
650         }
651
652         mlx5_eswitch_disable_sriov(esw);
653         err = mlx5_eswitch_enable_sriov(esw, num_vfs, SRIOV_OFFLOADS);
654         if (err) {
655                 esw_warn(esw->dev, "Failed setting eswitch to offloads, err %d\n", err);
656                 err1 = mlx5_eswitch_enable_sriov(esw, num_vfs, SRIOV_LEGACY);
657                 if (err1)
658                         esw_warn(esw->dev, "Failed setting eswitch back to legacy, err %d\n", err);
659         }
660         return err;
661 }
662
663 int esw_offloads_init(struct mlx5_eswitch *esw, int nvports)
664 {
665         struct mlx5_eswitch_rep *rep;
666         int vport;
667         int err;
668
669         err = esw_create_offloads_fdb_table(esw, nvports);
670         if (err)
671                 return err;
672
673         err = esw_create_offloads_table(esw);
674         if (err)
675                 goto create_ft_err;
676
677         err = esw_create_vport_rx_group(esw);
678         if (err)
679                 goto create_fg_err;
680
681         for (vport = 0; vport < nvports; vport++) {
682                 rep = &esw->offloads.vport_reps[vport];
683                 if (!rep->valid)
684                         continue;
685
686                 err = rep->load(esw, rep);
687                 if (err)
688                         goto err_reps;
689         }
690         return 0;
691
692 err_reps:
693         for (vport--; vport >= 0; vport--) {
694                 rep = &esw->offloads.vport_reps[vport];
695                 if (!rep->valid)
696                         continue;
697                 rep->unload(esw, rep);
698         }
699         esw_destroy_vport_rx_group(esw);
700
701 create_fg_err:
702         esw_destroy_offloads_table(esw);
703
704 create_ft_err:
705         esw_destroy_offloads_fdb_table(esw);
706         return err;
707 }
708
709 static int esw_offloads_stop(struct mlx5_eswitch *esw)
710 {
711         int err, err1, num_vfs = esw->dev->priv.sriov.num_vfs;
712
713         mlx5_eswitch_disable_sriov(esw);
714         err = mlx5_eswitch_enable_sriov(esw, num_vfs, SRIOV_LEGACY);
715         if (err) {
716                 esw_warn(esw->dev, "Failed setting eswitch to legacy, err %d\n", err);
717                 err1 = mlx5_eswitch_enable_sriov(esw, num_vfs, SRIOV_OFFLOADS);
718                 if (err1)
719                         esw_warn(esw->dev, "Failed setting eswitch back to offloads, err %d\n", err);
720         }
721
722         return err;
723 }
724
725 void esw_offloads_cleanup(struct mlx5_eswitch *esw, int nvports)
726 {
727         struct mlx5_eswitch_rep *rep;
728         int vport;
729
730         for (vport = 0; vport < nvports; vport++) {
731                 rep = &esw->offloads.vport_reps[vport];
732                 if (!rep->valid)
733                         continue;
734                 rep->unload(esw, rep);
735         }
736
737         esw_destroy_vport_rx_group(esw);
738         esw_destroy_offloads_table(esw);
739         esw_destroy_offloads_fdb_table(esw);
740 }
741
742 static int esw_mode_from_devlink(u16 mode, u16 *mlx5_mode)
743 {
744         switch (mode) {
745         case DEVLINK_ESWITCH_MODE_LEGACY:
746                 *mlx5_mode = SRIOV_LEGACY;
747                 break;
748         case DEVLINK_ESWITCH_MODE_SWITCHDEV:
749                 *mlx5_mode = SRIOV_OFFLOADS;
750                 break;
751         default:
752                 return -EINVAL;
753         }
754
755         return 0;
756 }
757
758 static int esw_mode_to_devlink(u16 mlx5_mode, u16 *mode)
759 {
760         switch (mlx5_mode) {
761         case SRIOV_LEGACY:
762                 *mode = DEVLINK_ESWITCH_MODE_LEGACY;
763                 break;
764         case SRIOV_OFFLOADS:
765                 *mode = DEVLINK_ESWITCH_MODE_SWITCHDEV;
766                 break;
767         default:
768                 return -EINVAL;
769         }
770
771         return 0;
772 }
773
774 int mlx5_devlink_eswitch_mode_set(struct devlink *devlink, u16 mode)
775 {
776         struct mlx5_core_dev *dev;
777         u16 cur_mlx5_mode, mlx5_mode = 0;
778
779         dev = devlink_priv(devlink);
780
781         if (!MLX5_CAP_GEN(dev, vport_group_manager))
782                 return -EOPNOTSUPP;
783
784         cur_mlx5_mode = dev->priv.eswitch->mode;
785
786         if (cur_mlx5_mode == SRIOV_NONE)
787                 return -EOPNOTSUPP;
788
789         if (esw_mode_from_devlink(mode, &mlx5_mode))
790                 return -EINVAL;
791
792         if (cur_mlx5_mode == mlx5_mode)
793                 return 0;
794
795         if (mode == DEVLINK_ESWITCH_MODE_SWITCHDEV)
796                 return esw_offloads_start(dev->priv.eswitch);
797         else if (mode == DEVLINK_ESWITCH_MODE_LEGACY)
798                 return esw_offloads_stop(dev->priv.eswitch);
799         else
800                 return -EINVAL;
801 }
802
803 int mlx5_devlink_eswitch_mode_get(struct devlink *devlink, u16 *mode)
804 {
805         struct mlx5_core_dev *dev;
806
807         dev = devlink_priv(devlink);
808
809         if (!MLX5_CAP_GEN(dev, vport_group_manager))
810                 return -EOPNOTSUPP;
811
812         if (dev->priv.eswitch->mode == SRIOV_NONE)
813                 return -EOPNOTSUPP;
814
815         return esw_mode_to_devlink(dev->priv.eswitch->mode, mode);
816 }
817
818 void mlx5_eswitch_register_vport_rep(struct mlx5_eswitch *esw,
819                                      int vport_index,
820                                      struct mlx5_eswitch_rep *__rep)
821 {
822         struct mlx5_esw_offload *offloads = &esw->offloads;
823         struct mlx5_eswitch_rep *rep;
824
825         rep = &offloads->vport_reps[vport_index];
826
827         memset(rep, 0, sizeof(*rep));
828
829         rep->load   = __rep->load;
830         rep->unload = __rep->unload;
831         rep->vport  = __rep->vport;
832         rep->priv_data = __rep->priv_data;
833         ether_addr_copy(rep->hw_id, __rep->hw_id);
834
835         INIT_LIST_HEAD(&rep->vport_sqs_list);
836         rep->valid = true;
837 }
838
839 void mlx5_eswitch_unregister_vport_rep(struct mlx5_eswitch *esw,
840                                        int vport_index)
841 {
842         struct mlx5_esw_offload *offloads = &esw->offloads;
843         struct mlx5_eswitch_rep *rep;
844
845         rep = &offloads->vport_reps[vport_index];
846
847         if (esw->mode == SRIOV_OFFLOADS && esw->vports[vport_index].enabled)
848                 rep->unload(esw, rep);
849
850         rep->valid = false;
851 }