virtio: fix PCI accesses for ppc64 in legacy mode
[dpdk.git] / drivers / net / bonding / rte_eth_bond_api.c
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  *
7  *   Redistribution and use in source and binary forms, with or without
8  *   modification, are permitted provided that the following conditions
9  *   are met:
10  *
11  *     * Redistributions of source code must retain the above copyright
12  *       notice, this list of conditions and the following disclaimer.
13  *     * Redistributions in binary form must reproduce the above copyright
14  *       notice, this list of conditions and the following disclaimer in
15  *       the documentation and/or other materials provided with the
16  *       distribution.
17  *     * Neither the name of Intel Corporation nor the names of its
18  *       contributors may be used to endorse or promote products derived
19  *       from this software without specific prior written permission.
20  *
21  *   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22  *   "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23  *   LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24  *   A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25  *   OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26  *   SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27  *   LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28  *   DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29  *   THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30  *   (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31  *   OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
32  */
33
34 #include <string.h>
35
36 #include <rte_mbuf.h>
37 #include <rte_malloc.h>
38 #include <rte_ethdev.h>
39 #include <rte_tcp.h>
40
41 #include "rte_eth_bond.h"
42 #include "rte_eth_bond_private.h"
43 #include "rte_eth_bond_8023ad_private.h"
44
45 #define DEFAULT_POLLING_INTERVAL_10_MS (10)
46
47 const char pmd_bond_driver_name[] = "rte_bond_pmd";
48
49 int
50 check_for_bonded_ethdev(const struct rte_eth_dev *eth_dev)
51 {
52         /* Check valid pointer */
53         if (eth_dev->data->drv_name == NULL)
54                 return -1;
55
56         /* return 0 if driver name matches */
57         return eth_dev->data->drv_name != pmd_bond_driver_name;
58 }
59
60 int
61 valid_bonded_port_id(uint8_t port_id)
62 {
63         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -1);
64         return check_for_bonded_ethdev(&rte_eth_devices[port_id]);
65 }
66
67 int
68 valid_slave_port_id(uint8_t port_id)
69 {
70         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -1);
71
72         /* Verify that port_id refers to a non bonded port */
73         if (check_for_bonded_ethdev(&rte_eth_devices[port_id]) == 0)
74                 return -1;
75
76         return 0;
77 }
78
79 void
80 activate_slave(struct rte_eth_dev *eth_dev, uint8_t port_id)
81 {
82         struct bond_dev_private *internals = eth_dev->data->dev_private;
83         uint8_t active_count = internals->active_slave_count;
84
85         if (internals->mode == BONDING_MODE_8023AD)
86                 bond_mode_8023ad_activate_slave(eth_dev, port_id);
87
88         if (internals->mode == BONDING_MODE_TLB
89                         || internals->mode == BONDING_MODE_ALB) {
90
91                 internals->tlb_slaves_order[active_count] = port_id;
92         }
93
94         RTE_ASSERT(internals->active_slave_count <
95                         (RTE_DIM(internals->active_slaves) - 1));
96
97         internals->active_slaves[internals->active_slave_count] = port_id;
98         internals->active_slave_count++;
99
100         if (internals->mode == BONDING_MODE_TLB)
101                 bond_tlb_activate_slave(internals);
102         if (internals->mode == BONDING_MODE_ALB)
103                 bond_mode_alb_client_list_upd(eth_dev);
104 }
105
106 void
107 deactivate_slave(struct rte_eth_dev *eth_dev, uint8_t port_id)
108 {
109         uint8_t slave_pos;
110         struct bond_dev_private *internals = eth_dev->data->dev_private;
111         uint8_t active_count = internals->active_slave_count;
112
113         if (internals->mode == BONDING_MODE_8023AD) {
114                 bond_mode_8023ad_stop(eth_dev);
115                 bond_mode_8023ad_deactivate_slave(eth_dev, port_id);
116         } else if (internals->mode == BONDING_MODE_TLB
117                         || internals->mode == BONDING_MODE_ALB)
118                 bond_tlb_disable(internals);
119
120         slave_pos = find_slave_by_id(internals->active_slaves, active_count,
121                         port_id);
122
123         /* If slave was not at the end of the list
124          * shift active slaves up active array list */
125         if (slave_pos < active_count) {
126                 active_count--;
127                 memmove(internals->active_slaves + slave_pos,
128                                 internals->active_slaves + slave_pos + 1,
129                                 (active_count - slave_pos) *
130                                         sizeof(internals->active_slaves[0]));
131         }
132
133         RTE_ASSERT(active_count < RTE_DIM(internals->active_slaves));
134         internals->active_slave_count = active_count;
135
136         if (eth_dev->data->dev_started) {
137                 if (internals->mode == BONDING_MODE_8023AD) {
138                         bond_mode_8023ad_start(eth_dev);
139                 } else if (internals->mode == BONDING_MODE_TLB) {
140                         bond_tlb_enable(internals);
141                 } else if (internals->mode == BONDING_MODE_ALB) {
142                         bond_tlb_enable(internals);
143                         bond_mode_alb_client_list_upd(eth_dev);
144                 }
145         }
146 }
147
148 uint8_t
149 number_of_sockets(void)
150 {
151         int sockets = 0;
152         int i;
153         const struct rte_memseg *ms = rte_eal_get_physmem_layout();
154
155         for (i = 0; ((i < RTE_MAX_MEMSEG) && (ms[i].addr != NULL)); i++) {
156                 if (sockets < ms[i].socket_id)
157                         sockets = ms[i].socket_id;
158         }
159
160         /* Number of sockets = maximum socket_id + 1 */
161         return ++sockets;
162 }
163
164 int
165 rte_eth_bond_create(const char *name, uint8_t mode, uint8_t socket_id)
166 {
167         struct bond_dev_private *internals = NULL;
168         struct rte_eth_dev *eth_dev = NULL;
169
170         /* now do all data allocation - for eth_dev structure, dummy pci driver
171          * and internal (private) data
172          */
173
174         if (name == NULL) {
175                 RTE_BOND_LOG(ERR, "Invalid name specified");
176                 goto err;
177         }
178
179         if (socket_id >= number_of_sockets()) {
180                 RTE_BOND_LOG(ERR,
181                                 "Invalid socket id specified to create bonded device on.");
182                 goto err;
183         }
184
185         internals = rte_zmalloc_socket(name, sizeof(*internals), 0, socket_id);
186         if (internals == NULL) {
187                 RTE_BOND_LOG(ERR, "Unable to malloc internals on socket");
188                 goto err;
189         }
190
191         /* reserve an ethdev entry */
192         eth_dev = rte_eth_dev_allocate(name, RTE_ETH_DEV_VIRTUAL);
193         if (eth_dev == NULL) {
194                 RTE_BOND_LOG(ERR, "Unable to allocate rte_eth_dev");
195                 goto err;
196         }
197
198         eth_dev->data->dev_private = internals;
199         eth_dev->data->nb_rx_queues = (uint16_t)1;
200         eth_dev->data->nb_tx_queues = (uint16_t)1;
201
202         TAILQ_INIT(&(eth_dev->link_intr_cbs));
203
204         eth_dev->data->dev_link.link_status = ETH_LINK_DOWN;
205
206         eth_dev->data->mac_addrs = rte_zmalloc_socket(name, ETHER_ADDR_LEN, 0,
207                         socket_id);
208         if (eth_dev->data->mac_addrs == NULL) {
209                 RTE_BOND_LOG(ERR, "Unable to malloc mac_addrs");
210                 goto err;
211         }
212
213         eth_dev->data->dev_started = 0;
214         eth_dev->data->promiscuous = 0;
215         eth_dev->data->scattered_rx = 0;
216         eth_dev->data->all_multicast = 0;
217
218         eth_dev->dev_ops = &default_dev_ops;
219         eth_dev->data->dev_flags = RTE_ETH_DEV_INTR_LSC |
220                 RTE_ETH_DEV_DETACHABLE;
221         eth_dev->driver = NULL;
222         eth_dev->data->kdrv = RTE_KDRV_NONE;
223         eth_dev->data->drv_name = pmd_bond_driver_name;
224         eth_dev->data->numa_node =  socket_id;
225
226         rte_spinlock_init(&internals->lock);
227
228         internals->port_id = eth_dev->data->port_id;
229         internals->mode = BONDING_MODE_INVALID;
230         internals->current_primary_port = RTE_MAX_ETHPORTS + 1;
231         internals->balance_xmit_policy = BALANCE_XMIT_POLICY_LAYER2;
232         internals->xmit_hash = xmit_l2_hash;
233         internals->user_defined_mac = 0;
234         internals->link_props_set = 0;
235
236         internals->link_status_polling_enabled = 0;
237
238         internals->link_status_polling_interval_ms = DEFAULT_POLLING_INTERVAL_10_MS;
239         internals->link_down_delay_ms = 0;
240         internals->link_up_delay_ms = 0;
241
242         internals->slave_count = 0;
243         internals->active_slave_count = 0;
244         internals->rx_offload_capa = 0;
245         internals->tx_offload_capa = 0;
246
247         /* Initially allow to choose any offload type */
248         internals->flow_type_rss_offloads = ETH_RSS_PROTO_MASK;
249
250         memset(internals->active_slaves, 0, sizeof(internals->active_slaves));
251         memset(internals->slaves, 0, sizeof(internals->slaves));
252
253         /* Set mode 4 default configuration */
254         bond_mode_8023ad_setup(eth_dev, NULL);
255         if (bond_ethdev_mode_set(eth_dev, mode)) {
256                 RTE_BOND_LOG(ERR, "Failed to set bonded device %d mode too %d",
257                                  eth_dev->data->port_id, mode);
258                 goto err;
259         }
260
261         return eth_dev->data->port_id;
262
263 err:
264         rte_free(internals);
265         if (eth_dev != NULL) {
266                 rte_free(eth_dev->data->mac_addrs);
267                 rte_eth_dev_release_port(eth_dev);
268         }
269         return -1;
270 }
271
272 int
273 rte_eth_bond_free(const char *name)
274 {
275         struct rte_eth_dev *eth_dev = NULL;
276         struct bond_dev_private *internals;
277
278         /* now free all data allocation - for eth_dev structure,
279          * dummy pci driver and internal (private) data
280          */
281
282         /* find an ethdev entry */
283         eth_dev = rte_eth_dev_allocated(name);
284         if (eth_dev == NULL)
285                 return -ENODEV;
286
287         internals = eth_dev->data->dev_private;
288         if (internals->slave_count != 0)
289                 return -EBUSY;
290
291         if (eth_dev->data->dev_started == 1) {
292                 bond_ethdev_stop(eth_dev);
293                 bond_ethdev_close(eth_dev);
294         }
295
296         eth_dev->dev_ops = NULL;
297         eth_dev->rx_pkt_burst = NULL;
298         eth_dev->tx_pkt_burst = NULL;
299
300         rte_free(eth_dev->data->dev_private);
301         rte_free(eth_dev->data->mac_addrs);
302
303         rte_eth_dev_release_port(eth_dev);
304
305         return 0;
306 }
307
308 static int
309 __eth_bond_slave_add_lock_free(uint8_t bonded_port_id, uint8_t slave_port_id)
310 {
311         struct rte_eth_dev *bonded_eth_dev, *slave_eth_dev;
312         struct bond_dev_private *internals;
313         struct rte_eth_link link_props;
314         struct rte_eth_dev_info dev_info;
315
316         if (valid_slave_port_id(slave_port_id) != 0)
317                 return -1;
318
319         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
320         internals = bonded_eth_dev->data->dev_private;
321
322         slave_eth_dev = &rte_eth_devices[slave_port_id];
323         if (slave_eth_dev->data->dev_flags & RTE_ETH_DEV_BONDED_SLAVE) {
324                 RTE_BOND_LOG(ERR, "Slave device is already a slave of a bonded device");
325                 return -1;
326         }
327
328         /* Add slave details to bonded device */
329         slave_eth_dev->data->dev_flags |= RTE_ETH_DEV_BONDED_SLAVE;
330         slave_add(internals, slave_eth_dev);
331
332         rte_eth_dev_info_get(slave_port_id, &dev_info);
333
334         /* We need to store slaves reta_size to be able to synchronize RETA for all
335          * slave devices even if its sizes are different.
336          */
337         internals->slaves[internals->slave_count].reta_size = dev_info.reta_size;
338
339         if (internals->slave_count < 1) {
340                 /* if MAC is not user defined then use MAC of first slave add to
341                  * bonded device */
342                 if (!internals->user_defined_mac)
343                         mac_address_set(bonded_eth_dev, slave_eth_dev->data->mac_addrs);
344
345                 /* Inherit eth dev link properties from first slave */
346                 link_properties_set(bonded_eth_dev,
347                                 &(slave_eth_dev->data->dev_link));
348
349                 /* Make primary slave */
350                 internals->primary_port = slave_port_id;
351                 internals->current_primary_port = slave_port_id;
352
353                 /* Inherit queues settings from first slave */
354                 internals->nb_rx_queues = slave_eth_dev->data->nb_rx_queues;
355                 internals->nb_tx_queues = slave_eth_dev->data->nb_tx_queues;
356
357                 internals->reta_size = dev_info.reta_size;
358
359                 /* Take the first dev's offload capabilities */
360                 internals->rx_offload_capa = dev_info.rx_offload_capa;
361                 internals->tx_offload_capa = dev_info.tx_offload_capa;
362                 internals->flow_type_rss_offloads = dev_info.flow_type_rss_offloads;
363
364         } else {
365                 /* Check slave link properties are supported if props are set,
366                  * all slaves must be the same */
367                 if (internals->link_props_set) {
368                         if (link_properties_valid(&(bonded_eth_dev->data->dev_link),
369                                                                           &(slave_eth_dev->data->dev_link))) {
370                                 slave_eth_dev->data->dev_flags &= (~RTE_ETH_DEV_BONDED_SLAVE);
371                                 RTE_BOND_LOG(ERR,
372                                                 "Slave port %d link speed/duplex not supported",
373                                                 slave_port_id);
374                                 return -1;
375                         }
376                 } else {
377                         link_properties_set(bonded_eth_dev,
378                                         &(slave_eth_dev->data->dev_link));
379                 }
380                 internals->rx_offload_capa &= dev_info.rx_offload_capa;
381                 internals->tx_offload_capa &= dev_info.tx_offload_capa;
382                 internals->flow_type_rss_offloads &= dev_info.flow_type_rss_offloads;
383
384                 /* RETA size is GCD of all slaves RETA sizes, so, if all sizes will be
385                  * the power of 2, the lower one is GCD
386                  */
387                 if (internals->reta_size > dev_info.reta_size)
388                         internals->reta_size = dev_info.reta_size;
389
390         }
391
392         bonded_eth_dev->data->dev_conf.rx_adv_conf.rss_conf.rss_hf &=
393                         internals->flow_type_rss_offloads;
394
395         internals->slave_count++;
396
397         /* Update all slave devices MACs*/
398         mac_address_slaves_update(bonded_eth_dev);
399
400         if (bonded_eth_dev->data->dev_started) {
401                 if (slave_configure(bonded_eth_dev, slave_eth_dev) != 0) {
402                         slave_eth_dev->data->dev_flags &= (~RTE_ETH_DEV_BONDED_SLAVE);
403                         RTE_BOND_LOG(ERR, "rte_bond_slaves_configure: port=%d",
404                                         slave_port_id);
405                         return -1;
406                 }
407         }
408
409         /* Register link status change callback with bonded device pointer as
410          * argument*/
411         rte_eth_dev_callback_register(slave_port_id, RTE_ETH_EVENT_INTR_LSC,
412                         bond_ethdev_lsc_event_callback, &bonded_eth_dev->data->port_id);
413
414         /* If bonded device is started then we can add the slave to our active
415          * slave array */
416         if (bonded_eth_dev->data->dev_started) {
417                 rte_eth_link_get_nowait(slave_port_id, &link_props);
418
419                  if (link_props.link_status == ETH_LINK_UP) {
420                         if (internals->active_slave_count == 0 &&
421                             !internals->user_defined_primary_port)
422                                 bond_ethdev_primary_set(internals,
423                                                         slave_port_id);
424
425                         if (find_slave_by_id(internals->active_slaves,
426                                              internals->active_slave_count,
427                                              slave_port_id) == internals->active_slave_count)
428                                 activate_slave(bonded_eth_dev, slave_port_id);
429                 }
430         }
431         return 0;
432
433 }
434
435 int
436 rte_eth_bond_slave_add(uint8_t bonded_port_id, uint8_t slave_port_id)
437 {
438         struct rte_eth_dev *bonded_eth_dev;
439         struct bond_dev_private *internals;
440
441         int retval;
442
443         /* Verify that port id's are valid bonded and slave ports */
444         if (valid_bonded_port_id(bonded_port_id) != 0)
445                 return -1;
446
447         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
448         internals = bonded_eth_dev->data->dev_private;
449
450         rte_spinlock_lock(&internals->lock);
451
452         retval = __eth_bond_slave_add_lock_free(bonded_port_id, slave_port_id);
453
454         rte_spinlock_unlock(&internals->lock);
455
456         return retval;
457 }
458
459 static int
460 __eth_bond_slave_remove_lock_free(uint8_t bonded_port_id, uint8_t slave_port_id)
461 {
462         struct rte_eth_dev *bonded_eth_dev;
463         struct bond_dev_private *internals;
464         struct rte_eth_dev *slave_eth_dev;
465         int i, slave_idx;
466
467         if (valid_slave_port_id(slave_port_id) != 0)
468                 return -1;
469
470         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
471         internals = bonded_eth_dev->data->dev_private;
472
473         /* first remove from active slave list */
474         slave_idx = find_slave_by_id(internals->active_slaves,
475                 internals->active_slave_count, slave_port_id);
476
477         if (slave_idx < internals->active_slave_count)
478                 deactivate_slave(bonded_eth_dev, slave_port_id);
479
480         slave_idx = -1;
481         /* now find in slave list */
482         for (i = 0; i < internals->slave_count; i++)
483                 if (internals->slaves[i].port_id == slave_port_id) {
484                         slave_idx = i;
485                         break;
486                 }
487
488         if (slave_idx < 0) {
489                 RTE_BOND_LOG(ERR, "Couldn't find slave in port list, slave count %d",
490                                 internals->slave_count);
491                 return -1;
492         }
493
494         /* Un-register link status change callback with bonded device pointer as
495          * argument*/
496         rte_eth_dev_callback_unregister(slave_port_id, RTE_ETH_EVENT_INTR_LSC,
497                         bond_ethdev_lsc_event_callback,
498                         &rte_eth_devices[bonded_port_id].data->port_id);
499
500         /* Restore original MAC address of slave device */
501         mac_address_set(&rte_eth_devices[slave_port_id],
502                         &(internals->slaves[slave_idx].persisted_mac_addr));
503
504         slave_eth_dev = &rte_eth_devices[slave_port_id];
505         slave_remove(internals, slave_eth_dev);
506         slave_eth_dev->data->dev_flags &= (~RTE_ETH_DEV_BONDED_SLAVE);
507
508         /*  first slave in the active list will be the primary by default,
509          *  otherwise use first device in list */
510         if (internals->current_primary_port == slave_port_id) {
511                 if (internals->active_slave_count > 0)
512                         internals->current_primary_port = internals->active_slaves[0];
513                 else if (internals->slave_count > 0)
514                         internals->current_primary_port = internals->slaves[0].port_id;
515                 else
516                         internals->primary_port = 0;
517         }
518
519         if (internals->active_slave_count < 1) {
520                 /* reset device link properties as no slaves are active */
521                 link_properties_reset(&rte_eth_devices[bonded_port_id]);
522
523                 /* if no slaves are any longer attached to bonded device and MAC is not
524                  * user defined then clear MAC of bonded device as it will be reset
525                  * when a new slave is added */
526                 if (internals->slave_count < 1 && !internals->user_defined_mac)
527                         memset(rte_eth_devices[bonded_port_id].data->mac_addrs, 0,
528                                         sizeof(*(rte_eth_devices[bonded_port_id].data->mac_addrs)));
529         }
530         if (internals->slave_count == 0) {
531                 internals->rx_offload_capa = 0;
532                 internals->tx_offload_capa = 0;
533                 internals->flow_type_rss_offloads = ETH_RSS_PROTO_MASK;
534                 internals->reta_size = 0;
535         }
536         return 0;
537 }
538
539 int
540 rte_eth_bond_slave_remove(uint8_t bonded_port_id, uint8_t slave_port_id)
541 {
542         struct rte_eth_dev *bonded_eth_dev;
543         struct bond_dev_private *internals;
544         int retval;
545
546         if (valid_bonded_port_id(bonded_port_id) != 0)
547                 return -1;
548
549         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
550         internals = bonded_eth_dev->data->dev_private;
551
552         rte_spinlock_lock(&internals->lock);
553
554         retval = __eth_bond_slave_remove_lock_free(bonded_port_id, slave_port_id);
555
556         rte_spinlock_unlock(&internals->lock);
557
558         return retval;
559 }
560
561 int
562 rte_eth_bond_mode_set(uint8_t bonded_port_id, uint8_t mode)
563 {
564         if (valid_bonded_port_id(bonded_port_id) != 0)
565                 return -1;
566
567         return bond_ethdev_mode_set(&rte_eth_devices[bonded_port_id], mode);
568 }
569
570 int
571 rte_eth_bond_mode_get(uint8_t bonded_port_id)
572 {
573         struct bond_dev_private *internals;
574
575         if (valid_bonded_port_id(bonded_port_id) != 0)
576                 return -1;
577
578         internals = rte_eth_devices[bonded_port_id].data->dev_private;
579
580         return internals->mode;
581 }
582
583 int
584 rte_eth_bond_primary_set(uint8_t bonded_port_id, uint8_t slave_port_id)
585 {
586         struct bond_dev_private *internals;
587
588         if (valid_bonded_port_id(bonded_port_id) != 0)
589                 return -1;
590
591         if (valid_slave_port_id(slave_port_id) != 0)
592                 return -1;
593
594         internals =  rte_eth_devices[bonded_port_id].data->dev_private;
595
596         internals->user_defined_primary_port = 1;
597         internals->primary_port = slave_port_id;
598
599         bond_ethdev_primary_set(internals, slave_port_id);
600
601         return 0;
602 }
603
604 int
605 rte_eth_bond_primary_get(uint8_t bonded_port_id)
606 {
607         struct bond_dev_private *internals;
608
609         if (valid_bonded_port_id(bonded_port_id) != 0)
610                 return -1;
611
612         internals = rte_eth_devices[bonded_port_id].data->dev_private;
613
614         if (internals->slave_count < 1)
615                 return -1;
616
617         return internals->current_primary_port;
618 }
619
620 int
621 rte_eth_bond_slaves_get(uint8_t bonded_port_id, uint8_t slaves[], uint8_t len)
622 {
623         struct bond_dev_private *internals;
624         uint8_t i;
625
626         if (valid_bonded_port_id(bonded_port_id) != 0)
627                 return -1;
628
629         if (slaves == NULL)
630                 return -1;
631
632         internals = rte_eth_devices[bonded_port_id].data->dev_private;
633
634         if (internals->slave_count > len)
635                 return -1;
636
637         for (i = 0; i < internals->slave_count; i++)
638                 slaves[i] = internals->slaves[i].port_id;
639
640         return internals->slave_count;
641 }
642
643 int
644 rte_eth_bond_active_slaves_get(uint8_t bonded_port_id, uint8_t slaves[],
645                 uint8_t len)
646 {
647         struct bond_dev_private *internals;
648
649         if (valid_bonded_port_id(bonded_port_id) != 0)
650                 return -1;
651
652         if (slaves == NULL)
653                 return -1;
654
655         internals = rte_eth_devices[bonded_port_id].data->dev_private;
656
657         if (internals->active_slave_count > len)
658                 return -1;
659
660         memcpy(slaves, internals->active_slaves, internals->active_slave_count);
661
662         return internals->active_slave_count;
663 }
664
665 int
666 rte_eth_bond_mac_address_set(uint8_t bonded_port_id,
667                 struct ether_addr *mac_addr)
668 {
669         struct rte_eth_dev *bonded_eth_dev;
670         struct bond_dev_private *internals;
671
672         if (valid_bonded_port_id(bonded_port_id) != 0)
673                 return -1;
674
675         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
676         internals = bonded_eth_dev->data->dev_private;
677
678         /* Set MAC Address of Bonded Device */
679         if (mac_address_set(bonded_eth_dev, mac_addr))
680                 return -1;
681
682         internals->user_defined_mac = 1;
683
684         /* Update all slave devices MACs*/
685         if (internals->slave_count > 0)
686                 return mac_address_slaves_update(bonded_eth_dev);
687
688         return 0;
689 }
690
691 int
692 rte_eth_bond_mac_address_reset(uint8_t bonded_port_id)
693 {
694         struct rte_eth_dev *bonded_eth_dev;
695         struct bond_dev_private *internals;
696
697         if (valid_bonded_port_id(bonded_port_id) != 0)
698                 return -1;
699
700         bonded_eth_dev = &rte_eth_devices[bonded_port_id];
701         internals = bonded_eth_dev->data->dev_private;
702
703         internals->user_defined_mac = 0;
704
705         if (internals->slave_count > 0) {
706                 /* Set MAC Address of Bonded Device */
707                 if (mac_address_set(bonded_eth_dev,
708                                 &internals->slaves[internals->primary_port].persisted_mac_addr)
709                                 != 0) {
710                         RTE_BOND_LOG(ERR, "Failed to set MAC address on bonded device");
711                         return -1;
712                 }
713                 /* Update all slave devices MAC addresses */
714                 return mac_address_slaves_update(bonded_eth_dev);
715         }
716         /* No need to update anything as no slaves present */
717         return 0;
718 }
719
720 int
721 rte_eth_bond_xmit_policy_set(uint8_t bonded_port_id, uint8_t policy)
722 {
723         struct bond_dev_private *internals;
724
725         if (valid_bonded_port_id(bonded_port_id) != 0)
726                 return -1;
727
728         internals = rte_eth_devices[bonded_port_id].data->dev_private;
729
730         switch (policy) {
731         case BALANCE_XMIT_POLICY_LAYER2:
732                 internals->balance_xmit_policy = policy;
733                 internals->xmit_hash = xmit_l2_hash;
734                 break;
735         case BALANCE_XMIT_POLICY_LAYER23:
736                 internals->balance_xmit_policy = policy;
737                 internals->xmit_hash = xmit_l23_hash;
738                 break;
739         case BALANCE_XMIT_POLICY_LAYER34:
740                 internals->balance_xmit_policy = policy;
741                 internals->xmit_hash = xmit_l34_hash;
742                 break;
743
744         default:
745                 return -1;
746         }
747         return 0;
748 }
749
750 int
751 rte_eth_bond_xmit_policy_get(uint8_t bonded_port_id)
752 {
753         struct bond_dev_private *internals;
754
755         if (valid_bonded_port_id(bonded_port_id) != 0)
756                 return -1;
757
758         internals = rte_eth_devices[bonded_port_id].data->dev_private;
759
760         return internals->balance_xmit_policy;
761 }
762
763 int
764 rte_eth_bond_link_monitoring_set(uint8_t bonded_port_id, uint32_t internal_ms)
765 {
766         struct bond_dev_private *internals;
767
768         if (valid_bonded_port_id(bonded_port_id) != 0)
769                 return -1;
770
771         internals = rte_eth_devices[bonded_port_id].data->dev_private;
772         internals->link_status_polling_interval_ms = internal_ms;
773
774         return 0;
775 }
776
777 int
778 rte_eth_bond_link_monitoring_get(uint8_t bonded_port_id)
779 {
780         struct bond_dev_private *internals;
781
782         if (valid_bonded_port_id(bonded_port_id) != 0)
783                 return -1;
784
785         internals = rte_eth_devices[bonded_port_id].data->dev_private;
786
787         return internals->link_status_polling_interval_ms;
788 }
789
790 int
791 rte_eth_bond_link_down_prop_delay_set(uint8_t bonded_port_id, uint32_t delay_ms)
792
793 {
794         struct bond_dev_private *internals;
795
796         if (valid_bonded_port_id(bonded_port_id) != 0)
797                 return -1;
798
799         internals = rte_eth_devices[bonded_port_id].data->dev_private;
800         internals->link_down_delay_ms = delay_ms;
801
802         return 0;
803 }
804
805 int
806 rte_eth_bond_link_down_prop_delay_get(uint8_t bonded_port_id)
807 {
808         struct bond_dev_private *internals;
809
810         if (valid_bonded_port_id(bonded_port_id) != 0)
811                 return -1;
812
813         internals = rte_eth_devices[bonded_port_id].data->dev_private;
814
815         return internals->link_down_delay_ms;
816 }
817
818 int
819 rte_eth_bond_link_up_prop_delay_set(uint8_t bonded_port_id, uint32_t delay_ms)
820
821 {
822         struct bond_dev_private *internals;
823
824         if (valid_bonded_port_id(bonded_port_id) != 0)
825                 return -1;
826
827         internals = rte_eth_devices[bonded_port_id].data->dev_private;
828         internals->link_up_delay_ms = delay_ms;
829
830         return 0;
831 }
832
833 int
834 rte_eth_bond_link_up_prop_delay_get(uint8_t bonded_port_id)
835 {
836         struct bond_dev_private *internals;
837
838         if (valid_bonded_port_id(bonded_port_id) != 0)
839                 return -1;
840
841         internals = rte_eth_devices[bonded_port_id].data->dev_private;
842
843         return internals->link_up_delay_ms;
844 }