4 * Copyright(c) 2010-2016 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
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
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.
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.
34 #include <sys/types.h>
35 #include <sys/queue.h>
44 #include <netinet/in.h>
46 #include <rte_byteorder.h>
48 #include <rte_debug.h>
49 #include <rte_interrupts.h>
51 #include <rte_memory.h>
52 #include <rte_memcpy.h>
53 #include <rte_memzone.h>
54 #include <rte_launch.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>
64 #include <rte_errno.h>
65 #include <rte_spinlock.h>
66 #include <rte_string_fns.h>
68 #include "rte_ether.h"
69 #include "rte_ethdev.h"
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;
77 /* spinlock for eth device callbacks */
78 static rte_spinlock_t rte_eth_dev_cb_lock = RTE_SPINLOCK_INITIALIZER;
80 /* spinlock for add/remove rx callbacks */
81 static rte_spinlock_t rte_eth_rx_cb_lock = RTE_SPINLOCK_INITIALIZER;
83 /* spinlock for add/remove tx callbacks */
84 static rte_spinlock_t rte_eth_tx_cb_lock = RTE_SPINLOCK_INITIALIZER;
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];
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,
103 #define RTE_NB_STATS (sizeof(rte_stats_strings) / sizeof(rte_stats_strings[0]))
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)},
111 #define RTE_NB_RXQ_STATS (sizeof(rte_rxq_stats_strings) / \
112 sizeof(rte_rxq_stats_strings[0]))
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)},
118 #define RTE_NB_TXQ_STATS (sizeof(rte_txq_stats_strings) / \
119 sizeof(rte_txq_stats_strings[0]))
123 * The user application callback description.
125 * It contains callback address to be registered by user application,
126 * the pointer to the parameters for callback, and the event type.
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 */
142 rte_eth_find_next(uint8_t port_id)
144 while (port_id < RTE_MAX_ETHPORTS &&
145 rte_eth_devices[port_id].state != RTE_ETH_DEV_ATTACHED)
148 if (port_id >= RTE_MAX_ETHPORTS)
149 return RTE_MAX_ETHPORTS;
155 rte_eth_dev_data_alloc(void)
157 const unsigned flags = 0;
158 const struct rte_memzone *mz;
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);
165 mz = rte_memzone_lookup(MZ_RTE_ETH_DEV_DATA);
167 rte_panic("Cannot allocate memzone for ethernet port data\n");
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));
176 rte_eth_dev_allocated(const char *name)
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];
189 rte_eth_dev_find_free_port(void)
193 for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
194 if (rte_eth_devices[i].state == RTE_ETH_DEV_UNUSED)
197 return RTE_MAX_ETHPORTS;
200 static struct rte_eth_dev *
201 eth_dev_get(uint8_t port_id)
203 struct rte_eth_dev *eth_dev = &rte_eth_devices[port_id];
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));
209 eth_dev_last_created_port = port_id;
216 rte_eth_dev_allocate(const char *name)
219 struct rte_eth_dev *eth_dev;
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");
227 if (rte_eth_dev_data == NULL)
228 rte_eth_dev_data_alloc();
230 if (rte_eth_dev_allocated(name) != NULL) {
231 RTE_PMD_DEBUG_TRACE("Ethernet Device with name %s already allocated!\n",
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;
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.
251 rte_eth_dev_attach_secondary(const char *name)
254 struct rte_eth_dev *eth_dev;
256 if (rte_eth_dev_data == NULL)
257 rte_eth_dev_data_alloc();
259 for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
260 if (strcmp(rte_eth_dev_data[i].name, name) == 0)
263 if (i == RTE_MAX_ETHPORTS) {
265 "device %s is not driven by the primary process\n",
270 eth_dev = eth_dev_get(i);
271 RTE_ASSERT(eth_dev->data->port_id == i);
277 rte_eth_dev_release_port(struct rte_eth_dev *eth_dev)
282 eth_dev->state = RTE_ETH_DEV_UNUSED;
288 rte_eth_dev_is_valid_port(uint8_t port_id)
290 if (port_id >= RTE_MAX_ETHPORTS ||
291 rte_eth_devices[port_id].state != RTE_ETH_DEV_ATTACHED)
298 rte_eth_dev_socket_id(uint8_t port_id)
300 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -1);
301 return rte_eth_devices[port_id].data->numa_node;
305 rte_eth_dev_count(void)
311 rte_eth_dev_get_name_by_port(uint8_t port_id, char *name)
315 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
318 RTE_PMD_DEBUG_TRACE("Null pointer is specified\n");
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;
330 rte_eth_dev_get_port_by_name(const char *name, uint8_t *port_id)
335 RTE_PMD_DEBUG_TRACE("Null pointer is specified\n");
342 *port_id = RTE_MAX_ETHPORTS;
343 RTE_ETH_FOREACH_DEV(i) {
345 rte_eth_dev_data[i].name, strlen(name))) {
356 rte_eth_dev_is_detachable(uint8_t port_id)
360 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
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:
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)))
380 /* attach the new device, then store port_id of the device */
382 rte_eth_dev_attach(const char *devargs, uint8_t *port_id)
385 int current = rte_eth_dev_count();
389 if ((devargs == NULL) || (port_id == NULL)) {
394 /* parse devargs, then retrieve device name and args */
395 if (rte_eal_parse_devargs_str(devargs, &name, &args))
398 ret = rte_eal_dev_attach(name, args);
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);
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.
412 if (current == rte_eth_dev_count()) {
417 *port_id = eth_dev_last_created_port;
426 /* detach the device, then store the name of the device */
428 rte_eth_dev_detach(uint8_t port_id, char *name)
437 /* FIXME: move this to eal, once device flags are relocated there */
438 if (rte_eth_dev_is_detachable(port_id))
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);
454 rte_eth_dev_rx_queue_config(struct rte_eth_dev *dev, uint16_t nb_queues)
456 uint16_t old_nb_queues = dev->data->nb_rx_queues;
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;
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);
471 rxq = dev->data->rx_queues;
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);
479 if (nb_queues > old_nb_queues) {
480 uint16_t new_qs = nb_queues - old_nb_queues;
482 memset(rxq + old_nb_queues, 0,
483 sizeof(rxq[0]) * new_qs);
486 dev->data->rx_queues = rxq;
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);
491 rxq = dev->data->rx_queues;
493 for (i = nb_queues; i < old_nb_queues; i++)
494 (*dev->dev_ops->rx_queue_release)(rxq[i]);
496 rte_free(dev->data->rx_queues);
497 dev->data->rx_queues = NULL;
499 dev->data->nb_rx_queues = nb_queues;
504 rte_eth_dev_rx_queue_start(uint8_t port_id, uint16_t rx_queue_id)
506 struct rte_eth_dev *dev;
508 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
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);
516 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_start, -ENOTSUP);
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);
525 return dev->dev_ops->rx_queue_start(dev, rx_queue_id);
530 rte_eth_dev_rx_queue_stop(uint8_t port_id, uint16_t rx_queue_id)
532 struct rte_eth_dev *dev;
534 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
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);
542 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_stop, -ENOTSUP);
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);
551 return dev->dev_ops->rx_queue_stop(dev, rx_queue_id);
556 rte_eth_dev_tx_queue_start(uint8_t port_id, uint16_t tx_queue_id)
558 struct rte_eth_dev *dev;
560 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
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);
568 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_start, -ENOTSUP);
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);
577 return dev->dev_ops->tx_queue_start(dev, tx_queue_id);
582 rte_eth_dev_tx_queue_stop(uint8_t port_id, uint16_t tx_queue_id)
584 struct rte_eth_dev *dev;
586 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
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);
594 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_stop, -ENOTSUP);
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);
603 return dev->dev_ops->tx_queue_stop(dev, tx_queue_id);
608 rte_eth_dev_tx_queue_config(struct rte_eth_dev *dev, uint16_t nb_queues)
610 uint16_t old_nb_queues = dev->data->nb_tx_queues;
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;
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);
625 txq = dev->data->tx_queues;
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);
633 if (nb_queues > old_nb_queues) {
634 uint16_t new_qs = nb_queues - old_nb_queues;
636 memset(txq + old_nb_queues, 0,
637 sizeof(txq[0]) * new_qs);
640 dev->data->tx_queues = txq;
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);
645 txq = dev->data->tx_queues;
647 for (i = nb_queues; i < old_nb_queues; i++)
648 (*dev->dev_ops->tx_queue_release)(txq[i]);
650 rte_free(dev->data->tx_queues);
651 dev->data->tx_queues = NULL;
653 dev->data->nb_tx_queues = nb_queues;
658 rte_eth_speed_bitflag(uint32_t speed, int duplex)
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;
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)
694 struct rte_eth_dev *dev;
695 struct rte_eth_dev_info dev_info;
698 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
700 if (nb_rx_q > RTE_MAX_QUEUES_PER_PORT) {
702 "Number of RX queues requested (%u) is greater than max supported(%d)\n",
703 nb_rx_q, RTE_MAX_QUEUES_PER_PORT);
707 if (nb_tx_q > RTE_MAX_QUEUES_PER_PORT) {
709 "Number of TX queues requested (%u) is greater than max supported(%d)\n",
710 nb_tx_q, RTE_MAX_QUEUES_PER_PORT);
714 dev = &rte_eth_devices[port_id];
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);
719 if (dev->data->dev_started) {
721 "port %d must be stopped to allow configuration\n", port_id);
725 /* Copy the dev_conf parameter into the dev structure */
726 memcpy(&dev->data->dev_conf, dev_conf, sizeof(dev->data->dev_conf));
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
733 (*dev->dev_ops->dev_infos_get)(dev, &dev_info);
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);
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);
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);
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);
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);
767 * If jumbo frames are enabled, check that the maximum RX packet
768 * length is supported by the configured device.
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",
776 (unsigned)dev_conf->rxmode.max_rx_pkt_len,
777 (unsigned)dev_info.max_rx_pktlen);
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",
783 (unsigned)dev_conf->rxmode.max_rx_pkt_len,
784 (unsigned)ETHER_MIN_LEN);
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 =
796 * Setup new number of RX/TX queues and reconfigure device.
798 diag = rte_eth_dev_rx_queue_config(dev, nb_rx_q);
800 RTE_PMD_DEBUG_TRACE("port%d rte_eth_dev_rx_queue_config = %d\n",
805 diag = rte_eth_dev_tx_queue_config(dev, nb_tx_q);
807 RTE_PMD_DEBUG_TRACE("port%d rte_eth_dev_tx_queue_config = %d\n",
809 rte_eth_dev_rx_queue_config(dev, 0);
813 diag = (*dev->dev_ops->dev_configure)(dev);
815 RTE_PMD_DEBUG_TRACE("port%d dev_configure = %d\n",
817 rte_eth_dev_rx_queue_config(dev, 0);
818 rte_eth_dev_tx_queue_config(dev, 0);
826 _rte_eth_dev_reset(struct rte_eth_dev *dev)
828 if (dev->data->dev_started) {
830 "port %d must be stopped to allow reset\n",
835 rte_eth_dev_rx_queue_config(dev, 0);
836 rte_eth_dev_tx_queue_config(dev, 0);
838 memset(&dev->data->dev_conf, 0, sizeof(dev->data->dev_conf));
842 rte_eth_dev_config_restore(uint8_t port_id)
844 struct rte_eth_dev *dev;
845 struct rte_eth_dev_info dev_info;
846 struct ether_addr *addr;
851 dev = &rte_eth_devices[port_id];
853 rte_eth_dev_info_get(port_id, &dev_info);
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);
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];
866 /* skip zero address */
867 if (is_zero_ether_addr(addr))
871 pool_mask = dev->data->mac_pool_sel[i];
874 if (pool_mask & 1ULL)
875 (*dev->dev_ops->mac_addr_add)(dev,
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);
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);
897 rte_eth_dev_start(uint8_t port_id)
899 struct rte_eth_dev *dev;
902 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
904 dev = &rte_eth_devices[port_id];
906 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_start, -ENOTSUP);
908 if (dev->data->dev_started != 0) {
909 RTE_PMD_DEBUG_TRACE("Device with port_id=%" PRIu8
910 " already started\n",
915 diag = (*dev->dev_ops->dev_start)(dev);
917 dev->data->dev_started = 1;
921 rte_eth_dev_config_restore(port_id);
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);
931 rte_eth_dev_stop(uint8_t port_id)
933 struct rte_eth_dev *dev;
935 RTE_ETH_VALID_PORTID_OR_RET(port_id);
936 dev = &rte_eth_devices[port_id];
938 RTE_FUNC_PTR_OR_RET(*dev->dev_ops->dev_stop);
940 if (dev->data->dev_started == 0) {
941 RTE_PMD_DEBUG_TRACE("Device with port_id=%" PRIu8
942 " already stopped\n",
947 dev->data->dev_started = 0;
948 (*dev->dev_ops->dev_stop)(dev);
952 rte_eth_dev_set_link_up(uint8_t port_id)
954 struct rte_eth_dev *dev;
956 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
958 dev = &rte_eth_devices[port_id];
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);
965 rte_eth_dev_set_link_down(uint8_t port_id)
967 struct rte_eth_dev *dev;
969 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
971 dev = &rte_eth_devices[port_id];
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);
978 rte_eth_dev_close(uint8_t port_id)
980 struct rte_eth_dev *dev;
982 RTE_ETH_VALID_PORTID_OR_RET(port_id);
983 dev = &rte_eth_devices[port_id];
985 RTE_FUNC_PTR_OR_RET(*dev->dev_ops->dev_close);
986 dev->data->dev_started = 0;
987 (*dev->dev_ops->dev_close)(dev);
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;
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)
1004 uint32_t mbp_buf_size;
1005 struct rte_eth_dev *dev;
1006 struct rte_eth_dev_info dev_info;
1009 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
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);
1017 if (dev->data->dev_started) {
1018 RTE_PMD_DEBUG_TRACE(
1019 "port %d must be stopped to allow configuration\n", port_id);
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);
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.
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));
1038 mbp_buf_size = rte_pktmbuf_data_room_size(mp);
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)"
1046 (int)(RTE_PKTMBUF_HEADROOM +
1047 dev_info.min_rx_bufsize),
1048 (int)RTE_PKTMBUF_HEADROOM,
1049 (int)dev_info.min_rx_bufsize);
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) {
1057 RTE_PMD_DEBUG_TRACE("Invalid value for nb_rx_desc(=%hu), "
1058 "should be: <= %hu, = %hu, and a product of %hu\n",
1060 dev_info.rx_desc_lim.nb_max,
1061 dev_info.rx_desc_lim.nb_min,
1062 dev_info.rx_desc_lim.nb_align);
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,
1070 (*dev->dev_ops->rx_queue_release)(rxq[rx_queue_id]);
1071 rxq[rx_queue_id] = NULL;
1074 if (rx_conf == NULL)
1075 rx_conf = &dev_info.default_rxconf;
1077 ret = (*dev->dev_ops->rx_queue_setup)(dev, rx_queue_id, nb_rx_desc,
1078 socket_id, rx_conf, mp);
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;
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)
1093 struct rte_eth_dev *dev;
1094 struct rte_eth_dev_info dev_info;
1097 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
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);
1105 if (dev->data->dev_started) {
1106 RTE_PMD_DEBUG_TRACE(
1107 "port %d must be stopped to allow configuration\n", port_id);
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);
1114 rte_eth_dev_info_get(port_id, &dev_info);
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",
1122 dev_info.tx_desc_lim.nb_max,
1123 dev_info.tx_desc_lim.nb_min,
1124 dev_info.tx_desc_lim.nb_align);
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,
1132 (*dev->dev_ops->tx_queue_release)(txq[tx_queue_id]);
1133 txq[tx_queue_id] = NULL;
1136 if (tx_conf == NULL)
1137 tx_conf = &dev_info.default_txconf;
1139 return (*dev->dev_ops->tx_queue_setup)(dev, tx_queue_id, nb_tx_desc,
1140 socket_id, tx_conf);
1144 rte_eth_tx_buffer_drop_callback(struct rte_mbuf **pkts, uint16_t unsent,
1145 void *userdata __rte_unused)
1149 for (i = 0; i < unsent; i++)
1150 rte_pktmbuf_free(pkts[i]);
1154 rte_eth_tx_buffer_count_callback(struct rte_mbuf **pkts, uint16_t unsent,
1157 uint64_t *count = userdata;
1160 for (i = 0; i < unsent; i++)
1161 rte_pktmbuf_free(pkts[i]);
1167 rte_eth_tx_buffer_set_err_callback(struct rte_eth_dev_tx_buffer *buffer,
1168 buffer_tx_error_fn cbfn, void *userdata)
1170 buffer->error_callback = cbfn;
1171 buffer->error_userdata = userdata;
1176 rte_eth_tx_buffer_init(struct rte_eth_dev_tx_buffer *buffer, uint16_t size)
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);
1193 rte_eth_tx_done_cleanup(uint8_t port_id, uint16_t queue_id, uint32_t free_cnt)
1195 struct rte_eth_dev *dev = &rte_eth_devices[port_id];
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);
1201 /* Call driver to free pending mbufs. */
1202 return (*dev->dev_ops->tx_done_cleanup)(dev->data->tx_queues[queue_id],
1207 rte_eth_promiscuous_enable(uint8_t port_id)
1209 struct rte_eth_dev *dev;
1211 RTE_ETH_VALID_PORTID_OR_RET(port_id);
1212 dev = &rte_eth_devices[port_id];
1214 RTE_FUNC_PTR_OR_RET(*dev->dev_ops->promiscuous_enable);
1215 (*dev->dev_ops->promiscuous_enable)(dev);
1216 dev->data->promiscuous = 1;
1220 rte_eth_promiscuous_disable(uint8_t port_id)
1222 struct rte_eth_dev *dev;
1224 RTE_ETH_VALID_PORTID_OR_RET(port_id);
1225 dev = &rte_eth_devices[port_id];
1227 RTE_FUNC_PTR_OR_RET(*dev->dev_ops->promiscuous_disable);
1228 dev->data->promiscuous = 0;
1229 (*dev->dev_ops->promiscuous_disable)(dev);
1233 rte_eth_promiscuous_get(uint8_t port_id)
1235 struct rte_eth_dev *dev;
1237 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1239 dev = &rte_eth_devices[port_id];
1240 return dev->data->promiscuous;
1244 rte_eth_allmulticast_enable(uint8_t port_id)
1246 struct rte_eth_dev *dev;
1248 RTE_ETH_VALID_PORTID_OR_RET(port_id);
1249 dev = &rte_eth_devices[port_id];
1251 RTE_FUNC_PTR_OR_RET(*dev->dev_ops->allmulticast_enable);
1252 (*dev->dev_ops->allmulticast_enable)(dev);
1253 dev->data->all_multicast = 1;
1257 rte_eth_allmulticast_disable(uint8_t port_id)
1259 struct rte_eth_dev *dev;
1261 RTE_ETH_VALID_PORTID_OR_RET(port_id);
1262 dev = &rte_eth_devices[port_id];
1264 RTE_FUNC_PTR_OR_RET(*dev->dev_ops->allmulticast_disable);
1265 dev->data->all_multicast = 0;
1266 (*dev->dev_ops->allmulticast_disable)(dev);
1270 rte_eth_allmulticast_get(uint8_t port_id)
1272 struct rte_eth_dev *dev;
1274 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1276 dev = &rte_eth_devices[port_id];
1277 return dev->data->all_multicast;
1281 rte_eth_dev_atomic_read_link_status(struct rte_eth_dev *dev,
1282 struct rte_eth_link *link)
1284 struct rte_eth_link *dst = link;
1285 struct rte_eth_link *src = &(dev->data->dev_link);
1287 if (rte_atomic64_cmpset((uint64_t *)dst, *(uint64_t *)dst,
1288 *(uint64_t *)src) == 0)
1295 rte_eth_link_get(uint8_t port_id, struct rte_eth_link *eth_link)
1297 struct rte_eth_dev *dev;
1299 RTE_ETH_VALID_PORTID_OR_RET(port_id);
1300 dev = &rte_eth_devices[port_id];
1302 if (dev->data->dev_conf.intr_conf.lsc != 0)
1303 rte_eth_dev_atomic_read_link_status(dev, eth_link);
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;
1312 rte_eth_link_get_nowait(uint8_t port_id, struct rte_eth_link *eth_link)
1314 struct rte_eth_dev *dev;
1316 RTE_ETH_VALID_PORTID_OR_RET(port_id);
1317 dev = &rte_eth_devices[port_id];
1319 if (dev->data->dev_conf.intr_conf.lsc != 0)
1320 rte_eth_dev_atomic_read_link_status(dev, eth_link);
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;
1329 rte_eth_stats_get(uint8_t port_id, struct rte_eth_stats *stats)
1331 struct rte_eth_dev *dev;
1333 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1335 dev = &rte_eth_devices[port_id];
1336 memset(stats, 0, sizeof(*stats));
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);
1345 rte_eth_stats_reset(uint8_t port_id)
1347 struct rte_eth_dev *dev;
1349 RTE_ETH_VALID_PORTID_OR_RET(port_id);
1350 dev = &rte_eth_devices[port_id];
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;
1358 get_xstats_count(uint8_t port_id)
1360 struct rte_eth_dev *dev;
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,
1371 if (dev->dev_ops->xstats_get_names != NULL) {
1372 count = (*dev->dev_ops->xstats_get_names)(dev, NULL, 0);
1378 count += RTE_NB_STATS;
1379 count += RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS) *
1381 count += RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS) *
1387 rte_eth_xstats_get_id_by_name(uint8_t port_id, const char *xstat_name,
1390 int cnt_xstats, idx_xstat;
1392 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1395 RTE_PMD_DEBUG_TRACE("Error: id pointer is NULL\n");
1400 RTE_PMD_DEBUG_TRACE("Error: xstat_name pointer is NULL\n");
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");
1411 /* Get id-name lookup table */
1412 struct rte_eth_xstat_name xstats_names[cnt_xstats];
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");
1420 for (idx_xstat = 0; idx_xstat < cnt_xstats; idx_xstat++) {
1421 if (!strcmp(xstats_names[idx_xstat].name, xstat_name)) {
1431 rte_eth_xstats_get_names_by_id(uint8_t port_id,
1432 struct rte_eth_xstat_name *xstats_names, unsigned int size,
1435 /* Get all xstats */
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;
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;
1449 /* port_id checked in get_xstats_count() */
1450 dev = &rte_eth_devices[port_id];
1451 cnt_used_entries = 0;
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);
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),
1467 rte_rxq_stats_strings[idx].name);
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),
1480 rte_txq_stats_strings[idx].name);
1485 if (dev->dev_ops->xstats_get_names_by_id != NULL) {
1486 /* If there are any driver-specific xstats, append them
1489 cnt_driver_entries =
1490 (*dev->dev_ops->xstats_get_names_by_id)(
1492 xstats_names + cnt_used_entries,
1494 size - cnt_used_entries);
1495 if (cnt_driver_entries < 0)
1496 return cnt_driver_entries;
1497 cnt_used_entries += cnt_driver_entries;
1499 } else if (dev->dev_ops->xstats_get_names != NULL) {
1500 /* If there are any driver-specific xstats, append them
1503 cnt_driver_entries = (*dev->dev_ops->xstats_get_names)(
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;
1512 return cnt_used_entries;
1514 /* Get only xstats given by IDS */
1517 struct rte_eth_xstat_name *xstats_names_copy;
1519 len = rte_eth_xstats_get_names_by_id(port_id, NULL, 0, NULL);
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);
1530 rte_eth_xstats_get_names_by_id(port_id, xstats_names_copy,
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");
1539 strcpy(xstats_names[i].name,
1540 xstats_names_copy[ids[i]].name);
1542 free(xstats_names_copy);
1548 rte_eth_xstats_get_names(uint8_t port_id,
1549 struct rte_eth_xstat_name *xstats_names,
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;
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;
1564 /* port_id checked in get_xstats_count() */
1565 dev = &rte_eth_devices[port_id];
1566 cnt_used_entries = 0;
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);
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),
1580 id_queue, rte_rxq_stats_strings[idx].name);
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),
1591 id_queue, rte_txq_stats_strings[idx].name);
1596 if (dev->dev_ops->xstats_get_names != NULL) {
1597 /* If there are any driver-specific xstats, append them
1600 cnt_driver_entries = (*dev->dev_ops->xstats_get_names)(
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;
1609 return cnt_used_entries;
1612 /* retrieve ethdev extended statistics */
1614 rte_eth_xstats_get_by_id(uint8_t port_id, const uint64_t *ids, uint64_t *values,
1617 /* If need all xstats */
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;
1626 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1627 dev = &rte_eth_devices[port_id];
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);
1634 /* Return generic statistics */
1635 count = RTE_NB_STATS + (nb_rxqs * RTE_NB_RXQ_STATS) +
1636 (nb_txqs * RTE_NB_TXQ_STATS);
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.
1644 xcount = (*dev->dev_ops->xstats_get_by_id)(dev,
1646 values ? values + count : NULL,
1647 (n > count) ? n - count : 0);
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
1657 unsigned int size = (n > count) ? n - count : 1;
1658 struct rte_eth_xstat xstats[size];
1660 xcount = (*dev->dev_ops->xstats_get)(dev,
1661 values ? xstats : NULL, size);
1667 for (i = 0 ; i < (unsigned int)xcount; i++)
1668 values[i + count] = xstats[i].value;
1671 if (n < count + xcount || values == NULL)
1672 return count + xcount;
1674 /* now fill the xstats structure */
1676 rte_eth_stats_get(port_id, ð_stats);
1679 for (i = 0; i < RTE_NB_STATS; i++) {
1680 stats_ptr = RTE_PTR_ADD(ð_stats,
1681 rte_stats_strings[i].offset);
1683 values[count++] = val;
1687 for (q = 0; q < nb_rxqs; q++) {
1688 for (i = 0; i < RTE_NB_RXQ_STATS; i++) {
1689 stats_ptr = RTE_PTR_ADD(ð_stats,
1690 rte_rxq_stats_strings[i].offset +
1691 q * sizeof(uint64_t));
1693 values[count++] = val;
1698 for (q = 0; q < nb_txqs; q++) {
1699 for (i = 0; i < RTE_NB_TXQ_STATS; i++) {
1700 stats_ptr = RTE_PTR_ADD(ð_stats,
1701 rte_txq_stats_strings[i].offset +
1702 q * sizeof(uint64_t));
1704 values[count++] = val;
1708 return count + xcount;
1710 /* Need only xstats given by IDS array */
1713 uint64_t *values_copy;
1715 size = rte_eth_xstats_get_by_id(port_id, NULL, NULL, 0);
1717 values_copy = malloc(sizeof(values_copy) * size);
1719 RTE_PMD_DEBUG_TRACE(
1720 "ERROR: can't allocate memory for values_copy\n");
1724 rte_eth_xstats_get_by_id(port_id, NULL, values_copy, size);
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");
1732 values[i] = values_copy[ids[i]];
1740 rte_eth_xstats_get(uint8_t port_id, struct rte_eth_xstat *xstats,
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;
1750 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
1752 dev = &rte_eth_devices[port_id];
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);
1757 /* Return generic statistics */
1758 count = RTE_NB_STATS + (nb_rxqs * RTE_NB_RXQ_STATS) +
1759 (nb_txqs * RTE_NB_TXQ_STATS);
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
1766 xcount = (*dev->dev_ops->xstats_get)(dev,
1767 xstats ? xstats + count : NULL,
1768 (n > count) ? n - count : 0);
1774 if (n < count + xcount || xstats == NULL)
1775 return count + xcount;
1777 /* now fill the xstats structure */
1779 rte_eth_stats_get(port_id, ð_stats);
1782 for (i = 0; i < RTE_NB_STATS; i++) {
1783 stats_ptr = RTE_PTR_ADD(ð_stats,
1784 rte_stats_strings[i].offset);
1786 xstats[count++].value = val;
1790 for (q = 0; q < nb_rxqs; q++) {
1791 for (i = 0; i < RTE_NB_RXQ_STATS; i++) {
1792 stats_ptr = RTE_PTR_ADD(ð_stats,
1793 rte_rxq_stats_strings[i].offset +
1794 q * sizeof(uint64_t));
1796 xstats[count++].value = val;
1801 for (q = 0; q < nb_txqs; q++) {
1802 for (i = 0; i < RTE_NB_TXQ_STATS; i++) {
1803 stats_ptr = RTE_PTR_ADD(ð_stats,
1804 rte_txq_stats_strings[i].offset +
1805 q * sizeof(uint64_t));
1807 xstats[count++].value = val;
1811 for (i = 0; i < count; i++)
1813 /* add an offset to driver-specific stats */
1814 for ( ; i < count + xcount; i++)
1815 xstats[i].id += count;
1817 return count + xcount;
1820 /* reset ethdev extended statistics */
1822 rte_eth_xstats_reset(uint8_t port_id)
1824 struct rte_eth_dev *dev;
1826 RTE_ETH_VALID_PORTID_OR_RET(port_id);
1827 dev = &rte_eth_devices[port_id];
1829 /* implemented by the driver */
1830 if (dev->dev_ops->xstats_reset != NULL) {
1831 (*dev->dev_ops->xstats_reset)(dev);
1835 /* fallback to default */
1836 rte_eth_stats_reset(port_id);
1840 set_queue_stats_mapping(uint8_t port_id, uint16_t queue_id, uint8_t stat_idx,
1843 struct rte_eth_dev *dev;
1845 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1847 dev = &rte_eth_devices[port_id];
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);
1856 rte_eth_dev_set_tx_queue_stats_mapping(uint8_t port_id, uint16_t tx_queue_id,
1859 return set_queue_stats_mapping(port_id, tx_queue_id, stat_idx,
1865 rte_eth_dev_set_rx_queue_stats_mapping(uint8_t port_id, uint16_t rx_queue_id,
1868 return set_queue_stats_mapping(port_id, rx_queue_id, stat_idx,
1873 rte_eth_dev_fw_version_get(uint8_t port_id, char *fw_version, size_t fw_size)
1875 struct rte_eth_dev *dev;
1877 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1878 dev = &rte_eth_devices[port_id];
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);
1885 rte_eth_dev_info_get(uint8_t port_id, struct rte_eth_dev_info *dev_info)
1887 struct rte_eth_dev *dev;
1888 const struct rte_eth_desc_lim lim = {
1889 .nb_max = UINT16_MAX,
1894 RTE_ETH_VALID_PORTID_OR_RET(port_id);
1895 dev = &rte_eth_devices[port_id];
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;
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;
1909 rte_eth_dev_get_supported_ptypes(uint8_t port_id, uint32_t ptype_mask,
1910 uint32_t *ptypes, int num)
1913 struct rte_eth_dev *dev;
1914 const uint32_t *all_ptypes;
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);
1924 for (i = 0, j = 0; all_ptypes[i] != RTE_PTYPE_UNKNOWN; ++i)
1925 if (all_ptypes[i] & ptype_mask) {
1927 ptypes[j] = all_ptypes[i];
1935 rte_eth_macaddr_get(uint8_t port_id, struct ether_addr *mac_addr)
1937 struct rte_eth_dev *dev;
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);
1946 rte_eth_dev_get_mtu(uint8_t port_id, uint16_t *mtu)
1948 struct rte_eth_dev *dev;
1950 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1952 dev = &rte_eth_devices[port_id];
1953 *mtu = dev->data->mtu;
1958 rte_eth_dev_set_mtu(uint8_t port_id, uint16_t mtu)
1961 struct rte_eth_dev *dev;
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);
1967 ret = (*dev->dev_ops->mtu_set)(dev, mtu);
1969 dev->data->mtu = mtu;
1975 rte_eth_dev_vlan_filter(uint8_t port_id, uint16_t vlan_id, int on)
1977 struct rte_eth_dev *dev;
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);
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);
1991 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_filter_set, -ENOTSUP);
1993 return (*dev->dev_ops->vlan_filter_set)(dev, vlan_id, on);
1997 rte_eth_dev_set_vlan_strip_on_queue(uint8_t port_id, uint16_t rx_queue_id, int on)
1999 struct rte_eth_dev *dev;
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);
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);
2015 rte_eth_dev_set_vlan_ether_type(uint8_t port_id,
2016 enum rte_vlan_type vlan_type,
2019 struct rte_eth_dev *dev;
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);
2025 return (*dev->dev_ops->vlan_tpid_set)(dev, vlan_type, tpid);
2029 rte_eth_dev_set_vlan_offload(uint8_t port_id, int offload_mask)
2031 struct rte_eth_dev *dev;
2036 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2037 dev = &rte_eth_devices[port_id];
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);
2043 dev->data->dev_conf.rxmode.hw_vlan_strip = (uint8_t)cur;
2044 mask |= ETH_VLAN_STRIP_MASK;
2047 cur = !!(offload_mask & ETH_VLAN_FILTER_OFFLOAD);
2048 org = !!(dev->data->dev_conf.rxmode.hw_vlan_filter);
2050 dev->data->dev_conf.rxmode.hw_vlan_filter = (uint8_t)cur;
2051 mask |= ETH_VLAN_FILTER_MASK;
2054 cur = !!(offload_mask & ETH_VLAN_EXTEND_OFFLOAD);
2055 org = !!(dev->data->dev_conf.rxmode.hw_vlan_extend);
2057 dev->data->dev_conf.rxmode.hw_vlan_extend = (uint8_t)cur;
2058 mask |= ETH_VLAN_EXTEND_MASK;
2065 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_offload_set, -ENOTSUP);
2066 (*dev->dev_ops->vlan_offload_set)(dev, mask);
2072 rte_eth_dev_get_vlan_offload(uint8_t port_id)
2074 struct rte_eth_dev *dev;
2077 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2078 dev = &rte_eth_devices[port_id];
2080 if (dev->data->dev_conf.rxmode.hw_vlan_strip)
2081 ret |= ETH_VLAN_STRIP_OFFLOAD;
2083 if (dev->data->dev_conf.rxmode.hw_vlan_filter)
2084 ret |= ETH_VLAN_FILTER_OFFLOAD;
2086 if (dev->data->dev_conf.rxmode.hw_vlan_extend)
2087 ret |= ETH_VLAN_EXTEND_OFFLOAD;
2093 rte_eth_dev_set_vlan_pvid(uint8_t port_id, uint16_t pvid, int on)
2095 struct rte_eth_dev *dev;
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);
2106 rte_eth_dev_flow_ctrl_get(uint8_t port_id, struct rte_eth_fc_conf *fc_conf)
2108 struct rte_eth_dev *dev;
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);
2118 rte_eth_dev_flow_ctrl_set(uint8_t port_id, struct rte_eth_fc_conf *fc_conf)
2120 struct rte_eth_dev *dev;
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");
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);
2134 rte_eth_dev_priority_flow_ctrl_set(uint8_t port_id, struct rte_eth_pfc_conf *pfc_conf)
2136 struct rte_eth_dev *dev;
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");
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);
2152 rte_eth_check_reta_mask(struct rte_eth_rss_reta_entry64 *reta_conf,
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)
2170 rte_eth_check_reta_entry(struct rte_eth_rss_reta_entry64 *reta_conf,
2174 uint16_t i, idx, shift;
2180 RTE_PMD_DEBUG_TRACE("No receive queue is available\n");
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);
2200 rte_eth_dev_rss_reta_update(uint8_t port_id,
2201 struct rte_eth_rss_reta_entry64 *reta_conf,
2204 struct rte_eth_dev *dev;
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);
2213 dev = &rte_eth_devices[port_id];
2215 /* Check entry value */
2216 ret = rte_eth_check_reta_entry(reta_conf, reta_size,
2217 dev->data->nb_rx_queues);
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);
2226 rte_eth_dev_rss_reta_query(uint8_t port_id,
2227 struct rte_eth_rss_reta_entry64 *reta_conf,
2230 struct rte_eth_dev *dev;
2233 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2235 /* Check mask bits */
2236 ret = rte_eth_check_reta_mask(reta_conf, reta_size);
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);
2246 rte_eth_dev_rss_hash_update(uint8_t port_id, struct rte_eth_rss_conf *rss_conf)
2248 struct rte_eth_dev *dev;
2249 uint16_t rss_hash_protos;
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",
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);
2265 rte_eth_dev_rss_hash_conf_get(uint8_t port_id,
2266 struct rte_eth_rss_conf *rss_conf)
2268 struct rte_eth_dev *dev;
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);
2277 rte_eth_dev_udp_tunnel_port_add(uint8_t port_id,
2278 struct rte_eth_udp_tunnel *udp_tunnel)
2280 struct rte_eth_dev *dev;
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");
2288 if (udp_tunnel->prot_type >= RTE_TUNNEL_TYPE_MAX) {
2289 RTE_PMD_DEBUG_TRACE("Invalid tunnel type\n");
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);
2299 rte_eth_dev_udp_tunnel_port_delete(uint8_t port_id,
2300 struct rte_eth_udp_tunnel *udp_tunnel)
2302 struct rte_eth_dev *dev;
2304 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2305 dev = &rte_eth_devices[port_id];
2307 if (udp_tunnel == NULL) {
2308 RTE_PMD_DEBUG_TRACE("Invalid udp_tunnel parameter\n");
2312 if (udp_tunnel->prot_type >= RTE_TUNNEL_TYPE_MAX) {
2313 RTE_PMD_DEBUG_TRACE("Invalid tunnel type\n");
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);
2322 rte_eth_led_on(uint8_t port_id)
2324 struct rte_eth_dev *dev;
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);
2333 rte_eth_led_off(uint8_t port_id)
2335 struct rte_eth_dev *dev;
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);
2344 * Returns index into MAC address array of addr. Use 00:00:00:00:00:00 to find
2348 get_mac_addr_index(uint8_t port_id, const struct ether_addr *addr)
2350 struct rte_eth_dev_info dev_info;
2351 struct rte_eth_dev *dev = &rte_eth_devices[port_id];
2354 rte_eth_dev_info_get(port_id, &dev_info);
2356 for (i = 0; i < dev_info.max_mac_addrs; i++)
2357 if (memcmp(addr, &dev->data->mac_addrs[i], ETHER_ADDR_LEN) == 0)
2363 static const struct ether_addr null_mac_addr;
2366 rte_eth_dev_mac_addr_add(uint8_t port_id, struct ether_addr *addr,
2369 struct rte_eth_dev *dev;
2373 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2374 dev = &rte_eth_devices[port_id];
2375 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_add, -ENOTSUP);
2377 if (is_zero_ether_addr(addr)) {
2378 RTE_PMD_DEBUG_TRACE("port %d: Cannot add NULL MAC address\n",
2382 if (pool >= ETH_64_POOLS) {
2383 RTE_PMD_DEBUG_TRACE("pool id must be 0-%d\n", ETH_64_POOLS - 1);
2387 index = get_mac_addr_index(port_id, addr);
2389 index = get_mac_addr_index(port_id, &null_mac_addr);
2391 RTE_PMD_DEBUG_TRACE("port %d: MAC address array full\n",
2396 pool_mask = dev->data->mac_pool_sel[index];
2398 /* Check if both MAC address and pool is already there, and do nothing */
2399 if (pool_mask & (1ULL << pool))
2404 (*dev->dev_ops->mac_addr_add)(dev, addr, index, pool);
2406 /* Update address in NIC data structure */
2407 ether_addr_copy(addr, &dev->data->mac_addrs[index]);
2409 /* Update pool bitmap in NIC data structure */
2410 dev->data->mac_pool_sel[index] |= (1ULL << pool);
2416 rte_eth_dev_mac_addr_remove(uint8_t port_id, struct ether_addr *addr)
2418 struct rte_eth_dev *dev;
2421 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2422 dev = &rte_eth_devices[port_id];
2423 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_remove, -ENOTSUP);
2425 index = get_mac_addr_index(port_id, addr);
2427 RTE_PMD_DEBUG_TRACE("port %d: Cannot remove default MAC address\n", port_id);
2429 } else if (index < 0)
2430 return 0; /* Do nothing if address wasn't found */
2433 (*dev->dev_ops->mac_addr_remove)(dev, index);
2435 /* Update address in NIC data structure */
2436 ether_addr_copy(&null_mac_addr, &dev->data->mac_addrs[index]);
2438 /* reset pool bitmap */
2439 dev->data->mac_pool_sel[index] = 0;
2445 rte_eth_dev_default_mac_addr_set(uint8_t port_id, struct ether_addr *addr)
2447 struct rte_eth_dev *dev;
2449 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2451 if (!is_valid_assigned_ether_addr(addr))
2454 dev = &rte_eth_devices[port_id];
2455 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_set, -ENOTSUP);
2457 /* Update default address in NIC data structure */
2458 ether_addr_copy(addr, &dev->data->mac_addrs[0]);
2460 (*dev->dev_ops->mac_addr_set)(dev, addr);
2467 * Returns index into MAC address array of addr. Use 00:00:00:00:00:00 to find
2471 get_hash_mac_addr_index(uint8_t port_id, const struct ether_addr *addr)
2473 struct rte_eth_dev_info dev_info;
2474 struct rte_eth_dev *dev = &rte_eth_devices[port_id];
2477 rte_eth_dev_info_get(port_id, &dev_info);
2478 if (!dev->data->hash_mac_addrs)
2481 for (i = 0; i < dev_info.max_hash_mac_addrs; i++)
2482 if (memcmp(addr, &dev->data->hash_mac_addrs[i],
2483 ETHER_ADDR_LEN) == 0)
2490 rte_eth_dev_uc_hash_table_set(uint8_t port_id, struct ether_addr *addr,
2495 struct rte_eth_dev *dev;
2497 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2499 dev = &rte_eth_devices[port_id];
2500 if (is_zero_ether_addr(addr)) {
2501 RTE_PMD_DEBUG_TRACE("port %d: Cannot add NULL MAC address\n",
2506 index = get_hash_mac_addr_index(port_id, addr);
2507 /* Check if it's already there, and do nothing */
2508 if ((index >= 0) && (on))
2513 RTE_PMD_DEBUG_TRACE("port %d: the MAC address was not "
2514 "set in UTA\n", port_id);
2518 index = get_hash_mac_addr_index(port_id, &null_mac_addr);
2520 RTE_PMD_DEBUG_TRACE("port %d: MAC address array full\n",
2526 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->uc_hash_table_set, -ENOTSUP);
2527 ret = (*dev->dev_ops->uc_hash_table_set)(dev, addr, on);
2529 /* Update address in NIC data structure */
2531 ether_addr_copy(addr,
2532 &dev->data->hash_mac_addrs[index]);
2534 ether_addr_copy(&null_mac_addr,
2535 &dev->data->hash_mac_addrs[index]);
2542 rte_eth_dev_uc_all_hash_table_set(uint8_t port_id, uint8_t on)
2544 struct rte_eth_dev *dev;
2546 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2548 dev = &rte_eth_devices[port_id];
2550 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->uc_all_hash_table_set, -ENOTSUP);
2551 return (*dev->dev_ops->uc_all_hash_table_set)(dev, on);
2554 int rte_eth_set_queue_rate_limit(uint8_t port_id, uint16_t queue_idx,
2557 struct rte_eth_dev *dev;
2558 struct rte_eth_dev_info dev_info;
2559 struct rte_eth_link link;
2561 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2563 dev = &rte_eth_devices[port_id];
2564 rte_eth_dev_info_get(port_id, &dev_info);
2565 link = dev->data->dev_link;
2567 if (queue_idx > dev_info.max_tx_queues) {
2568 RTE_PMD_DEBUG_TRACE("set queue rate limit:port %d: "
2569 "invalid queue id=%d\n", port_id, queue_idx);
2573 if (tx_rate > link.link_speed) {
2574 RTE_PMD_DEBUG_TRACE("set queue rate limit:invalid tx_rate=%d, "
2575 "bigger than link speed= %d\n",
2576 tx_rate, link.link_speed);
2580 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_queue_rate_limit, -ENOTSUP);
2581 return (*dev->dev_ops->set_queue_rate_limit)(dev, queue_idx, tx_rate);
2585 rte_eth_mirror_rule_set(uint8_t port_id,
2586 struct rte_eth_mirror_conf *mirror_conf,
2587 uint8_t rule_id, uint8_t on)
2589 struct rte_eth_dev *dev;
2591 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2592 if (mirror_conf->rule_type == 0) {
2593 RTE_PMD_DEBUG_TRACE("mirror rule type can not be 0.\n");
2597 if (mirror_conf->dst_pool >= ETH_64_POOLS) {
2598 RTE_PMD_DEBUG_TRACE("Invalid dst pool, pool id must be 0-%d\n",
2603 if ((mirror_conf->rule_type & (ETH_MIRROR_VIRTUAL_POOL_UP |
2604 ETH_MIRROR_VIRTUAL_POOL_DOWN)) &&
2605 (mirror_conf->pool_mask == 0)) {
2606 RTE_PMD_DEBUG_TRACE("Invalid mirror pool, pool mask can not be 0.\n");
2610 if ((mirror_conf->rule_type & ETH_MIRROR_VLAN) &&
2611 mirror_conf->vlan.vlan_mask == 0) {
2612 RTE_PMD_DEBUG_TRACE("Invalid vlan mask, vlan mask can not be 0.\n");
2616 dev = &rte_eth_devices[port_id];
2617 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mirror_rule_set, -ENOTSUP);
2619 return (*dev->dev_ops->mirror_rule_set)(dev, mirror_conf, rule_id, on);
2623 rte_eth_mirror_rule_reset(uint8_t port_id, uint8_t rule_id)
2625 struct rte_eth_dev *dev;
2627 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2629 dev = &rte_eth_devices[port_id];
2630 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mirror_rule_reset, -ENOTSUP);
2632 return (*dev->dev_ops->mirror_rule_reset)(dev, rule_id);
2636 rte_eth_dev_callback_register(uint8_t port_id,
2637 enum rte_eth_event_type event,
2638 rte_eth_dev_cb_fn cb_fn, void *cb_arg)
2640 struct rte_eth_dev *dev;
2641 struct rte_eth_dev_callback *user_cb;
2646 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
2648 dev = &rte_eth_devices[port_id];
2649 rte_spinlock_lock(&rte_eth_dev_cb_lock);
2651 TAILQ_FOREACH(user_cb, &(dev->link_intr_cbs), next) {
2652 if (user_cb->cb_fn == cb_fn &&
2653 user_cb->cb_arg == cb_arg &&
2654 user_cb->event == event) {
2659 /* create a new callback. */
2660 if (user_cb == NULL) {
2661 user_cb = rte_zmalloc("INTR_USER_CALLBACK",
2662 sizeof(struct rte_eth_dev_callback), 0);
2663 if (user_cb != NULL) {
2664 user_cb->cb_fn = cb_fn;
2665 user_cb->cb_arg = cb_arg;
2666 user_cb->event = event;
2667 TAILQ_INSERT_TAIL(&(dev->link_intr_cbs), user_cb, next);
2671 rte_spinlock_unlock(&rte_eth_dev_cb_lock);
2672 return (user_cb == NULL) ? -ENOMEM : 0;
2676 rte_eth_dev_callback_unregister(uint8_t port_id,
2677 enum rte_eth_event_type event,
2678 rte_eth_dev_cb_fn cb_fn, void *cb_arg)
2681 struct rte_eth_dev *dev;
2682 struct rte_eth_dev_callback *cb, *next;
2687 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
2689 dev = &rte_eth_devices[port_id];
2690 rte_spinlock_lock(&rte_eth_dev_cb_lock);
2693 for (cb = TAILQ_FIRST(&dev->link_intr_cbs); cb != NULL; cb = next) {
2695 next = TAILQ_NEXT(cb, next);
2697 if (cb->cb_fn != cb_fn || cb->event != event ||
2698 (cb->cb_arg != (void *)-1 &&
2699 cb->cb_arg != cb_arg))
2703 * if this callback is not executing right now,
2706 if (cb->active == 0) {
2707 TAILQ_REMOVE(&(dev->link_intr_cbs), cb, next);
2714 rte_spinlock_unlock(&rte_eth_dev_cb_lock);
2719 _rte_eth_dev_callback_process(struct rte_eth_dev *dev,
2720 enum rte_eth_event_type event, void *cb_arg)
2722 struct rte_eth_dev_callback *cb_lst;
2723 struct rte_eth_dev_callback dev_cb;
2725 rte_spinlock_lock(&rte_eth_dev_cb_lock);
2726 TAILQ_FOREACH(cb_lst, &(dev->link_intr_cbs), next) {
2727 if (cb_lst->cb_fn == NULL || cb_lst->event != event)
2732 dev_cb.cb_arg = cb_arg;
2734 rte_spinlock_unlock(&rte_eth_dev_cb_lock);
2735 dev_cb.cb_fn(dev->data->port_id, dev_cb.event,
2737 rte_spinlock_lock(&rte_eth_dev_cb_lock);
2740 rte_spinlock_unlock(&rte_eth_dev_cb_lock);
2744 rte_eth_dev_rx_intr_ctl(uint8_t port_id, int epfd, int op, void *data)
2747 struct rte_eth_dev *dev;
2748 struct rte_intr_handle *intr_handle;
2752 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2754 dev = &rte_eth_devices[port_id];
2756 if (!dev->intr_handle) {
2757 RTE_PMD_DEBUG_TRACE("RX Intr handle unset\n");
2761 intr_handle = dev->intr_handle;
2762 if (!intr_handle->intr_vec) {
2763 RTE_PMD_DEBUG_TRACE("RX Intr vector unset\n");
2767 for (qid = 0; qid < dev->data->nb_rx_queues; qid++) {
2768 vec = intr_handle->intr_vec[qid];
2769 rc = rte_intr_rx_ctl(intr_handle, epfd, op, vec, data);
2770 if (rc && rc != -EEXIST) {
2771 RTE_PMD_DEBUG_TRACE("p %u q %u rx ctl error"
2772 " op %d epfd %d vec %u\n",
2773 port_id, qid, op, epfd, vec);
2780 const struct rte_memzone *
2781 rte_eth_dma_zone_reserve(const struct rte_eth_dev *dev, const char *ring_name,
2782 uint16_t queue_id, size_t size, unsigned align,
2785 char z_name[RTE_MEMZONE_NAMESIZE];
2786 const struct rte_memzone *mz;
2788 snprintf(z_name, sizeof(z_name), "%s_%s_%d_%d",
2789 dev->data->drv_name, ring_name,
2790 dev->data->port_id, queue_id);
2792 mz = rte_memzone_lookup(z_name);
2796 if (rte_xen_dom0_supported())
2797 return rte_memzone_reserve_bounded(z_name, size, socket_id,
2798 0, align, RTE_PGSIZE_2M);
2800 return rte_memzone_reserve_aligned(z_name, size, socket_id,
2805 rte_eth_dev_rx_intr_ctl_q(uint8_t port_id, uint16_t queue_id,
2806 int epfd, int op, void *data)
2809 struct rte_eth_dev *dev;
2810 struct rte_intr_handle *intr_handle;
2813 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2815 dev = &rte_eth_devices[port_id];
2816 if (queue_id >= dev->data->nb_rx_queues) {
2817 RTE_PMD_DEBUG_TRACE("Invalid RX queue_id=%u\n", queue_id);
2821 if (!dev->intr_handle) {
2822 RTE_PMD_DEBUG_TRACE("RX Intr handle unset\n");
2826 intr_handle = dev->intr_handle;
2827 if (!intr_handle->intr_vec) {
2828 RTE_PMD_DEBUG_TRACE("RX Intr vector unset\n");
2832 vec = intr_handle->intr_vec[queue_id];
2833 rc = rte_intr_rx_ctl(intr_handle, epfd, op, vec, data);
2834 if (rc && rc != -EEXIST) {
2835 RTE_PMD_DEBUG_TRACE("p %u q %u rx ctl error"
2836 " op %d epfd %d vec %u\n",
2837 port_id, queue_id, op, epfd, vec);
2845 rte_eth_dev_rx_intr_enable(uint8_t port_id,
2848 struct rte_eth_dev *dev;
2850 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2852 dev = &rte_eth_devices[port_id];
2854 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_intr_enable, -ENOTSUP);
2855 return (*dev->dev_ops->rx_queue_intr_enable)(dev, queue_id);
2859 rte_eth_dev_rx_intr_disable(uint8_t port_id,
2862 struct rte_eth_dev *dev;
2864 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2866 dev = &rte_eth_devices[port_id];
2868 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_intr_disable, -ENOTSUP);
2869 return (*dev->dev_ops->rx_queue_intr_disable)(dev, queue_id);
2872 #ifdef RTE_NIC_BYPASS
2873 int rte_eth_dev_bypass_init(uint8_t port_id)
2875 struct rte_eth_dev *dev;
2877 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2879 dev = &rte_eth_devices[port_id];
2880 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_init, -ENOTSUP);
2881 (*dev->dev_ops->bypass_init)(dev);
2886 rte_eth_dev_bypass_state_show(uint8_t port_id, uint32_t *state)
2888 struct rte_eth_dev *dev;
2890 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2892 dev = &rte_eth_devices[port_id];
2893 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_state_show, -ENOTSUP);
2894 (*dev->dev_ops->bypass_state_show)(dev, state);
2899 rte_eth_dev_bypass_state_set(uint8_t port_id, uint32_t *new_state)
2901 struct rte_eth_dev *dev;
2903 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2905 dev = &rte_eth_devices[port_id];
2906 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_state_set, -ENOTSUP);
2907 (*dev->dev_ops->bypass_state_set)(dev, new_state);
2912 rte_eth_dev_bypass_event_show(uint8_t port_id, uint32_t event, uint32_t *state)
2914 struct rte_eth_dev *dev;
2916 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2918 dev = &rte_eth_devices[port_id];
2919 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_state_show, -ENOTSUP);
2920 (*dev->dev_ops->bypass_event_show)(dev, event, state);
2925 rte_eth_dev_bypass_event_store(uint8_t port_id, uint32_t event, uint32_t state)
2927 struct rte_eth_dev *dev;
2929 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2931 dev = &rte_eth_devices[port_id];
2933 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_event_set, -ENOTSUP);
2934 (*dev->dev_ops->bypass_event_set)(dev, event, state);
2939 rte_eth_dev_wd_timeout_store(uint8_t port_id, uint32_t timeout)
2941 struct rte_eth_dev *dev;
2943 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2945 dev = &rte_eth_devices[port_id];
2947 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_wd_timeout_set, -ENOTSUP);
2948 (*dev->dev_ops->bypass_wd_timeout_set)(dev, timeout);
2953 rte_eth_dev_bypass_ver_show(uint8_t port_id, uint32_t *ver)
2955 struct rte_eth_dev *dev;
2957 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2959 dev = &rte_eth_devices[port_id];
2961 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_ver_show, -ENOTSUP);
2962 (*dev->dev_ops->bypass_ver_show)(dev, ver);
2967 rte_eth_dev_bypass_wd_timeout_show(uint8_t port_id, uint32_t *wd_timeout)
2969 struct rte_eth_dev *dev;
2971 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2973 dev = &rte_eth_devices[port_id];
2975 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_wd_timeout_show, -ENOTSUP);
2976 (*dev->dev_ops->bypass_wd_timeout_show)(dev, wd_timeout);
2981 rte_eth_dev_bypass_wd_reset(uint8_t port_id)
2983 struct rte_eth_dev *dev;
2985 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2987 dev = &rte_eth_devices[port_id];
2989 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->bypass_wd_reset, -ENOTSUP);
2990 (*dev->dev_ops->bypass_wd_reset)(dev);
2996 rte_eth_dev_filter_supported(uint8_t port_id, enum rte_filter_type filter_type)
2998 struct rte_eth_dev *dev;
3000 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3002 dev = &rte_eth_devices[port_id];
3003 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->filter_ctrl, -ENOTSUP);
3004 return (*dev->dev_ops->filter_ctrl)(dev, filter_type,
3005 RTE_ETH_FILTER_NOP, NULL);
3009 rte_eth_dev_filter_ctrl(uint8_t port_id, enum rte_filter_type filter_type,
3010 enum rte_filter_op filter_op, void *arg)
3012 struct rte_eth_dev *dev;
3014 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3016 dev = &rte_eth_devices[port_id];
3017 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->filter_ctrl, -ENOTSUP);
3018 return (*dev->dev_ops->filter_ctrl)(dev, filter_type, filter_op, arg);
3022 rte_eth_add_rx_callback(uint8_t port_id, uint16_t queue_id,
3023 rte_rx_callback_fn fn, void *user_param)
3025 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3026 rte_errno = ENOTSUP;
3029 /* check input parameters */
3030 if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL ||
3031 queue_id >= rte_eth_devices[port_id].data->nb_rx_queues) {
3035 struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0);
3043 cb->param = user_param;
3045 rte_spinlock_lock(&rte_eth_rx_cb_lock);
3046 /* Add the callbacks in fifo order. */
3047 struct rte_eth_rxtx_callback *tail =
3048 rte_eth_devices[port_id].post_rx_burst_cbs[queue_id];
3051 rte_eth_devices[port_id].post_rx_burst_cbs[queue_id] = cb;
3058 rte_spinlock_unlock(&rte_eth_rx_cb_lock);
3064 rte_eth_add_first_rx_callback(uint8_t port_id, uint16_t queue_id,
3065 rte_rx_callback_fn fn, void *user_param)
3067 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3068 rte_errno = ENOTSUP;
3071 /* check input parameters */
3072 if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL ||
3073 queue_id >= rte_eth_devices[port_id].data->nb_rx_queues) {
3078 struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0);
3086 cb->param = user_param;
3088 rte_spinlock_lock(&rte_eth_rx_cb_lock);
3089 /* Add the callbacks at fisrt position*/
3090 cb->next = rte_eth_devices[port_id].post_rx_burst_cbs[queue_id];
3092 rte_eth_devices[port_id].post_rx_burst_cbs[queue_id] = cb;
3093 rte_spinlock_unlock(&rte_eth_rx_cb_lock);
3099 rte_eth_add_tx_callback(uint8_t port_id, uint16_t queue_id,
3100 rte_tx_callback_fn fn, void *user_param)
3102 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3103 rte_errno = ENOTSUP;
3106 /* check input parameters */
3107 if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL ||
3108 queue_id >= rte_eth_devices[port_id].data->nb_tx_queues) {
3113 struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0);
3121 cb->param = user_param;
3123 rte_spinlock_lock(&rte_eth_tx_cb_lock);
3124 /* Add the callbacks in fifo order. */
3125 struct rte_eth_rxtx_callback *tail =
3126 rte_eth_devices[port_id].pre_tx_burst_cbs[queue_id];
3129 rte_eth_devices[port_id].pre_tx_burst_cbs[queue_id] = cb;
3136 rte_spinlock_unlock(&rte_eth_tx_cb_lock);
3142 rte_eth_remove_rx_callback(uint8_t port_id, uint16_t queue_id,
3143 struct rte_eth_rxtx_callback *user_cb)
3145 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3148 /* Check input parameters. */
3149 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
3150 if (user_cb == NULL ||
3151 queue_id >= rte_eth_devices[port_id].data->nb_rx_queues)
3154 struct rte_eth_dev *dev = &rte_eth_devices[port_id];
3155 struct rte_eth_rxtx_callback *cb;
3156 struct rte_eth_rxtx_callback **prev_cb;
3159 rte_spinlock_lock(&rte_eth_rx_cb_lock);
3160 prev_cb = &dev->post_rx_burst_cbs[queue_id];
3161 for (; *prev_cb != NULL; prev_cb = &cb->next) {
3163 if (cb == user_cb) {
3164 /* Remove the user cb from the callback list. */
3165 *prev_cb = cb->next;
3170 rte_spinlock_unlock(&rte_eth_rx_cb_lock);
3176 rte_eth_remove_tx_callback(uint8_t port_id, uint16_t queue_id,
3177 struct rte_eth_rxtx_callback *user_cb)
3179 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
3182 /* Check input parameters. */
3183 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -EINVAL);
3184 if (user_cb == NULL ||
3185 queue_id >= rte_eth_devices[port_id].data->nb_tx_queues)
3188 struct rte_eth_dev *dev = &rte_eth_devices[port_id];
3190 struct rte_eth_rxtx_callback *cb;
3191 struct rte_eth_rxtx_callback **prev_cb;
3193 rte_spinlock_lock(&rte_eth_tx_cb_lock);
3194 prev_cb = &dev->pre_tx_burst_cbs[queue_id];
3195 for (; *prev_cb != NULL; prev_cb = &cb->next) {
3197 if (cb == user_cb) {
3198 /* Remove the user cb from the callback list. */
3199 *prev_cb = cb->next;
3204 rte_spinlock_unlock(&rte_eth_tx_cb_lock);
3210 rte_eth_rx_queue_info_get(uint8_t port_id, uint16_t queue_id,
3211 struct rte_eth_rxq_info *qinfo)
3213 struct rte_eth_dev *dev;
3215 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3220 dev = &rte_eth_devices[port_id];
3221 if (queue_id >= dev->data->nb_rx_queues) {
3222 RTE_PMD_DEBUG_TRACE("Invalid RX queue_id=%d\n", queue_id);
3226 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rxq_info_get, -ENOTSUP);
3228 memset(qinfo, 0, sizeof(*qinfo));
3229 dev->dev_ops->rxq_info_get(dev, queue_id, qinfo);
3234 rte_eth_tx_queue_info_get(uint8_t port_id, uint16_t queue_id,
3235 struct rte_eth_txq_info *qinfo)
3237 struct rte_eth_dev *dev;
3239 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3244 dev = &rte_eth_devices[port_id];
3245 if (queue_id >= dev->data->nb_tx_queues) {
3246 RTE_PMD_DEBUG_TRACE("Invalid TX queue_id=%d\n", queue_id);
3250 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->txq_info_get, -ENOTSUP);
3252 memset(qinfo, 0, sizeof(*qinfo));
3253 dev->dev_ops->txq_info_get(dev, queue_id, qinfo);
3258 rte_eth_dev_set_mc_addr_list(uint8_t port_id,
3259 struct ether_addr *mc_addr_set,
3260 uint32_t nb_mc_addr)
3262 struct rte_eth_dev *dev;
3264 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3266 dev = &rte_eth_devices[port_id];
3267 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_mc_addr_list, -ENOTSUP);
3268 return dev->dev_ops->set_mc_addr_list(dev, mc_addr_set, nb_mc_addr);
3272 rte_eth_timesync_enable(uint8_t port_id)
3274 struct rte_eth_dev *dev;
3276 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3277 dev = &rte_eth_devices[port_id];
3279 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_enable, -ENOTSUP);
3280 return (*dev->dev_ops->timesync_enable)(dev);
3284 rte_eth_timesync_disable(uint8_t port_id)
3286 struct rte_eth_dev *dev;
3288 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3289 dev = &rte_eth_devices[port_id];
3291 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_disable, -ENOTSUP);
3292 return (*dev->dev_ops->timesync_disable)(dev);
3296 rte_eth_timesync_read_rx_timestamp(uint8_t port_id, struct timespec *timestamp,
3299 struct rte_eth_dev *dev;
3301 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3302 dev = &rte_eth_devices[port_id];
3304 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_rx_timestamp, -ENOTSUP);
3305 return (*dev->dev_ops->timesync_read_rx_timestamp)(dev, timestamp, flags);
3309 rte_eth_timesync_read_tx_timestamp(uint8_t port_id, struct timespec *timestamp)
3311 struct rte_eth_dev *dev;
3313 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3314 dev = &rte_eth_devices[port_id];
3316 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_tx_timestamp, -ENOTSUP);
3317 return (*dev->dev_ops->timesync_read_tx_timestamp)(dev, timestamp);
3321 rte_eth_timesync_adjust_time(uint8_t port_id, int64_t delta)
3323 struct rte_eth_dev *dev;
3325 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3326 dev = &rte_eth_devices[port_id];
3328 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_adjust_time, -ENOTSUP);
3329 return (*dev->dev_ops->timesync_adjust_time)(dev, delta);
3333 rte_eth_timesync_read_time(uint8_t port_id, struct timespec *timestamp)
3335 struct rte_eth_dev *dev;
3337 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3338 dev = &rte_eth_devices[port_id];
3340 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_time, -ENOTSUP);
3341 return (*dev->dev_ops->timesync_read_time)(dev, timestamp);
3345 rte_eth_timesync_write_time(uint8_t port_id, const struct timespec *timestamp)
3347 struct rte_eth_dev *dev;
3349 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3350 dev = &rte_eth_devices[port_id];
3352 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_write_time, -ENOTSUP);
3353 return (*dev->dev_ops->timesync_write_time)(dev, timestamp);
3357 rte_eth_dev_get_reg_info(uint8_t port_id, struct rte_dev_reg_info *info)
3359 struct rte_eth_dev *dev;
3361 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3363 dev = &rte_eth_devices[port_id];
3364 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_reg, -ENOTSUP);
3365 return (*dev->dev_ops->get_reg)(dev, info);
3369 rte_eth_dev_get_eeprom_length(uint8_t port_id)
3371 struct rte_eth_dev *dev;
3373 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3375 dev = &rte_eth_devices[port_id];
3376 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_eeprom_length, -ENOTSUP);
3377 return (*dev->dev_ops->get_eeprom_length)(dev);
3381 rte_eth_dev_get_eeprom(uint8_t port_id, struct rte_dev_eeprom_info *info)
3383 struct rte_eth_dev *dev;
3385 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3387 dev = &rte_eth_devices[port_id];
3388 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_eeprom, -ENOTSUP);
3389 return (*dev->dev_ops->get_eeprom)(dev, info);
3393 rte_eth_dev_set_eeprom(uint8_t port_id, struct rte_dev_eeprom_info *info)
3395 struct rte_eth_dev *dev;
3397 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3399 dev = &rte_eth_devices[port_id];
3400 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_eeprom, -ENOTSUP);
3401 return (*dev->dev_ops->set_eeprom)(dev, info);
3405 rte_eth_dev_get_dcb_info(uint8_t port_id,
3406 struct rte_eth_dcb_info *dcb_info)
3408 struct rte_eth_dev *dev;
3410 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3412 dev = &rte_eth_devices[port_id];
3413 memset(dcb_info, 0, sizeof(struct rte_eth_dcb_info));
3415 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_dcb_info, -ENOTSUP);
3416 return (*dev->dev_ops->get_dcb_info)(dev, dcb_info);
3420 rte_eth_dev_l2_tunnel_eth_type_conf(uint8_t port_id,
3421 struct rte_eth_l2_tunnel_conf *l2_tunnel)
3423 struct rte_eth_dev *dev;
3425 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3426 if (l2_tunnel == NULL) {
3427 RTE_PMD_DEBUG_TRACE("Invalid l2_tunnel parameter\n");
3431 if (l2_tunnel->l2_tunnel_type >= RTE_TUNNEL_TYPE_MAX) {
3432 RTE_PMD_DEBUG_TRACE("Invalid tunnel type\n");
3436 dev = &rte_eth_devices[port_id];
3437 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->l2_tunnel_eth_type_conf,
3439 return (*dev->dev_ops->l2_tunnel_eth_type_conf)(dev, l2_tunnel);
3443 rte_eth_dev_l2_tunnel_offload_set(uint8_t port_id,
3444 struct rte_eth_l2_tunnel_conf *l2_tunnel,
3448 struct rte_eth_dev *dev;
3450 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3452 if (l2_tunnel == NULL) {
3453 RTE_PMD_DEBUG_TRACE("Invalid l2_tunnel parameter\n");
3457 if (l2_tunnel->l2_tunnel_type >= RTE_TUNNEL_TYPE_MAX) {
3458 RTE_PMD_DEBUG_TRACE("Invalid tunnel type.\n");
3463 RTE_PMD_DEBUG_TRACE("Mask should have a value.\n");
3467 dev = &rte_eth_devices[port_id];
3468 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->l2_tunnel_offload_set,
3470 return (*dev->dev_ops->l2_tunnel_offload_set)(dev, l2_tunnel, mask, en);