1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2017 Intel Corporation
12 #include <sys/queue.h>
14 #include <rte_byteorder.h>
16 #include <rte_debug.h>
17 #include <rte_interrupts.h>
18 #include <rte_memory.h>
19 #include <rte_memcpy.h>
20 #include <rte_memzone.h>
21 #include <rte_launch.h>
23 #include <rte_per_lcore.h>
24 #include <rte_lcore.h>
25 #include <rte_branch_prediction.h>
26 #include <rte_common.h>
27 #include <rte_mempool.h>
28 #include <rte_malloc.h>
30 #include <rte_errno.h>
31 #include <rte_spinlock.h>
32 #include <rte_string_fns.h>
33 #include <rte_kvargs.h>
34 #include <rte_class.h>
35 #include <rte_ether.h>
36 #include <rte_telemetry.h>
38 #include "rte_ethdev_trace.h"
39 #include "rte_ethdev.h"
40 #include "ethdev_driver.h"
41 #include "ethdev_profile.h"
42 #include "ethdev_private.h"
44 static const char *MZ_RTE_ETH_DEV_DATA = "rte_eth_dev_data";
45 struct rte_eth_dev rte_eth_devices[RTE_MAX_ETHPORTS];
47 /* spinlock for eth device callbacks */
48 static rte_spinlock_t eth_dev_cb_lock = RTE_SPINLOCK_INITIALIZER;
50 /* spinlock for add/remove rx callbacks */
51 static rte_spinlock_t eth_dev_rx_cb_lock = RTE_SPINLOCK_INITIALIZER;
53 /* spinlock for add/remove tx callbacks */
54 static rte_spinlock_t eth_dev_tx_cb_lock = RTE_SPINLOCK_INITIALIZER;
56 /* spinlock for shared data allocation */
57 static rte_spinlock_t eth_dev_shared_data_lock = RTE_SPINLOCK_INITIALIZER;
59 /* store statistics names and its offset in stats structure */
60 struct rte_eth_xstats_name_off {
61 char name[RTE_ETH_XSTATS_NAME_SIZE];
65 /* Shared memory between primary and secondary processes. */
67 uint64_t next_owner_id;
68 rte_spinlock_t ownership_lock;
69 struct rte_eth_dev_data data[RTE_MAX_ETHPORTS];
70 } *eth_dev_shared_data;
72 static const struct rte_eth_xstats_name_off eth_dev_stats_strings[] = {
73 {"rx_good_packets", offsetof(struct rte_eth_stats, ipackets)},
74 {"tx_good_packets", offsetof(struct rte_eth_stats, opackets)},
75 {"rx_good_bytes", offsetof(struct rte_eth_stats, ibytes)},
76 {"tx_good_bytes", offsetof(struct rte_eth_stats, obytes)},
77 {"rx_missed_errors", offsetof(struct rte_eth_stats, imissed)},
78 {"rx_errors", offsetof(struct rte_eth_stats, ierrors)},
79 {"tx_errors", offsetof(struct rte_eth_stats, oerrors)},
80 {"rx_mbuf_allocation_errors", offsetof(struct rte_eth_stats,
84 #define RTE_NB_STATS RTE_DIM(eth_dev_stats_strings)
86 static const struct rte_eth_xstats_name_off eth_dev_rxq_stats_strings[] = {
87 {"packets", offsetof(struct rte_eth_stats, q_ipackets)},
88 {"bytes", offsetof(struct rte_eth_stats, q_ibytes)},
89 {"errors", offsetof(struct rte_eth_stats, q_errors)},
92 #define RTE_NB_RXQ_STATS RTE_DIM(eth_dev_rxq_stats_strings)
94 static const struct rte_eth_xstats_name_off eth_dev_txq_stats_strings[] = {
95 {"packets", offsetof(struct rte_eth_stats, q_opackets)},
96 {"bytes", offsetof(struct rte_eth_stats, q_obytes)},
98 #define RTE_NB_TXQ_STATS RTE_DIM(eth_dev_txq_stats_strings)
100 #define RTE_RX_OFFLOAD_BIT2STR(_name) \
101 { DEV_RX_OFFLOAD_##_name, #_name }
103 #define RTE_ETH_RX_OFFLOAD_BIT2STR(_name) \
104 { RTE_ETH_RX_OFFLOAD_##_name, #_name }
106 static const struct {
109 } eth_dev_rx_offload_names[] = {
110 RTE_RX_OFFLOAD_BIT2STR(VLAN_STRIP),
111 RTE_RX_OFFLOAD_BIT2STR(IPV4_CKSUM),
112 RTE_RX_OFFLOAD_BIT2STR(UDP_CKSUM),
113 RTE_RX_OFFLOAD_BIT2STR(TCP_CKSUM),
114 RTE_RX_OFFLOAD_BIT2STR(TCP_LRO),
115 RTE_RX_OFFLOAD_BIT2STR(QINQ_STRIP),
116 RTE_RX_OFFLOAD_BIT2STR(OUTER_IPV4_CKSUM),
117 RTE_RX_OFFLOAD_BIT2STR(MACSEC_STRIP),
118 RTE_RX_OFFLOAD_BIT2STR(HEADER_SPLIT),
119 RTE_RX_OFFLOAD_BIT2STR(VLAN_FILTER),
120 RTE_RX_OFFLOAD_BIT2STR(VLAN_EXTEND),
121 RTE_RX_OFFLOAD_BIT2STR(JUMBO_FRAME),
122 RTE_RX_OFFLOAD_BIT2STR(SCATTER),
123 RTE_RX_OFFLOAD_BIT2STR(TIMESTAMP),
124 RTE_RX_OFFLOAD_BIT2STR(SECURITY),
125 RTE_RX_OFFLOAD_BIT2STR(KEEP_CRC),
126 RTE_RX_OFFLOAD_BIT2STR(SCTP_CKSUM),
127 RTE_RX_OFFLOAD_BIT2STR(OUTER_UDP_CKSUM),
128 RTE_RX_OFFLOAD_BIT2STR(RSS_HASH),
129 RTE_ETH_RX_OFFLOAD_BIT2STR(BUFFER_SPLIT),
132 #undef RTE_RX_OFFLOAD_BIT2STR
133 #undef RTE_ETH_RX_OFFLOAD_BIT2STR
135 #define RTE_TX_OFFLOAD_BIT2STR(_name) \
136 { DEV_TX_OFFLOAD_##_name, #_name }
138 static const struct {
141 } eth_dev_tx_offload_names[] = {
142 RTE_TX_OFFLOAD_BIT2STR(VLAN_INSERT),
143 RTE_TX_OFFLOAD_BIT2STR(IPV4_CKSUM),
144 RTE_TX_OFFLOAD_BIT2STR(UDP_CKSUM),
145 RTE_TX_OFFLOAD_BIT2STR(TCP_CKSUM),
146 RTE_TX_OFFLOAD_BIT2STR(SCTP_CKSUM),
147 RTE_TX_OFFLOAD_BIT2STR(TCP_TSO),
148 RTE_TX_OFFLOAD_BIT2STR(UDP_TSO),
149 RTE_TX_OFFLOAD_BIT2STR(OUTER_IPV4_CKSUM),
150 RTE_TX_OFFLOAD_BIT2STR(QINQ_INSERT),
151 RTE_TX_OFFLOAD_BIT2STR(VXLAN_TNL_TSO),
152 RTE_TX_OFFLOAD_BIT2STR(GRE_TNL_TSO),
153 RTE_TX_OFFLOAD_BIT2STR(IPIP_TNL_TSO),
154 RTE_TX_OFFLOAD_BIT2STR(GENEVE_TNL_TSO),
155 RTE_TX_OFFLOAD_BIT2STR(MACSEC_INSERT),
156 RTE_TX_OFFLOAD_BIT2STR(MT_LOCKFREE),
157 RTE_TX_OFFLOAD_BIT2STR(MULTI_SEGS),
158 RTE_TX_OFFLOAD_BIT2STR(MBUF_FAST_FREE),
159 RTE_TX_OFFLOAD_BIT2STR(SECURITY),
160 RTE_TX_OFFLOAD_BIT2STR(UDP_TNL_TSO),
161 RTE_TX_OFFLOAD_BIT2STR(IP_TNL_TSO),
162 RTE_TX_OFFLOAD_BIT2STR(OUTER_UDP_CKSUM),
163 RTE_TX_OFFLOAD_BIT2STR(SEND_ON_TIMESTAMP),
166 #undef RTE_TX_OFFLOAD_BIT2STR
169 * The user application callback description.
171 * It contains callback address to be registered by user application,
172 * the pointer to the parameters for callback, and the event type.
174 struct rte_eth_dev_callback {
175 TAILQ_ENTRY(rte_eth_dev_callback) next; /**< Callbacks list */
176 rte_eth_dev_cb_fn cb_fn; /**< Callback address */
177 void *cb_arg; /**< Parameter for callback */
178 void *ret_param; /**< Return parameter */
179 enum rte_eth_event_type event; /**< Interrupt event type */
180 uint32_t active; /**< Callback is executing */
189 rte_eth_iterator_init(struct rte_dev_iterator *iter, const char *devargs_str)
192 struct rte_devargs devargs;
193 const char *bus_param_key;
194 char *bus_str = NULL;
195 char *cls_str = NULL;
199 RTE_ETHDEV_LOG(ERR, "Cannot initialize NULL iterator\n");
203 if (devargs_str == NULL) {
205 "Cannot initialize iterator from NULL device description string\n");
209 memset(iter, 0, sizeof(*iter));
210 memset(&devargs, 0, sizeof(devargs));
213 * The devargs string may use various syntaxes:
214 * - 0000:08:00.0,representor=[1-3]
215 * - pci:0000:06:00.0,representor=[0,5]
216 * - class=eth,mac=00:11:22:33:44:55
217 * - bus=X,paramX=x/class=Y,paramY=y/driver=Z,paramZ=z
221 * Handle pure class filter (i.e. without any bus-level argument),
222 * from future new syntax.
223 * rte_devargs_parse() is not yet supporting the new syntax,
224 * that's why this simple case is temporarily parsed here.
226 #define iter_anybus_str "class=eth,"
227 if (strncmp(devargs_str, iter_anybus_str,
228 strlen(iter_anybus_str)) == 0) {
229 iter->cls_str = devargs_str + strlen(iter_anybus_str);
233 /* Split bus, device and parameters. */
234 ret = rte_devargs_parse(&devargs, devargs_str);
239 * Assume parameters of old syntax can match only at ethdev level.
240 * Extra parameters will be ignored, thanks to "+" prefix.
242 str_size = strlen(devargs.args) + 2;
243 cls_str = malloc(str_size);
244 if (cls_str == NULL) {
248 ret = snprintf(cls_str, str_size, "+%s", devargs.args);
249 if (ret != str_size - 1) {
253 iter->cls_str = cls_str;
255 iter->bus = devargs.bus;
256 if (iter->bus->dev_iterate == NULL) {
261 /* Convert bus args to new syntax for use with new API dev_iterate. */
262 if ((strcmp(iter->bus->name, "vdev") == 0) ||
263 (strcmp(iter->bus->name, "fslmc") == 0) ||
264 (strcmp(iter->bus->name, "dpaa_bus") == 0)) {
265 bus_param_key = "name";
266 } else if (strcmp(iter->bus->name, "pci") == 0) {
267 bus_param_key = "addr";
272 str_size = strlen(bus_param_key) + strlen(devargs.name) + 2;
273 bus_str = malloc(str_size);
274 if (bus_str == NULL) {
278 ret = snprintf(bus_str, str_size, "%s=%s",
279 bus_param_key, devargs.name);
280 if (ret != str_size - 1) {
284 iter->bus_str = bus_str;
287 iter->cls = rte_class_find_by_name("eth");
288 rte_devargs_reset(&devargs);
293 RTE_ETHDEV_LOG(ERR, "Bus %s does not support iterating.\n",
295 rte_devargs_reset(&devargs);
302 rte_eth_iterator_next(struct rte_dev_iterator *iter)
306 "Cannot get next device from NULL iterator\n");
307 return RTE_MAX_ETHPORTS;
310 if (iter->cls == NULL) /* invalid ethdev iterator */
311 return RTE_MAX_ETHPORTS;
313 do { /* loop to try all matching rte_device */
314 /* If not pure ethdev filter and */
315 if (iter->bus != NULL &&
316 /* not in middle of rte_eth_dev iteration, */
317 iter->class_device == NULL) {
318 /* get next rte_device to try. */
319 iter->device = iter->bus->dev_iterate(
320 iter->device, iter->bus_str, iter);
321 if (iter->device == NULL)
322 break; /* no more rte_device candidate */
324 /* A device is matching bus part, need to check ethdev part. */
325 iter->class_device = iter->cls->dev_iterate(
326 iter->class_device, iter->cls_str, iter);
327 if (iter->class_device != NULL)
328 return eth_dev_to_id(iter->class_device); /* match */
329 } while (iter->bus != NULL); /* need to try next rte_device */
331 /* No more ethdev port to iterate. */
332 rte_eth_iterator_cleanup(iter);
333 return RTE_MAX_ETHPORTS;
337 rte_eth_iterator_cleanup(struct rte_dev_iterator *iter)
340 RTE_ETHDEV_LOG(ERR, "Cannot do clean up from NULL iterator\n");
344 if (iter->bus_str == NULL)
345 return; /* nothing to free in pure class filter */
346 free(RTE_CAST_FIELD(iter, bus_str, char *)); /* workaround const */
347 free(RTE_CAST_FIELD(iter, cls_str, char *)); /* workaround const */
348 memset(iter, 0, sizeof(*iter));
352 rte_eth_find_next(uint16_t port_id)
354 while (port_id < RTE_MAX_ETHPORTS &&
355 rte_eth_devices[port_id].state == RTE_ETH_DEV_UNUSED)
358 if (port_id >= RTE_MAX_ETHPORTS)
359 return RTE_MAX_ETHPORTS;
365 * Macro to iterate over all valid ports for internal usage.
366 * Note: RTE_ETH_FOREACH_DEV is different because filtering owned ports.
368 #define RTE_ETH_FOREACH_VALID_DEV(port_id) \
369 for (port_id = rte_eth_find_next(0); \
370 port_id < RTE_MAX_ETHPORTS; \
371 port_id = rte_eth_find_next(port_id + 1))
374 rte_eth_find_next_of(uint16_t port_id, const struct rte_device *parent)
376 port_id = rte_eth_find_next(port_id);
377 while (port_id < RTE_MAX_ETHPORTS &&
378 rte_eth_devices[port_id].device != parent)
379 port_id = rte_eth_find_next(port_id + 1);
385 rte_eth_find_next_sibling(uint16_t port_id, uint16_t ref_port_id)
387 RTE_ETH_VALID_PORTID_OR_ERR_RET(ref_port_id, RTE_MAX_ETHPORTS);
388 return rte_eth_find_next_of(port_id,
389 rte_eth_devices[ref_port_id].device);
393 eth_dev_shared_data_prepare(void)
395 const unsigned flags = 0;
396 const struct rte_memzone *mz;
398 rte_spinlock_lock(ð_dev_shared_data_lock);
400 if (eth_dev_shared_data == NULL) {
401 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
402 /* Allocate port data and ownership shared memory. */
403 mz = rte_memzone_reserve(MZ_RTE_ETH_DEV_DATA,
404 sizeof(*eth_dev_shared_data),
405 rte_socket_id(), flags);
407 mz = rte_memzone_lookup(MZ_RTE_ETH_DEV_DATA);
409 rte_panic("Cannot allocate ethdev shared data\n");
411 eth_dev_shared_data = mz->addr;
412 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
413 eth_dev_shared_data->next_owner_id =
414 RTE_ETH_DEV_NO_OWNER + 1;
415 rte_spinlock_init(ð_dev_shared_data->ownership_lock);
416 memset(eth_dev_shared_data->data, 0,
417 sizeof(eth_dev_shared_data->data));
421 rte_spinlock_unlock(ð_dev_shared_data_lock);
425 eth_dev_is_allocated(const struct rte_eth_dev *ethdev)
427 return ethdev->data->name[0] != '\0';
430 static struct rte_eth_dev *
431 eth_dev_allocated(const char *name)
435 RTE_BUILD_BUG_ON(RTE_MAX_ETHPORTS >= UINT16_MAX);
437 for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
438 if (rte_eth_devices[i].data != NULL &&
439 strcmp(rte_eth_devices[i].data->name, name) == 0)
440 return &rte_eth_devices[i];
446 rte_eth_dev_allocated(const char *name)
448 struct rte_eth_dev *ethdev;
450 eth_dev_shared_data_prepare();
452 rte_spinlock_lock(ð_dev_shared_data->ownership_lock);
454 ethdev = eth_dev_allocated(name);
456 rte_spinlock_unlock(ð_dev_shared_data->ownership_lock);
462 eth_dev_find_free_port(void)
466 for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
467 /* Using shared name field to find a free port. */
468 if (eth_dev_shared_data->data[i].name[0] == '\0') {
469 RTE_ASSERT(rte_eth_devices[i].state ==
474 return RTE_MAX_ETHPORTS;
477 static struct rte_eth_dev *
478 eth_dev_get(uint16_t port_id)
480 struct rte_eth_dev *eth_dev = &rte_eth_devices[port_id];
482 eth_dev->data = ð_dev_shared_data->data[port_id];
488 rte_eth_dev_allocate(const char *name)
491 struct rte_eth_dev *eth_dev = NULL;
494 name_len = strnlen(name, RTE_ETH_NAME_MAX_LEN);
496 RTE_ETHDEV_LOG(ERR, "Zero length Ethernet device name\n");
500 if (name_len >= RTE_ETH_NAME_MAX_LEN) {
501 RTE_ETHDEV_LOG(ERR, "Ethernet device name is too long\n");
505 eth_dev_shared_data_prepare();
507 /* Synchronize port creation between primary and secondary threads. */
508 rte_spinlock_lock(ð_dev_shared_data->ownership_lock);
510 if (eth_dev_allocated(name) != NULL) {
512 "Ethernet device with name %s already allocated\n",
517 port_id = eth_dev_find_free_port();
518 if (port_id == RTE_MAX_ETHPORTS) {
520 "Reached maximum number of Ethernet ports\n");
524 eth_dev = eth_dev_get(port_id);
525 strlcpy(eth_dev->data->name, name, sizeof(eth_dev->data->name));
526 eth_dev->data->port_id = port_id;
527 eth_dev->data->mtu = RTE_ETHER_MTU;
528 pthread_mutex_init(ð_dev->data->flow_ops_mutex, NULL);
531 rte_spinlock_unlock(ð_dev_shared_data->ownership_lock);
537 * Attach to a port already registered by the primary process, which
538 * makes sure that the same device would have the same port id both
539 * in the primary and secondary process.
542 rte_eth_dev_attach_secondary(const char *name)
545 struct rte_eth_dev *eth_dev = NULL;
547 eth_dev_shared_data_prepare();
549 /* Synchronize port attachment to primary port creation and release. */
550 rte_spinlock_lock(ð_dev_shared_data->ownership_lock);
552 for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
553 if (strcmp(eth_dev_shared_data->data[i].name, name) == 0)
556 if (i == RTE_MAX_ETHPORTS) {
558 "Device %s is not driven by the primary process\n",
561 eth_dev = eth_dev_get(i);
562 RTE_ASSERT(eth_dev->data->port_id == i);
565 rte_spinlock_unlock(ð_dev_shared_data->ownership_lock);
570 rte_eth_dev_release_port(struct rte_eth_dev *eth_dev)
575 eth_dev_shared_data_prepare();
577 if (eth_dev->state != RTE_ETH_DEV_UNUSED)
578 rte_eth_dev_callback_process(eth_dev,
579 RTE_ETH_EVENT_DESTROY, NULL);
581 rte_spinlock_lock(ð_dev_shared_data->ownership_lock);
583 eth_dev->state = RTE_ETH_DEV_UNUSED;
584 eth_dev->device = NULL;
585 eth_dev->process_private = NULL;
586 eth_dev->intr_handle = NULL;
587 eth_dev->rx_pkt_burst = NULL;
588 eth_dev->tx_pkt_burst = NULL;
589 eth_dev->tx_pkt_prepare = NULL;
590 eth_dev->rx_queue_count = NULL;
591 eth_dev->rx_descriptor_done = NULL;
592 eth_dev->rx_descriptor_status = NULL;
593 eth_dev->tx_descriptor_status = NULL;
594 eth_dev->dev_ops = NULL;
596 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
597 rte_free(eth_dev->data->rx_queues);
598 rte_free(eth_dev->data->tx_queues);
599 rte_free(eth_dev->data->mac_addrs);
600 rte_free(eth_dev->data->hash_mac_addrs);
601 rte_free(eth_dev->data->dev_private);
602 pthread_mutex_destroy(ð_dev->data->flow_ops_mutex);
603 memset(eth_dev->data, 0, sizeof(struct rte_eth_dev_data));
606 rte_spinlock_unlock(ð_dev_shared_data->ownership_lock);
612 rte_eth_dev_is_valid_port(uint16_t port_id)
614 if (port_id >= RTE_MAX_ETHPORTS ||
615 (rte_eth_devices[port_id].state == RTE_ETH_DEV_UNUSED))
622 eth_is_valid_owner_id(uint64_t owner_id)
624 if (owner_id == RTE_ETH_DEV_NO_OWNER ||
625 eth_dev_shared_data->next_owner_id <= owner_id)
631 rte_eth_find_next_owned_by(uint16_t port_id, const uint64_t owner_id)
633 port_id = rte_eth_find_next(port_id);
634 while (port_id < RTE_MAX_ETHPORTS &&
635 rte_eth_devices[port_id].data->owner.id != owner_id)
636 port_id = rte_eth_find_next(port_id + 1);
642 rte_eth_dev_owner_new(uint64_t *owner_id)
644 if (owner_id == NULL) {
645 RTE_ETHDEV_LOG(ERR, "Cannot get new owner ID to NULL\n");
649 eth_dev_shared_data_prepare();
651 rte_spinlock_lock(ð_dev_shared_data->ownership_lock);
653 *owner_id = eth_dev_shared_data->next_owner_id++;
655 rte_spinlock_unlock(ð_dev_shared_data->ownership_lock);
660 eth_dev_owner_set(const uint16_t port_id, const uint64_t old_owner_id,
661 const struct rte_eth_dev_owner *new_owner)
663 struct rte_eth_dev *ethdev = &rte_eth_devices[port_id];
664 struct rte_eth_dev_owner *port_owner;
666 if (port_id >= RTE_MAX_ETHPORTS || !eth_dev_is_allocated(ethdev)) {
667 RTE_ETHDEV_LOG(ERR, "Port id %"PRIu16" is not allocated\n",
672 if (new_owner == NULL) {
674 "Cannot set ethdev port %u owner from NULL owner\n",
679 if (!eth_is_valid_owner_id(new_owner->id) &&
680 !eth_is_valid_owner_id(old_owner_id)) {
682 "Invalid owner old_id=%016"PRIx64" new_id=%016"PRIx64"\n",
683 old_owner_id, new_owner->id);
687 port_owner = &rte_eth_devices[port_id].data->owner;
688 if (port_owner->id != old_owner_id) {
690 "Cannot set owner to port %u already owned by %s_%016"PRIX64"\n",
691 port_id, port_owner->name, port_owner->id);
695 /* can not truncate (same structure) */
696 strlcpy(port_owner->name, new_owner->name, RTE_ETH_MAX_OWNER_NAME_LEN);
698 port_owner->id = new_owner->id;
700 RTE_ETHDEV_LOG(DEBUG, "Port %u owner is %s_%016"PRIx64"\n",
701 port_id, new_owner->name, new_owner->id);
707 rte_eth_dev_owner_set(const uint16_t port_id,
708 const struct rte_eth_dev_owner *owner)
712 eth_dev_shared_data_prepare();
714 rte_spinlock_lock(ð_dev_shared_data->ownership_lock);
716 ret = eth_dev_owner_set(port_id, RTE_ETH_DEV_NO_OWNER, owner);
718 rte_spinlock_unlock(ð_dev_shared_data->ownership_lock);
723 rte_eth_dev_owner_unset(const uint16_t port_id, const uint64_t owner_id)
725 const struct rte_eth_dev_owner new_owner = (struct rte_eth_dev_owner)
726 {.id = RTE_ETH_DEV_NO_OWNER, .name = ""};
729 eth_dev_shared_data_prepare();
731 rte_spinlock_lock(ð_dev_shared_data->ownership_lock);
733 ret = eth_dev_owner_set(port_id, owner_id, &new_owner);
735 rte_spinlock_unlock(ð_dev_shared_data->ownership_lock);
740 rte_eth_dev_owner_delete(const uint64_t owner_id)
745 eth_dev_shared_data_prepare();
747 rte_spinlock_lock(ð_dev_shared_data->ownership_lock);
749 if (eth_is_valid_owner_id(owner_id)) {
750 for (port_id = 0; port_id < RTE_MAX_ETHPORTS; port_id++)
751 if (rte_eth_devices[port_id].data->owner.id == owner_id)
752 memset(&rte_eth_devices[port_id].data->owner, 0,
753 sizeof(struct rte_eth_dev_owner));
754 RTE_ETHDEV_LOG(NOTICE,
755 "All port owners owned by %016"PRIx64" identifier have removed\n",
759 "Invalid owner id=%016"PRIx64"\n",
764 rte_spinlock_unlock(ð_dev_shared_data->ownership_lock);
770 rte_eth_dev_owner_get(const uint16_t port_id, struct rte_eth_dev_owner *owner)
772 struct rte_eth_dev *ethdev;
774 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
775 ethdev = &rte_eth_devices[port_id];
777 if (!eth_dev_is_allocated(ethdev)) {
778 RTE_ETHDEV_LOG(ERR, "Port id %"PRIu16" is not allocated\n",
784 RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u owner to NULL\n",
789 eth_dev_shared_data_prepare();
791 rte_spinlock_lock(ð_dev_shared_data->ownership_lock);
792 rte_memcpy(owner, ðdev->data->owner, sizeof(*owner));
793 rte_spinlock_unlock(ð_dev_shared_data->ownership_lock);
799 rte_eth_dev_socket_id(uint16_t port_id)
801 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -1);
802 return rte_eth_devices[port_id].data->numa_node;
806 rte_eth_dev_get_sec_ctx(uint16_t port_id)
808 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, NULL);
809 return rte_eth_devices[port_id].security_ctx;
813 rte_eth_dev_count_avail(void)
820 RTE_ETH_FOREACH_DEV(p)
827 rte_eth_dev_count_total(void)
829 uint16_t port, count = 0;
831 RTE_ETH_FOREACH_VALID_DEV(port)
838 rte_eth_dev_get_name_by_port(uint16_t port_id, char *name)
842 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
845 RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u name to NULL\n",
850 /* shouldn't check 'rte_eth_devices[i].data',
851 * because it might be overwritten by VDEV PMD */
852 tmp = eth_dev_shared_data->data[port_id].name;
858 rte_eth_dev_get_port_by_name(const char *name, uint16_t *port_id)
863 RTE_ETHDEV_LOG(ERR, "Cannot get port ID from NULL name");
867 if (port_id == NULL) {
869 "Cannot get port ID to NULL for %s\n", name);
873 RTE_ETH_FOREACH_VALID_DEV(pid)
874 if (!strcmp(name, eth_dev_shared_data->data[pid].name)) {
883 eth_err(uint16_t port_id, int ret)
887 if (rte_eth_dev_is_removed(port_id))
893 eth_dev_rx_queue_config(struct rte_eth_dev *dev, uint16_t nb_queues)
895 uint16_t old_nb_queues = dev->data->nb_rx_queues;
899 if (dev->data->rx_queues == NULL && nb_queues != 0) { /* first time configuration */
900 dev->data->rx_queues = rte_zmalloc("ethdev->rx_queues",
901 sizeof(dev->data->rx_queues[0]) * nb_queues,
902 RTE_CACHE_LINE_SIZE);
903 if (dev->data->rx_queues == NULL) {
904 dev->data->nb_rx_queues = 0;
907 } else if (dev->data->rx_queues != NULL && nb_queues != 0) { /* re-configure */
908 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_release, -ENOTSUP);
910 rxq = dev->data->rx_queues;
912 for (i = nb_queues; i < old_nb_queues; i++)
913 (*dev->dev_ops->rx_queue_release)(rxq[i]);
914 rxq = rte_realloc(rxq, sizeof(rxq[0]) * nb_queues,
915 RTE_CACHE_LINE_SIZE);
918 if (nb_queues > old_nb_queues) {
919 uint16_t new_qs = nb_queues - old_nb_queues;
921 memset(rxq + old_nb_queues, 0,
922 sizeof(rxq[0]) * new_qs);
925 dev->data->rx_queues = rxq;
927 } else if (dev->data->rx_queues != NULL && nb_queues == 0) {
928 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_release, -ENOTSUP);
930 rxq = dev->data->rx_queues;
932 for (i = nb_queues; i < old_nb_queues; i++)
933 (*dev->dev_ops->rx_queue_release)(rxq[i]);
935 rte_free(dev->data->rx_queues);
936 dev->data->rx_queues = NULL;
938 dev->data->nb_rx_queues = nb_queues;
943 eth_dev_validate_rx_queue(const struct rte_eth_dev *dev, uint16_t rx_queue_id)
947 if (rx_queue_id >= dev->data->nb_rx_queues) {
948 port_id = dev->data->port_id;
950 "Invalid Rx queue_id=%u of device with port_id=%u\n",
951 rx_queue_id, port_id);
955 if (dev->data->rx_queues[rx_queue_id] == NULL) {
956 port_id = dev->data->port_id;
958 "Queue %u of device with port_id=%u has not been setup\n",
959 rx_queue_id, port_id);
967 eth_dev_validate_tx_queue(const struct rte_eth_dev *dev, uint16_t tx_queue_id)
971 if (tx_queue_id >= dev->data->nb_tx_queues) {
972 port_id = dev->data->port_id;
974 "Invalid Tx queue_id=%u of device with port_id=%u\n",
975 tx_queue_id, port_id);
979 if (dev->data->tx_queues[tx_queue_id] == NULL) {
980 port_id = dev->data->port_id;
982 "Queue %u of device with port_id=%u has not been setup\n",
983 tx_queue_id, port_id);
991 rte_eth_dev_rx_queue_start(uint16_t port_id, uint16_t rx_queue_id)
993 struct rte_eth_dev *dev;
996 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
997 dev = &rte_eth_devices[port_id];
999 if (!dev->data->dev_started) {
1001 "Port %u must be started before start any queue\n",
1006 ret = eth_dev_validate_rx_queue(dev, rx_queue_id);
1010 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_start, -ENOTSUP);
1012 if (rte_eth_dev_is_rx_hairpin_queue(dev, rx_queue_id)) {
1013 RTE_ETHDEV_LOG(INFO,
1014 "Can't start Rx hairpin queue %"PRIu16" of device with port_id=%"PRIu16"\n",
1015 rx_queue_id, port_id);
1019 if (dev->data->rx_queue_state[rx_queue_id] != RTE_ETH_QUEUE_STATE_STOPPED) {
1020 RTE_ETHDEV_LOG(INFO,
1021 "Queue %"PRIu16" of device with port_id=%"PRIu16" already started\n",
1022 rx_queue_id, port_id);
1026 return eth_err(port_id, dev->dev_ops->rx_queue_start(dev, rx_queue_id));
1030 rte_eth_dev_rx_queue_stop(uint16_t port_id, uint16_t rx_queue_id)
1032 struct rte_eth_dev *dev;
1035 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1036 dev = &rte_eth_devices[port_id];
1038 ret = eth_dev_validate_rx_queue(dev, rx_queue_id);
1042 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_stop, -ENOTSUP);
1044 if (rte_eth_dev_is_rx_hairpin_queue(dev, rx_queue_id)) {
1045 RTE_ETHDEV_LOG(INFO,
1046 "Can't stop Rx hairpin queue %"PRIu16" of device with port_id=%"PRIu16"\n",
1047 rx_queue_id, port_id);
1051 if (dev->data->rx_queue_state[rx_queue_id] == RTE_ETH_QUEUE_STATE_STOPPED) {
1052 RTE_ETHDEV_LOG(INFO,
1053 "Queue %"PRIu16" of device with port_id=%"PRIu16" already stopped\n",
1054 rx_queue_id, port_id);
1058 return eth_err(port_id, dev->dev_ops->rx_queue_stop(dev, rx_queue_id));
1062 rte_eth_dev_tx_queue_start(uint16_t port_id, uint16_t tx_queue_id)
1064 struct rte_eth_dev *dev;
1067 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1068 dev = &rte_eth_devices[port_id];
1070 if (!dev->data->dev_started) {
1072 "Port %u must be started before start any queue\n",
1077 ret = eth_dev_validate_tx_queue(dev, tx_queue_id);
1081 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_start, -ENOTSUP);
1083 if (rte_eth_dev_is_tx_hairpin_queue(dev, tx_queue_id)) {
1084 RTE_ETHDEV_LOG(INFO,
1085 "Can't start Tx hairpin queue %"PRIu16" of device with port_id=%"PRIu16"\n",
1086 tx_queue_id, port_id);
1090 if (dev->data->tx_queue_state[tx_queue_id] != RTE_ETH_QUEUE_STATE_STOPPED) {
1091 RTE_ETHDEV_LOG(INFO,
1092 "Queue %"PRIu16" of device with port_id=%"PRIu16" already started\n",
1093 tx_queue_id, port_id);
1097 return eth_err(port_id, dev->dev_ops->tx_queue_start(dev, tx_queue_id));
1101 rte_eth_dev_tx_queue_stop(uint16_t port_id, uint16_t tx_queue_id)
1103 struct rte_eth_dev *dev;
1106 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1107 dev = &rte_eth_devices[port_id];
1109 ret = eth_dev_validate_tx_queue(dev, tx_queue_id);
1113 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_stop, -ENOTSUP);
1115 if (rte_eth_dev_is_tx_hairpin_queue(dev, tx_queue_id)) {
1116 RTE_ETHDEV_LOG(INFO,
1117 "Can't stop Tx hairpin queue %"PRIu16" of device with port_id=%"PRIu16"\n",
1118 tx_queue_id, port_id);
1122 if (dev->data->tx_queue_state[tx_queue_id] == RTE_ETH_QUEUE_STATE_STOPPED) {
1123 RTE_ETHDEV_LOG(INFO,
1124 "Queue %"PRIu16" of device with port_id=%"PRIu16" already stopped\n",
1125 tx_queue_id, port_id);
1129 return eth_err(port_id, dev->dev_ops->tx_queue_stop(dev, tx_queue_id));
1133 eth_dev_tx_queue_config(struct rte_eth_dev *dev, uint16_t nb_queues)
1135 uint16_t old_nb_queues = dev->data->nb_tx_queues;
1139 if (dev->data->tx_queues == NULL && nb_queues != 0) { /* first time configuration */
1140 dev->data->tx_queues = rte_zmalloc("ethdev->tx_queues",
1141 sizeof(dev->data->tx_queues[0]) * nb_queues,
1142 RTE_CACHE_LINE_SIZE);
1143 if (dev->data->tx_queues == NULL) {
1144 dev->data->nb_tx_queues = 0;
1147 } else if (dev->data->tx_queues != NULL && nb_queues != 0) { /* re-configure */
1148 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_release, -ENOTSUP);
1150 txq = dev->data->tx_queues;
1152 for (i = nb_queues; i < old_nb_queues; i++)
1153 (*dev->dev_ops->tx_queue_release)(txq[i]);
1154 txq = rte_realloc(txq, sizeof(txq[0]) * nb_queues,
1155 RTE_CACHE_LINE_SIZE);
1158 if (nb_queues > old_nb_queues) {
1159 uint16_t new_qs = nb_queues - old_nb_queues;
1161 memset(txq + old_nb_queues, 0,
1162 sizeof(txq[0]) * new_qs);
1165 dev->data->tx_queues = txq;
1167 } else if (dev->data->tx_queues != NULL && nb_queues == 0) {
1168 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_release, -ENOTSUP);
1170 txq = dev->data->tx_queues;
1172 for (i = nb_queues; i < old_nb_queues; i++)
1173 (*dev->dev_ops->tx_queue_release)(txq[i]);
1175 rte_free(dev->data->tx_queues);
1176 dev->data->tx_queues = NULL;
1178 dev->data->nb_tx_queues = nb_queues;
1183 rte_eth_speed_bitflag(uint32_t speed, int duplex)
1186 case ETH_SPEED_NUM_10M:
1187 return duplex ? ETH_LINK_SPEED_10M : ETH_LINK_SPEED_10M_HD;
1188 case ETH_SPEED_NUM_100M:
1189 return duplex ? ETH_LINK_SPEED_100M : ETH_LINK_SPEED_100M_HD;
1190 case ETH_SPEED_NUM_1G:
1191 return ETH_LINK_SPEED_1G;
1192 case ETH_SPEED_NUM_2_5G:
1193 return ETH_LINK_SPEED_2_5G;
1194 case ETH_SPEED_NUM_5G:
1195 return ETH_LINK_SPEED_5G;
1196 case ETH_SPEED_NUM_10G:
1197 return ETH_LINK_SPEED_10G;
1198 case ETH_SPEED_NUM_20G:
1199 return ETH_LINK_SPEED_20G;
1200 case ETH_SPEED_NUM_25G:
1201 return ETH_LINK_SPEED_25G;
1202 case ETH_SPEED_NUM_40G:
1203 return ETH_LINK_SPEED_40G;
1204 case ETH_SPEED_NUM_50G:
1205 return ETH_LINK_SPEED_50G;
1206 case ETH_SPEED_NUM_56G:
1207 return ETH_LINK_SPEED_56G;
1208 case ETH_SPEED_NUM_100G:
1209 return ETH_LINK_SPEED_100G;
1210 case ETH_SPEED_NUM_200G:
1211 return ETH_LINK_SPEED_200G;
1218 rte_eth_dev_rx_offload_name(uint64_t offload)
1220 const char *name = "UNKNOWN";
1223 for (i = 0; i < RTE_DIM(eth_dev_rx_offload_names); ++i) {
1224 if (offload == eth_dev_rx_offload_names[i].offload) {
1225 name = eth_dev_rx_offload_names[i].name;
1234 rte_eth_dev_tx_offload_name(uint64_t offload)
1236 const char *name = "UNKNOWN";
1239 for (i = 0; i < RTE_DIM(eth_dev_tx_offload_names); ++i) {
1240 if (offload == eth_dev_tx_offload_names[i].offload) {
1241 name = eth_dev_tx_offload_names[i].name;
1250 eth_dev_check_lro_pkt_size(uint16_t port_id, uint32_t config_size,
1251 uint32_t max_rx_pkt_len, uint32_t dev_info_size)
1255 if (dev_info_size == 0) {
1256 if (config_size != max_rx_pkt_len) {
1257 RTE_ETHDEV_LOG(ERR, "Ethdev port_id=%d max_lro_pkt_size"
1258 " %u != %u is not allowed\n",
1259 port_id, config_size, max_rx_pkt_len);
1262 } else if (config_size > dev_info_size) {
1263 RTE_ETHDEV_LOG(ERR, "Ethdev port_id=%d max_lro_pkt_size %u "
1264 "> max allowed value %u\n", port_id, config_size,
1267 } else if (config_size < RTE_ETHER_MIN_LEN) {
1268 RTE_ETHDEV_LOG(ERR, "Ethdev port_id=%d max_lro_pkt_size %u "
1269 "< min allowed value %u\n", port_id, config_size,
1270 (unsigned int)RTE_ETHER_MIN_LEN);
1277 * Validate offloads that are requested through rte_eth_dev_configure against
1278 * the offloads successfully set by the ethernet device.
1281 * The port identifier of the Ethernet device.
1282 * @param req_offloads
1283 * The offloads that have been requested through `rte_eth_dev_configure`.
1284 * @param set_offloads
1285 * The offloads successfully set by the ethernet device.
1286 * @param offload_type
1287 * The offload type i.e. Rx/Tx string.
1288 * @param offload_name
1289 * The function that prints the offload name.
1291 * - (0) if validation successful.
1292 * - (-EINVAL) if requested offload has been silently disabled.
1296 eth_dev_validate_offloads(uint16_t port_id, uint64_t req_offloads,
1297 uint64_t set_offloads, const char *offload_type,
1298 const char *(*offload_name)(uint64_t))
1300 uint64_t offloads_diff = req_offloads ^ set_offloads;
1304 while (offloads_diff != 0) {
1305 /* Check if any offload is requested but not enabled. */
1306 offload = 1ULL << __builtin_ctzll(offloads_diff);
1307 if (offload & req_offloads) {
1309 "Port %u failed to enable %s offload %s\n",
1310 port_id, offload_type, offload_name(offload));
1314 /* Check if offload couldn't be disabled. */
1315 if (offload & set_offloads) {
1316 RTE_ETHDEV_LOG(DEBUG,
1317 "Port %u %s offload %s is not requested but enabled\n",
1318 port_id, offload_type, offload_name(offload));
1321 offloads_diff &= ~offload;
1328 rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q,
1329 const struct rte_eth_conf *dev_conf)
1331 struct rte_eth_dev *dev;
1332 struct rte_eth_dev_info dev_info;
1333 struct rte_eth_conf orig_conf;
1334 uint16_t overhead_len;
1339 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1340 dev = &rte_eth_devices[port_id];
1342 if (dev_conf == NULL) {
1344 "Cannot configure ethdev port %u from NULL config\n",
1349 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_configure, -ENOTSUP);
1351 if (dev->data->dev_started) {
1353 "Port %u must be stopped to allow configuration\n",
1359 * Ensure that "dev_configured" is always 0 each time prepare to do
1360 * dev_configure() to avoid any non-anticipated behaviour.
1361 * And set to 1 when dev_configure() is executed successfully.
1363 dev->data->dev_configured = 0;
1365 /* Store original config, as rollback required on failure */
1366 memcpy(&orig_conf, &dev->data->dev_conf, sizeof(dev->data->dev_conf));
1369 * Copy the dev_conf parameter into the dev structure.
1370 * rte_eth_dev_info_get() requires dev_conf, copy it before dev_info get
1372 if (dev_conf != &dev->data->dev_conf)
1373 memcpy(&dev->data->dev_conf, dev_conf,
1374 sizeof(dev->data->dev_conf));
1376 /* Backup mtu for rollback */
1377 old_mtu = dev->data->mtu;
1379 ret = rte_eth_dev_info_get(port_id, &dev_info);
1383 /* Get the real Ethernet overhead length */
1384 if (dev_info.max_mtu != UINT16_MAX &&
1385 dev_info.max_rx_pktlen > dev_info.max_mtu)
1386 overhead_len = dev_info.max_rx_pktlen - dev_info.max_mtu;
1388 overhead_len = RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN;
1390 /* If number of queues specified by application for both Rx and Tx is
1391 * zero, use driver preferred values. This cannot be done individually
1392 * as it is valid for either Tx or Rx (but not both) to be zero.
1393 * If driver does not provide any preferred valued, fall back on
1396 if (nb_rx_q == 0 && nb_tx_q == 0) {
1397 nb_rx_q = dev_info.default_rxportconf.nb_queues;
1399 nb_rx_q = RTE_ETH_DEV_FALLBACK_RX_NBQUEUES;
1400 nb_tx_q = dev_info.default_txportconf.nb_queues;
1402 nb_tx_q = RTE_ETH_DEV_FALLBACK_TX_NBQUEUES;
1405 if (nb_rx_q > RTE_MAX_QUEUES_PER_PORT) {
1407 "Number of RX queues requested (%u) is greater than max supported(%d)\n",
1408 nb_rx_q, RTE_MAX_QUEUES_PER_PORT);
1413 if (nb_tx_q > RTE_MAX_QUEUES_PER_PORT) {
1415 "Number of TX queues requested (%u) is greater than max supported(%d)\n",
1416 nb_tx_q, RTE_MAX_QUEUES_PER_PORT);
1422 * Check that the numbers of RX and TX queues are not greater
1423 * than the maximum number of RX and TX queues supported by the
1424 * configured device.
1426 if (nb_rx_q > dev_info.max_rx_queues) {
1427 RTE_ETHDEV_LOG(ERR, "Ethdev port_id=%u nb_rx_queues=%u > %u\n",
1428 port_id, nb_rx_q, dev_info.max_rx_queues);
1433 if (nb_tx_q > dev_info.max_tx_queues) {
1434 RTE_ETHDEV_LOG(ERR, "Ethdev port_id=%u nb_tx_queues=%u > %u\n",
1435 port_id, nb_tx_q, dev_info.max_tx_queues);
1440 /* Check that the device supports requested interrupts */
1441 if ((dev_conf->intr_conf.lsc == 1) &&
1442 (!(dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC))) {
1443 RTE_ETHDEV_LOG(ERR, "Driver %s does not support lsc\n",
1444 dev->device->driver->name);
1448 if ((dev_conf->intr_conf.rmv == 1) &&
1449 (!(dev->data->dev_flags & RTE_ETH_DEV_INTR_RMV))) {
1450 RTE_ETHDEV_LOG(ERR, "Driver %s does not support rmv\n",
1451 dev->device->driver->name);
1457 * If jumbo frames are enabled, check that the maximum RX packet
1458 * length is supported by the configured device.
1460 if (dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_JUMBO_FRAME) {
1461 if (dev_conf->rxmode.max_rx_pkt_len > dev_info.max_rx_pktlen) {
1463 "Ethdev port_id=%u max_rx_pkt_len %u > max valid value %u\n",
1464 port_id, dev_conf->rxmode.max_rx_pkt_len,
1465 dev_info.max_rx_pktlen);
1468 } else if (dev_conf->rxmode.max_rx_pkt_len < RTE_ETHER_MIN_LEN) {
1470 "Ethdev port_id=%u max_rx_pkt_len %u < min valid value %u\n",
1471 port_id, dev_conf->rxmode.max_rx_pkt_len,
1472 (unsigned int)RTE_ETHER_MIN_LEN);
1477 /* Scale the MTU size to adapt max_rx_pkt_len */
1478 dev->data->mtu = dev->data->dev_conf.rxmode.max_rx_pkt_len -
1481 uint16_t pktlen = dev_conf->rxmode.max_rx_pkt_len;
1482 if (pktlen < RTE_ETHER_MIN_MTU + overhead_len ||
1483 pktlen > RTE_ETHER_MTU + overhead_len)
1484 /* Use default value */
1485 dev->data->dev_conf.rxmode.max_rx_pkt_len =
1486 RTE_ETHER_MTU + overhead_len;
1490 * If LRO is enabled, check that the maximum aggregated packet
1491 * size is supported by the configured device.
1493 if (dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_TCP_LRO) {
1494 if (dev_conf->rxmode.max_lro_pkt_size == 0)
1495 dev->data->dev_conf.rxmode.max_lro_pkt_size =
1496 dev->data->dev_conf.rxmode.max_rx_pkt_len;
1497 ret = eth_dev_check_lro_pkt_size(port_id,
1498 dev->data->dev_conf.rxmode.max_lro_pkt_size,
1499 dev->data->dev_conf.rxmode.max_rx_pkt_len,
1500 dev_info.max_lro_pkt_size);
1505 /* Any requested offloading must be within its device capabilities */
1506 if ((dev_conf->rxmode.offloads & dev_info.rx_offload_capa) !=
1507 dev_conf->rxmode.offloads) {
1509 "Ethdev port_id=%u requested Rx offloads 0x%"PRIx64" doesn't match Rx offloads "
1510 "capabilities 0x%"PRIx64" in %s()\n",
1511 port_id, dev_conf->rxmode.offloads,
1512 dev_info.rx_offload_capa,
1517 if ((dev_conf->txmode.offloads & dev_info.tx_offload_capa) !=
1518 dev_conf->txmode.offloads) {
1520 "Ethdev port_id=%u requested Tx offloads 0x%"PRIx64" doesn't match Tx offloads "
1521 "capabilities 0x%"PRIx64" in %s()\n",
1522 port_id, dev_conf->txmode.offloads,
1523 dev_info.tx_offload_capa,
1529 dev->data->dev_conf.rx_adv_conf.rss_conf.rss_hf =
1530 rte_eth_rss_hf_refine(dev_conf->rx_adv_conf.rss_conf.rss_hf);
1532 /* Check that device supports requested rss hash functions. */
1533 if ((dev_info.flow_type_rss_offloads |
1534 dev_conf->rx_adv_conf.rss_conf.rss_hf) !=
1535 dev_info.flow_type_rss_offloads) {
1537 "Ethdev port_id=%u invalid rss_hf: 0x%"PRIx64", valid value: 0x%"PRIx64"\n",
1538 port_id, dev_conf->rx_adv_conf.rss_conf.rss_hf,
1539 dev_info.flow_type_rss_offloads);
1544 /* Check if Rx RSS distribution is disabled but RSS hash is enabled. */
1545 if (((dev_conf->rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG) == 0) &&
1546 (dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_RSS_HASH)) {
1548 "Ethdev port_id=%u config invalid Rx mq_mode without RSS but %s offload is requested\n",
1550 rte_eth_dev_rx_offload_name(DEV_RX_OFFLOAD_RSS_HASH));
1556 * Setup new number of RX/TX queues and reconfigure device.
1558 diag = eth_dev_rx_queue_config(dev, nb_rx_q);
1561 "Port%u eth_dev_rx_queue_config = %d\n",
1567 diag = eth_dev_tx_queue_config(dev, nb_tx_q);
1570 "Port%u eth_dev_tx_queue_config = %d\n",
1572 eth_dev_rx_queue_config(dev, 0);
1577 diag = (*dev->dev_ops->dev_configure)(dev);
1579 RTE_ETHDEV_LOG(ERR, "Port%u dev_configure = %d\n",
1581 ret = eth_err(port_id, diag);
1585 /* Initialize Rx profiling if enabled at compilation time. */
1586 diag = __rte_eth_dev_profile_init(port_id, dev);
1588 RTE_ETHDEV_LOG(ERR, "Port%u __rte_eth_dev_profile_init = %d\n",
1590 ret = eth_err(port_id, diag);
1594 /* Validate Rx offloads. */
1595 diag = eth_dev_validate_offloads(port_id,
1596 dev_conf->rxmode.offloads,
1597 dev->data->dev_conf.rxmode.offloads, "Rx",
1598 rte_eth_dev_rx_offload_name);
1604 /* Validate Tx offloads. */
1605 diag = eth_dev_validate_offloads(port_id,
1606 dev_conf->txmode.offloads,
1607 dev->data->dev_conf.txmode.offloads, "Tx",
1608 rte_eth_dev_tx_offload_name);
1614 dev->data->dev_configured = 1;
1615 rte_ethdev_trace_configure(port_id, nb_rx_q, nb_tx_q, dev_conf, 0);
1618 eth_dev_rx_queue_config(dev, 0);
1619 eth_dev_tx_queue_config(dev, 0);
1621 memcpy(&dev->data->dev_conf, &orig_conf, sizeof(dev->data->dev_conf));
1622 if (old_mtu != dev->data->mtu)
1623 dev->data->mtu = old_mtu;
1625 rte_ethdev_trace_configure(port_id, nb_rx_q, nb_tx_q, dev_conf, ret);
1630 rte_eth_dev_internal_reset(struct rte_eth_dev *dev)
1632 if (dev->data->dev_started) {
1633 RTE_ETHDEV_LOG(ERR, "Port %u must be stopped to allow reset\n",
1634 dev->data->port_id);
1638 eth_dev_rx_queue_config(dev, 0);
1639 eth_dev_tx_queue_config(dev, 0);
1641 memset(&dev->data->dev_conf, 0, sizeof(dev->data->dev_conf));
1645 eth_dev_mac_restore(struct rte_eth_dev *dev,
1646 struct rte_eth_dev_info *dev_info)
1648 struct rte_ether_addr *addr;
1653 /* replay MAC address configuration including default MAC */
1654 addr = &dev->data->mac_addrs[0];
1655 if (*dev->dev_ops->mac_addr_set != NULL)
1656 (*dev->dev_ops->mac_addr_set)(dev, addr);
1657 else if (*dev->dev_ops->mac_addr_add != NULL)
1658 (*dev->dev_ops->mac_addr_add)(dev, addr, 0, pool);
1660 if (*dev->dev_ops->mac_addr_add != NULL) {
1661 for (i = 1; i < dev_info->max_mac_addrs; i++) {
1662 addr = &dev->data->mac_addrs[i];
1664 /* skip zero address */
1665 if (rte_is_zero_ether_addr(addr))
1669 pool_mask = dev->data->mac_pool_sel[i];
1672 if (pool_mask & 1ULL)
1673 (*dev->dev_ops->mac_addr_add)(dev,
1677 } while (pool_mask);
1683 eth_dev_config_restore(struct rte_eth_dev *dev,
1684 struct rte_eth_dev_info *dev_info, uint16_t port_id)
1688 if (!(*dev_info->dev_flags & RTE_ETH_DEV_NOLIVE_MAC_ADDR))
1689 eth_dev_mac_restore(dev, dev_info);
1691 /* replay promiscuous configuration */
1693 * use callbacks directly since we don't need port_id check and
1694 * would like to bypass the same value set
1696 if (rte_eth_promiscuous_get(port_id) == 1 &&
1697 *dev->dev_ops->promiscuous_enable != NULL) {
1698 ret = eth_err(port_id,
1699 (*dev->dev_ops->promiscuous_enable)(dev));
1700 if (ret != 0 && ret != -ENOTSUP) {
1702 "Failed to enable promiscuous mode for device (port %u): %s\n",
1703 port_id, rte_strerror(-ret));
1706 } else if (rte_eth_promiscuous_get(port_id) == 0 &&
1707 *dev->dev_ops->promiscuous_disable != NULL) {
1708 ret = eth_err(port_id,
1709 (*dev->dev_ops->promiscuous_disable)(dev));
1710 if (ret != 0 && ret != -ENOTSUP) {
1712 "Failed to disable promiscuous mode for device (port %u): %s\n",
1713 port_id, rte_strerror(-ret));
1718 /* replay all multicast configuration */
1720 * use callbacks directly since we don't need port_id check and
1721 * would like to bypass the same value set
1723 if (rte_eth_allmulticast_get(port_id) == 1 &&
1724 *dev->dev_ops->allmulticast_enable != NULL) {
1725 ret = eth_err(port_id,
1726 (*dev->dev_ops->allmulticast_enable)(dev));
1727 if (ret != 0 && ret != -ENOTSUP) {
1729 "Failed to enable allmulticast mode for device (port %u): %s\n",
1730 port_id, rte_strerror(-ret));
1733 } else if (rte_eth_allmulticast_get(port_id) == 0 &&
1734 *dev->dev_ops->allmulticast_disable != NULL) {
1735 ret = eth_err(port_id,
1736 (*dev->dev_ops->allmulticast_disable)(dev));
1737 if (ret != 0 && ret != -ENOTSUP) {
1739 "Failed to disable allmulticast mode for device (port %u): %s\n",
1740 port_id, rte_strerror(-ret));
1749 rte_eth_dev_start(uint16_t port_id)
1751 struct rte_eth_dev *dev;
1752 struct rte_eth_dev_info dev_info;
1756 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1757 dev = &rte_eth_devices[port_id];
1759 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_start, -ENOTSUP);
1761 if (dev->data->dev_configured == 0) {
1762 RTE_ETHDEV_LOG(INFO,
1763 "Device with port_id=%"PRIu16" is not configured.\n",
1768 if (dev->data->dev_started != 0) {
1769 RTE_ETHDEV_LOG(INFO,
1770 "Device with port_id=%"PRIu16" already started\n",
1775 ret = rte_eth_dev_info_get(port_id, &dev_info);
1779 /* Lets restore MAC now if device does not support live change */
1780 if (*dev_info.dev_flags & RTE_ETH_DEV_NOLIVE_MAC_ADDR)
1781 eth_dev_mac_restore(dev, &dev_info);
1783 diag = (*dev->dev_ops->dev_start)(dev);
1785 dev->data->dev_started = 1;
1787 return eth_err(port_id, diag);
1789 ret = eth_dev_config_restore(dev, &dev_info, port_id);
1792 "Error during restoring configuration for device (port %u): %s\n",
1793 port_id, rte_strerror(-ret));
1794 ret_stop = rte_eth_dev_stop(port_id);
1795 if (ret_stop != 0) {
1797 "Failed to stop device (port %u): %s\n",
1798 port_id, rte_strerror(-ret_stop));
1804 if (dev->data->dev_conf.intr_conf.lsc == 0) {
1805 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->link_update, -ENOTSUP);
1806 (*dev->dev_ops->link_update)(dev, 0);
1809 rte_ethdev_trace_start(port_id);
1814 rte_eth_dev_stop(uint16_t port_id)
1816 struct rte_eth_dev *dev;
1819 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1820 dev = &rte_eth_devices[port_id];
1822 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_stop, -ENOTSUP);
1824 if (dev->data->dev_started == 0) {
1825 RTE_ETHDEV_LOG(INFO,
1826 "Device with port_id=%"PRIu16" already stopped\n",
1831 dev->data->dev_started = 0;
1832 ret = (*dev->dev_ops->dev_stop)(dev);
1833 rte_ethdev_trace_stop(port_id, ret);
1839 rte_eth_dev_set_link_up(uint16_t port_id)
1841 struct rte_eth_dev *dev;
1843 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1844 dev = &rte_eth_devices[port_id];
1846 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_set_link_up, -ENOTSUP);
1847 return eth_err(port_id, (*dev->dev_ops->dev_set_link_up)(dev));
1851 rte_eth_dev_set_link_down(uint16_t port_id)
1853 struct rte_eth_dev *dev;
1855 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1856 dev = &rte_eth_devices[port_id];
1858 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_set_link_down, -ENOTSUP);
1859 return eth_err(port_id, (*dev->dev_ops->dev_set_link_down)(dev));
1863 rte_eth_dev_close(uint16_t port_id)
1865 struct rte_eth_dev *dev;
1866 int firsterr, binerr;
1867 int *lasterr = &firsterr;
1869 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1870 dev = &rte_eth_devices[port_id];
1872 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_close, -ENOTSUP);
1873 *lasterr = (*dev->dev_ops->dev_close)(dev);
1877 rte_ethdev_trace_close(port_id);
1878 *lasterr = rte_eth_dev_release_port(dev);
1884 rte_eth_dev_reset(uint16_t port_id)
1886 struct rte_eth_dev *dev;
1889 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
1890 dev = &rte_eth_devices[port_id];
1892 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_reset, -ENOTSUP);
1894 ret = rte_eth_dev_stop(port_id);
1897 "Failed to stop device (port %u) before reset: %s - ignore\n",
1898 port_id, rte_strerror(-ret));
1900 ret = dev->dev_ops->dev_reset(dev);
1902 return eth_err(port_id, ret);
1906 rte_eth_dev_is_removed(uint16_t port_id)
1908 struct rte_eth_dev *dev;
1911 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, 0);
1912 dev = &rte_eth_devices[port_id];
1914 if (dev->state == RTE_ETH_DEV_REMOVED)
1917 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->is_removed, 0);
1919 ret = dev->dev_ops->is_removed(dev);
1921 /* Device is physically removed. */
1922 dev->state = RTE_ETH_DEV_REMOVED;
1928 rte_eth_rx_queue_check_split(const struct rte_eth_rxseg_split *rx_seg,
1929 uint16_t n_seg, uint32_t *mbp_buf_size,
1930 const struct rte_eth_dev_info *dev_info)
1932 const struct rte_eth_rxseg_capa *seg_capa = &dev_info->rx_seg_capa;
1933 struct rte_mempool *mp_first;
1934 uint32_t offset_mask;
1937 if (n_seg > seg_capa->max_nseg) {
1939 "Requested Rx segments %u exceed supported %u\n",
1940 n_seg, seg_capa->max_nseg);
1944 * Check the sizes and offsets against buffer sizes
1945 * for each segment specified in extended configuration.
1947 mp_first = rx_seg[0].mp;
1948 offset_mask = (1u << seg_capa->offset_align_log2) - 1;
1949 for (seg_idx = 0; seg_idx < n_seg; seg_idx++) {
1950 struct rte_mempool *mpl = rx_seg[seg_idx].mp;
1951 uint32_t length = rx_seg[seg_idx].length;
1952 uint32_t offset = rx_seg[seg_idx].offset;
1955 RTE_ETHDEV_LOG(ERR, "null mempool pointer\n");
1958 if (seg_idx != 0 && mp_first != mpl &&
1959 seg_capa->multi_pools == 0) {
1960 RTE_ETHDEV_LOG(ERR, "Receiving to multiple pools is not supported\n");
1964 if (seg_capa->offset_allowed == 0) {
1965 RTE_ETHDEV_LOG(ERR, "Rx segmentation with offset is not supported\n");
1968 if (offset & offset_mask) {
1969 RTE_ETHDEV_LOG(ERR, "Rx segmentation invalid offset alignment %u, %u\n",
1971 seg_capa->offset_align_log2);
1975 if (mpl->private_data_size <
1976 sizeof(struct rte_pktmbuf_pool_private)) {
1978 "%s private_data_size %u < %u\n",
1979 mpl->name, mpl->private_data_size,
1980 (unsigned int)sizeof
1981 (struct rte_pktmbuf_pool_private));
1984 offset += seg_idx != 0 ? 0 : RTE_PKTMBUF_HEADROOM;
1985 *mbp_buf_size = rte_pktmbuf_data_room_size(mpl);
1986 length = length != 0 ? length : *mbp_buf_size;
1987 if (*mbp_buf_size < length + offset) {
1989 "%s mbuf_data_room_size %u < %u (segment length=%u + segment offset=%u)\n",
1990 mpl->name, *mbp_buf_size,
1991 length + offset, length, offset);
1999 rte_eth_rx_queue_setup(uint16_t port_id, uint16_t rx_queue_id,
2000 uint16_t nb_rx_desc, unsigned int socket_id,
2001 const struct rte_eth_rxconf *rx_conf,
2002 struct rte_mempool *mp)
2005 uint32_t mbp_buf_size;
2006 struct rte_eth_dev *dev;
2007 struct rte_eth_dev_info dev_info;
2008 struct rte_eth_rxconf local_conf;
2011 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2012 dev = &rte_eth_devices[port_id];
2014 if (rx_queue_id >= dev->data->nb_rx_queues) {
2015 RTE_ETHDEV_LOG(ERR, "Invalid RX queue_id=%u\n", rx_queue_id);
2019 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_setup, -ENOTSUP);
2021 ret = rte_eth_dev_info_get(port_id, &dev_info);
2026 /* Single pool configuration check. */
2027 if (rx_conf != NULL && rx_conf->rx_nseg != 0) {
2029 "Ambiguous segment configuration\n");
2033 * Check the size of the mbuf data buffer, this value
2034 * must be provided in the private data of the memory pool.
2035 * First check that the memory pool(s) has a valid private data.
2037 if (mp->private_data_size <
2038 sizeof(struct rte_pktmbuf_pool_private)) {
2039 RTE_ETHDEV_LOG(ERR, "%s private_data_size %u < %u\n",
2040 mp->name, mp->private_data_size,
2042 sizeof(struct rte_pktmbuf_pool_private));
2045 mbp_buf_size = rte_pktmbuf_data_room_size(mp);
2046 if (mbp_buf_size < dev_info.min_rx_bufsize +
2047 RTE_PKTMBUF_HEADROOM) {
2049 "%s mbuf_data_room_size %u < %u (RTE_PKTMBUF_HEADROOM=%u + min_rx_bufsize(dev)=%u)\n",
2050 mp->name, mbp_buf_size,
2051 RTE_PKTMBUF_HEADROOM +
2052 dev_info.min_rx_bufsize,
2053 RTE_PKTMBUF_HEADROOM,
2054 dev_info.min_rx_bufsize);
2058 const struct rte_eth_rxseg_split *rx_seg;
2061 /* Extended multi-segment configuration check. */
2062 if (rx_conf == NULL || rx_conf->rx_seg == NULL || rx_conf->rx_nseg == 0) {
2064 "Memory pool is null and no extended configuration provided\n");
2068 rx_seg = (const struct rte_eth_rxseg_split *)rx_conf->rx_seg;
2069 n_seg = rx_conf->rx_nseg;
2071 if (rx_conf->offloads & RTE_ETH_RX_OFFLOAD_BUFFER_SPLIT) {
2072 ret = rte_eth_rx_queue_check_split(rx_seg, n_seg,
2078 RTE_ETHDEV_LOG(ERR, "No Rx segmentation offload configured\n");
2083 /* Use default specified by driver, if nb_rx_desc is zero */
2084 if (nb_rx_desc == 0) {
2085 nb_rx_desc = dev_info.default_rxportconf.ring_size;
2086 /* If driver default is also zero, fall back on EAL default */
2087 if (nb_rx_desc == 0)
2088 nb_rx_desc = RTE_ETH_DEV_FALLBACK_RX_RINGSIZE;
2091 if (nb_rx_desc > dev_info.rx_desc_lim.nb_max ||
2092 nb_rx_desc < dev_info.rx_desc_lim.nb_min ||
2093 nb_rx_desc % dev_info.rx_desc_lim.nb_align != 0) {
2096 "Invalid value for nb_rx_desc(=%hu), should be: <= %hu, >= %hu, and a product of %hu\n",
2097 nb_rx_desc, dev_info.rx_desc_lim.nb_max,
2098 dev_info.rx_desc_lim.nb_min,
2099 dev_info.rx_desc_lim.nb_align);
2103 if (dev->data->dev_started &&
2104 !(dev_info.dev_capa &
2105 RTE_ETH_DEV_CAPA_RUNTIME_RX_QUEUE_SETUP))
2108 if (dev->data->dev_started &&
2109 (dev->data->rx_queue_state[rx_queue_id] !=
2110 RTE_ETH_QUEUE_STATE_STOPPED))
2113 rxq = dev->data->rx_queues;
2114 if (rxq[rx_queue_id]) {
2115 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_release,
2117 (*dev->dev_ops->rx_queue_release)(rxq[rx_queue_id]);
2118 rxq[rx_queue_id] = NULL;
2121 if (rx_conf == NULL)
2122 rx_conf = &dev_info.default_rxconf;
2124 local_conf = *rx_conf;
2127 * If an offloading has already been enabled in
2128 * rte_eth_dev_configure(), it has been enabled on all queues,
2129 * so there is no need to enable it in this queue again.
2130 * The local_conf.offloads input to underlying PMD only carries
2131 * those offloadings which are only enabled on this queue and
2132 * not enabled on all queues.
2134 local_conf.offloads &= ~dev->data->dev_conf.rxmode.offloads;
2137 * New added offloadings for this queue are those not enabled in
2138 * rte_eth_dev_configure() and they must be per-queue type.
2139 * A pure per-port offloading can't be enabled on a queue while
2140 * disabled on another queue. A pure per-port offloading can't
2141 * be enabled for any queue as new added one if it hasn't been
2142 * enabled in rte_eth_dev_configure().
2144 if ((local_conf.offloads & dev_info.rx_queue_offload_capa) !=
2145 local_conf.offloads) {
2147 "Ethdev port_id=%d rx_queue_id=%d, new added offloads 0x%"PRIx64" must be "
2148 "within per-queue offload capabilities 0x%"PRIx64" in %s()\n",
2149 port_id, rx_queue_id, local_conf.offloads,
2150 dev_info.rx_queue_offload_capa,
2156 * If LRO is enabled, check that the maximum aggregated packet
2157 * size is supported by the configured device.
2159 if (local_conf.offloads & DEV_RX_OFFLOAD_TCP_LRO) {
2160 if (dev->data->dev_conf.rxmode.max_lro_pkt_size == 0)
2161 dev->data->dev_conf.rxmode.max_lro_pkt_size =
2162 dev->data->dev_conf.rxmode.max_rx_pkt_len;
2163 int ret = eth_dev_check_lro_pkt_size(port_id,
2164 dev->data->dev_conf.rxmode.max_lro_pkt_size,
2165 dev->data->dev_conf.rxmode.max_rx_pkt_len,
2166 dev_info.max_lro_pkt_size);
2171 ret = (*dev->dev_ops->rx_queue_setup)(dev, rx_queue_id, nb_rx_desc,
2172 socket_id, &local_conf, mp);
2174 if (!dev->data->min_rx_buf_size ||
2175 dev->data->min_rx_buf_size > mbp_buf_size)
2176 dev->data->min_rx_buf_size = mbp_buf_size;
2179 rte_ethdev_trace_rxq_setup(port_id, rx_queue_id, nb_rx_desc, mp,
2181 return eth_err(port_id, ret);
2185 rte_eth_rx_hairpin_queue_setup(uint16_t port_id, uint16_t rx_queue_id,
2186 uint16_t nb_rx_desc,
2187 const struct rte_eth_hairpin_conf *conf)
2190 struct rte_eth_dev *dev;
2191 struct rte_eth_hairpin_cap cap;
2196 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2197 dev = &rte_eth_devices[port_id];
2199 if (rx_queue_id >= dev->data->nb_rx_queues) {
2200 RTE_ETHDEV_LOG(ERR, "Invalid RX queue_id=%u\n", rx_queue_id);
2206 "Cannot setup ethdev port %u Rx hairpin queue from NULL config\n",
2211 ret = rte_eth_dev_hairpin_capability_get(port_id, &cap);
2214 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_hairpin_queue_setup,
2216 /* if nb_rx_desc is zero use max number of desc from the driver. */
2217 if (nb_rx_desc == 0)
2218 nb_rx_desc = cap.max_nb_desc;
2219 if (nb_rx_desc > cap.max_nb_desc) {
2221 "Invalid value for nb_rx_desc(=%hu), should be: <= %hu",
2222 nb_rx_desc, cap.max_nb_desc);
2225 if (conf->peer_count > cap.max_rx_2_tx) {
2227 "Invalid value for number of peers for Rx queue(=%u), should be: <= %hu",
2228 conf->peer_count, cap.max_rx_2_tx);
2231 if (conf->peer_count == 0) {
2233 "Invalid value for number of peers for Rx queue(=%u), should be: > 0",
2237 for (i = 0, count = 0; i < dev->data->nb_rx_queues &&
2238 cap.max_nb_queues != UINT16_MAX; i++) {
2239 if (i == rx_queue_id || rte_eth_dev_is_rx_hairpin_queue(dev, i))
2242 if (count > cap.max_nb_queues) {
2243 RTE_ETHDEV_LOG(ERR, "To many Rx hairpin queues max is %d",
2247 if (dev->data->dev_started)
2249 rxq = dev->data->rx_queues;
2250 if (rxq[rx_queue_id] != NULL) {
2251 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_release,
2253 (*dev->dev_ops->rx_queue_release)(rxq[rx_queue_id]);
2254 rxq[rx_queue_id] = NULL;
2256 ret = (*dev->dev_ops->rx_hairpin_queue_setup)(dev, rx_queue_id,
2259 dev->data->rx_queue_state[rx_queue_id] =
2260 RTE_ETH_QUEUE_STATE_HAIRPIN;
2261 return eth_err(port_id, ret);
2265 rte_eth_tx_queue_setup(uint16_t port_id, uint16_t tx_queue_id,
2266 uint16_t nb_tx_desc, unsigned int socket_id,
2267 const struct rte_eth_txconf *tx_conf)
2269 struct rte_eth_dev *dev;
2270 struct rte_eth_dev_info dev_info;
2271 struct rte_eth_txconf local_conf;
2275 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2276 dev = &rte_eth_devices[port_id];
2278 if (tx_queue_id >= dev->data->nb_tx_queues) {
2279 RTE_ETHDEV_LOG(ERR, "Invalid TX queue_id=%u\n", tx_queue_id);
2283 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_setup, -ENOTSUP);
2285 ret = rte_eth_dev_info_get(port_id, &dev_info);
2289 /* Use default specified by driver, if nb_tx_desc is zero */
2290 if (nb_tx_desc == 0) {
2291 nb_tx_desc = dev_info.default_txportconf.ring_size;
2292 /* If driver default is zero, fall back on EAL default */
2293 if (nb_tx_desc == 0)
2294 nb_tx_desc = RTE_ETH_DEV_FALLBACK_TX_RINGSIZE;
2296 if (nb_tx_desc > dev_info.tx_desc_lim.nb_max ||
2297 nb_tx_desc < dev_info.tx_desc_lim.nb_min ||
2298 nb_tx_desc % dev_info.tx_desc_lim.nb_align != 0) {
2300 "Invalid value for nb_tx_desc(=%hu), should be: <= %hu, >= %hu, and a product of %hu\n",
2301 nb_tx_desc, dev_info.tx_desc_lim.nb_max,
2302 dev_info.tx_desc_lim.nb_min,
2303 dev_info.tx_desc_lim.nb_align);
2307 if (dev->data->dev_started &&
2308 !(dev_info.dev_capa &
2309 RTE_ETH_DEV_CAPA_RUNTIME_TX_QUEUE_SETUP))
2312 if (dev->data->dev_started &&
2313 (dev->data->tx_queue_state[tx_queue_id] !=
2314 RTE_ETH_QUEUE_STATE_STOPPED))
2317 txq = dev->data->tx_queues;
2318 if (txq[tx_queue_id]) {
2319 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_release,
2321 (*dev->dev_ops->tx_queue_release)(txq[tx_queue_id]);
2322 txq[tx_queue_id] = NULL;
2325 if (tx_conf == NULL)
2326 tx_conf = &dev_info.default_txconf;
2328 local_conf = *tx_conf;
2331 * If an offloading has already been enabled in
2332 * rte_eth_dev_configure(), it has been enabled on all queues,
2333 * so there is no need to enable it in this queue again.
2334 * The local_conf.offloads input to underlying PMD only carries
2335 * those offloadings which are only enabled on this queue and
2336 * not enabled on all queues.
2338 local_conf.offloads &= ~dev->data->dev_conf.txmode.offloads;
2341 * New added offloadings for this queue are those not enabled in
2342 * rte_eth_dev_configure() and they must be per-queue type.
2343 * A pure per-port offloading can't be enabled on a queue while
2344 * disabled on another queue. A pure per-port offloading can't
2345 * be enabled for any queue as new added one if it hasn't been
2346 * enabled in rte_eth_dev_configure().
2348 if ((local_conf.offloads & dev_info.tx_queue_offload_capa) !=
2349 local_conf.offloads) {
2351 "Ethdev port_id=%d tx_queue_id=%d, new added offloads 0x%"PRIx64" must be "
2352 "within per-queue offload capabilities 0x%"PRIx64" in %s()\n",
2353 port_id, tx_queue_id, local_conf.offloads,
2354 dev_info.tx_queue_offload_capa,
2359 rte_ethdev_trace_txq_setup(port_id, tx_queue_id, nb_tx_desc, tx_conf);
2360 return eth_err(port_id, (*dev->dev_ops->tx_queue_setup)(dev,
2361 tx_queue_id, nb_tx_desc, socket_id, &local_conf));
2365 rte_eth_tx_hairpin_queue_setup(uint16_t port_id, uint16_t tx_queue_id,
2366 uint16_t nb_tx_desc,
2367 const struct rte_eth_hairpin_conf *conf)
2369 struct rte_eth_dev *dev;
2370 struct rte_eth_hairpin_cap cap;
2376 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2377 dev = &rte_eth_devices[port_id];
2379 if (tx_queue_id >= dev->data->nb_tx_queues) {
2380 RTE_ETHDEV_LOG(ERR, "Invalid TX queue_id=%u\n", tx_queue_id);
2386 "Cannot setup ethdev port %u Tx hairpin queue from NULL config\n",
2391 ret = rte_eth_dev_hairpin_capability_get(port_id, &cap);
2394 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_hairpin_queue_setup,
2396 /* if nb_rx_desc is zero use max number of desc from the driver. */
2397 if (nb_tx_desc == 0)
2398 nb_tx_desc = cap.max_nb_desc;
2399 if (nb_tx_desc > cap.max_nb_desc) {
2401 "Invalid value for nb_tx_desc(=%hu), should be: <= %hu",
2402 nb_tx_desc, cap.max_nb_desc);
2405 if (conf->peer_count > cap.max_tx_2_rx) {
2407 "Invalid value for number of peers for Tx queue(=%u), should be: <= %hu",
2408 conf->peer_count, cap.max_tx_2_rx);
2411 if (conf->peer_count == 0) {
2413 "Invalid value for number of peers for Tx queue(=%u), should be: > 0",
2417 for (i = 0, count = 0; i < dev->data->nb_tx_queues &&
2418 cap.max_nb_queues != UINT16_MAX; i++) {
2419 if (i == tx_queue_id || rte_eth_dev_is_tx_hairpin_queue(dev, i))
2422 if (count > cap.max_nb_queues) {
2423 RTE_ETHDEV_LOG(ERR, "To many Tx hairpin queues max is %d",
2427 if (dev->data->dev_started)
2429 txq = dev->data->tx_queues;
2430 if (txq[tx_queue_id] != NULL) {
2431 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_release,
2433 (*dev->dev_ops->tx_queue_release)(txq[tx_queue_id]);
2434 txq[tx_queue_id] = NULL;
2436 ret = (*dev->dev_ops->tx_hairpin_queue_setup)
2437 (dev, tx_queue_id, nb_tx_desc, conf);
2439 dev->data->tx_queue_state[tx_queue_id] =
2440 RTE_ETH_QUEUE_STATE_HAIRPIN;
2441 return eth_err(port_id, ret);
2445 rte_eth_hairpin_bind(uint16_t tx_port, uint16_t rx_port)
2447 struct rte_eth_dev *dev;
2450 RTE_ETH_VALID_PORTID_OR_ERR_RET(tx_port, -ENODEV);
2451 dev = &rte_eth_devices[tx_port];
2453 if (dev->data->dev_started == 0) {
2454 RTE_ETHDEV_LOG(ERR, "Tx port %d is not started\n", tx_port);
2458 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_bind, -ENOTSUP);
2459 ret = (*dev->dev_ops->hairpin_bind)(dev, rx_port);
2461 RTE_ETHDEV_LOG(ERR, "Failed to bind hairpin Tx %d"
2462 " to Rx %d (%d - all ports)\n",
2463 tx_port, rx_port, RTE_MAX_ETHPORTS);
2469 rte_eth_hairpin_unbind(uint16_t tx_port, uint16_t rx_port)
2471 struct rte_eth_dev *dev;
2474 RTE_ETH_VALID_PORTID_OR_ERR_RET(tx_port, -ENODEV);
2475 dev = &rte_eth_devices[tx_port];
2477 if (dev->data->dev_started == 0) {
2478 RTE_ETHDEV_LOG(ERR, "Tx port %d is already stopped\n", tx_port);
2482 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_unbind, -ENOTSUP);
2483 ret = (*dev->dev_ops->hairpin_unbind)(dev, rx_port);
2485 RTE_ETHDEV_LOG(ERR, "Failed to unbind hairpin Tx %d"
2486 " from Rx %d (%d - all ports)\n",
2487 tx_port, rx_port, RTE_MAX_ETHPORTS);
2493 rte_eth_hairpin_get_peer_ports(uint16_t port_id, uint16_t *peer_ports,
2494 size_t len, uint32_t direction)
2496 struct rte_eth_dev *dev;
2499 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2500 dev = &rte_eth_devices[port_id];
2502 if (peer_ports == NULL) {
2504 "Cannot get ethdev port %u hairpin peer ports to NULL\n",
2511 "Cannot get ethdev port %u hairpin peer ports to array with zero size\n",
2516 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_get_peer_ports,
2519 ret = (*dev->dev_ops->hairpin_get_peer_ports)(dev, peer_ports,
2522 RTE_ETHDEV_LOG(ERR, "Failed to get %d hairpin peer %s ports\n",
2523 port_id, direction ? "Rx" : "Tx");
2529 rte_eth_tx_buffer_drop_callback(struct rte_mbuf **pkts, uint16_t unsent,
2530 void *userdata __rte_unused)
2532 rte_pktmbuf_free_bulk(pkts, unsent);
2536 rte_eth_tx_buffer_count_callback(struct rte_mbuf **pkts, uint16_t unsent,
2539 uint64_t *count = userdata;
2541 rte_pktmbuf_free_bulk(pkts, unsent);
2546 rte_eth_tx_buffer_set_err_callback(struct rte_eth_dev_tx_buffer *buffer,
2547 buffer_tx_error_fn cbfn, void *userdata)
2549 if (buffer == NULL) {
2551 "Cannot set Tx buffer error callback to NULL buffer\n");
2555 buffer->error_callback = cbfn;
2556 buffer->error_userdata = userdata;
2561 rte_eth_tx_buffer_init(struct rte_eth_dev_tx_buffer *buffer, uint16_t size)
2565 if (buffer == NULL) {
2566 RTE_ETHDEV_LOG(ERR, "Cannot initialize NULL buffer\n");
2570 buffer->size = size;
2571 if (buffer->error_callback == NULL) {
2572 ret = rte_eth_tx_buffer_set_err_callback(
2573 buffer, rte_eth_tx_buffer_drop_callback, NULL);
2580 rte_eth_tx_done_cleanup(uint16_t port_id, uint16_t queue_id, uint32_t free_cnt)
2582 struct rte_eth_dev *dev;
2585 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2586 dev = &rte_eth_devices[port_id];
2588 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_done_cleanup, -ENOTSUP);
2590 /* Call driver to free pending mbufs. */
2591 ret = (*dev->dev_ops->tx_done_cleanup)(dev->data->tx_queues[queue_id],
2593 return eth_err(port_id, ret);
2597 rte_eth_promiscuous_enable(uint16_t port_id)
2599 struct rte_eth_dev *dev;
2602 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2603 dev = &rte_eth_devices[port_id];
2605 if (dev->data->promiscuous == 1)
2608 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->promiscuous_enable, -ENOTSUP);
2610 diag = (*dev->dev_ops->promiscuous_enable)(dev);
2611 dev->data->promiscuous = (diag == 0) ? 1 : 0;
2613 return eth_err(port_id, diag);
2617 rte_eth_promiscuous_disable(uint16_t port_id)
2619 struct rte_eth_dev *dev;
2622 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2623 dev = &rte_eth_devices[port_id];
2625 if (dev->data->promiscuous == 0)
2628 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->promiscuous_disable, -ENOTSUP);
2630 dev->data->promiscuous = 0;
2631 diag = (*dev->dev_ops->promiscuous_disable)(dev);
2633 dev->data->promiscuous = 1;
2635 return eth_err(port_id, diag);
2639 rte_eth_promiscuous_get(uint16_t port_id)
2641 struct rte_eth_dev *dev;
2643 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2644 dev = &rte_eth_devices[port_id];
2646 return dev->data->promiscuous;
2650 rte_eth_allmulticast_enable(uint16_t port_id)
2652 struct rte_eth_dev *dev;
2655 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2656 dev = &rte_eth_devices[port_id];
2658 if (dev->data->all_multicast == 1)
2661 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->allmulticast_enable, -ENOTSUP);
2662 diag = (*dev->dev_ops->allmulticast_enable)(dev);
2663 dev->data->all_multicast = (diag == 0) ? 1 : 0;
2665 return eth_err(port_id, diag);
2669 rte_eth_allmulticast_disable(uint16_t port_id)
2671 struct rte_eth_dev *dev;
2674 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2675 dev = &rte_eth_devices[port_id];
2677 if (dev->data->all_multicast == 0)
2680 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->allmulticast_disable, -ENOTSUP);
2681 dev->data->all_multicast = 0;
2682 diag = (*dev->dev_ops->allmulticast_disable)(dev);
2684 dev->data->all_multicast = 1;
2686 return eth_err(port_id, diag);
2690 rte_eth_allmulticast_get(uint16_t port_id)
2692 struct rte_eth_dev *dev;
2694 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2695 dev = &rte_eth_devices[port_id];
2697 return dev->data->all_multicast;
2701 rte_eth_link_get(uint16_t port_id, struct rte_eth_link *eth_link)
2703 struct rte_eth_dev *dev;
2705 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2706 dev = &rte_eth_devices[port_id];
2708 if (eth_link == NULL) {
2709 RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u link to NULL\n",
2714 if (dev->data->dev_conf.intr_conf.lsc && dev->data->dev_started)
2715 rte_eth_linkstatus_get(dev, eth_link);
2717 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->link_update, -ENOTSUP);
2718 (*dev->dev_ops->link_update)(dev, 1);
2719 *eth_link = dev->data->dev_link;
2726 rte_eth_link_get_nowait(uint16_t port_id, struct rte_eth_link *eth_link)
2728 struct rte_eth_dev *dev;
2730 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2731 dev = &rte_eth_devices[port_id];
2733 if (eth_link == NULL) {
2734 RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u link to NULL\n",
2739 if (dev->data->dev_conf.intr_conf.lsc && dev->data->dev_started)
2740 rte_eth_linkstatus_get(dev, eth_link);
2742 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->link_update, -ENOTSUP);
2743 (*dev->dev_ops->link_update)(dev, 0);
2744 *eth_link = dev->data->dev_link;
2751 rte_eth_link_speed_to_str(uint32_t link_speed)
2753 switch (link_speed) {
2754 case ETH_SPEED_NUM_NONE: return "None";
2755 case ETH_SPEED_NUM_10M: return "10 Mbps";
2756 case ETH_SPEED_NUM_100M: return "100 Mbps";
2757 case ETH_SPEED_NUM_1G: return "1 Gbps";
2758 case ETH_SPEED_NUM_2_5G: return "2.5 Gbps";
2759 case ETH_SPEED_NUM_5G: return "5 Gbps";
2760 case ETH_SPEED_NUM_10G: return "10 Gbps";
2761 case ETH_SPEED_NUM_20G: return "20 Gbps";
2762 case ETH_SPEED_NUM_25G: return "25 Gbps";
2763 case ETH_SPEED_NUM_40G: return "40 Gbps";
2764 case ETH_SPEED_NUM_50G: return "50 Gbps";
2765 case ETH_SPEED_NUM_56G: return "56 Gbps";
2766 case ETH_SPEED_NUM_100G: return "100 Gbps";
2767 case ETH_SPEED_NUM_200G: return "200 Gbps";
2768 case ETH_SPEED_NUM_UNKNOWN: return "Unknown";
2769 default: return "Invalid";
2774 rte_eth_link_to_str(char *str, size_t len, const struct rte_eth_link *eth_link)
2777 RTE_ETHDEV_LOG(ERR, "Cannot convert link to NULL string\n");
2783 "Cannot convert link to string with zero size\n");
2787 if (eth_link == NULL) {
2788 RTE_ETHDEV_LOG(ERR, "Cannot convert to string from NULL link\n");
2792 if (eth_link->link_status == ETH_LINK_DOWN)
2793 return snprintf(str, len, "Link down");
2795 return snprintf(str, len, "Link up at %s %s %s",
2796 rte_eth_link_speed_to_str(eth_link->link_speed),
2797 (eth_link->link_duplex == ETH_LINK_FULL_DUPLEX) ?
2799 (eth_link->link_autoneg == ETH_LINK_AUTONEG) ?
2800 "Autoneg" : "Fixed");
2804 rte_eth_stats_get(uint16_t port_id, struct rte_eth_stats *stats)
2806 struct rte_eth_dev *dev;
2808 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2809 dev = &rte_eth_devices[port_id];
2811 if (stats == NULL) {
2812 RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u stats to NULL\n",
2817 memset(stats, 0, sizeof(*stats));
2819 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->stats_get, -ENOTSUP);
2820 stats->rx_nombuf = dev->data->rx_mbuf_alloc_failed;
2821 return eth_err(port_id, (*dev->dev_ops->stats_get)(dev, stats));
2825 rte_eth_stats_reset(uint16_t port_id)
2827 struct rte_eth_dev *dev;
2830 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2831 dev = &rte_eth_devices[port_id];
2833 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->stats_reset, -ENOTSUP);
2834 ret = (*dev->dev_ops->stats_reset)(dev);
2836 return eth_err(port_id, ret);
2838 dev->data->rx_mbuf_alloc_failed = 0;
2844 eth_dev_get_xstats_basic_count(struct rte_eth_dev *dev)
2846 uint16_t nb_rxqs, nb_txqs;
2849 nb_rxqs = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
2850 nb_txqs = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
2852 count = RTE_NB_STATS;
2853 if (dev->data->dev_flags & RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS) {
2854 count += nb_rxqs * RTE_NB_RXQ_STATS;
2855 count += nb_txqs * RTE_NB_TXQ_STATS;
2862 eth_dev_get_xstats_count(uint16_t port_id)
2864 struct rte_eth_dev *dev;
2867 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2868 dev = &rte_eth_devices[port_id];
2869 if (dev->dev_ops->xstats_get_names_by_id != NULL) {
2870 count = (*dev->dev_ops->xstats_get_names_by_id)(dev, NULL,
2873 return eth_err(port_id, count);
2875 if (dev->dev_ops->xstats_get_names != NULL) {
2876 count = (*dev->dev_ops->xstats_get_names)(dev, NULL, 0);
2878 return eth_err(port_id, count);
2883 count += eth_dev_get_xstats_basic_count(dev);
2889 rte_eth_xstats_get_id_by_name(uint16_t port_id, const char *xstat_name,
2892 int cnt_xstats, idx_xstat;
2894 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2896 if (xstat_name == NULL) {
2898 "Cannot get ethdev port %u xstats ID from NULL xstat name\n",
2905 "Cannot get ethdev port %u xstats ID to NULL\n",
2911 cnt_xstats = rte_eth_xstats_get_names_by_id(port_id, NULL, 0, NULL);
2912 if (cnt_xstats < 0) {
2913 RTE_ETHDEV_LOG(ERR, "Cannot get count of xstats\n");
2917 /* Get id-name lookup table */
2918 struct rte_eth_xstat_name xstats_names[cnt_xstats];
2920 if (cnt_xstats != rte_eth_xstats_get_names_by_id(
2921 port_id, xstats_names, cnt_xstats, NULL)) {
2922 RTE_ETHDEV_LOG(ERR, "Cannot get xstats lookup\n");
2926 for (idx_xstat = 0; idx_xstat < cnt_xstats; idx_xstat++) {
2927 if (!strcmp(xstats_names[idx_xstat].name, xstat_name)) {
2936 /* retrieve basic stats names */
2938 eth_basic_stats_get_names(struct rte_eth_dev *dev,
2939 struct rte_eth_xstat_name *xstats_names)
2941 int cnt_used_entries = 0;
2942 uint32_t idx, id_queue;
2945 for (idx = 0; idx < RTE_NB_STATS; idx++) {
2946 strlcpy(xstats_names[cnt_used_entries].name,
2947 eth_dev_stats_strings[idx].name,
2948 sizeof(xstats_names[0].name));
2952 if ((dev->data->dev_flags & RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS) == 0)
2953 return cnt_used_entries;
2955 num_q = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
2956 for (id_queue = 0; id_queue < num_q; id_queue++) {
2957 for (idx = 0; idx < RTE_NB_RXQ_STATS; idx++) {
2958 snprintf(xstats_names[cnt_used_entries].name,
2959 sizeof(xstats_names[0].name),
2961 id_queue, eth_dev_rxq_stats_strings[idx].name);
2966 num_q = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
2967 for (id_queue = 0; id_queue < num_q; id_queue++) {
2968 for (idx = 0; idx < RTE_NB_TXQ_STATS; idx++) {
2969 snprintf(xstats_names[cnt_used_entries].name,
2970 sizeof(xstats_names[0].name),
2972 id_queue, eth_dev_txq_stats_strings[idx].name);
2976 return cnt_used_entries;
2979 /* retrieve ethdev extended statistics names */
2981 rte_eth_xstats_get_names_by_id(uint16_t port_id,
2982 struct rte_eth_xstat_name *xstats_names, unsigned int size,
2985 struct rte_eth_xstat_name *xstats_names_copy;
2986 unsigned int no_basic_stat_requested = 1;
2987 unsigned int no_ext_stat_requested = 1;
2988 unsigned int expected_entries;
2989 unsigned int basic_count;
2990 struct rte_eth_dev *dev;
2994 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
2995 dev = &rte_eth_devices[port_id];
2997 basic_count = eth_dev_get_xstats_basic_count(dev);
2998 ret = eth_dev_get_xstats_count(port_id);
3001 expected_entries = (unsigned int)ret;
3003 /* Return max number of stats if no ids given */
3006 return expected_entries;
3007 else if (xstats_names && size < expected_entries)
3008 return expected_entries;
3011 if (ids && !xstats_names)
3014 if (ids && dev->dev_ops->xstats_get_names_by_id != NULL && size > 0) {
3015 uint64_t ids_copy[size];
3017 for (i = 0; i < size; i++) {
3018 if (ids[i] < basic_count) {
3019 no_basic_stat_requested = 0;
3024 * Convert ids to xstats ids that PMD knows.
3025 * ids known by user are basic + extended stats.
3027 ids_copy[i] = ids[i] - basic_count;
3030 if (no_basic_stat_requested)
3031 return (*dev->dev_ops->xstats_get_names_by_id)(dev,
3032 xstats_names, ids_copy, size);
3035 /* Retrieve all stats */
3037 int num_stats = rte_eth_xstats_get_names(port_id, xstats_names,
3039 if (num_stats < 0 || num_stats > (int)expected_entries)
3042 return expected_entries;
3045 xstats_names_copy = calloc(expected_entries,
3046 sizeof(struct rte_eth_xstat_name));
3048 if (!xstats_names_copy) {
3049 RTE_ETHDEV_LOG(ERR, "Can't allocate memory\n");
3054 for (i = 0; i < size; i++) {
3055 if (ids[i] >= basic_count) {
3056 no_ext_stat_requested = 0;
3062 /* Fill xstats_names_copy structure */
3063 if (ids && no_ext_stat_requested) {
3064 eth_basic_stats_get_names(dev, xstats_names_copy);
3066 ret = rte_eth_xstats_get_names(port_id, xstats_names_copy,
3069 free(xstats_names_copy);
3075 for (i = 0; i < size; i++) {
3076 if (ids[i] >= expected_entries) {
3077 RTE_ETHDEV_LOG(ERR, "Id value isn't valid\n");
3078 free(xstats_names_copy);
3081 xstats_names[i] = xstats_names_copy[ids[i]];
3084 free(xstats_names_copy);
3089 rte_eth_xstats_get_names(uint16_t port_id,
3090 struct rte_eth_xstat_name *xstats_names,
3093 struct rte_eth_dev *dev;
3094 int cnt_used_entries;
3095 int cnt_expected_entries;
3096 int cnt_driver_entries;
3098 cnt_expected_entries = eth_dev_get_xstats_count(port_id);
3099 if (xstats_names == NULL || cnt_expected_entries < 0 ||
3100 (int)size < cnt_expected_entries)
3101 return cnt_expected_entries;
3103 /* port_id checked in eth_dev_get_xstats_count() */
3104 dev = &rte_eth_devices[port_id];
3106 cnt_used_entries = eth_basic_stats_get_names(dev, xstats_names);
3108 if (dev->dev_ops->xstats_get_names != NULL) {
3109 /* If there are any driver-specific xstats, append them
3112 cnt_driver_entries = (*dev->dev_ops->xstats_get_names)(
3114 xstats_names + cnt_used_entries,
3115 size - cnt_used_entries);
3116 if (cnt_driver_entries < 0)
3117 return eth_err(port_id, cnt_driver_entries);
3118 cnt_used_entries += cnt_driver_entries;
3121 return cnt_used_entries;
3126 eth_basic_stats_get(uint16_t port_id, struct rte_eth_xstat *xstats)
3128 struct rte_eth_dev *dev;
3129 struct rte_eth_stats eth_stats;
3130 unsigned int count = 0, i, q;
3131 uint64_t val, *stats_ptr;
3132 uint16_t nb_rxqs, nb_txqs;
3135 ret = rte_eth_stats_get(port_id, ð_stats);
3139 dev = &rte_eth_devices[port_id];
3141 nb_rxqs = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
3142 nb_txqs = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
3145 for (i = 0; i < RTE_NB_STATS; i++) {
3146 stats_ptr = RTE_PTR_ADD(ð_stats,
3147 eth_dev_stats_strings[i].offset);
3149 xstats[count++].value = val;
3152 if ((dev->data->dev_flags & RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS) == 0)
3156 for (q = 0; q < nb_rxqs; q++) {
3157 for (i = 0; i < RTE_NB_RXQ_STATS; i++) {
3158 stats_ptr = RTE_PTR_ADD(ð_stats,
3159 eth_dev_rxq_stats_strings[i].offset +
3160 q * sizeof(uint64_t));
3162 xstats[count++].value = val;
3167 for (q = 0; q < nb_txqs; q++) {
3168 for (i = 0; i < RTE_NB_TXQ_STATS; i++) {
3169 stats_ptr = RTE_PTR_ADD(ð_stats,
3170 eth_dev_txq_stats_strings[i].offset +
3171 q * sizeof(uint64_t));
3173 xstats[count++].value = val;
3179 /* retrieve ethdev extended statistics */
3181 rte_eth_xstats_get_by_id(uint16_t port_id, const uint64_t *ids,
3182 uint64_t *values, unsigned int size)
3184 unsigned int no_basic_stat_requested = 1;
3185 unsigned int no_ext_stat_requested = 1;
3186 unsigned int num_xstats_filled;
3187 unsigned int basic_count;
3188 uint16_t expected_entries;
3189 struct rte_eth_dev *dev;
3193 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3194 dev = &rte_eth_devices[port_id];
3196 ret = eth_dev_get_xstats_count(port_id);
3199 expected_entries = (uint16_t)ret;
3200 struct rte_eth_xstat xstats[expected_entries];
3201 basic_count = eth_dev_get_xstats_basic_count(dev);
3203 /* Return max number of stats if no ids given */
3206 return expected_entries;
3207 else if (values && size < expected_entries)
3208 return expected_entries;
3214 if (ids && dev->dev_ops->xstats_get_by_id != NULL && size) {
3215 unsigned int basic_count = eth_dev_get_xstats_basic_count(dev);
3216 uint64_t ids_copy[size];
3218 for (i = 0; i < size; i++) {
3219 if (ids[i] < basic_count) {
3220 no_basic_stat_requested = 0;
3225 * Convert ids to xstats ids that PMD knows.
3226 * ids known by user are basic + extended stats.
3228 ids_copy[i] = ids[i] - basic_count;
3231 if (no_basic_stat_requested)
3232 return (*dev->dev_ops->xstats_get_by_id)(dev, ids_copy,
3237 for (i = 0; i < size; i++) {
3238 if (ids[i] >= basic_count) {
3239 no_ext_stat_requested = 0;
3245 /* Fill the xstats structure */
3246 if (ids && no_ext_stat_requested)
3247 ret = eth_basic_stats_get(port_id, xstats);
3249 ret = rte_eth_xstats_get(port_id, xstats, expected_entries);
3253 num_xstats_filled = (unsigned int)ret;
3255 /* Return all stats */
3257 for (i = 0; i < num_xstats_filled; i++)
3258 values[i] = xstats[i].value;
3259 return expected_entries;
3263 for (i = 0; i < size; i++) {
3264 if (ids[i] >= expected_entries) {
3265 RTE_ETHDEV_LOG(ERR, "Id value isn't valid\n");
3268 values[i] = xstats[ids[i]].value;
3274 rte_eth_xstats_get(uint16_t port_id, struct rte_eth_xstat *xstats,
3277 struct rte_eth_dev *dev;
3278 unsigned int count = 0, i;
3279 signed int xcount = 0;
3280 uint16_t nb_rxqs, nb_txqs;
3283 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3284 dev = &rte_eth_devices[port_id];
3286 nb_rxqs = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
3287 nb_txqs = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS);
3289 /* Return generic statistics */
3290 count = RTE_NB_STATS;
3291 if (dev->data->dev_flags & RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS)
3292 count += (nb_rxqs * RTE_NB_RXQ_STATS) + (nb_txqs * RTE_NB_TXQ_STATS);
3294 /* implemented by the driver */
3295 if (dev->dev_ops->xstats_get != NULL) {
3296 /* Retrieve the xstats from the driver at the end of the
3299 xcount = (*dev->dev_ops->xstats_get)(dev,
3300 xstats ? xstats + count : NULL,
3301 (n > count) ? n - count : 0);
3304 return eth_err(port_id, xcount);
3307 if (n < count + xcount || xstats == NULL)
3308 return count + xcount;
3310 /* now fill the xstats structure */
3311 ret = eth_basic_stats_get(port_id, xstats);
3316 for (i = 0; i < count; i++)
3318 /* add an offset to driver-specific stats */
3319 for ( ; i < count + xcount; i++)
3320 xstats[i].id += count;
3322 return count + xcount;
3325 /* reset ethdev extended statistics */
3327 rte_eth_xstats_reset(uint16_t port_id)
3329 struct rte_eth_dev *dev;
3331 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3332 dev = &rte_eth_devices[port_id];
3334 /* implemented by the driver */
3335 if (dev->dev_ops->xstats_reset != NULL)
3336 return eth_err(port_id, (*dev->dev_ops->xstats_reset)(dev));
3338 /* fallback to default */
3339 return rte_eth_stats_reset(port_id);
3343 eth_dev_set_queue_stats_mapping(uint16_t port_id, uint16_t queue_id,
3344 uint8_t stat_idx, uint8_t is_rx)
3346 struct rte_eth_dev *dev;
3348 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3349 dev = &rte_eth_devices[port_id];
3351 if (is_rx && (queue_id >= dev->data->nb_rx_queues))
3354 if (!is_rx && (queue_id >= dev->data->nb_tx_queues))
3357 if (stat_idx >= RTE_ETHDEV_QUEUE_STAT_CNTRS)
3360 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->queue_stats_mapping_set, -ENOTSUP);
3361 return (*dev->dev_ops->queue_stats_mapping_set) (dev, queue_id, stat_idx, is_rx);
3365 rte_eth_dev_set_tx_queue_stats_mapping(uint16_t port_id, uint16_t tx_queue_id,
3368 return eth_err(port_id, eth_dev_set_queue_stats_mapping(port_id,
3370 stat_idx, STAT_QMAP_TX));
3374 rte_eth_dev_set_rx_queue_stats_mapping(uint16_t port_id, uint16_t rx_queue_id,
3377 return eth_err(port_id, eth_dev_set_queue_stats_mapping(port_id,
3379 stat_idx, STAT_QMAP_RX));
3383 rte_eth_dev_fw_version_get(uint16_t port_id, char *fw_version, size_t fw_size)
3385 struct rte_eth_dev *dev;
3387 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3388 dev = &rte_eth_devices[port_id];
3390 if (fw_version == NULL && fw_size > 0) {
3392 "Cannot get ethdev port %u FW version to NULL when string size is non zero\n",
3397 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->fw_version_get, -ENOTSUP);
3398 return eth_err(port_id, (*dev->dev_ops->fw_version_get)(dev,
3399 fw_version, fw_size));
3403 rte_eth_dev_info_get(uint16_t port_id, struct rte_eth_dev_info *dev_info)
3405 struct rte_eth_dev *dev;
3406 const struct rte_eth_desc_lim lim = {
3407 .nb_max = UINT16_MAX,
3410 .nb_seg_max = UINT16_MAX,
3411 .nb_mtu_seg_max = UINT16_MAX,
3415 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3416 dev = &rte_eth_devices[port_id];
3418 if (dev_info == NULL) {
3419 RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u info to NULL\n",
3425 * Init dev_info before port_id check since caller does not have
3426 * return status and does not know if get is successful or not.
3428 memset(dev_info, 0, sizeof(struct rte_eth_dev_info));
3429 dev_info->switch_info.domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
3431 dev_info->rx_desc_lim = lim;
3432 dev_info->tx_desc_lim = lim;
3433 dev_info->device = dev->device;
3434 dev_info->min_mtu = RTE_ETHER_MIN_MTU;
3435 dev_info->max_mtu = UINT16_MAX;
3437 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP);
3438 diag = (*dev->dev_ops->dev_infos_get)(dev, dev_info);
3440 /* Cleanup already filled in device information */
3441 memset(dev_info, 0, sizeof(struct rte_eth_dev_info));
3442 return eth_err(port_id, diag);
3445 /* Maximum number of queues should be <= RTE_MAX_QUEUES_PER_PORT */
3446 dev_info->max_rx_queues = RTE_MIN(dev_info->max_rx_queues,
3447 RTE_MAX_QUEUES_PER_PORT);
3448 dev_info->max_tx_queues = RTE_MIN(dev_info->max_tx_queues,
3449 RTE_MAX_QUEUES_PER_PORT);
3451 dev_info->driver_name = dev->device->driver->name;
3452 dev_info->nb_rx_queues = dev->data->nb_rx_queues;
3453 dev_info->nb_tx_queues = dev->data->nb_tx_queues;
3455 dev_info->dev_flags = &dev->data->dev_flags;
3461 rte_eth_dev_get_supported_ptypes(uint16_t port_id, uint32_t ptype_mask,
3462 uint32_t *ptypes, int num)
3465 struct rte_eth_dev *dev;
3466 const uint32_t *all_ptypes;
3468 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3469 dev = &rte_eth_devices[port_id];
3471 if (ptypes == NULL && num > 0) {
3473 "Cannot get ethdev port %u supported packet types to NULL when array size is non zero\n",
3478 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_supported_ptypes_get, 0);
3479 all_ptypes = (*dev->dev_ops->dev_supported_ptypes_get)(dev);
3484 for (i = 0, j = 0; all_ptypes[i] != RTE_PTYPE_UNKNOWN; ++i)
3485 if (all_ptypes[i] & ptype_mask) {
3487 ptypes[j] = all_ptypes[i];
3495 rte_eth_dev_set_ptypes(uint16_t port_id, uint32_t ptype_mask,
3496 uint32_t *set_ptypes, unsigned int num)
3498 const uint32_t valid_ptype_masks[] = {
3502 RTE_PTYPE_TUNNEL_MASK,
3503 RTE_PTYPE_INNER_L2_MASK,
3504 RTE_PTYPE_INNER_L3_MASK,
3505 RTE_PTYPE_INNER_L4_MASK,
3507 const uint32_t *all_ptypes;
3508 struct rte_eth_dev *dev;
3509 uint32_t unused_mask;
3513 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3514 dev = &rte_eth_devices[port_id];
3516 if (num > 0 && set_ptypes == NULL) {
3518 "Cannot get ethdev port %u set packet types to NULL when array size is non zero\n",
3523 if (*dev->dev_ops->dev_supported_ptypes_get == NULL ||
3524 *dev->dev_ops->dev_ptypes_set == NULL) {
3529 if (ptype_mask == 0) {
3530 ret = (*dev->dev_ops->dev_ptypes_set)(dev,
3535 unused_mask = ptype_mask;
3536 for (i = 0; i < RTE_DIM(valid_ptype_masks); i++) {
3537 uint32_t mask = ptype_mask & valid_ptype_masks[i];
3538 if (mask && mask != valid_ptype_masks[i]) {
3542 unused_mask &= ~valid_ptype_masks[i];
3550 all_ptypes = (*dev->dev_ops->dev_supported_ptypes_get)(dev);
3551 if (all_ptypes == NULL) {
3557 * Accommodate as many set_ptypes as possible. If the supplied
3558 * set_ptypes array is insufficient fill it partially.
3560 for (i = 0, j = 0; set_ptypes != NULL &&
3561 (all_ptypes[i] != RTE_PTYPE_UNKNOWN); ++i) {
3562 if (ptype_mask & all_ptypes[i]) {
3564 set_ptypes[j] = all_ptypes[i];
3572 if (set_ptypes != NULL && j < num)
3573 set_ptypes[j] = RTE_PTYPE_UNKNOWN;
3575 return (*dev->dev_ops->dev_ptypes_set)(dev, ptype_mask);
3579 set_ptypes[0] = RTE_PTYPE_UNKNOWN;
3585 rte_eth_macaddr_get(uint16_t port_id, struct rte_ether_addr *mac_addr)
3587 struct rte_eth_dev *dev;
3589 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3590 dev = &rte_eth_devices[port_id];
3592 if (mac_addr == NULL) {
3594 "Cannot get ethdev port %u MAC address to NULL\n",
3599 rte_ether_addr_copy(&dev->data->mac_addrs[0], mac_addr);
3605 rte_eth_dev_get_mtu(uint16_t port_id, uint16_t *mtu)
3607 struct rte_eth_dev *dev;
3609 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3610 dev = &rte_eth_devices[port_id];
3613 RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u MTU to NULL\n",
3618 *mtu = dev->data->mtu;
3623 rte_eth_dev_set_mtu(uint16_t port_id, uint16_t mtu)
3626 struct rte_eth_dev_info dev_info;
3627 struct rte_eth_dev *dev;
3629 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3630 dev = &rte_eth_devices[port_id];
3631 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mtu_set, -ENOTSUP);
3634 * Check if the device supports dev_infos_get, if it does not
3635 * skip min_mtu/max_mtu validation here as this requires values
3636 * that are populated within the call to rte_eth_dev_info_get()
3637 * which relies on dev->dev_ops->dev_infos_get.
3639 if (*dev->dev_ops->dev_infos_get != NULL) {
3640 ret = rte_eth_dev_info_get(port_id, &dev_info);
3644 if (mtu < dev_info.min_mtu || mtu > dev_info.max_mtu)
3648 ret = (*dev->dev_ops->mtu_set)(dev, mtu);
3650 dev->data->mtu = mtu;
3652 return eth_err(port_id, ret);
3656 rte_eth_dev_vlan_filter(uint16_t port_id, uint16_t vlan_id, int on)
3658 struct rte_eth_dev *dev;
3661 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3662 dev = &rte_eth_devices[port_id];
3664 if (!(dev->data->dev_conf.rxmode.offloads &
3665 DEV_RX_OFFLOAD_VLAN_FILTER)) {
3666 RTE_ETHDEV_LOG(ERR, "Port %u: vlan-filtering disabled\n",
3671 if (vlan_id > 4095) {
3672 RTE_ETHDEV_LOG(ERR, "Port_id=%u invalid vlan_id=%u > 4095\n",
3676 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_filter_set, -ENOTSUP);
3678 ret = (*dev->dev_ops->vlan_filter_set)(dev, vlan_id, on);
3680 struct rte_vlan_filter_conf *vfc;
3684 vfc = &dev->data->vlan_filter_conf;
3685 vidx = vlan_id / 64;
3686 vbit = vlan_id % 64;
3689 vfc->ids[vidx] |= UINT64_C(1) << vbit;
3691 vfc->ids[vidx] &= ~(UINT64_C(1) << vbit);
3694 return eth_err(port_id, ret);
3698 rte_eth_dev_set_vlan_strip_on_queue(uint16_t port_id, uint16_t rx_queue_id,
3701 struct rte_eth_dev *dev;
3703 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3704 dev = &rte_eth_devices[port_id];
3706 if (rx_queue_id >= dev->data->nb_rx_queues) {
3707 RTE_ETHDEV_LOG(ERR, "Invalid rx_queue_id=%u\n", rx_queue_id);
3711 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_strip_queue_set, -ENOTSUP);
3712 (*dev->dev_ops->vlan_strip_queue_set)(dev, rx_queue_id, on);
3718 rte_eth_dev_set_vlan_ether_type(uint16_t port_id,
3719 enum rte_vlan_type vlan_type,
3722 struct rte_eth_dev *dev;
3724 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3725 dev = &rte_eth_devices[port_id];
3727 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_tpid_set, -ENOTSUP);
3728 return eth_err(port_id, (*dev->dev_ops->vlan_tpid_set)(dev, vlan_type,
3733 rte_eth_dev_set_vlan_offload(uint16_t port_id, int offload_mask)
3735 struct rte_eth_dev_info dev_info;
3736 struct rte_eth_dev *dev;
3740 uint64_t orig_offloads;
3741 uint64_t dev_offloads;
3742 uint64_t new_offloads;
3744 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3745 dev = &rte_eth_devices[port_id];
3747 /* save original values in case of failure */
3748 orig_offloads = dev->data->dev_conf.rxmode.offloads;
3749 dev_offloads = orig_offloads;
3751 /* check which option changed by application */
3752 cur = !!(offload_mask & ETH_VLAN_STRIP_OFFLOAD);
3753 org = !!(dev_offloads & DEV_RX_OFFLOAD_VLAN_STRIP);
3756 dev_offloads |= DEV_RX_OFFLOAD_VLAN_STRIP;
3758 dev_offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP;
3759 mask |= ETH_VLAN_STRIP_MASK;
3762 cur = !!(offload_mask & ETH_VLAN_FILTER_OFFLOAD);
3763 org = !!(dev_offloads & DEV_RX_OFFLOAD_VLAN_FILTER);
3766 dev_offloads |= DEV_RX_OFFLOAD_VLAN_FILTER;
3768 dev_offloads &= ~DEV_RX_OFFLOAD_VLAN_FILTER;
3769 mask |= ETH_VLAN_FILTER_MASK;
3772 cur = !!(offload_mask & ETH_VLAN_EXTEND_OFFLOAD);
3773 org = !!(dev_offloads & DEV_RX_OFFLOAD_VLAN_EXTEND);
3776 dev_offloads |= DEV_RX_OFFLOAD_VLAN_EXTEND;
3778 dev_offloads &= ~DEV_RX_OFFLOAD_VLAN_EXTEND;
3779 mask |= ETH_VLAN_EXTEND_MASK;
3782 cur = !!(offload_mask & ETH_QINQ_STRIP_OFFLOAD);
3783 org = !!(dev_offloads & DEV_RX_OFFLOAD_QINQ_STRIP);
3786 dev_offloads |= DEV_RX_OFFLOAD_QINQ_STRIP;
3788 dev_offloads &= ~DEV_RX_OFFLOAD_QINQ_STRIP;
3789 mask |= ETH_QINQ_STRIP_MASK;
3796 ret = rte_eth_dev_info_get(port_id, &dev_info);
3800 /* Rx VLAN offloading must be within its device capabilities */
3801 if ((dev_offloads & dev_info.rx_offload_capa) != dev_offloads) {
3802 new_offloads = dev_offloads & ~orig_offloads;
3804 "Ethdev port_id=%u requested new added VLAN offloads "
3805 "0x%" PRIx64 " must be within Rx offloads capabilities "
3806 "0x%" PRIx64 " in %s()\n",
3807 port_id, new_offloads, dev_info.rx_offload_capa,
3812 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_offload_set, -ENOTSUP);
3813 dev->data->dev_conf.rxmode.offloads = dev_offloads;
3814 ret = (*dev->dev_ops->vlan_offload_set)(dev, mask);
3816 /* hit an error restore original values */
3817 dev->data->dev_conf.rxmode.offloads = orig_offloads;
3820 return eth_err(port_id, ret);
3824 rte_eth_dev_get_vlan_offload(uint16_t port_id)
3826 struct rte_eth_dev *dev;
3827 uint64_t *dev_offloads;
3830 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3831 dev = &rte_eth_devices[port_id];
3832 dev_offloads = &dev->data->dev_conf.rxmode.offloads;
3834 if (*dev_offloads & DEV_RX_OFFLOAD_VLAN_STRIP)
3835 ret |= ETH_VLAN_STRIP_OFFLOAD;
3837 if (*dev_offloads & DEV_RX_OFFLOAD_VLAN_FILTER)
3838 ret |= ETH_VLAN_FILTER_OFFLOAD;
3840 if (*dev_offloads & DEV_RX_OFFLOAD_VLAN_EXTEND)
3841 ret |= ETH_VLAN_EXTEND_OFFLOAD;
3843 if (*dev_offloads & DEV_RX_OFFLOAD_QINQ_STRIP)
3844 ret |= ETH_QINQ_STRIP_OFFLOAD;
3850 rte_eth_dev_set_vlan_pvid(uint16_t port_id, uint16_t pvid, int on)
3852 struct rte_eth_dev *dev;
3854 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3855 dev = &rte_eth_devices[port_id];
3857 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_pvid_set, -ENOTSUP);
3858 return eth_err(port_id, (*dev->dev_ops->vlan_pvid_set)(dev, pvid, on));
3862 rte_eth_dev_flow_ctrl_get(uint16_t port_id, struct rte_eth_fc_conf *fc_conf)
3864 struct rte_eth_dev *dev;
3866 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3867 dev = &rte_eth_devices[port_id];
3869 if (fc_conf == NULL) {
3871 "Cannot get ethdev port %u flow control config to NULL\n",
3876 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->flow_ctrl_get, -ENOTSUP);
3877 memset(fc_conf, 0, sizeof(*fc_conf));
3878 return eth_err(port_id, (*dev->dev_ops->flow_ctrl_get)(dev, fc_conf));
3882 rte_eth_dev_flow_ctrl_set(uint16_t port_id, struct rte_eth_fc_conf *fc_conf)
3884 struct rte_eth_dev *dev;
3886 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3887 dev = &rte_eth_devices[port_id];
3889 if (fc_conf == NULL) {
3891 "Cannot set ethdev port %u flow control from NULL config\n",
3896 if ((fc_conf->send_xon != 0) && (fc_conf->send_xon != 1)) {
3897 RTE_ETHDEV_LOG(ERR, "Invalid send_xon, only 0/1 allowed\n");
3901 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->flow_ctrl_set, -ENOTSUP);
3902 return eth_err(port_id, (*dev->dev_ops->flow_ctrl_set)(dev, fc_conf));
3906 rte_eth_dev_priority_flow_ctrl_set(uint16_t port_id,
3907 struct rte_eth_pfc_conf *pfc_conf)
3909 struct rte_eth_dev *dev;
3911 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3912 dev = &rte_eth_devices[port_id];
3914 if (pfc_conf == NULL) {
3916 "Cannot set ethdev port %u priority flow control from NULL config\n",
3921 if (pfc_conf->priority > (ETH_DCB_NUM_USER_PRIORITIES - 1)) {
3922 RTE_ETHDEV_LOG(ERR, "Invalid priority, only 0-7 allowed\n");
3926 /* High water, low water validation are device specific */
3927 if (*dev->dev_ops->priority_flow_ctrl_set)
3928 return eth_err(port_id, (*dev->dev_ops->priority_flow_ctrl_set)
3934 eth_check_reta_mask(struct rte_eth_rss_reta_entry64 *reta_conf,
3939 num = (reta_size + RTE_RETA_GROUP_SIZE - 1) / RTE_RETA_GROUP_SIZE;
3940 for (i = 0; i < num; i++) {
3941 if (reta_conf[i].mask)
3949 eth_check_reta_entry(struct rte_eth_rss_reta_entry64 *reta_conf,
3953 uint16_t i, idx, shift;
3956 RTE_ETHDEV_LOG(ERR, "No receive queue is available\n");
3960 for (i = 0; i < reta_size; i++) {
3961 idx = i / RTE_RETA_GROUP_SIZE;
3962 shift = i % RTE_RETA_GROUP_SIZE;
3963 if ((reta_conf[idx].mask & (1ULL << shift)) &&
3964 (reta_conf[idx].reta[shift] >= max_rxq)) {
3966 "reta_conf[%u]->reta[%u]: %u exceeds the maximum rxq index: %u\n",
3968 reta_conf[idx].reta[shift], max_rxq);
3977 rte_eth_dev_rss_reta_update(uint16_t port_id,
3978 struct rte_eth_rss_reta_entry64 *reta_conf,
3981 struct rte_eth_dev *dev;
3984 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
3985 dev = &rte_eth_devices[port_id];
3987 if (reta_conf == NULL) {
3989 "Cannot update ethdev port %u RSS RETA to NULL\n",
3994 if (reta_size == 0) {
3996 "Cannot update ethdev port %u RSS RETA with zero size\n",
4001 /* Check mask bits */
4002 ret = eth_check_reta_mask(reta_conf, reta_size);
4006 /* Check entry value */
4007 ret = eth_check_reta_entry(reta_conf, reta_size,
4008 dev->data->nb_rx_queues);
4012 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->reta_update, -ENOTSUP);
4013 return eth_err(port_id, (*dev->dev_ops->reta_update)(dev, reta_conf,
4018 rte_eth_dev_rss_reta_query(uint16_t port_id,
4019 struct rte_eth_rss_reta_entry64 *reta_conf,
4022 struct rte_eth_dev *dev;
4025 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4026 dev = &rte_eth_devices[port_id];
4028 if (reta_conf == NULL) {
4030 "Cannot query ethdev port %u RSS RETA from NULL config\n",
4035 /* Check mask bits */
4036 ret = eth_check_reta_mask(reta_conf, reta_size);
4040 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->reta_query, -ENOTSUP);
4041 return eth_err(port_id, (*dev->dev_ops->reta_query)(dev, reta_conf,
4046 rte_eth_dev_rss_hash_update(uint16_t port_id,
4047 struct rte_eth_rss_conf *rss_conf)
4049 struct rte_eth_dev *dev;
4050 struct rte_eth_dev_info dev_info = { .flow_type_rss_offloads = 0, };
4053 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4054 dev = &rte_eth_devices[port_id];
4056 if (rss_conf == NULL) {
4058 "Cannot update ethdev port %u RSS hash from NULL config\n",
4063 ret = rte_eth_dev_info_get(port_id, &dev_info);
4067 rss_conf->rss_hf = rte_eth_rss_hf_refine(rss_conf->rss_hf);
4068 if ((dev_info.flow_type_rss_offloads | rss_conf->rss_hf) !=
4069 dev_info.flow_type_rss_offloads) {
4071 "Ethdev port_id=%u invalid rss_hf: 0x%"PRIx64", valid value: 0x%"PRIx64"\n",
4072 port_id, rss_conf->rss_hf,
4073 dev_info.flow_type_rss_offloads);
4076 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rss_hash_update, -ENOTSUP);
4077 return eth_err(port_id, (*dev->dev_ops->rss_hash_update)(dev,
4082 rte_eth_dev_rss_hash_conf_get(uint16_t port_id,
4083 struct rte_eth_rss_conf *rss_conf)
4085 struct rte_eth_dev *dev;
4087 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4088 dev = &rte_eth_devices[port_id];
4090 if (rss_conf == NULL) {
4092 "Cannot get ethdev port %u RSS hash config to NULL\n",
4097 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rss_hash_conf_get, -ENOTSUP);
4098 return eth_err(port_id, (*dev->dev_ops->rss_hash_conf_get)(dev,
4103 rte_eth_dev_udp_tunnel_port_add(uint16_t port_id,
4104 struct rte_eth_udp_tunnel *udp_tunnel)
4106 struct rte_eth_dev *dev;
4108 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4109 dev = &rte_eth_devices[port_id];
4111 if (udp_tunnel == NULL) {
4113 "Cannot add ethdev port %u UDP tunnel port from NULL UDP tunnel\n",
4118 if (udp_tunnel->prot_type >= RTE_TUNNEL_TYPE_MAX) {
4119 RTE_ETHDEV_LOG(ERR, "Invalid tunnel type\n");
4123 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->udp_tunnel_port_add, -ENOTSUP);
4124 return eth_err(port_id, (*dev->dev_ops->udp_tunnel_port_add)(dev,
4129 rte_eth_dev_udp_tunnel_port_delete(uint16_t port_id,
4130 struct rte_eth_udp_tunnel *udp_tunnel)
4132 struct rte_eth_dev *dev;
4134 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4135 dev = &rte_eth_devices[port_id];
4137 if (udp_tunnel == NULL) {
4139 "Cannot delete ethdev port %u UDP tunnel port from NULL UDP tunnel\n",
4144 if (udp_tunnel->prot_type >= RTE_TUNNEL_TYPE_MAX) {
4145 RTE_ETHDEV_LOG(ERR, "Invalid tunnel type\n");
4149 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->udp_tunnel_port_del, -ENOTSUP);
4150 return eth_err(port_id, (*dev->dev_ops->udp_tunnel_port_del)(dev,
4155 rte_eth_led_on(uint16_t port_id)
4157 struct rte_eth_dev *dev;
4159 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4160 dev = &rte_eth_devices[port_id];
4162 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_led_on, -ENOTSUP);
4163 return eth_err(port_id, (*dev->dev_ops->dev_led_on)(dev));
4167 rte_eth_led_off(uint16_t port_id)
4169 struct rte_eth_dev *dev;
4171 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4172 dev = &rte_eth_devices[port_id];
4174 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_led_off, -ENOTSUP);
4175 return eth_err(port_id, (*dev->dev_ops->dev_led_off)(dev));
4179 rte_eth_fec_get_capability(uint16_t port_id,
4180 struct rte_eth_fec_capa *speed_fec_capa,
4183 struct rte_eth_dev *dev;
4186 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4187 dev = &rte_eth_devices[port_id];
4189 if (speed_fec_capa == NULL && num > 0) {
4191 "Cannot get ethdev port %u FEC capability to NULL when array size is non zero\n",
4196 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->fec_get_capability, -ENOTSUP);
4197 ret = (*dev->dev_ops->fec_get_capability)(dev, speed_fec_capa, num);
4203 rte_eth_fec_get(uint16_t port_id, uint32_t *fec_capa)
4205 struct rte_eth_dev *dev;
4207 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4208 dev = &rte_eth_devices[port_id];
4210 if (fec_capa == NULL) {
4212 "Cannot get ethdev port %u current FEC mode to NULL\n",
4217 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->fec_get, -ENOTSUP);
4218 return eth_err(port_id, (*dev->dev_ops->fec_get)(dev, fec_capa));
4222 rte_eth_fec_set(uint16_t port_id, uint32_t fec_capa)
4224 struct rte_eth_dev *dev;
4226 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4227 dev = &rte_eth_devices[port_id];
4229 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->fec_set, -ENOTSUP);
4230 return eth_err(port_id, (*dev->dev_ops->fec_set)(dev, fec_capa));
4234 * Returns index into MAC address array of addr. Use 00:00:00:00:00:00 to find
4238 eth_dev_get_mac_addr_index(uint16_t port_id, const struct rte_ether_addr *addr)
4240 struct rte_eth_dev_info dev_info;
4241 struct rte_eth_dev *dev = &rte_eth_devices[port_id];
4245 ret = rte_eth_dev_info_get(port_id, &dev_info);
4249 for (i = 0; i < dev_info.max_mac_addrs; i++)
4250 if (memcmp(addr, &dev->data->mac_addrs[i],
4251 RTE_ETHER_ADDR_LEN) == 0)
4257 static const struct rte_ether_addr null_mac_addr;
4260 rte_eth_dev_mac_addr_add(uint16_t port_id, struct rte_ether_addr *addr,
4263 struct rte_eth_dev *dev;
4268 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4269 dev = &rte_eth_devices[port_id];
4273 "Cannot add ethdev port %u MAC address from NULL address\n",
4278 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_add, -ENOTSUP);
4280 if (rte_is_zero_ether_addr(addr)) {
4281 RTE_ETHDEV_LOG(ERR, "Port %u: Cannot add NULL MAC address\n",
4285 if (pool >= ETH_64_POOLS) {
4286 RTE_ETHDEV_LOG(ERR, "Pool id must be 0-%d\n", ETH_64_POOLS - 1);
4290 index = eth_dev_get_mac_addr_index(port_id, addr);
4292 index = eth_dev_get_mac_addr_index(port_id, &null_mac_addr);
4294 RTE_ETHDEV_LOG(ERR, "Port %u: MAC address array full\n",
4299 pool_mask = dev->data->mac_pool_sel[index];
4301 /* Check if both MAC address and pool is already there, and do nothing */
4302 if (pool_mask & (1ULL << pool))
4307 ret = (*dev->dev_ops->mac_addr_add)(dev, addr, index, pool);
4310 /* Update address in NIC data structure */
4311 rte_ether_addr_copy(addr, &dev->data->mac_addrs[index]);
4313 /* Update pool bitmap in NIC data structure */
4314 dev->data->mac_pool_sel[index] |= (1ULL << pool);
4317 return eth_err(port_id, ret);
4321 rte_eth_dev_mac_addr_remove(uint16_t port_id, struct rte_ether_addr *addr)
4323 struct rte_eth_dev *dev;
4326 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4327 dev = &rte_eth_devices[port_id];
4331 "Cannot remove ethdev port %u MAC address from NULL address\n",
4336 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_remove, -ENOTSUP);
4338 index = eth_dev_get_mac_addr_index(port_id, addr);
4341 "Port %u: Cannot remove default MAC address\n",
4344 } else if (index < 0)
4345 return 0; /* Do nothing if address wasn't found */
4348 (*dev->dev_ops->mac_addr_remove)(dev, index);
4350 /* Update address in NIC data structure */
4351 rte_ether_addr_copy(&null_mac_addr, &dev->data->mac_addrs[index]);
4353 /* reset pool bitmap */
4354 dev->data->mac_pool_sel[index] = 0;
4360 rte_eth_dev_default_mac_addr_set(uint16_t port_id, struct rte_ether_addr *addr)
4362 struct rte_eth_dev *dev;
4365 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4366 dev = &rte_eth_devices[port_id];
4370 "Cannot set ethdev port %u default MAC address from NULL address\n",
4375 if (!rte_is_valid_assigned_ether_addr(addr))
4378 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_set, -ENOTSUP);
4380 ret = (*dev->dev_ops->mac_addr_set)(dev, addr);
4384 /* Update default address in NIC data structure */
4385 rte_ether_addr_copy(addr, &dev->data->mac_addrs[0]);
4392 * Returns index into MAC address array of addr. Use 00:00:00:00:00:00 to find
4396 eth_dev_get_hash_mac_addr_index(uint16_t port_id,
4397 const struct rte_ether_addr *addr)
4399 struct rte_eth_dev_info dev_info;
4400 struct rte_eth_dev *dev = &rte_eth_devices[port_id];
4404 ret = rte_eth_dev_info_get(port_id, &dev_info);
4408 if (!dev->data->hash_mac_addrs)
4411 for (i = 0; i < dev_info.max_hash_mac_addrs; i++)
4412 if (memcmp(addr, &dev->data->hash_mac_addrs[i],
4413 RTE_ETHER_ADDR_LEN) == 0)
4420 rte_eth_dev_uc_hash_table_set(uint16_t port_id, struct rte_ether_addr *addr,
4425 struct rte_eth_dev *dev;
4427 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4428 dev = &rte_eth_devices[port_id];
4432 "Cannot set ethdev port %u unicast hash table from NULL address\n",
4437 if (rte_is_zero_ether_addr(addr)) {
4438 RTE_ETHDEV_LOG(ERR, "Port %u: Cannot add NULL MAC address\n",
4443 index = eth_dev_get_hash_mac_addr_index(port_id, addr);
4444 /* Check if it's already there, and do nothing */
4445 if ((index >= 0) && on)
4451 "Port %u: the MAC address was not set in UTA\n",
4456 index = eth_dev_get_hash_mac_addr_index(port_id, &null_mac_addr);
4458 RTE_ETHDEV_LOG(ERR, "Port %u: MAC address array full\n",
4464 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->uc_hash_table_set, -ENOTSUP);
4465 ret = (*dev->dev_ops->uc_hash_table_set)(dev, addr, on);
4467 /* Update address in NIC data structure */
4469 rte_ether_addr_copy(addr,
4470 &dev->data->hash_mac_addrs[index]);
4472 rte_ether_addr_copy(&null_mac_addr,
4473 &dev->data->hash_mac_addrs[index]);
4476 return eth_err(port_id, ret);
4480 rte_eth_dev_uc_all_hash_table_set(uint16_t port_id, uint8_t on)
4482 struct rte_eth_dev *dev;
4484 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4485 dev = &rte_eth_devices[port_id];
4487 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->uc_all_hash_table_set, -ENOTSUP);
4488 return eth_err(port_id, (*dev->dev_ops->uc_all_hash_table_set)(dev,
4492 int rte_eth_set_queue_rate_limit(uint16_t port_id, uint16_t queue_idx,
4495 struct rte_eth_dev *dev;
4496 struct rte_eth_dev_info dev_info;
4497 struct rte_eth_link link;
4500 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4501 dev = &rte_eth_devices[port_id];
4503 ret = rte_eth_dev_info_get(port_id, &dev_info);
4507 link = dev->data->dev_link;
4509 if (queue_idx > dev_info.max_tx_queues) {
4511 "Set queue rate limit:port %u: invalid queue id=%u\n",
4512 port_id, queue_idx);
4516 if (tx_rate > link.link_speed) {
4518 "Set queue rate limit:invalid tx_rate=%u, bigger than link speed= %d\n",
4519 tx_rate, link.link_speed);
4523 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_queue_rate_limit, -ENOTSUP);
4524 return eth_err(port_id, (*dev->dev_ops->set_queue_rate_limit)(dev,
4525 queue_idx, tx_rate));
4529 rte_eth_mirror_rule_set(uint16_t port_id,
4530 struct rte_eth_mirror_conf *mirror_conf,
4531 uint8_t rule_id, uint8_t on)
4533 struct rte_eth_dev *dev;
4535 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4536 dev = &rte_eth_devices[port_id];
4538 if (mirror_conf == NULL) {
4540 "Cannot set ethdev port %u mirror rule from NULL config\n",
4545 if (mirror_conf->rule_type == 0) {
4546 RTE_ETHDEV_LOG(ERR, "Mirror rule type can not be 0\n");
4550 if (mirror_conf->dst_pool >= ETH_64_POOLS) {
4551 RTE_ETHDEV_LOG(ERR, "Invalid dst pool, pool id must be 0-%d\n",
4556 if ((mirror_conf->rule_type & (ETH_MIRROR_VIRTUAL_POOL_UP |
4557 ETH_MIRROR_VIRTUAL_POOL_DOWN)) &&
4558 (mirror_conf->pool_mask == 0)) {
4560 "Invalid mirror pool, pool mask can not be 0\n");
4564 if ((mirror_conf->rule_type & ETH_MIRROR_VLAN) &&
4565 mirror_conf->vlan.vlan_mask == 0) {
4567 "Invalid vlan mask, vlan mask can not be 0\n");
4571 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mirror_rule_set, -ENOTSUP);
4573 return eth_err(port_id, (*dev->dev_ops->mirror_rule_set)(dev,
4574 mirror_conf, rule_id, on));
4578 rte_eth_mirror_rule_reset(uint16_t port_id, uint8_t rule_id)
4580 struct rte_eth_dev *dev;
4582 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4583 dev = &rte_eth_devices[port_id];
4585 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mirror_rule_reset, -ENOTSUP);
4586 return eth_err(port_id, (*dev->dev_ops->mirror_rule_reset)(dev, rule_id));
4589 RTE_INIT(eth_dev_init_cb_lists)
4593 for (i = 0; i < RTE_MAX_ETHPORTS; i++)
4594 TAILQ_INIT(&rte_eth_devices[i].link_intr_cbs);
4598 rte_eth_dev_callback_register(uint16_t port_id,
4599 enum rte_eth_event_type event,
4600 rte_eth_dev_cb_fn cb_fn, void *cb_arg)
4602 struct rte_eth_dev *dev;
4603 struct rte_eth_dev_callback *user_cb;
4607 if (cb_fn == NULL) {
4609 "Cannot register ethdev port %u callback from NULL\n",
4614 if (!rte_eth_dev_is_valid_port(port_id) && port_id != RTE_ETH_ALL) {
4615 RTE_ETHDEV_LOG(ERR, "Invalid port_id=%d\n", port_id);
4619 if (port_id == RTE_ETH_ALL) {
4621 last_port = RTE_MAX_ETHPORTS - 1;
4623 next_port = last_port = port_id;
4626 rte_spinlock_lock(ð_dev_cb_lock);
4629 dev = &rte_eth_devices[next_port];
4631 TAILQ_FOREACH(user_cb, &(dev->link_intr_cbs), next) {
4632 if (user_cb->cb_fn == cb_fn &&
4633 user_cb->cb_arg == cb_arg &&
4634 user_cb->event == event) {
4639 /* create a new callback. */
4640 if (user_cb == NULL) {
4641 user_cb = rte_zmalloc("INTR_USER_CALLBACK",
4642 sizeof(struct rte_eth_dev_callback), 0);
4643 if (user_cb != NULL) {
4644 user_cb->cb_fn = cb_fn;
4645 user_cb->cb_arg = cb_arg;
4646 user_cb->event = event;
4647 TAILQ_INSERT_TAIL(&(dev->link_intr_cbs),
4650 rte_spinlock_unlock(ð_dev_cb_lock);
4651 rte_eth_dev_callback_unregister(port_id, event,
4657 } while (++next_port <= last_port);
4659 rte_spinlock_unlock(ð_dev_cb_lock);
4664 rte_eth_dev_callback_unregister(uint16_t port_id,
4665 enum rte_eth_event_type event,
4666 rte_eth_dev_cb_fn cb_fn, void *cb_arg)
4669 struct rte_eth_dev *dev;
4670 struct rte_eth_dev_callback *cb, *next;
4674 if (cb_fn == NULL) {
4676 "Cannot unregister ethdev port %u callback from NULL\n",
4681 if (!rte_eth_dev_is_valid_port(port_id) && port_id != RTE_ETH_ALL) {
4682 RTE_ETHDEV_LOG(ERR, "Invalid port_id=%d\n", port_id);
4686 if (port_id == RTE_ETH_ALL) {
4688 last_port = RTE_MAX_ETHPORTS - 1;
4690 next_port = last_port = port_id;
4693 rte_spinlock_lock(ð_dev_cb_lock);
4696 dev = &rte_eth_devices[next_port];
4698 for (cb = TAILQ_FIRST(&dev->link_intr_cbs); cb != NULL;
4701 next = TAILQ_NEXT(cb, next);
4703 if (cb->cb_fn != cb_fn || cb->event != event ||
4704 (cb_arg != (void *)-1 && cb->cb_arg != cb_arg))
4708 * if this callback is not executing right now,
4711 if (cb->active == 0) {
4712 TAILQ_REMOVE(&(dev->link_intr_cbs), cb, next);
4718 } while (++next_port <= last_port);
4720 rte_spinlock_unlock(ð_dev_cb_lock);
4725 rte_eth_dev_callback_process(struct rte_eth_dev *dev,
4726 enum rte_eth_event_type event, void *ret_param)
4728 struct rte_eth_dev_callback *cb_lst;
4729 struct rte_eth_dev_callback dev_cb;
4732 rte_spinlock_lock(ð_dev_cb_lock);
4733 TAILQ_FOREACH(cb_lst, &(dev->link_intr_cbs), next) {
4734 if (cb_lst->cb_fn == NULL || cb_lst->event != event)
4738 if (ret_param != NULL)
4739 dev_cb.ret_param = ret_param;
4741 rte_spinlock_unlock(ð_dev_cb_lock);
4742 rc = dev_cb.cb_fn(dev->data->port_id, dev_cb.event,
4743 dev_cb.cb_arg, dev_cb.ret_param);
4744 rte_spinlock_lock(ð_dev_cb_lock);
4747 rte_spinlock_unlock(ð_dev_cb_lock);
4752 rte_eth_dev_probing_finish(struct rte_eth_dev *dev)
4757 rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_NEW, NULL);
4759 dev->state = RTE_ETH_DEV_ATTACHED;
4763 rte_eth_dev_rx_intr_ctl(uint16_t port_id, int epfd, int op, void *data)
4766 struct rte_eth_dev *dev;
4767 struct rte_intr_handle *intr_handle;
4771 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4772 dev = &rte_eth_devices[port_id];
4774 if (!dev->intr_handle) {
4775 RTE_ETHDEV_LOG(ERR, "RX Intr handle unset\n");
4779 intr_handle = dev->intr_handle;
4780 if (!intr_handle->intr_vec) {
4781 RTE_ETHDEV_LOG(ERR, "RX Intr vector unset\n");
4785 for (qid = 0; qid < dev->data->nb_rx_queues; qid++) {
4786 vec = intr_handle->intr_vec[qid];
4787 rc = rte_intr_rx_ctl(intr_handle, epfd, op, vec, data);
4788 if (rc && rc != -EEXIST) {
4790 "p %u q %u rx ctl error op %d epfd %d vec %u\n",
4791 port_id, qid, op, epfd, vec);
4799 rte_eth_dev_rx_intr_ctl_q_get_fd(uint16_t port_id, uint16_t queue_id)
4801 struct rte_intr_handle *intr_handle;
4802 struct rte_eth_dev *dev;
4803 unsigned int efd_idx;
4807 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -1);
4808 dev = &rte_eth_devices[port_id];
4810 if (queue_id >= dev->data->nb_rx_queues) {
4811 RTE_ETHDEV_LOG(ERR, "Invalid RX queue_id=%u\n", queue_id);
4815 if (!dev->intr_handle) {
4816 RTE_ETHDEV_LOG(ERR, "RX Intr handle unset\n");
4820 intr_handle = dev->intr_handle;
4821 if (!intr_handle->intr_vec) {
4822 RTE_ETHDEV_LOG(ERR, "RX Intr vector unset\n");
4826 vec = intr_handle->intr_vec[queue_id];
4827 efd_idx = (vec >= RTE_INTR_VEC_RXTX_OFFSET) ?
4828 (vec - RTE_INTR_VEC_RXTX_OFFSET) : vec;
4829 fd = intr_handle->efds[efd_idx];
4835 eth_dev_dma_mzone_name(char *name, size_t len, uint16_t port_id, uint16_t queue_id,
4836 const char *ring_name)
4838 return snprintf(name, len, "eth_p%d_q%d_%s",
4839 port_id, queue_id, ring_name);
4842 const struct rte_memzone *
4843 rte_eth_dma_zone_reserve(const struct rte_eth_dev *dev, const char *ring_name,
4844 uint16_t queue_id, size_t size, unsigned align,
4847 char z_name[RTE_MEMZONE_NAMESIZE];
4848 const struct rte_memzone *mz;
4851 rc = eth_dev_dma_mzone_name(z_name, sizeof(z_name), dev->data->port_id,
4852 queue_id, ring_name);
4853 if (rc >= RTE_MEMZONE_NAMESIZE) {
4854 RTE_ETHDEV_LOG(ERR, "ring name too long\n");
4855 rte_errno = ENAMETOOLONG;
4859 mz = rte_memzone_lookup(z_name);
4861 if ((socket_id != SOCKET_ID_ANY && socket_id != mz->socket_id) ||
4863 ((uintptr_t)mz->addr & (align - 1)) != 0) {
4865 "memzone %s does not justify the requested attributes\n",
4873 return rte_memzone_reserve_aligned(z_name, size, socket_id,
4874 RTE_MEMZONE_IOVA_CONTIG, align);
4878 rte_eth_dma_zone_free(const struct rte_eth_dev *dev, const char *ring_name,
4881 char z_name[RTE_MEMZONE_NAMESIZE];
4882 const struct rte_memzone *mz;
4885 rc = eth_dev_dma_mzone_name(z_name, sizeof(z_name), dev->data->port_id,
4886 queue_id, ring_name);
4887 if (rc >= RTE_MEMZONE_NAMESIZE) {
4888 RTE_ETHDEV_LOG(ERR, "ring name too long\n");
4889 return -ENAMETOOLONG;
4892 mz = rte_memzone_lookup(z_name);
4894 rc = rte_memzone_free(mz);
4902 rte_eth_dev_create(struct rte_device *device, const char *name,
4903 size_t priv_data_size,
4904 ethdev_bus_specific_init ethdev_bus_specific_init,
4905 void *bus_init_params,
4906 ethdev_init_t ethdev_init, void *init_params)
4908 struct rte_eth_dev *ethdev;
4911 RTE_FUNC_PTR_OR_ERR_RET(*ethdev_init, -EINVAL);
4913 if (rte_eal_process_type() == RTE_PROC_PRIMARY) {
4914 ethdev = rte_eth_dev_allocate(name);
4918 if (priv_data_size) {
4919 ethdev->data->dev_private = rte_zmalloc_socket(
4920 name, priv_data_size, RTE_CACHE_LINE_SIZE,
4923 if (!ethdev->data->dev_private) {
4925 "failed to allocate private data\n");
4931 ethdev = rte_eth_dev_attach_secondary(name);
4934 "secondary process attach failed, ethdev doesn't exist\n");
4939 ethdev->device = device;
4941 if (ethdev_bus_specific_init) {
4942 retval = ethdev_bus_specific_init(ethdev, bus_init_params);
4945 "ethdev bus specific initialisation failed\n");
4950 retval = ethdev_init(ethdev, init_params);
4952 RTE_ETHDEV_LOG(ERR, "ethdev initialisation failed\n");
4956 rte_eth_dev_probing_finish(ethdev);
4961 rte_eth_dev_release_port(ethdev);
4966 rte_eth_dev_destroy(struct rte_eth_dev *ethdev,
4967 ethdev_uninit_t ethdev_uninit)
4971 ethdev = rte_eth_dev_allocated(ethdev->data->name);
4975 RTE_FUNC_PTR_OR_ERR_RET(*ethdev_uninit, -EINVAL);
4977 ret = ethdev_uninit(ethdev);
4981 return rte_eth_dev_release_port(ethdev);
4985 rte_eth_dev_rx_intr_ctl_q(uint16_t port_id, uint16_t queue_id,
4986 int epfd, int op, void *data)
4989 struct rte_eth_dev *dev;
4990 struct rte_intr_handle *intr_handle;
4993 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
4994 dev = &rte_eth_devices[port_id];
4996 if (queue_id >= dev->data->nb_rx_queues) {
4997 RTE_ETHDEV_LOG(ERR, "Invalid RX queue_id=%u\n", queue_id);
5001 if (!dev->intr_handle) {
5002 RTE_ETHDEV_LOG(ERR, "RX Intr handle unset\n");
5006 intr_handle = dev->intr_handle;
5007 if (!intr_handle->intr_vec) {
5008 RTE_ETHDEV_LOG(ERR, "RX Intr vector unset\n");
5012 vec = intr_handle->intr_vec[queue_id];
5013 rc = rte_intr_rx_ctl(intr_handle, epfd, op, vec, data);
5014 if (rc && rc != -EEXIST) {
5016 "p %u q %u rx ctl error op %d epfd %d vec %u\n",
5017 port_id, queue_id, op, epfd, vec);
5025 rte_eth_dev_rx_intr_enable(uint16_t port_id,
5028 struct rte_eth_dev *dev;
5031 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5032 dev = &rte_eth_devices[port_id];
5034 ret = eth_dev_validate_rx_queue(dev, queue_id);
5038 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_intr_enable, -ENOTSUP);
5039 return eth_err(port_id, (*dev->dev_ops->rx_queue_intr_enable)(dev, queue_id));
5043 rte_eth_dev_rx_intr_disable(uint16_t port_id,
5046 struct rte_eth_dev *dev;
5049 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5050 dev = &rte_eth_devices[port_id];
5052 ret = eth_dev_validate_rx_queue(dev, queue_id);
5056 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_intr_disable, -ENOTSUP);
5057 return eth_err(port_id, (*dev->dev_ops->rx_queue_intr_disable)(dev, queue_id));
5061 const struct rte_eth_rxtx_callback *
5062 rte_eth_add_rx_callback(uint16_t port_id, uint16_t queue_id,
5063 rte_rx_callback_fn fn, void *user_param)
5065 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
5066 rte_errno = ENOTSUP;
5069 struct rte_eth_dev *dev;
5071 /* check input parameters */
5072 if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL ||
5073 queue_id >= rte_eth_devices[port_id].data->nb_rx_queues) {
5077 dev = &rte_eth_devices[port_id];
5078 if (rte_eth_dev_is_rx_hairpin_queue(dev, queue_id)) {
5082 struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0);
5090 cb->param = user_param;
5092 rte_spinlock_lock(ð_dev_rx_cb_lock);
5093 /* Add the callbacks in fifo order. */
5094 struct rte_eth_rxtx_callback *tail =
5095 rte_eth_devices[port_id].post_rx_burst_cbs[queue_id];
5098 /* Stores to cb->fn and cb->param should complete before
5099 * cb is visible to data plane.
5102 &rte_eth_devices[port_id].post_rx_burst_cbs[queue_id],
5103 cb, __ATOMIC_RELEASE);
5108 /* Stores to cb->fn and cb->param should complete before
5109 * cb is visible to data plane.
5111 __atomic_store_n(&tail->next, cb, __ATOMIC_RELEASE);
5113 rte_spinlock_unlock(ð_dev_rx_cb_lock);
5118 const struct rte_eth_rxtx_callback *
5119 rte_eth_add_first_rx_callback(uint16_t port_id, uint16_t queue_id,
5120 rte_rx_callback_fn fn, void *user_param)
5122 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
5123 rte_errno = ENOTSUP;
5126 /* check input parameters */
5127 if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL ||
5128 queue_id >= rte_eth_devices[port_id].data->nb_rx_queues) {
5133 struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0);
5141 cb->param = user_param;
5143 rte_spinlock_lock(ð_dev_rx_cb_lock);
5144 /* Add the callbacks at first position */
5145 cb->next = rte_eth_devices[port_id].post_rx_burst_cbs[queue_id];
5146 /* Stores to cb->fn, cb->param and cb->next should complete before
5147 * cb is visible to data plane threads.
5150 &rte_eth_devices[port_id].post_rx_burst_cbs[queue_id],
5151 cb, __ATOMIC_RELEASE);
5152 rte_spinlock_unlock(ð_dev_rx_cb_lock);
5157 const struct rte_eth_rxtx_callback *
5158 rte_eth_add_tx_callback(uint16_t port_id, uint16_t queue_id,
5159 rte_tx_callback_fn fn, void *user_param)
5161 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
5162 rte_errno = ENOTSUP;
5165 struct rte_eth_dev *dev;
5167 /* check input parameters */
5168 if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL ||
5169 queue_id >= rte_eth_devices[port_id].data->nb_tx_queues) {
5174 dev = &rte_eth_devices[port_id];
5175 if (rte_eth_dev_is_tx_hairpin_queue(dev, queue_id)) {
5180 struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0);
5188 cb->param = user_param;
5190 rte_spinlock_lock(ð_dev_tx_cb_lock);
5191 /* Add the callbacks in fifo order. */
5192 struct rte_eth_rxtx_callback *tail =
5193 rte_eth_devices[port_id].pre_tx_burst_cbs[queue_id];
5196 /* Stores to cb->fn and cb->param should complete before
5197 * cb is visible to data plane.
5200 &rte_eth_devices[port_id].pre_tx_burst_cbs[queue_id],
5201 cb, __ATOMIC_RELEASE);
5206 /* Stores to cb->fn and cb->param should complete before
5207 * cb is visible to data plane.
5209 __atomic_store_n(&tail->next, cb, __ATOMIC_RELEASE);
5211 rte_spinlock_unlock(ð_dev_tx_cb_lock);
5217 rte_eth_remove_rx_callback(uint16_t port_id, uint16_t queue_id,
5218 const struct rte_eth_rxtx_callback *user_cb)
5220 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
5223 /* Check input parameters. */
5224 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5225 if (user_cb == NULL ||
5226 queue_id >= rte_eth_devices[port_id].data->nb_rx_queues)
5229 struct rte_eth_dev *dev = &rte_eth_devices[port_id];
5230 struct rte_eth_rxtx_callback *cb;
5231 struct rte_eth_rxtx_callback **prev_cb;
5234 rte_spinlock_lock(ð_dev_rx_cb_lock);
5235 prev_cb = &dev->post_rx_burst_cbs[queue_id];
5236 for (; *prev_cb != NULL; prev_cb = &cb->next) {
5238 if (cb == user_cb) {
5239 /* Remove the user cb from the callback list. */
5240 __atomic_store_n(prev_cb, cb->next, __ATOMIC_RELAXED);
5245 rte_spinlock_unlock(ð_dev_rx_cb_lock);
5251 rte_eth_remove_tx_callback(uint16_t port_id, uint16_t queue_id,
5252 const struct rte_eth_rxtx_callback *user_cb)
5254 #ifndef RTE_ETHDEV_RXTX_CALLBACKS
5257 /* Check input parameters. */
5258 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5259 if (user_cb == NULL ||
5260 queue_id >= rte_eth_devices[port_id].data->nb_tx_queues)
5263 struct rte_eth_dev *dev = &rte_eth_devices[port_id];
5265 struct rte_eth_rxtx_callback *cb;
5266 struct rte_eth_rxtx_callback **prev_cb;
5268 rte_spinlock_lock(ð_dev_tx_cb_lock);
5269 prev_cb = &dev->pre_tx_burst_cbs[queue_id];
5270 for (; *prev_cb != NULL; prev_cb = &cb->next) {
5272 if (cb == user_cb) {
5273 /* Remove the user cb from the callback list. */
5274 __atomic_store_n(prev_cb, cb->next, __ATOMIC_RELAXED);
5279 rte_spinlock_unlock(ð_dev_tx_cb_lock);
5285 rte_eth_rx_queue_info_get(uint16_t port_id, uint16_t queue_id,
5286 struct rte_eth_rxq_info *qinfo)
5288 struct rte_eth_dev *dev;
5290 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5291 dev = &rte_eth_devices[port_id];
5293 if (queue_id >= dev->data->nb_rx_queues) {
5294 RTE_ETHDEV_LOG(ERR, "Invalid RX queue_id=%u\n", queue_id);
5298 if (qinfo == NULL) {
5299 RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u Rx queue %u info to NULL\n",
5304 if (dev->data->rx_queues == NULL ||
5305 dev->data->rx_queues[queue_id] == NULL) {
5307 "Rx queue %"PRIu16" of device with port_id=%"
5308 PRIu16" has not been setup\n",
5313 if (rte_eth_dev_is_rx_hairpin_queue(dev, queue_id)) {
5314 RTE_ETHDEV_LOG(INFO,
5315 "Can't get hairpin Rx queue %"PRIu16" info of device with port_id=%"PRIu16"\n",
5320 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rxq_info_get, -ENOTSUP);
5322 memset(qinfo, 0, sizeof(*qinfo));
5323 dev->dev_ops->rxq_info_get(dev, queue_id, qinfo);
5324 qinfo->queue_state = dev->data->rx_queue_state[queue_id];
5330 rte_eth_tx_queue_info_get(uint16_t port_id, uint16_t queue_id,
5331 struct rte_eth_txq_info *qinfo)
5333 struct rte_eth_dev *dev;
5335 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5336 dev = &rte_eth_devices[port_id];
5338 if (queue_id >= dev->data->nb_tx_queues) {
5339 RTE_ETHDEV_LOG(ERR, "Invalid TX queue_id=%u\n", queue_id);
5343 if (qinfo == NULL) {
5344 RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u Tx queue %u info to NULL\n",
5349 if (dev->data->tx_queues == NULL ||
5350 dev->data->tx_queues[queue_id] == NULL) {
5352 "Tx queue %"PRIu16" of device with port_id=%"
5353 PRIu16" has not been setup\n",
5358 if (rte_eth_dev_is_tx_hairpin_queue(dev, queue_id)) {
5359 RTE_ETHDEV_LOG(INFO,
5360 "Can't get hairpin Tx queue %"PRIu16" info of device with port_id=%"PRIu16"\n",
5365 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->txq_info_get, -ENOTSUP);
5367 memset(qinfo, 0, sizeof(*qinfo));
5368 dev->dev_ops->txq_info_get(dev, queue_id, qinfo);
5369 qinfo->queue_state = dev->data->tx_queue_state[queue_id];
5375 rte_eth_rx_burst_mode_get(uint16_t port_id, uint16_t queue_id,
5376 struct rte_eth_burst_mode *mode)
5378 struct rte_eth_dev *dev;
5380 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5381 dev = &rte_eth_devices[port_id];
5383 if (queue_id >= dev->data->nb_rx_queues) {
5384 RTE_ETHDEV_LOG(ERR, "Invalid RX queue_id=%u\n", queue_id);
5390 "Cannot get ethdev port %u Rx queue %u burst mode to NULL\n",
5395 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_burst_mode_get, -ENOTSUP);
5396 memset(mode, 0, sizeof(*mode));
5397 return eth_err(port_id,
5398 dev->dev_ops->rx_burst_mode_get(dev, queue_id, mode));
5402 rte_eth_tx_burst_mode_get(uint16_t port_id, uint16_t queue_id,
5403 struct rte_eth_burst_mode *mode)
5405 struct rte_eth_dev *dev;
5407 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5408 dev = &rte_eth_devices[port_id];
5410 if (queue_id >= dev->data->nb_tx_queues) {
5411 RTE_ETHDEV_LOG(ERR, "Invalid TX queue_id=%u\n", queue_id);
5417 "Cannot get ethdev port %u Tx queue %u burst mode to NULL\n",
5422 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_burst_mode_get, -ENOTSUP);
5423 memset(mode, 0, sizeof(*mode));
5424 return eth_err(port_id,
5425 dev->dev_ops->tx_burst_mode_get(dev, queue_id, mode));
5429 rte_eth_get_monitor_addr(uint16_t port_id, uint16_t queue_id,
5430 struct rte_power_monitor_cond *pmc)
5432 struct rte_eth_dev *dev;
5434 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5435 dev = &rte_eth_devices[port_id];
5437 if (queue_id >= dev->data->nb_rx_queues) {
5438 RTE_ETHDEV_LOG(ERR, "Invalid Rx queue_id=%u\n", queue_id);
5444 "Cannot get ethdev port %u Rx queue %u power monitor condition to NULL\n",
5449 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_monitor_addr, -ENOTSUP);
5450 return eth_err(port_id,
5451 dev->dev_ops->get_monitor_addr(dev->data->rx_queues[queue_id], pmc));
5455 rte_eth_dev_set_mc_addr_list(uint16_t port_id,
5456 struct rte_ether_addr *mc_addr_set,
5457 uint32_t nb_mc_addr)
5459 struct rte_eth_dev *dev;
5461 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5462 dev = &rte_eth_devices[port_id];
5464 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_mc_addr_list, -ENOTSUP);
5465 return eth_err(port_id, dev->dev_ops->set_mc_addr_list(dev,
5466 mc_addr_set, nb_mc_addr));
5470 rte_eth_timesync_enable(uint16_t port_id)
5472 struct rte_eth_dev *dev;
5474 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5475 dev = &rte_eth_devices[port_id];
5477 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_enable, -ENOTSUP);
5478 return eth_err(port_id, (*dev->dev_ops->timesync_enable)(dev));
5482 rte_eth_timesync_disable(uint16_t port_id)
5484 struct rte_eth_dev *dev;
5486 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5487 dev = &rte_eth_devices[port_id];
5489 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_disable, -ENOTSUP);
5490 return eth_err(port_id, (*dev->dev_ops->timesync_disable)(dev));
5494 rte_eth_timesync_read_rx_timestamp(uint16_t port_id, struct timespec *timestamp,
5497 struct rte_eth_dev *dev;
5499 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5500 dev = &rte_eth_devices[port_id];
5502 if (timestamp == NULL) {
5504 "Cannot read ethdev port %u Rx timestamp to NULL\n",
5509 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_rx_timestamp, -ENOTSUP);
5510 return eth_err(port_id, (*dev->dev_ops->timesync_read_rx_timestamp)
5511 (dev, timestamp, flags));
5515 rte_eth_timesync_read_tx_timestamp(uint16_t port_id,
5516 struct timespec *timestamp)
5518 struct rte_eth_dev *dev;
5520 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5521 dev = &rte_eth_devices[port_id];
5523 if (timestamp == NULL) {
5525 "Cannot read ethdev port %u Tx timestamp to NULL\n",
5530 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_tx_timestamp, -ENOTSUP);
5531 return eth_err(port_id, (*dev->dev_ops->timesync_read_tx_timestamp)
5536 rte_eth_timesync_adjust_time(uint16_t port_id, int64_t delta)
5538 struct rte_eth_dev *dev;
5540 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5541 dev = &rte_eth_devices[port_id];
5543 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_adjust_time, -ENOTSUP);
5544 return eth_err(port_id, (*dev->dev_ops->timesync_adjust_time)(dev, delta));
5548 rte_eth_timesync_read_time(uint16_t port_id, struct timespec *timestamp)
5550 struct rte_eth_dev *dev;
5552 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5553 dev = &rte_eth_devices[port_id];
5555 if (timestamp == NULL) {
5557 "Cannot read ethdev port %u timesync time to NULL\n",
5562 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_time, -ENOTSUP);
5563 return eth_err(port_id, (*dev->dev_ops->timesync_read_time)(dev,
5568 rte_eth_timesync_write_time(uint16_t port_id, const struct timespec *timestamp)
5570 struct rte_eth_dev *dev;
5572 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5573 dev = &rte_eth_devices[port_id];
5575 if (timestamp == NULL) {
5577 "Cannot write ethdev port %u timesync from NULL time\n",
5582 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_write_time, -ENOTSUP);
5583 return eth_err(port_id, (*dev->dev_ops->timesync_write_time)(dev,
5588 rte_eth_read_clock(uint16_t port_id, uint64_t *clock)
5590 struct rte_eth_dev *dev;
5592 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5593 dev = &rte_eth_devices[port_id];
5595 if (clock == NULL) {
5596 RTE_ETHDEV_LOG(ERR, "Cannot read ethdev port %u clock to NULL\n",
5601 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->read_clock, -ENOTSUP);
5602 return eth_err(port_id, (*dev->dev_ops->read_clock)(dev, clock));
5606 rte_eth_dev_get_reg_info(uint16_t port_id, struct rte_dev_reg_info *info)
5608 struct rte_eth_dev *dev;
5610 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5611 dev = &rte_eth_devices[port_id];
5615 "Cannot get ethdev port %u register info to NULL\n",
5620 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_reg, -ENOTSUP);
5621 return eth_err(port_id, (*dev->dev_ops->get_reg)(dev, info));
5625 rte_eth_dev_get_eeprom_length(uint16_t port_id)
5627 struct rte_eth_dev *dev;
5629 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5630 dev = &rte_eth_devices[port_id];
5632 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_eeprom_length, -ENOTSUP);
5633 return eth_err(port_id, (*dev->dev_ops->get_eeprom_length)(dev));
5637 rte_eth_dev_get_eeprom(uint16_t port_id, struct rte_dev_eeprom_info *info)
5639 struct rte_eth_dev *dev;
5641 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5642 dev = &rte_eth_devices[port_id];
5646 "Cannot get ethdev port %u EEPROM info to NULL\n",
5651 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_eeprom, -ENOTSUP);
5652 return eth_err(port_id, (*dev->dev_ops->get_eeprom)(dev, info));
5656 rte_eth_dev_set_eeprom(uint16_t port_id, struct rte_dev_eeprom_info *info)
5658 struct rte_eth_dev *dev;
5660 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5661 dev = &rte_eth_devices[port_id];
5665 "Cannot set ethdev port %u EEPROM from NULL info\n",
5670 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_eeprom, -ENOTSUP);
5671 return eth_err(port_id, (*dev->dev_ops->set_eeprom)(dev, info));
5675 rte_eth_dev_get_module_info(uint16_t port_id,
5676 struct rte_eth_dev_module_info *modinfo)
5678 struct rte_eth_dev *dev;
5680 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5681 dev = &rte_eth_devices[port_id];
5683 if (modinfo == NULL) {
5685 "Cannot get ethdev port %u EEPROM module info to NULL\n",
5690 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_module_info, -ENOTSUP);
5691 return (*dev->dev_ops->get_module_info)(dev, modinfo);
5695 rte_eth_dev_get_module_eeprom(uint16_t port_id,
5696 struct rte_dev_eeprom_info *info)
5698 struct rte_eth_dev *dev;
5700 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5701 dev = &rte_eth_devices[port_id];
5705 "Cannot get ethdev port %u module EEPROM info to NULL\n",
5710 if (info->data == NULL) {
5712 "Cannot get ethdev port %u module EEPROM data to NULL\n",
5717 if (info->length == 0) {
5719 "Cannot get ethdev port %u module EEPROM to data with zero size\n",
5724 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_module_eeprom, -ENOTSUP);
5725 return (*dev->dev_ops->get_module_eeprom)(dev, info);
5729 rte_eth_dev_get_dcb_info(uint16_t port_id,
5730 struct rte_eth_dcb_info *dcb_info)
5732 struct rte_eth_dev *dev;
5734 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5735 dev = &rte_eth_devices[port_id];
5737 if (dcb_info == NULL) {
5739 "Cannot get ethdev port %u DCB info to NULL\n",
5744 memset(dcb_info, 0, sizeof(struct rte_eth_dcb_info));
5746 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_dcb_info, -ENOTSUP);
5747 return eth_err(port_id, (*dev->dev_ops->get_dcb_info)(dev, dcb_info));
5751 eth_dev_adjust_nb_desc(uint16_t *nb_desc,
5752 const struct rte_eth_desc_lim *desc_lim)
5754 if (desc_lim->nb_align != 0)
5755 *nb_desc = RTE_ALIGN_CEIL(*nb_desc, desc_lim->nb_align);
5757 if (desc_lim->nb_max != 0)
5758 *nb_desc = RTE_MIN(*nb_desc, desc_lim->nb_max);
5760 *nb_desc = RTE_MAX(*nb_desc, desc_lim->nb_min);
5764 rte_eth_dev_adjust_nb_rx_tx_desc(uint16_t port_id,
5765 uint16_t *nb_rx_desc,
5766 uint16_t *nb_tx_desc)
5768 struct rte_eth_dev_info dev_info;
5771 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5773 ret = rte_eth_dev_info_get(port_id, &dev_info);
5777 if (nb_rx_desc != NULL)
5778 eth_dev_adjust_nb_desc(nb_rx_desc, &dev_info.rx_desc_lim);
5780 if (nb_tx_desc != NULL)
5781 eth_dev_adjust_nb_desc(nb_tx_desc, &dev_info.tx_desc_lim);
5787 rte_eth_dev_hairpin_capability_get(uint16_t port_id,
5788 struct rte_eth_hairpin_cap *cap)
5790 struct rte_eth_dev *dev;
5792 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5793 dev = &rte_eth_devices[port_id];
5797 "Cannot get ethdev port %u hairpin capability to NULL\n",
5802 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_cap_get, -ENOTSUP);
5803 memset(cap, 0, sizeof(*cap));
5804 return eth_err(port_id, (*dev->dev_ops->hairpin_cap_get)(dev, cap));
5808 rte_eth_dev_is_rx_hairpin_queue(struct rte_eth_dev *dev, uint16_t queue_id)
5810 if (dev->data->rx_queue_state[queue_id] == RTE_ETH_QUEUE_STATE_HAIRPIN)
5816 rte_eth_dev_is_tx_hairpin_queue(struct rte_eth_dev *dev, uint16_t queue_id)
5818 if (dev->data->tx_queue_state[queue_id] == RTE_ETH_QUEUE_STATE_HAIRPIN)
5824 rte_eth_dev_pool_ops_supported(uint16_t port_id, const char *pool)
5826 struct rte_eth_dev *dev;
5828 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
5829 dev = &rte_eth_devices[port_id];
5833 "Cannot test ethdev port %u mempool operation from NULL pool\n",
5838 if (*dev->dev_ops->pool_ops_supported == NULL)
5839 return 1; /* all pools are supported */
5841 return (*dev->dev_ops->pool_ops_supported)(dev, pool);
5845 * A set of values to describe the possible states of a switch domain.
5847 enum rte_eth_switch_domain_state {
5848 RTE_ETH_SWITCH_DOMAIN_UNUSED = 0,
5849 RTE_ETH_SWITCH_DOMAIN_ALLOCATED
5853 * Array of switch domains available for allocation. Array is sized to
5854 * RTE_MAX_ETHPORTS elements as there cannot be more active switch domains than
5855 * ethdev ports in a single process.
5857 static struct rte_eth_dev_switch {
5858 enum rte_eth_switch_domain_state state;
5859 } eth_dev_switch_domains[RTE_MAX_ETHPORTS];
5862 rte_eth_switch_domain_alloc(uint16_t *domain_id)
5866 *domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID;
5868 for (i = 0; i < RTE_MAX_ETHPORTS; i++) {
5869 if (eth_dev_switch_domains[i].state ==
5870 RTE_ETH_SWITCH_DOMAIN_UNUSED) {
5871 eth_dev_switch_domains[i].state =
5872 RTE_ETH_SWITCH_DOMAIN_ALLOCATED;
5882 rte_eth_switch_domain_free(uint16_t domain_id)
5884 if (domain_id == RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID ||
5885 domain_id >= RTE_MAX_ETHPORTS)
5888 if (eth_dev_switch_domains[domain_id].state !=
5889 RTE_ETH_SWITCH_DOMAIN_ALLOCATED)
5892 eth_dev_switch_domains[domain_id].state = RTE_ETH_SWITCH_DOMAIN_UNUSED;
5898 eth_dev_devargs_tokenise(struct rte_kvargs *arglist, const char *str_in)
5901 struct rte_kvargs_pair *pair;
5904 arglist->str = strdup(str_in);
5905 if (arglist->str == NULL)
5908 letter = arglist->str;
5911 pair = &arglist->pairs[0];
5914 case 0: /* Initial */
5917 else if (*letter == '\0')
5924 case 1: /* Parsing key */
5925 if (*letter == '=') {
5927 pair->value = letter + 1;
5929 } else if (*letter == ',' || *letter == '\0')
5934 case 2: /* Parsing value */
5937 else if (*letter == ',') {
5940 pair = &arglist->pairs[arglist->count];
5942 } else if (*letter == '\0') {
5945 pair = &arglist->pairs[arglist->count];
5950 case 3: /* Parsing list */
5953 else if (*letter == '\0')
5962 rte_eth_devargs_parse(const char *dargs, struct rte_eth_devargs *eth_da)
5964 struct rte_kvargs args;
5965 struct rte_kvargs_pair *pair;
5969 memset(eth_da, 0, sizeof(*eth_da));
5971 result = eth_dev_devargs_tokenise(&args, dargs);
5975 for (i = 0; i < args.count; i++) {
5976 pair = &args.pairs[i];
5977 if (strcmp("representor", pair->key) == 0) {
5978 if (eth_da->type != RTE_ETH_REPRESENTOR_NONE) {
5979 RTE_LOG(ERR, EAL, "duplicated representor key: %s\n",
5984 result = rte_eth_devargs_parse_representor_ports(
5985 pair->value, eth_da);
5999 rte_eth_representor_id_get(const struct rte_eth_dev *ethdev,
6000 enum rte_eth_representor_type type,
6001 int controller, int pf, int representor_port,
6006 struct rte_eth_representor_info *info = NULL;
6009 if (type == RTE_ETH_REPRESENTOR_NONE)
6011 if (repr_id == NULL)
6014 /* Get PMD representor range info. */
6015 ret = rte_eth_representor_info_get(ethdev->data->port_id, NULL);
6016 if (ret == -ENOTSUP && type == RTE_ETH_REPRESENTOR_VF &&
6017 controller == -1 && pf == -1) {
6018 /* Direct mapping for legacy VF representor. */
6019 *repr_id = representor_port;
6021 } else if (ret < 0) {
6025 size = sizeof(*info) + n * sizeof(info->ranges[0]);
6026 info = calloc(1, size);
6029 info->nb_ranges_alloc = n;
6030 ret = rte_eth_representor_info_get(ethdev->data->port_id, info);
6034 /* Default controller and pf to caller. */
6035 if (controller == -1)
6036 controller = info->controller;
6040 /* Locate representor ID. */
6042 for (i = 0; i < info->nb_ranges; ++i) {
6043 if (info->ranges[i].type != type)
6045 if (info->ranges[i].controller != controller)
6047 if (info->ranges[i].id_end < info->ranges[i].id_base) {
6048 RTE_LOG(WARNING, EAL, "Port %hu invalid representor ID Range %u - %u, entry %d\n",
6049 ethdev->data->port_id, info->ranges[i].id_base,
6050 info->ranges[i].id_end, i);
6054 count = info->ranges[i].id_end - info->ranges[i].id_base + 1;
6055 switch (info->ranges[i].type) {
6056 case RTE_ETH_REPRESENTOR_PF:
6057 if (pf < info->ranges[i].pf ||
6058 pf >= info->ranges[i].pf + count)
6060 *repr_id = info->ranges[i].id_base +
6061 (pf - info->ranges[i].pf);
6064 case RTE_ETH_REPRESENTOR_VF:
6065 if (info->ranges[i].pf != pf)
6067 if (representor_port < info->ranges[i].vf ||
6068 representor_port >= info->ranges[i].vf + count)
6070 *repr_id = info->ranges[i].id_base +
6071 (representor_port - info->ranges[i].vf);
6074 case RTE_ETH_REPRESENTOR_SF:
6075 if (info->ranges[i].pf != pf)
6077 if (representor_port < info->ranges[i].sf ||
6078 representor_port >= info->ranges[i].sf + count)
6080 *repr_id = info->ranges[i].id_base +
6081 (representor_port - info->ranges[i].sf);
6094 eth_dev_handle_port_list(const char *cmd __rte_unused,
6095 const char *params __rte_unused,
6096 struct rte_tel_data *d)
6100 rte_tel_data_start_array(d, RTE_TEL_INT_VAL);
6101 RTE_ETH_FOREACH_DEV(port_id)
6102 rte_tel_data_add_array_int(d, port_id);
6107 eth_dev_add_port_queue_stats(struct rte_tel_data *d, uint64_t *q_stats,
6108 const char *stat_name)
6111 struct rte_tel_data *q_data = rte_tel_data_alloc();
6112 rte_tel_data_start_array(q_data, RTE_TEL_U64_VAL);
6113 for (q = 0; q < RTE_ETHDEV_QUEUE_STAT_CNTRS; q++)
6114 rte_tel_data_add_array_u64(q_data, q_stats[q]);
6115 rte_tel_data_add_dict_container(d, stat_name, q_data, 0);
6118 #define ADD_DICT_STAT(stats, s) rte_tel_data_add_dict_u64(d, #s, stats.s)
6121 eth_dev_handle_port_stats(const char *cmd __rte_unused,
6123 struct rte_tel_data *d)
6125 struct rte_eth_stats stats;
6128 if (params == NULL || strlen(params) == 0 || !isdigit(*params))
6131 port_id = atoi(params);
6132 if (!rte_eth_dev_is_valid_port(port_id))
6135 ret = rte_eth_stats_get(port_id, &stats);
6139 rte_tel_data_start_dict(d);
6140 ADD_DICT_STAT(stats, ipackets);
6141 ADD_DICT_STAT(stats, opackets);
6142 ADD_DICT_STAT(stats, ibytes);
6143 ADD_DICT_STAT(stats, obytes);
6144 ADD_DICT_STAT(stats, imissed);
6145 ADD_DICT_STAT(stats, ierrors);
6146 ADD_DICT_STAT(stats, oerrors);
6147 ADD_DICT_STAT(stats, rx_nombuf);
6148 eth_dev_add_port_queue_stats(d, stats.q_ipackets, "q_ipackets");
6149 eth_dev_add_port_queue_stats(d, stats.q_opackets, "q_opackets");
6150 eth_dev_add_port_queue_stats(d, stats.q_ibytes, "q_ibytes");
6151 eth_dev_add_port_queue_stats(d, stats.q_obytes, "q_obytes");
6152 eth_dev_add_port_queue_stats(d, stats.q_errors, "q_errors");
6158 eth_dev_handle_port_xstats(const char *cmd __rte_unused,
6160 struct rte_tel_data *d)
6162 struct rte_eth_xstat *eth_xstats;
6163 struct rte_eth_xstat_name *xstat_names;
6164 int port_id, num_xstats;
6168 if (params == NULL || strlen(params) == 0 || !isdigit(*params))
6171 port_id = strtoul(params, &end_param, 0);
6172 if (*end_param != '\0')
6173 RTE_ETHDEV_LOG(NOTICE,
6174 "Extra parameters passed to ethdev telemetry command, ignoring");
6175 if (!rte_eth_dev_is_valid_port(port_id))
6178 num_xstats = rte_eth_xstats_get(port_id, NULL, 0);
6182 /* use one malloc for both names and stats */
6183 eth_xstats = malloc((sizeof(struct rte_eth_xstat) +
6184 sizeof(struct rte_eth_xstat_name)) * num_xstats);
6185 if (eth_xstats == NULL)
6187 xstat_names = (void *)ð_xstats[num_xstats];
6189 ret = rte_eth_xstats_get_names(port_id, xstat_names, num_xstats);
6190 if (ret < 0 || ret > num_xstats) {
6195 ret = rte_eth_xstats_get(port_id, eth_xstats, num_xstats);
6196 if (ret < 0 || ret > num_xstats) {
6201 rte_tel_data_start_dict(d);
6202 for (i = 0; i < num_xstats; i++)
6203 rte_tel_data_add_dict_u64(d, xstat_names[i].name,
6204 eth_xstats[i].value);
6209 eth_dev_handle_port_link_status(const char *cmd __rte_unused,
6211 struct rte_tel_data *d)
6213 static const char *status_str = "status";
6215 struct rte_eth_link link;
6218 if (params == NULL || strlen(params) == 0 || !isdigit(*params))
6221 port_id = strtoul(params, &end_param, 0);
6222 if (*end_param != '\0')
6223 RTE_ETHDEV_LOG(NOTICE,
6224 "Extra parameters passed to ethdev telemetry command, ignoring");
6225 if (!rte_eth_dev_is_valid_port(port_id))
6228 ret = rte_eth_link_get_nowait(port_id, &link);
6232 rte_tel_data_start_dict(d);
6233 if (!link.link_status) {
6234 rte_tel_data_add_dict_string(d, status_str, "DOWN");
6237 rte_tel_data_add_dict_string(d, status_str, "UP");
6238 rte_tel_data_add_dict_u64(d, "speed", link.link_speed);
6239 rte_tel_data_add_dict_string(d, "duplex",
6240 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
6241 "full-duplex" : "half-duplex");
6246 rte_eth_hairpin_queue_peer_update(uint16_t peer_port, uint16_t peer_queue,
6247 struct rte_hairpin_peer_info *cur_info,
6248 struct rte_hairpin_peer_info *peer_info,
6251 struct rte_eth_dev *dev;
6253 /* Current queue information is not mandatory. */
6254 if (peer_info == NULL)
6257 /* No need to check the validity again. */
6258 dev = &rte_eth_devices[peer_port];
6259 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_queue_peer_update,
6262 return (*dev->dev_ops->hairpin_queue_peer_update)(dev, peer_queue,
6263 cur_info, peer_info, direction);
6267 rte_eth_hairpin_queue_peer_bind(uint16_t cur_port, uint16_t cur_queue,
6268 struct rte_hairpin_peer_info *peer_info,
6271 struct rte_eth_dev *dev;
6273 if (peer_info == NULL)
6276 /* No need to check the validity again. */
6277 dev = &rte_eth_devices[cur_port];
6278 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_queue_peer_bind,
6281 return (*dev->dev_ops->hairpin_queue_peer_bind)(dev, cur_queue,
6282 peer_info, direction);
6286 rte_eth_hairpin_queue_peer_unbind(uint16_t cur_port, uint16_t cur_queue,
6289 struct rte_eth_dev *dev;
6291 /* No need to check the validity again. */
6292 dev = &rte_eth_devices[cur_port];
6293 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_queue_peer_unbind,
6296 return (*dev->dev_ops->hairpin_queue_peer_unbind)(dev, cur_queue,
6301 rte_eth_representor_info_get(uint16_t port_id,
6302 struct rte_eth_representor_info *info)
6304 struct rte_eth_dev *dev;
6306 RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV);
6307 dev = &rte_eth_devices[port_id];
6309 RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->representor_info_get, -ENOTSUP);
6310 return eth_err(port_id, (*dev->dev_ops->representor_info_get)(dev, info));
6313 RTE_LOG_REGISTER_DEFAULT(rte_eth_dev_logtype, INFO);
6315 RTE_INIT(ethdev_init_telemetry)
6317 rte_telemetry_register_cmd("/ethdev/list", eth_dev_handle_port_list,
6318 "Returns list of available ethdev ports. Takes no parameters");
6319 rte_telemetry_register_cmd("/ethdev/stats", eth_dev_handle_port_stats,
6320 "Returns the common stats for a port. Parameters: int port_id");
6321 rte_telemetry_register_cmd("/ethdev/xstats", eth_dev_handle_port_xstats,
6322 "Returns the extended stats for a port. Parameters: int port_id");
6323 rte_telemetry_register_cmd("/ethdev/link_status",
6324 eth_dev_handle_port_link_status,
6325 "Returns the link status for a port. Parameters: int port_id");