83898a8f75778990d901e7bb230143562191d565
[deb_dpdk.git] / lib / librte_ether / rte_ethdev.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 <sys/types.h>
35 #include <sys/queue.h>
36 #include <ctype.h>
37 #include <stdio.h>
38 #include <stdlib.h>
39 #include <string.h>
40 #include <stdarg.h>
41 #include <errno.h>
42 #include <stdint.h>
43 #include <inttypes.h>
44 #include <netinet/in.h>
45
46 #include <rte_byteorder.h>
47 #include <rte_log.h>
48 #include <rte_debug.h>
49 #include <rte_interrupts.h>
50 #include <rte_pci.h>
51 #include <rte_memory.h>
52 #include <rte_memcpy.h>
53 #include <rte_memzone.h>
54 #include <rte_launch.h>
55 #include <rte_eal.h>
56 #include <rte_per_lcore.h>
57 #include <rte_lcore.h>
58 #include <rte_atomic.h>
59 #include <rte_branch_prediction.h>
60 #include <rte_common.h>
61 #include <rte_mempool.h>
62 #include <rte_malloc.h>
63 #include <rte_mbuf.h>
64 #include <rte_errno.h>
65 #include <rte_spinlock.h>
66 #include <rte_string_fns.h>
67
68 #include "rte_ether.h"
69 #include "rte_ethdev.h"
70
71 static const char *MZ_RTE_ETH_DEV_DATA = "rte_eth_dev_data";
72 struct rte_eth_dev rte_eth_devices[RTE_MAX_ETHPORTS];
73 static struct rte_eth_dev_data *rte_eth_dev_data;
74 static uint8_t eth_dev_last_created_port;
75 static uint8_t nb_ports;
76
77 /* spinlock for eth device callbacks */
78 static rte_spinlock_t rte_eth_dev_cb_lock = RTE_SPINLOCK_INITIALIZER;
79
80 /* spinlock for add/remove rx callbacks */
81 static rte_spinlock_t rte_eth_rx_cb_lock = RTE_SPINLOCK_INITIALIZER;
82
83 /* spinlock for add/remove tx callbacks */
84 static rte_spinlock_t rte_eth_tx_cb_lock = RTE_SPINLOCK_INITIALIZER;
85
86 /* store statistics names and its offset in stats structure  */
87 struct rte_eth_xstats_name_off {
88         char name[RTE_ETH_XSTATS_NAME_SIZE];
89         unsigned offset;
90 };
91
92 static const struct rte_eth_xstats_name_off rte_stats_strings[] = {
93         {"rx_good_packets", offsetof(struct rte_eth_stats, ipackets)},
94         {"tx_good_packets", offsetof(struct rte_eth_stats, opackets)},
95         {"rx_good_bytes", offsetof(struct rte_eth_stats, ibytes)},
96         {"tx_good_bytes", offsetof(struct rte_eth_stats, obytes)},
97         {"rx_errors", offsetof(struct rte_eth_stats, ierrors)},
98         {"tx_errors", offsetof(struct rte_eth_stats, oerrors)},
99         {"rx_mbuf_allocation_errors", offsetof(struct rte_eth_stats,
100                 rx_nombuf)},
101 };
102
103 #define RTE_NB_STATS (sizeof(rte_stats_strings) / sizeof(rte_stats_strings[0]))
104
105 static const struct rte_eth_xstats_name_off rte_rxq_stats_strings[] = {
106         {"packets", offsetof(struct rte_eth_stats, q_ipackets)},
107         {"bytes", offsetof(struct rte_eth_stats, q_ibytes)},
108         {"errors", offsetof(struct rte_eth_stats, q_errors)},
109 };
110
111 #define RTE_NB_RXQ_STATS (sizeof(rte_rxq_stats_strings) /       \
112                 sizeof(rte_rxq_stats_strings[0]))
113
114 static const struct rte_eth_xstats_name_off rte_txq_stats_strings[] = {
115         {"packets", offsetof(struct rte_eth_stats, q_opackets)},
116         {"bytes", offsetof(struct rte_eth_stats, q_obytes)},
117 };
118 #define RTE_NB_TXQ_STATS (sizeof(rte_txq_stats_strings) /       \
119                 sizeof(rte_txq_stats_strings[0]))
120
121
122 /**
123  * The user application callback description.
124  *
125  * It contains callback address to be registered by user application,
126  * the pointer to the parameters for callback, and the event type.
127  */
128 struct rte_eth_dev_callback {
129         TAILQ_ENTRY(rte_eth_dev_callback) next; /**< Callbacks list */
130         rte_eth_dev_cb_fn cb_fn;                /**< Callback address */
131         void *cb_arg;                           /**< Parameter for callback */
132         enum rte_eth_event_type event;          /**< Interrupt event type */
133         uint32_t active;                        /**< Callback is executing */
134 };
135
136 enum {
137         STAT_QMAP_TX = 0,
138         STAT_QMAP_RX
139 };
140
141 uint8_t
142 rte_eth_find_next(uint8_t port_id)
143 {
144         while (port_id < RTE_MAX_ETHPORTS &&
145                rte_eth_devices[port_id].state != RTE_ETH_DEV_ATTACHED)
146                 port_id++;
147
148         if (port_id >= RTE_MAX_ETHPORTS)
149                 return RTE_MAX_ETHPORTS;
150
151         return port_id;
152 }
153
154 static void
155 rte_eth_dev_data_alloc(void)
156 {
157         const unsigned flags = 0;
158         const struct rte_memzone *mz;
159
160         if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
161                 mz = rte_memzone_reserve(MZ_RTE_ETH_DEV_DATA,
162                                 RTE_MAX_ETHPORTS * sizeof(*rte_eth_dev_data),
163                                 rte_socket_id(), flags);
164         } else
165                 mz = rte_memzone_lookup(MZ_RTE_ETH_DEV_DATA);
166         if (mz == NULL)
167                 rte_panic("Cannot allocate memzone for ethernet port data\n");
168
169         rte_eth_dev_data = mz->addr;
170         if (rte_eal_process_type() == RTE_PROC_PRIMARY)
171                 memset(rte_eth_dev_data, 0,
172                                 RTE_MAX_ETHPORTS * sizeof(*rte_eth_dev_data));
173 }
174
175 struct rte_eth_dev *
176 rte_eth_dev_allocated(const char *name)
177 {
178         unsigned i;
179
180         for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
181                 if ((rte_eth_devices[i].state == RTE_ETH_DEV_ATTACHED) &&
182                     strcmp(rte_eth_devices[i].data->name, name) == 0)
183                         return &rte_eth_devices[i];
184         }
185         return NULL;
186 }
187
188 static uint8_t
189 rte_eth_dev_find_free_port(void)
190 {
191         unsigned i;
192
193         for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
194                 if (rte_eth_devices[i].state == RTE_ETH_DEV_UNUSED)
195                         return i;
196         }
197         return RTE_MAX_ETHPORTS;
198 }
199
200 static struct rte_eth_dev *
201 eth_dev_get(uint8_t port_id)
202 {
203         struct rte_eth_dev *eth_dev = &rte_eth_devices[port_id];
204
205         eth_dev->data = &rte_eth_dev_data[port_id];
206         eth_dev->state = RTE_ETH_DEV_ATTACHED;
207         TAILQ_INIT(&(eth_dev->link_intr_cbs));
208
209         eth_dev_last_created_port = port_id;
210         nb_ports++;
211
212         return eth_dev;
213 }
214
215 struct rte_eth_dev *
216 rte_eth_dev_allocate(const char *name)
217 {
218         uint8_t port_id;
219         struct rte_eth_dev *eth_dev;
220
221         port_id = rte_eth_dev_find_free_port();
222         if (port_id == RTE_MAX_ETHPORTS) {
223                 RTE_PMD_DEBUG_TRACE("Reached maximum number of Ethernet ports\n");
224                 return NULL;
225         }
226
227         if (rte_eth_dev_data == NULL)
228                 rte_eth_dev_data_alloc();
229
230         if (rte_eth_dev_allocated(name) != NULL) {
231                 RTE_PMD_DEBUG_TRACE("Ethernet Device with name %s already allocated!\n",
232                                 name);
233                 return NULL;
234         }
235
236         memset(&rte_eth_dev_data[port_id], 0, sizeof(struct rte_eth_dev_data));
237         eth_dev = eth_dev_get(port_id);
238         snprintf(eth_dev->data->name, sizeof(eth_dev->data->name), "%s", name);
239         eth_dev->data->port_id = port_id;
240         eth_dev->data->mtu = ETHER_MTU;
241
242         return eth_dev;
243 }
244
245 /*
246  * Attach to a port already registered by the primary process, which
247  * makes sure that the same device would have the same port id both
248  * in the primary and secondary process.
249  */
250 struct rte_eth_dev *
251 rte_eth_dev_attach_secondary(const char *name)
252 {
253         uint8_t i;
254         struct rte_eth_dev *eth_dev;
255
256         if (rte_eth_dev_data == NULL)
257                 rte_eth_dev_data_alloc();
258
259         for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
260                 if (strcmp(rte_eth_dev_data[i].name, name) == 0)
261                         break;
262         }
263         if (i == RTE_MAX_ETHPORTS) {
264                 RTE_PMD_DEBUG_TRACE(
265                         "device %s is not driven by the primary process\n",
266                         name);
267                 return NULL;
268         }
269
270         eth_dev = eth_dev_get(i);
271         RTE_ASSERT(eth_dev->data->port_id == i);
272
273         return eth_dev;
274 }
275
276 int
277 rte_eth_dev_release_port(struct rte_eth_dev *eth_dev)
278 {
279         if (eth_dev == NULL)
280                 return -EINVAL;
281
282         eth_dev->state = RTE_ETH_DEV_UNUSED;
283         nb_ports--;
284         return 0;
285 }
286
287 int
288 rte_eth_dev_is_valid_port(uint8_t port_id)
289 {
290         if (port_id >= RTE_MAX_ETHPORTS ||
291             rte_eth_devices[port_id].state != RTE_ETH_DEV_ATTACHED)
292                 return 0;
293         else
294                 return 1;
295 }
296
297 int
298 rte_eth_dev_socket_id(uint8_t port_id)
299 {
300         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -1);
301         return rte_eth_devices[port_id].data->numa_node;
302 }
303
304 uint8_t
305 rte_eth_dev_count(void)
306 {
307         return nb_ports;
308 }
309
310 int
311 rte_eth_dev_get_name_by_port(uint8_t port_id, char *name)
312 {
313         char *tmp;
314
315         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
316
317         if (name == NULL) {
318                 RTE_PMD_DEBUG_TRACE("Null pointer is specified\n");
319                 return -EINVAL;
320         }
321
322         /* shouldn't check 'rte_eth_devices[i].data',
323          * because it might be overwritten by VDEV PMD */
324         tmp = rte_eth_dev_data[port_id].name;
325         strcpy(name, tmp);
326         return 0;
327 }
328
329 int
330 rte_eth_dev_get_port_by_name(const char *name, uint8_t *port_id)
331 {
332         int i;
333
334         if (name == NULL) {
335                 RTE_PMD_DEBUG_TRACE("Null pointer is specified\n");
336                 return -EINVAL;
337         }
338
339         if (!nb_ports)
340                 return -ENODEV;
341
342         *port_id = RTE_MAX_ETHPORTS;
343         RTE_ETH_FOREACH_DEV(i) {
344                 if (!strncmp(name,
345                         rte_eth_dev_data[i].name, strlen(name))) {
346
347                         *port_id = i;
348
349                         return 0;
350                 }
351         }
352         return -ENODEV;
353 }
354
355 static int
356 rte_eth_dev_is_detachable(uint8_t port_id)
357 {
358         uint32_t dev_flags;
359
360         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
361
362         switch (rte_eth_devices[port_id].data->kdrv) {
363         case RTE_KDRV_IGB_UIO:
364         case RTE_KDRV_UIO_GENERIC:
365         case RTE_KDRV_NIC_UIO:
366         case RTE_KDRV_NONE:
367         case RTE_KDRV_VFIO:
368                 break;
369         default:
370                 return -ENOTSUP;
371         }
372         dev_flags = rte_eth_devices[port_id].data->dev_flags;
373         if ((dev_flags & RTE_ETH_DEV_DETACHABLE) &&
374                 (!(dev_flags & RTE_ETH_DEV_BONDED_SLAVE)))
375                 return 0;
376         else
377                 return 1;
378 }
379
380 /* attach the new device, then store port_id of the device */
381 int
382 rte_eth_dev_attach(const char *devargs, uint8_t *port_id)
383 {
384         int ret = -1;
385         int current = rte_eth_dev_count();
386         char *name = NULL;
387         char *args = NULL;
388
389         if ((devargs == NULL) || (port_id == NULL)) {
390                 ret = -EINVAL;
391                 goto err;
392         }
393
394         /* parse devargs, then retrieve device name and args */
395         if (rte_eal_parse_devargs_str(devargs, &name, &args))
396                 goto err;
397
398         ret = rte_eal_dev_attach(name, args);
399         if (ret < 0)
400                 goto err;
401
402         /* no point looking at the port count if no port exists */
403         if (!rte_eth_dev_count()) {
404                 RTE_LOG(ERR, EAL, "No port found for device (%s)\n", name);
405                 ret = -1;
406                 goto err;
407         }
408
409         /* if nothing happened, there is a bug here, since some driver told us
410          * it did attach a device, but did not create a port.
411          */
412         if (current == rte_eth_dev_count()) {
413                 ret = -1;
414                 goto err;
415         }
416
417         *port_id = eth_dev_last_created_port;
418         ret = 0;
419
420 err:
421         free(name);
422         free(args);
423         return ret;
424 }
425
426 /* detach the device, then store the name of the device */
427 int
428 rte_eth_dev_detach(uint8_t port_id, char *name)
429 {
430         int ret = -1;
431
432         if (name == NULL) {
433                 ret = -EINVAL;
434                 goto err;
435         }
436
437         /* FIXME: move this to eal, once device flags are relocated there */
438         if (rte_eth_dev_is_detachable(port_id))
439                 goto err;
440
441         snprintf(name, sizeof(rte_eth_devices[port_id].data->name),
442                  "%s", rte_eth_devices[port_id].data->name);
443         ret = rte_eal_dev_detach(name);
444         if (ret < 0)
445                 goto err;
446
447         return 0;
448
449 err:
450         return ret;
451 }
452
453 static int
454 rte_eth_dev_rx_queue_config(struct rte_eth_dev *dev, uint16_t nb_queues)
455 {
456         uint16_t old_nb_queues = dev->data->nb_rx_queues;
457         void **rxq;
458         unsigned i;
459
460         if (dev->data->rx_queues == NULL && nb_queues != 0) { /* first time configuration */
461                 dev->data->rx_queues = rte_zmalloc("ethdev->rx_queues",
462                                 sizeof(dev->data->rx_queues[0]) * nb_queues,
463                                 RTE_CACHE_LINE_SIZE);
464                 if (dev->data->rx_queues == NULL) {
465                         dev->data->nb_rx_queues = 0;
466                         return -(ENOMEM);
467                 }
468         } else if (dev->data->rx_queues != NULL && nb_queues != 0) { /* re-configure */
469                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_release, -ENOTSUP);
470
471                 rxq = dev->data->rx_queues;
472
473                 for (i = nb_queues; i < old_nb_queues; i++)
474                         (*dev->dev_ops->rx_queue_release)(rxq[i]);
475                 rxq = rte_realloc(rxq, sizeof(rxq[0]) * nb_queues,
476                                 RTE_CACHE_LINE_SIZE);
477                 if (rxq == NULL)
478                         return -(ENOMEM);
479                 if (nb_queues > old_nb_queues) {
480                         uint16_t new_qs = nb_queues - old_nb_queues;
481
482                         memset(rxq + old_nb_queues, 0,
483                                 sizeof(rxq[0]) * new_qs);
484                 }
485
486                 dev->data->rx_queues = rxq;
487
488         } else if (dev->data->rx_queues != NULL && nb_queues == 0) {
489                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_release, -ENOTSUP);
490
491                 rxq = dev->data->rx_queues;
492
493                 for (i = nb_queues; i < old_nb_queues; i++)
494                         (*dev->dev_ops->rx_queue_release)(rxq[i]);
495
496                 rte_free(dev->data->rx_queues);
497                 dev->data->rx_queues = NULL;
498         }
499         dev->data->nb_rx_queues = nb_queues;
500         return 0;
501 }
502
503 int
504 rte_eth_dev_rx_queue_start(uint8_t port_id, uint16_t rx_queue_id)
505 {
506         struct rte_eth_dev *dev;
507
508         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
509
510         dev = &rte_eth_devices[port_id];
511         if (rx_queue_id >= dev->data->nb_rx_queues) {
512                 RTE_PMD_DEBUG_TRACE("Invalid RX queue_id=%d\n", rx_queue_id);
513                 return -EINVAL;
514         }
515
516         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_start, -ENOTSUP);
517
518         if (dev->data->rx_queue_state[rx_queue_id] != RTE_ETH_QUEUE_STATE_STOPPED) {
519                 RTE_PMD_DEBUG_TRACE("Queue %" PRIu16" of device with port_id=%" PRIu8
520                         " already started\n",
521                         rx_queue_id, port_id);
522                 return 0;
523         }
524
525         return dev->dev_ops->rx_queue_start(dev, rx_queue_id);
526
527 }
528
529 int
530 rte_eth_dev_rx_queue_stop(uint8_t port_id, uint16_t rx_queue_id)
531 {
532         struct rte_eth_dev *dev;
533
534         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
535
536         dev = &rte_eth_devices[port_id];
537         if (rx_queue_id >= dev->data->nb_rx_queues) {
538                 RTE_PMD_DEBUG_TRACE("Invalid RX queue_id=%d\n", rx_queue_id);
539                 return -EINVAL;
540         }
541
542         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_stop, -ENOTSUP);
543
544         if (dev->data->rx_queue_state[rx_queue_id] == RTE_ETH_QUEUE_STATE_STOPPED) {
545                 RTE_PMD_DEBUG_TRACE("Queue %" PRIu16" of device with port_id=%" PRIu8
546                         " already stopped\n",
547                         rx_queue_id, port_id);
548                 return 0;
549         }
550
551         return dev->dev_ops->rx_queue_stop(dev, rx_queue_id);
552
553 }
554
555 int
556 rte_eth_dev_tx_queue_start(uint8_t port_id, uint16_t tx_queue_id)
557 {
558         struct rte_eth_dev *dev;
559
560         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
561
562         dev = &rte_eth_devices[port_id];
563         if (tx_queue_id >= dev->data->nb_tx_queues) {
564                 RTE_PMD_DEBUG_TRACE("Invalid TX queue_id=%d\n", tx_queue_id);
565                 return -EINVAL;
566         }
567
568         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_start, -ENOTSUP);
569
570         if (dev->data->tx_queue_state[tx_queue_id] != RTE_ETH_QUEUE_STATE_STOPPED) {
571                 RTE_PMD_DEBUG_TRACE("Queue %" PRIu16" of device with port_id=%" PRIu8
572                         " already started\n",
573                         tx_queue_id, port_id);
574                 return 0;
575         }
576
577         return dev->dev_ops->tx_queue_start(dev, tx_queue_id);
578
579 }
580
581 int
582 rte_eth_dev_tx_queue_stop(uint8_t port_id, uint16_t tx_queue_id)
583 {
584         struct rte_eth_dev *dev;
585
586         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
587
588         dev = &rte_eth_devices[port_id];
589         if (tx_queue_id >= dev->data->nb_tx_queues) {
590                 RTE_PMD_DEBUG_TRACE("Invalid TX queue_id=%d\n", tx_queue_id);
591                 return -EINVAL;
592         }
593
594         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_stop, -ENOTSUP);
595
596         if (dev->data->tx_queue_state[tx_queue_id] == RTE_ETH_QUEUE_STATE_STOPPED) {
597                 RTE_PMD_DEBUG_TRACE("Queue %" PRIu16" of device with port_id=%" PRIu8
598                         " already stopped\n",
599                         tx_queue_id, port_id);
600                 return 0;
601         }
602
603         return dev->dev_ops->tx_queue_stop(dev, tx_queue_id);
604
605 }
606
607 static int
608 rte_eth_dev_tx_queue_config(struct rte_eth_dev *dev, uint16_t nb_queues)
609 {
610         uint16_t old_nb_queues = dev->data->nb_tx_queues;
611         void **txq;
612         unsigned i;
613
614         if (dev->data->tx_queues == NULL && nb_queues != 0) { /* first time configuration */
615                 dev->data->tx_queues = rte_zmalloc("ethdev->tx_queues",
616                                                    sizeof(dev->data->tx_queues[0]) * nb_queues,
617                                                    RTE_CACHE_LINE_SIZE);
618                 if (dev->data->tx_queues == NULL) {
619                         dev->data->nb_tx_queues = 0;
620                         return -(ENOMEM);
621                 }
622         } else if (dev->data->tx_queues != NULL && nb_queues != 0) { /* re-configure */
623                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_release, -ENOTSUP);
624
625                 txq = dev->data->tx_queues;
626
627                 for (i = nb_queues; i < old_nb_queues; i++)
628                         (*dev->dev_ops->tx_queue_release)(txq[i]);
629                 txq = rte_realloc(txq, sizeof(txq[0]) * nb_queues,
630                                   RTE_CACHE_LINE_SIZE);
631                 if (txq == NULL)
632                         return -ENOMEM;
633                 if (nb_queues > old_nb_queues) {
634                         uint16_t new_qs = nb_queues - old_nb_queues;
635
636                         memset(txq + old_nb_queues, 0,
637                                sizeof(txq[0]) * new_qs);
638                 }
639
640                 dev->data->tx_queues = txq;
641
642         } else if (dev->data->tx_queues != NULL && nb_queues == 0) {
643                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_release, -ENOTSUP);
644
645                 txq = dev->data->tx_queues;
646
647                 for (i = nb_queues; i < old_nb_queues; i++)
648                         (*dev->dev_ops->tx_queue_release)(txq[i]);
649
650                 rte_free(dev->data->tx_queues);
651                 dev->data->tx_queues = NULL;
652         }
653         dev->data->nb_tx_queues = nb_queues;
654         return 0;
655 }
656
657 uint32_t
658 rte_eth_speed_bitflag(uint32_t speed, int duplex)
659 {
660         switch (speed) {
661         case ETH_SPEED_NUM_10M:
662                 return duplex ? ETH_LINK_SPEED_10M : ETH_LINK_SPEED_10M_HD;
663         case ETH_SPEED_NUM_100M:
664                 return duplex ? ETH_LINK_SPEED_100M : ETH_LINK_SPEED_100M_HD;
665         case ETH_SPEED_NUM_1G:
666                 return ETH_LINK_SPEED_1G;
667         case ETH_SPEED_NUM_2_5G:
668                 return ETH_LINK_SPEED_2_5G;
669         case ETH_SPEED_NUM_5G:
670                 return ETH_LINK_SPEED_5G;
671         case ETH_SPEED_NUM_10G:
672                 return ETH_LINK_SPEED_10G;
673         case ETH_SPEED_NUM_20G:
674                 return ETH_LINK_SPEED_20G;
675         case ETH_SPEED_NUM_25G:
676                 return ETH_LINK_SPEED_25G;
677         case ETH_SPEED_NUM_40G:
678                 return ETH_LINK_SPEED_40G;
679         case ETH_SPEED_NUM_50G:
680                 return ETH_LINK_SPEED_50G;
681         case ETH_SPEED_NUM_56G:
682                 return ETH_LINK_SPEED_56G;
683         case ETH_SPEED_NUM_100G:
684                 return ETH_LINK_SPEED_100G;
685         default:
686                 return 0;
687         }
688 }
689
690 int
691 rte_eth_dev_configure(uint8_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q,
692                       const struct rte_eth_conf *dev_conf)
693 {
694         struct rte_eth_dev *dev;
695         struct rte_eth_dev_info dev_info;
696         int diag;
697
698         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
699
700         if (nb_rx_q > RTE_MAX_QUEUES_PER_PORT) {
701                 RTE_PMD_DEBUG_TRACE(
702                         "Number of RX queues requested (%u) is greater than max supported(%d)\n",
703                         nb_rx_q, RTE_MAX_QUEUES_PER_PORT);
704                 return -EINVAL;
705         }
706
707         if (nb_tx_q > RTE_MAX_QUEUES_PER_PORT) {
708                 RTE_PMD_DEBUG_TRACE(
709                         "Number of TX queues requested (%u) is greater than max supported(%d)\n",
710                         nb_tx_q, RTE_MAX_QUEUES_PER_PORT);
711                 return -EINVAL;
712         }
713
714         dev = &rte_eth_devices[port_id];
715
716         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP);
717         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_configure, -ENOTSUP);
718
719         if (dev->data->dev_started) {
720                 RTE_PMD_DEBUG_TRACE(
721                     "port %d must be stopped to allow configuration\n", port_id);
722                 return -EBUSY;
723         }
724
725         /* Copy the dev_conf parameter into the dev structure */
726         memcpy(&dev->data->dev_conf, dev_conf, sizeof(dev->data->dev_conf));
727
728         /*
729          * Check that the numbers of RX and TX queues are not greater
730          * than the maximum number of RX and TX queues supported by the
731          * configured device.
732          */
733         (*dev->dev_ops->dev_infos_get)(dev, &dev_info);
734
735         if (nb_rx_q == 0 && nb_tx_q == 0) {
736                 RTE_PMD_DEBUG_TRACE("ethdev port_id=%d both rx and tx queue cannot be 0\n", port_id);
737                 return -EINVAL;
738         }
739
740         if (nb_rx_q > dev_info.max_rx_queues) {
741                 RTE_PMD_DEBUG_TRACE("ethdev port_id=%d nb_rx_queues=%d > %d\n",
742                                 port_id, nb_rx_q, dev_info.max_rx_queues);
743                 return -EINVAL;
744         }
745
746         if (nb_tx_q > dev_info.max_tx_queues) {
747                 RTE_PMD_DEBUG_TRACE("ethdev port_id=%d nb_tx_queues=%d > %d\n",
748                                 port_id, nb_tx_q, dev_info.max_tx_queues);
749                 return -EINVAL;
750         }
751
752         /* Check that the device supports requested interrupts */
753         if ((dev_conf->intr_conf.lsc == 1) &&
754                 (!(dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC))) {
755                         RTE_PMD_DEBUG_TRACE("driver %s does not support lsc\n",
756                                         dev->data->drv_name);
757                         return -EINVAL;
758         }
759         if ((dev_conf->intr_conf.rmv == 1) &&
760             (!(dev->data->dev_flags & RTE_ETH_DEV_INTR_RMV))) {
761                 RTE_PMD_DEBUG_TRACE("driver %s does not support rmv\n",
762                                     dev->data->drv_name);
763                 return -EINVAL;
764         }
765
766         /*
767          * If jumbo frames are enabled, check that the maximum RX packet
768          * length is supported by the configured device.
769          */
770         if (dev_conf->rxmode.jumbo_frame == 1) {
771                 if (dev_conf->rxmode.max_rx_pkt_len >
772                     dev_info.max_rx_pktlen) {
773                         RTE_PMD_DEBUG_TRACE("ethdev port_id=%d max_rx_pkt_len %u"
774                                 " > max valid value %u\n",
775                                 port_id,
776                                 (unsigned)dev_conf->rxmode.max_rx_pkt_len,
777                                 (unsigned)dev_info.max_rx_pktlen);
778                         return -EINVAL;
779                 } else if (dev_conf->rxmode.max_rx_pkt_len < ETHER_MIN_LEN) {
780                         RTE_PMD_DEBUG_TRACE("ethdev port_id=%d max_rx_pkt_len %u"
781                                 " < min valid value %u\n",
782                                 port_id,
783                                 (unsigned)dev_conf->rxmode.max_rx_pkt_len,
784                                 (unsigned)ETHER_MIN_LEN);
785                         return -EINVAL;
786                 }
787         } else {
788                 if (dev_conf->rxmode.max_rx_pkt_len < ETHER_MIN_LEN ||
789                         dev_conf->rxmode.max_rx_pkt_len > ETHER_MAX_LEN)
790                         /* Use default value */
791                         dev->data->dev_conf.rxmode.max_rx_pkt_len =
792                                                         ETHER_MAX_LEN;
793         }
794
795         /*
796          * Setup new number of RX/TX queues and reconfigure device.
797          */
798         diag = rte_eth_dev_rx_queue_config(dev, nb_rx_q);
799         if (diag != 0) {
800                 RTE_PMD_DEBUG_TRACE("port%d rte_eth_dev_rx_queue_config = %d\n",
801                                 port_id, diag);
802                 return diag;
803         }
804
805         diag = rte_eth_dev_tx_queue_config(dev, nb_tx_q);
806         if (diag != 0) {
807                 RTE_PMD_DEBUG_TRACE("port%d rte_eth_dev_tx_queue_config = %d\n",
808                                 port_id, diag);
809                 rte_eth_dev_rx_queue_config(dev, 0);
810                 return diag;
811         }
812
813         diag = (*dev->dev_ops->dev_configure)(dev);
814         if (diag != 0) {
815                 RTE_PMD_DEBUG_TRACE("port%d dev_configure = %d\n",
816                                 port_id, diag);
817                 rte_eth_dev_rx_queue_config(dev, 0);
818                 rte_eth_dev_tx_queue_config(dev, 0);
819                 return diag;
820         }
821
822         return 0;
823 }
824
825 void
826 _rte_eth_dev_reset(struct rte_eth_dev *dev)
827 {
828         if (dev->data->dev_started) {
829                 RTE_PMD_DEBUG_TRACE(
830                         "port %d must be stopped to allow reset\n",
831                         dev->data->port_id);
832                 return;
833         }
834
835         rte_eth_dev_rx_queue_config(dev, 0);
836         rte_eth_dev_tx_queue_config(dev, 0);
837
838         memset(&dev->data->dev_conf, 0, sizeof(dev->data->dev_conf));
839 }
840
841 static void
842 rte_eth_dev_config_restore(uint8_t port_id)
843 {
844         struct rte_eth_dev *dev;
845         struct rte_eth_dev_info dev_info;
846         struct ether_addr *addr;
847         uint16_t i;
848         uint32_t pool = 0;
849         uint64_t pool_mask;
850
851         dev = &rte_eth_devices[port_id];
852
853         rte_eth_dev_info_get(port_id, &dev_info);
854
855         /* replay MAC address configuration including default MAC */
856         addr = &dev->data->mac_addrs[0];
857         if (*dev->dev_ops->mac_addr_set != NULL)
858                 (*dev->dev_ops->mac_addr_set)(dev, addr);
859         else if (*dev->dev_ops->mac_addr_add != NULL)
860                 (*dev->dev_ops->mac_addr_add)(dev, addr, 0, pool);
861
862         if (*dev->dev_ops->mac_addr_add != NULL) {
863                 for (i = 1; i < dev_info.max_mac_addrs; i++) {
864                         addr = &dev->data->mac_addrs[i];
865
866                         /* skip zero address */
867                         if (is_zero_ether_addr(addr))
868                                 continue;
869
870                         pool = 0;
871                         pool_mask = dev->data->mac_pool_sel[i];
872
873                         do {
874                                 if (pool_mask & 1ULL)
875                                         (*dev->dev_ops->mac_addr_add)(dev,
876                                                 addr, i, pool);
877                                 pool_mask >>= 1;
878                                 pool++;
879                         } while (pool_mask);
880                 }
881         }
882
883         /* replay promiscuous configuration */
884         if (rte_eth_promiscuous_get(port_id) == 1)
885                 rte_eth_promiscuous_enable(port_id);
886         else if (rte_eth_promiscuous_get(port_id) == 0)
887                 rte_eth_promiscuous_disable(port_id);
888
889         /* replay all multicast configuration */
890         if (rte_eth_allmulticast_get(port_id) == 1)
891                 rte_eth_allmulticast_enable(port_id);
892         else if (rte_eth_allmulticast_get(port_id) == 0)
893                 rte_eth_allmulticast_disable(port_id);
894 }
895
896 int
897 rte_eth_dev_start(uint8_t port_id)
898 {
899         struct rte_eth_dev *dev;
900         int diag;
901
902         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
903
904         dev = &rte_eth_devices[port_id];
905
906         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_start, -ENOTSUP);
907
908         if (dev->data->dev_started != 0) {
909                 RTE_PMD_DEBUG_TRACE("Device with port_id=%" PRIu8
910                         " already started\n",
911                         port_id);
912                 return 0;
913         }
914
915         diag = (*dev->dev_ops->dev_start)(dev);
916         if (diag == 0)
917                 dev->data->dev_started = 1;
918         else
919                 return diag;
920
921         rte_eth_dev_config_restore(port_id);
922
923         if (dev->data->dev_conf.intr_conf.lsc == 0) {
924                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->link_update, -ENOTSUP);
925                 (*dev->dev_ops->link_update)(dev, 0);
926         }
927         return 0;
928 }
929
930 void
931 rte_eth_dev_stop(uint8_t port_id)
932 {
933         struct rte_eth_dev *dev;
934
935         RTE_ETH_VALID_PORTID_OR_RET(port_id);
936         dev = &rte_eth_devices[port_id];
937
938         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->dev_stop);
939
940         if (dev->data->dev_started == 0) {
941                 RTE_PMD_DEBUG_TRACE("Device with port_id=%" PRIu8
942                         " already stopped\n",
943                         port_id);
944                 return;
945         }
946
947         dev->data->dev_started = 0;
948         (*dev->dev_ops->dev_stop)(dev);
949 }
950
951 int
952 rte_eth_dev_set_link_up(uint8_t port_id)
953 {
954         struct rte_eth_dev *dev;
955
956         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
957
958         dev = &rte_eth_devices[port_id];
959
960         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_set_link_up, -ENOTSUP);
961         return (*dev->dev_ops->dev_set_link_up)(dev);
962 }
963
964 int
965 rte_eth_dev_set_link_down(uint8_t port_id)
966 {
967         struct rte_eth_dev *dev;
968
969         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
970
971         dev = &rte_eth_devices[port_id];
972
973         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_set_link_down, -ENOTSUP);
974         return (*dev->dev_ops->dev_set_link_down)(dev);
975 }
976
977 void
978 rte_eth_dev_close(uint8_t port_id)
979 {
980         struct rte_eth_dev *dev;
981
982         RTE_ETH_VALID_PORTID_OR_RET(port_id);
983         dev = &rte_eth_devices[port_id];
984
985         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->dev_close);
986         dev->data->dev_started = 0;
987         (*dev->dev_ops->dev_close)(dev);
988
989         dev->data->nb_rx_queues = 0;
990         rte_free(dev->data->rx_queues);
991         dev->data->rx_queues = NULL;
992         dev->data->nb_tx_queues = 0;
993         rte_free(dev->data->tx_queues);
994         dev->data->tx_queues = NULL;
995 }
996
997 int
998 rte_eth_rx_queue_setup(uint8_t port_id, uint16_t rx_queue_id,
999                        uint16_t nb_rx_desc, unsigned int socket_id,
1000                        const struct rte_eth_rxconf *rx_conf,
1001                        struct rte_mempool *mp)
1002 {
1003         int ret;
1004         uint32_t mbp_buf_size;
1005         struct rte_eth_dev *dev;
1006         struct rte_eth_dev_info dev_info;
1007         void **rxq;
1008
1009         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1010
1011         dev = &rte_eth_devices[port_id];
1012         if (rx_queue_id >= dev->data->nb_rx_queues) {
1013                 RTE_PMD_DEBUG_TRACE("Invalid RX queue_id=%d\n", rx_queue_id);
1014                 return -EINVAL;
1015         }
1016
1017         if (dev->data->dev_started) {
1018                 RTE_PMD_DEBUG_TRACE(
1019                     "port %d must be stopped to allow configuration\n", port_id);
1020                 return -EBUSY;
1021         }
1022
1023         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP);
1024         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_setup, -ENOTSUP);
1025
1026         /*
1027          * Check the size of the mbuf data buffer.
1028          * This value must be provided in the private data of the memory pool.
1029          * First check that the memory pool has a valid private data.
1030          */
1031         rte_eth_dev_info_get(port_id, &dev_info);
1032         if (mp->private_data_size < sizeof(struct rte_pktmbuf_pool_private)) {
1033                 RTE_PMD_DEBUG_TRACE("%s private_data_size %d < %d\n",
1034                                 mp->name, (int) mp->private_data_size,
1035                                 (int) sizeof(struct rte_pktmbuf_pool_private));
1036                 return -ENOSPC;
1037         }
1038         mbp_buf_size = rte_pktmbuf_data_room_size(mp);
1039
1040         if ((mbp_buf_size - RTE_PKTMBUF_HEADROOM) < dev_info.min_rx_bufsize) {
1041                 RTE_PMD_DEBUG_TRACE("%s mbuf_data_room_size %d < %d "
1042                                 "(RTE_PKTMBUF_HEADROOM=%d + min_rx_bufsize(dev)"
1043                                 "=%d)\n",
1044                                 mp->name,
1045                                 (int)mbp_buf_size,
1046                                 (int)(RTE_PKTMBUF_HEADROOM +
1047                                       dev_info.min_rx_bufsize),
1048                                 (int)RTE_PKTMBUF_HEADROOM,
1049                                 (int)dev_info.min_rx_bufsize);
1050                 return -EINVAL;
1051         }
1052
1053         if (nb_rx_desc > dev_info.rx_desc_lim.nb_max ||
1054                         nb_rx_desc < dev_info.rx_desc_lim.nb_min ||
1055                         nb_rx_desc % dev_info.rx_desc_lim.nb_align != 0) {
1056
1057                 RTE_PMD_DEBUG_TRACE("Invalid value for nb_rx_desc(=%hu), "
1058                         "should be: <= %hu, = %hu, and a product of %hu\n",
1059                         nb_rx_desc,
1060                         dev_info.rx_desc_lim.nb_max,
1061                         dev_info.rx_desc_lim.nb_min,
1062                         dev_info.rx_desc_lim.nb_align);
1063                 return -EINVAL;
1064         }
1065
1066         rxq = dev->data->rx_queues;
1067         if (rxq[rx_queue_id]) {
1068                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_release,
1069                                         -ENOTSUP);
1070                 (*dev->dev_ops->rx_queue_release)(rxq[rx_queue_id]);
1071                 rxq[rx_queue_id] = NULL;
1072         }
1073
1074         if (rx_conf == NULL)
1075                 rx_conf = &dev_info.default_rxconf;
1076
1077         ret = (*dev->dev_ops->rx_queue_setup)(dev, rx_queue_id, nb_rx_desc,
1078                                               socket_id, rx_conf, mp);
1079         if (!ret) {
1080                 if (!dev->data->min_rx_buf_size ||
1081                     dev->data->min_rx_buf_size > mbp_buf_size)
1082                         dev->data->min_rx_buf_size = mbp_buf_size;
1083         }
1084
1085         return ret;
1086 }
1087
1088 int
1089 rte_eth_tx_queue_setup(uint8_t port_id, uint16_t tx_queue_id,
1090                        uint16_t nb_tx_desc, unsigned int socket_id,
1091                        const struct rte_eth_txconf *tx_conf)
1092 {
1093         struct rte_eth_dev *dev;
1094         struct rte_eth_dev_info dev_info;
1095         void **txq;
1096
1097         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1098
1099         dev = &rte_eth_devices[port_id];
1100         if (tx_queue_id >= dev->data->nb_tx_queues) {
1101                 RTE_PMD_DEBUG_TRACE("Invalid TX queue_id=%d\n", tx_queue_id);
1102                 return -EINVAL;
1103         }
1104
1105         if (dev->data->dev_started) {
1106                 RTE_PMD_DEBUG_TRACE(
1107                     "port %d must be stopped to allow configuration\n", port_id);
1108                 return -EBUSY;
1109         }
1110
1111         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP);
1112         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_setup, -ENOTSUP);
1113
1114         rte_eth_dev_info_get(port_id, &dev_info);
1115
1116         if (nb_tx_desc > dev_info.tx_desc_lim.nb_max ||
1117             nb_tx_desc < dev_info.tx_desc_lim.nb_min ||
1118             nb_tx_desc % dev_info.tx_desc_lim.nb_align != 0) {
1119                 RTE_PMD_DEBUG_TRACE("Invalid value for nb_tx_desc(=%hu), "
1120                                 "should be: <= %hu, = %hu, and a product of %hu\n",
1121                                 nb_tx_desc,
1122                                 dev_info.tx_desc_lim.nb_max,
1123                                 dev_info.tx_desc_lim.nb_min,
1124                                 dev_info.tx_desc_lim.nb_align);
1125                 return -EINVAL;
1126         }
1127
1128         txq = dev->data->tx_queues;
1129         if (txq[tx_queue_id]) {
1130                 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_release,
1131                                         -ENOTSUP);
1132                 (*dev->dev_ops->tx_queue_release)(txq[tx_queue_id]);
1133                 txq[tx_queue_id] = NULL;
1134         }
1135
1136         if (tx_conf == NULL)
1137                 tx_conf = &dev_info.default_txconf;
1138
1139         return (*dev->dev_ops->tx_queue_setup)(dev, tx_queue_id, nb_tx_desc,
1140                                                socket_id, tx_conf);
1141 }
1142
1143 void
1144 rte_eth_tx_buffer_drop_callback(struct rte_mbuf **pkts, uint16_t unsent,
1145                 void *userdata __rte_unused)
1146 {
1147         unsigned i;
1148
1149         for (i = 0; i < unsent; i++)
1150                 rte_pktmbuf_free(pkts[i]);
1151 }
1152
1153 void
1154 rte_eth_tx_buffer_count_callback(struct rte_mbuf **pkts, uint16_t unsent,
1155                 void *userdata)
1156 {
1157         uint64_t *count = userdata;
1158         unsigned i;
1159
1160         for (i = 0; i < unsent; i++)
1161                 rte_pktmbuf_free(pkts[i]);
1162
1163         *count += unsent;
1164 }
1165
1166 int
1167 rte_eth_tx_buffer_set_err_callback(struct rte_eth_dev_tx_buffer *buffer,
1168                 buffer_tx_error_fn cbfn, void *userdata)
1169 {
1170         buffer->error_callback = cbfn;
1171         buffer->error_userdata = userdata;
1172         return 0;
1173 }
1174
1175 int
1176 rte_eth_tx_buffer_init(struct rte_eth_dev_tx_buffer *buffer, uint16_t size)
1177 {
1178         int ret = 0;
1179
1180         if (buffer == NULL)
1181                 return -EINVAL;
1182
1183         buffer->size = size;
1184         if (buffer->error_callback == NULL) {
1185                 ret = rte_eth_tx_buffer_set_err_callback(
1186                         buffer, rte_eth_tx_buffer_drop_callback, NULL);
1187         }
1188
1189         return ret;
1190 }
1191
1192 int
1193 rte_eth_tx_done_cleanup(uint8_t port_id, uint16_t queue_id, uint32_t free_cnt)
1194 {
1195         struct rte_eth_dev *dev = &rte_eth_devices[port_id];
1196
1197         /* Validate Input Data. Bail if not valid or not supported. */
1198         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1199         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_done_cleanup, -ENOTSUP);
1200
1201         /* Call driver to free pending mbufs. */
1202         return (*dev->dev_ops->tx_done_cleanup)(dev->data->tx_queues[queue_id],
1203                         free_cnt);
1204 }
1205
1206 void
1207 rte_eth_promiscuous_enable(uint8_t port_id)
1208 {
1209         struct rte_eth_dev *dev;
1210
1211         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1212         dev = &rte_eth_devices[port_id];
1213
1214         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->promiscuous_enable);
1215         (*dev->dev_ops->promiscuous_enable)(dev);
1216         dev->data->promiscuous = 1;
1217 }
1218
1219 void
1220 rte_eth_promiscuous_disable(uint8_t port_id)
1221 {
1222         struct rte_eth_dev *dev;
1223
1224         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1225         dev = &rte_eth_devices[port_id];
1226
1227         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->promiscuous_disable);
1228         dev->data->promiscuous = 0;
1229         (*dev->dev_ops->promiscuous_disable)(dev);
1230 }
1231
1232 int
1233 rte_eth_promiscuous_get(uint8_t port_id)
1234 {
1235         struct rte_eth_dev *dev;
1236
1237         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1238
1239         dev = &rte_eth_devices[port_id];
1240         return dev->data->promiscuous;
1241 }
1242
1243 void
1244 rte_eth_allmulticast_enable(uint8_t port_id)
1245 {
1246         struct rte_eth_dev *dev;
1247
1248         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1249         dev = &rte_eth_devices[port_id];
1250
1251         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->allmulticast_enable);
1252         (*dev->dev_ops->allmulticast_enable)(dev);
1253         dev->data->all_multicast = 1;
1254 }
1255
1256 void
1257 rte_eth_allmulticast_disable(uint8_t port_id)
1258 {
1259         struct rte_eth_dev *dev;
1260
1261         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1262         dev = &rte_eth_devices[port_id];
1263
1264         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->allmulticast_disable);
1265         dev->data->all_multicast = 0;
1266         (*dev->dev_ops->allmulticast_disable)(dev);
1267 }
1268
1269 int
1270 rte_eth_allmulticast_get(uint8_t port_id)
1271 {
1272         struct rte_eth_dev *dev;
1273
1274         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1275
1276         dev = &rte_eth_devices[port_id];
1277         return dev->data->all_multicast;
1278 }
1279
1280 static inline int
1281 rte_eth_dev_atomic_read_link_status(struct rte_eth_dev *dev,
1282                                 struct rte_eth_link *link)
1283 {
1284         struct rte_eth_link *dst = link;
1285         struct rte_eth_link *src = &(dev->data->dev_link);
1286
1287         if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
1288                                         *(uint64_t *)src) == 0)
1289                 return -1;
1290
1291         return 0;
1292 }
1293
1294 void
1295 rte_eth_link_get(uint8_t port_id, struct rte_eth_link *eth_link)
1296 {
1297         struct rte_eth_dev *dev;
1298
1299         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1300         dev = &rte_eth_devices[port_id];
1301
1302         if (dev->data->dev_conf.intr_conf.lsc != 0)
1303                 rte_eth_dev_atomic_read_link_status(dev, eth_link);
1304         else {
1305                 RTE_FUNC_PTR_OR_RET(*dev->dev_ops->link_update);
1306                 (*dev->dev_ops->link_update)(dev, 1);
1307                 *eth_link = dev->data->dev_link;
1308         }
1309 }
1310
1311 void
1312 rte_eth_link_get_nowait(uint8_t port_id, struct rte_eth_link *eth_link)
1313 {
1314         struct rte_eth_dev *dev;
1315
1316         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1317         dev = &rte_eth_devices[port_id];
1318
1319         if (dev->data->dev_conf.intr_conf.lsc != 0)
1320                 rte_eth_dev_atomic_read_link_status(dev, eth_link);
1321         else {
1322                 RTE_FUNC_PTR_OR_RET(*dev->dev_ops->link_update);
1323                 (*dev->dev_ops->link_update)(dev, 0);
1324                 *eth_link = dev->data->dev_link;
1325         }
1326 }
1327
1328 int
1329 rte_eth_stats_get(uint8_t port_id, struct rte_eth_stats *stats)
1330 {
1331         struct rte_eth_dev *dev;
1332
1333         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1334
1335         dev = &rte_eth_devices[port_id];
1336         memset(stats, 0, sizeof(*stats));
1337
1338         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->stats_get, -ENOTSUP);
1339         stats->rx_nombuf = dev->data->rx_mbuf_alloc_failed;
1340         (*dev->dev_ops->stats_get)(dev, stats);
1341         return 0;
1342 }
1343
1344 void
1345 rte_eth_stats_reset(uint8_t port_id)
1346 {
1347         struct rte_eth_dev *dev;
1348
1349         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1350         dev = &rte_eth_devices[port_id];
1351
1352         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->stats_reset);
1353         (*dev->dev_ops->stats_reset)(dev);
1354         dev->data->rx_mbuf_alloc_failed = 0;
1355 }
1356
1357 static int
1358 get_xstats_count(uint8_t port_id)
1359 {
1360         struct rte_eth_dev *dev;
1361         int count;
1362
1363         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1364         dev = &rte_eth_devices[port_id];
1365         if (dev->dev_ops->xstats_get_names_by_id != NULL) {
1366                 count = (*dev->dev_ops->xstats_get_names_by_id)(dev, NULL,
1367                                 NULL, 0);
1368                 if (count < 0)
1369                         return count;
1370         }
1371         if (dev->dev_ops->xstats_get_names != NULL) {
1372                 count = (*dev->dev_ops->xstats_get_names)(dev, NULL, 0);
1373                 if (count < 0)
1374                         return count;
1375         } else
1376                 count = 0;
1377
1378         count += RTE_NB_STATS;
1379         count += RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS) *
1380                  RTE_NB_RXQ_STATS;
1381         count += RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS) *
1382                  RTE_NB_TXQ_STATS;
1383         return count;
1384 }
1385
1386 int
1387 rte_eth_xstats_get_id_by_name(uint8_t port_id, const char *xstat_name,
1388                 uint64_t *id)
1389 {
1390         int cnt_xstats, idx_xstat;
1391
1392         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1393
1394         if (!id) {
1395                 RTE_PMD_DEBUG_TRACE("Error: id pointer is NULL\n");
1396                 return -ENOMEM;
1397         }
1398
1399         if (!xstat_name) {
1400                 RTE_PMD_DEBUG_TRACE("Error: xstat_name pointer is NULL\n");
1401                 return -ENOMEM;
1402         }
1403
1404         /* Get count */
1405         cnt_xstats = rte_eth_xstats_get_names_by_id(port_id, NULL, 0, NULL);
1406         if (cnt_xstats  < 0) {
1407                 RTE_PMD_DEBUG_TRACE("Error: Cannot get count of xstats\n");
1408                 return -ENODEV;
1409         }
1410
1411         /* Get id-name lookup table */
1412         struct rte_eth_xstat_name xstats_names[cnt_xstats];
1413
1414         if (cnt_xstats != rte_eth_xstats_get_names_by_id(
1415                         port_id, xstats_names, cnt_xstats, NULL)) {
1416                 RTE_PMD_DEBUG_TRACE("Error: Cannot get xstats lookup\n");
1417                 return -1;
1418         }
1419
1420         for (idx_xstat = 0; idx_xstat < cnt_xstats; idx_xstat++) {
1421                 if (!strcmp(xstats_names[idx_xstat].name, xstat_name)) {
1422                         *id = idx_xstat;
1423                         return 0;
1424                 };
1425         }
1426
1427         return -EINVAL;
1428 }
1429
1430 int
1431 rte_eth_xstats_get_names_by_id(uint8_t port_id,
1432         struct rte_eth_xstat_name *xstats_names, unsigned int size,
1433         uint64_t *ids)
1434 {
1435         /* Get all xstats */
1436         if (!ids) {
1437                 struct rte_eth_dev *dev;
1438                 int cnt_used_entries;
1439                 int cnt_expected_entries;
1440                 int cnt_driver_entries;
1441                 uint32_t idx, id_queue;
1442                 uint16_t num_q;
1443
1444                 cnt_expected_entries = get_xstats_count(port_id);
1445                 if (xstats_names == NULL || cnt_expected_entries < 0 ||
1446                                 (int)size < cnt_expected_entries)
1447                         return cnt_expected_entries;
1448
1449                 /* port_id checked in get_xstats_count() */
1450                 dev = &rte_eth_devices[port_id];
1451                 cnt_used_entries = 0;
1452
1453                 for (idx = 0; idx < RTE_NB_STATS; idx++) {
1454                         snprintf(xstats_names[cnt_used_entries].name,
1455                                 sizeof(xstats_names[0].name),
1456                                 "%s", rte_stats_strings[idx].name);
1457                         cnt_used_entries++;
1458                 }
1459                 num_q = RTE_MIN(dev->data->nb_rx_queues,
1460                                 RTE_ETHDEV_QUEUE_STAT_CNTRS);
1461                 for (id_queue = 0; id_queue < num_q; id_queue++) {
1462                         for (idx = 0; idx < RTE_NB_RXQ_STATS; idx++) {
1463                                 snprintf(xstats_names[cnt_used_entries].name,
1464                                         sizeof(xstats_names[0].name),
1465                                         "rx_q%u%s",
1466                                         id_queue,
1467                                         rte_rxq_stats_strings[idx].name);
1468                                 cnt_used_entries++;
1469                         }
1470
1471                 }
1472                 num_q = RTE_MIN(dev->data->nb_tx_queues,
1473                                 RTE_ETHDEV_QUEUE_STAT_CNTRS);
1474                 for (id_queue = 0; id_queue < num_q; id_queue++) {
1475                         for (idx = 0; idx < RTE_NB_TXQ_STATS; idx++) {
1476                                 snprintf(xstats_names[cnt_used_entries].name,
1477                                         sizeof(xstats_names[0].name),
1478                                         "tx_q%u%s",
1479                                         id_queue,
1480                                         rte_txq_stats_strings[idx].name);
1481                                 cnt_used_entries++;
1482                         }
1483                 }
1484
1485                 if (dev->dev_ops->xstats_get_names_by_id != NULL) {
1486                         /* If there are any driver-specific xstats, append them
1487                          * to end of list.
1488                          */
1489                         cnt_driver_entries =
1490                                 (*dev->dev_ops->xstats_get_names_by_id)(
1491                                 dev,
1492                                 xstats_names + cnt_used_entries,
1493                                 NULL,
1494                                 size - cnt_used_entries);
1495                         if (cnt_driver_entries < 0)
1496                                 return cnt_driver_entries;
1497                         cnt_used_entries += cnt_driver_entries;
1498
1499                 } else if (dev->dev_ops->xstats_get_names != NULL) {
1500                         /* If there are any driver-specific xstats, append them
1501                          * to end of list.
1502                          */
1503                         cnt_driver_entries = (*dev->dev_ops->xstats_get_names)(
1504                                 dev,
1505                                 xstats_names + cnt_used_entries,
1506                                 size - cnt_used_entries);
1507                         if (cnt_driver_entries < 0)
1508                                 return cnt_driver_entries;
1509                         cnt_used_entries += cnt_driver_entries;
1510                 }
1511
1512                 return cnt_used_entries;
1513         }
1514         /* Get only xstats given by IDS */
1515         else {
1516                 uint16_t len, i;
1517                 struct rte_eth_xstat_name *xstats_names_copy;
1518
1519                 len = rte_eth_xstats_get_names_by_id(port_id, NULL, 0, NULL);
1520
1521                 xstats_names_copy =
1522                                 malloc(sizeof(struct rte_eth_xstat_name) * len);
1523                 if (!xstats_names_copy) {
1524                         RTE_PMD_DEBUG_TRACE(
1525                              "ERROR: can't allocate memory for values_copy\n");
1526                         free(xstats_names_copy);
1527                         return -1;
1528                 }
1529
1530                 rte_eth_xstats_get_names_by_id(port_id, xstats_names_copy,
1531                                 len, NULL);
1532
1533                 for (i = 0; i < size; i++) {
1534                         if (ids[i] >= len) {
1535                                 RTE_PMD_DEBUG_TRACE(
1536                                         "ERROR: id value isn't valid\n");
1537                                 return -1;
1538                         }
1539                         strcpy(xstats_names[i].name,
1540                                         xstats_names_copy[ids[i]].name);
1541                 }
1542                 free(xstats_names_copy);
1543                 return size;
1544         }
1545 }
1546
1547 int
1548 rte_eth_xstats_get_names(uint8_t port_id,
1549         struct rte_eth_xstat_name *xstats_names,
1550         unsigned int size)
1551 {
1552         struct rte_eth_dev *dev;
1553         int cnt_used_entries;
1554         int cnt_expected_entries;
1555         int cnt_driver_entries;
1556         uint32_t idx, id_queue;
1557         uint16_t num_q;
1558
1559         cnt_expected_entries = get_xstats_count(port_id);
1560         if (xstats_names == NULL || cnt_expected_entries < 0 ||
1561                         (int)size < cnt_expected_entries)
1562                 return cnt_expected_entries;
1563
1564         /* port_id checked in get_xstats_count() */
1565         dev = &rte_eth_devices[port_id];
1566         cnt_used_entries = 0;
1567
1568         for (idx = 0; idx < RTE_NB_STATS; idx++) {
1569                 snprintf(xstats_names[cnt_used_entries].name,
1570                         sizeof(xstats_names[0].name),
1571                         "%s", rte_stats_strings[idx].name);
1572                 cnt_used_entries++;
1573         }
1574         num_q = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
1575         for (id_queue = 0; id_queue < num_q; id_queue++) {
1576                 for (idx = 0; idx < RTE_NB_RXQ_STATS; idx++) {
1577                         snprintf(xstats_names[cnt_used_entries].name,
1578                                 sizeof(xstats_names[0].name),
1579                                 "rx_q%u%s",
1580                                 id_queue, rte_rxq_stats_strings[idx].name);
1581                         cnt_used_entries++;
1582                 }
1583
1584         }
1585         num_q = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
1586         for (id_queue = 0; id_queue < num_q; id_queue++) {
1587                 for (idx = 0; idx < RTE_NB_TXQ_STATS; idx++) {
1588                         snprintf(xstats_names[cnt_used_entries].name,
1589                                 sizeof(xstats_names[0].name),
1590                                 "tx_q%u%s",
1591                                 id_queue, rte_txq_stats_strings[idx].name);
1592                         cnt_used_entries++;
1593                 }
1594         }
1595
1596         if (dev->dev_ops->xstats_get_names != NULL) {
1597                 /* If there are any driver-specific xstats, append them
1598                  * to end of list.
1599                  */
1600                 cnt_driver_entries = (*dev->dev_ops->xstats_get_names)(
1601                         dev,
1602                         xstats_names + cnt_used_entries,
1603                         size - cnt_used_entries);
1604                 if (cnt_driver_entries < 0)
1605                         return cnt_driver_entries;
1606                 cnt_used_entries += cnt_driver_entries;
1607         }
1608
1609         return cnt_used_entries;
1610 }
1611
1612 /* retrieve ethdev extended statistics */
1613 int
1614 rte_eth_xstats_get_by_id(uint8_t port_id, const uint64_t *ids, uint64_t *values,
1615         unsigned int n)
1616 {
1617         /* If need all xstats */
1618         if (!ids) {
1619                 struct rte_eth_stats eth_stats;
1620                 struct rte_eth_dev *dev;
1621                 unsigned int count = 0, i, q;
1622                 signed int xcount = 0;
1623                 uint64_t val, *stats_ptr;
1624                 uint16_t nb_rxqs, nb_txqs;
1625
1626                 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1627                 dev = &rte_eth_devices[port_id];
1628
1629                 nb_rxqs = RTE_MIN(dev->data->nb_rx_queues,
1630                                 RTE_ETHDEV_QUEUE_STAT_CNTRS);
1631                 nb_txqs = RTE_MIN(dev->data->nb_tx_queues,
1632                                 RTE_ETHDEV_QUEUE_STAT_CNTRS);
1633
1634                 /* Return generic statistics */
1635                 count = RTE_NB_STATS + (nb_rxqs * RTE_NB_RXQ_STATS) +
1636                         (nb_txqs * RTE_NB_TXQ_STATS);
1637
1638
1639                 /* implemented by the driver */
1640                 if (dev->dev_ops->xstats_get_by_id != NULL) {
1641                         /* Retrieve the xstats from the driver at the end of the
1642                          * xstats struct. Retrieve all xstats.
1643                          */
1644                         xcount = (*dev->dev_ops->xstats_get_by_id)(dev,
1645                                         NULL,
1646                                         values ? values + count : NULL,
1647                                         (n > count) ? n - count : 0);
1648
1649                         if (xcount < 0)
1650                                 return xcount;
1651                 /* implemented by the driver */
1652                 } else if (dev->dev_ops->xstats_get != NULL) {
1653                         /* Retrieve the xstats from the driver at the end of the
1654                          * xstats struct. Retrieve all xstats.
1655                          * Compatibility for PMD without xstats_get_by_ids
1656                          */
1657                         unsigned int size = (n > count) ? n - count : 1;
1658                         struct rte_eth_xstat xstats[size];
1659
1660                         xcount = (*dev->dev_ops->xstats_get)(dev,
1661                                         values ? xstats : NULL, size);
1662
1663                         if (xcount < 0)
1664                                 return xcount;
1665
1666                         if (values != NULL)
1667                                 for (i = 0 ; i < (unsigned int)xcount; i++)
1668                                         values[i + count] = xstats[i].value;
1669                 }
1670
1671                 if (n < count + xcount || values == NULL)
1672                         return count + xcount;
1673
1674                 /* now fill the xstats structure */
1675                 count = 0;
1676                 rte_eth_stats_get(port_id, &eth_stats);
1677
1678                 /* global stats */
1679                 for (i = 0; i < RTE_NB_STATS; i++) {
1680                         stats_ptr = RTE_PTR_ADD(&eth_stats,
1681                                                 rte_stats_strings[i].offset);
1682                         val = *stats_ptr;
1683                         values[count++] = val;
1684                 }
1685
1686                 /* per-rxq stats */
1687                 for (q = 0; q < nb_rxqs; q++) {
1688                         for (i = 0; i < RTE_NB_RXQ_STATS; i++) {
1689                                 stats_ptr = RTE_PTR_ADD(&eth_stats,
1690                                             rte_rxq_stats_strings[i].offset +
1691                                             q * sizeof(uint64_t));
1692                                 val = *stats_ptr;
1693                                 values[count++] = val;
1694                         }
1695                 }
1696
1697                 /* per-txq stats */
1698                 for (q = 0; q < nb_txqs; q++) {
1699                         for (i = 0; i < RTE_NB_TXQ_STATS; i++) {
1700                                 stats_ptr = RTE_PTR_ADD(&eth_stats,
1701                                             rte_txq_stats_strings[i].offset +
1702                                             q * sizeof(uint64_t));
1703                                 val = *stats_ptr;
1704                                 values[count++] = val;
1705                         }
1706                 }
1707
1708                 return count + xcount;
1709         }
1710         /* Need only xstats given by IDS array */
1711         else {
1712                 uint16_t i, size;
1713                 uint64_t *values_copy;
1714
1715                 size = rte_eth_xstats_get_by_id(port_id, NULL, NULL, 0);
1716
1717                 values_copy = malloc(sizeof(*values_copy) * size);
1718                 if (!values_copy) {
1719                         RTE_PMD_DEBUG_TRACE(
1720                             "ERROR: can't allocate memory for values_copy\n");
1721                         return -1;
1722                 }
1723
1724                 rte_eth_xstats_get_by_id(port_id, NULL, values_copy, size);
1725
1726                 for (i = 0; i < n; i++) {
1727                         if (ids[i] >= size) {
1728                                 RTE_PMD_DEBUG_TRACE(
1729                                         "ERROR: id value isn't valid\n");
1730                                 return -1;
1731                         }
1732                         values[i] = values_copy[ids[i]];
1733                 }
1734                 free(values_copy);
1735                 return n;
1736         }
1737 }
1738
1739 int
1740 rte_eth_xstats_get(uint8_t port_id, struct rte_eth_xstat *xstats,
1741         unsigned int n)
1742 {
1743         struct rte_eth_stats eth_stats;
1744         struct rte_eth_dev *dev;
1745         unsigned int count = 0, i, q;
1746         signed int xcount = 0;
1747         uint64_t val, *stats_ptr;
1748         uint16_t nb_rxqs, nb_txqs;
1749
1750         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1751
1752         dev = &rte_eth_devices[port_id];
1753
1754         nb_rxqs = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
1755         nb_txqs = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
1756
1757         /* Return generic statistics */
1758         count = RTE_NB_STATS + (nb_rxqs * RTE_NB_RXQ_STATS) +
1759                 (nb_txqs * RTE_NB_TXQ_STATS);
1760
1761         /* implemented by the driver */
1762         if (dev->dev_ops->xstats_get != NULL) {
1763                 /* Retrieve the xstats from the driver at the end of the
1764                  * xstats struct.
1765                  */
1766                 xcount = (*dev->dev_ops->xstats_get)(dev,
1767                                      xstats ? xstats + count : NULL,
1768                                      (n > count) ? n - count : 0);
1769
1770                 if (xcount < 0)
1771                         return xcount;
1772         }
1773
1774         if (n < count + xcount || xstats == NULL)
1775                 return count + xcount;
1776
1777         /* now fill the xstats structure */
1778         count = 0;
1779         rte_eth_stats_get(port_id, &eth_stats);
1780
1781         /* global stats */
1782         for (i = 0; i < RTE_NB_STATS; i++) {
1783                 stats_ptr = RTE_PTR_ADD(&eth_stats,
1784                                         rte_stats_strings[i].offset);
1785                 val = *stats_ptr;
1786                 xstats[count++].value = val;
1787         }
1788
1789         /* per-rxq stats */
1790         for (q = 0; q < nb_rxqs; q++) {
1791                 for (i = 0; i < RTE_NB_RXQ_STATS; i++) {
1792                         stats_ptr = RTE_PTR_ADD(&eth_stats,
1793                                         rte_rxq_stats_strings[i].offset +
1794                                         q * sizeof(uint64_t));
1795                         val = *stats_ptr;
1796                         xstats[count++].value = val;
1797                 }
1798         }
1799
1800         /* per-txq stats */
1801         for (q = 0; q < nb_txqs; q++) {
1802                 for (i = 0; i < RTE_NB_TXQ_STATS; i++) {
1803                         stats_ptr = RTE_PTR_ADD(&eth_stats,
1804                                         rte_txq_stats_strings[i].offset +
1805                                         q * sizeof(uint64_t));
1806                         val = *stats_ptr;
1807                         xstats[count++].value = val;
1808                 }
1809         }
1810
1811         for (i = 0; i < count; i++)
1812                 xstats[i].id = i;
1813         /* add an offset to driver-specific stats */
1814         for ( ; i < count + xcount; i++)
1815                 xstats[i].id += count;
1816
1817         return count + xcount;
1818 }
1819
1820 /* reset ethdev extended statistics */
1821 void
1822 rte_eth_xstats_reset(uint8_t port_id)
1823 {
1824         struct rte_eth_dev *dev;
1825
1826         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1827         dev = &rte_eth_devices[port_id];
1828
1829         /* implemented by the driver */
1830         if (dev->dev_ops->xstats_reset != NULL) {
1831                 (*dev->dev_ops->xstats_reset)(dev);
1832                 return;
1833         }
1834
1835         /* fallback to default */
1836         rte_eth_stats_reset(port_id);
1837 }
1838
1839 static int
1840 set_queue_stats_mapping(uint8_t port_id, uint16_t queue_id, uint8_t stat_idx,
1841                 uint8_t is_rx)
1842 {
1843         struct rte_eth_dev *dev;
1844
1845         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1846
1847         dev = &rte_eth_devices[port_id];
1848
1849         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->queue_stats_mapping_set, -ENOTSUP);
1850         return (*dev->dev_ops->queue_stats_mapping_set)
1851                         (dev, queue_id, stat_idx, is_rx);
1852 }
1853
1854
1855 int
1856 rte_eth_dev_set_tx_queue_stats_mapping(uint8_t port_id, uint16_t tx_queue_id,
1857                 uint8_t stat_idx)
1858 {
1859         return set_queue_stats_mapping(port_id, tx_queue_id, stat_idx,
1860                         STAT_QMAP_TX);
1861 }
1862
1863
1864 int
1865 rte_eth_dev_set_rx_queue_stats_mapping(uint8_t port_id, uint16_t rx_queue_id,
1866                 uint8_t stat_idx)
1867 {
1868         return set_queue_stats_mapping(port_id, rx_queue_id, stat_idx,
1869                         STAT_QMAP_RX);
1870 }
1871
1872 int
1873 rte_eth_dev_fw_version_get(uint8_t port_id, char *fw_version, size_t fw_size)
1874 {
1875         struct rte_eth_dev *dev;
1876
1877         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1878         dev = &rte_eth_devices[port_id];
1879
1880         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->fw_version_get, -ENOTSUP);
1881         return (*dev->dev_ops->fw_version_get)(dev, fw_version, fw_size);
1882 }
1883
1884 void
1885 rte_eth_dev_info_get(uint8_t port_id, struct rte_eth_dev_info *dev_info)
1886 {
1887         struct rte_eth_dev *dev;
1888         const struct rte_eth_desc_lim lim = {
1889                 .nb_max = UINT16_MAX,
1890                 .nb_min = 0,
1891                 .nb_align = 1,
1892         };
1893
1894         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1895         dev = &rte_eth_devices[port_id];
1896
1897         memset(dev_info, 0, sizeof(struct rte_eth_dev_info));
1898         dev_info->rx_desc_lim = lim;
1899         dev_info->tx_desc_lim = lim;
1900
1901         RTE_FUNC_PTR_OR_RET(*dev->dev_ops->dev_infos_get);
1902         (*dev->dev_ops->dev_infos_get)(dev, dev_info);
1903         dev_info->driver_name = dev->data->drv_name;
1904         dev_info->nb_rx_queues = dev->data->nb_rx_queues;
1905         dev_info->nb_tx_queues = dev->data->nb_tx_queues;
1906 }
1907
1908 int
1909 rte_eth_dev_get_supported_ptypes(uint8_t port_id, uint32_t ptype_mask,
1910                                  uint32_t *ptypes, int num)
1911 {
1912         int i, j;
1913         struct rte_eth_dev *dev;
1914         const uint32_t *all_ptypes;
1915
1916         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1917         dev = &rte_eth_devices[port_id];
1918         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_supported_ptypes_get, 0);
1919         all_ptypes = (*dev->dev_ops->dev_supported_ptypes_get)(dev);
1920
1921         if (!all_ptypes)
1922                 return 0;
1923
1924         for (i = 0, j = 0; all_ptypes[i] != RTE_PTYPE_UNKNOWN; ++i)
1925                 if (all_ptypes[i] & ptype_mask) {
1926                         if (j < num)
1927                                 ptypes[j] = all_ptypes[i];
1928                         j++;
1929                 }
1930
1931         return j;
1932 }
1933
1934 void
1935 rte_eth_macaddr_get(uint8_t port_id, struct ether_addr *mac_addr)
1936 {
1937         struct rte_eth_dev *dev;
1938
1939         RTE_ETH_VALID_PORTID_OR_RET(port_id);
1940         dev = &rte_eth_devices[port_id];
1941         ether_addr_copy(&dev->data->mac_addrs[0], mac_addr);
1942 }
1943
1944
1945 int
1946 rte_eth_dev_get_mtu(uint8_t port_id, uint16_t *mtu)
1947 {
1948         struct rte_eth_dev *dev;
1949
1950         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1951
1952         dev = &rte_eth_devices[port_id];
1953         *mtu = dev->data->mtu;
1954         return 0;
1955 }
1956
1957 int
1958 rte_eth_dev_set_mtu(uint8_t port_id, uint16_t mtu)
1959 {
1960         int ret;
1961         struct rte_eth_dev *dev;
1962
1963         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1964         dev = &rte_eth_devices[port_id];
1965         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mtu_set, -ENOTSUP);
1966
1967         ret = (*dev->dev_ops->mtu_set)(dev, mtu);
1968         if (!ret)
1969                 dev->data->mtu = mtu;
1970
1971         return ret;
1972 }
1973
1974 int
1975 rte_eth_dev_vlan_filter(uint8_t port_id, uint16_t vlan_id, int on)
1976 {
1977         struct rte_eth_dev *dev;
1978
1979         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1980         dev = &rte_eth_devices[port_id];
1981         if (!(dev->data->dev_conf.rxmode.hw_vlan_filter)) {
1982                 RTE_PMD_DEBUG_TRACE("port %d: vlan-filtering disabled\n", port_id);
1983                 return -ENOSYS;
1984         }
1985
1986         if (vlan_id > 4095) {
1987                 RTE_PMD_DEBUG_TRACE("(port_id=%d) invalid vlan_id=%u > 4095\n",
1988                                 port_id, (unsigned) vlan_id);
1989                 return -EINVAL;
1990         }
1991         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_filter_set, -ENOTSUP);
1992
1993         return (*dev->dev_ops->vlan_filter_set)(dev, vlan_id, on);
1994 }
1995
1996 int
1997 rte_eth_dev_set_vlan_strip_on_queue(uint8_t port_id, uint16_t rx_queue_id, int on)
1998 {
1999         struct rte_eth_dev *dev;
2000
2001         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2002         dev = &rte_eth_devices[port_id];
2003         if (rx_queue_id >= dev->data->nb_rx_queues) {
2004                 RTE_PMD_DEBUG_TRACE("Invalid rx_queue_id=%d\n", port_id);
2005                 return -EINVAL;
2006         }
2007
2008         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_strip_queue_set, -ENOTSUP);
2009         (*dev->dev_ops->vlan_strip_queue_set)(dev, rx_queue_id, on);
2010
2011         return 0;
2012 }
2013
2014 int
2015 rte_eth_dev_set_vlan_ether_type(uint8_t port_id,
2016                                 enum rte_vlan_type vlan_type,
2017                                 uint16_t tpid)
2018 {
2019         struct rte_eth_dev *dev;
2020
2021         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2022         dev = &rte_eth_devices[port_id];
2023         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_tpid_set, -ENOTSUP);
2024
2025         return (*dev->dev_ops->vlan_tpid_set)(dev, vlan_type, tpid);
2026 }
2027
2028 int
2029 rte_eth_dev_set_vlan_offload(uint8_t port_id, int offload_mask)
2030 {
2031         struct rte_eth_dev *dev;
2032         int ret = 0;
2033         int mask = 0;
2034         int cur, org = 0;
2035
2036         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2037         dev = &rte_eth_devices[port_id];
2038
2039         /*check which option changed by application*/
2040         cur = !!(offload_mask & ETH_VLAN_STRIP_OFFLOAD);
2041         org = !!(dev->data->dev_conf.rxmode.hw_vlan_strip);
2042         if (cur != org) {
2043                 dev->data->dev_conf.rxmode.hw_vlan_strip = (uint8_t)cur;
2044                 mask |= ETH_VLAN_STRIP_MASK;
2045         }
2046
2047         cur = !!(offload_mask & ETH_VLAN_FILTER_OFFLOAD);
2048         org = !!(dev->data->dev_conf.rxmode.hw_vlan_filter);
2049         if (cur != org) {
2050                 dev->data->dev_conf.rxmode.hw_vlan_filter = (uint8_t)cur;
2051                 mask |= ETH_VLAN_FILTER_MASK;
2052         }
2053
2054         cur = !!(offload_mask & ETH_VLAN_EXTEND_OFFLOAD);
2055         org = !!(dev->data->dev_conf.rxmode.hw_vlan_extend);
2056         if (cur != org) {
2057                 dev->data->dev_conf.rxmode.hw_vlan_extend = (uint8_t)cur;
2058                 mask |= ETH_VLAN_EXTEND_MASK;
2059         }
2060
2061         /*no change*/
2062         if (mask == 0)
2063                 return ret;
2064
2065         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_offload_set, -ENOTSUP);
2066         (*dev->dev_ops->vlan_offload_set)(dev, mask);
2067
2068         return ret;
2069 }
2070
2071 int
2072 rte_eth_dev_get_vlan_offload(uint8_t port_id)
2073 {
2074         struct rte_eth_dev *dev;
2075         int ret = 0;
2076
2077         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2078         dev = &rte_eth_devices[port_id];
2079
2080         if (dev->data->dev_conf.rxmode.hw_vlan_strip)
2081                 ret |= ETH_VLAN_STRIP_OFFLOAD;
2082
2083         if (dev->data->dev_conf.rxmode.hw_vlan_filter)
2084                 ret |= ETH_VLAN_FILTER_OFFLOAD;
2085
2086         if (dev->data->dev_conf.rxmode.hw_vlan_extend)
2087                 ret |= ETH_VLAN_EXTEND_OFFLOAD;
2088
2089         return ret;
2090 }
2091
2092 int
2093 rte_eth_dev_set_vlan_pvid(uint8_t port_id, uint16_t pvid, int on)
2094 {
2095         struct rte_eth_dev *dev;
2096
2097         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2098         dev = &rte_eth_devices[port_id];
2099         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_pvid_set, -ENOTSUP);
2100         (*dev->dev_ops->vlan_pvid_set)(dev, pvid, on);
2101
2102         return 0;
2103 }
2104
2105 int
2106 rte_eth_dev_flow_ctrl_get(uint8_t port_id, struct rte_eth_fc_conf *fc_conf)
2107 {
2108         struct rte_eth_dev *dev;
2109
2110         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2111         dev = &rte_eth_devices[port_id];
2112         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->flow_ctrl_get, -ENOTSUP);
2113         memset(fc_conf, 0, sizeof(*fc_conf));
2114         return (*dev->dev_ops->flow_ctrl_get)(dev, fc_conf);
2115 }
2116
2117 int
2118 rte_eth_dev_flow_ctrl_set(uint8_t port_id, struct rte_eth_fc_conf *fc_conf)
2119 {
2120         struct rte_eth_dev *dev;
2121
2122         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2123         if ((fc_conf->send_xon != 0) && (fc_conf->send_xon != 1)) {
2124                 RTE_PMD_DEBUG_TRACE("Invalid send_xon, only 0/1 allowed\n");
2125                 return -EINVAL;
2126         }
2127
2128         dev = &rte_eth_devices[port_id];
2129         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->flow_ctrl_set, -ENOTSUP);
2130         return (*dev->dev_ops->flow_ctrl_set)(dev, fc_conf);
2131 }
2132
2133 int
2134 rte_eth_dev_priority_flow_ctrl_set(uint8_t port_id, struct rte_eth_pfc_conf *pfc_conf)
2135 {
2136         struct rte_eth_dev *dev;
2137
2138         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2139         if (pfc_conf->priority > (ETH_DCB_NUM_USER_PRIORITIES - 1)) {
2140                 RTE_PMD_DEBUG_TRACE("Invalid priority, only 0-7 allowed\n");
2141                 return -EINVAL;
2142         }
2143
2144         dev = &rte_eth_devices[port_id];
2145         /* High water, low water validation are device specific */
2146         if  (*dev->dev_ops->priority_flow_ctrl_set)
2147                 return (*dev->dev_ops->priority_flow_ctrl_set)(dev, pfc_conf);
2148         return -ENOTSUP;
2149 }
2150
2151 static int
2152 rte_eth_check_reta_mask(struct rte_eth_rss_reta_entry64 *reta_conf,
2153                         uint16_t reta_size)
2154 {
2155         uint16_t i, num;
2156
2157         if (!reta_conf)
2158                 return -EINVAL;
2159
2160         num = (reta_size + RTE_RETA_GROUP_SIZE - 1) / RTE_RETA_GROUP_SIZE;
2161         for (i = 0; i < num; i++) {
2162                 if (reta_conf[i].mask)
2163                         return 0;
2164         }
2165
2166         return -EINVAL;
2167 }
2168
2169 static int
2170 rte_eth_check_reta_entry(struct rte_eth_rss_reta_entry64 *reta_conf,
2171                          uint16_t reta_size,
2172                          uint16_t max_rxq)
2173 {
2174         uint16_t i, idx, shift;
2175
2176         if (!reta_conf)
2177                 return -EINVAL;
2178
2179         if (max_rxq == 0) {
2180                 RTE_PMD_DEBUG_TRACE("No receive queue is available\n");
2181                 return -EINVAL;
2182         }
2183
2184         for (i = 0; i < reta_size; i++) {
2185                 idx = i / RTE_RETA_GROUP_SIZE;
2186                 shift = i % RTE_RETA_GROUP_SIZE;
2187                 if ((reta_conf[idx].mask & (1ULL << shift)) &&
2188                         (reta_conf[idx].reta[shift] >= max_rxq)) {
2189                         RTE_PMD_DEBUG_TRACE("reta_conf[%u]->reta[%u]: %u exceeds "
2190                                 "the maximum rxq index: %u\n", idx, shift,
2191                                 reta_conf[idx].reta[shift], max_rxq);
2192                         return -EINVAL;
2193                 }
2194         }
2195
2196         return 0;
2197 }
2198
2199 int
2200 rte_eth_dev_rss_reta_update(uint8_t port_id,
2201                             struct rte_eth_rss_reta_entry64 *reta_conf,
2202                             uint16_t reta_size)
2203 {
2204         struct rte_eth_dev *dev;
2205         int ret;
2206
2207         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2208         /* Check mask bits */
2209         ret = rte_eth_check_reta_mask(reta_conf, reta_size);
2210         if (ret < 0)
2211                 return ret;
2212
2213         dev = &rte_eth_devices[port_id];
2214
2215         /* Check entry value */
2216         ret = rte_eth_check_reta_entry(reta_conf, reta_size,
2217                                 dev->data->nb_rx_queues);
2218         if (ret < 0)
2219                 return ret;
2220
2221         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->reta_update, -ENOTSUP);
2222         return (*dev->dev_ops->reta_update)(dev, reta_conf, reta_size);
2223 }
2224
2225 int
2226 rte_eth_dev_rss_reta_query(uint8_t port_id,
2227                            struct rte_eth_rss_reta_entry64 *reta_conf,
2228                            uint16_t reta_size)
2229 {
2230         struct rte_eth_dev *dev;
2231         int ret;
2232
2233         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2234
2235         /* Check mask bits */
2236         ret = rte_eth_check_reta_mask(reta_conf, reta_size);
2237         if (ret < 0)
2238                 return ret;
2239
2240         dev = &rte_eth_devices[port_id];
2241         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->reta_query, -ENOTSUP);
2242         return (*dev->dev_ops->reta_query)(dev, reta_conf, reta_size);
2243 }
2244
2245 int
2246 rte_eth_dev_rss_hash_update(uint8_t port_id, struct rte_eth_rss_conf *rss_conf)
2247 {
2248         struct rte_eth_dev *dev;
2249         uint16_t rss_hash_protos;
2250
2251         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2252         rss_hash_protos = rss_conf->rss_hf;
2253         if ((rss_hash_protos != 0) &&
2254             ((rss_hash_protos & ETH_RSS_PROTO_MASK) == 0)) {
2255                 RTE_PMD_DEBUG_TRACE("Invalid rss_hash_protos=0x%x\n",
2256                                 rss_hash_protos);
2257                 return -EINVAL;
2258         }
2259         dev = &rte_eth_devices[port_id];
2260         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rss_hash_update, -ENOTSUP);
2261         return (*dev->dev_ops->rss_hash_update)(dev, rss_conf);
2262 }
2263
2264 int
2265 rte_eth_dev_rss_hash_conf_get(uint8_t port_id,
2266                               struct rte_eth_rss_conf *rss_conf)
2267 {
2268         struct rte_eth_dev *dev;
2269
2270         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2271         dev = &rte_eth_devices[port_id];
2272         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rss_hash_conf_get, -ENOTSUP);
2273         return (*dev->dev_ops->rss_hash_conf_get)(dev, rss_conf);
2274 }
2275
2276 int
2277 rte_eth_dev_udp_tunnel_port_add(uint8_t port_id,
2278                                 struct rte_eth_udp_tunnel *udp_tunnel)
2279 {
2280         struct rte_eth_dev *dev;
2281
2282         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2283         if (udp_tunnel == NULL) {
2284                 RTE_PMD_DEBUG_TRACE("Invalid udp_tunnel parameter\n");
2285                 return -EINVAL;
2286         }
2287
2288         if (udp_tunnel->prot_type >= RTE_TUNNEL_TYPE_MAX) {
2289                 RTE_PMD_DEBUG_TRACE("Invalid tunnel type\n");
2290                 return -EINVAL;
2291         }
2292
2293         dev = &rte_eth_devices[port_id];
2294         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->udp_tunnel_port_add, -ENOTSUP);
2295         return (*dev->dev_ops->udp_tunnel_port_add)(dev, udp_tunnel);
2296 }
2297
2298 int
2299 rte_eth_dev_udp_tunnel_port_delete(uint8_t port_id,
2300                                    struct rte_eth_udp_tunnel *udp_tunnel)
2301 {
2302         struct rte_eth_dev *dev;
2303
2304         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2305         dev = &rte_eth_devices[port_id];
2306
2307         if (udp_tunnel == NULL) {
2308                 RTE_PMD_DEBUG_TRACE("Invalid udp_tunnel parameter\n");
2309                 return -EINVAL;
2310         }
2311
2312         if (udp_tunnel->prot_type >= RTE_TUNNEL_TYPE_MAX) {
2313                 RTE_PMD_DEBUG_TRACE("Invalid tunnel type\n");
2314                 return -EINVAL;
2315         }
2316
2317         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->udp_tunnel_port_del, -ENOTSUP);
2318         return (*dev->dev_ops->udp_tunnel_port_del)(dev, udp_tunnel);
2319 }
2320
2321 int
2322 rte_eth_led_on(uint8_t port_id)
2323 {
2324         struct rte_eth_dev *dev;
2325
2326         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2327         dev = &rte_eth_devices[port_id];
2328         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_led_on, -ENOTSUP);
2329         return (*dev->dev_ops->dev_led_on)(dev);
2330 }
2331
2332 int
2333 rte_eth_led_off(uint8_t port_id)
2334 {
2335         struct rte_eth_dev *dev;
2336
2337         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2338         dev = &rte_eth_devices[port_id];
2339         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_led_off, -ENOTSUP);
2340         return (*dev->dev_ops->dev_led_off)(dev);
2341 }
2342
2343 /*
2344  * Returns index into MAC address array of addr. Use 00:00:00:00:00:00 to find
2345  * an empty spot.
2346  */
2347 static int
2348 get_mac_addr_index(uint8_t port_id, const struct ether_addr *addr)
2349 {
2350         struct rte_eth_dev_info dev_info;
2351         struct rte_eth_dev *dev = &rte_eth_devices[port_id];
2352         unsigned i;
2353
2354         rte_eth_dev_info_get(port_id, &dev_info);
2355
2356         for (i = 0; i < dev_info.max_mac_addrs; i++)
2357                 if (memcmp(addr, &dev->data->mac_addrs[i], ETHER_ADDR_LEN) == 0)
2358                         return i;
2359
2360         return -1;
2361 }
2362
2363 static const struct ether_addr null_mac_addr;
2364
2365 int
2366 rte_eth_dev_mac_addr_add(uint8_t port_id, struct ether_addr *addr,
2367                         uint32_t pool)
2368 {
2369         struct rte_eth_dev *dev;
2370         int index;
2371         uint64_t pool_mask;
2372         int ret;
2373
2374         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2375         dev = &rte_eth_devices[port_id];
2376         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_add, -ENOTSUP);
2377
2378         if (is_zero_ether_addr(addr)) {
2379                 RTE_PMD_DEBUG_TRACE("port %d: Cannot add NULL MAC address\n",
2380                         port_id);
2381                 return -EINVAL;
2382         }
2383         if (pool >= ETH_64_POOLS) {
2384                 RTE_PMD_DEBUG_TRACE("pool id must be 0-%d\n", ETH_64_POOLS - 1);
2385                 return -EINVAL;
2386         }
2387
2388         index = get_mac_addr_index(port_id, addr);
2389         if (index < 0) {
2390                 index = get_mac_addr_index(port_id, &null_mac_addr);
2391                 if (index < 0) {
2392                         RTE_PMD_DEBUG_TRACE("port %d: MAC address array full\n",
2393                                 port_id);
2394                         return -ENOSPC;
2395                 }
2396         } else {
2397                 pool_mask = dev->data->mac_pool_sel[index];
2398
2399                 /* Check if both MAC address and pool is already there, and do nothing */
2400                 if (pool_mask & (1ULL << pool))
2401                         return 0;
2402         }
2403
2404         /* Update NIC */
2405         ret = (*dev->dev_ops->mac_addr_add)(dev, addr, index, pool);
2406
2407         if (ret == 0) {
2408                 /* Update address in NIC data structure */
2409                 ether_addr_copy(addr, &dev->data->mac_addrs[index]);
2410
2411                 /* Update pool bitmap in NIC data structure */
2412                 dev->data->mac_pool_sel[index] |= (1ULL << pool);
2413         }
2414
2415         return ret;
2416 }
2417
2418 int
2419 rte_eth_dev_mac_addr_remove(uint8_t port_id, struct ether_addr *addr)
2420 {
2421         struct rte_eth_dev *dev;
2422         int index;
2423
2424         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2425         dev = &rte_eth_devices[port_id];
2426         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_remove, -ENOTSUP);
2427
2428         index = get_mac_addr_index(port_id, addr);
2429         if (index == 0) {
2430                 RTE_PMD_DEBUG_TRACE("port %d: Cannot remove default MAC address\n", port_id);
2431                 return -EADDRINUSE;
2432         } else if (index < 0)
2433                 return 0;  /* Do nothing if address wasn't found */
2434
2435         /* Update NIC */
2436         (*dev->dev_ops->mac_addr_remove)(dev, index);
2437
2438         /* Update address in NIC data structure */
2439         ether_addr_copy(&null_mac_addr, &dev->data->mac_addrs[index]);
2440
2441         /* reset pool bitmap */
2442         dev->data->mac_pool_sel[index] = 0;
2443
2444         return 0;
2445 }
2446
2447 int
2448 rte_eth_dev_default_mac_addr_set(uint8_t port_id, struct ether_addr *addr)
2449 {
2450         struct rte_eth_dev *dev;
2451
2452         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2453
2454         if (!is_valid_assigned_ether_addr(addr))
2455                 return -EINVAL;
2456
2457         dev = &rte_eth_devices[port_id];
2458         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_set, -ENOTSUP);
2459
2460         /* Update default address in NIC data structure */
2461         ether_addr_copy(addr, &dev->data->mac_addrs[0]);
2462
2463         (*dev->dev_ops->mac_addr_set)(dev, addr);
2464
2465         return 0;
2466 }
2467
2468
2469 /*
2470  * Returns index into MAC address array of addr. Use 00:00:00:00:00:00 to find
2471  * an empty spot.
2472  */
2473 static int
2474 get_hash_mac_addr_index(uint8_t port_id, const struct ether_addr *addr)
2475 {
2476         struct rte_eth_dev_info dev_info;
2477         struct rte_eth_dev *dev = &rte_eth_devices[port_id];
2478         unsigned i;
2479
2480         rte_eth_dev_info_get(port_id, &dev_info);
2481         if (!dev->data->hash_mac_addrs)
2482                 return -1;
2483
2484         for (i = 0; i < dev_info.max_hash_mac_addrs; i++)
2485                 if (memcmp(addr, &dev->data->hash_mac_addrs[i],
2486                         ETHER_ADDR_LEN) == 0)
2487                         return i;
2488
2489         return -1;
2490 }
2491
2492 int
2493 rte_eth_dev_uc_hash_table_set(uint8_t port_id, struct ether_addr *addr,
2494                                 uint8_t on)
2495 {
2496         int index;
2497         int ret;
2498         struct rte_eth_dev *dev;
2499
2500         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2501
2502         dev = &rte_eth_devices[port_id];
2503         if (is_zero_ether_addr(addr)) {
2504                 RTE_PMD_DEBUG_TRACE("port %d: Cannot add NULL MAC address\n",
2505                         port_id);
2506                 return -EINVAL;
2507         }
2508
2509         index = get_hash_mac_addr_index(port_id, addr);
2510         /* Check if it's already there, and do nothing */
2511         if ((index >= 0) && (on))
2512                 return 0;
2513
2514         if (index < 0) {
2515                 if (!on) {
2516                         RTE_PMD_DEBUG_TRACE("port %d: the MAC address was not "
2517                                 "set in UTA\n", port_id);
2518                         return -EINVAL;
2519                 }
2520
2521                 index = get_hash_mac_addr_index(port_id, &null_mac_addr);
2522                 if (index < 0) {
2523                         RTE_PMD_DEBUG_TRACE("port %d: MAC address array full\n",
2524                                         port_id);
2525                         return -ENOSPC;
2526                 }
2527         }
2528
2529         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->uc_hash_table_set, -ENOTSUP);
2530         ret = (*dev->dev_ops->uc_hash_table_set)(dev, addr, on);
2531         if (ret == 0) {
2532                 /* Update address in NIC data structure */
2533                 if (on)
2534                         ether_addr_copy(addr,
2535                                         &dev->data->hash_mac_addrs[index]);
2536                 else
2537                         ether_addr_copy(&null_mac_addr,
2538                                         &dev->data->hash_mac_addrs[index]);
2539         }
2540
2541         return ret;
2542 }
2543
2544 int
2545 rte_eth_dev_uc_all_hash_table_set(uint8_t port_id, uint8_t on)
2546 {
2547         struct rte_eth_dev *dev;
2548
2549         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2550
2551         dev = &rte_eth_devices[port_id];
2552
2553         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->uc_all_hash_table_set, -ENOTSUP);
2554         return (*dev->dev_ops->uc_all_hash_table_set)(dev, on);
2555 }
2556
2557 int rte_eth_set_queue_rate_limit(uint8_t port_id, uint16_t queue_idx,
2558                                         uint16_t tx_rate)
2559 {
2560         struct rte_eth_dev *dev;
2561         struct rte_eth_dev_info dev_info;
2562         struct rte_eth_link link;
2563
2564         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2565
2566         dev = &rte_eth_devices[port_id];
2567         rte_eth_dev_info_get(port_id, &dev_info);
2568         link = dev->data->dev_link;
2569
2570         if (queue_idx > dev_info.max_tx_queues) {
2571                 RTE_PMD_DEBUG_TRACE("set queue rate limit:port %d: "
2572                                 "invalid queue id=%d\n", port_id, queue_idx);
2573                 return -EINVAL;
2574         }
2575
2576         if (tx_rate > link.link_speed) {
2577                 RTE_PMD_DEBUG_TRACE("set queue rate limit:invalid tx_rate=%d, "
2578                                 "bigger than link speed= %d\n",
2579                         tx_rate, link.link_speed);
2580                 return -EINVAL;
2581         }
2582
2583         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_queue_rate_limit, -ENOTSUP);
2584         return (*dev->dev_ops->set_queue_rate_limit)(dev, queue_idx, tx_rate);
2585 }
2586
2587 int
2588 rte_eth_mirror_rule_set(uint8_t port_id,
2589                         struct rte_eth_mirror_conf *mirror_conf,
2590                         uint8_t rule_id, uint8_t on)
2591 {
2592         struct rte_eth_dev *dev;
2593
2594         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2595         if (mirror_conf->rule_type == 0) {
2596                 RTE_PMD_DEBUG_TRACE("mirror rule type can not be 0.\n");
2597                 return -EINVAL;
2598         }
2599
2600         if (mirror_conf->dst_pool >= ETH_64_POOLS) {
2601                 RTE_PMD_DEBUG_TRACE("Invalid dst pool, pool id must be 0-%d\n",
2602                                 ETH_64_POOLS - 1);
2603                 return -EINVAL;
2604         }
2605
2606         if ((mirror_conf->rule_type & (ETH_MIRROR_VIRTUAL_POOL_UP |
2607              ETH_MIRROR_VIRTUAL_POOL_DOWN)) &&
2608             (mirror_conf->pool_mask == 0)) {
2609                 RTE_PMD_DEBUG_TRACE("Invalid mirror pool, pool mask can not be 0.\n");
2610                 return -EINVAL;
2611         }
2612
2613         if ((mirror_conf->rule_type & ETH_MIRROR_VLAN) &&
2614             mirror_conf->vlan.vlan_mask == 0) {
2615                 RTE_PMD_DEBUG_TRACE("Invalid vlan mask, vlan mask can not be 0.\n");
2616                 return -EINVAL;
2617         }
2618
2619         dev = &rte_eth_devices[port_id];
2620         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mirror_rule_set, -ENOTSUP);
2621
2622         return (*dev->dev_ops->mirror_rule_set)(dev, mirror_conf, rule_id, on);
2623 }
2624
2625 int
2626 rte_eth_mirror_rule_reset(uint8_t port_id, uint8_t rule_id)
2627 {
2628         struct rte_eth_dev *dev;
2629
2630         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2631
2632         dev = &rte_eth_devices[port_id];
2633         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mirror_rule_reset, -ENOTSUP);
2634
2635         return (*dev->dev_ops->mirror_rule_reset)(dev, rule_id);
2636 }
2637
2638 int
2639 rte_eth_dev_callback_register(uint8_t port_id,
2640                         enum rte_eth_event_type event,
2641                         rte_eth_dev_cb_fn cb_fn, void *cb_arg)
2642 {
2643         struct rte_eth_dev *dev;
2644         struct rte_eth_dev_callback *user_cb;
2645
2646         if (!cb_fn)
2647                 return -EINVAL;
2648
2649         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
2650
2651         dev = &rte_eth_devices[port_id];
2652         rte_spinlock_lock(&rte_eth_dev_cb_lock);
2653
2654         TAILQ_FOREACH(user_cb, &(dev->link_intr_cbs), next) {
2655                 if (user_cb->cb_fn == cb_fn &&
2656                         user_cb->cb_arg == cb_arg &&
2657                         user_cb->event == event) {
2658                         break;
2659                 }
2660         }
2661
2662         /* create a new callback. */
2663         if (user_cb == NULL) {
2664                 user_cb = rte_zmalloc("INTR_USER_CALLBACK",
2665                                         sizeof(struct rte_eth_dev_callback), 0);
2666                 if (user_cb != NULL) {
2667                         user_cb->cb_fn = cb_fn;
2668                         user_cb->cb_arg = cb_arg;
2669                         user_cb->event = event;
2670                         TAILQ_INSERT_TAIL(&(dev->link_intr_cbs), user_cb, next);
2671                 }
2672         }
2673
2674         rte_spinlock_unlock(&rte_eth_dev_cb_lock);
2675         return (user_cb == NULL) ? -ENOMEM : 0;
2676 }
2677
2678 int
2679 rte_eth_dev_callback_unregister(uint8_t port_id,
2680                         enum rte_eth_event_type event,
2681                         rte_eth_dev_cb_fn cb_fn, void *cb_arg)
2682 {
2683         int ret;
2684         struct rte_eth_dev *dev;
2685         struct rte_eth_dev_callback *cb, *next;
2686
2687         if (!cb_fn)
2688                 return -EINVAL;
2689
2690         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
2691
2692         dev = &rte_eth_devices[port_id];
2693         rte_spinlock_lock(&rte_eth_dev_cb_lock);
2694
2695         ret = 0;
2696         for (cb = TAILQ_FIRST(&dev->link_intr_cbs); cb != NULL; cb = next) {
2697
2698                 next = TAILQ_NEXT(cb, next);
2699
2700                 if (cb->cb_fn != cb_fn || cb->event != event ||
2701                                 (cb->cb_arg != (void *)-1 &&
2702                                 cb->cb_arg != cb_arg))
2703                         continue;
2704
2705                 /*
2706                  * if this callback is not executing right now,
2707                  * then remove it.
2708                  */
2709                 if (cb->active == 0) {
2710                         TAILQ_REMOVE(&(dev->link_intr_cbs), cb, next);
2711                         rte_free(cb);
2712                 } else {
2713                         ret = -EAGAIN;
2714                 }
2715         }
2716
2717         rte_spinlock_unlock(&rte_eth_dev_cb_lock);
2718         return ret;
2719 }
2720
2721 void
2722 _rte_eth_dev_callback_process(struct rte_eth_dev *dev,
2723         enum rte_eth_event_type event, void *cb_arg)
2724 {
2725         struct rte_eth_dev_callback *cb_lst;
2726         struct rte_eth_dev_callback dev_cb;
2727
2728         rte_spinlock_lock(&rte_eth_dev_cb_lock);
2729         TAILQ_FOREACH(cb_lst, &(dev->link_intr_cbs), next) {
2730                 if (cb_lst->cb_fn == NULL || cb_lst->event != event)
2731                         continue;
2732                 dev_cb = *cb_lst;
2733                 cb_lst->active = 1;
2734                 if (cb_arg != NULL)
2735                         dev_cb.cb_arg = cb_arg;
2736
2737                 rte_spinlock_unlock(&rte_eth_dev_cb_lock);
2738                 dev_cb.cb_fn(dev->data->port_id, dev_cb.event,
2739                                                 dev_cb.cb_arg);
2740                 rte_spinlock_lock(&rte_eth_dev_cb_lock);
2741                 cb_lst->active = 0;
2742         }
2743         rte_spinlock_unlock(&rte_eth_dev_cb_lock);
2744 }
2745
2746 int
2747 rte_eth_dev_rx_intr_ctl(uint8_t port_id, int epfd, int op, void *data)
2748 {
2749         uint32_t vec;
2750         struct rte_eth_dev *dev;
2751         struct rte_intr_handle *intr_handle;
2752         uint16_t qid;
2753         int rc;
2754
2755         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2756
2757         dev = &rte_eth_devices[port_id];
2758
2759         if (!dev->intr_handle) {
2760                 RTE_PMD_DEBUG_TRACE("RX Intr handle unset\n");
2761                 return -ENOTSUP;
2762         }
2763
2764         intr_handle = dev->intr_handle;
2765         if (!intr_handle->intr_vec) {
2766                 RTE_PMD_DEBUG_TRACE("RX Intr vector unset\n");
2767                 return -EPERM;
2768         }
2769
2770         for (qid = 0; qid < dev->data->nb_rx_queues; qid++) {
2771                 vec = intr_handle->intr_vec[qid];
2772                 rc = rte_intr_rx_ctl(intr_handle, epfd, op, vec, data);
2773                 if (rc && rc != -EEXIST) {
2774                         RTE_PMD_DEBUG_TRACE("p %u q %u rx ctl error"
2775                                         " op %d epfd %d vec %u\n",
2776                                         port_id, qid, op, epfd, vec);
2777                 }
2778         }
2779
2780         return 0;
2781 }
2782
2783 const struct rte_memzone *
2784 rte_eth_dma_zone_reserve(const struct rte_eth_dev *dev, const char *ring_name,
2785                          uint16_t queue_id, size_t size, unsigned align,
2786                          int socket_id)
2787 {
2788         char z_name[RTE_MEMZONE_NAMESIZE];
2789         const struct rte_memzone *mz;
2790
2791         snprintf(z_name, sizeof(z_name), "%s_%s_%d_%d",
2792                  dev->data->drv_name, ring_name,
2793                  dev->data->port_id, queue_id);
2794
2795         mz = rte_memzone_lookup(z_name);
2796         if (mz)
2797                 return mz;
2798
2799         if (rte_xen_dom0_supported())
2800                 return rte_memzone_reserve_bounded(z_name, size, socket_id,
2801                                                    0, align, RTE_PGSIZE_2M);
2802         else
2803                 return rte_memzone_reserve_aligned(z_name, size, socket_id,
2804                                                    0, align);
2805 }
2806
2807 int
2808 rte_eth_dev_rx_intr_ctl_q(uint8_t port_id, uint16_t queue_id,
2809                           int epfd, int op, void *data)
2810 {
2811         uint32_t vec;
2812         struct rte_eth_dev *dev;
2813         struct rte_intr_handle *intr_handle;
2814         int rc;
2815
2816         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2817
2818         dev = &rte_eth_devices[port_id];
2819         if (queue_id >= dev->data->nb_rx_queues) {
2820                 RTE_PMD_DEBUG_TRACE("Invalid RX queue_id=%u\n", queue_id);
2821                 return -EINVAL;
2822         }
2823
2824         if (!dev->intr_handle) {
2825                 RTE_PMD_DEBUG_TRACE("RX Intr handle unset\n");
2826                 return -ENOTSUP;
2827         }
2828
2829         intr_handle = dev->intr_handle;
2830         if (!intr_handle->intr_vec) {
2831                 RTE_PMD_DEBUG_TRACE("RX Intr vector unset\n");
2832                 return -EPERM;
2833         }
2834
2835         vec = intr_handle->intr_vec[queue_id];
2836         rc = rte_intr_rx_ctl(intr_handle, epfd, op, vec, data);
2837         if (rc && rc != -EEXIST) {
2838                 RTE_PMD_DEBUG_TRACE("p %u q %u rx ctl error"
2839                                 " op %d epfd %d vec %u\n",
2840                                 port_id, queue_id, op, epfd, vec);
2841                 return rc;
2842         }
2843
2844         return 0;
2845 }
2846
2847 int
2848 rte_eth_dev_rx_intr_enable(uint8_t port_id,
2849                            uint16_t queue_id)
2850 {
2851         struct rte_eth_dev *dev;
2852
2853         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2854
2855         dev = &rte_eth_devices[port_id];
2856
2857         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_intr_enable, -ENOTSUP);
2858         return (*dev->dev_ops->rx_queue_intr_enable)(dev, queue_id);
2859 }
2860
2861 int
2862 rte_eth_dev_rx_intr_disable(uint8_t port_id,
2863                             uint16_t queue_id)
2864 {
2865         struct rte_eth_dev *dev;
2866
2867         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2868
2869         dev = &rte_eth_devices[port_id];
2870
2871         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_intr_disable, -ENOTSUP);
2872         return (*dev->dev_ops->rx_queue_intr_disable)(dev, queue_id);
2873 }
2874
2875 #ifdef RTE_NIC_BYPASS
2876 int rte_eth_dev_bypass_init(uint8_t port_id)
2877 {
2878         struct rte_eth_dev *dev;
2879
2880         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2881
2882         dev = &rte_eth_devices[port_id];
2883         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_init, -ENOTSUP);
2884         (*dev->dev_ops->bypass_init)(dev);
2885         return 0;
2886 }
2887
2888 int
2889 rte_eth_dev_bypass_state_show(uint8_t port_id, uint32_t *state)
2890 {
2891         struct rte_eth_dev *dev;
2892
2893         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2894
2895         dev = &rte_eth_devices[port_id];
2896         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_state_show, -ENOTSUP);
2897         (*dev->dev_ops->bypass_state_show)(dev, state);
2898         return 0;
2899 }
2900
2901 int
2902 rte_eth_dev_bypass_state_set(uint8_t port_id, uint32_t *new_state)
2903 {
2904         struct rte_eth_dev *dev;
2905
2906         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2907
2908         dev = &rte_eth_devices[port_id];
2909         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_state_set, -ENOTSUP);
2910         (*dev->dev_ops->bypass_state_set)(dev, new_state);
2911         return 0;
2912 }
2913
2914 int
2915 rte_eth_dev_bypass_event_show(uint8_t port_id, uint32_t event, uint32_t *state)
2916 {
2917         struct rte_eth_dev *dev;
2918
2919         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2920
2921         dev = &rte_eth_devices[port_id];
2922         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_state_show, -ENOTSUP);
2923         (*dev->dev_ops->bypass_event_show)(dev, event, state);
2924         return 0;
2925 }
2926
2927 int
2928 rte_eth_dev_bypass_event_store(uint8_t port_id, uint32_t event, uint32_t state)
2929 {
2930         struct rte_eth_dev *dev;
2931
2932         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2933
2934         dev = &rte_eth_devices[port_id];
2935
2936         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_event_set, -ENOTSUP);
2937         (*dev->dev_ops->bypass_event_set)(dev, event, state);
2938         return 0;
2939 }
2940
2941 int
2942 rte_eth_dev_wd_timeout_store(uint8_t port_id, uint32_t timeout)
2943 {
2944         struct rte_eth_dev *dev;
2945
2946         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2947
2948         dev = &rte_eth_devices[port_id];
2949
2950         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_wd_timeout_set, -ENOTSUP);
2951         (*dev->dev_ops->bypass_wd_timeout_set)(dev, timeout);
2952         return 0;
2953 }
2954
2955 int
2956 rte_eth_dev_bypass_ver_show(uint8_t port_id, uint32_t *ver)
2957 {
2958         struct rte_eth_dev *dev;
2959
2960         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2961
2962         dev = &rte_eth_devices[port_id];
2963
2964         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_ver_show, -ENOTSUP);
2965         (*dev->dev_ops->bypass_ver_show)(dev, ver);
2966         return 0;
2967 }
2968
2969 int
2970 rte_eth_dev_bypass_wd_timeout_show(uint8_t port_id, uint32_t *wd_timeout)
2971 {
2972         struct rte_eth_dev *dev;
2973
2974         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2975
2976         dev = &rte_eth_devices[port_id];
2977
2978         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_wd_timeout_show, -ENOTSUP);
2979         (*dev->dev_ops->bypass_wd_timeout_show)(dev, wd_timeout);
2980         return 0;
2981 }
2982
2983 int
2984 rte_eth_dev_bypass_wd_reset(uint8_t port_id)
2985 {
2986         struct rte_eth_dev *dev;
2987
2988         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2989
2990         dev = &rte_eth_devices[port_id];
2991
2992         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_wd_reset, -ENOTSUP);
2993         (*dev->dev_ops->bypass_wd_reset)(dev);
2994         return 0;
2995 }
2996 #endif
2997
2998 int
2999 rte_eth_dev_filter_supported(uint8_t port_id, enum rte_filter_type filter_type)
3000 {
3001         struct rte_eth_dev *dev;
3002
3003         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3004
3005         dev = &rte_eth_devices[port_id];
3006         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->filter_ctrl, -ENOTSUP);
3007         return (*dev->dev_ops->filter_ctrl)(dev, filter_type,
3008                                 RTE_ETH_FILTER_NOP, NULL);
3009 }
3010
3011 int
3012 rte_eth_dev_filter_ctrl(uint8_t port_id, enum rte_filter_type filter_type,
3013                        enum rte_filter_op filter_op, void *arg)
3014 {
3015         struct rte_eth_dev *dev;
3016
3017         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3018
3019         dev = &rte_eth_devices[port_id];
3020         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->filter_ctrl, -ENOTSUP);
3021         return (*dev->dev_ops->filter_ctrl)(dev, filter_type, filter_op, arg);
3022 }
3023
3024 void *
3025 rte_eth_add_rx_callback(uint8_t port_id, uint16_t queue_id,
3026                 rte_rx_callback_fn fn, void *user_param)
3027 {
3028 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3029         rte_errno = ENOTSUP;
3030         return NULL;
3031 #endif
3032         /* check input parameters */
3033         if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL ||
3034                     queue_id >= rte_eth_devices[port_id].data->nb_rx_queues) {
3035                 rte_errno = EINVAL;
3036                 return NULL;
3037         }
3038         struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0);
3039
3040         if (cb == NULL) {
3041                 rte_errno = ENOMEM;
3042                 return NULL;
3043         }
3044
3045         cb->fn.rx = fn;
3046         cb->param = user_param;
3047
3048         rte_spinlock_lock(&rte_eth_rx_cb_lock);
3049         /* Add the callbacks in fifo order. */
3050         struct rte_eth_rxtx_callback *tail =
3051                 rte_eth_devices[port_id].post_rx_burst_cbs[queue_id];
3052
3053         if (!tail) {
3054                 rte_eth_devices[port_id].post_rx_burst_cbs[queue_id] = cb;
3055
3056         } else {
3057                 while (tail->next)
3058                         tail = tail->next;
3059                 tail->next = cb;
3060         }
3061         rte_spinlock_unlock(&rte_eth_rx_cb_lock);
3062
3063         return cb;
3064 }
3065
3066 void *
3067 rte_eth_add_first_rx_callback(uint8_t port_id, uint16_t queue_id,
3068                 rte_rx_callback_fn fn, void *user_param)
3069 {
3070 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3071         rte_errno = ENOTSUP;
3072         return NULL;
3073 #endif
3074         /* check input parameters */
3075         if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL ||
3076                 queue_id >= rte_eth_devices[port_id].data->nb_rx_queues) {
3077                 rte_errno = EINVAL;
3078                 return NULL;
3079         }
3080
3081         struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0);
3082
3083         if (cb == NULL) {
3084                 rte_errno = ENOMEM;
3085                 return NULL;
3086         }
3087
3088         cb->fn.rx = fn;
3089         cb->param = user_param;
3090
3091         rte_spinlock_lock(&rte_eth_rx_cb_lock);
3092         /* Add the callbacks at fisrt position*/
3093         cb->next = rte_eth_devices[port_id].post_rx_burst_cbs[queue_id];
3094         rte_smp_wmb();
3095         rte_eth_devices[port_id].post_rx_burst_cbs[queue_id] = cb;
3096         rte_spinlock_unlock(&rte_eth_rx_cb_lock);
3097
3098         return cb;
3099 }
3100
3101 void *
3102 rte_eth_add_tx_callback(uint8_t port_id, uint16_t queue_id,
3103                 rte_tx_callback_fn fn, void *user_param)
3104 {
3105 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3106         rte_errno = ENOTSUP;
3107         return NULL;
3108 #endif
3109         /* check input parameters */
3110         if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL ||
3111                     queue_id >= rte_eth_devices[port_id].data->nb_tx_queues) {
3112                 rte_errno = EINVAL;
3113                 return NULL;
3114         }
3115
3116         struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0);
3117
3118         if (cb == NULL) {
3119                 rte_errno = ENOMEM;
3120                 return NULL;
3121         }
3122
3123         cb->fn.tx = fn;
3124         cb->param = user_param;
3125
3126         rte_spinlock_lock(&rte_eth_tx_cb_lock);
3127         /* Add the callbacks in fifo order. */
3128         struct rte_eth_rxtx_callback *tail =
3129                 rte_eth_devices[port_id].pre_tx_burst_cbs[queue_id];
3130
3131         if (!tail) {
3132                 rte_eth_devices[port_id].pre_tx_burst_cbs[queue_id] = cb;
3133
3134         } else {
3135                 while (tail->next)
3136                         tail = tail->next;
3137                 tail->next = cb;
3138         }
3139         rte_spinlock_unlock(&rte_eth_tx_cb_lock);
3140
3141         return cb;
3142 }
3143
3144 int
3145 rte_eth_remove_rx_callback(uint8_t port_id, uint16_t queue_id,
3146                 struct rte_eth_rxtx_callback *user_cb)
3147 {
3148 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3149         return -ENOTSUP;
3150 #endif
3151         /* Check input parameters. */
3152         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
3153         if (user_cb == NULL ||
3154                         queue_id >= rte_eth_devices[port_id].data->nb_rx_queues)
3155                 return -EINVAL;
3156
3157         struct rte_eth_dev *dev = &rte_eth_devices[port_id];
3158         struct rte_eth_rxtx_callback *cb;
3159         struct rte_eth_rxtx_callback **prev_cb;
3160         int ret = -EINVAL;
3161
3162         rte_spinlock_lock(&rte_eth_rx_cb_lock);
3163         prev_cb = &dev->post_rx_burst_cbs[queue_id];
3164         for (; *prev_cb != NULL; prev_cb = &cb->next) {
3165                 cb = *prev_cb;
3166                 if (cb == user_cb) {
3167                         /* Remove the user cb from the callback list. */
3168                         *prev_cb = cb->next;
3169                         ret = 0;
3170                         break;
3171                 }
3172         }
3173         rte_spinlock_unlock(&rte_eth_rx_cb_lock);
3174
3175         return ret;
3176 }
3177
3178 int
3179 rte_eth_remove_tx_callback(uint8_t port_id, uint16_t queue_id,
3180                 struct rte_eth_rxtx_callback *user_cb)
3181 {
3182 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3183         return -ENOTSUP;
3184 #endif
3185         /* Check input parameters. */
3186         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
3187         if (user_cb == NULL ||
3188                         queue_id >= rte_eth_devices[port_id].data->nb_tx_queues)
3189                 return -EINVAL;
3190
3191         struct rte_eth_dev *dev = &rte_eth_devices[port_id];
3192         int ret = -EINVAL;
3193         struct rte_eth_rxtx_callback *cb;
3194         struct rte_eth_rxtx_callback **prev_cb;
3195
3196         rte_spinlock_lock(&rte_eth_tx_cb_lock);
3197         prev_cb = &dev->pre_tx_burst_cbs[queue_id];
3198         for (; *prev_cb != NULL; prev_cb = &cb->next) {
3199                 cb = *prev_cb;
3200                 if (cb == user_cb) {
3201                         /* Remove the user cb from the callback list. */
3202                         *prev_cb = cb->next;
3203                         ret = 0;
3204                         break;
3205                 }
3206         }
3207         rte_spinlock_unlock(&rte_eth_tx_cb_lock);
3208
3209         return ret;
3210 }
3211
3212 int
3213 rte_eth_rx_queue_info_get(uint8_t port_id, uint16_t queue_id,
3214         struct rte_eth_rxq_info *qinfo)
3215 {
3216         struct rte_eth_dev *dev;
3217
3218         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3219
3220         if (qinfo == NULL)
3221                 return -EINVAL;
3222
3223         dev = &rte_eth_devices[port_id];
3224         if (queue_id >= dev->data->nb_rx_queues) {
3225                 RTE_PMD_DEBUG_TRACE("Invalid RX queue_id=%d\n", queue_id);
3226                 return -EINVAL;
3227         }
3228
3229         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rxq_info_get, -ENOTSUP);
3230
3231         memset(qinfo, 0, sizeof(*qinfo));
3232         dev->dev_ops->rxq_info_get(dev, queue_id, qinfo);
3233         return 0;
3234 }
3235
3236 int
3237 rte_eth_tx_queue_info_get(uint8_t port_id, uint16_t queue_id,
3238         struct rte_eth_txq_info *qinfo)
3239 {
3240         struct rte_eth_dev *dev;
3241
3242         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3243
3244         if (qinfo == NULL)
3245                 return -EINVAL;
3246
3247         dev = &rte_eth_devices[port_id];
3248         if (queue_id >= dev->data->nb_tx_queues) {
3249                 RTE_PMD_DEBUG_TRACE("Invalid TX queue_id=%d\n", queue_id);
3250                 return -EINVAL;
3251         }
3252
3253         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->txq_info_get, -ENOTSUP);
3254
3255         memset(qinfo, 0, sizeof(*qinfo));
3256         dev->dev_ops->txq_info_get(dev, queue_id, qinfo);
3257         return 0;
3258 }
3259
3260 int
3261 rte_eth_dev_set_mc_addr_list(uint8_t port_id,
3262                              struct ether_addr *mc_addr_set,
3263                              uint32_t nb_mc_addr)
3264 {
3265         struct rte_eth_dev *dev;
3266
3267         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3268
3269         dev = &rte_eth_devices[port_id];
3270         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_mc_addr_list, -ENOTSUP);
3271         return dev->dev_ops->set_mc_addr_list(dev, mc_addr_set, nb_mc_addr);
3272 }
3273
3274 int
3275 rte_eth_timesync_enable(uint8_t port_id)
3276 {
3277         struct rte_eth_dev *dev;
3278
3279         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3280         dev = &rte_eth_devices[port_id];
3281
3282         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_enable, -ENOTSUP);
3283         return (*dev->dev_ops->timesync_enable)(dev);
3284 }
3285
3286 int
3287 rte_eth_timesync_disable(uint8_t port_id)
3288 {
3289         struct rte_eth_dev *dev;
3290
3291         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3292         dev = &rte_eth_devices[port_id];
3293
3294         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_disable, -ENOTSUP);
3295         return (*dev->dev_ops->timesync_disable)(dev);
3296 }
3297
3298 int
3299 rte_eth_timesync_read_rx_timestamp(uint8_t port_id, struct timespec *timestamp,
3300                                    uint32_t flags)
3301 {
3302         struct rte_eth_dev *dev;
3303
3304         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3305         dev = &rte_eth_devices[port_id];
3306
3307         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_rx_timestamp, -ENOTSUP);
3308         return (*dev->dev_ops->timesync_read_rx_timestamp)(dev, timestamp, flags);
3309 }
3310
3311 int
3312 rte_eth_timesync_read_tx_timestamp(uint8_t port_id, struct timespec *timestamp)
3313 {
3314         struct rte_eth_dev *dev;
3315
3316         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3317         dev = &rte_eth_devices[port_id];
3318
3319         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_tx_timestamp, -ENOTSUP);
3320         return (*dev->dev_ops->timesync_read_tx_timestamp)(dev, timestamp);
3321 }
3322
3323 int
3324 rte_eth_timesync_adjust_time(uint8_t port_id, int64_t delta)
3325 {
3326         struct rte_eth_dev *dev;
3327
3328         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3329         dev = &rte_eth_devices[port_id];
3330
3331         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_adjust_time, -ENOTSUP);
3332         return (*dev->dev_ops->timesync_adjust_time)(dev, delta);
3333 }
3334
3335 int
3336 rte_eth_timesync_read_time(uint8_t port_id, struct timespec *timestamp)
3337 {
3338         struct rte_eth_dev *dev;
3339
3340         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3341         dev = &rte_eth_devices[port_id];
3342
3343         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_time, -ENOTSUP);
3344         return (*dev->dev_ops->timesync_read_time)(dev, timestamp);
3345 }
3346
3347 int
3348 rte_eth_timesync_write_time(uint8_t port_id, const struct timespec *timestamp)
3349 {
3350         struct rte_eth_dev *dev;
3351
3352         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3353         dev = &rte_eth_devices[port_id];
3354
3355         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_write_time, -ENOTSUP);
3356         return (*dev->dev_ops->timesync_write_time)(dev, timestamp);
3357 }
3358
3359 int
3360 rte_eth_dev_get_reg_info(uint8_t port_id, struct rte_dev_reg_info *info)
3361 {
3362         struct rte_eth_dev *dev;
3363
3364         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3365
3366         dev = &rte_eth_devices[port_id];
3367         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_reg, -ENOTSUP);
3368         return (*dev->dev_ops->get_reg)(dev, info);
3369 }
3370
3371 int
3372 rte_eth_dev_get_eeprom_length(uint8_t port_id)
3373 {
3374         struct rte_eth_dev *dev;
3375
3376         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3377
3378         dev = &rte_eth_devices[port_id];
3379         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_eeprom_length, -ENOTSUP);
3380         return (*dev->dev_ops->get_eeprom_length)(dev);
3381 }
3382
3383 int
3384 rte_eth_dev_get_eeprom(uint8_t port_id, struct rte_dev_eeprom_info *info)
3385 {
3386         struct rte_eth_dev *dev;
3387
3388         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3389
3390         dev = &rte_eth_devices[port_id];
3391         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_eeprom, -ENOTSUP);
3392         return (*dev->dev_ops->get_eeprom)(dev, info);
3393 }
3394
3395 int
3396 rte_eth_dev_set_eeprom(uint8_t port_id, struct rte_dev_eeprom_info *info)
3397 {
3398         struct rte_eth_dev *dev;
3399
3400         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3401
3402         dev = &rte_eth_devices[port_id];
3403         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_eeprom, -ENOTSUP);
3404         return (*dev->dev_ops->set_eeprom)(dev, info);
3405 }
3406
3407 int
3408 rte_eth_dev_get_dcb_info(uint8_t port_id,
3409                              struct rte_eth_dcb_info *dcb_info)
3410 {
3411         struct rte_eth_dev *dev;
3412
3413         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3414
3415         dev = &rte_eth_devices[port_id];
3416         memset(dcb_info, 0, sizeof(struct rte_eth_dcb_info));
3417
3418         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_dcb_info, -ENOTSUP);
3419         return (*dev->dev_ops->get_dcb_info)(dev, dcb_info);
3420 }
3421
3422 int
3423 rte_eth_dev_l2_tunnel_eth_type_conf(uint8_t port_id,
3424                                     struct rte_eth_l2_tunnel_conf *l2_tunnel)
3425 {
3426         struct rte_eth_dev *dev;
3427
3428         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3429         if (l2_tunnel == NULL) {
3430                 RTE_PMD_DEBUG_TRACE("Invalid l2_tunnel parameter\n");
3431                 return -EINVAL;
3432         }
3433
3434         if (l2_tunnel->l2_tunnel_type >= RTE_TUNNEL_TYPE_MAX) {
3435                 RTE_PMD_DEBUG_TRACE("Invalid tunnel type\n");
3436                 return -EINVAL;
3437         }
3438
3439         dev = &rte_eth_devices[port_id];
3440         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->l2_tunnel_eth_type_conf,
3441                                 -ENOTSUP);
3442         return (*dev->dev_ops->l2_tunnel_eth_type_conf)(dev, l2_tunnel);
3443 }
3444
3445 int
3446 rte_eth_dev_l2_tunnel_offload_set(uint8_t port_id,
3447                                   struct rte_eth_l2_tunnel_conf *l2_tunnel,
3448                                   uint32_t mask,
3449                                   uint8_t en)
3450 {
3451         struct rte_eth_dev *dev;
3452
3453         RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3454
3455         if (l2_tunnel == NULL) {
3456                 RTE_PMD_DEBUG_TRACE("Invalid l2_tunnel parameter\n");
3457                 return -EINVAL;
3458         }
3459
3460         if (l2_tunnel->l2_tunnel_type >= RTE_TUNNEL_TYPE_MAX) {
3461                 RTE_PMD_DEBUG_TRACE("Invalid tunnel type.\n");
3462                 return -EINVAL;
3463         }
3464
3465         if (mask == 0) {
3466                 RTE_PMD_DEBUG_TRACE("Mask should have a value.\n");
3467                 return -EINVAL;
3468         }
3469
3470         dev = &rte_eth_devices[port_id];
3471         RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->l2_tunnel_offload_set,
3472                                 -ENOTSUP);
3473         return (*dev->dev_ops->l2_tunnel_offload_set)(dev, l2_tunnel, mask, en);
3474 }