Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
[linux-2.6-microblaze.git] / drivers / net / ethernet / mellanox / mlx5 / core / lag.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/netdevice.h>
34 #include <linux/mlx5/driver.h>
35 #include <linux/mlx5/vport.h>
36 #include "mlx5_core.h"
37 #include "eswitch.h"
38 #include "lag.h"
39 #include "lag_mp.h"
40
41 /* General purpose, use for short periods of time.
42  * Beware of lock dependencies (preferably, no locks should be acquired
43  * under it).
44  */
45 static DEFINE_MUTEX(lag_mutex);
46
47 static int mlx5_cmd_create_lag(struct mlx5_core_dev *dev, u8 remap_port1,
48                                u8 remap_port2)
49 {
50         u32 in[MLX5_ST_SZ_DW(create_lag_in)] = {};
51         void *lag_ctx = MLX5_ADDR_OF(create_lag_in, in, ctx);
52
53         MLX5_SET(create_lag_in, in, opcode, MLX5_CMD_OP_CREATE_LAG);
54
55         MLX5_SET(lagc, lag_ctx, tx_remap_affinity_1, remap_port1);
56         MLX5_SET(lagc, lag_ctx, tx_remap_affinity_2, remap_port2);
57
58         return mlx5_cmd_exec_in(dev, create_lag, in);
59 }
60
61 static int mlx5_cmd_modify_lag(struct mlx5_core_dev *dev, u8 remap_port1,
62                                u8 remap_port2)
63 {
64         u32 in[MLX5_ST_SZ_DW(modify_lag_in)] = {};
65         void *lag_ctx = MLX5_ADDR_OF(modify_lag_in, in, ctx);
66
67         MLX5_SET(modify_lag_in, in, opcode, MLX5_CMD_OP_MODIFY_LAG);
68         MLX5_SET(modify_lag_in, in, field_select, 0x1);
69
70         MLX5_SET(lagc, lag_ctx, tx_remap_affinity_1, remap_port1);
71         MLX5_SET(lagc, lag_ctx, tx_remap_affinity_2, remap_port2);
72
73         return mlx5_cmd_exec_in(dev, modify_lag, in);
74 }
75
76 int mlx5_cmd_create_vport_lag(struct mlx5_core_dev *dev)
77 {
78         u32 in[MLX5_ST_SZ_DW(create_vport_lag_in)] = {};
79
80         MLX5_SET(create_vport_lag_in, in, opcode, MLX5_CMD_OP_CREATE_VPORT_LAG);
81
82         return mlx5_cmd_exec_in(dev, create_vport_lag, in);
83 }
84 EXPORT_SYMBOL(mlx5_cmd_create_vport_lag);
85
86 int mlx5_cmd_destroy_vport_lag(struct mlx5_core_dev *dev)
87 {
88         u32 in[MLX5_ST_SZ_DW(destroy_vport_lag_in)] = {};
89
90         MLX5_SET(destroy_vport_lag_in, in, opcode, MLX5_CMD_OP_DESTROY_VPORT_LAG);
91
92         return mlx5_cmd_exec_in(dev, destroy_vport_lag, in);
93 }
94 EXPORT_SYMBOL(mlx5_cmd_destroy_vport_lag);
95
96 int mlx5_lag_dev_get_netdev_idx(struct mlx5_lag *ldev,
97                                 struct net_device *ndev)
98 {
99         int i;
100
101         for (i = 0; i < MLX5_MAX_PORTS; i++)
102                 if (ldev->pf[i].netdev == ndev)
103                         return i;
104
105         return -1;
106 }
107
108 static bool __mlx5_lag_is_roce(struct mlx5_lag *ldev)
109 {
110         return !!(ldev->flags & MLX5_LAG_FLAG_ROCE);
111 }
112
113 static bool __mlx5_lag_is_sriov(struct mlx5_lag *ldev)
114 {
115         return !!(ldev->flags & MLX5_LAG_FLAG_SRIOV);
116 }
117
118 static void mlx5_infer_tx_affinity_mapping(struct lag_tracker *tracker,
119                                            u8 *port1, u8 *port2)
120 {
121         *port1 = 1;
122         *port2 = 2;
123         if (!tracker->netdev_state[MLX5_LAG_P1].tx_enabled ||
124             !tracker->netdev_state[MLX5_LAG_P1].link_up) {
125                 *port1 = 2;
126                 return;
127         }
128
129         if (!tracker->netdev_state[MLX5_LAG_P2].tx_enabled ||
130             !tracker->netdev_state[MLX5_LAG_P2].link_up)
131                 *port2 = 1;
132 }
133
134 void mlx5_modify_lag(struct mlx5_lag *ldev,
135                      struct lag_tracker *tracker)
136 {
137         struct mlx5_core_dev *dev0 = ldev->pf[MLX5_LAG_P1].dev;
138         u8 v2p_port1, v2p_port2;
139         int err;
140
141         mlx5_infer_tx_affinity_mapping(tracker, &v2p_port1,
142                                        &v2p_port2);
143
144         if (v2p_port1 != ldev->v2p_map[MLX5_LAG_P1] ||
145             v2p_port2 != ldev->v2p_map[MLX5_LAG_P2]) {
146                 ldev->v2p_map[MLX5_LAG_P1] = v2p_port1;
147                 ldev->v2p_map[MLX5_LAG_P2] = v2p_port2;
148
149                 mlx5_core_info(dev0, "modify lag map port 1:%d port 2:%d",
150                                ldev->v2p_map[MLX5_LAG_P1],
151                                ldev->v2p_map[MLX5_LAG_P2]);
152
153                 err = mlx5_cmd_modify_lag(dev0, v2p_port1, v2p_port2);
154                 if (err)
155                         mlx5_core_err(dev0,
156                                       "Failed to modify LAG (%d)\n",
157                                       err);
158         }
159 }
160
161 static int mlx5_create_lag(struct mlx5_lag *ldev,
162                            struct lag_tracker *tracker)
163 {
164         struct mlx5_core_dev *dev0 = ldev->pf[MLX5_LAG_P1].dev;
165         int err;
166
167         mlx5_infer_tx_affinity_mapping(tracker, &ldev->v2p_map[MLX5_LAG_P1],
168                                        &ldev->v2p_map[MLX5_LAG_P2]);
169
170         mlx5_core_info(dev0, "lag map port 1:%d port 2:%d",
171                        ldev->v2p_map[MLX5_LAG_P1], ldev->v2p_map[MLX5_LAG_P2]);
172
173         err = mlx5_cmd_create_lag(dev0, ldev->v2p_map[MLX5_LAG_P1],
174                                   ldev->v2p_map[MLX5_LAG_P2]);
175         if (err)
176                 mlx5_core_err(dev0,
177                               "Failed to create LAG (%d)\n",
178                               err);
179         return err;
180 }
181
182 int mlx5_activate_lag(struct mlx5_lag *ldev,
183                       struct lag_tracker *tracker,
184                       u8 flags)
185 {
186         bool roce_lag = !!(flags & MLX5_LAG_FLAG_ROCE);
187         struct mlx5_core_dev *dev0 = ldev->pf[MLX5_LAG_P1].dev;
188         int err;
189
190         err = mlx5_create_lag(ldev, tracker);
191         if (err) {
192                 if (roce_lag) {
193                         mlx5_core_err(dev0,
194                                       "Failed to activate RoCE LAG\n");
195                 } else {
196                         mlx5_core_err(dev0,
197                                       "Failed to activate VF LAG\n"
198                                       "Make sure all VFs are unbound prior to VF LAG activation or deactivation\n");
199                 }
200                 return err;
201         }
202
203         ldev->flags |= flags;
204         return 0;
205 }
206
207 static int mlx5_deactivate_lag(struct mlx5_lag *ldev)
208 {
209         struct mlx5_core_dev *dev0 = ldev->pf[MLX5_LAG_P1].dev;
210         u32 in[MLX5_ST_SZ_DW(destroy_lag_in)] = {};
211         bool roce_lag = __mlx5_lag_is_roce(ldev);
212         int err;
213
214         ldev->flags &= ~MLX5_LAG_MODE_FLAGS;
215
216         MLX5_SET(destroy_lag_in, in, opcode, MLX5_CMD_OP_DESTROY_LAG);
217         err = mlx5_cmd_exec_in(dev0, destroy_lag, in);
218         if (err) {
219                 if (roce_lag) {
220                         mlx5_core_err(dev0,
221                                       "Failed to deactivate RoCE LAG; driver restart required\n");
222                 } else {
223                         mlx5_core_err(dev0,
224                                       "Failed to deactivate VF LAG; driver restart required\n"
225                                       "Make sure all VFs are unbound prior to VF LAG activation or deactivation\n");
226                 }
227         }
228
229         return err;
230 }
231
232 static bool mlx5_lag_check_prereq(struct mlx5_lag *ldev)
233 {
234         if (!ldev->pf[MLX5_LAG_P1].dev || !ldev->pf[MLX5_LAG_P2].dev)
235                 return false;
236
237 #ifdef CONFIG_MLX5_ESWITCH
238         return mlx5_esw_lag_prereq(ldev->pf[MLX5_LAG_P1].dev,
239                                    ldev->pf[MLX5_LAG_P2].dev);
240 #else
241         return (!mlx5_sriov_is_enabled(ldev->pf[MLX5_LAG_P1].dev) &&
242                 !mlx5_sriov_is_enabled(ldev->pf[MLX5_LAG_P2].dev));
243 #endif
244 }
245
246 static void mlx5_lag_add_ib_devices(struct mlx5_lag *ldev)
247 {
248         int i;
249
250         for (i = 0; i < MLX5_MAX_PORTS; i++)
251                 if (ldev->pf[i].dev)
252                         mlx5_add_dev_by_protocol(ldev->pf[i].dev,
253                                                  MLX5_INTERFACE_PROTOCOL_IB);
254 }
255
256 static void mlx5_lag_remove_ib_devices(struct mlx5_lag *ldev)
257 {
258         int i;
259
260         for (i = 0; i < MLX5_MAX_PORTS; i++)
261                 if (ldev->pf[i].dev)
262                         mlx5_remove_dev_by_protocol(ldev->pf[i].dev,
263                                                     MLX5_INTERFACE_PROTOCOL_IB);
264 }
265
266 static void mlx5_do_bond(struct mlx5_lag *ldev)
267 {
268         struct mlx5_core_dev *dev0 = ldev->pf[MLX5_LAG_P1].dev;
269         struct mlx5_core_dev *dev1 = ldev->pf[MLX5_LAG_P2].dev;
270         struct lag_tracker tracker;
271         bool do_bond, roce_lag;
272         int err;
273
274         if (!dev0 || !dev1)
275                 return;
276
277         mutex_lock(&lag_mutex);
278         tracker = ldev->tracker;
279         mutex_unlock(&lag_mutex);
280
281         do_bond = tracker.is_bonded && mlx5_lag_check_prereq(ldev);
282
283         if (do_bond && !__mlx5_lag_is_active(ldev)) {
284                 roce_lag = !mlx5_sriov_is_enabled(dev0) &&
285                            !mlx5_sriov_is_enabled(dev1);
286
287 #ifdef CONFIG_MLX5_ESWITCH
288                 roce_lag &= dev0->priv.eswitch->mode == MLX5_ESWITCH_NONE &&
289                             dev1->priv.eswitch->mode == MLX5_ESWITCH_NONE;
290 #endif
291
292                 if (roce_lag)
293                         mlx5_lag_remove_ib_devices(ldev);
294
295                 err = mlx5_activate_lag(ldev, &tracker,
296                                         roce_lag ? MLX5_LAG_FLAG_ROCE :
297                                         MLX5_LAG_FLAG_SRIOV);
298                 if (err) {
299                         if (roce_lag)
300                                 mlx5_lag_add_ib_devices(ldev);
301
302                         return;
303                 }
304
305                 if (roce_lag) {
306                         mlx5_add_dev_by_protocol(dev0, MLX5_INTERFACE_PROTOCOL_IB);
307                         mlx5_nic_vport_enable_roce(dev1);
308                 }
309         } else if (do_bond && __mlx5_lag_is_active(ldev)) {
310                 mlx5_modify_lag(ldev, &tracker);
311         } else if (!do_bond && __mlx5_lag_is_active(ldev)) {
312                 roce_lag = __mlx5_lag_is_roce(ldev);
313
314                 if (roce_lag) {
315                         mlx5_remove_dev_by_protocol(dev0, MLX5_INTERFACE_PROTOCOL_IB);
316                         mlx5_nic_vport_disable_roce(dev1);
317                 }
318
319                 err = mlx5_deactivate_lag(ldev);
320                 if (err)
321                         return;
322
323                 if (roce_lag)
324                         mlx5_lag_add_ib_devices(ldev);
325         }
326 }
327
328 static void mlx5_queue_bond_work(struct mlx5_lag *ldev, unsigned long delay)
329 {
330         queue_delayed_work(ldev->wq, &ldev->bond_work, delay);
331 }
332
333 static void mlx5_do_bond_work(struct work_struct *work)
334 {
335         struct delayed_work *delayed_work = to_delayed_work(work);
336         struct mlx5_lag *ldev = container_of(delayed_work, struct mlx5_lag,
337                                              bond_work);
338         int status;
339
340         status = mlx5_dev_list_trylock();
341         if (!status) {
342                 /* 1 sec delay. */
343                 mlx5_queue_bond_work(ldev, HZ);
344                 return;
345         }
346
347         mlx5_do_bond(ldev);
348         mlx5_dev_list_unlock();
349 }
350
351 static int mlx5_handle_changeupper_event(struct mlx5_lag *ldev,
352                                          struct lag_tracker *tracker,
353                                          struct net_device *ndev,
354                                          struct netdev_notifier_changeupper_info *info)
355 {
356         struct net_device *upper = info->upper_dev, *ndev_tmp;
357         struct netdev_lag_upper_info *lag_upper_info = NULL;
358         bool is_bonded;
359         int bond_status = 0;
360         int num_slaves = 0;
361         int idx;
362
363         if (!netif_is_lag_master(upper))
364                 return 0;
365
366         if (info->linking)
367                 lag_upper_info = info->upper_info;
368
369         /* The event may still be of interest if the slave does not belong to
370          * us, but is enslaved to a master which has one or more of our netdevs
371          * as slaves (e.g., if a new slave is added to a master that bonds two
372          * of our netdevs, we should unbond).
373          */
374         rcu_read_lock();
375         for_each_netdev_in_bond_rcu(upper, ndev_tmp) {
376                 idx = mlx5_lag_dev_get_netdev_idx(ldev, ndev_tmp);
377                 if (idx > -1)
378                         bond_status |= (1 << idx);
379
380                 num_slaves++;
381         }
382         rcu_read_unlock();
383
384         /* None of this lagdev's netdevs are slaves of this master. */
385         if (!(bond_status & 0x3))
386                 return 0;
387
388         if (lag_upper_info)
389                 tracker->tx_type = lag_upper_info->tx_type;
390
391         /* Determine bonding status:
392          * A device is considered bonded if both its physical ports are slaves
393          * of the same lag master, and only them.
394          * Lag mode must be activebackup or hash.
395          */
396         is_bonded = (num_slaves == MLX5_MAX_PORTS) &&
397                     (bond_status == 0x3) &&
398                     ((tracker->tx_type == NETDEV_LAG_TX_TYPE_ACTIVEBACKUP) ||
399                      (tracker->tx_type == NETDEV_LAG_TX_TYPE_HASH));
400
401         if (tracker->is_bonded != is_bonded) {
402                 tracker->is_bonded = is_bonded;
403                 return 1;
404         }
405
406         return 0;
407 }
408
409 static int mlx5_handle_changelowerstate_event(struct mlx5_lag *ldev,
410                                               struct lag_tracker *tracker,
411                                               struct net_device *ndev,
412                                               struct netdev_notifier_changelowerstate_info *info)
413 {
414         struct netdev_lag_lower_state_info *lag_lower_info;
415         int idx;
416
417         if (!netif_is_lag_port(ndev))
418                 return 0;
419
420         idx = mlx5_lag_dev_get_netdev_idx(ldev, ndev);
421         if (idx == -1)
422                 return 0;
423
424         /* This information is used to determine virtual to physical
425          * port mapping.
426          */
427         lag_lower_info = info->lower_state_info;
428         if (!lag_lower_info)
429                 return 0;
430
431         tracker->netdev_state[idx] = *lag_lower_info;
432
433         return 1;
434 }
435
436 static int mlx5_lag_netdev_event(struct notifier_block *this,
437                                  unsigned long event, void *ptr)
438 {
439         struct net_device *ndev = netdev_notifier_info_to_dev(ptr);
440         struct lag_tracker tracker;
441         struct mlx5_lag *ldev;
442         int changed = 0;
443
444         if ((event != NETDEV_CHANGEUPPER) && (event != NETDEV_CHANGELOWERSTATE))
445                 return NOTIFY_DONE;
446
447         ldev    = container_of(this, struct mlx5_lag, nb);
448         tracker = ldev->tracker;
449
450         switch (event) {
451         case NETDEV_CHANGEUPPER:
452                 changed = mlx5_handle_changeupper_event(ldev, &tracker, ndev,
453                                                         ptr);
454                 break;
455         case NETDEV_CHANGELOWERSTATE:
456                 changed = mlx5_handle_changelowerstate_event(ldev, &tracker,
457                                                              ndev, ptr);
458                 break;
459         }
460
461         mutex_lock(&lag_mutex);
462         ldev->tracker = tracker;
463         mutex_unlock(&lag_mutex);
464
465         if (changed)
466                 mlx5_queue_bond_work(ldev, 0);
467
468         return NOTIFY_DONE;
469 }
470
471 static struct mlx5_lag *mlx5_lag_dev_alloc(void)
472 {
473         struct mlx5_lag *ldev;
474
475         ldev = kzalloc(sizeof(*ldev), GFP_KERNEL);
476         if (!ldev)
477                 return NULL;
478
479         ldev->wq = create_singlethread_workqueue("mlx5_lag");
480         if (!ldev->wq) {
481                 kfree(ldev);
482                 return NULL;
483         }
484
485         INIT_DELAYED_WORK(&ldev->bond_work, mlx5_do_bond_work);
486
487         return ldev;
488 }
489
490 static void mlx5_lag_dev_free(struct mlx5_lag *ldev)
491 {
492         destroy_workqueue(ldev->wq);
493         kfree(ldev);
494 }
495
496 static void mlx5_lag_dev_add_pf(struct mlx5_lag *ldev,
497                                 struct mlx5_core_dev *dev,
498                                 struct net_device *netdev)
499 {
500         unsigned int fn = PCI_FUNC(dev->pdev->devfn);
501
502         if (fn >= MLX5_MAX_PORTS)
503                 return;
504
505         mutex_lock(&lag_mutex);
506         ldev->pf[fn].dev    = dev;
507         ldev->pf[fn].netdev = netdev;
508         ldev->tracker.netdev_state[fn].link_up = 0;
509         ldev->tracker.netdev_state[fn].tx_enabled = 0;
510
511         dev->priv.lag = ldev;
512
513         mutex_unlock(&lag_mutex);
514 }
515
516 static void mlx5_lag_dev_remove_pf(struct mlx5_lag *ldev,
517                                    struct mlx5_core_dev *dev)
518 {
519         int i;
520
521         for (i = 0; i < MLX5_MAX_PORTS; i++)
522                 if (ldev->pf[i].dev == dev)
523                         break;
524
525         if (i == MLX5_MAX_PORTS)
526                 return;
527
528         mutex_lock(&lag_mutex);
529         memset(&ldev->pf[i], 0, sizeof(*ldev->pf));
530
531         dev->priv.lag = NULL;
532         mutex_unlock(&lag_mutex);
533 }
534
535 /* Must be called with intf_mutex held */
536 void mlx5_lag_add(struct mlx5_core_dev *dev, struct net_device *netdev)
537 {
538         struct mlx5_lag *ldev = NULL;
539         struct mlx5_core_dev *tmp_dev;
540         int err;
541
542         if (!MLX5_CAP_GEN(dev, vport_group_manager) ||
543             !MLX5_CAP_GEN(dev, lag_master) ||
544             (MLX5_CAP_GEN(dev, num_lag_ports) != MLX5_MAX_PORTS))
545                 return;
546
547         tmp_dev = mlx5_get_next_phys_dev(dev);
548         if (tmp_dev)
549                 ldev = tmp_dev->priv.lag;
550
551         if (!ldev) {
552                 ldev = mlx5_lag_dev_alloc();
553                 if (!ldev) {
554                         mlx5_core_err(dev, "Failed to alloc lag dev\n");
555                         return;
556                 }
557         }
558
559         mlx5_lag_dev_add_pf(ldev, dev, netdev);
560
561         if (!ldev->nb.notifier_call) {
562                 ldev->nb.notifier_call = mlx5_lag_netdev_event;
563                 if (register_netdevice_notifier_net(&init_net, &ldev->nb)) {
564                         ldev->nb.notifier_call = NULL;
565                         mlx5_core_err(dev, "Failed to register LAG netdev notifier\n");
566                 }
567         }
568
569         err = mlx5_lag_mp_init(ldev);
570         if (err)
571                 mlx5_core_err(dev, "Failed to init multipath lag err=%d\n",
572                               err);
573 }
574
575 /* Must be called with intf_mutex held */
576 void mlx5_lag_remove(struct mlx5_core_dev *dev)
577 {
578         struct mlx5_lag *ldev;
579         int i;
580
581         ldev = mlx5_lag_dev_get(dev);
582         if (!ldev)
583                 return;
584
585         if (__mlx5_lag_is_active(ldev))
586                 mlx5_deactivate_lag(ldev);
587
588         mlx5_lag_dev_remove_pf(ldev, dev);
589
590         for (i = 0; i < MLX5_MAX_PORTS; i++)
591                 if (ldev->pf[i].dev)
592                         break;
593
594         if (i == MLX5_MAX_PORTS) {
595                 if (ldev->nb.notifier_call) {
596                         unregister_netdevice_notifier_net(&init_net, &ldev->nb);
597                         ldev->nb.notifier_call = NULL;
598                 }
599                 mlx5_lag_mp_cleanup(ldev);
600                 cancel_delayed_work_sync(&ldev->bond_work);
601                 mlx5_lag_dev_free(ldev);
602         }
603 }
604
605 bool mlx5_lag_is_roce(struct mlx5_core_dev *dev)
606 {
607         struct mlx5_lag *ldev;
608         bool res;
609
610         mutex_lock(&lag_mutex);
611         ldev = mlx5_lag_dev_get(dev);
612         res  = ldev && __mlx5_lag_is_roce(ldev);
613         mutex_unlock(&lag_mutex);
614
615         return res;
616 }
617 EXPORT_SYMBOL(mlx5_lag_is_roce);
618
619 bool mlx5_lag_is_active(struct mlx5_core_dev *dev)
620 {
621         struct mlx5_lag *ldev;
622         bool res;
623
624         mutex_lock(&lag_mutex);
625         ldev = mlx5_lag_dev_get(dev);
626         res  = ldev && __mlx5_lag_is_active(ldev);
627         mutex_unlock(&lag_mutex);
628
629         return res;
630 }
631 EXPORT_SYMBOL(mlx5_lag_is_active);
632
633 bool mlx5_lag_is_sriov(struct mlx5_core_dev *dev)
634 {
635         struct mlx5_lag *ldev;
636         bool res;
637
638         mutex_lock(&lag_mutex);
639         ldev = mlx5_lag_dev_get(dev);
640         res  = ldev && __mlx5_lag_is_sriov(ldev);
641         mutex_unlock(&lag_mutex);
642
643         return res;
644 }
645 EXPORT_SYMBOL(mlx5_lag_is_sriov);
646
647 void mlx5_lag_update(struct mlx5_core_dev *dev)
648 {
649         struct mlx5_lag *ldev;
650
651         mlx5_dev_list_lock();
652         ldev = mlx5_lag_dev_get(dev);
653         if (!ldev)
654                 goto unlock;
655
656         mlx5_do_bond(ldev);
657
658 unlock:
659         mlx5_dev_list_unlock();
660 }
661
662 struct net_device *mlx5_lag_get_roce_netdev(struct mlx5_core_dev *dev)
663 {
664         struct net_device *ndev = NULL;
665         struct mlx5_lag *ldev;
666
667         mutex_lock(&lag_mutex);
668         ldev = mlx5_lag_dev_get(dev);
669
670         if (!(ldev && __mlx5_lag_is_roce(ldev)))
671                 goto unlock;
672
673         if (ldev->tracker.tx_type == NETDEV_LAG_TX_TYPE_ACTIVEBACKUP) {
674                 ndev = ldev->tracker.netdev_state[MLX5_LAG_P1].tx_enabled ?
675                        ldev->pf[MLX5_LAG_P1].netdev :
676                        ldev->pf[MLX5_LAG_P2].netdev;
677         } else {
678                 ndev = ldev->pf[MLX5_LAG_P1].netdev;
679         }
680         if (ndev)
681                 dev_hold(ndev);
682
683 unlock:
684         mutex_unlock(&lag_mutex);
685
686         return ndev;
687 }
688 EXPORT_SYMBOL(mlx5_lag_get_roce_netdev);
689
690 bool mlx5_lag_intf_add(struct mlx5_interface *intf, struct mlx5_priv *priv)
691 {
692         struct mlx5_core_dev *dev = container_of(priv, struct mlx5_core_dev,
693                                                  priv);
694         struct mlx5_lag *ldev;
695
696         if (intf->protocol != MLX5_INTERFACE_PROTOCOL_IB)
697                 return true;
698
699         ldev = mlx5_lag_dev_get(dev);
700         if (!ldev || !__mlx5_lag_is_roce(ldev) ||
701             ldev->pf[MLX5_LAG_P1].dev == dev)
702                 return true;
703
704         /* If bonded, we do not add an IB device for PF1. */
705         return false;
706 }
707
708 int mlx5_lag_query_cong_counters(struct mlx5_core_dev *dev,
709                                  u64 *values,
710                                  int num_counters,
711                                  size_t *offsets)
712 {
713         int outlen = MLX5_ST_SZ_BYTES(query_cong_statistics_out);
714         struct mlx5_core_dev *mdev[MLX5_MAX_PORTS];
715         struct mlx5_lag *ldev;
716         int num_ports;
717         int ret, i, j;
718         void *out;
719
720         out = kvzalloc(outlen, GFP_KERNEL);
721         if (!out)
722                 return -ENOMEM;
723
724         memset(values, 0, sizeof(*values) * num_counters);
725
726         mutex_lock(&lag_mutex);
727         ldev = mlx5_lag_dev_get(dev);
728         if (ldev && __mlx5_lag_is_roce(ldev)) {
729                 num_ports = MLX5_MAX_PORTS;
730                 mdev[MLX5_LAG_P1] = ldev->pf[MLX5_LAG_P1].dev;
731                 mdev[MLX5_LAG_P2] = ldev->pf[MLX5_LAG_P2].dev;
732         } else {
733                 num_ports = 1;
734                 mdev[MLX5_LAG_P1] = dev;
735         }
736
737         for (i = 0; i < num_ports; ++i) {
738                 u32 in[MLX5_ST_SZ_DW(query_cong_statistics_in)] = {};
739
740                 MLX5_SET(query_cong_statistics_in, in, opcode,
741                          MLX5_CMD_OP_QUERY_CONG_STATISTICS);
742                 ret = mlx5_cmd_exec_inout(mdev[i], query_cong_statistics, in,
743                                           out);
744                 if (ret)
745                         goto unlock;
746
747                 for (j = 0; j < num_counters; ++j)
748                         values[j] += be64_to_cpup((__be64 *)(out + offsets[j]));
749         }
750
751 unlock:
752         mutex_unlock(&lag_mutex);
753         kvfree(out);
754         return ret;
755 }
756 EXPORT_SYMBOL(mlx5_lag_query_cong_counters);