199a2dd95SBruce Richardson /* SPDX-License-Identifier: BSD-3-Clause 299a2dd95SBruce Richardson * Copyright(c) 2010-2017 Intel Corporation 399a2dd95SBruce Richardson */ 499a2dd95SBruce Richardson 599a2dd95SBruce Richardson #include <ctype.h> 699a2dd95SBruce Richardson #include <errno.h> 799a2dd95SBruce Richardson #include <inttypes.h> 899a2dd95SBruce Richardson #include <stdbool.h> 999a2dd95SBruce Richardson #include <stdint.h> 1099a2dd95SBruce Richardson #include <stdlib.h> 1199a2dd95SBruce Richardson #include <string.h> 1299a2dd95SBruce Richardson #include <sys/queue.h> 1399a2dd95SBruce Richardson 1499a2dd95SBruce Richardson #include <rte_byteorder.h> 1599a2dd95SBruce Richardson #include <rte_log.h> 1699a2dd95SBruce Richardson #include <rte_debug.h> 1799a2dd95SBruce Richardson #include <rte_interrupts.h> 1899a2dd95SBruce Richardson #include <rte_memory.h> 1999a2dd95SBruce Richardson #include <rte_memcpy.h> 2099a2dd95SBruce Richardson #include <rte_memzone.h> 2199a2dd95SBruce Richardson #include <rte_launch.h> 2299a2dd95SBruce Richardson #include <rte_eal.h> 2399a2dd95SBruce Richardson #include <rte_per_lcore.h> 2499a2dd95SBruce Richardson #include <rte_lcore.h> 2599a2dd95SBruce Richardson #include <rte_branch_prediction.h> 2699a2dd95SBruce Richardson #include <rte_common.h> 2799a2dd95SBruce Richardson #include <rte_mempool.h> 2899a2dd95SBruce Richardson #include <rte_malloc.h> 2999a2dd95SBruce Richardson #include <rte_mbuf.h> 3099a2dd95SBruce Richardson #include <rte_errno.h> 3199a2dd95SBruce Richardson #include <rte_spinlock.h> 3299a2dd95SBruce Richardson #include <rte_string_fns.h> 3399a2dd95SBruce Richardson #include <rte_kvargs.h> 3499a2dd95SBruce Richardson #include <rte_class.h> 3599a2dd95SBruce Richardson #include <rte_ether.h> 3699a2dd95SBruce Richardson #include <rte_telemetry.h> 3799a2dd95SBruce Richardson 3899a2dd95SBruce Richardson #include "rte_ethdev_trace.h" 3999a2dd95SBruce Richardson #include "rte_ethdev.h" 4099a2dd95SBruce Richardson #include "ethdev_driver.h" 4199a2dd95SBruce Richardson #include "ethdev_profile.h" 4299a2dd95SBruce Richardson #include "ethdev_private.h" 4399a2dd95SBruce Richardson 4499a2dd95SBruce Richardson static const char *MZ_RTE_ETH_DEV_DATA = "rte_eth_dev_data"; 4599a2dd95SBruce Richardson struct rte_eth_dev rte_eth_devices[RTE_MAX_ETHPORTS]; 4699a2dd95SBruce Richardson 47c87d435aSKonstantin Ananyev /* public fast-path API */ 48c87d435aSKonstantin Ananyev struct rte_eth_fp_ops rte_eth_fp_ops[RTE_MAX_ETHPORTS]; 49c87d435aSKonstantin Ananyev 5099a2dd95SBruce Richardson /* spinlock for eth device callbacks */ 5199a2dd95SBruce Richardson static rte_spinlock_t eth_dev_cb_lock = RTE_SPINLOCK_INITIALIZER; 5299a2dd95SBruce Richardson 5399a2dd95SBruce Richardson /* spinlock for add/remove rx callbacks */ 5499a2dd95SBruce Richardson static rte_spinlock_t eth_dev_rx_cb_lock = RTE_SPINLOCK_INITIALIZER; 5599a2dd95SBruce Richardson 5699a2dd95SBruce Richardson /* spinlock for add/remove tx callbacks */ 5799a2dd95SBruce Richardson static rte_spinlock_t eth_dev_tx_cb_lock = RTE_SPINLOCK_INITIALIZER; 5899a2dd95SBruce Richardson 5999a2dd95SBruce Richardson /* spinlock for shared data allocation */ 6099a2dd95SBruce Richardson static rte_spinlock_t eth_dev_shared_data_lock = RTE_SPINLOCK_INITIALIZER; 6199a2dd95SBruce Richardson 6299a2dd95SBruce Richardson /* store statistics names and its offset in stats structure */ 6399a2dd95SBruce Richardson struct rte_eth_xstats_name_off { 6499a2dd95SBruce Richardson char name[RTE_ETH_XSTATS_NAME_SIZE]; 6599a2dd95SBruce Richardson unsigned offset; 6699a2dd95SBruce Richardson }; 6799a2dd95SBruce Richardson 6899a2dd95SBruce Richardson /* Shared memory between primary and secondary processes. */ 6999a2dd95SBruce Richardson static struct { 7099a2dd95SBruce Richardson uint64_t next_owner_id; 7199a2dd95SBruce Richardson rte_spinlock_t ownership_lock; 7299a2dd95SBruce Richardson struct rte_eth_dev_data data[RTE_MAX_ETHPORTS]; 7399a2dd95SBruce Richardson } *eth_dev_shared_data; 7499a2dd95SBruce Richardson 7599a2dd95SBruce Richardson static const struct rte_eth_xstats_name_off eth_dev_stats_strings[] = { 7699a2dd95SBruce Richardson {"rx_good_packets", offsetof(struct rte_eth_stats, ipackets)}, 7799a2dd95SBruce Richardson {"tx_good_packets", offsetof(struct rte_eth_stats, opackets)}, 7899a2dd95SBruce Richardson {"rx_good_bytes", offsetof(struct rte_eth_stats, ibytes)}, 7999a2dd95SBruce Richardson {"tx_good_bytes", offsetof(struct rte_eth_stats, obytes)}, 8099a2dd95SBruce Richardson {"rx_missed_errors", offsetof(struct rte_eth_stats, imissed)}, 8199a2dd95SBruce Richardson {"rx_errors", offsetof(struct rte_eth_stats, ierrors)}, 8299a2dd95SBruce Richardson {"tx_errors", offsetof(struct rte_eth_stats, oerrors)}, 8399a2dd95SBruce Richardson {"rx_mbuf_allocation_errors", offsetof(struct rte_eth_stats, 8499a2dd95SBruce Richardson rx_nombuf)}, 8599a2dd95SBruce Richardson }; 8699a2dd95SBruce Richardson 8799a2dd95SBruce Richardson #define RTE_NB_STATS RTE_DIM(eth_dev_stats_strings) 8899a2dd95SBruce Richardson 8999a2dd95SBruce Richardson static const struct rte_eth_xstats_name_off eth_dev_rxq_stats_strings[] = { 9099a2dd95SBruce Richardson {"packets", offsetof(struct rte_eth_stats, q_ipackets)}, 9199a2dd95SBruce Richardson {"bytes", offsetof(struct rte_eth_stats, q_ibytes)}, 9299a2dd95SBruce Richardson {"errors", offsetof(struct rte_eth_stats, q_errors)}, 9399a2dd95SBruce Richardson }; 9499a2dd95SBruce Richardson 9599a2dd95SBruce Richardson #define RTE_NB_RXQ_STATS RTE_DIM(eth_dev_rxq_stats_strings) 9699a2dd95SBruce Richardson 9799a2dd95SBruce Richardson static const struct rte_eth_xstats_name_off eth_dev_txq_stats_strings[] = { 9899a2dd95SBruce Richardson {"packets", offsetof(struct rte_eth_stats, q_opackets)}, 9999a2dd95SBruce Richardson {"bytes", offsetof(struct rte_eth_stats, q_obytes)}, 10099a2dd95SBruce Richardson }; 10199a2dd95SBruce Richardson #define RTE_NB_TXQ_STATS RTE_DIM(eth_dev_txq_stats_strings) 10299a2dd95SBruce Richardson 10399a2dd95SBruce Richardson #define RTE_RX_OFFLOAD_BIT2STR(_name) \ 10499a2dd95SBruce Richardson { DEV_RX_OFFLOAD_##_name, #_name } 10599a2dd95SBruce Richardson 10699a2dd95SBruce Richardson #define RTE_ETH_RX_OFFLOAD_BIT2STR(_name) \ 10799a2dd95SBruce Richardson { RTE_ETH_RX_OFFLOAD_##_name, #_name } 10899a2dd95SBruce Richardson 10999a2dd95SBruce Richardson static const struct { 11099a2dd95SBruce Richardson uint64_t offload; 11199a2dd95SBruce Richardson const char *name; 11299a2dd95SBruce Richardson } eth_dev_rx_offload_names[] = { 11399a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(VLAN_STRIP), 11499a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(IPV4_CKSUM), 11599a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(UDP_CKSUM), 11699a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(TCP_CKSUM), 11799a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(TCP_LRO), 11899a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(QINQ_STRIP), 11999a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(OUTER_IPV4_CKSUM), 12099a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(MACSEC_STRIP), 12199a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(HEADER_SPLIT), 12299a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(VLAN_FILTER), 12399a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(VLAN_EXTEND), 12499a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(SCATTER), 12599a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(TIMESTAMP), 12699a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(SECURITY), 12799a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(KEEP_CRC), 12899a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(SCTP_CKSUM), 12999a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(OUTER_UDP_CKSUM), 13099a2dd95SBruce Richardson RTE_RX_OFFLOAD_BIT2STR(RSS_HASH), 13199a2dd95SBruce Richardson RTE_ETH_RX_OFFLOAD_BIT2STR(BUFFER_SPLIT), 13299a2dd95SBruce Richardson }; 13399a2dd95SBruce Richardson 13499a2dd95SBruce Richardson #undef RTE_RX_OFFLOAD_BIT2STR 13599a2dd95SBruce Richardson #undef RTE_ETH_RX_OFFLOAD_BIT2STR 13699a2dd95SBruce Richardson 13799a2dd95SBruce Richardson #define RTE_TX_OFFLOAD_BIT2STR(_name) \ 13899a2dd95SBruce Richardson { DEV_TX_OFFLOAD_##_name, #_name } 13999a2dd95SBruce Richardson 14099a2dd95SBruce Richardson static const struct { 14199a2dd95SBruce Richardson uint64_t offload; 14299a2dd95SBruce Richardson const char *name; 14399a2dd95SBruce Richardson } eth_dev_tx_offload_names[] = { 14499a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(VLAN_INSERT), 14599a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(IPV4_CKSUM), 14699a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(UDP_CKSUM), 14799a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(TCP_CKSUM), 14899a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(SCTP_CKSUM), 14999a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(TCP_TSO), 15099a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(UDP_TSO), 15199a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(OUTER_IPV4_CKSUM), 15299a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(QINQ_INSERT), 15399a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(VXLAN_TNL_TSO), 15499a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(GRE_TNL_TSO), 15599a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(IPIP_TNL_TSO), 15699a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(GENEVE_TNL_TSO), 15799a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(MACSEC_INSERT), 15899a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(MT_LOCKFREE), 15999a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(MULTI_SEGS), 16099a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(MBUF_FAST_FREE), 16199a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(SECURITY), 16299a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(UDP_TNL_TSO), 16399a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(IP_TNL_TSO), 16499a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(OUTER_UDP_CKSUM), 16599a2dd95SBruce Richardson RTE_TX_OFFLOAD_BIT2STR(SEND_ON_TIMESTAMP), 16699a2dd95SBruce Richardson }; 16799a2dd95SBruce Richardson 16899a2dd95SBruce Richardson #undef RTE_TX_OFFLOAD_BIT2STR 16999a2dd95SBruce Richardson 17099a2dd95SBruce Richardson /** 17199a2dd95SBruce Richardson * The user application callback description. 17299a2dd95SBruce Richardson * 17399a2dd95SBruce Richardson * It contains callback address to be registered by user application, 17499a2dd95SBruce Richardson * the pointer to the parameters for callback, and the event type. 17599a2dd95SBruce Richardson */ 17699a2dd95SBruce Richardson struct rte_eth_dev_callback { 17799a2dd95SBruce Richardson TAILQ_ENTRY(rte_eth_dev_callback) next; /**< Callbacks list */ 17899a2dd95SBruce Richardson rte_eth_dev_cb_fn cb_fn; /**< Callback address */ 17999a2dd95SBruce Richardson void *cb_arg; /**< Parameter for callback */ 18099a2dd95SBruce Richardson void *ret_param; /**< Return parameter */ 18199a2dd95SBruce Richardson enum rte_eth_event_type event; /**< Interrupt event type */ 18299a2dd95SBruce Richardson uint32_t active; /**< Callback is executing */ 18399a2dd95SBruce Richardson }; 18499a2dd95SBruce Richardson 18599a2dd95SBruce Richardson enum { 18699a2dd95SBruce Richardson STAT_QMAP_TX = 0, 18799a2dd95SBruce Richardson STAT_QMAP_RX 18899a2dd95SBruce Richardson }; 18999a2dd95SBruce Richardson 19099a2dd95SBruce Richardson int 19199a2dd95SBruce Richardson rte_eth_iterator_init(struct rte_dev_iterator *iter, const char *devargs_str) 19299a2dd95SBruce Richardson { 19399a2dd95SBruce Richardson int ret; 19499a2dd95SBruce Richardson struct rte_devargs devargs; 19599a2dd95SBruce Richardson const char *bus_param_key; 19699a2dd95SBruce Richardson char *bus_str = NULL; 19799a2dd95SBruce Richardson char *cls_str = NULL; 19899a2dd95SBruce Richardson int str_size; 19999a2dd95SBruce Richardson 20053ef1b34SMin Hu (Connor) if (iter == NULL) { 20153ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot initialize NULL iterator\n"); 20253ef1b34SMin Hu (Connor) return -EINVAL; 20353ef1b34SMin Hu (Connor) } 20453ef1b34SMin Hu (Connor) 20553ef1b34SMin Hu (Connor) if (devargs_str == NULL) { 20653ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 20753ef1b34SMin Hu (Connor) "Cannot initialize iterator from NULL device description string\n"); 20853ef1b34SMin Hu (Connor) return -EINVAL; 20953ef1b34SMin Hu (Connor) } 21053ef1b34SMin Hu (Connor) 21199a2dd95SBruce Richardson memset(iter, 0, sizeof(*iter)); 21299a2dd95SBruce Richardson memset(&devargs, 0, sizeof(devargs)); 21399a2dd95SBruce Richardson 21499a2dd95SBruce Richardson /* 21599a2dd95SBruce Richardson * The devargs string may use various syntaxes: 21699a2dd95SBruce Richardson * - 0000:08:00.0,representor=[1-3] 21799a2dd95SBruce Richardson * - pci:0000:06:00.0,representor=[0,5] 21899a2dd95SBruce Richardson * - class=eth,mac=00:11:22:33:44:55 21999a2dd95SBruce Richardson * - bus=X,paramX=x/class=Y,paramY=y/driver=Z,paramZ=z 22099a2dd95SBruce Richardson */ 22199a2dd95SBruce Richardson 22299a2dd95SBruce Richardson /* 22399a2dd95SBruce Richardson * Handle pure class filter (i.e. without any bus-level argument), 22499a2dd95SBruce Richardson * from future new syntax. 22599a2dd95SBruce Richardson * rte_devargs_parse() is not yet supporting the new syntax, 22699a2dd95SBruce Richardson * that's why this simple case is temporarily parsed here. 22799a2dd95SBruce Richardson */ 22899a2dd95SBruce Richardson #define iter_anybus_str "class=eth," 22999a2dd95SBruce Richardson if (strncmp(devargs_str, iter_anybus_str, 23099a2dd95SBruce Richardson strlen(iter_anybus_str)) == 0) { 23199a2dd95SBruce Richardson iter->cls_str = devargs_str + strlen(iter_anybus_str); 23299a2dd95SBruce Richardson goto end; 23399a2dd95SBruce Richardson } 23499a2dd95SBruce Richardson 23599a2dd95SBruce Richardson /* Split bus, device and parameters. */ 23699a2dd95SBruce Richardson ret = rte_devargs_parse(&devargs, devargs_str); 23799a2dd95SBruce Richardson if (ret != 0) 23899a2dd95SBruce Richardson goto error; 23999a2dd95SBruce Richardson 24099a2dd95SBruce Richardson /* 24199a2dd95SBruce Richardson * Assume parameters of old syntax can match only at ethdev level. 24299a2dd95SBruce Richardson * Extra parameters will be ignored, thanks to "+" prefix. 24399a2dd95SBruce Richardson */ 24499a2dd95SBruce Richardson str_size = strlen(devargs.args) + 2; 24599a2dd95SBruce Richardson cls_str = malloc(str_size); 24699a2dd95SBruce Richardson if (cls_str == NULL) { 24799a2dd95SBruce Richardson ret = -ENOMEM; 24899a2dd95SBruce Richardson goto error; 24999a2dd95SBruce Richardson } 25099a2dd95SBruce Richardson ret = snprintf(cls_str, str_size, "+%s", devargs.args); 25199a2dd95SBruce Richardson if (ret != str_size - 1) { 25299a2dd95SBruce Richardson ret = -EINVAL; 25399a2dd95SBruce Richardson goto error; 25499a2dd95SBruce Richardson } 25599a2dd95SBruce Richardson iter->cls_str = cls_str; 25699a2dd95SBruce Richardson 25799a2dd95SBruce Richardson iter->bus = devargs.bus; 25899a2dd95SBruce Richardson if (iter->bus->dev_iterate == NULL) { 25999a2dd95SBruce Richardson ret = -ENOTSUP; 26099a2dd95SBruce Richardson goto error; 26199a2dd95SBruce Richardson } 26299a2dd95SBruce Richardson 26399a2dd95SBruce Richardson /* Convert bus args to new syntax for use with new API dev_iterate. */ 264a956adb2SHemant Agrawal if ((strcmp(iter->bus->name, "vdev") == 0) || 265a956adb2SHemant Agrawal (strcmp(iter->bus->name, "fslmc") == 0) || 266a956adb2SHemant Agrawal (strcmp(iter->bus->name, "dpaa_bus") == 0)) { 26799a2dd95SBruce Richardson bus_param_key = "name"; 26899a2dd95SBruce Richardson } else if (strcmp(iter->bus->name, "pci") == 0) { 26999a2dd95SBruce Richardson bus_param_key = "addr"; 27099a2dd95SBruce Richardson } else { 27199a2dd95SBruce Richardson ret = -ENOTSUP; 27299a2dd95SBruce Richardson goto error; 27399a2dd95SBruce Richardson } 27499a2dd95SBruce Richardson str_size = strlen(bus_param_key) + strlen(devargs.name) + 2; 27599a2dd95SBruce Richardson bus_str = malloc(str_size); 27699a2dd95SBruce Richardson if (bus_str == NULL) { 27799a2dd95SBruce Richardson ret = -ENOMEM; 27899a2dd95SBruce Richardson goto error; 27999a2dd95SBruce Richardson } 28099a2dd95SBruce Richardson ret = snprintf(bus_str, str_size, "%s=%s", 28199a2dd95SBruce Richardson bus_param_key, devargs.name); 28299a2dd95SBruce Richardson if (ret != str_size - 1) { 28399a2dd95SBruce Richardson ret = -EINVAL; 28499a2dd95SBruce Richardson goto error; 28599a2dd95SBruce Richardson } 28699a2dd95SBruce Richardson iter->bus_str = bus_str; 28799a2dd95SBruce Richardson 28899a2dd95SBruce Richardson end: 28999a2dd95SBruce Richardson iter->cls = rte_class_find_by_name("eth"); 29099a2dd95SBruce Richardson rte_devargs_reset(&devargs); 29199a2dd95SBruce Richardson return 0; 29299a2dd95SBruce Richardson 29399a2dd95SBruce Richardson error: 29499a2dd95SBruce Richardson if (ret == -ENOTSUP) 29599a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Bus %s does not support iterating.\n", 29699a2dd95SBruce Richardson iter->bus->name); 29799a2dd95SBruce Richardson rte_devargs_reset(&devargs); 29899a2dd95SBruce Richardson free(bus_str); 29999a2dd95SBruce Richardson free(cls_str); 30099a2dd95SBruce Richardson return ret; 30199a2dd95SBruce Richardson } 30299a2dd95SBruce Richardson 30399a2dd95SBruce Richardson uint16_t 30499a2dd95SBruce Richardson rte_eth_iterator_next(struct rte_dev_iterator *iter) 30599a2dd95SBruce Richardson { 30653ef1b34SMin Hu (Connor) if (iter == NULL) { 30753ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 30853ef1b34SMin Hu (Connor) "Cannot get next device from NULL iterator\n"); 30953ef1b34SMin Hu (Connor) return RTE_MAX_ETHPORTS; 31053ef1b34SMin Hu (Connor) } 31153ef1b34SMin Hu (Connor) 31299a2dd95SBruce Richardson if (iter->cls == NULL) /* invalid ethdev iterator */ 31399a2dd95SBruce Richardson return RTE_MAX_ETHPORTS; 31499a2dd95SBruce Richardson 31599a2dd95SBruce Richardson do { /* loop to try all matching rte_device */ 31699a2dd95SBruce Richardson /* If not pure ethdev filter and */ 31799a2dd95SBruce Richardson if (iter->bus != NULL && 31899a2dd95SBruce Richardson /* not in middle of rte_eth_dev iteration, */ 31999a2dd95SBruce Richardson iter->class_device == NULL) { 32099a2dd95SBruce Richardson /* get next rte_device to try. */ 32199a2dd95SBruce Richardson iter->device = iter->bus->dev_iterate( 32299a2dd95SBruce Richardson iter->device, iter->bus_str, iter); 32399a2dd95SBruce Richardson if (iter->device == NULL) 32499a2dd95SBruce Richardson break; /* no more rte_device candidate */ 32599a2dd95SBruce Richardson } 32699a2dd95SBruce Richardson /* A device is matching bus part, need to check ethdev part. */ 32799a2dd95SBruce Richardson iter->class_device = iter->cls->dev_iterate( 32899a2dd95SBruce Richardson iter->class_device, iter->cls_str, iter); 32999a2dd95SBruce Richardson if (iter->class_device != NULL) 33099a2dd95SBruce Richardson return eth_dev_to_id(iter->class_device); /* match */ 33199a2dd95SBruce Richardson } while (iter->bus != NULL); /* need to try next rte_device */ 33299a2dd95SBruce Richardson 33399a2dd95SBruce Richardson /* No more ethdev port to iterate. */ 33499a2dd95SBruce Richardson rte_eth_iterator_cleanup(iter); 33599a2dd95SBruce Richardson return RTE_MAX_ETHPORTS; 33699a2dd95SBruce Richardson } 33799a2dd95SBruce Richardson 33899a2dd95SBruce Richardson void 33999a2dd95SBruce Richardson rte_eth_iterator_cleanup(struct rte_dev_iterator *iter) 34099a2dd95SBruce Richardson { 34153ef1b34SMin Hu (Connor) if (iter == NULL) { 34253ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot do clean up from NULL iterator\n"); 34353ef1b34SMin Hu (Connor) return; 34453ef1b34SMin Hu (Connor) } 34553ef1b34SMin Hu (Connor) 34699a2dd95SBruce Richardson if (iter->bus_str == NULL) 34799a2dd95SBruce Richardson return; /* nothing to free in pure class filter */ 34899a2dd95SBruce Richardson free(RTE_CAST_FIELD(iter, bus_str, char *)); /* workaround const */ 34999a2dd95SBruce Richardson free(RTE_CAST_FIELD(iter, cls_str, char *)); /* workaround const */ 35099a2dd95SBruce Richardson memset(iter, 0, sizeof(*iter)); 35199a2dd95SBruce Richardson } 35299a2dd95SBruce Richardson 35399a2dd95SBruce Richardson uint16_t 35499a2dd95SBruce Richardson rte_eth_find_next(uint16_t port_id) 35599a2dd95SBruce Richardson { 35699a2dd95SBruce Richardson while (port_id < RTE_MAX_ETHPORTS && 35799a2dd95SBruce Richardson rte_eth_devices[port_id].state == RTE_ETH_DEV_UNUSED) 35899a2dd95SBruce Richardson port_id++; 35999a2dd95SBruce Richardson 36099a2dd95SBruce Richardson if (port_id >= RTE_MAX_ETHPORTS) 36199a2dd95SBruce Richardson return RTE_MAX_ETHPORTS; 36299a2dd95SBruce Richardson 36399a2dd95SBruce Richardson return port_id; 36499a2dd95SBruce Richardson } 36599a2dd95SBruce Richardson 36699a2dd95SBruce Richardson /* 36799a2dd95SBruce Richardson * Macro to iterate over all valid ports for internal usage. 36899a2dd95SBruce Richardson * Note: RTE_ETH_FOREACH_DEV is different because filtering owned ports. 36999a2dd95SBruce Richardson */ 37099a2dd95SBruce Richardson #define RTE_ETH_FOREACH_VALID_DEV(port_id) \ 37199a2dd95SBruce Richardson for (port_id = rte_eth_find_next(0); \ 37299a2dd95SBruce Richardson port_id < RTE_MAX_ETHPORTS; \ 37399a2dd95SBruce Richardson port_id = rte_eth_find_next(port_id + 1)) 37499a2dd95SBruce Richardson 37599a2dd95SBruce Richardson uint16_t 37699a2dd95SBruce Richardson rte_eth_find_next_of(uint16_t port_id, const struct rte_device *parent) 37799a2dd95SBruce Richardson { 37899a2dd95SBruce Richardson port_id = rte_eth_find_next(port_id); 37999a2dd95SBruce Richardson while (port_id < RTE_MAX_ETHPORTS && 38099a2dd95SBruce Richardson rte_eth_devices[port_id].device != parent) 38199a2dd95SBruce Richardson port_id = rte_eth_find_next(port_id + 1); 38299a2dd95SBruce Richardson 38399a2dd95SBruce Richardson return port_id; 38499a2dd95SBruce Richardson } 38599a2dd95SBruce Richardson 38699a2dd95SBruce Richardson uint16_t 38799a2dd95SBruce Richardson rte_eth_find_next_sibling(uint16_t port_id, uint16_t ref_port_id) 38899a2dd95SBruce Richardson { 38999a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(ref_port_id, RTE_MAX_ETHPORTS); 39099a2dd95SBruce Richardson return rte_eth_find_next_of(port_id, 39199a2dd95SBruce Richardson rte_eth_devices[ref_port_id].device); 39299a2dd95SBruce Richardson } 39399a2dd95SBruce Richardson 39499a2dd95SBruce Richardson static void 39599a2dd95SBruce Richardson eth_dev_shared_data_prepare(void) 39699a2dd95SBruce Richardson { 39799a2dd95SBruce Richardson const unsigned flags = 0; 39899a2dd95SBruce Richardson const struct rte_memzone *mz; 39999a2dd95SBruce Richardson 40099a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_shared_data_lock); 40199a2dd95SBruce Richardson 40299a2dd95SBruce Richardson if (eth_dev_shared_data == NULL) { 40399a2dd95SBruce Richardson if (rte_eal_process_type() == RTE_PROC_PRIMARY) { 40499a2dd95SBruce Richardson /* Allocate port data and ownership shared memory. */ 40599a2dd95SBruce Richardson mz = rte_memzone_reserve(MZ_RTE_ETH_DEV_DATA, 40699a2dd95SBruce Richardson sizeof(*eth_dev_shared_data), 40799a2dd95SBruce Richardson rte_socket_id(), flags); 40899a2dd95SBruce Richardson } else 40999a2dd95SBruce Richardson mz = rte_memzone_lookup(MZ_RTE_ETH_DEV_DATA); 41099a2dd95SBruce Richardson if (mz == NULL) 41199a2dd95SBruce Richardson rte_panic("Cannot allocate ethdev shared data\n"); 41299a2dd95SBruce Richardson 41399a2dd95SBruce Richardson eth_dev_shared_data = mz->addr; 41499a2dd95SBruce Richardson if (rte_eal_process_type() == RTE_PROC_PRIMARY) { 41599a2dd95SBruce Richardson eth_dev_shared_data->next_owner_id = 41699a2dd95SBruce Richardson RTE_ETH_DEV_NO_OWNER + 1; 41799a2dd95SBruce Richardson rte_spinlock_init(ð_dev_shared_data->ownership_lock); 41899a2dd95SBruce Richardson memset(eth_dev_shared_data->data, 0, 41999a2dd95SBruce Richardson sizeof(eth_dev_shared_data->data)); 42099a2dd95SBruce Richardson } 42199a2dd95SBruce Richardson } 42299a2dd95SBruce Richardson 42399a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_shared_data_lock); 42499a2dd95SBruce Richardson } 42599a2dd95SBruce Richardson 42699a2dd95SBruce Richardson static bool 42799a2dd95SBruce Richardson eth_dev_is_allocated(const struct rte_eth_dev *ethdev) 42899a2dd95SBruce Richardson { 42999a2dd95SBruce Richardson return ethdev->data->name[0] != '\0'; 43099a2dd95SBruce Richardson } 43199a2dd95SBruce Richardson 43299a2dd95SBruce Richardson static struct rte_eth_dev * 43399a2dd95SBruce Richardson eth_dev_allocated(const char *name) 43499a2dd95SBruce Richardson { 43599a2dd95SBruce Richardson uint16_t i; 43699a2dd95SBruce Richardson 43799a2dd95SBruce Richardson RTE_BUILD_BUG_ON(RTE_MAX_ETHPORTS >= UINT16_MAX); 43899a2dd95SBruce Richardson 43999a2dd95SBruce Richardson for (i = 0; i < RTE_MAX_ETHPORTS; i++) { 44099a2dd95SBruce Richardson if (rte_eth_devices[i].data != NULL && 44199a2dd95SBruce Richardson strcmp(rte_eth_devices[i].data->name, name) == 0) 44299a2dd95SBruce Richardson return &rte_eth_devices[i]; 44399a2dd95SBruce Richardson } 44499a2dd95SBruce Richardson return NULL; 44599a2dd95SBruce Richardson } 44699a2dd95SBruce Richardson 44799a2dd95SBruce Richardson struct rte_eth_dev * 44899a2dd95SBruce Richardson rte_eth_dev_allocated(const char *name) 44999a2dd95SBruce Richardson { 45099a2dd95SBruce Richardson struct rte_eth_dev *ethdev; 45199a2dd95SBruce Richardson 45299a2dd95SBruce Richardson eth_dev_shared_data_prepare(); 45399a2dd95SBruce Richardson 45499a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_shared_data->ownership_lock); 45599a2dd95SBruce Richardson 45699a2dd95SBruce Richardson ethdev = eth_dev_allocated(name); 45799a2dd95SBruce Richardson 45899a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); 45999a2dd95SBruce Richardson 46099a2dd95SBruce Richardson return ethdev; 46199a2dd95SBruce Richardson } 46299a2dd95SBruce Richardson 46399a2dd95SBruce Richardson static uint16_t 46499a2dd95SBruce Richardson eth_dev_find_free_port(void) 46599a2dd95SBruce Richardson { 46699a2dd95SBruce Richardson uint16_t i; 46799a2dd95SBruce Richardson 46899a2dd95SBruce Richardson for (i = 0; i < RTE_MAX_ETHPORTS; i++) { 46999a2dd95SBruce Richardson /* Using shared name field to find a free port. */ 47099a2dd95SBruce Richardson if (eth_dev_shared_data->data[i].name[0] == '\0') { 47199a2dd95SBruce Richardson RTE_ASSERT(rte_eth_devices[i].state == 47299a2dd95SBruce Richardson RTE_ETH_DEV_UNUSED); 47399a2dd95SBruce Richardson return i; 47499a2dd95SBruce Richardson } 47599a2dd95SBruce Richardson } 47699a2dd95SBruce Richardson return RTE_MAX_ETHPORTS; 47799a2dd95SBruce Richardson } 47899a2dd95SBruce Richardson 47999a2dd95SBruce Richardson static struct rte_eth_dev * 48099a2dd95SBruce Richardson eth_dev_get(uint16_t port_id) 48199a2dd95SBruce Richardson { 48299a2dd95SBruce Richardson struct rte_eth_dev *eth_dev = &rte_eth_devices[port_id]; 48399a2dd95SBruce Richardson 48499a2dd95SBruce Richardson eth_dev->data = ð_dev_shared_data->data[port_id]; 48599a2dd95SBruce Richardson 48699a2dd95SBruce Richardson return eth_dev; 48799a2dd95SBruce Richardson } 48899a2dd95SBruce Richardson 48999a2dd95SBruce Richardson struct rte_eth_dev * 49099a2dd95SBruce Richardson rte_eth_dev_allocate(const char *name) 49199a2dd95SBruce Richardson { 49299a2dd95SBruce Richardson uint16_t port_id; 49399a2dd95SBruce Richardson struct rte_eth_dev *eth_dev = NULL; 49499a2dd95SBruce Richardson size_t name_len; 49599a2dd95SBruce Richardson 49699a2dd95SBruce Richardson name_len = strnlen(name, RTE_ETH_NAME_MAX_LEN); 49799a2dd95SBruce Richardson if (name_len == 0) { 49899a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Zero length Ethernet device name\n"); 49999a2dd95SBruce Richardson return NULL; 50099a2dd95SBruce Richardson } 50199a2dd95SBruce Richardson 50299a2dd95SBruce Richardson if (name_len >= RTE_ETH_NAME_MAX_LEN) { 50399a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Ethernet device name is too long\n"); 50499a2dd95SBruce Richardson return NULL; 50599a2dd95SBruce Richardson } 50699a2dd95SBruce Richardson 50799a2dd95SBruce Richardson eth_dev_shared_data_prepare(); 50899a2dd95SBruce Richardson 50999a2dd95SBruce Richardson /* Synchronize port creation between primary and secondary threads. */ 51099a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_shared_data->ownership_lock); 51199a2dd95SBruce Richardson 51299a2dd95SBruce Richardson if (eth_dev_allocated(name) != NULL) { 51399a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 51499a2dd95SBruce Richardson "Ethernet device with name %s already allocated\n", 51599a2dd95SBruce Richardson name); 51699a2dd95SBruce Richardson goto unlock; 51799a2dd95SBruce Richardson } 51899a2dd95SBruce Richardson 51999a2dd95SBruce Richardson port_id = eth_dev_find_free_port(); 52099a2dd95SBruce Richardson if (port_id == RTE_MAX_ETHPORTS) { 52199a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 52299a2dd95SBruce Richardson "Reached maximum number of Ethernet ports\n"); 52399a2dd95SBruce Richardson goto unlock; 52499a2dd95SBruce Richardson } 52599a2dd95SBruce Richardson 52699a2dd95SBruce Richardson eth_dev = eth_dev_get(port_id); 52799a2dd95SBruce Richardson strlcpy(eth_dev->data->name, name, sizeof(eth_dev->data->name)); 52899a2dd95SBruce Richardson eth_dev->data->port_id = port_id; 529ff4e52efSViacheslav Galaktionov eth_dev->data->backer_port_id = RTE_MAX_ETHPORTS; 53099a2dd95SBruce Richardson eth_dev->data->mtu = RTE_ETHER_MTU; 53199a2dd95SBruce Richardson pthread_mutex_init(ð_dev->data->flow_ops_mutex, NULL); 53299a2dd95SBruce Richardson 53399a2dd95SBruce Richardson unlock: 53499a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); 53599a2dd95SBruce Richardson 53699a2dd95SBruce Richardson return eth_dev; 53799a2dd95SBruce Richardson } 53899a2dd95SBruce Richardson 53999a2dd95SBruce Richardson /* 54099a2dd95SBruce Richardson * Attach to a port already registered by the primary process, which 54199a2dd95SBruce Richardson * makes sure that the same device would have the same port id both 54299a2dd95SBruce Richardson * in the primary and secondary process. 54399a2dd95SBruce Richardson */ 54499a2dd95SBruce Richardson struct rte_eth_dev * 54599a2dd95SBruce Richardson rte_eth_dev_attach_secondary(const char *name) 54699a2dd95SBruce Richardson { 54799a2dd95SBruce Richardson uint16_t i; 54899a2dd95SBruce Richardson struct rte_eth_dev *eth_dev = NULL; 54999a2dd95SBruce Richardson 55099a2dd95SBruce Richardson eth_dev_shared_data_prepare(); 55199a2dd95SBruce Richardson 55299a2dd95SBruce Richardson /* Synchronize port attachment to primary port creation and release. */ 55399a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_shared_data->ownership_lock); 55499a2dd95SBruce Richardson 55599a2dd95SBruce Richardson for (i = 0; i < RTE_MAX_ETHPORTS; i++) { 55699a2dd95SBruce Richardson if (strcmp(eth_dev_shared_data->data[i].name, name) == 0) 55799a2dd95SBruce Richardson break; 55899a2dd95SBruce Richardson } 55999a2dd95SBruce Richardson if (i == RTE_MAX_ETHPORTS) { 56099a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 56199a2dd95SBruce Richardson "Device %s is not driven by the primary process\n", 56299a2dd95SBruce Richardson name); 56399a2dd95SBruce Richardson } else { 56499a2dd95SBruce Richardson eth_dev = eth_dev_get(i); 56599a2dd95SBruce Richardson RTE_ASSERT(eth_dev->data->port_id == i); 56699a2dd95SBruce Richardson } 56799a2dd95SBruce Richardson 56899a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); 56999a2dd95SBruce Richardson return eth_dev; 57099a2dd95SBruce Richardson } 57199a2dd95SBruce Richardson 57299a2dd95SBruce Richardson int 57399a2dd95SBruce Richardson rte_eth_dev_release_port(struct rte_eth_dev *eth_dev) 57499a2dd95SBruce Richardson { 57599a2dd95SBruce Richardson if (eth_dev == NULL) 57699a2dd95SBruce Richardson return -EINVAL; 57799a2dd95SBruce Richardson 57899a2dd95SBruce Richardson eth_dev_shared_data_prepare(); 57999a2dd95SBruce Richardson 58099a2dd95SBruce Richardson if (eth_dev->state != RTE_ETH_DEV_UNUSED) 58199a2dd95SBruce Richardson rte_eth_dev_callback_process(eth_dev, 58299a2dd95SBruce Richardson RTE_ETH_EVENT_DESTROY, NULL); 58399a2dd95SBruce Richardson 584c87d435aSKonstantin Ananyev eth_dev_fp_ops_reset(rte_eth_fp_ops + eth_dev->data->port_id); 585c87d435aSKonstantin Ananyev 58699a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_shared_data->ownership_lock); 58799a2dd95SBruce Richardson 58899a2dd95SBruce Richardson eth_dev->state = RTE_ETH_DEV_UNUSED; 58999a2dd95SBruce Richardson eth_dev->device = NULL; 59099a2dd95SBruce Richardson eth_dev->process_private = NULL; 59199a2dd95SBruce Richardson eth_dev->intr_handle = NULL; 59299a2dd95SBruce Richardson eth_dev->rx_pkt_burst = NULL; 59399a2dd95SBruce Richardson eth_dev->tx_pkt_burst = NULL; 59499a2dd95SBruce Richardson eth_dev->tx_pkt_prepare = NULL; 59599a2dd95SBruce Richardson eth_dev->rx_queue_count = NULL; 59699a2dd95SBruce Richardson eth_dev->rx_descriptor_status = NULL; 59799a2dd95SBruce Richardson eth_dev->tx_descriptor_status = NULL; 59899a2dd95SBruce Richardson eth_dev->dev_ops = NULL; 59999a2dd95SBruce Richardson 60099a2dd95SBruce Richardson if (rte_eal_process_type() == RTE_PROC_PRIMARY) { 60199a2dd95SBruce Richardson rte_free(eth_dev->data->rx_queues); 60299a2dd95SBruce Richardson rte_free(eth_dev->data->tx_queues); 60399a2dd95SBruce Richardson rte_free(eth_dev->data->mac_addrs); 60499a2dd95SBruce Richardson rte_free(eth_dev->data->hash_mac_addrs); 60599a2dd95SBruce Richardson rte_free(eth_dev->data->dev_private); 60699a2dd95SBruce Richardson pthread_mutex_destroy(ð_dev->data->flow_ops_mutex); 60799a2dd95SBruce Richardson memset(eth_dev->data, 0, sizeof(struct rte_eth_dev_data)); 60899a2dd95SBruce Richardson } 60999a2dd95SBruce Richardson 61099a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); 61199a2dd95SBruce Richardson 61299a2dd95SBruce Richardson return 0; 61399a2dd95SBruce Richardson } 61499a2dd95SBruce Richardson 61599a2dd95SBruce Richardson int 61699a2dd95SBruce Richardson rte_eth_dev_is_valid_port(uint16_t port_id) 61799a2dd95SBruce Richardson { 61899a2dd95SBruce Richardson if (port_id >= RTE_MAX_ETHPORTS || 61999a2dd95SBruce Richardson (rte_eth_devices[port_id].state == RTE_ETH_DEV_UNUSED)) 62099a2dd95SBruce Richardson return 0; 62199a2dd95SBruce Richardson else 62299a2dd95SBruce Richardson return 1; 62399a2dd95SBruce Richardson } 62499a2dd95SBruce Richardson 62599a2dd95SBruce Richardson static int 62699a2dd95SBruce Richardson eth_is_valid_owner_id(uint64_t owner_id) 62799a2dd95SBruce Richardson { 62899a2dd95SBruce Richardson if (owner_id == RTE_ETH_DEV_NO_OWNER || 62999a2dd95SBruce Richardson eth_dev_shared_data->next_owner_id <= owner_id) 63099a2dd95SBruce Richardson return 0; 63199a2dd95SBruce Richardson return 1; 63299a2dd95SBruce Richardson } 63399a2dd95SBruce Richardson 63499a2dd95SBruce Richardson uint64_t 63599a2dd95SBruce Richardson rte_eth_find_next_owned_by(uint16_t port_id, const uint64_t owner_id) 63699a2dd95SBruce Richardson { 63799a2dd95SBruce Richardson port_id = rte_eth_find_next(port_id); 63899a2dd95SBruce Richardson while (port_id < RTE_MAX_ETHPORTS && 63999a2dd95SBruce Richardson rte_eth_devices[port_id].data->owner.id != owner_id) 64099a2dd95SBruce Richardson port_id = rte_eth_find_next(port_id + 1); 64199a2dd95SBruce Richardson 64299a2dd95SBruce Richardson return port_id; 64399a2dd95SBruce Richardson } 64499a2dd95SBruce Richardson 64599a2dd95SBruce Richardson int 64699a2dd95SBruce Richardson rte_eth_dev_owner_new(uint64_t *owner_id) 64799a2dd95SBruce Richardson { 64853ef1b34SMin Hu (Connor) if (owner_id == NULL) { 64953ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot get new owner ID to NULL\n"); 65053ef1b34SMin Hu (Connor) return -EINVAL; 65153ef1b34SMin Hu (Connor) } 65253ef1b34SMin Hu (Connor) 65399a2dd95SBruce Richardson eth_dev_shared_data_prepare(); 65499a2dd95SBruce Richardson 65599a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_shared_data->ownership_lock); 65699a2dd95SBruce Richardson 65799a2dd95SBruce Richardson *owner_id = eth_dev_shared_data->next_owner_id++; 65899a2dd95SBruce Richardson 65999a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); 66099a2dd95SBruce Richardson return 0; 66199a2dd95SBruce Richardson } 66299a2dd95SBruce Richardson 66399a2dd95SBruce Richardson static int 66499a2dd95SBruce Richardson eth_dev_owner_set(const uint16_t port_id, const uint64_t old_owner_id, 66599a2dd95SBruce Richardson const struct rte_eth_dev_owner *new_owner) 66699a2dd95SBruce Richardson { 66799a2dd95SBruce Richardson struct rte_eth_dev *ethdev = &rte_eth_devices[port_id]; 66899a2dd95SBruce Richardson struct rte_eth_dev_owner *port_owner; 66999a2dd95SBruce Richardson 67099a2dd95SBruce Richardson if (port_id >= RTE_MAX_ETHPORTS || !eth_dev_is_allocated(ethdev)) { 67199a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Port id %"PRIu16" is not allocated\n", 67299a2dd95SBruce Richardson port_id); 67399a2dd95SBruce Richardson return -ENODEV; 67499a2dd95SBruce Richardson } 67599a2dd95SBruce Richardson 67653ef1b34SMin Hu (Connor) if (new_owner == NULL) { 67753ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 67853ef1b34SMin Hu (Connor) "Cannot set ethdev port %u owner from NULL owner\n", 67953ef1b34SMin Hu (Connor) port_id); 68053ef1b34SMin Hu (Connor) return -EINVAL; 68153ef1b34SMin Hu (Connor) } 68253ef1b34SMin Hu (Connor) 68399a2dd95SBruce Richardson if (!eth_is_valid_owner_id(new_owner->id) && 68499a2dd95SBruce Richardson !eth_is_valid_owner_id(old_owner_id)) { 68599a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 68699a2dd95SBruce Richardson "Invalid owner old_id=%016"PRIx64" new_id=%016"PRIx64"\n", 68799a2dd95SBruce Richardson old_owner_id, new_owner->id); 68899a2dd95SBruce Richardson return -EINVAL; 68999a2dd95SBruce Richardson } 69099a2dd95SBruce Richardson 69199a2dd95SBruce Richardson port_owner = &rte_eth_devices[port_id].data->owner; 69299a2dd95SBruce Richardson if (port_owner->id != old_owner_id) { 69399a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 69499a2dd95SBruce Richardson "Cannot set owner to port %u already owned by %s_%016"PRIX64"\n", 69599a2dd95SBruce Richardson port_id, port_owner->name, port_owner->id); 69699a2dd95SBruce Richardson return -EPERM; 69799a2dd95SBruce Richardson } 69899a2dd95SBruce Richardson 69999a2dd95SBruce Richardson /* can not truncate (same structure) */ 70099a2dd95SBruce Richardson strlcpy(port_owner->name, new_owner->name, RTE_ETH_MAX_OWNER_NAME_LEN); 70199a2dd95SBruce Richardson 70299a2dd95SBruce Richardson port_owner->id = new_owner->id; 70399a2dd95SBruce Richardson 70499a2dd95SBruce Richardson RTE_ETHDEV_LOG(DEBUG, "Port %u owner is %s_%016"PRIx64"\n", 70599a2dd95SBruce Richardson port_id, new_owner->name, new_owner->id); 70699a2dd95SBruce Richardson 70799a2dd95SBruce Richardson return 0; 70899a2dd95SBruce Richardson } 70999a2dd95SBruce Richardson 71099a2dd95SBruce Richardson int 71199a2dd95SBruce Richardson rte_eth_dev_owner_set(const uint16_t port_id, 71299a2dd95SBruce Richardson const struct rte_eth_dev_owner *owner) 71399a2dd95SBruce Richardson { 71499a2dd95SBruce Richardson int ret; 71599a2dd95SBruce Richardson 71699a2dd95SBruce Richardson eth_dev_shared_data_prepare(); 71799a2dd95SBruce Richardson 71899a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_shared_data->ownership_lock); 71999a2dd95SBruce Richardson 72099a2dd95SBruce Richardson ret = eth_dev_owner_set(port_id, RTE_ETH_DEV_NO_OWNER, owner); 72199a2dd95SBruce Richardson 72299a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); 72399a2dd95SBruce Richardson return ret; 72499a2dd95SBruce Richardson } 72599a2dd95SBruce Richardson 72699a2dd95SBruce Richardson int 72799a2dd95SBruce Richardson rte_eth_dev_owner_unset(const uint16_t port_id, const uint64_t owner_id) 72899a2dd95SBruce Richardson { 72999a2dd95SBruce Richardson const struct rte_eth_dev_owner new_owner = (struct rte_eth_dev_owner) 73099a2dd95SBruce Richardson {.id = RTE_ETH_DEV_NO_OWNER, .name = ""}; 73199a2dd95SBruce Richardson int ret; 73299a2dd95SBruce Richardson 73399a2dd95SBruce Richardson eth_dev_shared_data_prepare(); 73499a2dd95SBruce Richardson 73599a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_shared_data->ownership_lock); 73699a2dd95SBruce Richardson 73799a2dd95SBruce Richardson ret = eth_dev_owner_set(port_id, owner_id, &new_owner); 73899a2dd95SBruce Richardson 73999a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); 74099a2dd95SBruce Richardson return ret; 74199a2dd95SBruce Richardson } 74299a2dd95SBruce Richardson 74399a2dd95SBruce Richardson int 74499a2dd95SBruce Richardson rte_eth_dev_owner_delete(const uint64_t owner_id) 74599a2dd95SBruce Richardson { 74699a2dd95SBruce Richardson uint16_t port_id; 74799a2dd95SBruce Richardson int ret = 0; 74899a2dd95SBruce Richardson 74999a2dd95SBruce Richardson eth_dev_shared_data_prepare(); 75099a2dd95SBruce Richardson 75199a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_shared_data->ownership_lock); 75299a2dd95SBruce Richardson 75399a2dd95SBruce Richardson if (eth_is_valid_owner_id(owner_id)) { 75499a2dd95SBruce Richardson for (port_id = 0; port_id < RTE_MAX_ETHPORTS; port_id++) 75599a2dd95SBruce Richardson if (rte_eth_devices[port_id].data->owner.id == owner_id) 75699a2dd95SBruce Richardson memset(&rte_eth_devices[port_id].data->owner, 0, 75799a2dd95SBruce Richardson sizeof(struct rte_eth_dev_owner)); 75899a2dd95SBruce Richardson RTE_ETHDEV_LOG(NOTICE, 75999a2dd95SBruce Richardson "All port owners owned by %016"PRIx64" identifier have removed\n", 76099a2dd95SBruce Richardson owner_id); 76199a2dd95SBruce Richardson } else { 76299a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 76399a2dd95SBruce Richardson "Invalid owner id=%016"PRIx64"\n", 76499a2dd95SBruce Richardson owner_id); 76599a2dd95SBruce Richardson ret = -EINVAL; 76699a2dd95SBruce Richardson } 76799a2dd95SBruce Richardson 76899a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); 76999a2dd95SBruce Richardson 77099a2dd95SBruce Richardson return ret; 77199a2dd95SBruce Richardson } 77299a2dd95SBruce Richardson 77399a2dd95SBruce Richardson int 77499a2dd95SBruce Richardson rte_eth_dev_owner_get(const uint16_t port_id, struct rte_eth_dev_owner *owner) 77599a2dd95SBruce Richardson { 77653ef1b34SMin Hu (Connor) struct rte_eth_dev *ethdev; 77753ef1b34SMin Hu (Connor) 77853ef1b34SMin Hu (Connor) RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 77953ef1b34SMin Hu (Connor) ethdev = &rte_eth_devices[port_id]; 78053ef1b34SMin Hu (Connor) 78153ef1b34SMin Hu (Connor) if (!eth_dev_is_allocated(ethdev)) { 78253ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Port id %"PRIu16" is not allocated\n", 78353ef1b34SMin Hu (Connor) port_id); 78453ef1b34SMin Hu (Connor) return -ENODEV; 78553ef1b34SMin Hu (Connor) } 78653ef1b34SMin Hu (Connor) 78753ef1b34SMin Hu (Connor) if (owner == NULL) { 78853ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u owner to NULL\n", 78953ef1b34SMin Hu (Connor) port_id); 79053ef1b34SMin Hu (Connor) return -EINVAL; 79153ef1b34SMin Hu (Connor) } 79299a2dd95SBruce Richardson 79399a2dd95SBruce Richardson eth_dev_shared_data_prepare(); 79499a2dd95SBruce Richardson 79599a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_shared_data->ownership_lock); 79699a2dd95SBruce Richardson rte_memcpy(owner, ðdev->data->owner, sizeof(*owner)); 79799a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_shared_data->ownership_lock); 79853ef1b34SMin Hu (Connor) 79953ef1b34SMin Hu (Connor) return 0; 80099a2dd95SBruce Richardson } 80199a2dd95SBruce Richardson 80299a2dd95SBruce Richardson int 80399a2dd95SBruce Richardson rte_eth_dev_socket_id(uint16_t port_id) 80499a2dd95SBruce Richardson { 80599a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -1); 80699a2dd95SBruce Richardson return rte_eth_devices[port_id].data->numa_node; 80799a2dd95SBruce Richardson } 80899a2dd95SBruce Richardson 80999a2dd95SBruce Richardson void * 81099a2dd95SBruce Richardson rte_eth_dev_get_sec_ctx(uint16_t port_id) 81199a2dd95SBruce Richardson { 81299a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, NULL); 81399a2dd95SBruce Richardson return rte_eth_devices[port_id].security_ctx; 81499a2dd95SBruce Richardson } 81599a2dd95SBruce Richardson 81699a2dd95SBruce Richardson uint16_t 81799a2dd95SBruce Richardson rte_eth_dev_count_avail(void) 81899a2dd95SBruce Richardson { 81999a2dd95SBruce Richardson uint16_t p; 82099a2dd95SBruce Richardson uint16_t count; 82199a2dd95SBruce Richardson 82299a2dd95SBruce Richardson count = 0; 82399a2dd95SBruce Richardson 82499a2dd95SBruce Richardson RTE_ETH_FOREACH_DEV(p) 82599a2dd95SBruce Richardson count++; 82699a2dd95SBruce Richardson 82799a2dd95SBruce Richardson return count; 82899a2dd95SBruce Richardson } 82999a2dd95SBruce Richardson 83099a2dd95SBruce Richardson uint16_t 83199a2dd95SBruce Richardson rte_eth_dev_count_total(void) 83299a2dd95SBruce Richardson { 83399a2dd95SBruce Richardson uint16_t port, count = 0; 83499a2dd95SBruce Richardson 83599a2dd95SBruce Richardson RTE_ETH_FOREACH_VALID_DEV(port) 83699a2dd95SBruce Richardson count++; 83799a2dd95SBruce Richardson 83899a2dd95SBruce Richardson return count; 83999a2dd95SBruce Richardson } 84099a2dd95SBruce Richardson 84199a2dd95SBruce Richardson int 84299a2dd95SBruce Richardson rte_eth_dev_get_name_by_port(uint16_t port_id, char *name) 84399a2dd95SBruce Richardson { 84499a2dd95SBruce Richardson char *tmp; 84599a2dd95SBruce Richardson 84699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 84799a2dd95SBruce Richardson 84899a2dd95SBruce Richardson if (name == NULL) { 84953ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u name to NULL\n", 85053ef1b34SMin Hu (Connor) port_id); 85199a2dd95SBruce Richardson return -EINVAL; 85299a2dd95SBruce Richardson } 85399a2dd95SBruce Richardson 85499a2dd95SBruce Richardson /* shouldn't check 'rte_eth_devices[i].data', 85599a2dd95SBruce Richardson * because it might be overwritten by VDEV PMD */ 85699a2dd95SBruce Richardson tmp = eth_dev_shared_data->data[port_id].name; 85799a2dd95SBruce Richardson strcpy(name, tmp); 85899a2dd95SBruce Richardson return 0; 85999a2dd95SBruce Richardson } 86099a2dd95SBruce Richardson 86199a2dd95SBruce Richardson int 86299a2dd95SBruce Richardson rte_eth_dev_get_port_by_name(const char *name, uint16_t *port_id) 86399a2dd95SBruce Richardson { 86499a2dd95SBruce Richardson uint16_t pid; 86599a2dd95SBruce Richardson 86699a2dd95SBruce Richardson if (name == NULL) { 86753ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot get port ID from NULL name"); 86853ef1b34SMin Hu (Connor) return -EINVAL; 86953ef1b34SMin Hu (Connor) } 87053ef1b34SMin Hu (Connor) 87153ef1b34SMin Hu (Connor) if (port_id == NULL) { 87253ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 87353ef1b34SMin Hu (Connor) "Cannot get port ID to NULL for %s\n", name); 87499a2dd95SBruce Richardson return -EINVAL; 87599a2dd95SBruce Richardson } 87699a2dd95SBruce Richardson 87799a2dd95SBruce Richardson RTE_ETH_FOREACH_VALID_DEV(pid) 87899a2dd95SBruce Richardson if (!strcmp(name, eth_dev_shared_data->data[pid].name)) { 87999a2dd95SBruce Richardson *port_id = pid; 88099a2dd95SBruce Richardson return 0; 88199a2dd95SBruce Richardson } 88299a2dd95SBruce Richardson 88399a2dd95SBruce Richardson return -ENODEV; 88499a2dd95SBruce Richardson } 88599a2dd95SBruce Richardson 88699a2dd95SBruce Richardson static int 88799a2dd95SBruce Richardson eth_err(uint16_t port_id, int ret) 88899a2dd95SBruce Richardson { 88999a2dd95SBruce Richardson if (ret == 0) 89099a2dd95SBruce Richardson return 0; 89199a2dd95SBruce Richardson if (rte_eth_dev_is_removed(port_id)) 89299a2dd95SBruce Richardson return -EIO; 89399a2dd95SBruce Richardson return ret; 89499a2dd95SBruce Richardson } 89599a2dd95SBruce Richardson 89649ed3224SXueming Li static void 89749ed3224SXueming Li eth_dev_rxq_release(struct rte_eth_dev *dev, uint16_t qid) 89849ed3224SXueming Li { 89949ed3224SXueming Li void **rxq = dev->data->rx_queues; 90049ed3224SXueming Li 90149ed3224SXueming Li if (rxq[qid] == NULL) 90249ed3224SXueming Li return; 90349ed3224SXueming Li 90449ed3224SXueming Li if (dev->dev_ops->rx_queue_release != NULL) 9057483341aSXueming Li (*dev->dev_ops->rx_queue_release)(dev, qid); 90649ed3224SXueming Li rxq[qid] = NULL; 90749ed3224SXueming Li } 90849ed3224SXueming Li 90949ed3224SXueming Li static void 91049ed3224SXueming Li eth_dev_txq_release(struct rte_eth_dev *dev, uint16_t qid) 91149ed3224SXueming Li { 91249ed3224SXueming Li void **txq = dev->data->tx_queues; 91349ed3224SXueming Li 91449ed3224SXueming Li if (txq[qid] == NULL) 91549ed3224SXueming Li return; 91649ed3224SXueming Li 91749ed3224SXueming Li if (dev->dev_ops->tx_queue_release != NULL) 9187483341aSXueming Li (*dev->dev_ops->tx_queue_release)(dev, qid); 91949ed3224SXueming Li txq[qid] = NULL; 92049ed3224SXueming Li } 92149ed3224SXueming Li 92299a2dd95SBruce Richardson static int 92399a2dd95SBruce Richardson eth_dev_rx_queue_config(struct rte_eth_dev *dev, uint16_t nb_queues) 92499a2dd95SBruce Richardson { 92599a2dd95SBruce Richardson uint16_t old_nb_queues = dev->data->nb_rx_queues; 92699a2dd95SBruce Richardson unsigned i; 92799a2dd95SBruce Richardson 92899a2dd95SBruce Richardson if (dev->data->rx_queues == NULL && nb_queues != 0) { /* first time configuration */ 92999a2dd95SBruce Richardson dev->data->rx_queues = rte_zmalloc("ethdev->rx_queues", 930c024496aSKonstantin Ananyev sizeof(dev->data->rx_queues[0]) * 931c024496aSKonstantin Ananyev RTE_MAX_QUEUES_PER_PORT, 93299a2dd95SBruce Richardson RTE_CACHE_LINE_SIZE); 93399a2dd95SBruce Richardson if (dev->data->rx_queues == NULL) { 93499a2dd95SBruce Richardson dev->data->nb_rx_queues = 0; 93599a2dd95SBruce Richardson return -(ENOMEM); 93699a2dd95SBruce Richardson } 93799a2dd95SBruce Richardson } else if (dev->data->rx_queues != NULL && nb_queues != 0) { /* re-configure */ 93849ed3224SXueming Li for (i = nb_queues; i < old_nb_queues; i++) 93949ed3224SXueming Li eth_dev_rxq_release(dev, i); 94099a2dd95SBruce Richardson 94199a2dd95SBruce Richardson } else if (dev->data->rx_queues != NULL && nb_queues == 0) { 94299a2dd95SBruce Richardson for (i = nb_queues; i < old_nb_queues; i++) 94349ed3224SXueming Li eth_dev_rxq_release(dev, i); 94499a2dd95SBruce Richardson 94599a2dd95SBruce Richardson rte_free(dev->data->rx_queues); 94699a2dd95SBruce Richardson dev->data->rx_queues = NULL; 94799a2dd95SBruce Richardson } 94899a2dd95SBruce Richardson dev->data->nb_rx_queues = nb_queues; 94999a2dd95SBruce Richardson return 0; 95099a2dd95SBruce Richardson } 95199a2dd95SBruce Richardson 95299a2dd95SBruce Richardson static int 95399a2dd95SBruce Richardson eth_dev_validate_rx_queue(const struct rte_eth_dev *dev, uint16_t rx_queue_id) 95499a2dd95SBruce Richardson { 95599a2dd95SBruce Richardson uint16_t port_id; 95699a2dd95SBruce Richardson 95799a2dd95SBruce Richardson if (rx_queue_id >= dev->data->nb_rx_queues) { 95899a2dd95SBruce Richardson port_id = dev->data->port_id; 95999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 96099a2dd95SBruce Richardson "Invalid Rx queue_id=%u of device with port_id=%u\n", 96199a2dd95SBruce Richardson rx_queue_id, port_id); 96299a2dd95SBruce Richardson return -EINVAL; 96399a2dd95SBruce Richardson } 96499a2dd95SBruce Richardson 96599a2dd95SBruce Richardson if (dev->data->rx_queues[rx_queue_id] == NULL) { 96699a2dd95SBruce Richardson port_id = dev->data->port_id; 96799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 96899a2dd95SBruce Richardson "Queue %u of device with port_id=%u has not been setup\n", 96999a2dd95SBruce Richardson rx_queue_id, port_id); 97099a2dd95SBruce Richardson return -EINVAL; 97199a2dd95SBruce Richardson } 97299a2dd95SBruce Richardson 97399a2dd95SBruce Richardson return 0; 97499a2dd95SBruce Richardson } 97599a2dd95SBruce Richardson 97699a2dd95SBruce Richardson static int 97799a2dd95SBruce Richardson eth_dev_validate_tx_queue(const struct rte_eth_dev *dev, uint16_t tx_queue_id) 97899a2dd95SBruce Richardson { 97999a2dd95SBruce Richardson uint16_t port_id; 98099a2dd95SBruce Richardson 98199a2dd95SBruce Richardson if (tx_queue_id >= dev->data->nb_tx_queues) { 98299a2dd95SBruce Richardson port_id = dev->data->port_id; 98399a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 98499a2dd95SBruce Richardson "Invalid Tx queue_id=%u of device with port_id=%u\n", 98599a2dd95SBruce Richardson tx_queue_id, port_id); 98699a2dd95SBruce Richardson return -EINVAL; 98799a2dd95SBruce Richardson } 98899a2dd95SBruce Richardson 98999a2dd95SBruce Richardson if (dev->data->tx_queues[tx_queue_id] == NULL) { 99099a2dd95SBruce Richardson port_id = dev->data->port_id; 99199a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 99299a2dd95SBruce Richardson "Queue %u of device with port_id=%u has not been setup\n", 99399a2dd95SBruce Richardson tx_queue_id, port_id); 99499a2dd95SBruce Richardson return -EINVAL; 99599a2dd95SBruce Richardson } 99699a2dd95SBruce Richardson 99799a2dd95SBruce Richardson return 0; 99899a2dd95SBruce Richardson } 99999a2dd95SBruce Richardson 100099a2dd95SBruce Richardson int 100199a2dd95SBruce Richardson rte_eth_dev_rx_queue_start(uint16_t port_id, uint16_t rx_queue_id) 100299a2dd95SBruce Richardson { 100399a2dd95SBruce Richardson struct rte_eth_dev *dev; 100499a2dd95SBruce Richardson int ret; 100599a2dd95SBruce Richardson 100699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 100799a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 100853ef1b34SMin Hu (Connor) 100999a2dd95SBruce Richardson if (!dev->data->dev_started) { 101099a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 101199a2dd95SBruce Richardson "Port %u must be started before start any queue\n", 101299a2dd95SBruce Richardson port_id); 101399a2dd95SBruce Richardson return -EINVAL; 101499a2dd95SBruce Richardson } 101599a2dd95SBruce Richardson 101699a2dd95SBruce Richardson ret = eth_dev_validate_rx_queue(dev, rx_queue_id); 101799a2dd95SBruce Richardson if (ret != 0) 101899a2dd95SBruce Richardson return ret; 101999a2dd95SBruce Richardson 102099a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_start, -ENOTSUP); 102199a2dd95SBruce Richardson 102299a2dd95SBruce Richardson if (rte_eth_dev_is_rx_hairpin_queue(dev, rx_queue_id)) { 102399a2dd95SBruce Richardson RTE_ETHDEV_LOG(INFO, 102499a2dd95SBruce Richardson "Can't start Rx hairpin queue %"PRIu16" of device with port_id=%"PRIu16"\n", 102599a2dd95SBruce Richardson rx_queue_id, port_id); 102699a2dd95SBruce Richardson return -EINVAL; 102799a2dd95SBruce Richardson } 102899a2dd95SBruce Richardson 102999a2dd95SBruce Richardson if (dev->data->rx_queue_state[rx_queue_id] != RTE_ETH_QUEUE_STATE_STOPPED) { 103099a2dd95SBruce Richardson RTE_ETHDEV_LOG(INFO, 103199a2dd95SBruce Richardson "Queue %"PRIu16" of device with port_id=%"PRIu16" already started\n", 103299a2dd95SBruce Richardson rx_queue_id, port_id); 103399a2dd95SBruce Richardson return 0; 103499a2dd95SBruce Richardson } 103599a2dd95SBruce Richardson 103653ef1b34SMin Hu (Connor) return eth_err(port_id, dev->dev_ops->rx_queue_start(dev, rx_queue_id)); 103799a2dd95SBruce Richardson } 103899a2dd95SBruce Richardson 103999a2dd95SBruce Richardson int 104099a2dd95SBruce Richardson rte_eth_dev_rx_queue_stop(uint16_t port_id, uint16_t rx_queue_id) 104199a2dd95SBruce Richardson { 104299a2dd95SBruce Richardson struct rte_eth_dev *dev; 104399a2dd95SBruce Richardson int ret; 104499a2dd95SBruce Richardson 104599a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 104699a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 104799a2dd95SBruce Richardson 104899a2dd95SBruce Richardson ret = eth_dev_validate_rx_queue(dev, rx_queue_id); 104999a2dd95SBruce Richardson if (ret != 0) 105099a2dd95SBruce Richardson return ret; 105199a2dd95SBruce Richardson 105299a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_stop, -ENOTSUP); 105399a2dd95SBruce Richardson 105499a2dd95SBruce Richardson if (rte_eth_dev_is_rx_hairpin_queue(dev, rx_queue_id)) { 105599a2dd95SBruce Richardson RTE_ETHDEV_LOG(INFO, 105699a2dd95SBruce Richardson "Can't stop Rx hairpin queue %"PRIu16" of device with port_id=%"PRIu16"\n", 105799a2dd95SBruce Richardson rx_queue_id, port_id); 105899a2dd95SBruce Richardson return -EINVAL; 105999a2dd95SBruce Richardson } 106099a2dd95SBruce Richardson 106199a2dd95SBruce Richardson if (dev->data->rx_queue_state[rx_queue_id] == RTE_ETH_QUEUE_STATE_STOPPED) { 106299a2dd95SBruce Richardson RTE_ETHDEV_LOG(INFO, 106399a2dd95SBruce Richardson "Queue %"PRIu16" of device with port_id=%"PRIu16" already stopped\n", 106499a2dd95SBruce Richardson rx_queue_id, port_id); 106599a2dd95SBruce Richardson return 0; 106699a2dd95SBruce Richardson } 106799a2dd95SBruce Richardson 106899a2dd95SBruce Richardson return eth_err(port_id, dev->dev_ops->rx_queue_stop(dev, rx_queue_id)); 106999a2dd95SBruce Richardson } 107099a2dd95SBruce Richardson 107199a2dd95SBruce Richardson int 107299a2dd95SBruce Richardson rte_eth_dev_tx_queue_start(uint16_t port_id, uint16_t tx_queue_id) 107399a2dd95SBruce Richardson { 107499a2dd95SBruce Richardson struct rte_eth_dev *dev; 107599a2dd95SBruce Richardson int ret; 107699a2dd95SBruce Richardson 107799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 107899a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 107953ef1b34SMin Hu (Connor) 108099a2dd95SBruce Richardson if (!dev->data->dev_started) { 108199a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 108299a2dd95SBruce Richardson "Port %u must be started before start any queue\n", 108399a2dd95SBruce Richardson port_id); 108499a2dd95SBruce Richardson return -EINVAL; 108599a2dd95SBruce Richardson } 108699a2dd95SBruce Richardson 108799a2dd95SBruce Richardson ret = eth_dev_validate_tx_queue(dev, tx_queue_id); 108899a2dd95SBruce Richardson if (ret != 0) 108999a2dd95SBruce Richardson return ret; 109099a2dd95SBruce Richardson 109199a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_start, -ENOTSUP); 109299a2dd95SBruce Richardson 109399a2dd95SBruce Richardson if (rte_eth_dev_is_tx_hairpin_queue(dev, tx_queue_id)) { 109499a2dd95SBruce Richardson RTE_ETHDEV_LOG(INFO, 109599a2dd95SBruce Richardson "Can't start Tx hairpin queue %"PRIu16" of device with port_id=%"PRIu16"\n", 109699a2dd95SBruce Richardson tx_queue_id, port_id); 109799a2dd95SBruce Richardson return -EINVAL; 109899a2dd95SBruce Richardson } 109999a2dd95SBruce Richardson 110099a2dd95SBruce Richardson if (dev->data->tx_queue_state[tx_queue_id] != RTE_ETH_QUEUE_STATE_STOPPED) { 110199a2dd95SBruce Richardson RTE_ETHDEV_LOG(INFO, 110299a2dd95SBruce Richardson "Queue %"PRIu16" of device with port_id=%"PRIu16" already started\n", 110399a2dd95SBruce Richardson tx_queue_id, port_id); 110499a2dd95SBruce Richardson return 0; 110599a2dd95SBruce Richardson } 110699a2dd95SBruce Richardson 110799a2dd95SBruce Richardson return eth_err(port_id, dev->dev_ops->tx_queue_start(dev, tx_queue_id)); 110899a2dd95SBruce Richardson } 110999a2dd95SBruce Richardson 111099a2dd95SBruce Richardson int 111199a2dd95SBruce Richardson rte_eth_dev_tx_queue_stop(uint16_t port_id, uint16_t tx_queue_id) 111299a2dd95SBruce Richardson { 111399a2dd95SBruce Richardson struct rte_eth_dev *dev; 111499a2dd95SBruce Richardson int ret; 111599a2dd95SBruce Richardson 111699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 111799a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 111899a2dd95SBruce Richardson 111999a2dd95SBruce Richardson ret = eth_dev_validate_tx_queue(dev, tx_queue_id); 112099a2dd95SBruce Richardson if (ret != 0) 112199a2dd95SBruce Richardson return ret; 112299a2dd95SBruce Richardson 112399a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_stop, -ENOTSUP); 112499a2dd95SBruce Richardson 112599a2dd95SBruce Richardson if (rte_eth_dev_is_tx_hairpin_queue(dev, tx_queue_id)) { 112699a2dd95SBruce Richardson RTE_ETHDEV_LOG(INFO, 112799a2dd95SBruce Richardson "Can't stop Tx hairpin queue %"PRIu16" of device with port_id=%"PRIu16"\n", 112899a2dd95SBruce Richardson tx_queue_id, port_id); 112999a2dd95SBruce Richardson return -EINVAL; 113099a2dd95SBruce Richardson } 113199a2dd95SBruce Richardson 113299a2dd95SBruce Richardson if (dev->data->tx_queue_state[tx_queue_id] == RTE_ETH_QUEUE_STATE_STOPPED) { 113399a2dd95SBruce Richardson RTE_ETHDEV_LOG(INFO, 113499a2dd95SBruce Richardson "Queue %"PRIu16" of device with port_id=%"PRIu16" already stopped\n", 113599a2dd95SBruce Richardson tx_queue_id, port_id); 113699a2dd95SBruce Richardson return 0; 113799a2dd95SBruce Richardson } 113899a2dd95SBruce Richardson 113999a2dd95SBruce Richardson return eth_err(port_id, dev->dev_ops->tx_queue_stop(dev, tx_queue_id)); 114099a2dd95SBruce Richardson } 114199a2dd95SBruce Richardson 114299a2dd95SBruce Richardson static int 114399a2dd95SBruce Richardson eth_dev_tx_queue_config(struct rte_eth_dev *dev, uint16_t nb_queues) 114499a2dd95SBruce Richardson { 114599a2dd95SBruce Richardson uint16_t old_nb_queues = dev->data->nb_tx_queues; 114699a2dd95SBruce Richardson unsigned i; 114799a2dd95SBruce Richardson 114899a2dd95SBruce Richardson if (dev->data->tx_queues == NULL && nb_queues != 0) { /* first time configuration */ 114999a2dd95SBruce Richardson dev->data->tx_queues = rte_zmalloc("ethdev->tx_queues", 1150c024496aSKonstantin Ananyev sizeof(dev->data->tx_queues[0]) * 1151c024496aSKonstantin Ananyev RTE_MAX_QUEUES_PER_PORT, 115299a2dd95SBruce Richardson RTE_CACHE_LINE_SIZE); 115399a2dd95SBruce Richardson if (dev->data->tx_queues == NULL) { 115499a2dd95SBruce Richardson dev->data->nb_tx_queues = 0; 115599a2dd95SBruce Richardson return -(ENOMEM); 115699a2dd95SBruce Richardson } 115799a2dd95SBruce Richardson } else if (dev->data->tx_queues != NULL && nb_queues != 0) { /* re-configure */ 115849ed3224SXueming Li for (i = nb_queues; i < old_nb_queues; i++) 115949ed3224SXueming Li eth_dev_txq_release(dev, i); 116099a2dd95SBruce Richardson 116199a2dd95SBruce Richardson } else if (dev->data->tx_queues != NULL && nb_queues == 0) { 116299a2dd95SBruce Richardson for (i = nb_queues; i < old_nb_queues; i++) 116349ed3224SXueming Li eth_dev_txq_release(dev, i); 116499a2dd95SBruce Richardson 116599a2dd95SBruce Richardson rte_free(dev->data->tx_queues); 116699a2dd95SBruce Richardson dev->data->tx_queues = NULL; 116799a2dd95SBruce Richardson } 116899a2dd95SBruce Richardson dev->data->nb_tx_queues = nb_queues; 116999a2dd95SBruce Richardson return 0; 117099a2dd95SBruce Richardson } 117199a2dd95SBruce Richardson 117299a2dd95SBruce Richardson uint32_t 117399a2dd95SBruce Richardson rte_eth_speed_bitflag(uint32_t speed, int duplex) 117499a2dd95SBruce Richardson { 117599a2dd95SBruce Richardson switch (speed) { 117699a2dd95SBruce Richardson case ETH_SPEED_NUM_10M: 117799a2dd95SBruce Richardson return duplex ? ETH_LINK_SPEED_10M : ETH_LINK_SPEED_10M_HD; 117899a2dd95SBruce Richardson case ETH_SPEED_NUM_100M: 117999a2dd95SBruce Richardson return duplex ? ETH_LINK_SPEED_100M : ETH_LINK_SPEED_100M_HD; 118099a2dd95SBruce Richardson case ETH_SPEED_NUM_1G: 118199a2dd95SBruce Richardson return ETH_LINK_SPEED_1G; 118299a2dd95SBruce Richardson case ETH_SPEED_NUM_2_5G: 118399a2dd95SBruce Richardson return ETH_LINK_SPEED_2_5G; 118499a2dd95SBruce Richardson case ETH_SPEED_NUM_5G: 118599a2dd95SBruce Richardson return ETH_LINK_SPEED_5G; 118699a2dd95SBruce Richardson case ETH_SPEED_NUM_10G: 118799a2dd95SBruce Richardson return ETH_LINK_SPEED_10G; 118899a2dd95SBruce Richardson case ETH_SPEED_NUM_20G: 118999a2dd95SBruce Richardson return ETH_LINK_SPEED_20G; 119099a2dd95SBruce Richardson case ETH_SPEED_NUM_25G: 119199a2dd95SBruce Richardson return ETH_LINK_SPEED_25G; 119299a2dd95SBruce Richardson case ETH_SPEED_NUM_40G: 119399a2dd95SBruce Richardson return ETH_LINK_SPEED_40G; 119499a2dd95SBruce Richardson case ETH_SPEED_NUM_50G: 119599a2dd95SBruce Richardson return ETH_LINK_SPEED_50G; 119699a2dd95SBruce Richardson case ETH_SPEED_NUM_56G: 119799a2dd95SBruce Richardson return ETH_LINK_SPEED_56G; 119899a2dd95SBruce Richardson case ETH_SPEED_NUM_100G: 119999a2dd95SBruce Richardson return ETH_LINK_SPEED_100G; 120099a2dd95SBruce Richardson case ETH_SPEED_NUM_200G: 120199a2dd95SBruce Richardson return ETH_LINK_SPEED_200G; 120299a2dd95SBruce Richardson default: 120399a2dd95SBruce Richardson return 0; 120499a2dd95SBruce Richardson } 120599a2dd95SBruce Richardson } 120699a2dd95SBruce Richardson 120799a2dd95SBruce Richardson const char * 120899a2dd95SBruce Richardson rte_eth_dev_rx_offload_name(uint64_t offload) 120999a2dd95SBruce Richardson { 121099a2dd95SBruce Richardson const char *name = "UNKNOWN"; 121199a2dd95SBruce Richardson unsigned int i; 121299a2dd95SBruce Richardson 121399a2dd95SBruce Richardson for (i = 0; i < RTE_DIM(eth_dev_rx_offload_names); ++i) { 121499a2dd95SBruce Richardson if (offload == eth_dev_rx_offload_names[i].offload) { 121599a2dd95SBruce Richardson name = eth_dev_rx_offload_names[i].name; 121699a2dd95SBruce Richardson break; 121799a2dd95SBruce Richardson } 121899a2dd95SBruce Richardson } 121999a2dd95SBruce Richardson 122099a2dd95SBruce Richardson return name; 122199a2dd95SBruce Richardson } 122299a2dd95SBruce Richardson 122399a2dd95SBruce Richardson const char * 122499a2dd95SBruce Richardson rte_eth_dev_tx_offload_name(uint64_t offload) 122599a2dd95SBruce Richardson { 122699a2dd95SBruce Richardson const char *name = "UNKNOWN"; 122799a2dd95SBruce Richardson unsigned int i; 122899a2dd95SBruce Richardson 122999a2dd95SBruce Richardson for (i = 0; i < RTE_DIM(eth_dev_tx_offload_names); ++i) { 123099a2dd95SBruce Richardson if (offload == eth_dev_tx_offload_names[i].offload) { 123199a2dd95SBruce Richardson name = eth_dev_tx_offload_names[i].name; 123299a2dd95SBruce Richardson break; 123399a2dd95SBruce Richardson } 123499a2dd95SBruce Richardson } 123599a2dd95SBruce Richardson 123699a2dd95SBruce Richardson return name; 123799a2dd95SBruce Richardson } 123899a2dd95SBruce Richardson 123999a2dd95SBruce Richardson static inline int 124099a2dd95SBruce Richardson eth_dev_check_lro_pkt_size(uint16_t port_id, uint32_t config_size, 124199a2dd95SBruce Richardson uint32_t max_rx_pkt_len, uint32_t dev_info_size) 124299a2dd95SBruce Richardson { 124399a2dd95SBruce Richardson int ret = 0; 124499a2dd95SBruce Richardson 124599a2dd95SBruce Richardson if (dev_info_size == 0) { 124699a2dd95SBruce Richardson if (config_size != max_rx_pkt_len) { 124799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Ethdev port_id=%d max_lro_pkt_size" 124899a2dd95SBruce Richardson " %u != %u is not allowed\n", 124999a2dd95SBruce Richardson port_id, config_size, max_rx_pkt_len); 125099a2dd95SBruce Richardson ret = -EINVAL; 125199a2dd95SBruce Richardson } 125299a2dd95SBruce Richardson } else if (config_size > dev_info_size) { 125399a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Ethdev port_id=%d max_lro_pkt_size %u " 125499a2dd95SBruce Richardson "> max allowed value %u\n", port_id, config_size, 125599a2dd95SBruce Richardson dev_info_size); 125699a2dd95SBruce Richardson ret = -EINVAL; 125799a2dd95SBruce Richardson } else if (config_size < RTE_ETHER_MIN_LEN) { 125899a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Ethdev port_id=%d max_lro_pkt_size %u " 125999a2dd95SBruce Richardson "< min allowed value %u\n", port_id, config_size, 126099a2dd95SBruce Richardson (unsigned int)RTE_ETHER_MIN_LEN); 126199a2dd95SBruce Richardson ret = -EINVAL; 126299a2dd95SBruce Richardson } 126399a2dd95SBruce Richardson return ret; 126499a2dd95SBruce Richardson } 126599a2dd95SBruce Richardson 126699a2dd95SBruce Richardson /* 126799a2dd95SBruce Richardson * Validate offloads that are requested through rte_eth_dev_configure against 126899a2dd95SBruce Richardson * the offloads successfully set by the ethernet device. 126999a2dd95SBruce Richardson * 127099a2dd95SBruce Richardson * @param port_id 127199a2dd95SBruce Richardson * The port identifier of the Ethernet device. 127299a2dd95SBruce Richardson * @param req_offloads 127399a2dd95SBruce Richardson * The offloads that have been requested through `rte_eth_dev_configure`. 127499a2dd95SBruce Richardson * @param set_offloads 127599a2dd95SBruce Richardson * The offloads successfully set by the ethernet device. 127699a2dd95SBruce Richardson * @param offload_type 127799a2dd95SBruce Richardson * The offload type i.e. Rx/Tx string. 127899a2dd95SBruce Richardson * @param offload_name 127999a2dd95SBruce Richardson * The function that prints the offload name. 128099a2dd95SBruce Richardson * @return 128199a2dd95SBruce Richardson * - (0) if validation successful. 128299a2dd95SBruce Richardson * - (-EINVAL) if requested offload has been silently disabled. 128399a2dd95SBruce Richardson * 128499a2dd95SBruce Richardson */ 128599a2dd95SBruce Richardson static int 128699a2dd95SBruce Richardson eth_dev_validate_offloads(uint16_t port_id, uint64_t req_offloads, 128799a2dd95SBruce Richardson uint64_t set_offloads, const char *offload_type, 128899a2dd95SBruce Richardson const char *(*offload_name)(uint64_t)) 128999a2dd95SBruce Richardson { 129099a2dd95SBruce Richardson uint64_t offloads_diff = req_offloads ^ set_offloads; 129199a2dd95SBruce Richardson uint64_t offload; 129299a2dd95SBruce Richardson int ret = 0; 129399a2dd95SBruce Richardson 129499a2dd95SBruce Richardson while (offloads_diff != 0) { 129599a2dd95SBruce Richardson /* Check if any offload is requested but not enabled. */ 129699a2dd95SBruce Richardson offload = 1ULL << __builtin_ctzll(offloads_diff); 129799a2dd95SBruce Richardson if (offload & req_offloads) { 129899a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 129999a2dd95SBruce Richardson "Port %u failed to enable %s offload %s\n", 130099a2dd95SBruce Richardson port_id, offload_type, offload_name(offload)); 130199a2dd95SBruce Richardson ret = -EINVAL; 130299a2dd95SBruce Richardson } 130399a2dd95SBruce Richardson 130499a2dd95SBruce Richardson /* Check if offload couldn't be disabled. */ 130599a2dd95SBruce Richardson if (offload & set_offloads) { 130699a2dd95SBruce Richardson RTE_ETHDEV_LOG(DEBUG, 130799a2dd95SBruce Richardson "Port %u %s offload %s is not requested but enabled\n", 130899a2dd95SBruce Richardson port_id, offload_type, offload_name(offload)); 130999a2dd95SBruce Richardson } 131099a2dd95SBruce Richardson 131199a2dd95SBruce Richardson offloads_diff &= ~offload; 131299a2dd95SBruce Richardson } 131399a2dd95SBruce Richardson 131499a2dd95SBruce Richardson return ret; 131599a2dd95SBruce Richardson } 131699a2dd95SBruce Richardson 13171bb4a528SFerruh Yigit static uint32_t 13181bb4a528SFerruh Yigit eth_dev_get_overhead_len(uint32_t max_rx_pktlen, uint16_t max_mtu) 13191bb4a528SFerruh Yigit { 13201bb4a528SFerruh Yigit uint32_t overhead_len; 13211bb4a528SFerruh Yigit 13221bb4a528SFerruh Yigit if (max_mtu != UINT16_MAX && max_rx_pktlen > max_mtu) 13231bb4a528SFerruh Yigit overhead_len = max_rx_pktlen - max_mtu; 13241bb4a528SFerruh Yigit else 13251bb4a528SFerruh Yigit overhead_len = RTE_ETHER_HDR_LEN + RTE_ETHER_CRC_LEN; 13261bb4a528SFerruh Yigit 13271bb4a528SFerruh Yigit return overhead_len; 13281bb4a528SFerruh Yigit } 13291bb4a528SFerruh Yigit 1330990912e6SFerruh Yigit /* rte_eth_dev_info_get() should be called prior to this function */ 1331990912e6SFerruh Yigit static int 1332990912e6SFerruh Yigit eth_dev_validate_mtu(uint16_t port_id, struct rte_eth_dev_info *dev_info, 1333990912e6SFerruh Yigit uint16_t mtu) 1334990912e6SFerruh Yigit { 1335990912e6SFerruh Yigit uint32_t overhead_len; 1336990912e6SFerruh Yigit uint32_t frame_size; 1337990912e6SFerruh Yigit 1338990912e6SFerruh Yigit if (mtu < dev_info->min_mtu) { 1339990912e6SFerruh Yigit RTE_ETHDEV_LOG(ERR, 1340990912e6SFerruh Yigit "MTU (%u) < device min MTU (%u) for port_id %u\n", 1341990912e6SFerruh Yigit mtu, dev_info->min_mtu, port_id); 1342990912e6SFerruh Yigit return -EINVAL; 1343990912e6SFerruh Yigit } 1344990912e6SFerruh Yigit if (mtu > dev_info->max_mtu) { 1345990912e6SFerruh Yigit RTE_ETHDEV_LOG(ERR, 1346990912e6SFerruh Yigit "MTU (%u) > device max MTU (%u) for port_id %u\n", 1347990912e6SFerruh Yigit mtu, dev_info->max_mtu, port_id); 1348990912e6SFerruh Yigit return -EINVAL; 1349990912e6SFerruh Yigit } 1350990912e6SFerruh Yigit 1351990912e6SFerruh Yigit overhead_len = eth_dev_get_overhead_len(dev_info->max_rx_pktlen, 1352990912e6SFerruh Yigit dev_info->max_mtu); 1353990912e6SFerruh Yigit frame_size = mtu + overhead_len; 1354990912e6SFerruh Yigit if (frame_size < RTE_ETHER_MIN_LEN) { 1355990912e6SFerruh Yigit RTE_ETHDEV_LOG(ERR, 1356990912e6SFerruh Yigit "Frame size (%u) < min frame size (%u) for port_id %u\n", 1357990912e6SFerruh Yigit frame_size, RTE_ETHER_MIN_LEN, port_id); 1358990912e6SFerruh Yigit return -EINVAL; 1359990912e6SFerruh Yigit } 1360990912e6SFerruh Yigit 1361990912e6SFerruh Yigit if (frame_size > dev_info->max_rx_pktlen) { 1362990912e6SFerruh Yigit RTE_ETHDEV_LOG(ERR, 1363990912e6SFerruh Yigit "Frame size (%u) > device max frame size (%u) for port_id %u\n", 1364990912e6SFerruh Yigit frame_size, dev_info->max_rx_pktlen, port_id); 1365990912e6SFerruh Yigit return -EINVAL; 1366990912e6SFerruh Yigit } 1367990912e6SFerruh Yigit 1368990912e6SFerruh Yigit return 0; 1369990912e6SFerruh Yigit } 1370990912e6SFerruh Yigit 137199a2dd95SBruce Richardson int 137299a2dd95SBruce Richardson rte_eth_dev_configure(uint16_t port_id, uint16_t nb_rx_q, uint16_t nb_tx_q, 137399a2dd95SBruce Richardson const struct rte_eth_conf *dev_conf) 137499a2dd95SBruce Richardson { 137599a2dd95SBruce Richardson struct rte_eth_dev *dev; 137699a2dd95SBruce Richardson struct rte_eth_dev_info dev_info; 137799a2dd95SBruce Richardson struct rte_eth_conf orig_conf; 137899a2dd95SBruce Richardson int diag; 137999a2dd95SBruce Richardson int ret; 138099a2dd95SBruce Richardson uint16_t old_mtu; 138199a2dd95SBruce Richardson 138299a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 138399a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 138499a2dd95SBruce Richardson 138553ef1b34SMin Hu (Connor) if (dev_conf == NULL) { 138653ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 138753ef1b34SMin Hu (Connor) "Cannot configure ethdev port %u from NULL config\n", 138853ef1b34SMin Hu (Connor) port_id); 138953ef1b34SMin Hu (Connor) return -EINVAL; 139053ef1b34SMin Hu (Connor) } 139153ef1b34SMin Hu (Connor) 139299a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_configure, -ENOTSUP); 139399a2dd95SBruce Richardson 139499a2dd95SBruce Richardson if (dev->data->dev_started) { 139599a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 139699a2dd95SBruce Richardson "Port %u must be stopped to allow configuration\n", 139799a2dd95SBruce Richardson port_id); 139899a2dd95SBruce Richardson return -EBUSY; 139999a2dd95SBruce Richardson } 140099a2dd95SBruce Richardson 140102edbfabSHuisong Li /* 140202edbfabSHuisong Li * Ensure that "dev_configured" is always 0 each time prepare to do 140302edbfabSHuisong Li * dev_configure() to avoid any non-anticipated behaviour. 140402edbfabSHuisong Li * And set to 1 when dev_configure() is executed successfully. 140502edbfabSHuisong Li */ 140602edbfabSHuisong Li dev->data->dev_configured = 0; 140702edbfabSHuisong Li 140899a2dd95SBruce Richardson /* Store original config, as rollback required on failure */ 140999a2dd95SBruce Richardson memcpy(&orig_conf, &dev->data->dev_conf, sizeof(dev->data->dev_conf)); 141099a2dd95SBruce Richardson 141199a2dd95SBruce Richardson /* 141299a2dd95SBruce Richardson * Copy the dev_conf parameter into the dev structure. 141399a2dd95SBruce Richardson * rte_eth_dev_info_get() requires dev_conf, copy it before dev_info get 141499a2dd95SBruce Richardson */ 141599a2dd95SBruce Richardson if (dev_conf != &dev->data->dev_conf) 141699a2dd95SBruce Richardson memcpy(&dev->data->dev_conf, dev_conf, 141799a2dd95SBruce Richardson sizeof(dev->data->dev_conf)); 141899a2dd95SBruce Richardson 141999a2dd95SBruce Richardson /* Backup mtu for rollback */ 142099a2dd95SBruce Richardson old_mtu = dev->data->mtu; 142199a2dd95SBruce Richardson 142299a2dd95SBruce Richardson ret = rte_eth_dev_info_get(port_id, &dev_info); 142399a2dd95SBruce Richardson if (ret != 0) 142499a2dd95SBruce Richardson goto rollback; 142599a2dd95SBruce Richardson 142699a2dd95SBruce Richardson /* If number of queues specified by application for both Rx and Tx is 142799a2dd95SBruce Richardson * zero, use driver preferred values. This cannot be done individually 142899a2dd95SBruce Richardson * as it is valid for either Tx or Rx (but not both) to be zero. 142999a2dd95SBruce Richardson * If driver does not provide any preferred valued, fall back on 143099a2dd95SBruce Richardson * EAL defaults. 143199a2dd95SBruce Richardson */ 143299a2dd95SBruce Richardson if (nb_rx_q == 0 && nb_tx_q == 0) { 143399a2dd95SBruce Richardson nb_rx_q = dev_info.default_rxportconf.nb_queues; 143499a2dd95SBruce Richardson if (nb_rx_q == 0) 143599a2dd95SBruce Richardson nb_rx_q = RTE_ETH_DEV_FALLBACK_RX_NBQUEUES; 143699a2dd95SBruce Richardson nb_tx_q = dev_info.default_txportconf.nb_queues; 143799a2dd95SBruce Richardson if (nb_tx_q == 0) 143899a2dd95SBruce Richardson nb_tx_q = RTE_ETH_DEV_FALLBACK_TX_NBQUEUES; 143999a2dd95SBruce Richardson } 144099a2dd95SBruce Richardson 144199a2dd95SBruce Richardson if (nb_rx_q > RTE_MAX_QUEUES_PER_PORT) { 144299a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 144399a2dd95SBruce Richardson "Number of RX queues requested (%u) is greater than max supported(%d)\n", 144499a2dd95SBruce Richardson nb_rx_q, RTE_MAX_QUEUES_PER_PORT); 144599a2dd95SBruce Richardson ret = -EINVAL; 144699a2dd95SBruce Richardson goto rollback; 144799a2dd95SBruce Richardson } 144899a2dd95SBruce Richardson 144999a2dd95SBruce Richardson if (nb_tx_q > RTE_MAX_QUEUES_PER_PORT) { 145099a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 145199a2dd95SBruce Richardson "Number of TX queues requested (%u) is greater than max supported(%d)\n", 145299a2dd95SBruce Richardson nb_tx_q, RTE_MAX_QUEUES_PER_PORT); 145399a2dd95SBruce Richardson ret = -EINVAL; 145499a2dd95SBruce Richardson goto rollback; 145599a2dd95SBruce Richardson } 145699a2dd95SBruce Richardson 145799a2dd95SBruce Richardson /* 145899a2dd95SBruce Richardson * Check that the numbers of RX and TX queues are not greater 145999a2dd95SBruce Richardson * than the maximum number of RX and TX queues supported by the 146099a2dd95SBruce Richardson * configured device. 146199a2dd95SBruce Richardson */ 146299a2dd95SBruce Richardson if (nb_rx_q > dev_info.max_rx_queues) { 146399a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Ethdev port_id=%u nb_rx_queues=%u > %u\n", 146499a2dd95SBruce Richardson port_id, nb_rx_q, dev_info.max_rx_queues); 146599a2dd95SBruce Richardson ret = -EINVAL; 146699a2dd95SBruce Richardson goto rollback; 146799a2dd95SBruce Richardson } 146899a2dd95SBruce Richardson 146999a2dd95SBruce Richardson if (nb_tx_q > dev_info.max_tx_queues) { 147099a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Ethdev port_id=%u nb_tx_queues=%u > %u\n", 147199a2dd95SBruce Richardson port_id, nb_tx_q, dev_info.max_tx_queues); 147299a2dd95SBruce Richardson ret = -EINVAL; 147399a2dd95SBruce Richardson goto rollback; 147499a2dd95SBruce Richardson } 147599a2dd95SBruce Richardson 147699a2dd95SBruce Richardson /* Check that the device supports requested interrupts */ 147799a2dd95SBruce Richardson if ((dev_conf->intr_conf.lsc == 1) && 147899a2dd95SBruce Richardson (!(dev->data->dev_flags & RTE_ETH_DEV_INTR_LSC))) { 147999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Driver %s does not support lsc\n", 148099a2dd95SBruce Richardson dev->device->driver->name); 148199a2dd95SBruce Richardson ret = -EINVAL; 148299a2dd95SBruce Richardson goto rollback; 148399a2dd95SBruce Richardson } 148499a2dd95SBruce Richardson if ((dev_conf->intr_conf.rmv == 1) && 148599a2dd95SBruce Richardson (!(dev->data->dev_flags & RTE_ETH_DEV_INTR_RMV))) { 148699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Driver %s does not support rmv\n", 148799a2dd95SBruce Richardson dev->device->driver->name); 148899a2dd95SBruce Richardson ret = -EINVAL; 148999a2dd95SBruce Richardson goto rollback; 149099a2dd95SBruce Richardson } 149199a2dd95SBruce Richardson 14921bb4a528SFerruh Yigit if (dev_conf->rxmode.mtu == 0) 14931bb4a528SFerruh Yigit dev->data->dev_conf.rxmode.mtu = RTE_ETHER_MTU; 1494990912e6SFerruh Yigit 1495990912e6SFerruh Yigit ret = eth_dev_validate_mtu(port_id, &dev_info, 1496990912e6SFerruh Yigit dev->data->dev_conf.rxmode.mtu); 1497990912e6SFerruh Yigit if (ret != 0) 149899a2dd95SBruce Richardson goto rollback; 149999a2dd95SBruce Richardson 15001bb4a528SFerruh Yigit dev->data->mtu = dev->data->dev_conf.rxmode.mtu; 15011bb4a528SFerruh Yigit 150299a2dd95SBruce Richardson /* 150399a2dd95SBruce Richardson * If LRO is enabled, check that the maximum aggregated packet 150499a2dd95SBruce Richardson * size is supported by the configured device. 150599a2dd95SBruce Richardson */ 150699a2dd95SBruce Richardson if (dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_TCP_LRO) { 1507990912e6SFerruh Yigit uint32_t max_rx_pktlen; 1508990912e6SFerruh Yigit uint32_t overhead_len; 1509990912e6SFerruh Yigit 1510990912e6SFerruh Yigit overhead_len = eth_dev_get_overhead_len(dev_info.max_rx_pktlen, 1511990912e6SFerruh Yigit dev_info.max_mtu); 1512990912e6SFerruh Yigit max_rx_pktlen = dev->data->dev_conf.rxmode.mtu + overhead_len; 151399a2dd95SBruce Richardson if (dev_conf->rxmode.max_lro_pkt_size == 0) 15141bb4a528SFerruh Yigit dev->data->dev_conf.rxmode.max_lro_pkt_size = max_rx_pktlen; 151599a2dd95SBruce Richardson ret = eth_dev_check_lro_pkt_size(port_id, 151699a2dd95SBruce Richardson dev->data->dev_conf.rxmode.max_lro_pkt_size, 15171bb4a528SFerruh Yigit max_rx_pktlen, 151899a2dd95SBruce Richardson dev_info.max_lro_pkt_size); 151999a2dd95SBruce Richardson if (ret != 0) 152099a2dd95SBruce Richardson goto rollback; 152199a2dd95SBruce Richardson } 152299a2dd95SBruce Richardson 152399a2dd95SBruce Richardson /* Any requested offloading must be within its device capabilities */ 152499a2dd95SBruce Richardson if ((dev_conf->rxmode.offloads & dev_info.rx_offload_capa) != 152599a2dd95SBruce Richardson dev_conf->rxmode.offloads) { 152699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 152799a2dd95SBruce Richardson "Ethdev port_id=%u requested Rx offloads 0x%"PRIx64" doesn't match Rx offloads " 152899a2dd95SBruce Richardson "capabilities 0x%"PRIx64" in %s()\n", 152999a2dd95SBruce Richardson port_id, dev_conf->rxmode.offloads, 153099a2dd95SBruce Richardson dev_info.rx_offload_capa, 153199a2dd95SBruce Richardson __func__); 153299a2dd95SBruce Richardson ret = -EINVAL; 153399a2dd95SBruce Richardson goto rollback; 153499a2dd95SBruce Richardson } 153599a2dd95SBruce Richardson if ((dev_conf->txmode.offloads & dev_info.tx_offload_capa) != 153699a2dd95SBruce Richardson dev_conf->txmode.offloads) { 153799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 153899a2dd95SBruce Richardson "Ethdev port_id=%u requested Tx offloads 0x%"PRIx64" doesn't match Tx offloads " 153999a2dd95SBruce Richardson "capabilities 0x%"PRIx64" in %s()\n", 154099a2dd95SBruce Richardson port_id, dev_conf->txmode.offloads, 154199a2dd95SBruce Richardson dev_info.tx_offload_capa, 154299a2dd95SBruce Richardson __func__); 154399a2dd95SBruce Richardson ret = -EINVAL; 154499a2dd95SBruce Richardson goto rollback; 154599a2dd95SBruce Richardson } 154699a2dd95SBruce Richardson 154799a2dd95SBruce Richardson dev->data->dev_conf.rx_adv_conf.rss_conf.rss_hf = 154899a2dd95SBruce Richardson rte_eth_rss_hf_refine(dev_conf->rx_adv_conf.rss_conf.rss_hf); 154999a2dd95SBruce Richardson 155099a2dd95SBruce Richardson /* Check that device supports requested rss hash functions. */ 155199a2dd95SBruce Richardson if ((dev_info.flow_type_rss_offloads | 155299a2dd95SBruce Richardson dev_conf->rx_adv_conf.rss_conf.rss_hf) != 155399a2dd95SBruce Richardson dev_info.flow_type_rss_offloads) { 155499a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 155599a2dd95SBruce Richardson "Ethdev port_id=%u invalid rss_hf: 0x%"PRIx64", valid value: 0x%"PRIx64"\n", 155699a2dd95SBruce Richardson port_id, dev_conf->rx_adv_conf.rss_conf.rss_hf, 155799a2dd95SBruce Richardson dev_info.flow_type_rss_offloads); 155899a2dd95SBruce Richardson ret = -EINVAL; 155999a2dd95SBruce Richardson goto rollback; 156099a2dd95SBruce Richardson } 156199a2dd95SBruce Richardson 156299a2dd95SBruce Richardson /* Check if Rx RSS distribution is disabled but RSS hash is enabled. */ 156399a2dd95SBruce Richardson if (((dev_conf->rxmode.mq_mode & ETH_MQ_RX_RSS_FLAG) == 0) && 156499a2dd95SBruce Richardson (dev_conf->rxmode.offloads & DEV_RX_OFFLOAD_RSS_HASH)) { 156599a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 156699a2dd95SBruce Richardson "Ethdev port_id=%u config invalid Rx mq_mode without RSS but %s offload is requested\n", 156799a2dd95SBruce Richardson port_id, 156899a2dd95SBruce Richardson rte_eth_dev_rx_offload_name(DEV_RX_OFFLOAD_RSS_HASH)); 156999a2dd95SBruce Richardson ret = -EINVAL; 157099a2dd95SBruce Richardson goto rollback; 157199a2dd95SBruce Richardson } 157299a2dd95SBruce Richardson 157399a2dd95SBruce Richardson /* 157499a2dd95SBruce Richardson * Setup new number of RX/TX queues and reconfigure device. 157599a2dd95SBruce Richardson */ 157699a2dd95SBruce Richardson diag = eth_dev_rx_queue_config(dev, nb_rx_q); 157799a2dd95SBruce Richardson if (diag != 0) { 157899a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 157999a2dd95SBruce Richardson "Port%u eth_dev_rx_queue_config = %d\n", 158099a2dd95SBruce Richardson port_id, diag); 158199a2dd95SBruce Richardson ret = diag; 158299a2dd95SBruce Richardson goto rollback; 158399a2dd95SBruce Richardson } 158499a2dd95SBruce Richardson 158599a2dd95SBruce Richardson diag = eth_dev_tx_queue_config(dev, nb_tx_q); 158699a2dd95SBruce Richardson if (diag != 0) { 158799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 158899a2dd95SBruce Richardson "Port%u eth_dev_tx_queue_config = %d\n", 158999a2dd95SBruce Richardson port_id, diag); 159099a2dd95SBruce Richardson eth_dev_rx_queue_config(dev, 0); 159199a2dd95SBruce Richardson ret = diag; 159299a2dd95SBruce Richardson goto rollback; 159399a2dd95SBruce Richardson } 159499a2dd95SBruce Richardson 159599a2dd95SBruce Richardson diag = (*dev->dev_ops->dev_configure)(dev); 159699a2dd95SBruce Richardson if (diag != 0) { 159799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Port%u dev_configure = %d\n", 159899a2dd95SBruce Richardson port_id, diag); 159999a2dd95SBruce Richardson ret = eth_err(port_id, diag); 160099a2dd95SBruce Richardson goto reset_queues; 160199a2dd95SBruce Richardson } 160299a2dd95SBruce Richardson 160399a2dd95SBruce Richardson /* Initialize Rx profiling if enabled at compilation time. */ 160499a2dd95SBruce Richardson diag = __rte_eth_dev_profile_init(port_id, dev); 160599a2dd95SBruce Richardson if (diag != 0) { 160699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Port%u __rte_eth_dev_profile_init = %d\n", 160799a2dd95SBruce Richardson port_id, diag); 160899a2dd95SBruce Richardson ret = eth_err(port_id, diag); 160999a2dd95SBruce Richardson goto reset_queues; 161099a2dd95SBruce Richardson } 161199a2dd95SBruce Richardson 161299a2dd95SBruce Richardson /* Validate Rx offloads. */ 161399a2dd95SBruce Richardson diag = eth_dev_validate_offloads(port_id, 161499a2dd95SBruce Richardson dev_conf->rxmode.offloads, 161599a2dd95SBruce Richardson dev->data->dev_conf.rxmode.offloads, "Rx", 161699a2dd95SBruce Richardson rte_eth_dev_rx_offload_name); 161799a2dd95SBruce Richardson if (diag != 0) { 161899a2dd95SBruce Richardson ret = diag; 161999a2dd95SBruce Richardson goto reset_queues; 162099a2dd95SBruce Richardson } 162199a2dd95SBruce Richardson 162299a2dd95SBruce Richardson /* Validate Tx offloads. */ 162399a2dd95SBruce Richardson diag = eth_dev_validate_offloads(port_id, 162499a2dd95SBruce Richardson dev_conf->txmode.offloads, 162599a2dd95SBruce Richardson dev->data->dev_conf.txmode.offloads, "Tx", 162699a2dd95SBruce Richardson rte_eth_dev_tx_offload_name); 162799a2dd95SBruce Richardson if (diag != 0) { 162899a2dd95SBruce Richardson ret = diag; 162999a2dd95SBruce Richardson goto reset_queues; 163099a2dd95SBruce Richardson } 163199a2dd95SBruce Richardson 163202edbfabSHuisong Li dev->data->dev_configured = 1; 163399a2dd95SBruce Richardson rte_ethdev_trace_configure(port_id, nb_rx_q, nb_tx_q, dev_conf, 0); 163499a2dd95SBruce Richardson return 0; 163599a2dd95SBruce Richardson reset_queues: 163699a2dd95SBruce Richardson eth_dev_rx_queue_config(dev, 0); 163799a2dd95SBruce Richardson eth_dev_tx_queue_config(dev, 0); 163899a2dd95SBruce Richardson rollback: 163999a2dd95SBruce Richardson memcpy(&dev->data->dev_conf, &orig_conf, sizeof(dev->data->dev_conf)); 164099a2dd95SBruce Richardson if (old_mtu != dev->data->mtu) 164199a2dd95SBruce Richardson dev->data->mtu = old_mtu; 164299a2dd95SBruce Richardson 164399a2dd95SBruce Richardson rte_ethdev_trace_configure(port_id, nb_rx_q, nb_tx_q, dev_conf, ret); 164499a2dd95SBruce Richardson return ret; 164599a2dd95SBruce Richardson } 164699a2dd95SBruce Richardson 164799a2dd95SBruce Richardson void 164899a2dd95SBruce Richardson rte_eth_dev_internal_reset(struct rte_eth_dev *dev) 164999a2dd95SBruce Richardson { 165099a2dd95SBruce Richardson if (dev->data->dev_started) { 165199a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Port %u must be stopped to allow reset\n", 165299a2dd95SBruce Richardson dev->data->port_id); 165399a2dd95SBruce Richardson return; 165499a2dd95SBruce Richardson } 165599a2dd95SBruce Richardson 165699a2dd95SBruce Richardson eth_dev_rx_queue_config(dev, 0); 165799a2dd95SBruce Richardson eth_dev_tx_queue_config(dev, 0); 165899a2dd95SBruce Richardson 165999a2dd95SBruce Richardson memset(&dev->data->dev_conf, 0, sizeof(dev->data->dev_conf)); 166099a2dd95SBruce Richardson } 166199a2dd95SBruce Richardson 166299a2dd95SBruce Richardson static void 166399a2dd95SBruce Richardson eth_dev_mac_restore(struct rte_eth_dev *dev, 166499a2dd95SBruce Richardson struct rte_eth_dev_info *dev_info) 166599a2dd95SBruce Richardson { 166699a2dd95SBruce Richardson struct rte_ether_addr *addr; 166799a2dd95SBruce Richardson uint16_t i; 166899a2dd95SBruce Richardson uint32_t pool = 0; 166999a2dd95SBruce Richardson uint64_t pool_mask; 167099a2dd95SBruce Richardson 167199a2dd95SBruce Richardson /* replay MAC address configuration including default MAC */ 167299a2dd95SBruce Richardson addr = &dev->data->mac_addrs[0]; 167399a2dd95SBruce Richardson if (*dev->dev_ops->mac_addr_set != NULL) 167499a2dd95SBruce Richardson (*dev->dev_ops->mac_addr_set)(dev, addr); 167599a2dd95SBruce Richardson else if (*dev->dev_ops->mac_addr_add != NULL) 167699a2dd95SBruce Richardson (*dev->dev_ops->mac_addr_add)(dev, addr, 0, pool); 167799a2dd95SBruce Richardson 167899a2dd95SBruce Richardson if (*dev->dev_ops->mac_addr_add != NULL) { 167999a2dd95SBruce Richardson for (i = 1; i < dev_info->max_mac_addrs; i++) { 168099a2dd95SBruce Richardson addr = &dev->data->mac_addrs[i]; 168199a2dd95SBruce Richardson 168299a2dd95SBruce Richardson /* skip zero address */ 168399a2dd95SBruce Richardson if (rte_is_zero_ether_addr(addr)) 168499a2dd95SBruce Richardson continue; 168599a2dd95SBruce Richardson 168699a2dd95SBruce Richardson pool = 0; 168799a2dd95SBruce Richardson pool_mask = dev->data->mac_pool_sel[i]; 168899a2dd95SBruce Richardson 168999a2dd95SBruce Richardson do { 169099a2dd95SBruce Richardson if (pool_mask & 1ULL) 169199a2dd95SBruce Richardson (*dev->dev_ops->mac_addr_add)(dev, 169299a2dd95SBruce Richardson addr, i, pool); 169399a2dd95SBruce Richardson pool_mask >>= 1; 169499a2dd95SBruce Richardson pool++; 169599a2dd95SBruce Richardson } while (pool_mask); 169699a2dd95SBruce Richardson } 169799a2dd95SBruce Richardson } 169899a2dd95SBruce Richardson } 169999a2dd95SBruce Richardson 170099a2dd95SBruce Richardson static int 170199a2dd95SBruce Richardson eth_dev_config_restore(struct rte_eth_dev *dev, 170299a2dd95SBruce Richardson struct rte_eth_dev_info *dev_info, uint16_t port_id) 170399a2dd95SBruce Richardson { 170499a2dd95SBruce Richardson int ret; 170599a2dd95SBruce Richardson 170699a2dd95SBruce Richardson if (!(*dev_info->dev_flags & RTE_ETH_DEV_NOLIVE_MAC_ADDR)) 170799a2dd95SBruce Richardson eth_dev_mac_restore(dev, dev_info); 170899a2dd95SBruce Richardson 170999a2dd95SBruce Richardson /* replay promiscuous configuration */ 171099a2dd95SBruce Richardson /* 171199a2dd95SBruce Richardson * use callbacks directly since we don't need port_id check and 171299a2dd95SBruce Richardson * would like to bypass the same value set 171399a2dd95SBruce Richardson */ 171499a2dd95SBruce Richardson if (rte_eth_promiscuous_get(port_id) == 1 && 171599a2dd95SBruce Richardson *dev->dev_ops->promiscuous_enable != NULL) { 171699a2dd95SBruce Richardson ret = eth_err(port_id, 171799a2dd95SBruce Richardson (*dev->dev_ops->promiscuous_enable)(dev)); 171899a2dd95SBruce Richardson if (ret != 0 && ret != -ENOTSUP) { 171999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 172099a2dd95SBruce Richardson "Failed to enable promiscuous mode for device (port %u): %s\n", 172199a2dd95SBruce Richardson port_id, rte_strerror(-ret)); 172299a2dd95SBruce Richardson return ret; 172399a2dd95SBruce Richardson } 172499a2dd95SBruce Richardson } else if (rte_eth_promiscuous_get(port_id) == 0 && 172599a2dd95SBruce Richardson *dev->dev_ops->promiscuous_disable != NULL) { 172699a2dd95SBruce Richardson ret = eth_err(port_id, 172799a2dd95SBruce Richardson (*dev->dev_ops->promiscuous_disable)(dev)); 172899a2dd95SBruce Richardson if (ret != 0 && ret != -ENOTSUP) { 172999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 173099a2dd95SBruce Richardson "Failed to disable promiscuous mode for device (port %u): %s\n", 173199a2dd95SBruce Richardson port_id, rte_strerror(-ret)); 173299a2dd95SBruce Richardson return ret; 173399a2dd95SBruce Richardson } 173499a2dd95SBruce Richardson } 173599a2dd95SBruce Richardson 173699a2dd95SBruce Richardson /* replay all multicast configuration */ 173799a2dd95SBruce Richardson /* 173899a2dd95SBruce Richardson * use callbacks directly since we don't need port_id check and 173999a2dd95SBruce Richardson * would like to bypass the same value set 174099a2dd95SBruce Richardson */ 174199a2dd95SBruce Richardson if (rte_eth_allmulticast_get(port_id) == 1 && 174299a2dd95SBruce Richardson *dev->dev_ops->allmulticast_enable != NULL) { 174399a2dd95SBruce Richardson ret = eth_err(port_id, 174499a2dd95SBruce Richardson (*dev->dev_ops->allmulticast_enable)(dev)); 174599a2dd95SBruce Richardson if (ret != 0 && ret != -ENOTSUP) { 174699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 174799a2dd95SBruce Richardson "Failed to enable allmulticast mode for device (port %u): %s\n", 174899a2dd95SBruce Richardson port_id, rte_strerror(-ret)); 174999a2dd95SBruce Richardson return ret; 175099a2dd95SBruce Richardson } 175199a2dd95SBruce Richardson } else if (rte_eth_allmulticast_get(port_id) == 0 && 175299a2dd95SBruce Richardson *dev->dev_ops->allmulticast_disable != NULL) { 175399a2dd95SBruce Richardson ret = eth_err(port_id, 175499a2dd95SBruce Richardson (*dev->dev_ops->allmulticast_disable)(dev)); 175599a2dd95SBruce Richardson if (ret != 0 && ret != -ENOTSUP) { 175699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 175799a2dd95SBruce Richardson "Failed to disable allmulticast mode for device (port %u): %s\n", 175899a2dd95SBruce Richardson port_id, rte_strerror(-ret)); 175999a2dd95SBruce Richardson return ret; 176099a2dd95SBruce Richardson } 176199a2dd95SBruce Richardson } 176299a2dd95SBruce Richardson 176399a2dd95SBruce Richardson return 0; 176499a2dd95SBruce Richardson } 176599a2dd95SBruce Richardson 176699a2dd95SBruce Richardson int 176799a2dd95SBruce Richardson rte_eth_dev_start(uint16_t port_id) 176899a2dd95SBruce Richardson { 176999a2dd95SBruce Richardson struct rte_eth_dev *dev; 177099a2dd95SBruce Richardson struct rte_eth_dev_info dev_info; 177199a2dd95SBruce Richardson int diag; 177299a2dd95SBruce Richardson int ret, ret_stop; 177399a2dd95SBruce Richardson 177499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 177599a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 177699a2dd95SBruce Richardson 177799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_start, -ENOTSUP); 177899a2dd95SBruce Richardson 177902edbfabSHuisong Li if (dev->data->dev_configured == 0) { 178002edbfabSHuisong Li RTE_ETHDEV_LOG(INFO, 178102edbfabSHuisong Li "Device with port_id=%"PRIu16" is not configured.\n", 178202edbfabSHuisong Li port_id); 178302edbfabSHuisong Li return -EINVAL; 178402edbfabSHuisong Li } 178502edbfabSHuisong Li 178699a2dd95SBruce Richardson if (dev->data->dev_started != 0) { 178799a2dd95SBruce Richardson RTE_ETHDEV_LOG(INFO, 178899a2dd95SBruce Richardson "Device with port_id=%"PRIu16" already started\n", 178999a2dd95SBruce Richardson port_id); 179099a2dd95SBruce Richardson return 0; 179199a2dd95SBruce Richardson } 179299a2dd95SBruce Richardson 179399a2dd95SBruce Richardson ret = rte_eth_dev_info_get(port_id, &dev_info); 179499a2dd95SBruce Richardson if (ret != 0) 179599a2dd95SBruce Richardson return ret; 179699a2dd95SBruce Richardson 179799a2dd95SBruce Richardson /* Lets restore MAC now if device does not support live change */ 179899a2dd95SBruce Richardson if (*dev_info.dev_flags & RTE_ETH_DEV_NOLIVE_MAC_ADDR) 179999a2dd95SBruce Richardson eth_dev_mac_restore(dev, &dev_info); 180099a2dd95SBruce Richardson 180199a2dd95SBruce Richardson diag = (*dev->dev_ops->dev_start)(dev); 180299a2dd95SBruce Richardson if (diag == 0) 180399a2dd95SBruce Richardson dev->data->dev_started = 1; 180499a2dd95SBruce Richardson else 180599a2dd95SBruce Richardson return eth_err(port_id, diag); 180699a2dd95SBruce Richardson 180799a2dd95SBruce Richardson ret = eth_dev_config_restore(dev, &dev_info, port_id); 180899a2dd95SBruce Richardson if (ret != 0) { 180999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 181099a2dd95SBruce Richardson "Error during restoring configuration for device (port %u): %s\n", 181199a2dd95SBruce Richardson port_id, rte_strerror(-ret)); 181299a2dd95SBruce Richardson ret_stop = rte_eth_dev_stop(port_id); 181399a2dd95SBruce Richardson if (ret_stop != 0) { 181499a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 181599a2dd95SBruce Richardson "Failed to stop device (port %u): %s\n", 181699a2dd95SBruce Richardson port_id, rte_strerror(-ret_stop)); 181799a2dd95SBruce Richardson } 181899a2dd95SBruce Richardson 181999a2dd95SBruce Richardson return ret; 182099a2dd95SBruce Richardson } 182199a2dd95SBruce Richardson 182299a2dd95SBruce Richardson if (dev->data->dev_conf.intr_conf.lsc == 0) { 182399a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->link_update, -ENOTSUP); 182499a2dd95SBruce Richardson (*dev->dev_ops->link_update)(dev, 0); 182599a2dd95SBruce Richardson } 182699a2dd95SBruce Richardson 1827c87d435aSKonstantin Ananyev /* expose selection of PMD fast-path functions */ 1828c87d435aSKonstantin Ananyev eth_dev_fp_ops_setup(rte_eth_fp_ops + port_id, dev); 1829c87d435aSKonstantin Ananyev 183099a2dd95SBruce Richardson rte_ethdev_trace_start(port_id); 183199a2dd95SBruce Richardson return 0; 183299a2dd95SBruce Richardson } 183399a2dd95SBruce Richardson 183499a2dd95SBruce Richardson int 183599a2dd95SBruce Richardson rte_eth_dev_stop(uint16_t port_id) 183699a2dd95SBruce Richardson { 183799a2dd95SBruce Richardson struct rte_eth_dev *dev; 183899a2dd95SBruce Richardson int ret; 183999a2dd95SBruce Richardson 184099a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 184199a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 184299a2dd95SBruce Richardson 184399a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_stop, -ENOTSUP); 184499a2dd95SBruce Richardson 184599a2dd95SBruce Richardson if (dev->data->dev_started == 0) { 184699a2dd95SBruce Richardson RTE_ETHDEV_LOG(INFO, 184799a2dd95SBruce Richardson "Device with port_id=%"PRIu16" already stopped\n", 184899a2dd95SBruce Richardson port_id); 184999a2dd95SBruce Richardson return 0; 185099a2dd95SBruce Richardson } 185199a2dd95SBruce Richardson 1852c87d435aSKonstantin Ananyev /* point fast-path functions to dummy ones */ 1853c87d435aSKonstantin Ananyev eth_dev_fp_ops_reset(rte_eth_fp_ops + port_id); 1854c87d435aSKonstantin Ananyev 185599a2dd95SBruce Richardson dev->data->dev_started = 0; 185699a2dd95SBruce Richardson ret = (*dev->dev_ops->dev_stop)(dev); 185799a2dd95SBruce Richardson rte_ethdev_trace_stop(port_id, ret); 185899a2dd95SBruce Richardson 185999a2dd95SBruce Richardson return ret; 186099a2dd95SBruce Richardson } 186199a2dd95SBruce Richardson 186299a2dd95SBruce Richardson int 186399a2dd95SBruce Richardson rte_eth_dev_set_link_up(uint16_t port_id) 186499a2dd95SBruce Richardson { 186599a2dd95SBruce Richardson struct rte_eth_dev *dev; 186699a2dd95SBruce Richardson 186799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 186899a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 186999a2dd95SBruce Richardson 187099a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_set_link_up, -ENOTSUP); 187199a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->dev_set_link_up)(dev)); 187299a2dd95SBruce Richardson } 187399a2dd95SBruce Richardson 187499a2dd95SBruce Richardson int 187599a2dd95SBruce Richardson rte_eth_dev_set_link_down(uint16_t port_id) 187699a2dd95SBruce Richardson { 187799a2dd95SBruce Richardson struct rte_eth_dev *dev; 187899a2dd95SBruce Richardson 187999a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 188099a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 188199a2dd95SBruce Richardson 188299a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_set_link_down, -ENOTSUP); 188399a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->dev_set_link_down)(dev)); 188499a2dd95SBruce Richardson } 188599a2dd95SBruce Richardson 188699a2dd95SBruce Richardson int 188799a2dd95SBruce Richardson rte_eth_dev_close(uint16_t port_id) 188899a2dd95SBruce Richardson { 188999a2dd95SBruce Richardson struct rte_eth_dev *dev; 189099a2dd95SBruce Richardson int firsterr, binerr; 189199a2dd95SBruce Richardson int *lasterr = &firsterr; 189299a2dd95SBruce Richardson 189399a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 189499a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 189599a2dd95SBruce Richardson 1896*febc855bSAndrew Rybchenko if (dev->data->dev_started) { 1897*febc855bSAndrew Rybchenko RTE_ETHDEV_LOG(ERR, "Cannot close started device (port %u)\n", 1898*febc855bSAndrew Rybchenko port_id); 1899*febc855bSAndrew Rybchenko return -EINVAL; 1900*febc855bSAndrew Rybchenko } 1901*febc855bSAndrew Rybchenko 190299a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_close, -ENOTSUP); 190399a2dd95SBruce Richardson *lasterr = (*dev->dev_ops->dev_close)(dev); 190499a2dd95SBruce Richardson if (*lasterr != 0) 190599a2dd95SBruce Richardson lasterr = &binerr; 190699a2dd95SBruce Richardson 190799a2dd95SBruce Richardson rte_ethdev_trace_close(port_id); 190899a2dd95SBruce Richardson *lasterr = rte_eth_dev_release_port(dev); 190999a2dd95SBruce Richardson 191099a2dd95SBruce Richardson return firsterr; 191199a2dd95SBruce Richardson } 191299a2dd95SBruce Richardson 191399a2dd95SBruce Richardson int 191499a2dd95SBruce Richardson rte_eth_dev_reset(uint16_t port_id) 191599a2dd95SBruce Richardson { 191699a2dd95SBruce Richardson struct rte_eth_dev *dev; 191799a2dd95SBruce Richardson int ret; 191899a2dd95SBruce Richardson 191999a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 192099a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 192199a2dd95SBruce Richardson 192299a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_reset, -ENOTSUP); 192399a2dd95SBruce Richardson 192499a2dd95SBruce Richardson ret = rte_eth_dev_stop(port_id); 192599a2dd95SBruce Richardson if (ret != 0) { 192699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 192799a2dd95SBruce Richardson "Failed to stop device (port %u) before reset: %s - ignore\n", 192899a2dd95SBruce Richardson port_id, rte_strerror(-ret)); 192999a2dd95SBruce Richardson } 193099a2dd95SBruce Richardson ret = dev->dev_ops->dev_reset(dev); 193199a2dd95SBruce Richardson 193299a2dd95SBruce Richardson return eth_err(port_id, ret); 193399a2dd95SBruce Richardson } 193499a2dd95SBruce Richardson 193599a2dd95SBruce Richardson int 193699a2dd95SBruce Richardson rte_eth_dev_is_removed(uint16_t port_id) 193799a2dd95SBruce Richardson { 193899a2dd95SBruce Richardson struct rte_eth_dev *dev; 193999a2dd95SBruce Richardson int ret; 194099a2dd95SBruce Richardson 194199a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, 0); 194299a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 194399a2dd95SBruce Richardson 194499a2dd95SBruce Richardson if (dev->state == RTE_ETH_DEV_REMOVED) 194599a2dd95SBruce Richardson return 1; 194699a2dd95SBruce Richardson 194799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->is_removed, 0); 194899a2dd95SBruce Richardson 194999a2dd95SBruce Richardson ret = dev->dev_ops->is_removed(dev); 195099a2dd95SBruce Richardson if (ret != 0) 195199a2dd95SBruce Richardson /* Device is physically removed. */ 195299a2dd95SBruce Richardson dev->state = RTE_ETH_DEV_REMOVED; 195399a2dd95SBruce Richardson 195499a2dd95SBruce Richardson return ret; 195599a2dd95SBruce Richardson } 195699a2dd95SBruce Richardson 195799a2dd95SBruce Richardson static int 195899a2dd95SBruce Richardson rte_eth_rx_queue_check_split(const struct rte_eth_rxseg_split *rx_seg, 195999a2dd95SBruce Richardson uint16_t n_seg, uint32_t *mbp_buf_size, 196099a2dd95SBruce Richardson const struct rte_eth_dev_info *dev_info) 196199a2dd95SBruce Richardson { 196299a2dd95SBruce Richardson const struct rte_eth_rxseg_capa *seg_capa = &dev_info->rx_seg_capa; 196399a2dd95SBruce Richardson struct rte_mempool *mp_first; 196499a2dd95SBruce Richardson uint32_t offset_mask; 196599a2dd95SBruce Richardson uint16_t seg_idx; 196699a2dd95SBruce Richardson 196799a2dd95SBruce Richardson if (n_seg > seg_capa->max_nseg) { 196899a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 196999a2dd95SBruce Richardson "Requested Rx segments %u exceed supported %u\n", 197099a2dd95SBruce Richardson n_seg, seg_capa->max_nseg); 197199a2dd95SBruce Richardson return -EINVAL; 197299a2dd95SBruce Richardson } 197399a2dd95SBruce Richardson /* 197499a2dd95SBruce Richardson * Check the sizes and offsets against buffer sizes 197599a2dd95SBruce Richardson * for each segment specified in extended configuration. 197699a2dd95SBruce Richardson */ 197799a2dd95SBruce Richardson mp_first = rx_seg[0].mp; 197899a2dd95SBruce Richardson offset_mask = (1u << seg_capa->offset_align_log2) - 1; 197999a2dd95SBruce Richardson for (seg_idx = 0; seg_idx < n_seg; seg_idx++) { 198099a2dd95SBruce Richardson struct rte_mempool *mpl = rx_seg[seg_idx].mp; 198199a2dd95SBruce Richardson uint32_t length = rx_seg[seg_idx].length; 198299a2dd95SBruce Richardson uint32_t offset = rx_seg[seg_idx].offset; 198399a2dd95SBruce Richardson 198499a2dd95SBruce Richardson if (mpl == NULL) { 198599a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "null mempool pointer\n"); 198699a2dd95SBruce Richardson return -EINVAL; 198799a2dd95SBruce Richardson } 198899a2dd95SBruce Richardson if (seg_idx != 0 && mp_first != mpl && 198999a2dd95SBruce Richardson seg_capa->multi_pools == 0) { 199099a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Receiving to multiple pools is not supported\n"); 199199a2dd95SBruce Richardson return -ENOTSUP; 199299a2dd95SBruce Richardson } 199399a2dd95SBruce Richardson if (offset != 0) { 199499a2dd95SBruce Richardson if (seg_capa->offset_allowed == 0) { 199599a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Rx segmentation with offset is not supported\n"); 199699a2dd95SBruce Richardson return -ENOTSUP; 199799a2dd95SBruce Richardson } 199899a2dd95SBruce Richardson if (offset & offset_mask) { 199999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Rx segmentation invalid offset alignment %u, %u\n", 200099a2dd95SBruce Richardson offset, 200199a2dd95SBruce Richardson seg_capa->offset_align_log2); 200299a2dd95SBruce Richardson return -EINVAL; 200399a2dd95SBruce Richardson } 200499a2dd95SBruce Richardson } 200599a2dd95SBruce Richardson if (mpl->private_data_size < 200699a2dd95SBruce Richardson sizeof(struct rte_pktmbuf_pool_private)) { 200799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 200899a2dd95SBruce Richardson "%s private_data_size %u < %u\n", 200999a2dd95SBruce Richardson mpl->name, mpl->private_data_size, 201099a2dd95SBruce Richardson (unsigned int)sizeof 201199a2dd95SBruce Richardson (struct rte_pktmbuf_pool_private)); 201299a2dd95SBruce Richardson return -ENOSPC; 201399a2dd95SBruce Richardson } 201499a2dd95SBruce Richardson offset += seg_idx != 0 ? 0 : RTE_PKTMBUF_HEADROOM; 201599a2dd95SBruce Richardson *mbp_buf_size = rte_pktmbuf_data_room_size(mpl); 201699a2dd95SBruce Richardson length = length != 0 ? length : *mbp_buf_size; 201799a2dd95SBruce Richardson if (*mbp_buf_size < length + offset) { 201899a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 201999a2dd95SBruce Richardson "%s mbuf_data_room_size %u < %u (segment length=%u + segment offset=%u)\n", 202099a2dd95SBruce Richardson mpl->name, *mbp_buf_size, 202199a2dd95SBruce Richardson length + offset, length, offset); 202299a2dd95SBruce Richardson return -EINVAL; 202399a2dd95SBruce Richardson } 202499a2dd95SBruce Richardson } 202599a2dd95SBruce Richardson return 0; 202699a2dd95SBruce Richardson } 202799a2dd95SBruce Richardson 202899a2dd95SBruce Richardson int 202999a2dd95SBruce Richardson rte_eth_rx_queue_setup(uint16_t port_id, uint16_t rx_queue_id, 203099a2dd95SBruce Richardson uint16_t nb_rx_desc, unsigned int socket_id, 203199a2dd95SBruce Richardson const struct rte_eth_rxconf *rx_conf, 203299a2dd95SBruce Richardson struct rte_mempool *mp) 203399a2dd95SBruce Richardson { 203499a2dd95SBruce Richardson int ret; 203599a2dd95SBruce Richardson uint32_t mbp_buf_size; 203699a2dd95SBruce Richardson struct rte_eth_dev *dev; 203799a2dd95SBruce Richardson struct rte_eth_dev_info dev_info; 203899a2dd95SBruce Richardson struct rte_eth_rxconf local_conf; 203999a2dd95SBruce Richardson 204099a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 204199a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 204253ef1b34SMin Hu (Connor) 204399a2dd95SBruce Richardson if (rx_queue_id >= dev->data->nb_rx_queues) { 204499a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid RX queue_id=%u\n", rx_queue_id); 204599a2dd95SBruce Richardson return -EINVAL; 204699a2dd95SBruce Richardson } 204799a2dd95SBruce Richardson 204899a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_setup, -ENOTSUP); 204999a2dd95SBruce Richardson 205099a2dd95SBruce Richardson ret = rte_eth_dev_info_get(port_id, &dev_info); 205199a2dd95SBruce Richardson if (ret != 0) 205299a2dd95SBruce Richardson return ret; 205399a2dd95SBruce Richardson 205499a2dd95SBruce Richardson if (mp != NULL) { 205599a2dd95SBruce Richardson /* Single pool configuration check. */ 205699a2dd95SBruce Richardson if (rx_conf != NULL && rx_conf->rx_nseg != 0) { 205799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 205899a2dd95SBruce Richardson "Ambiguous segment configuration\n"); 205999a2dd95SBruce Richardson return -EINVAL; 206099a2dd95SBruce Richardson } 206199a2dd95SBruce Richardson /* 206299a2dd95SBruce Richardson * Check the size of the mbuf data buffer, this value 206399a2dd95SBruce Richardson * must be provided in the private data of the memory pool. 206499a2dd95SBruce Richardson * First check that the memory pool(s) has a valid private data. 206599a2dd95SBruce Richardson */ 206699a2dd95SBruce Richardson if (mp->private_data_size < 206799a2dd95SBruce Richardson sizeof(struct rte_pktmbuf_pool_private)) { 206899a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "%s private_data_size %u < %u\n", 206999a2dd95SBruce Richardson mp->name, mp->private_data_size, 207099a2dd95SBruce Richardson (unsigned int) 207199a2dd95SBruce Richardson sizeof(struct rte_pktmbuf_pool_private)); 207299a2dd95SBruce Richardson return -ENOSPC; 207399a2dd95SBruce Richardson } 207499a2dd95SBruce Richardson mbp_buf_size = rte_pktmbuf_data_room_size(mp); 207599a2dd95SBruce Richardson if (mbp_buf_size < dev_info.min_rx_bufsize + 207699a2dd95SBruce Richardson RTE_PKTMBUF_HEADROOM) { 207799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 207899a2dd95SBruce Richardson "%s mbuf_data_room_size %u < %u (RTE_PKTMBUF_HEADROOM=%u + min_rx_bufsize(dev)=%u)\n", 207999a2dd95SBruce Richardson mp->name, mbp_buf_size, 208099a2dd95SBruce Richardson RTE_PKTMBUF_HEADROOM + 208199a2dd95SBruce Richardson dev_info.min_rx_bufsize, 208299a2dd95SBruce Richardson RTE_PKTMBUF_HEADROOM, 208399a2dd95SBruce Richardson dev_info.min_rx_bufsize); 208499a2dd95SBruce Richardson return -EINVAL; 208599a2dd95SBruce Richardson } 208699a2dd95SBruce Richardson } else { 208799a2dd95SBruce Richardson const struct rte_eth_rxseg_split *rx_seg; 208899a2dd95SBruce Richardson uint16_t n_seg; 208999a2dd95SBruce Richardson 209099a2dd95SBruce Richardson /* Extended multi-segment configuration check. */ 209199a2dd95SBruce Richardson if (rx_conf == NULL || rx_conf->rx_seg == NULL || rx_conf->rx_nseg == 0) { 209299a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 209399a2dd95SBruce Richardson "Memory pool is null and no extended configuration provided\n"); 209499a2dd95SBruce Richardson return -EINVAL; 209599a2dd95SBruce Richardson } 209699a2dd95SBruce Richardson 209799a2dd95SBruce Richardson rx_seg = (const struct rte_eth_rxseg_split *)rx_conf->rx_seg; 209899a2dd95SBruce Richardson n_seg = rx_conf->rx_nseg; 209999a2dd95SBruce Richardson 210099a2dd95SBruce Richardson if (rx_conf->offloads & RTE_ETH_RX_OFFLOAD_BUFFER_SPLIT) { 210199a2dd95SBruce Richardson ret = rte_eth_rx_queue_check_split(rx_seg, n_seg, 210299a2dd95SBruce Richardson &mbp_buf_size, 210399a2dd95SBruce Richardson &dev_info); 210499a2dd95SBruce Richardson if (ret != 0) 210599a2dd95SBruce Richardson return ret; 210699a2dd95SBruce Richardson } else { 210799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "No Rx segmentation offload configured\n"); 210899a2dd95SBruce Richardson return -EINVAL; 210999a2dd95SBruce Richardson } 211099a2dd95SBruce Richardson } 211199a2dd95SBruce Richardson 211299a2dd95SBruce Richardson /* Use default specified by driver, if nb_rx_desc is zero */ 211399a2dd95SBruce Richardson if (nb_rx_desc == 0) { 211499a2dd95SBruce Richardson nb_rx_desc = dev_info.default_rxportconf.ring_size; 211599a2dd95SBruce Richardson /* If driver default is also zero, fall back on EAL default */ 211699a2dd95SBruce Richardson if (nb_rx_desc == 0) 211799a2dd95SBruce Richardson nb_rx_desc = RTE_ETH_DEV_FALLBACK_RX_RINGSIZE; 211899a2dd95SBruce Richardson } 211999a2dd95SBruce Richardson 212099a2dd95SBruce Richardson if (nb_rx_desc > dev_info.rx_desc_lim.nb_max || 212199a2dd95SBruce Richardson nb_rx_desc < dev_info.rx_desc_lim.nb_min || 212299a2dd95SBruce Richardson nb_rx_desc % dev_info.rx_desc_lim.nb_align != 0) { 212399a2dd95SBruce Richardson 212499a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 212599a2dd95SBruce Richardson "Invalid value for nb_rx_desc(=%hu), should be: <= %hu, >= %hu, and a product of %hu\n", 212699a2dd95SBruce Richardson nb_rx_desc, dev_info.rx_desc_lim.nb_max, 212799a2dd95SBruce Richardson dev_info.rx_desc_lim.nb_min, 212899a2dd95SBruce Richardson dev_info.rx_desc_lim.nb_align); 212999a2dd95SBruce Richardson return -EINVAL; 213099a2dd95SBruce Richardson } 213199a2dd95SBruce Richardson 213299a2dd95SBruce Richardson if (dev->data->dev_started && 213399a2dd95SBruce Richardson !(dev_info.dev_capa & 213499a2dd95SBruce Richardson RTE_ETH_DEV_CAPA_RUNTIME_RX_QUEUE_SETUP)) 213599a2dd95SBruce Richardson return -EBUSY; 213699a2dd95SBruce Richardson 213799a2dd95SBruce Richardson if (dev->data->dev_started && 213899a2dd95SBruce Richardson (dev->data->rx_queue_state[rx_queue_id] != 213999a2dd95SBruce Richardson RTE_ETH_QUEUE_STATE_STOPPED)) 214099a2dd95SBruce Richardson return -EBUSY; 214199a2dd95SBruce Richardson 214249ed3224SXueming Li eth_dev_rxq_release(dev, rx_queue_id); 214399a2dd95SBruce Richardson 214499a2dd95SBruce Richardson if (rx_conf == NULL) 214599a2dd95SBruce Richardson rx_conf = &dev_info.default_rxconf; 214699a2dd95SBruce Richardson 214799a2dd95SBruce Richardson local_conf = *rx_conf; 214899a2dd95SBruce Richardson 214999a2dd95SBruce Richardson /* 215099a2dd95SBruce Richardson * If an offloading has already been enabled in 215199a2dd95SBruce Richardson * rte_eth_dev_configure(), it has been enabled on all queues, 215299a2dd95SBruce Richardson * so there is no need to enable it in this queue again. 215399a2dd95SBruce Richardson * The local_conf.offloads input to underlying PMD only carries 215499a2dd95SBruce Richardson * those offloadings which are only enabled on this queue and 215599a2dd95SBruce Richardson * not enabled on all queues. 215699a2dd95SBruce Richardson */ 215799a2dd95SBruce Richardson local_conf.offloads &= ~dev->data->dev_conf.rxmode.offloads; 215899a2dd95SBruce Richardson 215999a2dd95SBruce Richardson /* 216099a2dd95SBruce Richardson * New added offloadings for this queue are those not enabled in 216199a2dd95SBruce Richardson * rte_eth_dev_configure() and they must be per-queue type. 216299a2dd95SBruce Richardson * A pure per-port offloading can't be enabled on a queue while 216399a2dd95SBruce Richardson * disabled on another queue. A pure per-port offloading can't 216499a2dd95SBruce Richardson * be enabled for any queue as new added one if it hasn't been 216599a2dd95SBruce Richardson * enabled in rte_eth_dev_configure(). 216699a2dd95SBruce Richardson */ 216799a2dd95SBruce Richardson if ((local_conf.offloads & dev_info.rx_queue_offload_capa) != 216899a2dd95SBruce Richardson local_conf.offloads) { 216999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 217099a2dd95SBruce Richardson "Ethdev port_id=%d rx_queue_id=%d, new added offloads 0x%"PRIx64" must be " 217199a2dd95SBruce Richardson "within per-queue offload capabilities 0x%"PRIx64" in %s()\n", 217299a2dd95SBruce Richardson port_id, rx_queue_id, local_conf.offloads, 217399a2dd95SBruce Richardson dev_info.rx_queue_offload_capa, 217499a2dd95SBruce Richardson __func__); 217599a2dd95SBruce Richardson return -EINVAL; 217699a2dd95SBruce Richardson } 217799a2dd95SBruce Richardson 217899a2dd95SBruce Richardson /* 217999a2dd95SBruce Richardson * If LRO is enabled, check that the maximum aggregated packet 218099a2dd95SBruce Richardson * size is supported by the configured device. 218199a2dd95SBruce Richardson */ 21821bb4a528SFerruh Yigit /* Get the real Ethernet overhead length */ 218399a2dd95SBruce Richardson if (local_conf.offloads & DEV_RX_OFFLOAD_TCP_LRO) { 21841bb4a528SFerruh Yigit uint32_t overhead_len; 21851bb4a528SFerruh Yigit uint32_t max_rx_pktlen; 21861bb4a528SFerruh Yigit int ret; 21871bb4a528SFerruh Yigit 21881bb4a528SFerruh Yigit overhead_len = eth_dev_get_overhead_len(dev_info.max_rx_pktlen, 21891bb4a528SFerruh Yigit dev_info.max_mtu); 21901bb4a528SFerruh Yigit max_rx_pktlen = dev->data->mtu + overhead_len; 219199a2dd95SBruce Richardson if (dev->data->dev_conf.rxmode.max_lro_pkt_size == 0) 21921bb4a528SFerruh Yigit dev->data->dev_conf.rxmode.max_lro_pkt_size = max_rx_pktlen; 21931bb4a528SFerruh Yigit ret = eth_dev_check_lro_pkt_size(port_id, 219499a2dd95SBruce Richardson dev->data->dev_conf.rxmode.max_lro_pkt_size, 21951bb4a528SFerruh Yigit max_rx_pktlen, 219699a2dd95SBruce Richardson dev_info.max_lro_pkt_size); 219799a2dd95SBruce Richardson if (ret != 0) 219899a2dd95SBruce Richardson return ret; 219999a2dd95SBruce Richardson } 220099a2dd95SBruce Richardson 220199a2dd95SBruce Richardson ret = (*dev->dev_ops->rx_queue_setup)(dev, rx_queue_id, nb_rx_desc, 220299a2dd95SBruce Richardson socket_id, &local_conf, mp); 220399a2dd95SBruce Richardson if (!ret) { 220499a2dd95SBruce Richardson if (!dev->data->min_rx_buf_size || 220599a2dd95SBruce Richardson dev->data->min_rx_buf_size > mbp_buf_size) 220699a2dd95SBruce Richardson dev->data->min_rx_buf_size = mbp_buf_size; 220799a2dd95SBruce Richardson } 220899a2dd95SBruce Richardson 220999a2dd95SBruce Richardson rte_ethdev_trace_rxq_setup(port_id, rx_queue_id, nb_rx_desc, mp, 221099a2dd95SBruce Richardson rx_conf, ret); 221199a2dd95SBruce Richardson return eth_err(port_id, ret); 221299a2dd95SBruce Richardson } 221399a2dd95SBruce Richardson 221499a2dd95SBruce Richardson int 221599a2dd95SBruce Richardson rte_eth_rx_hairpin_queue_setup(uint16_t port_id, uint16_t rx_queue_id, 221699a2dd95SBruce Richardson uint16_t nb_rx_desc, 221799a2dd95SBruce Richardson const struct rte_eth_hairpin_conf *conf) 221899a2dd95SBruce Richardson { 221999a2dd95SBruce Richardson int ret; 222099a2dd95SBruce Richardson struct rte_eth_dev *dev; 222199a2dd95SBruce Richardson struct rte_eth_hairpin_cap cap; 222299a2dd95SBruce Richardson int i; 222399a2dd95SBruce Richardson int count; 222499a2dd95SBruce Richardson 222599a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 222699a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 222753ef1b34SMin Hu (Connor) 222899a2dd95SBruce Richardson if (rx_queue_id >= dev->data->nb_rx_queues) { 222999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid RX queue_id=%u\n", rx_queue_id); 223099a2dd95SBruce Richardson return -EINVAL; 223199a2dd95SBruce Richardson } 223253ef1b34SMin Hu (Connor) 223353ef1b34SMin Hu (Connor) if (conf == NULL) { 223453ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 223553ef1b34SMin Hu (Connor) "Cannot setup ethdev port %u Rx hairpin queue from NULL config\n", 223653ef1b34SMin Hu (Connor) port_id); 223753ef1b34SMin Hu (Connor) return -EINVAL; 223853ef1b34SMin Hu (Connor) } 223953ef1b34SMin Hu (Connor) 224099a2dd95SBruce Richardson ret = rte_eth_dev_hairpin_capability_get(port_id, &cap); 224199a2dd95SBruce Richardson if (ret != 0) 224299a2dd95SBruce Richardson return ret; 224399a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_hairpin_queue_setup, 224499a2dd95SBruce Richardson -ENOTSUP); 224599a2dd95SBruce Richardson /* if nb_rx_desc is zero use max number of desc from the driver. */ 224699a2dd95SBruce Richardson if (nb_rx_desc == 0) 224799a2dd95SBruce Richardson nb_rx_desc = cap.max_nb_desc; 224899a2dd95SBruce Richardson if (nb_rx_desc > cap.max_nb_desc) { 224999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 225099a2dd95SBruce Richardson "Invalid value for nb_rx_desc(=%hu), should be: <= %hu", 225199a2dd95SBruce Richardson nb_rx_desc, cap.max_nb_desc); 225299a2dd95SBruce Richardson return -EINVAL; 225399a2dd95SBruce Richardson } 225499a2dd95SBruce Richardson if (conf->peer_count > cap.max_rx_2_tx) { 225599a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 225699a2dd95SBruce Richardson "Invalid value for number of peers for Rx queue(=%u), should be: <= %hu", 225799a2dd95SBruce Richardson conf->peer_count, cap.max_rx_2_tx); 225899a2dd95SBruce Richardson return -EINVAL; 225999a2dd95SBruce Richardson } 226099a2dd95SBruce Richardson if (conf->peer_count == 0) { 226199a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 226299a2dd95SBruce Richardson "Invalid value for number of peers for Rx queue(=%u), should be: > 0", 226399a2dd95SBruce Richardson conf->peer_count); 226499a2dd95SBruce Richardson return -EINVAL; 226599a2dd95SBruce Richardson } 226699a2dd95SBruce Richardson for (i = 0, count = 0; i < dev->data->nb_rx_queues && 226799a2dd95SBruce Richardson cap.max_nb_queues != UINT16_MAX; i++) { 226899a2dd95SBruce Richardson if (i == rx_queue_id || rte_eth_dev_is_rx_hairpin_queue(dev, i)) 226999a2dd95SBruce Richardson count++; 227099a2dd95SBruce Richardson } 227199a2dd95SBruce Richardson if (count > cap.max_nb_queues) { 227299a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "To many Rx hairpin queues max is %d", 227399a2dd95SBruce Richardson cap.max_nb_queues); 227499a2dd95SBruce Richardson return -EINVAL; 227599a2dd95SBruce Richardson } 227699a2dd95SBruce Richardson if (dev->data->dev_started) 227799a2dd95SBruce Richardson return -EBUSY; 227849ed3224SXueming Li eth_dev_rxq_release(dev, rx_queue_id); 227999a2dd95SBruce Richardson ret = (*dev->dev_ops->rx_hairpin_queue_setup)(dev, rx_queue_id, 228099a2dd95SBruce Richardson nb_rx_desc, conf); 228199a2dd95SBruce Richardson if (ret == 0) 228299a2dd95SBruce Richardson dev->data->rx_queue_state[rx_queue_id] = 228399a2dd95SBruce Richardson RTE_ETH_QUEUE_STATE_HAIRPIN; 228499a2dd95SBruce Richardson return eth_err(port_id, ret); 228599a2dd95SBruce Richardson } 228699a2dd95SBruce Richardson 228799a2dd95SBruce Richardson int 228899a2dd95SBruce Richardson rte_eth_tx_queue_setup(uint16_t port_id, uint16_t tx_queue_id, 228999a2dd95SBruce Richardson uint16_t nb_tx_desc, unsigned int socket_id, 229099a2dd95SBruce Richardson const struct rte_eth_txconf *tx_conf) 229199a2dd95SBruce Richardson { 229299a2dd95SBruce Richardson struct rte_eth_dev *dev; 229399a2dd95SBruce Richardson struct rte_eth_dev_info dev_info; 229499a2dd95SBruce Richardson struct rte_eth_txconf local_conf; 229599a2dd95SBruce Richardson int ret; 229699a2dd95SBruce Richardson 229799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 229899a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 229953ef1b34SMin Hu (Connor) 230099a2dd95SBruce Richardson if (tx_queue_id >= dev->data->nb_tx_queues) { 230199a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid TX queue_id=%u\n", tx_queue_id); 230299a2dd95SBruce Richardson return -EINVAL; 230399a2dd95SBruce Richardson } 230499a2dd95SBruce Richardson 230599a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_queue_setup, -ENOTSUP); 230699a2dd95SBruce Richardson 230799a2dd95SBruce Richardson ret = rte_eth_dev_info_get(port_id, &dev_info); 230899a2dd95SBruce Richardson if (ret != 0) 230999a2dd95SBruce Richardson return ret; 231099a2dd95SBruce Richardson 231199a2dd95SBruce Richardson /* Use default specified by driver, if nb_tx_desc is zero */ 231299a2dd95SBruce Richardson if (nb_tx_desc == 0) { 231399a2dd95SBruce Richardson nb_tx_desc = dev_info.default_txportconf.ring_size; 231499a2dd95SBruce Richardson /* If driver default is zero, fall back on EAL default */ 231599a2dd95SBruce Richardson if (nb_tx_desc == 0) 231699a2dd95SBruce Richardson nb_tx_desc = RTE_ETH_DEV_FALLBACK_TX_RINGSIZE; 231799a2dd95SBruce Richardson } 231899a2dd95SBruce Richardson if (nb_tx_desc > dev_info.tx_desc_lim.nb_max || 231999a2dd95SBruce Richardson nb_tx_desc < dev_info.tx_desc_lim.nb_min || 232099a2dd95SBruce Richardson nb_tx_desc % dev_info.tx_desc_lim.nb_align != 0) { 232199a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 232299a2dd95SBruce Richardson "Invalid value for nb_tx_desc(=%hu), should be: <= %hu, >= %hu, and a product of %hu\n", 232399a2dd95SBruce Richardson nb_tx_desc, dev_info.tx_desc_lim.nb_max, 232499a2dd95SBruce Richardson dev_info.tx_desc_lim.nb_min, 232599a2dd95SBruce Richardson dev_info.tx_desc_lim.nb_align); 232699a2dd95SBruce Richardson return -EINVAL; 232799a2dd95SBruce Richardson } 232899a2dd95SBruce Richardson 232999a2dd95SBruce Richardson if (dev->data->dev_started && 233099a2dd95SBruce Richardson !(dev_info.dev_capa & 233199a2dd95SBruce Richardson RTE_ETH_DEV_CAPA_RUNTIME_TX_QUEUE_SETUP)) 233299a2dd95SBruce Richardson return -EBUSY; 233399a2dd95SBruce Richardson 233499a2dd95SBruce Richardson if (dev->data->dev_started && 233599a2dd95SBruce Richardson (dev->data->tx_queue_state[tx_queue_id] != 233699a2dd95SBruce Richardson RTE_ETH_QUEUE_STATE_STOPPED)) 233799a2dd95SBruce Richardson return -EBUSY; 233899a2dd95SBruce Richardson 233949ed3224SXueming Li eth_dev_txq_release(dev, tx_queue_id); 234099a2dd95SBruce Richardson 234199a2dd95SBruce Richardson if (tx_conf == NULL) 234299a2dd95SBruce Richardson tx_conf = &dev_info.default_txconf; 234399a2dd95SBruce Richardson 234499a2dd95SBruce Richardson local_conf = *tx_conf; 234599a2dd95SBruce Richardson 234699a2dd95SBruce Richardson /* 234799a2dd95SBruce Richardson * If an offloading has already been enabled in 234899a2dd95SBruce Richardson * rte_eth_dev_configure(), it has been enabled on all queues, 234999a2dd95SBruce Richardson * so there is no need to enable it in this queue again. 235099a2dd95SBruce Richardson * The local_conf.offloads input to underlying PMD only carries 235199a2dd95SBruce Richardson * those offloadings which are only enabled on this queue and 235299a2dd95SBruce Richardson * not enabled on all queues. 235399a2dd95SBruce Richardson */ 235499a2dd95SBruce Richardson local_conf.offloads &= ~dev->data->dev_conf.txmode.offloads; 235599a2dd95SBruce Richardson 235699a2dd95SBruce Richardson /* 235799a2dd95SBruce Richardson * New added offloadings for this queue are those not enabled in 235899a2dd95SBruce Richardson * rte_eth_dev_configure() and they must be per-queue type. 235999a2dd95SBruce Richardson * A pure per-port offloading can't be enabled on a queue while 236099a2dd95SBruce Richardson * disabled on another queue. A pure per-port offloading can't 236199a2dd95SBruce Richardson * be enabled for any queue as new added one if it hasn't been 236299a2dd95SBruce Richardson * enabled in rte_eth_dev_configure(). 236399a2dd95SBruce Richardson */ 236499a2dd95SBruce Richardson if ((local_conf.offloads & dev_info.tx_queue_offload_capa) != 236599a2dd95SBruce Richardson local_conf.offloads) { 236699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 236799a2dd95SBruce Richardson "Ethdev port_id=%d tx_queue_id=%d, new added offloads 0x%"PRIx64" must be " 236899a2dd95SBruce Richardson "within per-queue offload capabilities 0x%"PRIx64" in %s()\n", 236999a2dd95SBruce Richardson port_id, tx_queue_id, local_conf.offloads, 237099a2dd95SBruce Richardson dev_info.tx_queue_offload_capa, 237199a2dd95SBruce Richardson __func__); 237299a2dd95SBruce Richardson return -EINVAL; 237399a2dd95SBruce Richardson } 237499a2dd95SBruce Richardson 237599a2dd95SBruce Richardson rte_ethdev_trace_txq_setup(port_id, tx_queue_id, nb_tx_desc, tx_conf); 237699a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->tx_queue_setup)(dev, 237799a2dd95SBruce Richardson tx_queue_id, nb_tx_desc, socket_id, &local_conf)); 237899a2dd95SBruce Richardson } 237999a2dd95SBruce Richardson 238099a2dd95SBruce Richardson int 238199a2dd95SBruce Richardson rte_eth_tx_hairpin_queue_setup(uint16_t port_id, uint16_t tx_queue_id, 238299a2dd95SBruce Richardson uint16_t nb_tx_desc, 238399a2dd95SBruce Richardson const struct rte_eth_hairpin_conf *conf) 238499a2dd95SBruce Richardson { 238599a2dd95SBruce Richardson struct rte_eth_dev *dev; 238699a2dd95SBruce Richardson struct rte_eth_hairpin_cap cap; 238799a2dd95SBruce Richardson int i; 238899a2dd95SBruce Richardson int count; 238999a2dd95SBruce Richardson int ret; 239099a2dd95SBruce Richardson 239199a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 239299a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 239353ef1b34SMin Hu (Connor) 239499a2dd95SBruce Richardson if (tx_queue_id >= dev->data->nb_tx_queues) { 239599a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid TX queue_id=%u\n", tx_queue_id); 239699a2dd95SBruce Richardson return -EINVAL; 239799a2dd95SBruce Richardson } 239853ef1b34SMin Hu (Connor) 239953ef1b34SMin Hu (Connor) if (conf == NULL) { 240053ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 240153ef1b34SMin Hu (Connor) "Cannot setup ethdev port %u Tx hairpin queue from NULL config\n", 240253ef1b34SMin Hu (Connor) port_id); 240353ef1b34SMin Hu (Connor) return -EINVAL; 240453ef1b34SMin Hu (Connor) } 240553ef1b34SMin Hu (Connor) 240699a2dd95SBruce Richardson ret = rte_eth_dev_hairpin_capability_get(port_id, &cap); 240799a2dd95SBruce Richardson if (ret != 0) 240899a2dd95SBruce Richardson return ret; 240999a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_hairpin_queue_setup, 241099a2dd95SBruce Richardson -ENOTSUP); 241199a2dd95SBruce Richardson /* if nb_rx_desc is zero use max number of desc from the driver. */ 241299a2dd95SBruce Richardson if (nb_tx_desc == 0) 241399a2dd95SBruce Richardson nb_tx_desc = cap.max_nb_desc; 241499a2dd95SBruce Richardson if (nb_tx_desc > cap.max_nb_desc) { 241599a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 241699a2dd95SBruce Richardson "Invalid value for nb_tx_desc(=%hu), should be: <= %hu", 241799a2dd95SBruce Richardson nb_tx_desc, cap.max_nb_desc); 241899a2dd95SBruce Richardson return -EINVAL; 241999a2dd95SBruce Richardson } 242099a2dd95SBruce Richardson if (conf->peer_count > cap.max_tx_2_rx) { 242199a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 242299a2dd95SBruce Richardson "Invalid value for number of peers for Tx queue(=%u), should be: <= %hu", 242399a2dd95SBruce Richardson conf->peer_count, cap.max_tx_2_rx); 242499a2dd95SBruce Richardson return -EINVAL; 242599a2dd95SBruce Richardson } 242699a2dd95SBruce Richardson if (conf->peer_count == 0) { 242799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 242899a2dd95SBruce Richardson "Invalid value for number of peers for Tx queue(=%u), should be: > 0", 242999a2dd95SBruce Richardson conf->peer_count); 243099a2dd95SBruce Richardson return -EINVAL; 243199a2dd95SBruce Richardson } 243299a2dd95SBruce Richardson for (i = 0, count = 0; i < dev->data->nb_tx_queues && 243399a2dd95SBruce Richardson cap.max_nb_queues != UINT16_MAX; i++) { 243499a2dd95SBruce Richardson if (i == tx_queue_id || rte_eth_dev_is_tx_hairpin_queue(dev, i)) 243599a2dd95SBruce Richardson count++; 243699a2dd95SBruce Richardson } 243799a2dd95SBruce Richardson if (count > cap.max_nb_queues) { 243899a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "To many Tx hairpin queues max is %d", 243999a2dd95SBruce Richardson cap.max_nb_queues); 244099a2dd95SBruce Richardson return -EINVAL; 244199a2dd95SBruce Richardson } 244299a2dd95SBruce Richardson if (dev->data->dev_started) 244399a2dd95SBruce Richardson return -EBUSY; 244449ed3224SXueming Li eth_dev_txq_release(dev, tx_queue_id); 244599a2dd95SBruce Richardson ret = (*dev->dev_ops->tx_hairpin_queue_setup) 244699a2dd95SBruce Richardson (dev, tx_queue_id, nb_tx_desc, conf); 244799a2dd95SBruce Richardson if (ret == 0) 244899a2dd95SBruce Richardson dev->data->tx_queue_state[tx_queue_id] = 244999a2dd95SBruce Richardson RTE_ETH_QUEUE_STATE_HAIRPIN; 245099a2dd95SBruce Richardson return eth_err(port_id, ret); 245199a2dd95SBruce Richardson } 245299a2dd95SBruce Richardson 245399a2dd95SBruce Richardson int 245499a2dd95SBruce Richardson rte_eth_hairpin_bind(uint16_t tx_port, uint16_t rx_port) 245599a2dd95SBruce Richardson { 245699a2dd95SBruce Richardson struct rte_eth_dev *dev; 245799a2dd95SBruce Richardson int ret; 245899a2dd95SBruce Richardson 245999a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(tx_port, -ENODEV); 246099a2dd95SBruce Richardson dev = &rte_eth_devices[tx_port]; 246153ef1b34SMin Hu (Connor) 246299a2dd95SBruce Richardson if (dev->data->dev_started == 0) { 246399a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Tx port %d is not started\n", tx_port); 246499a2dd95SBruce Richardson return -EBUSY; 246599a2dd95SBruce Richardson } 246699a2dd95SBruce Richardson 246799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_bind, -ENOTSUP); 246899a2dd95SBruce Richardson ret = (*dev->dev_ops->hairpin_bind)(dev, rx_port); 246999a2dd95SBruce Richardson if (ret != 0) 247099a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Failed to bind hairpin Tx %d" 247199a2dd95SBruce Richardson " to Rx %d (%d - all ports)\n", 247299a2dd95SBruce Richardson tx_port, rx_port, RTE_MAX_ETHPORTS); 247399a2dd95SBruce Richardson 247499a2dd95SBruce Richardson return ret; 247599a2dd95SBruce Richardson } 247699a2dd95SBruce Richardson 247799a2dd95SBruce Richardson int 247899a2dd95SBruce Richardson rte_eth_hairpin_unbind(uint16_t tx_port, uint16_t rx_port) 247999a2dd95SBruce Richardson { 248099a2dd95SBruce Richardson struct rte_eth_dev *dev; 248199a2dd95SBruce Richardson int ret; 248299a2dd95SBruce Richardson 248399a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(tx_port, -ENODEV); 248499a2dd95SBruce Richardson dev = &rte_eth_devices[tx_port]; 248553ef1b34SMin Hu (Connor) 248699a2dd95SBruce Richardson if (dev->data->dev_started == 0) { 248799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Tx port %d is already stopped\n", tx_port); 248899a2dd95SBruce Richardson return -EBUSY; 248999a2dd95SBruce Richardson } 249099a2dd95SBruce Richardson 249199a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_unbind, -ENOTSUP); 249299a2dd95SBruce Richardson ret = (*dev->dev_ops->hairpin_unbind)(dev, rx_port); 249399a2dd95SBruce Richardson if (ret != 0) 249499a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Failed to unbind hairpin Tx %d" 249599a2dd95SBruce Richardson " from Rx %d (%d - all ports)\n", 249699a2dd95SBruce Richardson tx_port, rx_port, RTE_MAX_ETHPORTS); 249799a2dd95SBruce Richardson 249899a2dd95SBruce Richardson return ret; 249999a2dd95SBruce Richardson } 250099a2dd95SBruce Richardson 250199a2dd95SBruce Richardson int 250299a2dd95SBruce Richardson rte_eth_hairpin_get_peer_ports(uint16_t port_id, uint16_t *peer_ports, 250399a2dd95SBruce Richardson size_t len, uint32_t direction) 250499a2dd95SBruce Richardson { 250599a2dd95SBruce Richardson struct rte_eth_dev *dev; 250699a2dd95SBruce Richardson int ret; 250799a2dd95SBruce Richardson 250899a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 250999a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 251053ef1b34SMin Hu (Connor) 251153ef1b34SMin Hu (Connor) if (peer_ports == NULL) { 251253ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 251353ef1b34SMin Hu (Connor) "Cannot get ethdev port %u hairpin peer ports to NULL\n", 251453ef1b34SMin Hu (Connor) port_id); 251553ef1b34SMin Hu (Connor) return -EINVAL; 251653ef1b34SMin Hu (Connor) } 251753ef1b34SMin Hu (Connor) 251853ef1b34SMin Hu (Connor) if (len == 0) { 251953ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 252053ef1b34SMin Hu (Connor) "Cannot get ethdev port %u hairpin peer ports to array with zero size\n", 252153ef1b34SMin Hu (Connor) port_id); 252253ef1b34SMin Hu (Connor) return -EINVAL; 252353ef1b34SMin Hu (Connor) } 252453ef1b34SMin Hu (Connor) 252599a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_get_peer_ports, 252699a2dd95SBruce Richardson -ENOTSUP); 252799a2dd95SBruce Richardson 252899a2dd95SBruce Richardson ret = (*dev->dev_ops->hairpin_get_peer_ports)(dev, peer_ports, 252999a2dd95SBruce Richardson len, direction); 253099a2dd95SBruce Richardson if (ret < 0) 253199a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Failed to get %d hairpin peer %s ports\n", 253299a2dd95SBruce Richardson port_id, direction ? "Rx" : "Tx"); 253399a2dd95SBruce Richardson 253499a2dd95SBruce Richardson return ret; 253599a2dd95SBruce Richardson } 253699a2dd95SBruce Richardson 253799a2dd95SBruce Richardson void 253899a2dd95SBruce Richardson rte_eth_tx_buffer_drop_callback(struct rte_mbuf **pkts, uint16_t unsent, 253999a2dd95SBruce Richardson void *userdata __rte_unused) 254099a2dd95SBruce Richardson { 254199a2dd95SBruce Richardson rte_pktmbuf_free_bulk(pkts, unsent); 254299a2dd95SBruce Richardson } 254399a2dd95SBruce Richardson 254499a2dd95SBruce Richardson void 254599a2dd95SBruce Richardson rte_eth_tx_buffer_count_callback(struct rte_mbuf **pkts, uint16_t unsent, 254699a2dd95SBruce Richardson void *userdata) 254799a2dd95SBruce Richardson { 254899a2dd95SBruce Richardson uint64_t *count = userdata; 254999a2dd95SBruce Richardson 255099a2dd95SBruce Richardson rte_pktmbuf_free_bulk(pkts, unsent); 255199a2dd95SBruce Richardson *count += unsent; 255299a2dd95SBruce Richardson } 255399a2dd95SBruce Richardson 255499a2dd95SBruce Richardson int 255599a2dd95SBruce Richardson rte_eth_tx_buffer_set_err_callback(struct rte_eth_dev_tx_buffer *buffer, 255699a2dd95SBruce Richardson buffer_tx_error_fn cbfn, void *userdata) 255799a2dd95SBruce Richardson { 255853ef1b34SMin Hu (Connor) if (buffer == NULL) { 255953ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 256053ef1b34SMin Hu (Connor) "Cannot set Tx buffer error callback to NULL buffer\n"); 256153ef1b34SMin Hu (Connor) return -EINVAL; 256253ef1b34SMin Hu (Connor) } 256353ef1b34SMin Hu (Connor) 256499a2dd95SBruce Richardson buffer->error_callback = cbfn; 256599a2dd95SBruce Richardson buffer->error_userdata = userdata; 256699a2dd95SBruce Richardson return 0; 256799a2dd95SBruce Richardson } 256899a2dd95SBruce Richardson 256999a2dd95SBruce Richardson int 257099a2dd95SBruce Richardson rte_eth_tx_buffer_init(struct rte_eth_dev_tx_buffer *buffer, uint16_t size) 257199a2dd95SBruce Richardson { 257299a2dd95SBruce Richardson int ret = 0; 257399a2dd95SBruce Richardson 257453ef1b34SMin Hu (Connor) if (buffer == NULL) { 257553ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot initialize NULL buffer\n"); 257699a2dd95SBruce Richardson return -EINVAL; 257753ef1b34SMin Hu (Connor) } 257899a2dd95SBruce Richardson 257999a2dd95SBruce Richardson buffer->size = size; 258099a2dd95SBruce Richardson if (buffer->error_callback == NULL) { 258199a2dd95SBruce Richardson ret = rte_eth_tx_buffer_set_err_callback( 258299a2dd95SBruce Richardson buffer, rte_eth_tx_buffer_drop_callback, NULL); 258399a2dd95SBruce Richardson } 258499a2dd95SBruce Richardson 258599a2dd95SBruce Richardson return ret; 258699a2dd95SBruce Richardson } 258799a2dd95SBruce Richardson 258899a2dd95SBruce Richardson int 258999a2dd95SBruce Richardson rte_eth_tx_done_cleanup(uint16_t port_id, uint16_t queue_id, uint32_t free_cnt) 259099a2dd95SBruce Richardson { 259153ef1b34SMin Hu (Connor) struct rte_eth_dev *dev; 259299a2dd95SBruce Richardson int ret; 259399a2dd95SBruce Richardson 259499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 259553ef1b34SMin Hu (Connor) dev = &rte_eth_devices[port_id]; 259653ef1b34SMin Hu (Connor) 259799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_done_cleanup, -ENOTSUP); 259899a2dd95SBruce Richardson 259999a2dd95SBruce Richardson /* Call driver to free pending mbufs. */ 260099a2dd95SBruce Richardson ret = (*dev->dev_ops->tx_done_cleanup)(dev->data->tx_queues[queue_id], 260199a2dd95SBruce Richardson free_cnt); 260299a2dd95SBruce Richardson return eth_err(port_id, ret); 260399a2dd95SBruce Richardson } 260499a2dd95SBruce Richardson 260599a2dd95SBruce Richardson int 260699a2dd95SBruce Richardson rte_eth_promiscuous_enable(uint16_t port_id) 260799a2dd95SBruce Richardson { 260899a2dd95SBruce Richardson struct rte_eth_dev *dev; 260999a2dd95SBruce Richardson int diag = 0; 261099a2dd95SBruce Richardson 261199a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 261299a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 261399a2dd95SBruce Richardson 261499a2dd95SBruce Richardson if (dev->data->promiscuous == 1) 261599a2dd95SBruce Richardson return 0; 261699a2dd95SBruce Richardson 261799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->promiscuous_enable, -ENOTSUP); 261899a2dd95SBruce Richardson 261999a2dd95SBruce Richardson diag = (*dev->dev_ops->promiscuous_enable)(dev); 262099a2dd95SBruce Richardson dev->data->promiscuous = (diag == 0) ? 1 : 0; 262199a2dd95SBruce Richardson 262299a2dd95SBruce Richardson return eth_err(port_id, diag); 262399a2dd95SBruce Richardson } 262499a2dd95SBruce Richardson 262599a2dd95SBruce Richardson int 262699a2dd95SBruce Richardson rte_eth_promiscuous_disable(uint16_t port_id) 262799a2dd95SBruce Richardson { 262899a2dd95SBruce Richardson struct rte_eth_dev *dev; 262999a2dd95SBruce Richardson int diag = 0; 263099a2dd95SBruce Richardson 263199a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 263299a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 263399a2dd95SBruce Richardson 263499a2dd95SBruce Richardson if (dev->data->promiscuous == 0) 263599a2dd95SBruce Richardson return 0; 263699a2dd95SBruce Richardson 263799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->promiscuous_disable, -ENOTSUP); 263899a2dd95SBruce Richardson 263999a2dd95SBruce Richardson dev->data->promiscuous = 0; 264099a2dd95SBruce Richardson diag = (*dev->dev_ops->promiscuous_disable)(dev); 264199a2dd95SBruce Richardson if (diag != 0) 264299a2dd95SBruce Richardson dev->data->promiscuous = 1; 264399a2dd95SBruce Richardson 264499a2dd95SBruce Richardson return eth_err(port_id, diag); 264599a2dd95SBruce Richardson } 264699a2dd95SBruce Richardson 264799a2dd95SBruce Richardson int 264899a2dd95SBruce Richardson rte_eth_promiscuous_get(uint16_t port_id) 264999a2dd95SBruce Richardson { 265099a2dd95SBruce Richardson struct rte_eth_dev *dev; 265199a2dd95SBruce Richardson 265299a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 265399a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 265453ef1b34SMin Hu (Connor) 265599a2dd95SBruce Richardson return dev->data->promiscuous; 265699a2dd95SBruce Richardson } 265799a2dd95SBruce Richardson 265899a2dd95SBruce Richardson int 265999a2dd95SBruce Richardson rte_eth_allmulticast_enable(uint16_t port_id) 266099a2dd95SBruce Richardson { 266199a2dd95SBruce Richardson struct rte_eth_dev *dev; 266299a2dd95SBruce Richardson int diag; 266399a2dd95SBruce Richardson 266499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 266599a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 266699a2dd95SBruce Richardson 266799a2dd95SBruce Richardson if (dev->data->all_multicast == 1) 266899a2dd95SBruce Richardson return 0; 266999a2dd95SBruce Richardson 267099a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->allmulticast_enable, -ENOTSUP); 267199a2dd95SBruce Richardson diag = (*dev->dev_ops->allmulticast_enable)(dev); 267299a2dd95SBruce Richardson dev->data->all_multicast = (diag == 0) ? 1 : 0; 267399a2dd95SBruce Richardson 267499a2dd95SBruce Richardson return eth_err(port_id, diag); 267599a2dd95SBruce Richardson } 267699a2dd95SBruce Richardson 267799a2dd95SBruce Richardson int 267899a2dd95SBruce Richardson rte_eth_allmulticast_disable(uint16_t port_id) 267999a2dd95SBruce Richardson { 268099a2dd95SBruce Richardson struct rte_eth_dev *dev; 268199a2dd95SBruce Richardson int diag; 268299a2dd95SBruce Richardson 268399a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 268499a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 268599a2dd95SBruce Richardson 268699a2dd95SBruce Richardson if (dev->data->all_multicast == 0) 268799a2dd95SBruce Richardson return 0; 268899a2dd95SBruce Richardson 268999a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->allmulticast_disable, -ENOTSUP); 269099a2dd95SBruce Richardson dev->data->all_multicast = 0; 269199a2dd95SBruce Richardson diag = (*dev->dev_ops->allmulticast_disable)(dev); 269299a2dd95SBruce Richardson if (diag != 0) 269399a2dd95SBruce Richardson dev->data->all_multicast = 1; 269499a2dd95SBruce Richardson 269599a2dd95SBruce Richardson return eth_err(port_id, diag); 269699a2dd95SBruce Richardson } 269799a2dd95SBruce Richardson 269899a2dd95SBruce Richardson int 269999a2dd95SBruce Richardson rte_eth_allmulticast_get(uint16_t port_id) 270099a2dd95SBruce Richardson { 270199a2dd95SBruce Richardson struct rte_eth_dev *dev; 270299a2dd95SBruce Richardson 270399a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 270499a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 270553ef1b34SMin Hu (Connor) 270699a2dd95SBruce Richardson return dev->data->all_multicast; 270799a2dd95SBruce Richardson } 270899a2dd95SBruce Richardson 270999a2dd95SBruce Richardson int 271099a2dd95SBruce Richardson rte_eth_link_get(uint16_t port_id, struct rte_eth_link *eth_link) 271199a2dd95SBruce Richardson { 271299a2dd95SBruce Richardson struct rte_eth_dev *dev; 271399a2dd95SBruce Richardson 271499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 271599a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 271699a2dd95SBruce Richardson 271753ef1b34SMin Hu (Connor) if (eth_link == NULL) { 271853ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u link to NULL\n", 271953ef1b34SMin Hu (Connor) port_id); 272053ef1b34SMin Hu (Connor) return -EINVAL; 272153ef1b34SMin Hu (Connor) } 272253ef1b34SMin Hu (Connor) 272353ef1b34SMin Hu (Connor) if (dev->data->dev_conf.intr_conf.lsc && dev->data->dev_started) 272499a2dd95SBruce Richardson rte_eth_linkstatus_get(dev, eth_link); 272599a2dd95SBruce Richardson else { 272699a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->link_update, -ENOTSUP); 272799a2dd95SBruce Richardson (*dev->dev_ops->link_update)(dev, 1); 272899a2dd95SBruce Richardson *eth_link = dev->data->dev_link; 272999a2dd95SBruce Richardson } 273099a2dd95SBruce Richardson 273199a2dd95SBruce Richardson return 0; 273299a2dd95SBruce Richardson } 273399a2dd95SBruce Richardson 273499a2dd95SBruce Richardson int 273599a2dd95SBruce Richardson rte_eth_link_get_nowait(uint16_t port_id, struct rte_eth_link *eth_link) 273699a2dd95SBruce Richardson { 273799a2dd95SBruce Richardson struct rte_eth_dev *dev; 273899a2dd95SBruce Richardson 273999a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 274099a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 274199a2dd95SBruce Richardson 274253ef1b34SMin Hu (Connor) if (eth_link == NULL) { 274353ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u link to NULL\n", 274453ef1b34SMin Hu (Connor) port_id); 274553ef1b34SMin Hu (Connor) return -EINVAL; 274653ef1b34SMin Hu (Connor) } 274753ef1b34SMin Hu (Connor) 274853ef1b34SMin Hu (Connor) if (dev->data->dev_conf.intr_conf.lsc && dev->data->dev_started) 274999a2dd95SBruce Richardson rte_eth_linkstatus_get(dev, eth_link); 275099a2dd95SBruce Richardson else { 275199a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->link_update, -ENOTSUP); 275299a2dd95SBruce Richardson (*dev->dev_ops->link_update)(dev, 0); 275399a2dd95SBruce Richardson *eth_link = dev->data->dev_link; 275499a2dd95SBruce Richardson } 275599a2dd95SBruce Richardson 275699a2dd95SBruce Richardson return 0; 275799a2dd95SBruce Richardson } 275899a2dd95SBruce Richardson 275999a2dd95SBruce Richardson const char * 276099a2dd95SBruce Richardson rte_eth_link_speed_to_str(uint32_t link_speed) 276199a2dd95SBruce Richardson { 276299a2dd95SBruce Richardson switch (link_speed) { 276399a2dd95SBruce Richardson case ETH_SPEED_NUM_NONE: return "None"; 276499a2dd95SBruce Richardson case ETH_SPEED_NUM_10M: return "10 Mbps"; 276599a2dd95SBruce Richardson case ETH_SPEED_NUM_100M: return "100 Mbps"; 276699a2dd95SBruce Richardson case ETH_SPEED_NUM_1G: return "1 Gbps"; 276799a2dd95SBruce Richardson case ETH_SPEED_NUM_2_5G: return "2.5 Gbps"; 276899a2dd95SBruce Richardson case ETH_SPEED_NUM_5G: return "5 Gbps"; 276999a2dd95SBruce Richardson case ETH_SPEED_NUM_10G: return "10 Gbps"; 277099a2dd95SBruce Richardson case ETH_SPEED_NUM_20G: return "20 Gbps"; 277199a2dd95SBruce Richardson case ETH_SPEED_NUM_25G: return "25 Gbps"; 277299a2dd95SBruce Richardson case ETH_SPEED_NUM_40G: return "40 Gbps"; 277399a2dd95SBruce Richardson case ETH_SPEED_NUM_50G: return "50 Gbps"; 277499a2dd95SBruce Richardson case ETH_SPEED_NUM_56G: return "56 Gbps"; 277599a2dd95SBruce Richardson case ETH_SPEED_NUM_100G: return "100 Gbps"; 277699a2dd95SBruce Richardson case ETH_SPEED_NUM_200G: return "200 Gbps"; 277799a2dd95SBruce Richardson case ETH_SPEED_NUM_UNKNOWN: return "Unknown"; 277899a2dd95SBruce Richardson default: return "Invalid"; 277999a2dd95SBruce Richardson } 278099a2dd95SBruce Richardson } 278199a2dd95SBruce Richardson 278299a2dd95SBruce Richardson int 278399a2dd95SBruce Richardson rte_eth_link_to_str(char *str, size_t len, const struct rte_eth_link *eth_link) 278499a2dd95SBruce Richardson { 278553ef1b34SMin Hu (Connor) if (str == NULL) { 278653ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot convert link to NULL string\n"); 278753ef1b34SMin Hu (Connor) return -EINVAL; 278853ef1b34SMin Hu (Connor) } 278953ef1b34SMin Hu (Connor) 279053ef1b34SMin Hu (Connor) if (len == 0) { 279153ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 279253ef1b34SMin Hu (Connor) "Cannot convert link to string with zero size\n"); 279353ef1b34SMin Hu (Connor) return -EINVAL; 279453ef1b34SMin Hu (Connor) } 279553ef1b34SMin Hu (Connor) 279653ef1b34SMin Hu (Connor) if (eth_link == NULL) { 279753ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot convert to string from NULL link\n"); 279853ef1b34SMin Hu (Connor) return -EINVAL; 279953ef1b34SMin Hu (Connor) } 280053ef1b34SMin Hu (Connor) 280199a2dd95SBruce Richardson if (eth_link->link_status == ETH_LINK_DOWN) 280299a2dd95SBruce Richardson return snprintf(str, len, "Link down"); 280399a2dd95SBruce Richardson else 280499a2dd95SBruce Richardson return snprintf(str, len, "Link up at %s %s %s", 280599a2dd95SBruce Richardson rte_eth_link_speed_to_str(eth_link->link_speed), 280699a2dd95SBruce Richardson (eth_link->link_duplex == ETH_LINK_FULL_DUPLEX) ? 280799a2dd95SBruce Richardson "FDX" : "HDX", 280899a2dd95SBruce Richardson (eth_link->link_autoneg == ETH_LINK_AUTONEG) ? 280999a2dd95SBruce Richardson "Autoneg" : "Fixed"); 281099a2dd95SBruce Richardson } 281199a2dd95SBruce Richardson 281299a2dd95SBruce Richardson int 281399a2dd95SBruce Richardson rte_eth_stats_get(uint16_t port_id, struct rte_eth_stats *stats) 281499a2dd95SBruce Richardson { 281599a2dd95SBruce Richardson struct rte_eth_dev *dev; 281699a2dd95SBruce Richardson 281799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 281899a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 281953ef1b34SMin Hu (Connor) 282053ef1b34SMin Hu (Connor) if (stats == NULL) { 282153ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u stats to NULL\n", 282253ef1b34SMin Hu (Connor) port_id); 282353ef1b34SMin Hu (Connor) return -EINVAL; 282453ef1b34SMin Hu (Connor) } 282553ef1b34SMin Hu (Connor) 282699a2dd95SBruce Richardson memset(stats, 0, sizeof(*stats)); 282799a2dd95SBruce Richardson 282899a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->stats_get, -ENOTSUP); 282999a2dd95SBruce Richardson stats->rx_nombuf = dev->data->rx_mbuf_alloc_failed; 283099a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->stats_get)(dev, stats)); 283199a2dd95SBruce Richardson } 283299a2dd95SBruce Richardson 283399a2dd95SBruce Richardson int 283499a2dd95SBruce Richardson rte_eth_stats_reset(uint16_t port_id) 283599a2dd95SBruce Richardson { 283699a2dd95SBruce Richardson struct rte_eth_dev *dev; 283799a2dd95SBruce Richardson int ret; 283899a2dd95SBruce Richardson 283999a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 284099a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 284199a2dd95SBruce Richardson 284299a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->stats_reset, -ENOTSUP); 284399a2dd95SBruce Richardson ret = (*dev->dev_ops->stats_reset)(dev); 284499a2dd95SBruce Richardson if (ret != 0) 284599a2dd95SBruce Richardson return eth_err(port_id, ret); 284699a2dd95SBruce Richardson 284799a2dd95SBruce Richardson dev->data->rx_mbuf_alloc_failed = 0; 284899a2dd95SBruce Richardson 284999a2dd95SBruce Richardson return 0; 285099a2dd95SBruce Richardson } 285199a2dd95SBruce Richardson 285299a2dd95SBruce Richardson static inline int 285399a2dd95SBruce Richardson eth_dev_get_xstats_basic_count(struct rte_eth_dev *dev) 285499a2dd95SBruce Richardson { 285599a2dd95SBruce Richardson uint16_t nb_rxqs, nb_txqs; 285699a2dd95SBruce Richardson int count; 285799a2dd95SBruce Richardson 285899a2dd95SBruce Richardson nb_rxqs = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS); 285999a2dd95SBruce Richardson nb_txqs = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS); 286099a2dd95SBruce Richardson 286199a2dd95SBruce Richardson count = RTE_NB_STATS; 286299a2dd95SBruce Richardson if (dev->data->dev_flags & RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS) { 286399a2dd95SBruce Richardson count += nb_rxqs * RTE_NB_RXQ_STATS; 286499a2dd95SBruce Richardson count += nb_txqs * RTE_NB_TXQ_STATS; 286599a2dd95SBruce Richardson } 286699a2dd95SBruce Richardson 286799a2dd95SBruce Richardson return count; 286899a2dd95SBruce Richardson } 286999a2dd95SBruce Richardson 287099a2dd95SBruce Richardson static int 287199a2dd95SBruce Richardson eth_dev_get_xstats_count(uint16_t port_id) 287299a2dd95SBruce Richardson { 287399a2dd95SBruce Richardson struct rte_eth_dev *dev; 287499a2dd95SBruce Richardson int count; 287599a2dd95SBruce Richardson 287699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 287799a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 287899a2dd95SBruce Richardson if (dev->dev_ops->xstats_get_names != NULL) { 287999a2dd95SBruce Richardson count = (*dev->dev_ops->xstats_get_names)(dev, NULL, 0); 288099a2dd95SBruce Richardson if (count < 0) 288199a2dd95SBruce Richardson return eth_err(port_id, count); 288299a2dd95SBruce Richardson } else 288399a2dd95SBruce Richardson count = 0; 288499a2dd95SBruce Richardson 288599a2dd95SBruce Richardson 288699a2dd95SBruce Richardson count += eth_dev_get_xstats_basic_count(dev); 288799a2dd95SBruce Richardson 288899a2dd95SBruce Richardson return count; 288999a2dd95SBruce Richardson } 289099a2dd95SBruce Richardson 289199a2dd95SBruce Richardson int 289299a2dd95SBruce Richardson rte_eth_xstats_get_id_by_name(uint16_t port_id, const char *xstat_name, 289399a2dd95SBruce Richardson uint64_t *id) 289499a2dd95SBruce Richardson { 289599a2dd95SBruce Richardson int cnt_xstats, idx_xstat; 289699a2dd95SBruce Richardson 289799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 289899a2dd95SBruce Richardson 289953ef1b34SMin Hu (Connor) if (xstat_name == NULL) { 290053ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 290153ef1b34SMin Hu (Connor) "Cannot get ethdev port %u xstats ID from NULL xstat name\n", 290253ef1b34SMin Hu (Connor) port_id); 290399a2dd95SBruce Richardson return -ENOMEM; 290499a2dd95SBruce Richardson } 290599a2dd95SBruce Richardson 290653ef1b34SMin Hu (Connor) if (id == NULL) { 290753ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 290853ef1b34SMin Hu (Connor) "Cannot get ethdev port %u xstats ID to NULL\n", 290953ef1b34SMin Hu (Connor) port_id); 291099a2dd95SBruce Richardson return -ENOMEM; 291199a2dd95SBruce Richardson } 291299a2dd95SBruce Richardson 291399a2dd95SBruce Richardson /* Get count */ 291499a2dd95SBruce Richardson cnt_xstats = rte_eth_xstats_get_names_by_id(port_id, NULL, 0, NULL); 291599a2dd95SBruce Richardson if (cnt_xstats < 0) { 291699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Cannot get count of xstats\n"); 291799a2dd95SBruce Richardson return -ENODEV; 291899a2dd95SBruce Richardson } 291999a2dd95SBruce Richardson 292099a2dd95SBruce Richardson /* Get id-name lookup table */ 292199a2dd95SBruce Richardson struct rte_eth_xstat_name xstats_names[cnt_xstats]; 292299a2dd95SBruce Richardson 292399a2dd95SBruce Richardson if (cnt_xstats != rte_eth_xstats_get_names_by_id( 292499a2dd95SBruce Richardson port_id, xstats_names, cnt_xstats, NULL)) { 292599a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Cannot get xstats lookup\n"); 292699a2dd95SBruce Richardson return -1; 292799a2dd95SBruce Richardson } 292899a2dd95SBruce Richardson 292999a2dd95SBruce Richardson for (idx_xstat = 0; idx_xstat < cnt_xstats; idx_xstat++) { 293099a2dd95SBruce Richardson if (!strcmp(xstats_names[idx_xstat].name, xstat_name)) { 293199a2dd95SBruce Richardson *id = idx_xstat; 293299a2dd95SBruce Richardson return 0; 293399a2dd95SBruce Richardson }; 293499a2dd95SBruce Richardson } 293599a2dd95SBruce Richardson 293699a2dd95SBruce Richardson return -EINVAL; 293799a2dd95SBruce Richardson } 293899a2dd95SBruce Richardson 293999a2dd95SBruce Richardson /* retrieve basic stats names */ 294099a2dd95SBruce Richardson static int 294199a2dd95SBruce Richardson eth_basic_stats_get_names(struct rte_eth_dev *dev, 294299a2dd95SBruce Richardson struct rte_eth_xstat_name *xstats_names) 294399a2dd95SBruce Richardson { 294499a2dd95SBruce Richardson int cnt_used_entries = 0; 294599a2dd95SBruce Richardson uint32_t idx, id_queue; 294699a2dd95SBruce Richardson uint16_t num_q; 294799a2dd95SBruce Richardson 294899a2dd95SBruce Richardson for (idx = 0; idx < RTE_NB_STATS; idx++) { 294999a2dd95SBruce Richardson strlcpy(xstats_names[cnt_used_entries].name, 295099a2dd95SBruce Richardson eth_dev_stats_strings[idx].name, 295199a2dd95SBruce Richardson sizeof(xstats_names[0].name)); 295299a2dd95SBruce Richardson cnt_used_entries++; 295399a2dd95SBruce Richardson } 295499a2dd95SBruce Richardson 295599a2dd95SBruce Richardson if ((dev->data->dev_flags & RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS) == 0) 295699a2dd95SBruce Richardson return cnt_used_entries; 295799a2dd95SBruce Richardson 295899a2dd95SBruce Richardson num_q = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS); 295999a2dd95SBruce Richardson for (id_queue = 0; id_queue < num_q; id_queue++) { 296099a2dd95SBruce Richardson for (idx = 0; idx < RTE_NB_RXQ_STATS; idx++) { 296199a2dd95SBruce Richardson snprintf(xstats_names[cnt_used_entries].name, 296299a2dd95SBruce Richardson sizeof(xstats_names[0].name), 296399a2dd95SBruce Richardson "rx_q%u_%s", 296499a2dd95SBruce Richardson id_queue, eth_dev_rxq_stats_strings[idx].name); 296599a2dd95SBruce Richardson cnt_used_entries++; 296699a2dd95SBruce Richardson } 296799a2dd95SBruce Richardson 296899a2dd95SBruce Richardson } 296999a2dd95SBruce Richardson num_q = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS); 297099a2dd95SBruce Richardson for (id_queue = 0; id_queue < num_q; id_queue++) { 297199a2dd95SBruce Richardson for (idx = 0; idx < RTE_NB_TXQ_STATS; idx++) { 297299a2dd95SBruce Richardson snprintf(xstats_names[cnt_used_entries].name, 297399a2dd95SBruce Richardson sizeof(xstats_names[0].name), 297499a2dd95SBruce Richardson "tx_q%u_%s", 297599a2dd95SBruce Richardson id_queue, eth_dev_txq_stats_strings[idx].name); 297699a2dd95SBruce Richardson cnt_used_entries++; 297799a2dd95SBruce Richardson } 297899a2dd95SBruce Richardson } 297999a2dd95SBruce Richardson return cnt_used_entries; 298099a2dd95SBruce Richardson } 298199a2dd95SBruce Richardson 298299a2dd95SBruce Richardson /* retrieve ethdev extended statistics names */ 298399a2dd95SBruce Richardson int 298499a2dd95SBruce Richardson rte_eth_xstats_get_names_by_id(uint16_t port_id, 298599a2dd95SBruce Richardson struct rte_eth_xstat_name *xstats_names, unsigned int size, 298699a2dd95SBruce Richardson uint64_t *ids) 298799a2dd95SBruce Richardson { 298899a2dd95SBruce Richardson struct rte_eth_xstat_name *xstats_names_copy; 298999a2dd95SBruce Richardson unsigned int no_basic_stat_requested = 1; 299099a2dd95SBruce Richardson unsigned int no_ext_stat_requested = 1; 299199a2dd95SBruce Richardson unsigned int expected_entries; 299299a2dd95SBruce Richardson unsigned int basic_count; 299399a2dd95SBruce Richardson struct rte_eth_dev *dev; 299499a2dd95SBruce Richardson unsigned int i; 299599a2dd95SBruce Richardson int ret; 299699a2dd95SBruce Richardson 299799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 299899a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 299999a2dd95SBruce Richardson 300099a2dd95SBruce Richardson basic_count = eth_dev_get_xstats_basic_count(dev); 300199a2dd95SBruce Richardson ret = eth_dev_get_xstats_count(port_id); 300299a2dd95SBruce Richardson if (ret < 0) 300399a2dd95SBruce Richardson return ret; 300499a2dd95SBruce Richardson expected_entries = (unsigned int)ret; 300599a2dd95SBruce Richardson 300699a2dd95SBruce Richardson /* Return max number of stats if no ids given */ 300799a2dd95SBruce Richardson if (!ids) { 300899a2dd95SBruce Richardson if (!xstats_names) 300999a2dd95SBruce Richardson return expected_entries; 301099a2dd95SBruce Richardson else if (xstats_names && size < expected_entries) 301199a2dd95SBruce Richardson return expected_entries; 301299a2dd95SBruce Richardson } 301399a2dd95SBruce Richardson 301499a2dd95SBruce Richardson if (ids && !xstats_names) 301599a2dd95SBruce Richardson return -EINVAL; 301699a2dd95SBruce Richardson 301799a2dd95SBruce Richardson if (ids && dev->dev_ops->xstats_get_names_by_id != NULL && size > 0) { 301899a2dd95SBruce Richardson uint64_t ids_copy[size]; 301999a2dd95SBruce Richardson 302099a2dd95SBruce Richardson for (i = 0; i < size; i++) { 302199a2dd95SBruce Richardson if (ids[i] < basic_count) { 302299a2dd95SBruce Richardson no_basic_stat_requested = 0; 302399a2dd95SBruce Richardson break; 302499a2dd95SBruce Richardson } 302599a2dd95SBruce Richardson 302699a2dd95SBruce Richardson /* 302799a2dd95SBruce Richardson * Convert ids to xstats ids that PMD knows. 302899a2dd95SBruce Richardson * ids known by user are basic + extended stats. 302999a2dd95SBruce Richardson */ 303099a2dd95SBruce Richardson ids_copy[i] = ids[i] - basic_count; 303199a2dd95SBruce Richardson } 303299a2dd95SBruce Richardson 303399a2dd95SBruce Richardson if (no_basic_stat_requested) 303499a2dd95SBruce Richardson return (*dev->dev_ops->xstats_get_names_by_id)(dev, 30358c9f976fSAndrew Rybchenko ids_copy, xstats_names, size); 303699a2dd95SBruce Richardson } 303799a2dd95SBruce Richardson 303899a2dd95SBruce Richardson /* Retrieve all stats */ 303999a2dd95SBruce Richardson if (!ids) { 304099a2dd95SBruce Richardson int num_stats = rte_eth_xstats_get_names(port_id, xstats_names, 304199a2dd95SBruce Richardson expected_entries); 304299a2dd95SBruce Richardson if (num_stats < 0 || num_stats > (int)expected_entries) 304399a2dd95SBruce Richardson return num_stats; 304499a2dd95SBruce Richardson else 304599a2dd95SBruce Richardson return expected_entries; 304699a2dd95SBruce Richardson } 304799a2dd95SBruce Richardson 304899a2dd95SBruce Richardson xstats_names_copy = calloc(expected_entries, 304999a2dd95SBruce Richardson sizeof(struct rte_eth_xstat_name)); 305099a2dd95SBruce Richardson 305199a2dd95SBruce Richardson if (!xstats_names_copy) { 305299a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Can't allocate memory\n"); 305399a2dd95SBruce Richardson return -ENOMEM; 305499a2dd95SBruce Richardson } 305599a2dd95SBruce Richardson 305699a2dd95SBruce Richardson if (ids) { 305799a2dd95SBruce Richardson for (i = 0; i < size; i++) { 305899a2dd95SBruce Richardson if (ids[i] >= basic_count) { 305999a2dd95SBruce Richardson no_ext_stat_requested = 0; 306099a2dd95SBruce Richardson break; 306199a2dd95SBruce Richardson } 306299a2dd95SBruce Richardson } 306399a2dd95SBruce Richardson } 306499a2dd95SBruce Richardson 306599a2dd95SBruce Richardson /* Fill xstats_names_copy structure */ 306699a2dd95SBruce Richardson if (ids && no_ext_stat_requested) { 306799a2dd95SBruce Richardson eth_basic_stats_get_names(dev, xstats_names_copy); 306899a2dd95SBruce Richardson } else { 306999a2dd95SBruce Richardson ret = rte_eth_xstats_get_names(port_id, xstats_names_copy, 307099a2dd95SBruce Richardson expected_entries); 307199a2dd95SBruce Richardson if (ret < 0) { 307299a2dd95SBruce Richardson free(xstats_names_copy); 307399a2dd95SBruce Richardson return ret; 307499a2dd95SBruce Richardson } 307599a2dd95SBruce Richardson } 307699a2dd95SBruce Richardson 307799a2dd95SBruce Richardson /* Filter stats */ 307899a2dd95SBruce Richardson for (i = 0; i < size; i++) { 307999a2dd95SBruce Richardson if (ids[i] >= expected_entries) { 308099a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Id value isn't valid\n"); 308199a2dd95SBruce Richardson free(xstats_names_copy); 308299a2dd95SBruce Richardson return -1; 308399a2dd95SBruce Richardson } 308499a2dd95SBruce Richardson xstats_names[i] = xstats_names_copy[ids[i]]; 308599a2dd95SBruce Richardson } 308699a2dd95SBruce Richardson 308799a2dd95SBruce Richardson free(xstats_names_copy); 308899a2dd95SBruce Richardson return size; 308999a2dd95SBruce Richardson } 309099a2dd95SBruce Richardson 309199a2dd95SBruce Richardson int 309299a2dd95SBruce Richardson rte_eth_xstats_get_names(uint16_t port_id, 309399a2dd95SBruce Richardson struct rte_eth_xstat_name *xstats_names, 309499a2dd95SBruce Richardson unsigned int size) 309599a2dd95SBruce Richardson { 309699a2dd95SBruce Richardson struct rte_eth_dev *dev; 309799a2dd95SBruce Richardson int cnt_used_entries; 309899a2dd95SBruce Richardson int cnt_expected_entries; 309999a2dd95SBruce Richardson int cnt_driver_entries; 310099a2dd95SBruce Richardson 310199a2dd95SBruce Richardson cnt_expected_entries = eth_dev_get_xstats_count(port_id); 310299a2dd95SBruce Richardson if (xstats_names == NULL || cnt_expected_entries < 0 || 310399a2dd95SBruce Richardson (int)size < cnt_expected_entries) 310499a2dd95SBruce Richardson return cnt_expected_entries; 310599a2dd95SBruce Richardson 310699a2dd95SBruce Richardson /* port_id checked in eth_dev_get_xstats_count() */ 310799a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 310899a2dd95SBruce Richardson 310999a2dd95SBruce Richardson cnt_used_entries = eth_basic_stats_get_names(dev, xstats_names); 311099a2dd95SBruce Richardson 311199a2dd95SBruce Richardson if (dev->dev_ops->xstats_get_names != NULL) { 311299a2dd95SBruce Richardson /* If there are any driver-specific xstats, append them 311399a2dd95SBruce Richardson * to end of list. 311499a2dd95SBruce Richardson */ 311599a2dd95SBruce Richardson cnt_driver_entries = (*dev->dev_ops->xstats_get_names)( 311699a2dd95SBruce Richardson dev, 311799a2dd95SBruce Richardson xstats_names + cnt_used_entries, 311899a2dd95SBruce Richardson size - cnt_used_entries); 311999a2dd95SBruce Richardson if (cnt_driver_entries < 0) 312099a2dd95SBruce Richardson return eth_err(port_id, cnt_driver_entries); 312199a2dd95SBruce Richardson cnt_used_entries += cnt_driver_entries; 312299a2dd95SBruce Richardson } 312399a2dd95SBruce Richardson 312499a2dd95SBruce Richardson return cnt_used_entries; 312599a2dd95SBruce Richardson } 312699a2dd95SBruce Richardson 312799a2dd95SBruce Richardson 312899a2dd95SBruce Richardson static int 312999a2dd95SBruce Richardson eth_basic_stats_get(uint16_t port_id, struct rte_eth_xstat *xstats) 313099a2dd95SBruce Richardson { 313199a2dd95SBruce Richardson struct rte_eth_dev *dev; 313299a2dd95SBruce Richardson struct rte_eth_stats eth_stats; 313399a2dd95SBruce Richardson unsigned int count = 0, i, q; 313499a2dd95SBruce Richardson uint64_t val, *stats_ptr; 313599a2dd95SBruce Richardson uint16_t nb_rxqs, nb_txqs; 313699a2dd95SBruce Richardson int ret; 313799a2dd95SBruce Richardson 313899a2dd95SBruce Richardson ret = rte_eth_stats_get(port_id, ð_stats); 313999a2dd95SBruce Richardson if (ret < 0) 314099a2dd95SBruce Richardson return ret; 314199a2dd95SBruce Richardson 314299a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 314399a2dd95SBruce Richardson 314499a2dd95SBruce Richardson nb_rxqs = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS); 314599a2dd95SBruce Richardson nb_txqs = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS); 314699a2dd95SBruce Richardson 314799a2dd95SBruce Richardson /* global stats */ 314899a2dd95SBruce Richardson for (i = 0; i < RTE_NB_STATS; i++) { 314999a2dd95SBruce Richardson stats_ptr = RTE_PTR_ADD(ð_stats, 315099a2dd95SBruce Richardson eth_dev_stats_strings[i].offset); 315199a2dd95SBruce Richardson val = *stats_ptr; 315299a2dd95SBruce Richardson xstats[count++].value = val; 315399a2dd95SBruce Richardson } 315499a2dd95SBruce Richardson 315599a2dd95SBruce Richardson if ((dev->data->dev_flags & RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS) == 0) 315699a2dd95SBruce Richardson return count; 315799a2dd95SBruce Richardson 315899a2dd95SBruce Richardson /* per-rxq stats */ 315999a2dd95SBruce Richardson for (q = 0; q < nb_rxqs; q++) { 316099a2dd95SBruce Richardson for (i = 0; i < RTE_NB_RXQ_STATS; i++) { 316199a2dd95SBruce Richardson stats_ptr = RTE_PTR_ADD(ð_stats, 316299a2dd95SBruce Richardson eth_dev_rxq_stats_strings[i].offset + 316399a2dd95SBruce Richardson q * sizeof(uint64_t)); 316499a2dd95SBruce Richardson val = *stats_ptr; 316599a2dd95SBruce Richardson xstats[count++].value = val; 316699a2dd95SBruce Richardson } 316799a2dd95SBruce Richardson } 316899a2dd95SBruce Richardson 316999a2dd95SBruce Richardson /* per-txq stats */ 317099a2dd95SBruce Richardson for (q = 0; q < nb_txqs; q++) { 317199a2dd95SBruce Richardson for (i = 0; i < RTE_NB_TXQ_STATS; i++) { 317299a2dd95SBruce Richardson stats_ptr = RTE_PTR_ADD(ð_stats, 317399a2dd95SBruce Richardson eth_dev_txq_stats_strings[i].offset + 317499a2dd95SBruce Richardson q * sizeof(uint64_t)); 317599a2dd95SBruce Richardson val = *stats_ptr; 317699a2dd95SBruce Richardson xstats[count++].value = val; 317799a2dd95SBruce Richardson } 317899a2dd95SBruce Richardson } 317999a2dd95SBruce Richardson return count; 318099a2dd95SBruce Richardson } 318199a2dd95SBruce Richardson 318299a2dd95SBruce Richardson /* retrieve ethdev extended statistics */ 318399a2dd95SBruce Richardson int 318499a2dd95SBruce Richardson rte_eth_xstats_get_by_id(uint16_t port_id, const uint64_t *ids, 318599a2dd95SBruce Richardson uint64_t *values, unsigned int size) 318699a2dd95SBruce Richardson { 318799a2dd95SBruce Richardson unsigned int no_basic_stat_requested = 1; 318899a2dd95SBruce Richardson unsigned int no_ext_stat_requested = 1; 318999a2dd95SBruce Richardson unsigned int num_xstats_filled; 319099a2dd95SBruce Richardson unsigned int basic_count; 319199a2dd95SBruce Richardson uint16_t expected_entries; 319299a2dd95SBruce Richardson struct rte_eth_dev *dev; 319399a2dd95SBruce Richardson unsigned int i; 319499a2dd95SBruce Richardson int ret; 319599a2dd95SBruce Richardson 319699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 319753ef1b34SMin Hu (Connor) dev = &rte_eth_devices[port_id]; 319853ef1b34SMin Hu (Connor) 319999a2dd95SBruce Richardson ret = eth_dev_get_xstats_count(port_id); 320099a2dd95SBruce Richardson if (ret < 0) 320199a2dd95SBruce Richardson return ret; 320299a2dd95SBruce Richardson expected_entries = (uint16_t)ret; 320399a2dd95SBruce Richardson struct rte_eth_xstat xstats[expected_entries]; 320499a2dd95SBruce Richardson basic_count = eth_dev_get_xstats_basic_count(dev); 320599a2dd95SBruce Richardson 320699a2dd95SBruce Richardson /* Return max number of stats if no ids given */ 320799a2dd95SBruce Richardson if (!ids) { 320899a2dd95SBruce Richardson if (!values) 320999a2dd95SBruce Richardson return expected_entries; 321099a2dd95SBruce Richardson else if (values && size < expected_entries) 321199a2dd95SBruce Richardson return expected_entries; 321299a2dd95SBruce Richardson } 321399a2dd95SBruce Richardson 321499a2dd95SBruce Richardson if (ids && !values) 321599a2dd95SBruce Richardson return -EINVAL; 321699a2dd95SBruce Richardson 321799a2dd95SBruce Richardson if (ids && dev->dev_ops->xstats_get_by_id != NULL && size) { 321899a2dd95SBruce Richardson unsigned int basic_count = eth_dev_get_xstats_basic_count(dev); 321999a2dd95SBruce Richardson uint64_t ids_copy[size]; 322099a2dd95SBruce Richardson 322199a2dd95SBruce Richardson for (i = 0; i < size; i++) { 322299a2dd95SBruce Richardson if (ids[i] < basic_count) { 322399a2dd95SBruce Richardson no_basic_stat_requested = 0; 322499a2dd95SBruce Richardson break; 322599a2dd95SBruce Richardson } 322699a2dd95SBruce Richardson 322799a2dd95SBruce Richardson /* 322899a2dd95SBruce Richardson * Convert ids to xstats ids that PMD knows. 322999a2dd95SBruce Richardson * ids known by user are basic + extended stats. 323099a2dd95SBruce Richardson */ 323199a2dd95SBruce Richardson ids_copy[i] = ids[i] - basic_count; 323299a2dd95SBruce Richardson } 323399a2dd95SBruce Richardson 323499a2dd95SBruce Richardson if (no_basic_stat_requested) 323599a2dd95SBruce Richardson return (*dev->dev_ops->xstats_get_by_id)(dev, ids_copy, 323699a2dd95SBruce Richardson values, size); 323799a2dd95SBruce Richardson } 323899a2dd95SBruce Richardson 323999a2dd95SBruce Richardson if (ids) { 324099a2dd95SBruce Richardson for (i = 0; i < size; i++) { 324199a2dd95SBruce Richardson if (ids[i] >= basic_count) { 324299a2dd95SBruce Richardson no_ext_stat_requested = 0; 324399a2dd95SBruce Richardson break; 324499a2dd95SBruce Richardson } 324599a2dd95SBruce Richardson } 324699a2dd95SBruce Richardson } 324799a2dd95SBruce Richardson 324899a2dd95SBruce Richardson /* Fill the xstats structure */ 324999a2dd95SBruce Richardson if (ids && no_ext_stat_requested) 325099a2dd95SBruce Richardson ret = eth_basic_stats_get(port_id, xstats); 325199a2dd95SBruce Richardson else 325299a2dd95SBruce Richardson ret = rte_eth_xstats_get(port_id, xstats, expected_entries); 325399a2dd95SBruce Richardson 325499a2dd95SBruce Richardson if (ret < 0) 325599a2dd95SBruce Richardson return ret; 325699a2dd95SBruce Richardson num_xstats_filled = (unsigned int)ret; 325799a2dd95SBruce Richardson 325899a2dd95SBruce Richardson /* Return all stats */ 325999a2dd95SBruce Richardson if (!ids) { 326099a2dd95SBruce Richardson for (i = 0; i < num_xstats_filled; i++) 326199a2dd95SBruce Richardson values[i] = xstats[i].value; 326299a2dd95SBruce Richardson return expected_entries; 326399a2dd95SBruce Richardson } 326499a2dd95SBruce Richardson 326599a2dd95SBruce Richardson /* Filter stats */ 326699a2dd95SBruce Richardson for (i = 0; i < size; i++) { 326799a2dd95SBruce Richardson if (ids[i] >= expected_entries) { 326899a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Id value isn't valid\n"); 326999a2dd95SBruce Richardson return -1; 327099a2dd95SBruce Richardson } 327199a2dd95SBruce Richardson values[i] = xstats[ids[i]].value; 327299a2dd95SBruce Richardson } 327399a2dd95SBruce Richardson return size; 327499a2dd95SBruce Richardson } 327599a2dd95SBruce Richardson 327699a2dd95SBruce Richardson int 327799a2dd95SBruce Richardson rte_eth_xstats_get(uint16_t port_id, struct rte_eth_xstat *xstats, 327899a2dd95SBruce Richardson unsigned int n) 327999a2dd95SBruce Richardson { 328099a2dd95SBruce Richardson struct rte_eth_dev *dev; 328199a2dd95SBruce Richardson unsigned int count = 0, i; 328299a2dd95SBruce Richardson signed int xcount = 0; 328399a2dd95SBruce Richardson uint16_t nb_rxqs, nb_txqs; 328499a2dd95SBruce Richardson int ret; 328599a2dd95SBruce Richardson 328699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 328799a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 328899a2dd95SBruce Richardson 328999a2dd95SBruce Richardson nb_rxqs = RTE_MIN(dev->data->nb_rx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS); 329099a2dd95SBruce Richardson nb_txqs = RTE_MIN(dev->data->nb_tx_queues, RTE_ETHDEV_QUEUE_STAT_CNTRS); 329199a2dd95SBruce Richardson 329299a2dd95SBruce Richardson /* Return generic statistics */ 329399a2dd95SBruce Richardson count = RTE_NB_STATS; 329499a2dd95SBruce Richardson if (dev->data->dev_flags & RTE_ETH_DEV_AUTOFILL_QUEUE_XSTATS) 329599a2dd95SBruce Richardson count += (nb_rxqs * RTE_NB_RXQ_STATS) + (nb_txqs * RTE_NB_TXQ_STATS); 329699a2dd95SBruce Richardson 329799a2dd95SBruce Richardson /* implemented by the driver */ 329899a2dd95SBruce Richardson if (dev->dev_ops->xstats_get != NULL) { 329999a2dd95SBruce Richardson /* Retrieve the xstats from the driver at the end of the 330099a2dd95SBruce Richardson * xstats struct. 330199a2dd95SBruce Richardson */ 330299a2dd95SBruce Richardson xcount = (*dev->dev_ops->xstats_get)(dev, 330399a2dd95SBruce Richardson xstats ? xstats + count : NULL, 330499a2dd95SBruce Richardson (n > count) ? n - count : 0); 330599a2dd95SBruce Richardson 330699a2dd95SBruce Richardson if (xcount < 0) 330799a2dd95SBruce Richardson return eth_err(port_id, xcount); 330899a2dd95SBruce Richardson } 330999a2dd95SBruce Richardson 331099a2dd95SBruce Richardson if (n < count + xcount || xstats == NULL) 331199a2dd95SBruce Richardson return count + xcount; 331299a2dd95SBruce Richardson 331399a2dd95SBruce Richardson /* now fill the xstats structure */ 331499a2dd95SBruce Richardson ret = eth_basic_stats_get(port_id, xstats); 331599a2dd95SBruce Richardson if (ret < 0) 331699a2dd95SBruce Richardson return ret; 331799a2dd95SBruce Richardson count = ret; 331899a2dd95SBruce Richardson 331999a2dd95SBruce Richardson for (i = 0; i < count; i++) 332099a2dd95SBruce Richardson xstats[i].id = i; 332199a2dd95SBruce Richardson /* add an offset to driver-specific stats */ 332299a2dd95SBruce Richardson for ( ; i < count + xcount; i++) 332399a2dd95SBruce Richardson xstats[i].id += count; 332499a2dd95SBruce Richardson 332599a2dd95SBruce Richardson return count + xcount; 332699a2dd95SBruce Richardson } 332799a2dd95SBruce Richardson 332899a2dd95SBruce Richardson /* reset ethdev extended statistics */ 332999a2dd95SBruce Richardson int 333099a2dd95SBruce Richardson rte_eth_xstats_reset(uint16_t port_id) 333199a2dd95SBruce Richardson { 333299a2dd95SBruce Richardson struct rte_eth_dev *dev; 333399a2dd95SBruce Richardson 333499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 333599a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 333699a2dd95SBruce Richardson 333799a2dd95SBruce Richardson /* implemented by the driver */ 333899a2dd95SBruce Richardson if (dev->dev_ops->xstats_reset != NULL) 333999a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->xstats_reset)(dev)); 334099a2dd95SBruce Richardson 334199a2dd95SBruce Richardson /* fallback to default */ 334299a2dd95SBruce Richardson return rte_eth_stats_reset(port_id); 334399a2dd95SBruce Richardson } 334499a2dd95SBruce Richardson 334599a2dd95SBruce Richardson static int 334699a2dd95SBruce Richardson eth_dev_set_queue_stats_mapping(uint16_t port_id, uint16_t queue_id, 334799a2dd95SBruce Richardson uint8_t stat_idx, uint8_t is_rx) 334899a2dd95SBruce Richardson { 334999a2dd95SBruce Richardson struct rte_eth_dev *dev; 335099a2dd95SBruce Richardson 335199a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 335299a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 335399a2dd95SBruce Richardson 335499a2dd95SBruce Richardson if (is_rx && (queue_id >= dev->data->nb_rx_queues)) 335599a2dd95SBruce Richardson return -EINVAL; 335699a2dd95SBruce Richardson 335799a2dd95SBruce Richardson if (!is_rx && (queue_id >= dev->data->nb_tx_queues)) 335899a2dd95SBruce Richardson return -EINVAL; 335999a2dd95SBruce Richardson 336099a2dd95SBruce Richardson if (stat_idx >= RTE_ETHDEV_QUEUE_STAT_CNTRS) 336199a2dd95SBruce Richardson return -EINVAL; 336299a2dd95SBruce Richardson 336353ef1b34SMin Hu (Connor) RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->queue_stats_mapping_set, -ENOTSUP); 336453ef1b34SMin Hu (Connor) return (*dev->dev_ops->queue_stats_mapping_set) (dev, queue_id, stat_idx, is_rx); 336599a2dd95SBruce Richardson } 336699a2dd95SBruce Richardson 336799a2dd95SBruce Richardson int 336899a2dd95SBruce Richardson rte_eth_dev_set_tx_queue_stats_mapping(uint16_t port_id, uint16_t tx_queue_id, 336999a2dd95SBruce Richardson uint8_t stat_idx) 337099a2dd95SBruce Richardson { 337199a2dd95SBruce Richardson return eth_err(port_id, eth_dev_set_queue_stats_mapping(port_id, 337299a2dd95SBruce Richardson tx_queue_id, 337399a2dd95SBruce Richardson stat_idx, STAT_QMAP_TX)); 337499a2dd95SBruce Richardson } 337599a2dd95SBruce Richardson 337699a2dd95SBruce Richardson int 337799a2dd95SBruce Richardson rte_eth_dev_set_rx_queue_stats_mapping(uint16_t port_id, uint16_t rx_queue_id, 337899a2dd95SBruce Richardson uint8_t stat_idx) 337999a2dd95SBruce Richardson { 338099a2dd95SBruce Richardson return eth_err(port_id, eth_dev_set_queue_stats_mapping(port_id, 338199a2dd95SBruce Richardson rx_queue_id, 338299a2dd95SBruce Richardson stat_idx, STAT_QMAP_RX)); 338399a2dd95SBruce Richardson } 338499a2dd95SBruce Richardson 338599a2dd95SBruce Richardson int 338699a2dd95SBruce Richardson rte_eth_dev_fw_version_get(uint16_t port_id, char *fw_version, size_t fw_size) 338799a2dd95SBruce Richardson { 338899a2dd95SBruce Richardson struct rte_eth_dev *dev; 338999a2dd95SBruce Richardson 339099a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 339199a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 339299a2dd95SBruce Richardson 339353ef1b34SMin Hu (Connor) if (fw_version == NULL && fw_size > 0) { 339453ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 339553ef1b34SMin Hu (Connor) "Cannot get ethdev port %u FW version to NULL when string size is non zero\n", 339653ef1b34SMin Hu (Connor) port_id); 339753ef1b34SMin Hu (Connor) return -EINVAL; 339853ef1b34SMin Hu (Connor) } 339953ef1b34SMin Hu (Connor) 340099a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->fw_version_get, -ENOTSUP); 340199a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->fw_version_get)(dev, 340299a2dd95SBruce Richardson fw_version, fw_size)); 340399a2dd95SBruce Richardson } 340499a2dd95SBruce Richardson 340599a2dd95SBruce Richardson int 340699a2dd95SBruce Richardson rte_eth_dev_info_get(uint16_t port_id, struct rte_eth_dev_info *dev_info) 340799a2dd95SBruce Richardson { 340899a2dd95SBruce Richardson struct rte_eth_dev *dev; 340999a2dd95SBruce Richardson const struct rte_eth_desc_lim lim = { 341099a2dd95SBruce Richardson .nb_max = UINT16_MAX, 341199a2dd95SBruce Richardson .nb_min = 0, 341299a2dd95SBruce Richardson .nb_align = 1, 341399a2dd95SBruce Richardson .nb_seg_max = UINT16_MAX, 341499a2dd95SBruce Richardson .nb_mtu_seg_max = UINT16_MAX, 341599a2dd95SBruce Richardson }; 341699a2dd95SBruce Richardson int diag; 341799a2dd95SBruce Richardson 341853ef1b34SMin Hu (Connor) RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 341953ef1b34SMin Hu (Connor) dev = &rte_eth_devices[port_id]; 342053ef1b34SMin Hu (Connor) 342153ef1b34SMin Hu (Connor) if (dev_info == NULL) { 342253ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u info to NULL\n", 342353ef1b34SMin Hu (Connor) port_id); 342453ef1b34SMin Hu (Connor) return -EINVAL; 342553ef1b34SMin Hu (Connor) } 342653ef1b34SMin Hu (Connor) 342799a2dd95SBruce Richardson /* 342899a2dd95SBruce Richardson * Init dev_info before port_id check since caller does not have 342999a2dd95SBruce Richardson * return status and does not know if get is successful or not. 343099a2dd95SBruce Richardson */ 343199a2dd95SBruce Richardson memset(dev_info, 0, sizeof(struct rte_eth_dev_info)); 343299a2dd95SBruce Richardson dev_info->switch_info.domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID; 343399a2dd95SBruce Richardson 343499a2dd95SBruce Richardson dev_info->rx_desc_lim = lim; 343599a2dd95SBruce Richardson dev_info->tx_desc_lim = lim; 343699a2dd95SBruce Richardson dev_info->device = dev->device; 3437990912e6SFerruh Yigit dev_info->min_mtu = RTE_ETHER_MIN_LEN - RTE_ETHER_HDR_LEN - 3438990912e6SFerruh Yigit RTE_ETHER_CRC_LEN; 343999a2dd95SBruce Richardson dev_info->max_mtu = UINT16_MAX; 344099a2dd95SBruce Richardson 344199a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_infos_get, -ENOTSUP); 344299a2dd95SBruce Richardson diag = (*dev->dev_ops->dev_infos_get)(dev, dev_info); 344399a2dd95SBruce Richardson if (diag != 0) { 344499a2dd95SBruce Richardson /* Cleanup already filled in device information */ 344599a2dd95SBruce Richardson memset(dev_info, 0, sizeof(struct rte_eth_dev_info)); 344699a2dd95SBruce Richardson return eth_err(port_id, diag); 344799a2dd95SBruce Richardson } 344899a2dd95SBruce Richardson 344999a2dd95SBruce Richardson /* Maximum number of queues should be <= RTE_MAX_QUEUES_PER_PORT */ 345099a2dd95SBruce Richardson dev_info->max_rx_queues = RTE_MIN(dev_info->max_rx_queues, 345199a2dd95SBruce Richardson RTE_MAX_QUEUES_PER_PORT); 345299a2dd95SBruce Richardson dev_info->max_tx_queues = RTE_MIN(dev_info->max_tx_queues, 345399a2dd95SBruce Richardson RTE_MAX_QUEUES_PER_PORT); 345499a2dd95SBruce Richardson 345599a2dd95SBruce Richardson dev_info->driver_name = dev->device->driver->name; 345699a2dd95SBruce Richardson dev_info->nb_rx_queues = dev->data->nb_rx_queues; 345799a2dd95SBruce Richardson dev_info->nb_tx_queues = dev->data->nb_tx_queues; 345899a2dd95SBruce Richardson 345999a2dd95SBruce Richardson dev_info->dev_flags = &dev->data->dev_flags; 346099a2dd95SBruce Richardson 346199a2dd95SBruce Richardson return 0; 346299a2dd95SBruce Richardson } 346399a2dd95SBruce Richardson 346499a2dd95SBruce Richardson int 3465632be327SJie Wang rte_eth_dev_conf_get(uint16_t port_id, struct rte_eth_conf *dev_conf) 3466632be327SJie Wang { 3467632be327SJie Wang struct rte_eth_dev *dev; 3468632be327SJie Wang 3469632be327SJie Wang RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 3470632be327SJie Wang dev = &rte_eth_devices[port_id]; 3471632be327SJie Wang 3472632be327SJie Wang if (dev_conf == NULL) { 3473632be327SJie Wang RTE_ETHDEV_LOG(ERR, 3474632be327SJie Wang "Cannot get ethdev port %u configuration to NULL\n", 3475632be327SJie Wang port_id); 3476632be327SJie Wang return -EINVAL; 3477632be327SJie Wang } 3478632be327SJie Wang 3479632be327SJie Wang memcpy(dev_conf, &dev->data->dev_conf, sizeof(struct rte_eth_conf)); 3480632be327SJie Wang 3481632be327SJie Wang return 0; 3482632be327SJie Wang } 3483632be327SJie Wang 3484632be327SJie Wang int 348599a2dd95SBruce Richardson rte_eth_dev_get_supported_ptypes(uint16_t port_id, uint32_t ptype_mask, 348699a2dd95SBruce Richardson uint32_t *ptypes, int num) 348799a2dd95SBruce Richardson { 348899a2dd95SBruce Richardson int i, j; 348999a2dd95SBruce Richardson struct rte_eth_dev *dev; 349099a2dd95SBruce Richardson const uint32_t *all_ptypes; 349199a2dd95SBruce Richardson 349299a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 349399a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 349453ef1b34SMin Hu (Connor) 349553ef1b34SMin Hu (Connor) if (ptypes == NULL && num > 0) { 349653ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 349753ef1b34SMin Hu (Connor) "Cannot get ethdev port %u supported packet types to NULL when array size is non zero\n", 349853ef1b34SMin Hu (Connor) port_id); 349953ef1b34SMin Hu (Connor) return -EINVAL; 350053ef1b34SMin Hu (Connor) } 350153ef1b34SMin Hu (Connor) 350299a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_supported_ptypes_get, 0); 350399a2dd95SBruce Richardson all_ptypes = (*dev->dev_ops->dev_supported_ptypes_get)(dev); 350499a2dd95SBruce Richardson 350599a2dd95SBruce Richardson if (!all_ptypes) 350699a2dd95SBruce Richardson return 0; 350799a2dd95SBruce Richardson 350899a2dd95SBruce Richardson for (i = 0, j = 0; all_ptypes[i] != RTE_PTYPE_UNKNOWN; ++i) 350999a2dd95SBruce Richardson if (all_ptypes[i] & ptype_mask) { 351099a2dd95SBruce Richardson if (j < num) 351199a2dd95SBruce Richardson ptypes[j] = all_ptypes[i]; 351299a2dd95SBruce Richardson j++; 351399a2dd95SBruce Richardson } 351499a2dd95SBruce Richardson 351599a2dd95SBruce Richardson return j; 351699a2dd95SBruce Richardson } 351799a2dd95SBruce Richardson 351899a2dd95SBruce Richardson int 351999a2dd95SBruce Richardson rte_eth_dev_set_ptypes(uint16_t port_id, uint32_t ptype_mask, 352099a2dd95SBruce Richardson uint32_t *set_ptypes, unsigned int num) 352199a2dd95SBruce Richardson { 352299a2dd95SBruce Richardson const uint32_t valid_ptype_masks[] = { 352399a2dd95SBruce Richardson RTE_PTYPE_L2_MASK, 352499a2dd95SBruce Richardson RTE_PTYPE_L3_MASK, 352599a2dd95SBruce Richardson RTE_PTYPE_L4_MASK, 352699a2dd95SBruce Richardson RTE_PTYPE_TUNNEL_MASK, 352799a2dd95SBruce Richardson RTE_PTYPE_INNER_L2_MASK, 352899a2dd95SBruce Richardson RTE_PTYPE_INNER_L3_MASK, 352999a2dd95SBruce Richardson RTE_PTYPE_INNER_L4_MASK, 353099a2dd95SBruce Richardson }; 353199a2dd95SBruce Richardson const uint32_t *all_ptypes; 353299a2dd95SBruce Richardson struct rte_eth_dev *dev; 353399a2dd95SBruce Richardson uint32_t unused_mask; 353499a2dd95SBruce Richardson unsigned int i, j; 353599a2dd95SBruce Richardson int ret; 353699a2dd95SBruce Richardson 353799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 353899a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 353999a2dd95SBruce Richardson 354053ef1b34SMin Hu (Connor) if (num > 0 && set_ptypes == NULL) { 354153ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 354253ef1b34SMin Hu (Connor) "Cannot get ethdev port %u set packet types to NULL when array size is non zero\n", 354353ef1b34SMin Hu (Connor) port_id); 354499a2dd95SBruce Richardson return -EINVAL; 354553ef1b34SMin Hu (Connor) } 354699a2dd95SBruce Richardson 354799a2dd95SBruce Richardson if (*dev->dev_ops->dev_supported_ptypes_get == NULL || 354899a2dd95SBruce Richardson *dev->dev_ops->dev_ptypes_set == NULL) { 354999a2dd95SBruce Richardson ret = 0; 355099a2dd95SBruce Richardson goto ptype_unknown; 355199a2dd95SBruce Richardson } 355299a2dd95SBruce Richardson 355399a2dd95SBruce Richardson if (ptype_mask == 0) { 355499a2dd95SBruce Richardson ret = (*dev->dev_ops->dev_ptypes_set)(dev, 355599a2dd95SBruce Richardson ptype_mask); 355699a2dd95SBruce Richardson goto ptype_unknown; 355799a2dd95SBruce Richardson } 355899a2dd95SBruce Richardson 355999a2dd95SBruce Richardson unused_mask = ptype_mask; 356099a2dd95SBruce Richardson for (i = 0; i < RTE_DIM(valid_ptype_masks); i++) { 356199a2dd95SBruce Richardson uint32_t mask = ptype_mask & valid_ptype_masks[i]; 356299a2dd95SBruce Richardson if (mask && mask != valid_ptype_masks[i]) { 356399a2dd95SBruce Richardson ret = -EINVAL; 356499a2dd95SBruce Richardson goto ptype_unknown; 356599a2dd95SBruce Richardson } 356699a2dd95SBruce Richardson unused_mask &= ~valid_ptype_masks[i]; 356799a2dd95SBruce Richardson } 356899a2dd95SBruce Richardson 356999a2dd95SBruce Richardson if (unused_mask) { 357099a2dd95SBruce Richardson ret = -EINVAL; 357199a2dd95SBruce Richardson goto ptype_unknown; 357299a2dd95SBruce Richardson } 357399a2dd95SBruce Richardson 357499a2dd95SBruce Richardson all_ptypes = (*dev->dev_ops->dev_supported_ptypes_get)(dev); 357599a2dd95SBruce Richardson if (all_ptypes == NULL) { 357699a2dd95SBruce Richardson ret = 0; 357799a2dd95SBruce Richardson goto ptype_unknown; 357899a2dd95SBruce Richardson } 357999a2dd95SBruce Richardson 358099a2dd95SBruce Richardson /* 358199a2dd95SBruce Richardson * Accommodate as many set_ptypes as possible. If the supplied 358299a2dd95SBruce Richardson * set_ptypes array is insufficient fill it partially. 358399a2dd95SBruce Richardson */ 358499a2dd95SBruce Richardson for (i = 0, j = 0; set_ptypes != NULL && 358599a2dd95SBruce Richardson (all_ptypes[i] != RTE_PTYPE_UNKNOWN); ++i) { 358699a2dd95SBruce Richardson if (ptype_mask & all_ptypes[i]) { 358799a2dd95SBruce Richardson if (j < num - 1) { 358899a2dd95SBruce Richardson set_ptypes[j] = all_ptypes[i]; 358999a2dd95SBruce Richardson j++; 359099a2dd95SBruce Richardson continue; 359199a2dd95SBruce Richardson } 359299a2dd95SBruce Richardson break; 359399a2dd95SBruce Richardson } 359499a2dd95SBruce Richardson } 359599a2dd95SBruce Richardson 359699a2dd95SBruce Richardson if (set_ptypes != NULL && j < num) 359799a2dd95SBruce Richardson set_ptypes[j] = RTE_PTYPE_UNKNOWN; 359899a2dd95SBruce Richardson 359999a2dd95SBruce Richardson return (*dev->dev_ops->dev_ptypes_set)(dev, ptype_mask); 360099a2dd95SBruce Richardson 360199a2dd95SBruce Richardson ptype_unknown: 360299a2dd95SBruce Richardson if (num > 0) 360399a2dd95SBruce Richardson set_ptypes[0] = RTE_PTYPE_UNKNOWN; 360499a2dd95SBruce Richardson 360599a2dd95SBruce Richardson return ret; 360699a2dd95SBruce Richardson } 360799a2dd95SBruce Richardson 360899a2dd95SBruce Richardson int 360927a300e6SKonstantin Ananyev rte_eth_macaddrs_get(uint16_t port_id, struct rte_ether_addr *ma, 361027a300e6SKonstantin Ananyev unsigned int num) 361127a300e6SKonstantin Ananyev { 361227a300e6SKonstantin Ananyev int32_t ret; 361327a300e6SKonstantin Ananyev struct rte_eth_dev *dev; 361427a300e6SKonstantin Ananyev struct rte_eth_dev_info dev_info; 361527a300e6SKonstantin Ananyev 361627a300e6SKonstantin Ananyev if (ma == NULL) { 361727a300e6SKonstantin Ananyev RTE_ETHDEV_LOG(ERR, "%s: invalid parameters\n", __func__); 361827a300e6SKonstantin Ananyev return -EINVAL; 361927a300e6SKonstantin Ananyev } 362027a300e6SKonstantin Ananyev 362127a300e6SKonstantin Ananyev /* will check for us that port_id is a valid one */ 362227a300e6SKonstantin Ananyev ret = rte_eth_dev_info_get(port_id, &dev_info); 362327a300e6SKonstantin Ananyev if (ret != 0) 362427a300e6SKonstantin Ananyev return ret; 362527a300e6SKonstantin Ananyev 362627a300e6SKonstantin Ananyev dev = &rte_eth_devices[port_id]; 362727a300e6SKonstantin Ananyev num = RTE_MIN(dev_info.max_mac_addrs, num); 362827a300e6SKonstantin Ananyev memcpy(ma, dev->data->mac_addrs, num * sizeof(ma[0])); 362927a300e6SKonstantin Ananyev 363027a300e6SKonstantin Ananyev return num; 363127a300e6SKonstantin Ananyev } 363227a300e6SKonstantin Ananyev 363327a300e6SKonstantin Ananyev int 363499a2dd95SBruce Richardson rte_eth_macaddr_get(uint16_t port_id, struct rte_ether_addr *mac_addr) 363599a2dd95SBruce Richardson { 363699a2dd95SBruce Richardson struct rte_eth_dev *dev; 363799a2dd95SBruce Richardson 363899a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 363999a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 364053ef1b34SMin Hu (Connor) 364153ef1b34SMin Hu (Connor) if (mac_addr == NULL) { 364253ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 364353ef1b34SMin Hu (Connor) "Cannot get ethdev port %u MAC address to NULL\n", 364453ef1b34SMin Hu (Connor) port_id); 364553ef1b34SMin Hu (Connor) return -EINVAL; 364653ef1b34SMin Hu (Connor) } 364753ef1b34SMin Hu (Connor) 364899a2dd95SBruce Richardson rte_ether_addr_copy(&dev->data->mac_addrs[0], mac_addr); 364999a2dd95SBruce Richardson 365099a2dd95SBruce Richardson return 0; 365199a2dd95SBruce Richardson } 365299a2dd95SBruce Richardson 365399a2dd95SBruce Richardson int 365499a2dd95SBruce Richardson rte_eth_dev_get_mtu(uint16_t port_id, uint16_t *mtu) 365599a2dd95SBruce Richardson { 365699a2dd95SBruce Richardson struct rte_eth_dev *dev; 365799a2dd95SBruce Richardson 365899a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 365999a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 366053ef1b34SMin Hu (Connor) 366153ef1b34SMin Hu (Connor) if (mtu == NULL) { 366253ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u MTU to NULL\n", 366353ef1b34SMin Hu (Connor) port_id); 366453ef1b34SMin Hu (Connor) return -EINVAL; 366553ef1b34SMin Hu (Connor) } 366653ef1b34SMin Hu (Connor) 366799a2dd95SBruce Richardson *mtu = dev->data->mtu; 366899a2dd95SBruce Richardson return 0; 366999a2dd95SBruce Richardson } 367099a2dd95SBruce Richardson 367199a2dd95SBruce Richardson int 367299a2dd95SBruce Richardson rte_eth_dev_set_mtu(uint16_t port_id, uint16_t mtu) 367399a2dd95SBruce Richardson { 367499a2dd95SBruce Richardson int ret; 367599a2dd95SBruce Richardson struct rte_eth_dev_info dev_info; 367699a2dd95SBruce Richardson struct rte_eth_dev *dev; 367799a2dd95SBruce Richardson 367899a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 367999a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 368099a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mtu_set, -ENOTSUP); 368199a2dd95SBruce Richardson 368299a2dd95SBruce Richardson /* 368399a2dd95SBruce Richardson * Check if the device supports dev_infos_get, if it does not 368499a2dd95SBruce Richardson * skip min_mtu/max_mtu validation here as this requires values 368599a2dd95SBruce Richardson * that are populated within the call to rte_eth_dev_info_get() 368699a2dd95SBruce Richardson * which relies on dev->dev_ops->dev_infos_get. 368799a2dd95SBruce Richardson */ 368899a2dd95SBruce Richardson if (*dev->dev_ops->dev_infos_get != NULL) { 368999a2dd95SBruce Richardson ret = rte_eth_dev_info_get(port_id, &dev_info); 369099a2dd95SBruce Richardson if (ret != 0) 369199a2dd95SBruce Richardson return ret; 369299a2dd95SBruce Richardson 3693990912e6SFerruh Yigit ret = eth_dev_validate_mtu(port_id, &dev_info, mtu); 3694990912e6SFerruh Yigit if (ret != 0) 3695990912e6SFerruh Yigit return ret; 369699a2dd95SBruce Richardson } 369799a2dd95SBruce Richardson 369899a2dd95SBruce Richardson ret = (*dev->dev_ops->mtu_set)(dev, mtu); 3699b563c142SFerruh Yigit if (ret == 0) 370099a2dd95SBruce Richardson dev->data->mtu = mtu; 370199a2dd95SBruce Richardson 370299a2dd95SBruce Richardson return eth_err(port_id, ret); 370399a2dd95SBruce Richardson } 370499a2dd95SBruce Richardson 370599a2dd95SBruce Richardson int 370699a2dd95SBruce Richardson rte_eth_dev_vlan_filter(uint16_t port_id, uint16_t vlan_id, int on) 370799a2dd95SBruce Richardson { 370899a2dd95SBruce Richardson struct rte_eth_dev *dev; 370999a2dd95SBruce Richardson int ret; 371099a2dd95SBruce Richardson 371199a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 371299a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 371353ef1b34SMin Hu (Connor) 371499a2dd95SBruce Richardson if (!(dev->data->dev_conf.rxmode.offloads & 371599a2dd95SBruce Richardson DEV_RX_OFFLOAD_VLAN_FILTER)) { 371699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Port %u: vlan-filtering disabled\n", 371799a2dd95SBruce Richardson port_id); 371899a2dd95SBruce Richardson return -ENOSYS; 371999a2dd95SBruce Richardson } 372099a2dd95SBruce Richardson 372199a2dd95SBruce Richardson if (vlan_id > 4095) { 372299a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Port_id=%u invalid vlan_id=%u > 4095\n", 372399a2dd95SBruce Richardson port_id, vlan_id); 372499a2dd95SBruce Richardson return -EINVAL; 372599a2dd95SBruce Richardson } 372699a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_filter_set, -ENOTSUP); 372799a2dd95SBruce Richardson 372899a2dd95SBruce Richardson ret = (*dev->dev_ops->vlan_filter_set)(dev, vlan_id, on); 372999a2dd95SBruce Richardson if (ret == 0) { 373099a2dd95SBruce Richardson struct rte_vlan_filter_conf *vfc; 373199a2dd95SBruce Richardson int vidx; 373299a2dd95SBruce Richardson int vbit; 373399a2dd95SBruce Richardson 373499a2dd95SBruce Richardson vfc = &dev->data->vlan_filter_conf; 373599a2dd95SBruce Richardson vidx = vlan_id / 64; 373699a2dd95SBruce Richardson vbit = vlan_id % 64; 373799a2dd95SBruce Richardson 373899a2dd95SBruce Richardson if (on) 373999a2dd95SBruce Richardson vfc->ids[vidx] |= UINT64_C(1) << vbit; 374099a2dd95SBruce Richardson else 374199a2dd95SBruce Richardson vfc->ids[vidx] &= ~(UINT64_C(1) << vbit); 374299a2dd95SBruce Richardson } 374399a2dd95SBruce Richardson 374499a2dd95SBruce Richardson return eth_err(port_id, ret); 374599a2dd95SBruce Richardson } 374699a2dd95SBruce Richardson 374799a2dd95SBruce Richardson int 374899a2dd95SBruce Richardson rte_eth_dev_set_vlan_strip_on_queue(uint16_t port_id, uint16_t rx_queue_id, 374999a2dd95SBruce Richardson int on) 375099a2dd95SBruce Richardson { 375199a2dd95SBruce Richardson struct rte_eth_dev *dev; 375299a2dd95SBruce Richardson 375399a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 375499a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 375553ef1b34SMin Hu (Connor) 375699a2dd95SBruce Richardson if (rx_queue_id >= dev->data->nb_rx_queues) { 375799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid rx_queue_id=%u\n", rx_queue_id); 375899a2dd95SBruce Richardson return -EINVAL; 375999a2dd95SBruce Richardson } 376099a2dd95SBruce Richardson 376199a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_strip_queue_set, -ENOTSUP); 376299a2dd95SBruce Richardson (*dev->dev_ops->vlan_strip_queue_set)(dev, rx_queue_id, on); 376399a2dd95SBruce Richardson 376499a2dd95SBruce Richardson return 0; 376599a2dd95SBruce Richardson } 376699a2dd95SBruce Richardson 376799a2dd95SBruce Richardson int 376899a2dd95SBruce Richardson rte_eth_dev_set_vlan_ether_type(uint16_t port_id, 376999a2dd95SBruce Richardson enum rte_vlan_type vlan_type, 377099a2dd95SBruce Richardson uint16_t tpid) 377199a2dd95SBruce Richardson { 377299a2dd95SBruce Richardson struct rte_eth_dev *dev; 377399a2dd95SBruce Richardson 377499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 377599a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 377699a2dd95SBruce Richardson 377753ef1b34SMin Hu (Connor) RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_tpid_set, -ENOTSUP); 377899a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->vlan_tpid_set)(dev, vlan_type, 377999a2dd95SBruce Richardson tpid)); 378099a2dd95SBruce Richardson } 378199a2dd95SBruce Richardson 378299a2dd95SBruce Richardson int 378399a2dd95SBruce Richardson rte_eth_dev_set_vlan_offload(uint16_t port_id, int offload_mask) 378499a2dd95SBruce Richardson { 378599a2dd95SBruce Richardson struct rte_eth_dev_info dev_info; 378699a2dd95SBruce Richardson struct rte_eth_dev *dev; 378799a2dd95SBruce Richardson int ret = 0; 378899a2dd95SBruce Richardson int mask = 0; 378999a2dd95SBruce Richardson int cur, org = 0; 379099a2dd95SBruce Richardson uint64_t orig_offloads; 379199a2dd95SBruce Richardson uint64_t dev_offloads; 379299a2dd95SBruce Richardson uint64_t new_offloads; 379399a2dd95SBruce Richardson 379499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 379599a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 379699a2dd95SBruce Richardson 379799a2dd95SBruce Richardson /* save original values in case of failure */ 379899a2dd95SBruce Richardson orig_offloads = dev->data->dev_conf.rxmode.offloads; 379999a2dd95SBruce Richardson dev_offloads = orig_offloads; 380099a2dd95SBruce Richardson 380199a2dd95SBruce Richardson /* check which option changed by application */ 380299a2dd95SBruce Richardson cur = !!(offload_mask & ETH_VLAN_STRIP_OFFLOAD); 380399a2dd95SBruce Richardson org = !!(dev_offloads & DEV_RX_OFFLOAD_VLAN_STRIP); 380499a2dd95SBruce Richardson if (cur != org) { 380599a2dd95SBruce Richardson if (cur) 380699a2dd95SBruce Richardson dev_offloads |= DEV_RX_OFFLOAD_VLAN_STRIP; 380799a2dd95SBruce Richardson else 380899a2dd95SBruce Richardson dev_offloads &= ~DEV_RX_OFFLOAD_VLAN_STRIP; 380999a2dd95SBruce Richardson mask |= ETH_VLAN_STRIP_MASK; 381099a2dd95SBruce Richardson } 381199a2dd95SBruce Richardson 381299a2dd95SBruce Richardson cur = !!(offload_mask & ETH_VLAN_FILTER_OFFLOAD); 381399a2dd95SBruce Richardson org = !!(dev_offloads & DEV_RX_OFFLOAD_VLAN_FILTER); 381499a2dd95SBruce Richardson if (cur != org) { 381599a2dd95SBruce Richardson if (cur) 381699a2dd95SBruce Richardson dev_offloads |= DEV_RX_OFFLOAD_VLAN_FILTER; 381799a2dd95SBruce Richardson else 381899a2dd95SBruce Richardson dev_offloads &= ~DEV_RX_OFFLOAD_VLAN_FILTER; 381999a2dd95SBruce Richardson mask |= ETH_VLAN_FILTER_MASK; 382099a2dd95SBruce Richardson } 382199a2dd95SBruce Richardson 382299a2dd95SBruce Richardson cur = !!(offload_mask & ETH_VLAN_EXTEND_OFFLOAD); 382399a2dd95SBruce Richardson org = !!(dev_offloads & DEV_RX_OFFLOAD_VLAN_EXTEND); 382499a2dd95SBruce Richardson if (cur != org) { 382599a2dd95SBruce Richardson if (cur) 382699a2dd95SBruce Richardson dev_offloads |= DEV_RX_OFFLOAD_VLAN_EXTEND; 382799a2dd95SBruce Richardson else 382899a2dd95SBruce Richardson dev_offloads &= ~DEV_RX_OFFLOAD_VLAN_EXTEND; 382999a2dd95SBruce Richardson mask |= ETH_VLAN_EXTEND_MASK; 383099a2dd95SBruce Richardson } 383199a2dd95SBruce Richardson 383299a2dd95SBruce Richardson cur = !!(offload_mask & ETH_QINQ_STRIP_OFFLOAD); 383399a2dd95SBruce Richardson org = !!(dev_offloads & DEV_RX_OFFLOAD_QINQ_STRIP); 383499a2dd95SBruce Richardson if (cur != org) { 383599a2dd95SBruce Richardson if (cur) 383699a2dd95SBruce Richardson dev_offloads |= DEV_RX_OFFLOAD_QINQ_STRIP; 383799a2dd95SBruce Richardson else 383899a2dd95SBruce Richardson dev_offloads &= ~DEV_RX_OFFLOAD_QINQ_STRIP; 383999a2dd95SBruce Richardson mask |= ETH_QINQ_STRIP_MASK; 384099a2dd95SBruce Richardson } 384199a2dd95SBruce Richardson 384299a2dd95SBruce Richardson /*no change*/ 384399a2dd95SBruce Richardson if (mask == 0) 384499a2dd95SBruce Richardson return ret; 384599a2dd95SBruce Richardson 384699a2dd95SBruce Richardson ret = rte_eth_dev_info_get(port_id, &dev_info); 384799a2dd95SBruce Richardson if (ret != 0) 384899a2dd95SBruce Richardson return ret; 384999a2dd95SBruce Richardson 385099a2dd95SBruce Richardson /* Rx VLAN offloading must be within its device capabilities */ 385199a2dd95SBruce Richardson if ((dev_offloads & dev_info.rx_offload_capa) != dev_offloads) { 385299a2dd95SBruce Richardson new_offloads = dev_offloads & ~orig_offloads; 385399a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 385499a2dd95SBruce Richardson "Ethdev port_id=%u requested new added VLAN offloads " 385599a2dd95SBruce Richardson "0x%" PRIx64 " must be within Rx offloads capabilities " 385699a2dd95SBruce Richardson "0x%" PRIx64 " in %s()\n", 385799a2dd95SBruce Richardson port_id, new_offloads, dev_info.rx_offload_capa, 385899a2dd95SBruce Richardson __func__); 385999a2dd95SBruce Richardson return -EINVAL; 386099a2dd95SBruce Richardson } 386199a2dd95SBruce Richardson 386299a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_offload_set, -ENOTSUP); 386399a2dd95SBruce Richardson dev->data->dev_conf.rxmode.offloads = dev_offloads; 386499a2dd95SBruce Richardson ret = (*dev->dev_ops->vlan_offload_set)(dev, mask); 386599a2dd95SBruce Richardson if (ret) { 386699a2dd95SBruce Richardson /* hit an error restore original values */ 386799a2dd95SBruce Richardson dev->data->dev_conf.rxmode.offloads = orig_offloads; 386899a2dd95SBruce Richardson } 386999a2dd95SBruce Richardson 387099a2dd95SBruce Richardson return eth_err(port_id, ret); 387199a2dd95SBruce Richardson } 387299a2dd95SBruce Richardson 387399a2dd95SBruce Richardson int 387499a2dd95SBruce Richardson rte_eth_dev_get_vlan_offload(uint16_t port_id) 387599a2dd95SBruce Richardson { 387699a2dd95SBruce Richardson struct rte_eth_dev *dev; 387799a2dd95SBruce Richardson uint64_t *dev_offloads; 387899a2dd95SBruce Richardson int ret = 0; 387999a2dd95SBruce Richardson 388099a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 388199a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 388299a2dd95SBruce Richardson dev_offloads = &dev->data->dev_conf.rxmode.offloads; 388399a2dd95SBruce Richardson 388499a2dd95SBruce Richardson if (*dev_offloads & DEV_RX_OFFLOAD_VLAN_STRIP) 388599a2dd95SBruce Richardson ret |= ETH_VLAN_STRIP_OFFLOAD; 388699a2dd95SBruce Richardson 388799a2dd95SBruce Richardson if (*dev_offloads & DEV_RX_OFFLOAD_VLAN_FILTER) 388899a2dd95SBruce Richardson ret |= ETH_VLAN_FILTER_OFFLOAD; 388999a2dd95SBruce Richardson 389099a2dd95SBruce Richardson if (*dev_offloads & DEV_RX_OFFLOAD_VLAN_EXTEND) 389199a2dd95SBruce Richardson ret |= ETH_VLAN_EXTEND_OFFLOAD; 389299a2dd95SBruce Richardson 389399a2dd95SBruce Richardson if (*dev_offloads & DEV_RX_OFFLOAD_QINQ_STRIP) 389499a2dd95SBruce Richardson ret |= ETH_QINQ_STRIP_OFFLOAD; 389599a2dd95SBruce Richardson 389699a2dd95SBruce Richardson return ret; 389799a2dd95SBruce Richardson } 389899a2dd95SBruce Richardson 389999a2dd95SBruce Richardson int 390099a2dd95SBruce Richardson rte_eth_dev_set_vlan_pvid(uint16_t port_id, uint16_t pvid, int on) 390199a2dd95SBruce Richardson { 390299a2dd95SBruce Richardson struct rte_eth_dev *dev; 390399a2dd95SBruce Richardson 390499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 390599a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 390699a2dd95SBruce Richardson 390753ef1b34SMin Hu (Connor) RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->vlan_pvid_set, -ENOTSUP); 390899a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->vlan_pvid_set)(dev, pvid, on)); 390999a2dd95SBruce Richardson } 391099a2dd95SBruce Richardson 391199a2dd95SBruce Richardson int 391299a2dd95SBruce Richardson rte_eth_dev_flow_ctrl_get(uint16_t port_id, struct rte_eth_fc_conf *fc_conf) 391399a2dd95SBruce Richardson { 391499a2dd95SBruce Richardson struct rte_eth_dev *dev; 391599a2dd95SBruce Richardson 391699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 391799a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 391853ef1b34SMin Hu (Connor) 391953ef1b34SMin Hu (Connor) if (fc_conf == NULL) { 392053ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 392153ef1b34SMin Hu (Connor) "Cannot get ethdev port %u flow control config to NULL\n", 392253ef1b34SMin Hu (Connor) port_id); 392353ef1b34SMin Hu (Connor) return -EINVAL; 392453ef1b34SMin Hu (Connor) } 392553ef1b34SMin Hu (Connor) 392699a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->flow_ctrl_get, -ENOTSUP); 392799a2dd95SBruce Richardson memset(fc_conf, 0, sizeof(*fc_conf)); 392899a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->flow_ctrl_get)(dev, fc_conf)); 392999a2dd95SBruce Richardson } 393099a2dd95SBruce Richardson 393199a2dd95SBruce Richardson int 393299a2dd95SBruce Richardson rte_eth_dev_flow_ctrl_set(uint16_t port_id, struct rte_eth_fc_conf *fc_conf) 393399a2dd95SBruce Richardson { 393499a2dd95SBruce Richardson struct rte_eth_dev *dev; 393599a2dd95SBruce Richardson 393699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 393753ef1b34SMin Hu (Connor) dev = &rte_eth_devices[port_id]; 393853ef1b34SMin Hu (Connor) 393953ef1b34SMin Hu (Connor) if (fc_conf == NULL) { 394053ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 394153ef1b34SMin Hu (Connor) "Cannot set ethdev port %u flow control from NULL config\n", 394253ef1b34SMin Hu (Connor) port_id); 394353ef1b34SMin Hu (Connor) return -EINVAL; 394453ef1b34SMin Hu (Connor) } 394553ef1b34SMin Hu (Connor) 394699a2dd95SBruce Richardson if ((fc_conf->send_xon != 0) && (fc_conf->send_xon != 1)) { 394799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid send_xon, only 0/1 allowed\n"); 394899a2dd95SBruce Richardson return -EINVAL; 394999a2dd95SBruce Richardson } 395099a2dd95SBruce Richardson 395199a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->flow_ctrl_set, -ENOTSUP); 395299a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->flow_ctrl_set)(dev, fc_conf)); 395399a2dd95SBruce Richardson } 395499a2dd95SBruce Richardson 395599a2dd95SBruce Richardson int 395699a2dd95SBruce Richardson rte_eth_dev_priority_flow_ctrl_set(uint16_t port_id, 395799a2dd95SBruce Richardson struct rte_eth_pfc_conf *pfc_conf) 395899a2dd95SBruce Richardson { 395999a2dd95SBruce Richardson struct rte_eth_dev *dev; 396099a2dd95SBruce Richardson 396199a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 396253ef1b34SMin Hu (Connor) dev = &rte_eth_devices[port_id]; 396353ef1b34SMin Hu (Connor) 396453ef1b34SMin Hu (Connor) if (pfc_conf == NULL) { 396553ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 396653ef1b34SMin Hu (Connor) "Cannot set ethdev port %u priority flow control from NULL config\n", 396753ef1b34SMin Hu (Connor) port_id); 396853ef1b34SMin Hu (Connor) return -EINVAL; 396953ef1b34SMin Hu (Connor) } 397053ef1b34SMin Hu (Connor) 397199a2dd95SBruce Richardson if (pfc_conf->priority > (ETH_DCB_NUM_USER_PRIORITIES - 1)) { 397299a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid priority, only 0-7 allowed\n"); 397399a2dd95SBruce Richardson return -EINVAL; 397499a2dd95SBruce Richardson } 397599a2dd95SBruce Richardson 397699a2dd95SBruce Richardson /* High water, low water validation are device specific */ 397799a2dd95SBruce Richardson if (*dev->dev_ops->priority_flow_ctrl_set) 397899a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->priority_flow_ctrl_set) 397999a2dd95SBruce Richardson (dev, pfc_conf)); 398099a2dd95SBruce Richardson return -ENOTSUP; 398199a2dd95SBruce Richardson } 398299a2dd95SBruce Richardson 398399a2dd95SBruce Richardson static int 398499a2dd95SBruce Richardson eth_check_reta_mask(struct rte_eth_rss_reta_entry64 *reta_conf, 398599a2dd95SBruce Richardson uint16_t reta_size) 398699a2dd95SBruce Richardson { 398799a2dd95SBruce Richardson uint16_t i, num; 398899a2dd95SBruce Richardson 398999a2dd95SBruce Richardson num = (reta_size + RTE_RETA_GROUP_SIZE - 1) / RTE_RETA_GROUP_SIZE; 399099a2dd95SBruce Richardson for (i = 0; i < num; i++) { 399199a2dd95SBruce Richardson if (reta_conf[i].mask) 399299a2dd95SBruce Richardson return 0; 399399a2dd95SBruce Richardson } 399499a2dd95SBruce Richardson 399599a2dd95SBruce Richardson return -EINVAL; 399699a2dd95SBruce Richardson } 399799a2dd95SBruce Richardson 399899a2dd95SBruce Richardson static int 399999a2dd95SBruce Richardson eth_check_reta_entry(struct rte_eth_rss_reta_entry64 *reta_conf, 400099a2dd95SBruce Richardson uint16_t reta_size, 400199a2dd95SBruce Richardson uint16_t max_rxq) 400299a2dd95SBruce Richardson { 400399a2dd95SBruce Richardson uint16_t i, idx, shift; 400499a2dd95SBruce Richardson 400599a2dd95SBruce Richardson if (max_rxq == 0) { 400699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "No receive queue is available\n"); 400799a2dd95SBruce Richardson return -EINVAL; 400899a2dd95SBruce Richardson } 400999a2dd95SBruce Richardson 401099a2dd95SBruce Richardson for (i = 0; i < reta_size; i++) { 401199a2dd95SBruce Richardson idx = i / RTE_RETA_GROUP_SIZE; 401299a2dd95SBruce Richardson shift = i % RTE_RETA_GROUP_SIZE; 401399a2dd95SBruce Richardson if ((reta_conf[idx].mask & (1ULL << shift)) && 401499a2dd95SBruce Richardson (reta_conf[idx].reta[shift] >= max_rxq)) { 401599a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 401699a2dd95SBruce Richardson "reta_conf[%u]->reta[%u]: %u exceeds the maximum rxq index: %u\n", 401799a2dd95SBruce Richardson idx, shift, 401899a2dd95SBruce Richardson reta_conf[idx].reta[shift], max_rxq); 401999a2dd95SBruce Richardson return -EINVAL; 402099a2dd95SBruce Richardson } 402199a2dd95SBruce Richardson } 402299a2dd95SBruce Richardson 402399a2dd95SBruce Richardson return 0; 402499a2dd95SBruce Richardson } 402599a2dd95SBruce Richardson 402699a2dd95SBruce Richardson int 402799a2dd95SBruce Richardson rte_eth_dev_rss_reta_update(uint16_t port_id, 402899a2dd95SBruce Richardson struct rte_eth_rss_reta_entry64 *reta_conf, 402999a2dd95SBruce Richardson uint16_t reta_size) 403099a2dd95SBruce Richardson { 403199a2dd95SBruce Richardson struct rte_eth_dev *dev; 403299a2dd95SBruce Richardson int ret; 403399a2dd95SBruce Richardson 403499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 403553ef1b34SMin Hu (Connor) dev = &rte_eth_devices[port_id]; 403653ef1b34SMin Hu (Connor) 403753ef1b34SMin Hu (Connor) if (reta_conf == NULL) { 403853ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 403953ef1b34SMin Hu (Connor) "Cannot update ethdev port %u RSS RETA to NULL\n", 404053ef1b34SMin Hu (Connor) port_id); 404153ef1b34SMin Hu (Connor) return -EINVAL; 404253ef1b34SMin Hu (Connor) } 404353ef1b34SMin Hu (Connor) 404453ef1b34SMin Hu (Connor) if (reta_size == 0) { 404553ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 404653ef1b34SMin Hu (Connor) "Cannot update ethdev port %u RSS RETA with zero size\n", 404753ef1b34SMin Hu (Connor) port_id); 404853ef1b34SMin Hu (Connor) return -EINVAL; 404953ef1b34SMin Hu (Connor) } 405053ef1b34SMin Hu (Connor) 405199a2dd95SBruce Richardson /* Check mask bits */ 405299a2dd95SBruce Richardson ret = eth_check_reta_mask(reta_conf, reta_size); 405399a2dd95SBruce Richardson if (ret < 0) 405499a2dd95SBruce Richardson return ret; 405599a2dd95SBruce Richardson 405699a2dd95SBruce Richardson /* Check entry value */ 405799a2dd95SBruce Richardson ret = eth_check_reta_entry(reta_conf, reta_size, 405899a2dd95SBruce Richardson dev->data->nb_rx_queues); 405999a2dd95SBruce Richardson if (ret < 0) 406099a2dd95SBruce Richardson return ret; 406199a2dd95SBruce Richardson 406299a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->reta_update, -ENOTSUP); 406399a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->reta_update)(dev, reta_conf, 406499a2dd95SBruce Richardson reta_size)); 406599a2dd95SBruce Richardson } 406699a2dd95SBruce Richardson 406799a2dd95SBruce Richardson int 406899a2dd95SBruce Richardson rte_eth_dev_rss_reta_query(uint16_t port_id, 406999a2dd95SBruce Richardson struct rte_eth_rss_reta_entry64 *reta_conf, 407099a2dd95SBruce Richardson uint16_t reta_size) 407199a2dd95SBruce Richardson { 407299a2dd95SBruce Richardson struct rte_eth_dev *dev; 407399a2dd95SBruce Richardson int ret; 407499a2dd95SBruce Richardson 407599a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 407653ef1b34SMin Hu (Connor) dev = &rte_eth_devices[port_id]; 407753ef1b34SMin Hu (Connor) 407853ef1b34SMin Hu (Connor) if (reta_conf == NULL) { 407953ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 408053ef1b34SMin Hu (Connor) "Cannot query ethdev port %u RSS RETA from NULL config\n", 408153ef1b34SMin Hu (Connor) port_id); 408253ef1b34SMin Hu (Connor) return -EINVAL; 408353ef1b34SMin Hu (Connor) } 408499a2dd95SBruce Richardson 408599a2dd95SBruce Richardson /* Check mask bits */ 408699a2dd95SBruce Richardson ret = eth_check_reta_mask(reta_conf, reta_size); 408799a2dd95SBruce Richardson if (ret < 0) 408899a2dd95SBruce Richardson return ret; 408999a2dd95SBruce Richardson 409099a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->reta_query, -ENOTSUP); 409199a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->reta_query)(dev, reta_conf, 409299a2dd95SBruce Richardson reta_size)); 409399a2dd95SBruce Richardson } 409499a2dd95SBruce Richardson 409599a2dd95SBruce Richardson int 409699a2dd95SBruce Richardson rte_eth_dev_rss_hash_update(uint16_t port_id, 409799a2dd95SBruce Richardson struct rte_eth_rss_conf *rss_conf) 409899a2dd95SBruce Richardson { 409999a2dd95SBruce Richardson struct rte_eth_dev *dev; 410099a2dd95SBruce Richardson struct rte_eth_dev_info dev_info = { .flow_type_rss_offloads = 0, }; 410199a2dd95SBruce Richardson int ret; 410299a2dd95SBruce Richardson 410399a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 410453ef1b34SMin Hu (Connor) dev = &rte_eth_devices[port_id]; 410553ef1b34SMin Hu (Connor) 410653ef1b34SMin Hu (Connor) if (rss_conf == NULL) { 410753ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 410853ef1b34SMin Hu (Connor) "Cannot update ethdev port %u RSS hash from NULL config\n", 410953ef1b34SMin Hu (Connor) port_id); 411053ef1b34SMin Hu (Connor) return -EINVAL; 411153ef1b34SMin Hu (Connor) } 411299a2dd95SBruce Richardson 411399a2dd95SBruce Richardson ret = rte_eth_dev_info_get(port_id, &dev_info); 411499a2dd95SBruce Richardson if (ret != 0) 411599a2dd95SBruce Richardson return ret; 411699a2dd95SBruce Richardson 411799a2dd95SBruce Richardson rss_conf->rss_hf = rte_eth_rss_hf_refine(rss_conf->rss_hf); 411899a2dd95SBruce Richardson if ((dev_info.flow_type_rss_offloads | rss_conf->rss_hf) != 411999a2dd95SBruce Richardson dev_info.flow_type_rss_offloads) { 412099a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 412199a2dd95SBruce Richardson "Ethdev port_id=%u invalid rss_hf: 0x%"PRIx64", valid value: 0x%"PRIx64"\n", 412299a2dd95SBruce Richardson port_id, rss_conf->rss_hf, 412399a2dd95SBruce Richardson dev_info.flow_type_rss_offloads); 412499a2dd95SBruce Richardson return -EINVAL; 412599a2dd95SBruce Richardson } 412699a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rss_hash_update, -ENOTSUP); 412799a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->rss_hash_update)(dev, 412899a2dd95SBruce Richardson rss_conf)); 412999a2dd95SBruce Richardson } 413099a2dd95SBruce Richardson 413199a2dd95SBruce Richardson int 413299a2dd95SBruce Richardson rte_eth_dev_rss_hash_conf_get(uint16_t port_id, 413399a2dd95SBruce Richardson struct rte_eth_rss_conf *rss_conf) 413499a2dd95SBruce Richardson { 413599a2dd95SBruce Richardson struct rte_eth_dev *dev; 413699a2dd95SBruce Richardson 413799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 413899a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 413953ef1b34SMin Hu (Connor) 414053ef1b34SMin Hu (Connor) if (rss_conf == NULL) { 414153ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 414253ef1b34SMin Hu (Connor) "Cannot get ethdev port %u RSS hash config to NULL\n", 414353ef1b34SMin Hu (Connor) port_id); 414453ef1b34SMin Hu (Connor) return -EINVAL; 414553ef1b34SMin Hu (Connor) } 414653ef1b34SMin Hu (Connor) 414799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rss_hash_conf_get, -ENOTSUP); 414899a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->rss_hash_conf_get)(dev, 414999a2dd95SBruce Richardson rss_conf)); 415099a2dd95SBruce Richardson } 415199a2dd95SBruce Richardson 415299a2dd95SBruce Richardson int 415399a2dd95SBruce Richardson rte_eth_dev_udp_tunnel_port_add(uint16_t port_id, 415499a2dd95SBruce Richardson struct rte_eth_udp_tunnel *udp_tunnel) 415599a2dd95SBruce Richardson { 415699a2dd95SBruce Richardson struct rte_eth_dev *dev; 415799a2dd95SBruce Richardson 415899a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 415953ef1b34SMin Hu (Connor) dev = &rte_eth_devices[port_id]; 416053ef1b34SMin Hu (Connor) 416199a2dd95SBruce Richardson if (udp_tunnel == NULL) { 416253ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 416353ef1b34SMin Hu (Connor) "Cannot add ethdev port %u UDP tunnel port from NULL UDP tunnel\n", 416453ef1b34SMin Hu (Connor) port_id); 416599a2dd95SBruce Richardson return -EINVAL; 416699a2dd95SBruce Richardson } 416799a2dd95SBruce Richardson 416899a2dd95SBruce Richardson if (udp_tunnel->prot_type >= RTE_TUNNEL_TYPE_MAX) { 416999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid tunnel type\n"); 417099a2dd95SBruce Richardson return -EINVAL; 417199a2dd95SBruce Richardson } 417299a2dd95SBruce Richardson 417399a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->udp_tunnel_port_add, -ENOTSUP); 417499a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->udp_tunnel_port_add)(dev, 417599a2dd95SBruce Richardson udp_tunnel)); 417699a2dd95SBruce Richardson } 417799a2dd95SBruce Richardson 417899a2dd95SBruce Richardson int 417999a2dd95SBruce Richardson rte_eth_dev_udp_tunnel_port_delete(uint16_t port_id, 418099a2dd95SBruce Richardson struct rte_eth_udp_tunnel *udp_tunnel) 418199a2dd95SBruce Richardson { 418299a2dd95SBruce Richardson struct rte_eth_dev *dev; 418399a2dd95SBruce Richardson 418499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 418599a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 418699a2dd95SBruce Richardson 418799a2dd95SBruce Richardson if (udp_tunnel == NULL) { 418853ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 418953ef1b34SMin Hu (Connor) "Cannot delete ethdev port %u UDP tunnel port from NULL UDP tunnel\n", 419053ef1b34SMin Hu (Connor) port_id); 419199a2dd95SBruce Richardson return -EINVAL; 419299a2dd95SBruce Richardson } 419399a2dd95SBruce Richardson 419499a2dd95SBruce Richardson if (udp_tunnel->prot_type >= RTE_TUNNEL_TYPE_MAX) { 419599a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid tunnel type\n"); 419699a2dd95SBruce Richardson return -EINVAL; 419799a2dd95SBruce Richardson } 419899a2dd95SBruce Richardson 419999a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->udp_tunnel_port_del, -ENOTSUP); 420099a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->udp_tunnel_port_del)(dev, 420199a2dd95SBruce Richardson udp_tunnel)); 420299a2dd95SBruce Richardson } 420399a2dd95SBruce Richardson 420499a2dd95SBruce Richardson int 420599a2dd95SBruce Richardson rte_eth_led_on(uint16_t port_id) 420699a2dd95SBruce Richardson { 420799a2dd95SBruce Richardson struct rte_eth_dev *dev; 420899a2dd95SBruce Richardson 420999a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 421099a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 421153ef1b34SMin Hu (Connor) 421299a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_led_on, -ENOTSUP); 421399a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->dev_led_on)(dev)); 421499a2dd95SBruce Richardson } 421599a2dd95SBruce Richardson 421699a2dd95SBruce Richardson int 421799a2dd95SBruce Richardson rte_eth_led_off(uint16_t port_id) 421899a2dd95SBruce Richardson { 421999a2dd95SBruce Richardson struct rte_eth_dev *dev; 422099a2dd95SBruce Richardson 422199a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 422299a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 422353ef1b34SMin Hu (Connor) 422499a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->dev_led_off, -ENOTSUP); 422599a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->dev_led_off)(dev)); 422699a2dd95SBruce Richardson } 422799a2dd95SBruce Richardson 422899a2dd95SBruce Richardson int 422999a2dd95SBruce Richardson rte_eth_fec_get_capability(uint16_t port_id, 423099a2dd95SBruce Richardson struct rte_eth_fec_capa *speed_fec_capa, 423199a2dd95SBruce Richardson unsigned int num) 423299a2dd95SBruce Richardson { 423399a2dd95SBruce Richardson struct rte_eth_dev *dev; 423499a2dd95SBruce Richardson int ret; 423599a2dd95SBruce Richardson 423699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 423799a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 423853ef1b34SMin Hu (Connor) 423953ef1b34SMin Hu (Connor) if (speed_fec_capa == NULL && num > 0) { 424053ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 424153ef1b34SMin Hu (Connor) "Cannot get ethdev port %u FEC capability to NULL when array size is non zero\n", 424253ef1b34SMin Hu (Connor) port_id); 424353ef1b34SMin Hu (Connor) return -EINVAL; 424453ef1b34SMin Hu (Connor) } 424553ef1b34SMin Hu (Connor) 424699a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->fec_get_capability, -ENOTSUP); 424799a2dd95SBruce Richardson ret = (*dev->dev_ops->fec_get_capability)(dev, speed_fec_capa, num); 424899a2dd95SBruce Richardson 424999a2dd95SBruce Richardson return ret; 425099a2dd95SBruce Richardson } 425199a2dd95SBruce Richardson 425299a2dd95SBruce Richardson int 425399a2dd95SBruce Richardson rte_eth_fec_get(uint16_t port_id, uint32_t *fec_capa) 425499a2dd95SBruce Richardson { 425599a2dd95SBruce Richardson struct rte_eth_dev *dev; 425699a2dd95SBruce Richardson 425799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 425899a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 425953ef1b34SMin Hu (Connor) 426053ef1b34SMin Hu (Connor) if (fec_capa == NULL) { 426153ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 426253ef1b34SMin Hu (Connor) "Cannot get ethdev port %u current FEC mode to NULL\n", 426353ef1b34SMin Hu (Connor) port_id); 426453ef1b34SMin Hu (Connor) return -EINVAL; 426553ef1b34SMin Hu (Connor) } 426653ef1b34SMin Hu (Connor) 426799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->fec_get, -ENOTSUP); 426899a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->fec_get)(dev, fec_capa)); 426999a2dd95SBruce Richardson } 427099a2dd95SBruce Richardson 427199a2dd95SBruce Richardson int 427299a2dd95SBruce Richardson rte_eth_fec_set(uint16_t port_id, uint32_t fec_capa) 427399a2dd95SBruce Richardson { 427499a2dd95SBruce Richardson struct rte_eth_dev *dev; 427599a2dd95SBruce Richardson 427699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 427799a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 427853ef1b34SMin Hu (Connor) 427999a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->fec_set, -ENOTSUP); 428099a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->fec_set)(dev, fec_capa)); 428199a2dd95SBruce Richardson } 428299a2dd95SBruce Richardson 428399a2dd95SBruce Richardson /* 428499a2dd95SBruce Richardson * Returns index into MAC address array of addr. Use 00:00:00:00:00:00 to find 428599a2dd95SBruce Richardson * an empty spot. 428699a2dd95SBruce Richardson */ 428799a2dd95SBruce Richardson static int 428899a2dd95SBruce Richardson eth_dev_get_mac_addr_index(uint16_t port_id, const struct rte_ether_addr *addr) 428999a2dd95SBruce Richardson { 429099a2dd95SBruce Richardson struct rte_eth_dev_info dev_info; 429199a2dd95SBruce Richardson struct rte_eth_dev *dev = &rte_eth_devices[port_id]; 429299a2dd95SBruce Richardson unsigned i; 429399a2dd95SBruce Richardson int ret; 429499a2dd95SBruce Richardson 429599a2dd95SBruce Richardson ret = rte_eth_dev_info_get(port_id, &dev_info); 429699a2dd95SBruce Richardson if (ret != 0) 429799a2dd95SBruce Richardson return -1; 429899a2dd95SBruce Richardson 429999a2dd95SBruce Richardson for (i = 0; i < dev_info.max_mac_addrs; i++) 430099a2dd95SBruce Richardson if (memcmp(addr, &dev->data->mac_addrs[i], 430199a2dd95SBruce Richardson RTE_ETHER_ADDR_LEN) == 0) 430299a2dd95SBruce Richardson return i; 430399a2dd95SBruce Richardson 430499a2dd95SBruce Richardson return -1; 430599a2dd95SBruce Richardson } 430699a2dd95SBruce Richardson 430799a2dd95SBruce Richardson static const struct rte_ether_addr null_mac_addr; 430899a2dd95SBruce Richardson 430999a2dd95SBruce Richardson int 431099a2dd95SBruce Richardson rte_eth_dev_mac_addr_add(uint16_t port_id, struct rte_ether_addr *addr, 431199a2dd95SBruce Richardson uint32_t pool) 431299a2dd95SBruce Richardson { 431399a2dd95SBruce Richardson struct rte_eth_dev *dev; 431499a2dd95SBruce Richardson int index; 431599a2dd95SBruce Richardson uint64_t pool_mask; 431699a2dd95SBruce Richardson int ret; 431799a2dd95SBruce Richardson 431899a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 431999a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 432053ef1b34SMin Hu (Connor) 432153ef1b34SMin Hu (Connor) if (addr == NULL) { 432253ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 432353ef1b34SMin Hu (Connor) "Cannot add ethdev port %u MAC address from NULL address\n", 432453ef1b34SMin Hu (Connor) port_id); 432553ef1b34SMin Hu (Connor) return -EINVAL; 432653ef1b34SMin Hu (Connor) } 432753ef1b34SMin Hu (Connor) 432899a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_add, -ENOTSUP); 432999a2dd95SBruce Richardson 433099a2dd95SBruce Richardson if (rte_is_zero_ether_addr(addr)) { 433199a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Port %u: Cannot add NULL MAC address\n", 433299a2dd95SBruce Richardson port_id); 433399a2dd95SBruce Richardson return -EINVAL; 433499a2dd95SBruce Richardson } 433599a2dd95SBruce Richardson if (pool >= ETH_64_POOLS) { 433699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Pool id must be 0-%d\n", ETH_64_POOLS - 1); 433799a2dd95SBruce Richardson return -EINVAL; 433899a2dd95SBruce Richardson } 433999a2dd95SBruce Richardson 434099a2dd95SBruce Richardson index = eth_dev_get_mac_addr_index(port_id, addr); 434199a2dd95SBruce Richardson if (index < 0) { 434299a2dd95SBruce Richardson index = eth_dev_get_mac_addr_index(port_id, &null_mac_addr); 434399a2dd95SBruce Richardson if (index < 0) { 434499a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Port %u: MAC address array full\n", 434599a2dd95SBruce Richardson port_id); 434699a2dd95SBruce Richardson return -ENOSPC; 434799a2dd95SBruce Richardson } 434899a2dd95SBruce Richardson } else { 434999a2dd95SBruce Richardson pool_mask = dev->data->mac_pool_sel[index]; 435099a2dd95SBruce Richardson 435199a2dd95SBruce Richardson /* Check if both MAC address and pool is already there, and do nothing */ 435299a2dd95SBruce Richardson if (pool_mask & (1ULL << pool)) 435399a2dd95SBruce Richardson return 0; 435499a2dd95SBruce Richardson } 435599a2dd95SBruce Richardson 435699a2dd95SBruce Richardson /* Update NIC */ 435799a2dd95SBruce Richardson ret = (*dev->dev_ops->mac_addr_add)(dev, addr, index, pool); 435899a2dd95SBruce Richardson 435999a2dd95SBruce Richardson if (ret == 0) { 436099a2dd95SBruce Richardson /* Update address in NIC data structure */ 436199a2dd95SBruce Richardson rte_ether_addr_copy(addr, &dev->data->mac_addrs[index]); 436299a2dd95SBruce Richardson 436399a2dd95SBruce Richardson /* Update pool bitmap in NIC data structure */ 436499a2dd95SBruce Richardson dev->data->mac_pool_sel[index] |= (1ULL << pool); 436599a2dd95SBruce Richardson } 436699a2dd95SBruce Richardson 436799a2dd95SBruce Richardson return eth_err(port_id, ret); 436899a2dd95SBruce Richardson } 436999a2dd95SBruce Richardson 437099a2dd95SBruce Richardson int 437199a2dd95SBruce Richardson rte_eth_dev_mac_addr_remove(uint16_t port_id, struct rte_ether_addr *addr) 437299a2dd95SBruce Richardson { 437399a2dd95SBruce Richardson struct rte_eth_dev *dev; 437499a2dd95SBruce Richardson int index; 437599a2dd95SBruce Richardson 437699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 437799a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 437853ef1b34SMin Hu (Connor) 437953ef1b34SMin Hu (Connor) if (addr == NULL) { 438053ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 438153ef1b34SMin Hu (Connor) "Cannot remove ethdev port %u MAC address from NULL address\n", 438253ef1b34SMin Hu (Connor) port_id); 438353ef1b34SMin Hu (Connor) return -EINVAL; 438453ef1b34SMin Hu (Connor) } 438553ef1b34SMin Hu (Connor) 438699a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_remove, -ENOTSUP); 438799a2dd95SBruce Richardson 438899a2dd95SBruce Richardson index = eth_dev_get_mac_addr_index(port_id, addr); 438999a2dd95SBruce Richardson if (index == 0) { 439099a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 439199a2dd95SBruce Richardson "Port %u: Cannot remove default MAC address\n", 439299a2dd95SBruce Richardson port_id); 439399a2dd95SBruce Richardson return -EADDRINUSE; 439499a2dd95SBruce Richardson } else if (index < 0) 439599a2dd95SBruce Richardson return 0; /* Do nothing if address wasn't found */ 439699a2dd95SBruce Richardson 439799a2dd95SBruce Richardson /* Update NIC */ 439899a2dd95SBruce Richardson (*dev->dev_ops->mac_addr_remove)(dev, index); 439999a2dd95SBruce Richardson 440099a2dd95SBruce Richardson /* Update address in NIC data structure */ 440199a2dd95SBruce Richardson rte_ether_addr_copy(&null_mac_addr, &dev->data->mac_addrs[index]); 440299a2dd95SBruce Richardson 440399a2dd95SBruce Richardson /* reset pool bitmap */ 440499a2dd95SBruce Richardson dev->data->mac_pool_sel[index] = 0; 440599a2dd95SBruce Richardson 440699a2dd95SBruce Richardson return 0; 440799a2dd95SBruce Richardson } 440899a2dd95SBruce Richardson 440999a2dd95SBruce Richardson int 441099a2dd95SBruce Richardson rte_eth_dev_default_mac_addr_set(uint16_t port_id, struct rte_ether_addr *addr) 441199a2dd95SBruce Richardson { 441299a2dd95SBruce Richardson struct rte_eth_dev *dev; 441399a2dd95SBruce Richardson int ret; 441499a2dd95SBruce Richardson 441599a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 441653ef1b34SMin Hu (Connor) dev = &rte_eth_devices[port_id]; 441753ef1b34SMin Hu (Connor) 441853ef1b34SMin Hu (Connor) if (addr == NULL) { 441953ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 442053ef1b34SMin Hu (Connor) "Cannot set ethdev port %u default MAC address from NULL address\n", 442153ef1b34SMin Hu (Connor) port_id); 442253ef1b34SMin Hu (Connor) return -EINVAL; 442353ef1b34SMin Hu (Connor) } 442499a2dd95SBruce Richardson 442599a2dd95SBruce Richardson if (!rte_is_valid_assigned_ether_addr(addr)) 442699a2dd95SBruce Richardson return -EINVAL; 442799a2dd95SBruce Richardson 442899a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->mac_addr_set, -ENOTSUP); 442999a2dd95SBruce Richardson 443099a2dd95SBruce Richardson ret = (*dev->dev_ops->mac_addr_set)(dev, addr); 443199a2dd95SBruce Richardson if (ret < 0) 443299a2dd95SBruce Richardson return ret; 443399a2dd95SBruce Richardson 443499a2dd95SBruce Richardson /* Update default address in NIC data structure */ 443599a2dd95SBruce Richardson rte_ether_addr_copy(addr, &dev->data->mac_addrs[0]); 443699a2dd95SBruce Richardson 443799a2dd95SBruce Richardson return 0; 443899a2dd95SBruce Richardson } 443999a2dd95SBruce Richardson 444099a2dd95SBruce Richardson 444199a2dd95SBruce Richardson /* 444299a2dd95SBruce Richardson * Returns index into MAC address array of addr. Use 00:00:00:00:00:00 to find 444399a2dd95SBruce Richardson * an empty spot. 444499a2dd95SBruce Richardson */ 444599a2dd95SBruce Richardson static int 444699a2dd95SBruce Richardson eth_dev_get_hash_mac_addr_index(uint16_t port_id, 444799a2dd95SBruce Richardson const struct rte_ether_addr *addr) 444899a2dd95SBruce Richardson { 444999a2dd95SBruce Richardson struct rte_eth_dev_info dev_info; 445099a2dd95SBruce Richardson struct rte_eth_dev *dev = &rte_eth_devices[port_id]; 445199a2dd95SBruce Richardson unsigned i; 445299a2dd95SBruce Richardson int ret; 445399a2dd95SBruce Richardson 445499a2dd95SBruce Richardson ret = rte_eth_dev_info_get(port_id, &dev_info); 445599a2dd95SBruce Richardson if (ret != 0) 445699a2dd95SBruce Richardson return -1; 445799a2dd95SBruce Richardson 445899a2dd95SBruce Richardson if (!dev->data->hash_mac_addrs) 445999a2dd95SBruce Richardson return -1; 446099a2dd95SBruce Richardson 446199a2dd95SBruce Richardson for (i = 0; i < dev_info.max_hash_mac_addrs; i++) 446299a2dd95SBruce Richardson if (memcmp(addr, &dev->data->hash_mac_addrs[i], 446399a2dd95SBruce Richardson RTE_ETHER_ADDR_LEN) == 0) 446499a2dd95SBruce Richardson return i; 446599a2dd95SBruce Richardson 446699a2dd95SBruce Richardson return -1; 446799a2dd95SBruce Richardson } 446899a2dd95SBruce Richardson 446999a2dd95SBruce Richardson int 447099a2dd95SBruce Richardson rte_eth_dev_uc_hash_table_set(uint16_t port_id, struct rte_ether_addr *addr, 447199a2dd95SBruce Richardson uint8_t on) 447299a2dd95SBruce Richardson { 447399a2dd95SBruce Richardson int index; 447499a2dd95SBruce Richardson int ret; 447599a2dd95SBruce Richardson struct rte_eth_dev *dev; 447699a2dd95SBruce Richardson 447799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 447899a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 447953ef1b34SMin Hu (Connor) 448053ef1b34SMin Hu (Connor) if (addr == NULL) { 448153ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 448253ef1b34SMin Hu (Connor) "Cannot set ethdev port %u unicast hash table from NULL address\n", 448353ef1b34SMin Hu (Connor) port_id); 448453ef1b34SMin Hu (Connor) return -EINVAL; 448553ef1b34SMin Hu (Connor) } 448653ef1b34SMin Hu (Connor) 448799a2dd95SBruce Richardson if (rte_is_zero_ether_addr(addr)) { 448899a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Port %u: Cannot add NULL MAC address\n", 448999a2dd95SBruce Richardson port_id); 449099a2dd95SBruce Richardson return -EINVAL; 449199a2dd95SBruce Richardson } 449299a2dd95SBruce Richardson 449399a2dd95SBruce Richardson index = eth_dev_get_hash_mac_addr_index(port_id, addr); 449499a2dd95SBruce Richardson /* Check if it's already there, and do nothing */ 449599a2dd95SBruce Richardson if ((index >= 0) && on) 449699a2dd95SBruce Richardson return 0; 449799a2dd95SBruce Richardson 449899a2dd95SBruce Richardson if (index < 0) { 449999a2dd95SBruce Richardson if (!on) { 450099a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 450199a2dd95SBruce Richardson "Port %u: the MAC address was not set in UTA\n", 450299a2dd95SBruce Richardson port_id); 450399a2dd95SBruce Richardson return -EINVAL; 450499a2dd95SBruce Richardson } 450599a2dd95SBruce Richardson 450699a2dd95SBruce Richardson index = eth_dev_get_hash_mac_addr_index(port_id, &null_mac_addr); 450799a2dd95SBruce Richardson if (index < 0) { 450899a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Port %u: MAC address array full\n", 450999a2dd95SBruce Richardson port_id); 451099a2dd95SBruce Richardson return -ENOSPC; 451199a2dd95SBruce Richardson } 451299a2dd95SBruce Richardson } 451399a2dd95SBruce Richardson 451499a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->uc_hash_table_set, -ENOTSUP); 451599a2dd95SBruce Richardson ret = (*dev->dev_ops->uc_hash_table_set)(dev, addr, on); 451699a2dd95SBruce Richardson if (ret == 0) { 451799a2dd95SBruce Richardson /* Update address in NIC data structure */ 451899a2dd95SBruce Richardson if (on) 451999a2dd95SBruce Richardson rte_ether_addr_copy(addr, 452099a2dd95SBruce Richardson &dev->data->hash_mac_addrs[index]); 452199a2dd95SBruce Richardson else 452299a2dd95SBruce Richardson rte_ether_addr_copy(&null_mac_addr, 452399a2dd95SBruce Richardson &dev->data->hash_mac_addrs[index]); 452499a2dd95SBruce Richardson } 452599a2dd95SBruce Richardson 452699a2dd95SBruce Richardson return eth_err(port_id, ret); 452799a2dd95SBruce Richardson } 452899a2dd95SBruce Richardson 452999a2dd95SBruce Richardson int 453099a2dd95SBruce Richardson rte_eth_dev_uc_all_hash_table_set(uint16_t port_id, uint8_t on) 453199a2dd95SBruce Richardson { 453299a2dd95SBruce Richardson struct rte_eth_dev *dev; 453399a2dd95SBruce Richardson 453499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 453599a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 453699a2dd95SBruce Richardson 453799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->uc_all_hash_table_set, -ENOTSUP); 453899a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->uc_all_hash_table_set)(dev, 453999a2dd95SBruce Richardson on)); 454099a2dd95SBruce Richardson } 454199a2dd95SBruce Richardson 454299a2dd95SBruce Richardson int rte_eth_set_queue_rate_limit(uint16_t port_id, uint16_t queue_idx, 454399a2dd95SBruce Richardson uint16_t tx_rate) 454499a2dd95SBruce Richardson { 454599a2dd95SBruce Richardson struct rte_eth_dev *dev; 454699a2dd95SBruce Richardson struct rte_eth_dev_info dev_info; 454799a2dd95SBruce Richardson struct rte_eth_link link; 454899a2dd95SBruce Richardson int ret; 454999a2dd95SBruce Richardson 455099a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 455153ef1b34SMin Hu (Connor) dev = &rte_eth_devices[port_id]; 455299a2dd95SBruce Richardson 455399a2dd95SBruce Richardson ret = rte_eth_dev_info_get(port_id, &dev_info); 455499a2dd95SBruce Richardson if (ret != 0) 455599a2dd95SBruce Richardson return ret; 455699a2dd95SBruce Richardson 455799a2dd95SBruce Richardson link = dev->data->dev_link; 455899a2dd95SBruce Richardson 455999a2dd95SBruce Richardson if (queue_idx > dev_info.max_tx_queues) { 456099a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 456199a2dd95SBruce Richardson "Set queue rate limit:port %u: invalid queue id=%u\n", 456299a2dd95SBruce Richardson port_id, queue_idx); 456399a2dd95SBruce Richardson return -EINVAL; 456499a2dd95SBruce Richardson } 456599a2dd95SBruce Richardson 456699a2dd95SBruce Richardson if (tx_rate > link.link_speed) { 456799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 456899a2dd95SBruce Richardson "Set queue rate limit:invalid tx_rate=%u, bigger than link speed= %d\n", 456999a2dd95SBruce Richardson tx_rate, link.link_speed); 457099a2dd95SBruce Richardson return -EINVAL; 457199a2dd95SBruce Richardson } 457299a2dd95SBruce Richardson 457399a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_queue_rate_limit, -ENOTSUP); 457499a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->set_queue_rate_limit)(dev, 457599a2dd95SBruce Richardson queue_idx, tx_rate)); 457699a2dd95SBruce Richardson } 457799a2dd95SBruce Richardson 4578c87d435aSKonstantin Ananyev RTE_INIT(eth_dev_init_fp_ops) 4579c87d435aSKonstantin Ananyev { 4580c87d435aSKonstantin Ananyev uint32_t i; 4581c87d435aSKonstantin Ananyev 4582c87d435aSKonstantin Ananyev for (i = 0; i != RTE_DIM(rte_eth_fp_ops); i++) 4583c87d435aSKonstantin Ananyev eth_dev_fp_ops_reset(rte_eth_fp_ops + i); 4584c87d435aSKonstantin Ananyev } 4585c87d435aSKonstantin Ananyev 458699a2dd95SBruce Richardson RTE_INIT(eth_dev_init_cb_lists) 458799a2dd95SBruce Richardson { 458899a2dd95SBruce Richardson uint16_t i; 458999a2dd95SBruce Richardson 459099a2dd95SBruce Richardson for (i = 0; i < RTE_MAX_ETHPORTS; i++) 459199a2dd95SBruce Richardson TAILQ_INIT(&rte_eth_devices[i].link_intr_cbs); 459299a2dd95SBruce Richardson } 459399a2dd95SBruce Richardson 459499a2dd95SBruce Richardson int 459599a2dd95SBruce Richardson rte_eth_dev_callback_register(uint16_t port_id, 459699a2dd95SBruce Richardson enum rte_eth_event_type event, 459799a2dd95SBruce Richardson rte_eth_dev_cb_fn cb_fn, void *cb_arg) 459899a2dd95SBruce Richardson { 459999a2dd95SBruce Richardson struct rte_eth_dev *dev; 460099a2dd95SBruce Richardson struct rte_eth_dev_callback *user_cb; 460199a2dd95SBruce Richardson uint16_t next_port; 460299a2dd95SBruce Richardson uint16_t last_port; 460399a2dd95SBruce Richardson 460453ef1b34SMin Hu (Connor) if (cb_fn == NULL) { 460553ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 460653ef1b34SMin Hu (Connor) "Cannot register ethdev port %u callback from NULL\n", 460753ef1b34SMin Hu (Connor) port_id); 460899a2dd95SBruce Richardson return -EINVAL; 460953ef1b34SMin Hu (Connor) } 461099a2dd95SBruce Richardson 461199a2dd95SBruce Richardson if (!rte_eth_dev_is_valid_port(port_id) && port_id != RTE_ETH_ALL) { 461299a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid port_id=%d\n", port_id); 461399a2dd95SBruce Richardson return -EINVAL; 461499a2dd95SBruce Richardson } 461599a2dd95SBruce Richardson 461699a2dd95SBruce Richardson if (port_id == RTE_ETH_ALL) { 461799a2dd95SBruce Richardson next_port = 0; 461899a2dd95SBruce Richardson last_port = RTE_MAX_ETHPORTS - 1; 461999a2dd95SBruce Richardson } else { 462099a2dd95SBruce Richardson next_port = last_port = port_id; 462199a2dd95SBruce Richardson } 462299a2dd95SBruce Richardson 462399a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_cb_lock); 462499a2dd95SBruce Richardson 462599a2dd95SBruce Richardson do { 462699a2dd95SBruce Richardson dev = &rte_eth_devices[next_port]; 462799a2dd95SBruce Richardson 462899a2dd95SBruce Richardson TAILQ_FOREACH(user_cb, &(dev->link_intr_cbs), next) { 462999a2dd95SBruce Richardson if (user_cb->cb_fn == cb_fn && 463099a2dd95SBruce Richardson user_cb->cb_arg == cb_arg && 463199a2dd95SBruce Richardson user_cb->event == event) { 463299a2dd95SBruce Richardson break; 463399a2dd95SBruce Richardson } 463499a2dd95SBruce Richardson } 463599a2dd95SBruce Richardson 463699a2dd95SBruce Richardson /* create a new callback. */ 463799a2dd95SBruce Richardson if (user_cb == NULL) { 463899a2dd95SBruce Richardson user_cb = rte_zmalloc("INTR_USER_CALLBACK", 463999a2dd95SBruce Richardson sizeof(struct rte_eth_dev_callback), 0); 464099a2dd95SBruce Richardson if (user_cb != NULL) { 464199a2dd95SBruce Richardson user_cb->cb_fn = cb_fn; 464299a2dd95SBruce Richardson user_cb->cb_arg = cb_arg; 464399a2dd95SBruce Richardson user_cb->event = event; 464499a2dd95SBruce Richardson TAILQ_INSERT_TAIL(&(dev->link_intr_cbs), 464599a2dd95SBruce Richardson user_cb, next); 464699a2dd95SBruce Richardson } else { 464799a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_cb_lock); 464899a2dd95SBruce Richardson rte_eth_dev_callback_unregister(port_id, event, 464999a2dd95SBruce Richardson cb_fn, cb_arg); 465099a2dd95SBruce Richardson return -ENOMEM; 465199a2dd95SBruce Richardson } 465299a2dd95SBruce Richardson 465399a2dd95SBruce Richardson } 465499a2dd95SBruce Richardson } while (++next_port <= last_port); 465599a2dd95SBruce Richardson 465699a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_cb_lock); 465799a2dd95SBruce Richardson return 0; 465899a2dd95SBruce Richardson } 465999a2dd95SBruce Richardson 466099a2dd95SBruce Richardson int 466199a2dd95SBruce Richardson rte_eth_dev_callback_unregister(uint16_t port_id, 466299a2dd95SBruce Richardson enum rte_eth_event_type event, 466399a2dd95SBruce Richardson rte_eth_dev_cb_fn cb_fn, void *cb_arg) 466499a2dd95SBruce Richardson { 466599a2dd95SBruce Richardson int ret; 466699a2dd95SBruce Richardson struct rte_eth_dev *dev; 466799a2dd95SBruce Richardson struct rte_eth_dev_callback *cb, *next; 466899a2dd95SBruce Richardson uint16_t next_port; 466999a2dd95SBruce Richardson uint16_t last_port; 467099a2dd95SBruce Richardson 467153ef1b34SMin Hu (Connor) if (cb_fn == NULL) { 467253ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 467353ef1b34SMin Hu (Connor) "Cannot unregister ethdev port %u callback from NULL\n", 467453ef1b34SMin Hu (Connor) port_id); 467599a2dd95SBruce Richardson return -EINVAL; 467653ef1b34SMin Hu (Connor) } 467799a2dd95SBruce Richardson 467899a2dd95SBruce Richardson if (!rte_eth_dev_is_valid_port(port_id) && port_id != RTE_ETH_ALL) { 467999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid port_id=%d\n", port_id); 468099a2dd95SBruce Richardson return -EINVAL; 468199a2dd95SBruce Richardson } 468299a2dd95SBruce Richardson 468399a2dd95SBruce Richardson if (port_id == RTE_ETH_ALL) { 468499a2dd95SBruce Richardson next_port = 0; 468599a2dd95SBruce Richardson last_port = RTE_MAX_ETHPORTS - 1; 468699a2dd95SBruce Richardson } else { 468799a2dd95SBruce Richardson next_port = last_port = port_id; 468899a2dd95SBruce Richardson } 468999a2dd95SBruce Richardson 469099a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_cb_lock); 469199a2dd95SBruce Richardson 469299a2dd95SBruce Richardson do { 469399a2dd95SBruce Richardson dev = &rte_eth_devices[next_port]; 469499a2dd95SBruce Richardson ret = 0; 469599a2dd95SBruce Richardson for (cb = TAILQ_FIRST(&dev->link_intr_cbs); cb != NULL; 469699a2dd95SBruce Richardson cb = next) { 469799a2dd95SBruce Richardson 469899a2dd95SBruce Richardson next = TAILQ_NEXT(cb, next); 469999a2dd95SBruce Richardson 470099a2dd95SBruce Richardson if (cb->cb_fn != cb_fn || cb->event != event || 470199a2dd95SBruce Richardson (cb_arg != (void *)-1 && cb->cb_arg != cb_arg)) 470299a2dd95SBruce Richardson continue; 470399a2dd95SBruce Richardson 470499a2dd95SBruce Richardson /* 470599a2dd95SBruce Richardson * if this callback is not executing right now, 470699a2dd95SBruce Richardson * then remove it. 470799a2dd95SBruce Richardson */ 470899a2dd95SBruce Richardson if (cb->active == 0) { 470999a2dd95SBruce Richardson TAILQ_REMOVE(&(dev->link_intr_cbs), cb, next); 471099a2dd95SBruce Richardson rte_free(cb); 471199a2dd95SBruce Richardson } else { 471299a2dd95SBruce Richardson ret = -EAGAIN; 471399a2dd95SBruce Richardson } 471499a2dd95SBruce Richardson } 471599a2dd95SBruce Richardson } while (++next_port <= last_port); 471699a2dd95SBruce Richardson 471799a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_cb_lock); 471899a2dd95SBruce Richardson return ret; 471999a2dd95SBruce Richardson } 472099a2dd95SBruce Richardson 472199a2dd95SBruce Richardson int 472299a2dd95SBruce Richardson rte_eth_dev_callback_process(struct rte_eth_dev *dev, 472399a2dd95SBruce Richardson enum rte_eth_event_type event, void *ret_param) 472499a2dd95SBruce Richardson { 472599a2dd95SBruce Richardson struct rte_eth_dev_callback *cb_lst; 472699a2dd95SBruce Richardson struct rte_eth_dev_callback dev_cb; 472799a2dd95SBruce Richardson int rc = 0; 472899a2dd95SBruce Richardson 472999a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_cb_lock); 473099a2dd95SBruce Richardson TAILQ_FOREACH(cb_lst, &(dev->link_intr_cbs), next) { 473199a2dd95SBruce Richardson if (cb_lst->cb_fn == NULL || cb_lst->event != event) 473299a2dd95SBruce Richardson continue; 473399a2dd95SBruce Richardson dev_cb = *cb_lst; 473499a2dd95SBruce Richardson cb_lst->active = 1; 473599a2dd95SBruce Richardson if (ret_param != NULL) 473699a2dd95SBruce Richardson dev_cb.ret_param = ret_param; 473799a2dd95SBruce Richardson 473899a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_cb_lock); 473999a2dd95SBruce Richardson rc = dev_cb.cb_fn(dev->data->port_id, dev_cb.event, 474099a2dd95SBruce Richardson dev_cb.cb_arg, dev_cb.ret_param); 474199a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_cb_lock); 474299a2dd95SBruce Richardson cb_lst->active = 0; 474399a2dd95SBruce Richardson } 474499a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_cb_lock); 474599a2dd95SBruce Richardson return rc; 474699a2dd95SBruce Richardson } 474799a2dd95SBruce Richardson 474899a2dd95SBruce Richardson void 474999a2dd95SBruce Richardson rte_eth_dev_probing_finish(struct rte_eth_dev *dev) 475099a2dd95SBruce Richardson { 475199a2dd95SBruce Richardson if (dev == NULL) 475299a2dd95SBruce Richardson return; 475399a2dd95SBruce Richardson 4754c87d435aSKonstantin Ananyev /* 4755c87d435aSKonstantin Ananyev * for secondary process, at that point we expect device 4756c87d435aSKonstantin Ananyev * to be already 'usable', so shared data and all function pointers 4757c87d435aSKonstantin Ananyev * for fast-path devops have to be setup properly inside rte_eth_dev. 4758c87d435aSKonstantin Ananyev */ 4759c87d435aSKonstantin Ananyev if (rte_eal_process_type() == RTE_PROC_SECONDARY) 4760c87d435aSKonstantin Ananyev eth_dev_fp_ops_setup(rte_eth_fp_ops + dev->data->port_id, dev); 4761c87d435aSKonstantin Ananyev 476299a2dd95SBruce Richardson rte_eth_dev_callback_process(dev, RTE_ETH_EVENT_NEW, NULL); 476399a2dd95SBruce Richardson 476499a2dd95SBruce Richardson dev->state = RTE_ETH_DEV_ATTACHED; 476599a2dd95SBruce Richardson } 476699a2dd95SBruce Richardson 476799a2dd95SBruce Richardson int 476899a2dd95SBruce Richardson rte_eth_dev_rx_intr_ctl(uint16_t port_id, int epfd, int op, void *data) 476999a2dd95SBruce Richardson { 477099a2dd95SBruce Richardson uint32_t vec; 477199a2dd95SBruce Richardson struct rte_eth_dev *dev; 477299a2dd95SBruce Richardson struct rte_intr_handle *intr_handle; 477399a2dd95SBruce Richardson uint16_t qid; 477499a2dd95SBruce Richardson int rc; 477599a2dd95SBruce Richardson 477699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 477799a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 477899a2dd95SBruce Richardson 477999a2dd95SBruce Richardson if (!dev->intr_handle) { 478099a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "RX Intr handle unset\n"); 478199a2dd95SBruce Richardson return -ENOTSUP; 478299a2dd95SBruce Richardson } 478399a2dd95SBruce Richardson 478499a2dd95SBruce Richardson intr_handle = dev->intr_handle; 478599a2dd95SBruce Richardson if (!intr_handle->intr_vec) { 478699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "RX Intr vector unset\n"); 478799a2dd95SBruce Richardson return -EPERM; 478899a2dd95SBruce Richardson } 478999a2dd95SBruce Richardson 479099a2dd95SBruce Richardson for (qid = 0; qid < dev->data->nb_rx_queues; qid++) { 479199a2dd95SBruce Richardson vec = intr_handle->intr_vec[qid]; 479299a2dd95SBruce Richardson rc = rte_intr_rx_ctl(intr_handle, epfd, op, vec, data); 479399a2dd95SBruce Richardson if (rc && rc != -EEXIST) { 479499a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 479599a2dd95SBruce Richardson "p %u q %u rx ctl error op %d epfd %d vec %u\n", 479699a2dd95SBruce Richardson port_id, qid, op, epfd, vec); 479799a2dd95SBruce Richardson } 479899a2dd95SBruce Richardson } 479999a2dd95SBruce Richardson 480099a2dd95SBruce Richardson return 0; 480199a2dd95SBruce Richardson } 480299a2dd95SBruce Richardson 480399a2dd95SBruce Richardson int 480499a2dd95SBruce Richardson rte_eth_dev_rx_intr_ctl_q_get_fd(uint16_t port_id, uint16_t queue_id) 480599a2dd95SBruce Richardson { 480699a2dd95SBruce Richardson struct rte_intr_handle *intr_handle; 480799a2dd95SBruce Richardson struct rte_eth_dev *dev; 480899a2dd95SBruce Richardson unsigned int efd_idx; 480999a2dd95SBruce Richardson uint32_t vec; 481099a2dd95SBruce Richardson int fd; 481199a2dd95SBruce Richardson 481299a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -1); 481399a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 481499a2dd95SBruce Richardson 481599a2dd95SBruce Richardson if (queue_id >= dev->data->nb_rx_queues) { 481699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid RX queue_id=%u\n", queue_id); 481799a2dd95SBruce Richardson return -1; 481899a2dd95SBruce Richardson } 481999a2dd95SBruce Richardson 482099a2dd95SBruce Richardson if (!dev->intr_handle) { 482199a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "RX Intr handle unset\n"); 482299a2dd95SBruce Richardson return -1; 482399a2dd95SBruce Richardson } 482499a2dd95SBruce Richardson 482599a2dd95SBruce Richardson intr_handle = dev->intr_handle; 482699a2dd95SBruce Richardson if (!intr_handle->intr_vec) { 482799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "RX Intr vector unset\n"); 482899a2dd95SBruce Richardson return -1; 482999a2dd95SBruce Richardson } 483099a2dd95SBruce Richardson 483199a2dd95SBruce Richardson vec = intr_handle->intr_vec[queue_id]; 483299a2dd95SBruce Richardson efd_idx = (vec >= RTE_INTR_VEC_RXTX_OFFSET) ? 483399a2dd95SBruce Richardson (vec - RTE_INTR_VEC_RXTX_OFFSET) : vec; 483499a2dd95SBruce Richardson fd = intr_handle->efds[efd_idx]; 483599a2dd95SBruce Richardson 483699a2dd95SBruce Richardson return fd; 483799a2dd95SBruce Richardson } 483899a2dd95SBruce Richardson 483999a2dd95SBruce Richardson static inline int 484099a2dd95SBruce Richardson eth_dev_dma_mzone_name(char *name, size_t len, uint16_t port_id, uint16_t queue_id, 484199a2dd95SBruce Richardson const char *ring_name) 484299a2dd95SBruce Richardson { 484399a2dd95SBruce Richardson return snprintf(name, len, "eth_p%d_q%d_%s", 484499a2dd95SBruce Richardson port_id, queue_id, ring_name); 484599a2dd95SBruce Richardson } 484699a2dd95SBruce Richardson 484799a2dd95SBruce Richardson const struct rte_memzone * 484899a2dd95SBruce Richardson rte_eth_dma_zone_reserve(const struct rte_eth_dev *dev, const char *ring_name, 484999a2dd95SBruce Richardson uint16_t queue_id, size_t size, unsigned align, 485099a2dd95SBruce Richardson int socket_id) 485199a2dd95SBruce Richardson { 485299a2dd95SBruce Richardson char z_name[RTE_MEMZONE_NAMESIZE]; 485399a2dd95SBruce Richardson const struct rte_memzone *mz; 485499a2dd95SBruce Richardson int rc; 485599a2dd95SBruce Richardson 485699a2dd95SBruce Richardson rc = eth_dev_dma_mzone_name(z_name, sizeof(z_name), dev->data->port_id, 485799a2dd95SBruce Richardson queue_id, ring_name); 485899a2dd95SBruce Richardson if (rc >= RTE_MEMZONE_NAMESIZE) { 485999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "ring name too long\n"); 486099a2dd95SBruce Richardson rte_errno = ENAMETOOLONG; 486199a2dd95SBruce Richardson return NULL; 486299a2dd95SBruce Richardson } 486399a2dd95SBruce Richardson 486499a2dd95SBruce Richardson mz = rte_memzone_lookup(z_name); 486599a2dd95SBruce Richardson if (mz) { 486699a2dd95SBruce Richardson if ((socket_id != SOCKET_ID_ANY && socket_id != mz->socket_id) || 486799a2dd95SBruce Richardson size > mz->len || 486899a2dd95SBruce Richardson ((uintptr_t)mz->addr & (align - 1)) != 0) { 486999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 487099a2dd95SBruce Richardson "memzone %s does not justify the requested attributes\n", 487199a2dd95SBruce Richardson mz->name); 487299a2dd95SBruce Richardson return NULL; 487399a2dd95SBruce Richardson } 487499a2dd95SBruce Richardson 487599a2dd95SBruce Richardson return mz; 487699a2dd95SBruce Richardson } 487799a2dd95SBruce Richardson 487899a2dd95SBruce Richardson return rte_memzone_reserve_aligned(z_name, size, socket_id, 487999a2dd95SBruce Richardson RTE_MEMZONE_IOVA_CONTIG, align); 488099a2dd95SBruce Richardson } 488199a2dd95SBruce Richardson 488299a2dd95SBruce Richardson int 488399a2dd95SBruce Richardson rte_eth_dma_zone_free(const struct rte_eth_dev *dev, const char *ring_name, 488499a2dd95SBruce Richardson uint16_t queue_id) 488599a2dd95SBruce Richardson { 488699a2dd95SBruce Richardson char z_name[RTE_MEMZONE_NAMESIZE]; 488799a2dd95SBruce Richardson const struct rte_memzone *mz; 488899a2dd95SBruce Richardson int rc = 0; 488999a2dd95SBruce Richardson 489099a2dd95SBruce Richardson rc = eth_dev_dma_mzone_name(z_name, sizeof(z_name), dev->data->port_id, 489199a2dd95SBruce Richardson queue_id, ring_name); 489299a2dd95SBruce Richardson if (rc >= RTE_MEMZONE_NAMESIZE) { 489399a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "ring name too long\n"); 489499a2dd95SBruce Richardson return -ENAMETOOLONG; 489599a2dd95SBruce Richardson } 489699a2dd95SBruce Richardson 489799a2dd95SBruce Richardson mz = rte_memzone_lookup(z_name); 489899a2dd95SBruce Richardson if (mz) 489999a2dd95SBruce Richardson rc = rte_memzone_free(mz); 490099a2dd95SBruce Richardson else 490199a2dd95SBruce Richardson rc = -ENOENT; 490299a2dd95SBruce Richardson 490399a2dd95SBruce Richardson return rc; 490499a2dd95SBruce Richardson } 490599a2dd95SBruce Richardson 490699a2dd95SBruce Richardson int 490799a2dd95SBruce Richardson rte_eth_dev_create(struct rte_device *device, const char *name, 490899a2dd95SBruce Richardson size_t priv_data_size, 490999a2dd95SBruce Richardson ethdev_bus_specific_init ethdev_bus_specific_init, 491099a2dd95SBruce Richardson void *bus_init_params, 491199a2dd95SBruce Richardson ethdev_init_t ethdev_init, void *init_params) 491299a2dd95SBruce Richardson { 491399a2dd95SBruce Richardson struct rte_eth_dev *ethdev; 491499a2dd95SBruce Richardson int retval; 491599a2dd95SBruce Richardson 491699a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*ethdev_init, -EINVAL); 491799a2dd95SBruce Richardson 491899a2dd95SBruce Richardson if (rte_eal_process_type() == RTE_PROC_PRIMARY) { 491999a2dd95SBruce Richardson ethdev = rte_eth_dev_allocate(name); 492099a2dd95SBruce Richardson if (!ethdev) 492199a2dd95SBruce Richardson return -ENODEV; 492299a2dd95SBruce Richardson 492399a2dd95SBruce Richardson if (priv_data_size) { 492499a2dd95SBruce Richardson ethdev->data->dev_private = rte_zmalloc_socket( 492599a2dd95SBruce Richardson name, priv_data_size, RTE_CACHE_LINE_SIZE, 492699a2dd95SBruce Richardson device->numa_node); 492799a2dd95SBruce Richardson 492899a2dd95SBruce Richardson if (!ethdev->data->dev_private) { 492999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 493099a2dd95SBruce Richardson "failed to allocate private data\n"); 493199a2dd95SBruce Richardson retval = -ENOMEM; 493299a2dd95SBruce Richardson goto probe_failed; 493399a2dd95SBruce Richardson } 493499a2dd95SBruce Richardson } 493599a2dd95SBruce Richardson } else { 493699a2dd95SBruce Richardson ethdev = rte_eth_dev_attach_secondary(name); 493799a2dd95SBruce Richardson if (!ethdev) { 493899a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 493999a2dd95SBruce Richardson "secondary process attach failed, ethdev doesn't exist\n"); 494099a2dd95SBruce Richardson return -ENODEV; 494199a2dd95SBruce Richardson } 494299a2dd95SBruce Richardson } 494399a2dd95SBruce Richardson 494499a2dd95SBruce Richardson ethdev->device = device; 494599a2dd95SBruce Richardson 494699a2dd95SBruce Richardson if (ethdev_bus_specific_init) { 494799a2dd95SBruce Richardson retval = ethdev_bus_specific_init(ethdev, bus_init_params); 494899a2dd95SBruce Richardson if (retval) { 494999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 495099a2dd95SBruce Richardson "ethdev bus specific initialisation failed\n"); 495199a2dd95SBruce Richardson goto probe_failed; 495299a2dd95SBruce Richardson } 495399a2dd95SBruce Richardson } 495499a2dd95SBruce Richardson 495599a2dd95SBruce Richardson retval = ethdev_init(ethdev, init_params); 495699a2dd95SBruce Richardson if (retval) { 495799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "ethdev initialisation failed\n"); 495899a2dd95SBruce Richardson goto probe_failed; 495999a2dd95SBruce Richardson } 496099a2dd95SBruce Richardson 496199a2dd95SBruce Richardson rte_eth_dev_probing_finish(ethdev); 496299a2dd95SBruce Richardson 496399a2dd95SBruce Richardson return retval; 496499a2dd95SBruce Richardson 496599a2dd95SBruce Richardson probe_failed: 496699a2dd95SBruce Richardson rte_eth_dev_release_port(ethdev); 496799a2dd95SBruce Richardson return retval; 496899a2dd95SBruce Richardson } 496999a2dd95SBruce Richardson 497099a2dd95SBruce Richardson int 497199a2dd95SBruce Richardson rte_eth_dev_destroy(struct rte_eth_dev *ethdev, 497299a2dd95SBruce Richardson ethdev_uninit_t ethdev_uninit) 497399a2dd95SBruce Richardson { 497499a2dd95SBruce Richardson int ret; 497599a2dd95SBruce Richardson 497699a2dd95SBruce Richardson ethdev = rte_eth_dev_allocated(ethdev->data->name); 497799a2dd95SBruce Richardson if (!ethdev) 497899a2dd95SBruce Richardson return -ENODEV; 497999a2dd95SBruce Richardson 498099a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*ethdev_uninit, -EINVAL); 498199a2dd95SBruce Richardson 498299a2dd95SBruce Richardson ret = ethdev_uninit(ethdev); 498399a2dd95SBruce Richardson if (ret) 498499a2dd95SBruce Richardson return ret; 498599a2dd95SBruce Richardson 498699a2dd95SBruce Richardson return rte_eth_dev_release_port(ethdev); 498799a2dd95SBruce Richardson } 498899a2dd95SBruce Richardson 498999a2dd95SBruce Richardson int 499099a2dd95SBruce Richardson rte_eth_dev_rx_intr_ctl_q(uint16_t port_id, uint16_t queue_id, 499199a2dd95SBruce Richardson int epfd, int op, void *data) 499299a2dd95SBruce Richardson { 499399a2dd95SBruce Richardson uint32_t vec; 499499a2dd95SBruce Richardson struct rte_eth_dev *dev; 499599a2dd95SBruce Richardson struct rte_intr_handle *intr_handle; 499699a2dd95SBruce Richardson int rc; 499799a2dd95SBruce Richardson 499899a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 499999a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 500053ef1b34SMin Hu (Connor) 500199a2dd95SBruce Richardson if (queue_id >= dev->data->nb_rx_queues) { 500299a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid RX queue_id=%u\n", queue_id); 500399a2dd95SBruce Richardson return -EINVAL; 500499a2dd95SBruce Richardson } 500599a2dd95SBruce Richardson 500699a2dd95SBruce Richardson if (!dev->intr_handle) { 500799a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "RX Intr handle unset\n"); 500899a2dd95SBruce Richardson return -ENOTSUP; 500999a2dd95SBruce Richardson } 501099a2dd95SBruce Richardson 501199a2dd95SBruce Richardson intr_handle = dev->intr_handle; 501299a2dd95SBruce Richardson if (!intr_handle->intr_vec) { 501399a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "RX Intr vector unset\n"); 501499a2dd95SBruce Richardson return -EPERM; 501599a2dd95SBruce Richardson } 501699a2dd95SBruce Richardson 501799a2dd95SBruce Richardson vec = intr_handle->intr_vec[queue_id]; 501899a2dd95SBruce Richardson rc = rte_intr_rx_ctl(intr_handle, epfd, op, vec, data); 501999a2dd95SBruce Richardson if (rc && rc != -EEXIST) { 502099a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 502199a2dd95SBruce Richardson "p %u q %u rx ctl error op %d epfd %d vec %u\n", 502299a2dd95SBruce Richardson port_id, queue_id, op, epfd, vec); 502399a2dd95SBruce Richardson return rc; 502499a2dd95SBruce Richardson } 502599a2dd95SBruce Richardson 502699a2dd95SBruce Richardson return 0; 502799a2dd95SBruce Richardson } 502899a2dd95SBruce Richardson 502999a2dd95SBruce Richardson int 503099a2dd95SBruce Richardson rte_eth_dev_rx_intr_enable(uint16_t port_id, 503199a2dd95SBruce Richardson uint16_t queue_id) 503299a2dd95SBruce Richardson { 503399a2dd95SBruce Richardson struct rte_eth_dev *dev; 503499a2dd95SBruce Richardson int ret; 503599a2dd95SBruce Richardson 503699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 503799a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 503899a2dd95SBruce Richardson 503999a2dd95SBruce Richardson ret = eth_dev_validate_rx_queue(dev, queue_id); 504099a2dd95SBruce Richardson if (ret != 0) 504199a2dd95SBruce Richardson return ret; 504299a2dd95SBruce Richardson 504399a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_intr_enable, -ENOTSUP); 504453ef1b34SMin Hu (Connor) return eth_err(port_id, (*dev->dev_ops->rx_queue_intr_enable)(dev, queue_id)); 504599a2dd95SBruce Richardson } 504699a2dd95SBruce Richardson 504799a2dd95SBruce Richardson int 504899a2dd95SBruce Richardson rte_eth_dev_rx_intr_disable(uint16_t port_id, 504999a2dd95SBruce Richardson uint16_t queue_id) 505099a2dd95SBruce Richardson { 505199a2dd95SBruce Richardson struct rte_eth_dev *dev; 505299a2dd95SBruce Richardson int ret; 505399a2dd95SBruce Richardson 505499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 505599a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 505699a2dd95SBruce Richardson 505799a2dd95SBruce Richardson ret = eth_dev_validate_rx_queue(dev, queue_id); 505899a2dd95SBruce Richardson if (ret != 0) 505999a2dd95SBruce Richardson return ret; 506099a2dd95SBruce Richardson 506199a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_queue_intr_disable, -ENOTSUP); 506253ef1b34SMin Hu (Connor) return eth_err(port_id, (*dev->dev_ops->rx_queue_intr_disable)(dev, queue_id)); 506399a2dd95SBruce Richardson } 506499a2dd95SBruce Richardson 506599a2dd95SBruce Richardson 506699a2dd95SBruce Richardson const struct rte_eth_rxtx_callback * 506799a2dd95SBruce Richardson rte_eth_add_rx_callback(uint16_t port_id, uint16_t queue_id, 506899a2dd95SBruce Richardson rte_rx_callback_fn fn, void *user_param) 506999a2dd95SBruce Richardson { 507099a2dd95SBruce Richardson #ifndef RTE_ETHDEV_RXTX_CALLBACKS 507199a2dd95SBruce Richardson rte_errno = ENOTSUP; 507299a2dd95SBruce Richardson return NULL; 507399a2dd95SBruce Richardson #endif 507499a2dd95SBruce Richardson struct rte_eth_dev *dev; 507599a2dd95SBruce Richardson 507699a2dd95SBruce Richardson /* check input parameters */ 507799a2dd95SBruce Richardson if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL || 507899a2dd95SBruce Richardson queue_id >= rte_eth_devices[port_id].data->nb_rx_queues) { 507999a2dd95SBruce Richardson rte_errno = EINVAL; 508099a2dd95SBruce Richardson return NULL; 508199a2dd95SBruce Richardson } 508299a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 508399a2dd95SBruce Richardson if (rte_eth_dev_is_rx_hairpin_queue(dev, queue_id)) { 508499a2dd95SBruce Richardson rte_errno = EINVAL; 508599a2dd95SBruce Richardson return NULL; 508699a2dd95SBruce Richardson } 508799a2dd95SBruce Richardson struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0); 508899a2dd95SBruce Richardson 508999a2dd95SBruce Richardson if (cb == NULL) { 509099a2dd95SBruce Richardson rte_errno = ENOMEM; 509199a2dd95SBruce Richardson return NULL; 509299a2dd95SBruce Richardson } 509399a2dd95SBruce Richardson 509499a2dd95SBruce Richardson cb->fn.rx = fn; 509599a2dd95SBruce Richardson cb->param = user_param; 509699a2dd95SBruce Richardson 509799a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_rx_cb_lock); 509899a2dd95SBruce Richardson /* Add the callbacks in fifo order. */ 509999a2dd95SBruce Richardson struct rte_eth_rxtx_callback *tail = 510099a2dd95SBruce Richardson rte_eth_devices[port_id].post_rx_burst_cbs[queue_id]; 510199a2dd95SBruce Richardson 510299a2dd95SBruce Richardson if (!tail) { 510399a2dd95SBruce Richardson /* Stores to cb->fn and cb->param should complete before 510499a2dd95SBruce Richardson * cb is visible to data plane. 510599a2dd95SBruce Richardson */ 510699a2dd95SBruce Richardson __atomic_store_n( 510799a2dd95SBruce Richardson &rte_eth_devices[port_id].post_rx_burst_cbs[queue_id], 510899a2dd95SBruce Richardson cb, __ATOMIC_RELEASE); 510999a2dd95SBruce Richardson 511099a2dd95SBruce Richardson } else { 511199a2dd95SBruce Richardson while (tail->next) 511299a2dd95SBruce Richardson tail = tail->next; 511399a2dd95SBruce Richardson /* Stores to cb->fn and cb->param should complete before 511499a2dd95SBruce Richardson * cb is visible to data plane. 511599a2dd95SBruce Richardson */ 511699a2dd95SBruce Richardson __atomic_store_n(&tail->next, cb, __ATOMIC_RELEASE); 511799a2dd95SBruce Richardson } 511899a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_rx_cb_lock); 511999a2dd95SBruce Richardson 512099a2dd95SBruce Richardson return cb; 512199a2dd95SBruce Richardson } 512299a2dd95SBruce Richardson 512399a2dd95SBruce Richardson const struct rte_eth_rxtx_callback * 512499a2dd95SBruce Richardson rte_eth_add_first_rx_callback(uint16_t port_id, uint16_t queue_id, 512599a2dd95SBruce Richardson rte_rx_callback_fn fn, void *user_param) 512699a2dd95SBruce Richardson { 512799a2dd95SBruce Richardson #ifndef RTE_ETHDEV_RXTX_CALLBACKS 512899a2dd95SBruce Richardson rte_errno = ENOTSUP; 512999a2dd95SBruce Richardson return NULL; 513099a2dd95SBruce Richardson #endif 513199a2dd95SBruce Richardson /* check input parameters */ 513299a2dd95SBruce Richardson if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL || 513399a2dd95SBruce Richardson queue_id >= rte_eth_devices[port_id].data->nb_rx_queues) { 513499a2dd95SBruce Richardson rte_errno = EINVAL; 513599a2dd95SBruce Richardson return NULL; 513699a2dd95SBruce Richardson } 513799a2dd95SBruce Richardson 513899a2dd95SBruce Richardson struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0); 513999a2dd95SBruce Richardson 514099a2dd95SBruce Richardson if (cb == NULL) { 514199a2dd95SBruce Richardson rte_errno = ENOMEM; 514299a2dd95SBruce Richardson return NULL; 514399a2dd95SBruce Richardson } 514499a2dd95SBruce Richardson 514599a2dd95SBruce Richardson cb->fn.rx = fn; 514699a2dd95SBruce Richardson cb->param = user_param; 514799a2dd95SBruce Richardson 514899a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_rx_cb_lock); 514999a2dd95SBruce Richardson /* Add the callbacks at first position */ 515099a2dd95SBruce Richardson cb->next = rte_eth_devices[port_id].post_rx_burst_cbs[queue_id]; 515199a2dd95SBruce Richardson /* Stores to cb->fn, cb->param and cb->next should complete before 515299a2dd95SBruce Richardson * cb is visible to data plane threads. 515399a2dd95SBruce Richardson */ 515499a2dd95SBruce Richardson __atomic_store_n( 515599a2dd95SBruce Richardson &rte_eth_devices[port_id].post_rx_burst_cbs[queue_id], 515699a2dd95SBruce Richardson cb, __ATOMIC_RELEASE); 515799a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_rx_cb_lock); 515899a2dd95SBruce Richardson 515999a2dd95SBruce Richardson return cb; 516099a2dd95SBruce Richardson } 516199a2dd95SBruce Richardson 516299a2dd95SBruce Richardson const struct rte_eth_rxtx_callback * 516399a2dd95SBruce Richardson rte_eth_add_tx_callback(uint16_t port_id, uint16_t queue_id, 516499a2dd95SBruce Richardson rte_tx_callback_fn fn, void *user_param) 516599a2dd95SBruce Richardson { 516699a2dd95SBruce Richardson #ifndef RTE_ETHDEV_RXTX_CALLBACKS 516799a2dd95SBruce Richardson rte_errno = ENOTSUP; 516899a2dd95SBruce Richardson return NULL; 516999a2dd95SBruce Richardson #endif 517099a2dd95SBruce Richardson struct rte_eth_dev *dev; 517199a2dd95SBruce Richardson 517299a2dd95SBruce Richardson /* check input parameters */ 517399a2dd95SBruce Richardson if (!rte_eth_dev_is_valid_port(port_id) || fn == NULL || 517499a2dd95SBruce Richardson queue_id >= rte_eth_devices[port_id].data->nb_tx_queues) { 517599a2dd95SBruce Richardson rte_errno = EINVAL; 517699a2dd95SBruce Richardson return NULL; 517799a2dd95SBruce Richardson } 517899a2dd95SBruce Richardson 517999a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 518099a2dd95SBruce Richardson if (rte_eth_dev_is_tx_hairpin_queue(dev, queue_id)) { 518199a2dd95SBruce Richardson rte_errno = EINVAL; 518299a2dd95SBruce Richardson return NULL; 518399a2dd95SBruce Richardson } 518499a2dd95SBruce Richardson 518599a2dd95SBruce Richardson struct rte_eth_rxtx_callback *cb = rte_zmalloc(NULL, sizeof(*cb), 0); 518699a2dd95SBruce Richardson 518799a2dd95SBruce Richardson if (cb == NULL) { 518899a2dd95SBruce Richardson rte_errno = ENOMEM; 518999a2dd95SBruce Richardson return NULL; 519099a2dd95SBruce Richardson } 519199a2dd95SBruce Richardson 519299a2dd95SBruce Richardson cb->fn.tx = fn; 519399a2dd95SBruce Richardson cb->param = user_param; 519499a2dd95SBruce Richardson 519599a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_tx_cb_lock); 519699a2dd95SBruce Richardson /* Add the callbacks in fifo order. */ 519799a2dd95SBruce Richardson struct rte_eth_rxtx_callback *tail = 519899a2dd95SBruce Richardson rte_eth_devices[port_id].pre_tx_burst_cbs[queue_id]; 519999a2dd95SBruce Richardson 520099a2dd95SBruce Richardson if (!tail) { 520199a2dd95SBruce Richardson /* Stores to cb->fn and cb->param should complete before 520299a2dd95SBruce Richardson * cb is visible to data plane. 520399a2dd95SBruce Richardson */ 520499a2dd95SBruce Richardson __atomic_store_n( 520599a2dd95SBruce Richardson &rte_eth_devices[port_id].pre_tx_burst_cbs[queue_id], 520699a2dd95SBruce Richardson cb, __ATOMIC_RELEASE); 520799a2dd95SBruce Richardson 520899a2dd95SBruce Richardson } else { 520999a2dd95SBruce Richardson while (tail->next) 521099a2dd95SBruce Richardson tail = tail->next; 521199a2dd95SBruce Richardson /* Stores to cb->fn and cb->param should complete before 521299a2dd95SBruce Richardson * cb is visible to data plane. 521399a2dd95SBruce Richardson */ 521499a2dd95SBruce Richardson __atomic_store_n(&tail->next, cb, __ATOMIC_RELEASE); 521599a2dd95SBruce Richardson } 521699a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_tx_cb_lock); 521799a2dd95SBruce Richardson 521899a2dd95SBruce Richardson return cb; 521999a2dd95SBruce Richardson } 522099a2dd95SBruce Richardson 522199a2dd95SBruce Richardson int 522299a2dd95SBruce Richardson rte_eth_remove_rx_callback(uint16_t port_id, uint16_t queue_id, 522399a2dd95SBruce Richardson const struct rte_eth_rxtx_callback *user_cb) 522499a2dd95SBruce Richardson { 522599a2dd95SBruce Richardson #ifndef RTE_ETHDEV_RXTX_CALLBACKS 522699a2dd95SBruce Richardson return -ENOTSUP; 522799a2dd95SBruce Richardson #endif 522899a2dd95SBruce Richardson /* Check input parameters. */ 522999a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 523099a2dd95SBruce Richardson if (user_cb == NULL || 523199a2dd95SBruce Richardson queue_id >= rte_eth_devices[port_id].data->nb_rx_queues) 523299a2dd95SBruce Richardson return -EINVAL; 523399a2dd95SBruce Richardson 523499a2dd95SBruce Richardson struct rte_eth_dev *dev = &rte_eth_devices[port_id]; 523599a2dd95SBruce Richardson struct rte_eth_rxtx_callback *cb; 523699a2dd95SBruce Richardson struct rte_eth_rxtx_callback **prev_cb; 523799a2dd95SBruce Richardson int ret = -EINVAL; 523899a2dd95SBruce Richardson 523999a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_rx_cb_lock); 524099a2dd95SBruce Richardson prev_cb = &dev->post_rx_burst_cbs[queue_id]; 524199a2dd95SBruce Richardson for (; *prev_cb != NULL; prev_cb = &cb->next) { 524299a2dd95SBruce Richardson cb = *prev_cb; 524399a2dd95SBruce Richardson if (cb == user_cb) { 524499a2dd95SBruce Richardson /* Remove the user cb from the callback list. */ 524599a2dd95SBruce Richardson __atomic_store_n(prev_cb, cb->next, __ATOMIC_RELAXED); 524699a2dd95SBruce Richardson ret = 0; 524799a2dd95SBruce Richardson break; 524899a2dd95SBruce Richardson } 524999a2dd95SBruce Richardson } 525099a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_rx_cb_lock); 525199a2dd95SBruce Richardson 525299a2dd95SBruce Richardson return ret; 525399a2dd95SBruce Richardson } 525499a2dd95SBruce Richardson 525599a2dd95SBruce Richardson int 525699a2dd95SBruce Richardson rte_eth_remove_tx_callback(uint16_t port_id, uint16_t queue_id, 525799a2dd95SBruce Richardson const struct rte_eth_rxtx_callback *user_cb) 525899a2dd95SBruce Richardson { 525999a2dd95SBruce Richardson #ifndef RTE_ETHDEV_RXTX_CALLBACKS 526099a2dd95SBruce Richardson return -ENOTSUP; 526199a2dd95SBruce Richardson #endif 526299a2dd95SBruce Richardson /* Check input parameters. */ 526399a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 526499a2dd95SBruce Richardson if (user_cb == NULL || 526599a2dd95SBruce Richardson queue_id >= rte_eth_devices[port_id].data->nb_tx_queues) 526699a2dd95SBruce Richardson return -EINVAL; 526799a2dd95SBruce Richardson 526899a2dd95SBruce Richardson struct rte_eth_dev *dev = &rte_eth_devices[port_id]; 526999a2dd95SBruce Richardson int ret = -EINVAL; 527099a2dd95SBruce Richardson struct rte_eth_rxtx_callback *cb; 527199a2dd95SBruce Richardson struct rte_eth_rxtx_callback **prev_cb; 527299a2dd95SBruce Richardson 527399a2dd95SBruce Richardson rte_spinlock_lock(ð_dev_tx_cb_lock); 527499a2dd95SBruce Richardson prev_cb = &dev->pre_tx_burst_cbs[queue_id]; 527599a2dd95SBruce Richardson for (; *prev_cb != NULL; prev_cb = &cb->next) { 527699a2dd95SBruce Richardson cb = *prev_cb; 527799a2dd95SBruce Richardson if (cb == user_cb) { 527899a2dd95SBruce Richardson /* Remove the user cb from the callback list. */ 527999a2dd95SBruce Richardson __atomic_store_n(prev_cb, cb->next, __ATOMIC_RELAXED); 528099a2dd95SBruce Richardson ret = 0; 528199a2dd95SBruce Richardson break; 528299a2dd95SBruce Richardson } 528399a2dd95SBruce Richardson } 528499a2dd95SBruce Richardson rte_spinlock_unlock(ð_dev_tx_cb_lock); 528599a2dd95SBruce Richardson 528699a2dd95SBruce Richardson return ret; 528799a2dd95SBruce Richardson } 528899a2dd95SBruce Richardson 528999a2dd95SBruce Richardson int 529099a2dd95SBruce Richardson rte_eth_rx_queue_info_get(uint16_t port_id, uint16_t queue_id, 529199a2dd95SBruce Richardson struct rte_eth_rxq_info *qinfo) 529299a2dd95SBruce Richardson { 529399a2dd95SBruce Richardson struct rte_eth_dev *dev; 529499a2dd95SBruce Richardson 529599a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 529699a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 529753ef1b34SMin Hu (Connor) 529899a2dd95SBruce Richardson if (queue_id >= dev->data->nb_rx_queues) { 529999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid RX queue_id=%u\n", queue_id); 530099a2dd95SBruce Richardson return -EINVAL; 530199a2dd95SBruce Richardson } 530299a2dd95SBruce Richardson 530353ef1b34SMin Hu (Connor) if (qinfo == NULL) { 530453ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u Rx queue %u info to NULL\n", 530553ef1b34SMin Hu (Connor) port_id, queue_id); 530653ef1b34SMin Hu (Connor) return -EINVAL; 530753ef1b34SMin Hu (Connor) } 530853ef1b34SMin Hu (Connor) 530999a2dd95SBruce Richardson if (dev->data->rx_queues == NULL || 531099a2dd95SBruce Richardson dev->data->rx_queues[queue_id] == NULL) { 531199a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 531299a2dd95SBruce Richardson "Rx queue %"PRIu16" of device with port_id=%" 531399a2dd95SBruce Richardson PRIu16" has not been setup\n", 531499a2dd95SBruce Richardson queue_id, port_id); 531599a2dd95SBruce Richardson return -EINVAL; 531699a2dd95SBruce Richardson } 531799a2dd95SBruce Richardson 531899a2dd95SBruce Richardson if (rte_eth_dev_is_rx_hairpin_queue(dev, queue_id)) { 531999a2dd95SBruce Richardson RTE_ETHDEV_LOG(INFO, 532099a2dd95SBruce Richardson "Can't get hairpin Rx queue %"PRIu16" info of device with port_id=%"PRIu16"\n", 532199a2dd95SBruce Richardson queue_id, port_id); 532299a2dd95SBruce Richardson return -EINVAL; 532399a2dd95SBruce Richardson } 532499a2dd95SBruce Richardson 532599a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rxq_info_get, -ENOTSUP); 532699a2dd95SBruce Richardson 532799a2dd95SBruce Richardson memset(qinfo, 0, sizeof(*qinfo)); 532899a2dd95SBruce Richardson dev->dev_ops->rxq_info_get(dev, queue_id, qinfo); 53299ad9ff47SLijun Ou qinfo->queue_state = dev->data->rx_queue_state[queue_id]; 53309ad9ff47SLijun Ou 533199a2dd95SBruce Richardson return 0; 533299a2dd95SBruce Richardson } 533399a2dd95SBruce Richardson 533499a2dd95SBruce Richardson int 533599a2dd95SBruce Richardson rte_eth_tx_queue_info_get(uint16_t port_id, uint16_t queue_id, 533699a2dd95SBruce Richardson struct rte_eth_txq_info *qinfo) 533799a2dd95SBruce Richardson { 533899a2dd95SBruce Richardson struct rte_eth_dev *dev; 533999a2dd95SBruce Richardson 534099a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 534199a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 534253ef1b34SMin Hu (Connor) 534399a2dd95SBruce Richardson if (queue_id >= dev->data->nb_tx_queues) { 534499a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid TX queue_id=%u\n", queue_id); 534599a2dd95SBruce Richardson return -EINVAL; 534699a2dd95SBruce Richardson } 534799a2dd95SBruce Richardson 534853ef1b34SMin Hu (Connor) if (qinfo == NULL) { 534953ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot get ethdev port %u Tx queue %u info to NULL\n", 535053ef1b34SMin Hu (Connor) port_id, queue_id); 535153ef1b34SMin Hu (Connor) return -EINVAL; 535253ef1b34SMin Hu (Connor) } 535353ef1b34SMin Hu (Connor) 535499a2dd95SBruce Richardson if (dev->data->tx_queues == NULL || 535599a2dd95SBruce Richardson dev->data->tx_queues[queue_id] == NULL) { 535699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, 535799a2dd95SBruce Richardson "Tx queue %"PRIu16" of device with port_id=%" 535899a2dd95SBruce Richardson PRIu16" has not been setup\n", 535999a2dd95SBruce Richardson queue_id, port_id); 536099a2dd95SBruce Richardson return -EINVAL; 536199a2dd95SBruce Richardson } 536299a2dd95SBruce Richardson 536399a2dd95SBruce Richardson if (rte_eth_dev_is_tx_hairpin_queue(dev, queue_id)) { 536499a2dd95SBruce Richardson RTE_ETHDEV_LOG(INFO, 536599a2dd95SBruce Richardson "Can't get hairpin Tx queue %"PRIu16" info of device with port_id=%"PRIu16"\n", 536699a2dd95SBruce Richardson queue_id, port_id); 536799a2dd95SBruce Richardson return -EINVAL; 536899a2dd95SBruce Richardson } 536999a2dd95SBruce Richardson 537099a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->txq_info_get, -ENOTSUP); 537199a2dd95SBruce Richardson 537299a2dd95SBruce Richardson memset(qinfo, 0, sizeof(*qinfo)); 537399a2dd95SBruce Richardson dev->dev_ops->txq_info_get(dev, queue_id, qinfo); 53749ad9ff47SLijun Ou qinfo->queue_state = dev->data->tx_queue_state[queue_id]; 537599a2dd95SBruce Richardson 537699a2dd95SBruce Richardson return 0; 537799a2dd95SBruce Richardson } 537899a2dd95SBruce Richardson 537999a2dd95SBruce Richardson int 538099a2dd95SBruce Richardson rte_eth_rx_burst_mode_get(uint16_t port_id, uint16_t queue_id, 538199a2dd95SBruce Richardson struct rte_eth_burst_mode *mode) 538299a2dd95SBruce Richardson { 538399a2dd95SBruce Richardson struct rte_eth_dev *dev; 538499a2dd95SBruce Richardson 538599a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 538699a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 538799a2dd95SBruce Richardson 538899a2dd95SBruce Richardson if (queue_id >= dev->data->nb_rx_queues) { 538999a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid RX queue_id=%u\n", queue_id); 539099a2dd95SBruce Richardson return -EINVAL; 539199a2dd95SBruce Richardson } 539299a2dd95SBruce Richardson 539353ef1b34SMin Hu (Connor) if (mode == NULL) { 539453ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 539553ef1b34SMin Hu (Connor) "Cannot get ethdev port %u Rx queue %u burst mode to NULL\n", 539653ef1b34SMin Hu (Connor) port_id, queue_id); 539753ef1b34SMin Hu (Connor) return -EINVAL; 539853ef1b34SMin Hu (Connor) } 539953ef1b34SMin Hu (Connor) 540099a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_burst_mode_get, -ENOTSUP); 540199a2dd95SBruce Richardson memset(mode, 0, sizeof(*mode)); 540299a2dd95SBruce Richardson return eth_err(port_id, 540399a2dd95SBruce Richardson dev->dev_ops->rx_burst_mode_get(dev, queue_id, mode)); 540499a2dd95SBruce Richardson } 540599a2dd95SBruce Richardson 540699a2dd95SBruce Richardson int 540799a2dd95SBruce Richardson rte_eth_tx_burst_mode_get(uint16_t port_id, uint16_t queue_id, 540899a2dd95SBruce Richardson struct rte_eth_burst_mode *mode) 540999a2dd95SBruce Richardson { 541099a2dd95SBruce Richardson struct rte_eth_dev *dev; 541199a2dd95SBruce Richardson 541299a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 541399a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 541499a2dd95SBruce Richardson 541599a2dd95SBruce Richardson if (queue_id >= dev->data->nb_tx_queues) { 541699a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid TX queue_id=%u\n", queue_id); 541799a2dd95SBruce Richardson return -EINVAL; 541899a2dd95SBruce Richardson } 541999a2dd95SBruce Richardson 542053ef1b34SMin Hu (Connor) if (mode == NULL) { 542153ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 542253ef1b34SMin Hu (Connor) "Cannot get ethdev port %u Tx queue %u burst mode to NULL\n", 542353ef1b34SMin Hu (Connor) port_id, queue_id); 542453ef1b34SMin Hu (Connor) return -EINVAL; 542553ef1b34SMin Hu (Connor) } 542653ef1b34SMin Hu (Connor) 542799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->tx_burst_mode_get, -ENOTSUP); 542899a2dd95SBruce Richardson memset(mode, 0, sizeof(*mode)); 542999a2dd95SBruce Richardson return eth_err(port_id, 543099a2dd95SBruce Richardson dev->dev_ops->tx_burst_mode_get(dev, queue_id, mode)); 543199a2dd95SBruce Richardson } 543299a2dd95SBruce Richardson 543399a2dd95SBruce Richardson int 543499a2dd95SBruce Richardson rte_eth_get_monitor_addr(uint16_t port_id, uint16_t queue_id, 543599a2dd95SBruce Richardson struct rte_power_monitor_cond *pmc) 543699a2dd95SBruce Richardson { 543799a2dd95SBruce Richardson struct rte_eth_dev *dev; 543899a2dd95SBruce Richardson 543999a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 544099a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 544199a2dd95SBruce Richardson 544299a2dd95SBruce Richardson if (queue_id >= dev->data->nb_rx_queues) { 544399a2dd95SBruce Richardson RTE_ETHDEV_LOG(ERR, "Invalid Rx queue_id=%u\n", queue_id); 544499a2dd95SBruce Richardson return -EINVAL; 544599a2dd95SBruce Richardson } 544699a2dd95SBruce Richardson 544799a2dd95SBruce Richardson if (pmc == NULL) { 544853ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 544953ef1b34SMin Hu (Connor) "Cannot get ethdev port %u Rx queue %u power monitor condition to NULL\n", 545053ef1b34SMin Hu (Connor) port_id, queue_id); 545199a2dd95SBruce Richardson return -EINVAL; 545299a2dd95SBruce Richardson } 545399a2dd95SBruce Richardson 545453ef1b34SMin Hu (Connor) RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_monitor_addr, -ENOTSUP); 545599a2dd95SBruce Richardson return eth_err(port_id, 545653ef1b34SMin Hu (Connor) dev->dev_ops->get_monitor_addr(dev->data->rx_queues[queue_id], pmc)); 545799a2dd95SBruce Richardson } 545899a2dd95SBruce Richardson 545999a2dd95SBruce Richardson int 546099a2dd95SBruce Richardson rte_eth_dev_set_mc_addr_list(uint16_t port_id, 546199a2dd95SBruce Richardson struct rte_ether_addr *mc_addr_set, 546299a2dd95SBruce Richardson uint32_t nb_mc_addr) 546399a2dd95SBruce Richardson { 546499a2dd95SBruce Richardson struct rte_eth_dev *dev; 546599a2dd95SBruce Richardson 546699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 546799a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 546853ef1b34SMin Hu (Connor) 546999a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_mc_addr_list, -ENOTSUP); 547099a2dd95SBruce Richardson return eth_err(port_id, dev->dev_ops->set_mc_addr_list(dev, 547199a2dd95SBruce Richardson mc_addr_set, nb_mc_addr)); 547299a2dd95SBruce Richardson } 547399a2dd95SBruce Richardson 547499a2dd95SBruce Richardson int 547599a2dd95SBruce Richardson rte_eth_timesync_enable(uint16_t port_id) 547699a2dd95SBruce Richardson { 547799a2dd95SBruce Richardson struct rte_eth_dev *dev; 547899a2dd95SBruce Richardson 547999a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 548099a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 548199a2dd95SBruce Richardson 548299a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_enable, -ENOTSUP); 548399a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->timesync_enable)(dev)); 548499a2dd95SBruce Richardson } 548599a2dd95SBruce Richardson 548699a2dd95SBruce Richardson int 548799a2dd95SBruce Richardson rte_eth_timesync_disable(uint16_t port_id) 548899a2dd95SBruce Richardson { 548999a2dd95SBruce Richardson struct rte_eth_dev *dev; 549099a2dd95SBruce Richardson 549199a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 549299a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 549399a2dd95SBruce Richardson 549499a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_disable, -ENOTSUP); 549599a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->timesync_disable)(dev)); 549699a2dd95SBruce Richardson } 549799a2dd95SBruce Richardson 549899a2dd95SBruce Richardson int 549999a2dd95SBruce Richardson rte_eth_timesync_read_rx_timestamp(uint16_t port_id, struct timespec *timestamp, 550099a2dd95SBruce Richardson uint32_t flags) 550199a2dd95SBruce Richardson { 550299a2dd95SBruce Richardson struct rte_eth_dev *dev; 550399a2dd95SBruce Richardson 550499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 550599a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 550699a2dd95SBruce Richardson 550753ef1b34SMin Hu (Connor) if (timestamp == NULL) { 550853ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 550953ef1b34SMin Hu (Connor) "Cannot read ethdev port %u Rx timestamp to NULL\n", 551053ef1b34SMin Hu (Connor) port_id); 551153ef1b34SMin Hu (Connor) return -EINVAL; 551253ef1b34SMin Hu (Connor) } 551353ef1b34SMin Hu (Connor) 551499a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_rx_timestamp, -ENOTSUP); 551599a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->timesync_read_rx_timestamp) 551699a2dd95SBruce Richardson (dev, timestamp, flags)); 551799a2dd95SBruce Richardson } 551899a2dd95SBruce Richardson 551999a2dd95SBruce Richardson int 552099a2dd95SBruce Richardson rte_eth_timesync_read_tx_timestamp(uint16_t port_id, 552199a2dd95SBruce Richardson struct timespec *timestamp) 552299a2dd95SBruce Richardson { 552399a2dd95SBruce Richardson struct rte_eth_dev *dev; 552499a2dd95SBruce Richardson 552599a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 552699a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 552799a2dd95SBruce Richardson 552853ef1b34SMin Hu (Connor) if (timestamp == NULL) { 552953ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 553053ef1b34SMin Hu (Connor) "Cannot read ethdev port %u Tx timestamp to NULL\n", 553153ef1b34SMin Hu (Connor) port_id); 553253ef1b34SMin Hu (Connor) return -EINVAL; 553353ef1b34SMin Hu (Connor) } 553453ef1b34SMin Hu (Connor) 553599a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_tx_timestamp, -ENOTSUP); 553699a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->timesync_read_tx_timestamp) 553799a2dd95SBruce Richardson (dev, timestamp)); 553899a2dd95SBruce Richardson } 553999a2dd95SBruce Richardson 554099a2dd95SBruce Richardson int 554199a2dd95SBruce Richardson rte_eth_timesync_adjust_time(uint16_t port_id, int64_t delta) 554299a2dd95SBruce Richardson { 554399a2dd95SBruce Richardson struct rte_eth_dev *dev; 554499a2dd95SBruce Richardson 554599a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 554699a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 554799a2dd95SBruce Richardson 554899a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_adjust_time, -ENOTSUP); 554953ef1b34SMin Hu (Connor) return eth_err(port_id, (*dev->dev_ops->timesync_adjust_time)(dev, delta)); 555099a2dd95SBruce Richardson } 555199a2dd95SBruce Richardson 555299a2dd95SBruce Richardson int 555399a2dd95SBruce Richardson rte_eth_timesync_read_time(uint16_t port_id, struct timespec *timestamp) 555499a2dd95SBruce Richardson { 555599a2dd95SBruce Richardson struct rte_eth_dev *dev; 555699a2dd95SBruce Richardson 555799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 555899a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 555999a2dd95SBruce Richardson 556053ef1b34SMin Hu (Connor) if (timestamp == NULL) { 556153ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 556253ef1b34SMin Hu (Connor) "Cannot read ethdev port %u timesync time to NULL\n", 556353ef1b34SMin Hu (Connor) port_id); 556453ef1b34SMin Hu (Connor) return -EINVAL; 556553ef1b34SMin Hu (Connor) } 556653ef1b34SMin Hu (Connor) 556799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_read_time, -ENOTSUP); 556899a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->timesync_read_time)(dev, 556999a2dd95SBruce Richardson timestamp)); 557099a2dd95SBruce Richardson } 557199a2dd95SBruce Richardson 557299a2dd95SBruce Richardson int 557399a2dd95SBruce Richardson rte_eth_timesync_write_time(uint16_t port_id, const struct timespec *timestamp) 557499a2dd95SBruce Richardson { 557599a2dd95SBruce Richardson struct rte_eth_dev *dev; 557699a2dd95SBruce Richardson 557799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 557899a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 557999a2dd95SBruce Richardson 558053ef1b34SMin Hu (Connor) if (timestamp == NULL) { 558153ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 558253ef1b34SMin Hu (Connor) "Cannot write ethdev port %u timesync from NULL time\n", 558353ef1b34SMin Hu (Connor) port_id); 558453ef1b34SMin Hu (Connor) return -EINVAL; 558553ef1b34SMin Hu (Connor) } 558653ef1b34SMin Hu (Connor) 558799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->timesync_write_time, -ENOTSUP); 558899a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->timesync_write_time)(dev, 558999a2dd95SBruce Richardson timestamp)); 559099a2dd95SBruce Richardson } 559199a2dd95SBruce Richardson 559299a2dd95SBruce Richardson int 559399a2dd95SBruce Richardson rte_eth_read_clock(uint16_t port_id, uint64_t *clock) 559499a2dd95SBruce Richardson { 559599a2dd95SBruce Richardson struct rte_eth_dev *dev; 559699a2dd95SBruce Richardson 559799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 559899a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 559999a2dd95SBruce Richardson 560053ef1b34SMin Hu (Connor) if (clock == NULL) { 560153ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, "Cannot read ethdev port %u clock to NULL\n", 560253ef1b34SMin Hu (Connor) port_id); 560353ef1b34SMin Hu (Connor) return -EINVAL; 560453ef1b34SMin Hu (Connor) } 560553ef1b34SMin Hu (Connor) 560699a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->read_clock, -ENOTSUP); 560799a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->read_clock)(dev, clock)); 560899a2dd95SBruce Richardson } 560999a2dd95SBruce Richardson 561099a2dd95SBruce Richardson int 561199a2dd95SBruce Richardson rte_eth_dev_get_reg_info(uint16_t port_id, struct rte_dev_reg_info *info) 561299a2dd95SBruce Richardson { 561399a2dd95SBruce Richardson struct rte_eth_dev *dev; 561499a2dd95SBruce Richardson 561599a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 561699a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 561753ef1b34SMin Hu (Connor) 561853ef1b34SMin Hu (Connor) if (info == NULL) { 561953ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 562053ef1b34SMin Hu (Connor) "Cannot get ethdev port %u register info to NULL\n", 562153ef1b34SMin Hu (Connor) port_id); 562253ef1b34SMin Hu (Connor) return -EINVAL; 562353ef1b34SMin Hu (Connor) } 562453ef1b34SMin Hu (Connor) 562599a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_reg, -ENOTSUP); 562699a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->get_reg)(dev, info)); 562799a2dd95SBruce Richardson } 562899a2dd95SBruce Richardson 562999a2dd95SBruce Richardson int 563099a2dd95SBruce Richardson rte_eth_dev_get_eeprom_length(uint16_t port_id) 563199a2dd95SBruce Richardson { 563299a2dd95SBruce Richardson struct rte_eth_dev *dev; 563399a2dd95SBruce Richardson 563499a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 563599a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 563653ef1b34SMin Hu (Connor) 563799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_eeprom_length, -ENOTSUP); 563899a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->get_eeprom_length)(dev)); 563999a2dd95SBruce Richardson } 564099a2dd95SBruce Richardson 564199a2dd95SBruce Richardson int 564299a2dd95SBruce Richardson rte_eth_dev_get_eeprom(uint16_t port_id, struct rte_dev_eeprom_info *info) 564399a2dd95SBruce Richardson { 564499a2dd95SBruce Richardson struct rte_eth_dev *dev; 564599a2dd95SBruce Richardson 564699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 564799a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 564853ef1b34SMin Hu (Connor) 564953ef1b34SMin Hu (Connor) if (info == NULL) { 565053ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 565153ef1b34SMin Hu (Connor) "Cannot get ethdev port %u EEPROM info to NULL\n", 565253ef1b34SMin Hu (Connor) port_id); 565353ef1b34SMin Hu (Connor) return -EINVAL; 565453ef1b34SMin Hu (Connor) } 565553ef1b34SMin Hu (Connor) 565699a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_eeprom, -ENOTSUP); 565799a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->get_eeprom)(dev, info)); 565899a2dd95SBruce Richardson } 565999a2dd95SBruce Richardson 566099a2dd95SBruce Richardson int 566199a2dd95SBruce Richardson rte_eth_dev_set_eeprom(uint16_t port_id, struct rte_dev_eeprom_info *info) 566299a2dd95SBruce Richardson { 566399a2dd95SBruce Richardson struct rte_eth_dev *dev; 566499a2dd95SBruce Richardson 566599a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 566699a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 566753ef1b34SMin Hu (Connor) 566853ef1b34SMin Hu (Connor) if (info == NULL) { 566953ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 567053ef1b34SMin Hu (Connor) "Cannot set ethdev port %u EEPROM from NULL info\n", 567153ef1b34SMin Hu (Connor) port_id); 567253ef1b34SMin Hu (Connor) return -EINVAL; 567353ef1b34SMin Hu (Connor) } 567453ef1b34SMin Hu (Connor) 567599a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->set_eeprom, -ENOTSUP); 567699a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->set_eeprom)(dev, info)); 567799a2dd95SBruce Richardson } 567899a2dd95SBruce Richardson 567999a2dd95SBruce Richardson int 568099a2dd95SBruce Richardson rte_eth_dev_get_module_info(uint16_t port_id, 568199a2dd95SBruce Richardson struct rte_eth_dev_module_info *modinfo) 568299a2dd95SBruce Richardson { 568399a2dd95SBruce Richardson struct rte_eth_dev *dev; 568499a2dd95SBruce Richardson 568599a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 568699a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 568753ef1b34SMin Hu (Connor) 568853ef1b34SMin Hu (Connor) if (modinfo == NULL) { 568953ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 569053ef1b34SMin Hu (Connor) "Cannot get ethdev port %u EEPROM module info to NULL\n", 569153ef1b34SMin Hu (Connor) port_id); 569253ef1b34SMin Hu (Connor) return -EINVAL; 569353ef1b34SMin Hu (Connor) } 569453ef1b34SMin Hu (Connor) 569599a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_module_info, -ENOTSUP); 569699a2dd95SBruce Richardson return (*dev->dev_ops->get_module_info)(dev, modinfo); 569799a2dd95SBruce Richardson } 569899a2dd95SBruce Richardson 569999a2dd95SBruce Richardson int 570099a2dd95SBruce Richardson rte_eth_dev_get_module_eeprom(uint16_t port_id, 570199a2dd95SBruce Richardson struct rte_dev_eeprom_info *info) 570299a2dd95SBruce Richardson { 570399a2dd95SBruce Richardson struct rte_eth_dev *dev; 570499a2dd95SBruce Richardson 570599a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 570699a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 570753ef1b34SMin Hu (Connor) 570853ef1b34SMin Hu (Connor) if (info == NULL) { 570953ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 571053ef1b34SMin Hu (Connor) "Cannot get ethdev port %u module EEPROM info to NULL\n", 571153ef1b34SMin Hu (Connor) port_id); 571253ef1b34SMin Hu (Connor) return -EINVAL; 571353ef1b34SMin Hu (Connor) } 571453ef1b34SMin Hu (Connor) 571553ef1b34SMin Hu (Connor) if (info->data == NULL) { 571653ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 571753ef1b34SMin Hu (Connor) "Cannot get ethdev port %u module EEPROM data to NULL\n", 571853ef1b34SMin Hu (Connor) port_id); 571953ef1b34SMin Hu (Connor) return -EINVAL; 572053ef1b34SMin Hu (Connor) } 572153ef1b34SMin Hu (Connor) 572253ef1b34SMin Hu (Connor) if (info->length == 0) { 572353ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 572453ef1b34SMin Hu (Connor) "Cannot get ethdev port %u module EEPROM to data with zero size\n", 572553ef1b34SMin Hu (Connor) port_id); 572653ef1b34SMin Hu (Connor) return -EINVAL; 572753ef1b34SMin Hu (Connor) } 572853ef1b34SMin Hu (Connor) 572999a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_module_eeprom, -ENOTSUP); 573099a2dd95SBruce Richardson return (*dev->dev_ops->get_module_eeprom)(dev, info); 573199a2dd95SBruce Richardson } 573299a2dd95SBruce Richardson 573399a2dd95SBruce Richardson int 573499a2dd95SBruce Richardson rte_eth_dev_get_dcb_info(uint16_t port_id, 573599a2dd95SBruce Richardson struct rte_eth_dcb_info *dcb_info) 573699a2dd95SBruce Richardson { 573799a2dd95SBruce Richardson struct rte_eth_dev *dev; 573899a2dd95SBruce Richardson 573999a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 574099a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 574153ef1b34SMin Hu (Connor) 574253ef1b34SMin Hu (Connor) if (dcb_info == NULL) { 574353ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 574453ef1b34SMin Hu (Connor) "Cannot get ethdev port %u DCB info to NULL\n", 574553ef1b34SMin Hu (Connor) port_id); 574653ef1b34SMin Hu (Connor) return -EINVAL; 574753ef1b34SMin Hu (Connor) } 574853ef1b34SMin Hu (Connor) 574999a2dd95SBruce Richardson memset(dcb_info, 0, sizeof(struct rte_eth_dcb_info)); 575099a2dd95SBruce Richardson 575199a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->get_dcb_info, -ENOTSUP); 575299a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->get_dcb_info)(dev, dcb_info)); 575399a2dd95SBruce Richardson } 575499a2dd95SBruce Richardson 575599a2dd95SBruce Richardson static void 575699a2dd95SBruce Richardson eth_dev_adjust_nb_desc(uint16_t *nb_desc, 575799a2dd95SBruce Richardson const struct rte_eth_desc_lim *desc_lim) 575899a2dd95SBruce Richardson { 575999a2dd95SBruce Richardson if (desc_lim->nb_align != 0) 576099a2dd95SBruce Richardson *nb_desc = RTE_ALIGN_CEIL(*nb_desc, desc_lim->nb_align); 576199a2dd95SBruce Richardson 576299a2dd95SBruce Richardson if (desc_lim->nb_max != 0) 576399a2dd95SBruce Richardson *nb_desc = RTE_MIN(*nb_desc, desc_lim->nb_max); 576499a2dd95SBruce Richardson 576599a2dd95SBruce Richardson *nb_desc = RTE_MAX(*nb_desc, desc_lim->nb_min); 576699a2dd95SBruce Richardson } 576799a2dd95SBruce Richardson 576899a2dd95SBruce Richardson int 576999a2dd95SBruce Richardson rte_eth_dev_adjust_nb_rx_tx_desc(uint16_t port_id, 577099a2dd95SBruce Richardson uint16_t *nb_rx_desc, 577199a2dd95SBruce Richardson uint16_t *nb_tx_desc) 577299a2dd95SBruce Richardson { 577399a2dd95SBruce Richardson struct rte_eth_dev_info dev_info; 577499a2dd95SBruce Richardson int ret; 577599a2dd95SBruce Richardson 577699a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 577799a2dd95SBruce Richardson 577899a2dd95SBruce Richardson ret = rte_eth_dev_info_get(port_id, &dev_info); 577999a2dd95SBruce Richardson if (ret != 0) 578099a2dd95SBruce Richardson return ret; 578199a2dd95SBruce Richardson 578299a2dd95SBruce Richardson if (nb_rx_desc != NULL) 578399a2dd95SBruce Richardson eth_dev_adjust_nb_desc(nb_rx_desc, &dev_info.rx_desc_lim); 578499a2dd95SBruce Richardson 578599a2dd95SBruce Richardson if (nb_tx_desc != NULL) 578699a2dd95SBruce Richardson eth_dev_adjust_nb_desc(nb_tx_desc, &dev_info.tx_desc_lim); 578799a2dd95SBruce Richardson 578899a2dd95SBruce Richardson return 0; 578999a2dd95SBruce Richardson } 579099a2dd95SBruce Richardson 579199a2dd95SBruce Richardson int 579299a2dd95SBruce Richardson rte_eth_dev_hairpin_capability_get(uint16_t port_id, 579399a2dd95SBruce Richardson struct rte_eth_hairpin_cap *cap) 579499a2dd95SBruce Richardson { 579599a2dd95SBruce Richardson struct rte_eth_dev *dev; 579699a2dd95SBruce Richardson 579799a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 579899a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 579953ef1b34SMin Hu (Connor) 580053ef1b34SMin Hu (Connor) if (cap == NULL) { 580153ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 580253ef1b34SMin Hu (Connor) "Cannot get ethdev port %u hairpin capability to NULL\n", 580353ef1b34SMin Hu (Connor) port_id); 580453ef1b34SMin Hu (Connor) return -EINVAL; 580553ef1b34SMin Hu (Connor) } 580653ef1b34SMin Hu (Connor) 580799a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_cap_get, -ENOTSUP); 580899a2dd95SBruce Richardson memset(cap, 0, sizeof(*cap)); 580999a2dd95SBruce Richardson return eth_err(port_id, (*dev->dev_ops->hairpin_cap_get)(dev, cap)); 581099a2dd95SBruce Richardson } 581199a2dd95SBruce Richardson 581299a2dd95SBruce Richardson int 581399a2dd95SBruce Richardson rte_eth_dev_is_rx_hairpin_queue(struct rte_eth_dev *dev, uint16_t queue_id) 581499a2dd95SBruce Richardson { 581553ef1b34SMin Hu (Connor) if (dev->data->rx_queue_state[queue_id] == RTE_ETH_QUEUE_STATE_HAIRPIN) 581699a2dd95SBruce Richardson return 1; 581799a2dd95SBruce Richardson return 0; 581899a2dd95SBruce Richardson } 581999a2dd95SBruce Richardson 582099a2dd95SBruce Richardson int 582199a2dd95SBruce Richardson rte_eth_dev_is_tx_hairpin_queue(struct rte_eth_dev *dev, uint16_t queue_id) 582299a2dd95SBruce Richardson { 582353ef1b34SMin Hu (Connor) if (dev->data->tx_queue_state[queue_id] == RTE_ETH_QUEUE_STATE_HAIRPIN) 582499a2dd95SBruce Richardson return 1; 582599a2dd95SBruce Richardson return 0; 582699a2dd95SBruce Richardson } 582799a2dd95SBruce Richardson 582899a2dd95SBruce Richardson int 582999a2dd95SBruce Richardson rte_eth_dev_pool_ops_supported(uint16_t port_id, const char *pool) 583099a2dd95SBruce Richardson { 583199a2dd95SBruce Richardson struct rte_eth_dev *dev; 583299a2dd95SBruce Richardson 583399a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 583499a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 583599a2dd95SBruce Richardson 583653ef1b34SMin Hu (Connor) if (pool == NULL) { 583753ef1b34SMin Hu (Connor) RTE_ETHDEV_LOG(ERR, 583853ef1b34SMin Hu (Connor) "Cannot test ethdev port %u mempool operation from NULL pool\n", 583953ef1b34SMin Hu (Connor) port_id); 584053ef1b34SMin Hu (Connor) return -EINVAL; 584153ef1b34SMin Hu (Connor) } 584253ef1b34SMin Hu (Connor) 584399a2dd95SBruce Richardson if (*dev->dev_ops->pool_ops_supported == NULL) 584499a2dd95SBruce Richardson return 1; /* all pools are supported */ 584599a2dd95SBruce Richardson 584699a2dd95SBruce Richardson return (*dev->dev_ops->pool_ops_supported)(dev, pool); 584799a2dd95SBruce Richardson } 584899a2dd95SBruce Richardson 584999a2dd95SBruce Richardson /** 585099a2dd95SBruce Richardson * A set of values to describe the possible states of a switch domain. 585199a2dd95SBruce Richardson */ 585299a2dd95SBruce Richardson enum rte_eth_switch_domain_state { 585399a2dd95SBruce Richardson RTE_ETH_SWITCH_DOMAIN_UNUSED = 0, 585499a2dd95SBruce Richardson RTE_ETH_SWITCH_DOMAIN_ALLOCATED 585599a2dd95SBruce Richardson }; 585699a2dd95SBruce Richardson 585799a2dd95SBruce Richardson /** 585899a2dd95SBruce Richardson * Array of switch domains available for allocation. Array is sized to 585999a2dd95SBruce Richardson * RTE_MAX_ETHPORTS elements as there cannot be more active switch domains than 586099a2dd95SBruce Richardson * ethdev ports in a single process. 586199a2dd95SBruce Richardson */ 586299a2dd95SBruce Richardson static struct rte_eth_dev_switch { 586399a2dd95SBruce Richardson enum rte_eth_switch_domain_state state; 586499a2dd95SBruce Richardson } eth_dev_switch_domains[RTE_MAX_ETHPORTS]; 586599a2dd95SBruce Richardson 586699a2dd95SBruce Richardson int 586799a2dd95SBruce Richardson rte_eth_switch_domain_alloc(uint16_t *domain_id) 586899a2dd95SBruce Richardson { 586999a2dd95SBruce Richardson uint16_t i; 587099a2dd95SBruce Richardson 587199a2dd95SBruce Richardson *domain_id = RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID; 587299a2dd95SBruce Richardson 587399a2dd95SBruce Richardson for (i = 0; i < RTE_MAX_ETHPORTS; i++) { 587499a2dd95SBruce Richardson if (eth_dev_switch_domains[i].state == 587599a2dd95SBruce Richardson RTE_ETH_SWITCH_DOMAIN_UNUSED) { 587699a2dd95SBruce Richardson eth_dev_switch_domains[i].state = 587799a2dd95SBruce Richardson RTE_ETH_SWITCH_DOMAIN_ALLOCATED; 587899a2dd95SBruce Richardson *domain_id = i; 587999a2dd95SBruce Richardson return 0; 588099a2dd95SBruce Richardson } 588199a2dd95SBruce Richardson } 588299a2dd95SBruce Richardson 588399a2dd95SBruce Richardson return -ENOSPC; 588499a2dd95SBruce Richardson } 588599a2dd95SBruce Richardson 588699a2dd95SBruce Richardson int 588799a2dd95SBruce Richardson rte_eth_switch_domain_free(uint16_t domain_id) 588899a2dd95SBruce Richardson { 588999a2dd95SBruce Richardson if (domain_id == RTE_ETH_DEV_SWITCH_DOMAIN_ID_INVALID || 589099a2dd95SBruce Richardson domain_id >= RTE_MAX_ETHPORTS) 589199a2dd95SBruce Richardson return -EINVAL; 589299a2dd95SBruce Richardson 589399a2dd95SBruce Richardson if (eth_dev_switch_domains[domain_id].state != 589499a2dd95SBruce Richardson RTE_ETH_SWITCH_DOMAIN_ALLOCATED) 589599a2dd95SBruce Richardson return -EINVAL; 589699a2dd95SBruce Richardson 589799a2dd95SBruce Richardson eth_dev_switch_domains[domain_id].state = RTE_ETH_SWITCH_DOMAIN_UNUSED; 589899a2dd95SBruce Richardson 589999a2dd95SBruce Richardson return 0; 590099a2dd95SBruce Richardson } 590199a2dd95SBruce Richardson 590299a2dd95SBruce Richardson static int 590399a2dd95SBruce Richardson eth_dev_devargs_tokenise(struct rte_kvargs *arglist, const char *str_in) 590499a2dd95SBruce Richardson { 590599a2dd95SBruce Richardson int state; 590699a2dd95SBruce Richardson struct rte_kvargs_pair *pair; 590799a2dd95SBruce Richardson char *letter; 590899a2dd95SBruce Richardson 590999a2dd95SBruce Richardson arglist->str = strdup(str_in); 591099a2dd95SBruce Richardson if (arglist->str == NULL) 591199a2dd95SBruce Richardson return -ENOMEM; 591299a2dd95SBruce Richardson 591399a2dd95SBruce Richardson letter = arglist->str; 591499a2dd95SBruce Richardson state = 0; 591599a2dd95SBruce Richardson arglist->count = 0; 591699a2dd95SBruce Richardson pair = &arglist->pairs[0]; 591799a2dd95SBruce Richardson while (1) { 591899a2dd95SBruce Richardson switch (state) { 591999a2dd95SBruce Richardson case 0: /* Initial */ 592099a2dd95SBruce Richardson if (*letter == '=') 592199a2dd95SBruce Richardson return -EINVAL; 592299a2dd95SBruce Richardson else if (*letter == '\0') 592399a2dd95SBruce Richardson return 0; 592499a2dd95SBruce Richardson 592599a2dd95SBruce Richardson state = 1; 592699a2dd95SBruce Richardson pair->key = letter; 592799a2dd95SBruce Richardson /* fall-thru */ 592899a2dd95SBruce Richardson 592999a2dd95SBruce Richardson case 1: /* Parsing key */ 593099a2dd95SBruce Richardson if (*letter == '=') { 593199a2dd95SBruce Richardson *letter = '\0'; 593299a2dd95SBruce Richardson pair->value = letter + 1; 593399a2dd95SBruce Richardson state = 2; 593499a2dd95SBruce Richardson } else if (*letter == ',' || *letter == '\0') 593599a2dd95SBruce Richardson return -EINVAL; 593699a2dd95SBruce Richardson break; 593799a2dd95SBruce Richardson 593899a2dd95SBruce Richardson 593999a2dd95SBruce Richardson case 2: /* Parsing value */ 594099a2dd95SBruce Richardson if (*letter == '[') 594199a2dd95SBruce Richardson state = 3; 594299a2dd95SBruce Richardson else if (*letter == ',') { 594399a2dd95SBruce Richardson *letter = '\0'; 594499a2dd95SBruce Richardson arglist->count++; 594599a2dd95SBruce Richardson pair = &arglist->pairs[arglist->count]; 594699a2dd95SBruce Richardson state = 0; 594799a2dd95SBruce Richardson } else if (*letter == '\0') { 594899a2dd95SBruce Richardson letter--; 594999a2dd95SBruce Richardson arglist->count++; 595099a2dd95SBruce Richardson pair = &arglist->pairs[arglist->count]; 595199a2dd95SBruce Richardson state = 0; 595299a2dd95SBruce Richardson } 595399a2dd95SBruce Richardson break; 595499a2dd95SBruce Richardson 595599a2dd95SBruce Richardson case 3: /* Parsing list */ 595699a2dd95SBruce Richardson if (*letter == ']') 595799a2dd95SBruce Richardson state = 2; 595899a2dd95SBruce Richardson else if (*letter == '\0') 595999a2dd95SBruce Richardson return -EINVAL; 596099a2dd95SBruce Richardson break; 596199a2dd95SBruce Richardson } 596299a2dd95SBruce Richardson letter++; 596399a2dd95SBruce Richardson } 596499a2dd95SBruce Richardson } 596599a2dd95SBruce Richardson 596699a2dd95SBruce Richardson int 596799a2dd95SBruce Richardson rte_eth_devargs_parse(const char *dargs, struct rte_eth_devargs *eth_da) 596899a2dd95SBruce Richardson { 596999a2dd95SBruce Richardson struct rte_kvargs args; 597099a2dd95SBruce Richardson struct rte_kvargs_pair *pair; 597199a2dd95SBruce Richardson unsigned int i; 597299a2dd95SBruce Richardson int result = 0; 597399a2dd95SBruce Richardson 597499a2dd95SBruce Richardson memset(eth_da, 0, sizeof(*eth_da)); 597599a2dd95SBruce Richardson 597699a2dd95SBruce Richardson result = eth_dev_devargs_tokenise(&args, dargs); 597799a2dd95SBruce Richardson if (result < 0) 597899a2dd95SBruce Richardson goto parse_cleanup; 597999a2dd95SBruce Richardson 598099a2dd95SBruce Richardson for (i = 0; i < args.count; i++) { 598199a2dd95SBruce Richardson pair = &args.pairs[i]; 598299a2dd95SBruce Richardson if (strcmp("representor", pair->key) == 0) { 598399a2dd95SBruce Richardson if (eth_da->type != RTE_ETH_REPRESENTOR_NONE) { 598499a2dd95SBruce Richardson RTE_LOG(ERR, EAL, "duplicated representor key: %s\n", 598599a2dd95SBruce Richardson dargs); 598699a2dd95SBruce Richardson result = -1; 598799a2dd95SBruce Richardson goto parse_cleanup; 598899a2dd95SBruce Richardson } 598999a2dd95SBruce Richardson result = rte_eth_devargs_parse_representor_ports( 599099a2dd95SBruce Richardson pair->value, eth_da); 599199a2dd95SBruce Richardson if (result < 0) 599299a2dd95SBruce Richardson goto parse_cleanup; 599399a2dd95SBruce Richardson } 599499a2dd95SBruce Richardson } 599599a2dd95SBruce Richardson 599699a2dd95SBruce Richardson parse_cleanup: 599799a2dd95SBruce Richardson if (args.str) 599899a2dd95SBruce Richardson free(args.str); 599999a2dd95SBruce Richardson 600099a2dd95SBruce Richardson return result; 600199a2dd95SBruce Richardson } 600299a2dd95SBruce Richardson 600399a2dd95SBruce Richardson int 6004ff4e52efSViacheslav Galaktionov rte_eth_representor_id_get(uint16_t port_id, 600599a2dd95SBruce Richardson enum rte_eth_representor_type type, 600699a2dd95SBruce Richardson int controller, int pf, int representor_port, 600799a2dd95SBruce Richardson uint16_t *repr_id) 600899a2dd95SBruce Richardson { 600910eaf41dSViacheslav Galaktionov int ret, n, count; 601010eaf41dSViacheslav Galaktionov uint32_t i; 601199a2dd95SBruce Richardson struct rte_eth_representor_info *info = NULL; 601299a2dd95SBruce Richardson size_t size; 601399a2dd95SBruce Richardson 601499a2dd95SBruce Richardson if (type == RTE_ETH_REPRESENTOR_NONE) 601599a2dd95SBruce Richardson return 0; 601699a2dd95SBruce Richardson if (repr_id == NULL) 601799a2dd95SBruce Richardson return -EINVAL; 601899a2dd95SBruce Richardson 601999a2dd95SBruce Richardson /* Get PMD representor range info. */ 6020ff4e52efSViacheslav Galaktionov ret = rte_eth_representor_info_get(port_id, NULL); 602199a2dd95SBruce Richardson if (ret == -ENOTSUP && type == RTE_ETH_REPRESENTOR_VF && 602299a2dd95SBruce Richardson controller == -1 && pf == -1) { 602399a2dd95SBruce Richardson /* Direct mapping for legacy VF representor. */ 602499a2dd95SBruce Richardson *repr_id = representor_port; 602599a2dd95SBruce Richardson return 0; 602699a2dd95SBruce Richardson } else if (ret < 0) { 602799a2dd95SBruce Richardson return ret; 602899a2dd95SBruce Richardson } 602999a2dd95SBruce Richardson n = ret; 603099a2dd95SBruce Richardson size = sizeof(*info) + n * sizeof(info->ranges[0]); 603199a2dd95SBruce Richardson info = calloc(1, size); 603299a2dd95SBruce Richardson if (info == NULL) 603399a2dd95SBruce Richardson return -ENOMEM; 603410eaf41dSViacheslav Galaktionov info->nb_ranges_alloc = n; 6035ff4e52efSViacheslav Galaktionov ret = rte_eth_representor_info_get(port_id, info); 603699a2dd95SBruce Richardson if (ret < 0) 603799a2dd95SBruce Richardson goto out; 603899a2dd95SBruce Richardson 603999a2dd95SBruce Richardson /* Default controller and pf to caller. */ 604099a2dd95SBruce Richardson if (controller == -1) 604199a2dd95SBruce Richardson controller = info->controller; 604299a2dd95SBruce Richardson if (pf == -1) 604399a2dd95SBruce Richardson pf = info->pf; 604499a2dd95SBruce Richardson 604599a2dd95SBruce Richardson /* Locate representor ID. */ 604699a2dd95SBruce Richardson ret = -ENOENT; 604710eaf41dSViacheslav Galaktionov for (i = 0; i < info->nb_ranges; ++i) { 604899a2dd95SBruce Richardson if (info->ranges[i].type != type) 604999a2dd95SBruce Richardson continue; 605099a2dd95SBruce Richardson if (info->ranges[i].controller != controller) 605199a2dd95SBruce Richardson continue; 605299a2dd95SBruce Richardson if (info->ranges[i].id_end < info->ranges[i].id_base) { 605399a2dd95SBruce Richardson RTE_LOG(WARNING, EAL, "Port %hu invalid representor ID Range %u - %u, entry %d\n", 6054ff4e52efSViacheslav Galaktionov port_id, info->ranges[i].id_base, 605599a2dd95SBruce Richardson info->ranges[i].id_end, i); 605699a2dd95SBruce Richardson continue; 605799a2dd95SBruce Richardson 605899a2dd95SBruce Richardson } 605999a2dd95SBruce Richardson count = info->ranges[i].id_end - info->ranges[i].id_base + 1; 606099a2dd95SBruce Richardson switch (info->ranges[i].type) { 606199a2dd95SBruce Richardson case RTE_ETH_REPRESENTOR_PF: 606299a2dd95SBruce Richardson if (pf < info->ranges[i].pf || 606399a2dd95SBruce Richardson pf >= info->ranges[i].pf + count) 606499a2dd95SBruce Richardson continue; 606599a2dd95SBruce Richardson *repr_id = info->ranges[i].id_base + 606699a2dd95SBruce Richardson (pf - info->ranges[i].pf); 606799a2dd95SBruce Richardson ret = 0; 606899a2dd95SBruce Richardson goto out; 606999a2dd95SBruce Richardson case RTE_ETH_REPRESENTOR_VF: 607099a2dd95SBruce Richardson if (info->ranges[i].pf != pf) 607199a2dd95SBruce Richardson continue; 607299a2dd95SBruce Richardson if (representor_port < info->ranges[i].vf || 607399a2dd95SBruce Richardson representor_port >= info->ranges[i].vf + count) 607499a2dd95SBruce Richardson continue; 607599a2dd95SBruce Richardson *repr_id = info->ranges[i].id_base + 607699a2dd95SBruce Richardson (representor_port - info->ranges[i].vf); 607799a2dd95SBruce Richardson ret = 0; 607899a2dd95SBruce Richardson goto out; 607999a2dd95SBruce Richardson case RTE_ETH_REPRESENTOR_SF: 608099a2dd95SBruce Richardson if (info->ranges[i].pf != pf) 608199a2dd95SBruce Richardson continue; 608299a2dd95SBruce Richardson if (representor_port < info->ranges[i].sf || 608399a2dd95SBruce Richardson representor_port >= info->ranges[i].sf + count) 608499a2dd95SBruce Richardson continue; 608599a2dd95SBruce Richardson *repr_id = info->ranges[i].id_base + 608699a2dd95SBruce Richardson (representor_port - info->ranges[i].sf); 608799a2dd95SBruce Richardson ret = 0; 608899a2dd95SBruce Richardson goto out; 608999a2dd95SBruce Richardson default: 609099a2dd95SBruce Richardson break; 609199a2dd95SBruce Richardson } 609299a2dd95SBruce Richardson } 609399a2dd95SBruce Richardson out: 609499a2dd95SBruce Richardson free(info); 609599a2dd95SBruce Richardson return ret; 609699a2dd95SBruce Richardson } 609799a2dd95SBruce Richardson 609899a2dd95SBruce Richardson static int 609999a2dd95SBruce Richardson eth_dev_handle_port_list(const char *cmd __rte_unused, 610099a2dd95SBruce Richardson const char *params __rte_unused, 610199a2dd95SBruce Richardson struct rte_tel_data *d) 610299a2dd95SBruce Richardson { 610399a2dd95SBruce Richardson int port_id; 610499a2dd95SBruce Richardson 610599a2dd95SBruce Richardson rte_tel_data_start_array(d, RTE_TEL_INT_VAL); 610699a2dd95SBruce Richardson RTE_ETH_FOREACH_DEV(port_id) 610799a2dd95SBruce Richardson rte_tel_data_add_array_int(d, port_id); 610899a2dd95SBruce Richardson return 0; 610999a2dd95SBruce Richardson } 611099a2dd95SBruce Richardson 611199a2dd95SBruce Richardson static void 611299a2dd95SBruce Richardson eth_dev_add_port_queue_stats(struct rte_tel_data *d, uint64_t *q_stats, 611399a2dd95SBruce Richardson const char *stat_name) 611499a2dd95SBruce Richardson { 611599a2dd95SBruce Richardson int q; 611699a2dd95SBruce Richardson struct rte_tel_data *q_data = rte_tel_data_alloc(); 611799a2dd95SBruce Richardson rte_tel_data_start_array(q_data, RTE_TEL_U64_VAL); 611899a2dd95SBruce Richardson for (q = 0; q < RTE_ETHDEV_QUEUE_STAT_CNTRS; q++) 611999a2dd95SBruce Richardson rte_tel_data_add_array_u64(q_data, q_stats[q]); 612099a2dd95SBruce Richardson rte_tel_data_add_dict_container(d, stat_name, q_data, 0); 612199a2dd95SBruce Richardson } 612299a2dd95SBruce Richardson 612399a2dd95SBruce Richardson #define ADD_DICT_STAT(stats, s) rte_tel_data_add_dict_u64(d, #s, stats.s) 612499a2dd95SBruce Richardson 612599a2dd95SBruce Richardson static int 612699a2dd95SBruce Richardson eth_dev_handle_port_stats(const char *cmd __rte_unused, 612799a2dd95SBruce Richardson const char *params, 612899a2dd95SBruce Richardson struct rte_tel_data *d) 612999a2dd95SBruce Richardson { 613099a2dd95SBruce Richardson struct rte_eth_stats stats; 613199a2dd95SBruce Richardson int port_id, ret; 613299a2dd95SBruce Richardson 613399a2dd95SBruce Richardson if (params == NULL || strlen(params) == 0 || !isdigit(*params)) 613499a2dd95SBruce Richardson return -1; 613599a2dd95SBruce Richardson 613699a2dd95SBruce Richardson port_id = atoi(params); 613799a2dd95SBruce Richardson if (!rte_eth_dev_is_valid_port(port_id)) 613899a2dd95SBruce Richardson return -1; 613999a2dd95SBruce Richardson 614099a2dd95SBruce Richardson ret = rte_eth_stats_get(port_id, &stats); 614199a2dd95SBruce Richardson if (ret < 0) 614299a2dd95SBruce Richardson return -1; 614399a2dd95SBruce Richardson 614499a2dd95SBruce Richardson rte_tel_data_start_dict(d); 614599a2dd95SBruce Richardson ADD_DICT_STAT(stats, ipackets); 614699a2dd95SBruce Richardson ADD_DICT_STAT(stats, opackets); 614799a2dd95SBruce Richardson ADD_DICT_STAT(stats, ibytes); 614899a2dd95SBruce Richardson ADD_DICT_STAT(stats, obytes); 614999a2dd95SBruce Richardson ADD_DICT_STAT(stats, imissed); 615099a2dd95SBruce Richardson ADD_DICT_STAT(stats, ierrors); 615199a2dd95SBruce Richardson ADD_DICT_STAT(stats, oerrors); 615299a2dd95SBruce Richardson ADD_DICT_STAT(stats, rx_nombuf); 615399a2dd95SBruce Richardson eth_dev_add_port_queue_stats(d, stats.q_ipackets, "q_ipackets"); 615499a2dd95SBruce Richardson eth_dev_add_port_queue_stats(d, stats.q_opackets, "q_opackets"); 615599a2dd95SBruce Richardson eth_dev_add_port_queue_stats(d, stats.q_ibytes, "q_ibytes"); 615699a2dd95SBruce Richardson eth_dev_add_port_queue_stats(d, stats.q_obytes, "q_obytes"); 615799a2dd95SBruce Richardson eth_dev_add_port_queue_stats(d, stats.q_errors, "q_errors"); 615899a2dd95SBruce Richardson 615999a2dd95SBruce Richardson return 0; 616099a2dd95SBruce Richardson } 616199a2dd95SBruce Richardson 616299a2dd95SBruce Richardson static int 616399a2dd95SBruce Richardson eth_dev_handle_port_xstats(const char *cmd __rte_unused, 616499a2dd95SBruce Richardson const char *params, 616599a2dd95SBruce Richardson struct rte_tel_data *d) 616699a2dd95SBruce Richardson { 616799a2dd95SBruce Richardson struct rte_eth_xstat *eth_xstats; 616899a2dd95SBruce Richardson struct rte_eth_xstat_name *xstat_names; 616999a2dd95SBruce Richardson int port_id, num_xstats; 617099a2dd95SBruce Richardson int i, ret; 617199a2dd95SBruce Richardson char *end_param; 617299a2dd95SBruce Richardson 617399a2dd95SBruce Richardson if (params == NULL || strlen(params) == 0 || !isdigit(*params)) 617499a2dd95SBruce Richardson return -1; 617599a2dd95SBruce Richardson 617699a2dd95SBruce Richardson port_id = strtoul(params, &end_param, 0); 617799a2dd95SBruce Richardson if (*end_param != '\0') 617899a2dd95SBruce Richardson RTE_ETHDEV_LOG(NOTICE, 617999a2dd95SBruce Richardson "Extra parameters passed to ethdev telemetry command, ignoring"); 618099a2dd95SBruce Richardson if (!rte_eth_dev_is_valid_port(port_id)) 618199a2dd95SBruce Richardson return -1; 618299a2dd95SBruce Richardson 618399a2dd95SBruce Richardson num_xstats = rte_eth_xstats_get(port_id, NULL, 0); 618499a2dd95SBruce Richardson if (num_xstats < 0) 618599a2dd95SBruce Richardson return -1; 618699a2dd95SBruce Richardson 618799a2dd95SBruce Richardson /* use one malloc for both names and stats */ 618899a2dd95SBruce Richardson eth_xstats = malloc((sizeof(struct rte_eth_xstat) + 618999a2dd95SBruce Richardson sizeof(struct rte_eth_xstat_name)) * num_xstats); 619099a2dd95SBruce Richardson if (eth_xstats == NULL) 619199a2dd95SBruce Richardson return -1; 619299a2dd95SBruce Richardson xstat_names = (void *)ð_xstats[num_xstats]; 619399a2dd95SBruce Richardson 619499a2dd95SBruce Richardson ret = rte_eth_xstats_get_names(port_id, xstat_names, num_xstats); 619599a2dd95SBruce Richardson if (ret < 0 || ret > num_xstats) { 619699a2dd95SBruce Richardson free(eth_xstats); 619799a2dd95SBruce Richardson return -1; 619899a2dd95SBruce Richardson } 619999a2dd95SBruce Richardson 620099a2dd95SBruce Richardson ret = rte_eth_xstats_get(port_id, eth_xstats, num_xstats); 620199a2dd95SBruce Richardson if (ret < 0 || ret > num_xstats) { 620299a2dd95SBruce Richardson free(eth_xstats); 620399a2dd95SBruce Richardson return -1; 620499a2dd95SBruce Richardson } 620599a2dd95SBruce Richardson 620699a2dd95SBruce Richardson rte_tel_data_start_dict(d); 620799a2dd95SBruce Richardson for (i = 0; i < num_xstats; i++) 620899a2dd95SBruce Richardson rte_tel_data_add_dict_u64(d, xstat_names[i].name, 620999a2dd95SBruce Richardson eth_xstats[i].value); 621099a2dd95SBruce Richardson return 0; 621199a2dd95SBruce Richardson } 621299a2dd95SBruce Richardson 621399a2dd95SBruce Richardson static int 621499a2dd95SBruce Richardson eth_dev_handle_port_link_status(const char *cmd __rte_unused, 621599a2dd95SBruce Richardson const char *params, 621699a2dd95SBruce Richardson struct rte_tel_data *d) 621799a2dd95SBruce Richardson { 621899a2dd95SBruce Richardson static const char *status_str = "status"; 621999a2dd95SBruce Richardson int ret, port_id; 622099a2dd95SBruce Richardson struct rte_eth_link link; 622199a2dd95SBruce Richardson char *end_param; 622299a2dd95SBruce Richardson 622399a2dd95SBruce Richardson if (params == NULL || strlen(params) == 0 || !isdigit(*params)) 622499a2dd95SBruce Richardson return -1; 622599a2dd95SBruce Richardson 622699a2dd95SBruce Richardson port_id = strtoul(params, &end_param, 0); 622799a2dd95SBruce Richardson if (*end_param != '\0') 622899a2dd95SBruce Richardson RTE_ETHDEV_LOG(NOTICE, 622999a2dd95SBruce Richardson "Extra parameters passed to ethdev telemetry command, ignoring"); 623099a2dd95SBruce Richardson if (!rte_eth_dev_is_valid_port(port_id)) 623199a2dd95SBruce Richardson return -1; 623299a2dd95SBruce Richardson 623399a2dd95SBruce Richardson ret = rte_eth_link_get_nowait(port_id, &link); 623499a2dd95SBruce Richardson if (ret < 0) 623599a2dd95SBruce Richardson return -1; 623699a2dd95SBruce Richardson 623799a2dd95SBruce Richardson rte_tel_data_start_dict(d); 623899a2dd95SBruce Richardson if (!link.link_status) { 623999a2dd95SBruce Richardson rte_tel_data_add_dict_string(d, status_str, "DOWN"); 624099a2dd95SBruce Richardson return 0; 624199a2dd95SBruce Richardson } 624299a2dd95SBruce Richardson rte_tel_data_add_dict_string(d, status_str, "UP"); 624399a2dd95SBruce Richardson rte_tel_data_add_dict_u64(d, "speed", link.link_speed); 624499a2dd95SBruce Richardson rte_tel_data_add_dict_string(d, "duplex", 624599a2dd95SBruce Richardson (link.link_duplex == ETH_LINK_FULL_DUPLEX) ? 624699a2dd95SBruce Richardson "full-duplex" : "half-duplex"); 624799a2dd95SBruce Richardson return 0; 624899a2dd95SBruce Richardson } 624999a2dd95SBruce Richardson 625058b43c1dSGowrishankar Muthukrishnan static int 625158b43c1dSGowrishankar Muthukrishnan eth_dev_handle_port_info(const char *cmd __rte_unused, 625258b43c1dSGowrishankar Muthukrishnan const char *params, 625358b43c1dSGowrishankar Muthukrishnan struct rte_tel_data *d) 625458b43c1dSGowrishankar Muthukrishnan { 625558b43c1dSGowrishankar Muthukrishnan struct rte_tel_data *rxq_state, *txq_state; 625658b43c1dSGowrishankar Muthukrishnan char mac_addr[RTE_ETHER_ADDR_LEN]; 625758b43c1dSGowrishankar Muthukrishnan struct rte_eth_dev *eth_dev; 625858b43c1dSGowrishankar Muthukrishnan char *end_param; 625958b43c1dSGowrishankar Muthukrishnan int port_id, i; 626058b43c1dSGowrishankar Muthukrishnan 626158b43c1dSGowrishankar Muthukrishnan if (params == NULL || strlen(params) == 0 || !isdigit(*params)) 626258b43c1dSGowrishankar Muthukrishnan return -1; 626358b43c1dSGowrishankar Muthukrishnan 626458b43c1dSGowrishankar Muthukrishnan port_id = strtoul(params, &end_param, 0); 626558b43c1dSGowrishankar Muthukrishnan if (*end_param != '\0') 626658b43c1dSGowrishankar Muthukrishnan RTE_ETHDEV_LOG(NOTICE, 626758b43c1dSGowrishankar Muthukrishnan "Extra parameters passed to ethdev telemetry command, ignoring"); 626858b43c1dSGowrishankar Muthukrishnan 626958b43c1dSGowrishankar Muthukrishnan if (!rte_eth_dev_is_valid_port(port_id)) 627058b43c1dSGowrishankar Muthukrishnan return -EINVAL; 627158b43c1dSGowrishankar Muthukrishnan 627258b43c1dSGowrishankar Muthukrishnan eth_dev = &rte_eth_devices[port_id]; 627358b43c1dSGowrishankar Muthukrishnan if (!eth_dev) 627458b43c1dSGowrishankar Muthukrishnan return -EINVAL; 627558b43c1dSGowrishankar Muthukrishnan 627658b43c1dSGowrishankar Muthukrishnan rxq_state = rte_tel_data_alloc(); 627758b43c1dSGowrishankar Muthukrishnan if (!rxq_state) 627858b43c1dSGowrishankar Muthukrishnan return -ENOMEM; 627958b43c1dSGowrishankar Muthukrishnan 628058b43c1dSGowrishankar Muthukrishnan txq_state = rte_tel_data_alloc(); 628158b43c1dSGowrishankar Muthukrishnan if (!txq_state) 628258b43c1dSGowrishankar Muthukrishnan return -ENOMEM; 628358b43c1dSGowrishankar Muthukrishnan 628458b43c1dSGowrishankar Muthukrishnan rte_tel_data_start_dict(d); 628558b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_string(d, "name", eth_dev->data->name); 628658b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "state", eth_dev->state); 628758b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "nb_rx_queues", 628858b43c1dSGowrishankar Muthukrishnan eth_dev->data->nb_rx_queues); 628958b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "nb_tx_queues", 629058b43c1dSGowrishankar Muthukrishnan eth_dev->data->nb_tx_queues); 629158b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "port_id", eth_dev->data->port_id); 629258b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "mtu", eth_dev->data->mtu); 629358b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "rx_mbuf_size_min", 629458b43c1dSGowrishankar Muthukrishnan eth_dev->data->min_rx_buf_size); 629558b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "rx_mbuf_alloc_fail", 629658b43c1dSGowrishankar Muthukrishnan eth_dev->data->rx_mbuf_alloc_failed); 629758b43c1dSGowrishankar Muthukrishnan snprintf(mac_addr, RTE_ETHER_ADDR_LEN, "%02x:%02x:%02x:%02x:%02x:%02x", 629858b43c1dSGowrishankar Muthukrishnan eth_dev->data->mac_addrs->addr_bytes[0], 629958b43c1dSGowrishankar Muthukrishnan eth_dev->data->mac_addrs->addr_bytes[1], 630058b43c1dSGowrishankar Muthukrishnan eth_dev->data->mac_addrs->addr_bytes[2], 630158b43c1dSGowrishankar Muthukrishnan eth_dev->data->mac_addrs->addr_bytes[3], 630258b43c1dSGowrishankar Muthukrishnan eth_dev->data->mac_addrs->addr_bytes[4], 630358b43c1dSGowrishankar Muthukrishnan eth_dev->data->mac_addrs->addr_bytes[5]); 630458b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_string(d, "mac_addr", mac_addr); 630558b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "promiscuous", 630658b43c1dSGowrishankar Muthukrishnan eth_dev->data->promiscuous); 630758b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "scattered_rx", 630858b43c1dSGowrishankar Muthukrishnan eth_dev->data->scattered_rx); 630958b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "all_multicast", 631058b43c1dSGowrishankar Muthukrishnan eth_dev->data->all_multicast); 631158b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "dev_started", eth_dev->data->dev_started); 631258b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "lro", eth_dev->data->lro); 631358b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "dev_configured", 631458b43c1dSGowrishankar Muthukrishnan eth_dev->data->dev_configured); 631558b43c1dSGowrishankar Muthukrishnan 631658b43c1dSGowrishankar Muthukrishnan rte_tel_data_start_array(rxq_state, RTE_TEL_INT_VAL); 631758b43c1dSGowrishankar Muthukrishnan for (i = 0; i < eth_dev->data->nb_rx_queues; i++) 631858b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_array_int(rxq_state, 631958b43c1dSGowrishankar Muthukrishnan eth_dev->data->rx_queue_state[i]); 632058b43c1dSGowrishankar Muthukrishnan 632158b43c1dSGowrishankar Muthukrishnan rte_tel_data_start_array(txq_state, RTE_TEL_INT_VAL); 632258b43c1dSGowrishankar Muthukrishnan for (i = 0; i < eth_dev->data->nb_tx_queues; i++) 632358b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_array_int(txq_state, 632458b43c1dSGowrishankar Muthukrishnan eth_dev->data->tx_queue_state[i]); 632558b43c1dSGowrishankar Muthukrishnan 632658b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_container(d, "rxq_state", rxq_state, 0); 632758b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_container(d, "txq_state", txq_state, 0); 632858b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "numa_node", eth_dev->data->numa_node); 632958b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "dev_flags", eth_dev->data->dev_flags); 633058b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "rx_offloads", 633158b43c1dSGowrishankar Muthukrishnan eth_dev->data->dev_conf.rxmode.offloads); 633258b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "tx_offloads", 633358b43c1dSGowrishankar Muthukrishnan eth_dev->data->dev_conf.txmode.offloads); 633458b43c1dSGowrishankar Muthukrishnan rte_tel_data_add_dict_int(d, "ethdev_rss_hf", 633558b43c1dSGowrishankar Muthukrishnan eth_dev->data->dev_conf.rx_adv_conf.rss_conf.rss_hf); 633658b43c1dSGowrishankar Muthukrishnan 633758b43c1dSGowrishankar Muthukrishnan return 0; 633858b43c1dSGowrishankar Muthukrishnan } 633958b43c1dSGowrishankar Muthukrishnan 634099a2dd95SBruce Richardson int 634199a2dd95SBruce Richardson rte_eth_hairpin_queue_peer_update(uint16_t peer_port, uint16_t peer_queue, 634299a2dd95SBruce Richardson struct rte_hairpin_peer_info *cur_info, 634399a2dd95SBruce Richardson struct rte_hairpin_peer_info *peer_info, 634499a2dd95SBruce Richardson uint32_t direction) 634599a2dd95SBruce Richardson { 634699a2dd95SBruce Richardson struct rte_eth_dev *dev; 634799a2dd95SBruce Richardson 634899a2dd95SBruce Richardson /* Current queue information is not mandatory. */ 634999a2dd95SBruce Richardson if (peer_info == NULL) 635099a2dd95SBruce Richardson return -EINVAL; 635199a2dd95SBruce Richardson 635299a2dd95SBruce Richardson /* No need to check the validity again. */ 635399a2dd95SBruce Richardson dev = &rte_eth_devices[peer_port]; 635499a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_queue_peer_update, 635599a2dd95SBruce Richardson -ENOTSUP); 635699a2dd95SBruce Richardson 635799a2dd95SBruce Richardson return (*dev->dev_ops->hairpin_queue_peer_update)(dev, peer_queue, 635899a2dd95SBruce Richardson cur_info, peer_info, direction); 635999a2dd95SBruce Richardson } 636099a2dd95SBruce Richardson 636199a2dd95SBruce Richardson int 636299a2dd95SBruce Richardson rte_eth_hairpin_queue_peer_bind(uint16_t cur_port, uint16_t cur_queue, 636399a2dd95SBruce Richardson struct rte_hairpin_peer_info *peer_info, 636499a2dd95SBruce Richardson uint32_t direction) 636599a2dd95SBruce Richardson { 636699a2dd95SBruce Richardson struct rte_eth_dev *dev; 636799a2dd95SBruce Richardson 636899a2dd95SBruce Richardson if (peer_info == NULL) 636999a2dd95SBruce Richardson return -EINVAL; 637099a2dd95SBruce Richardson 637199a2dd95SBruce Richardson /* No need to check the validity again. */ 637299a2dd95SBruce Richardson dev = &rte_eth_devices[cur_port]; 637399a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_queue_peer_bind, 637499a2dd95SBruce Richardson -ENOTSUP); 637599a2dd95SBruce Richardson 637699a2dd95SBruce Richardson return (*dev->dev_ops->hairpin_queue_peer_bind)(dev, cur_queue, 637799a2dd95SBruce Richardson peer_info, direction); 637899a2dd95SBruce Richardson } 637999a2dd95SBruce Richardson 638099a2dd95SBruce Richardson int 638199a2dd95SBruce Richardson rte_eth_hairpin_queue_peer_unbind(uint16_t cur_port, uint16_t cur_queue, 638299a2dd95SBruce Richardson uint32_t direction) 638399a2dd95SBruce Richardson { 638499a2dd95SBruce Richardson struct rte_eth_dev *dev; 638599a2dd95SBruce Richardson 638699a2dd95SBruce Richardson /* No need to check the validity again. */ 638799a2dd95SBruce Richardson dev = &rte_eth_devices[cur_port]; 638899a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->hairpin_queue_peer_unbind, 638999a2dd95SBruce Richardson -ENOTSUP); 639099a2dd95SBruce Richardson 639199a2dd95SBruce Richardson return (*dev->dev_ops->hairpin_queue_peer_unbind)(dev, cur_queue, 639299a2dd95SBruce Richardson direction); 639399a2dd95SBruce Richardson } 639499a2dd95SBruce Richardson 639599a2dd95SBruce Richardson int 639699a2dd95SBruce Richardson rte_eth_representor_info_get(uint16_t port_id, 639799a2dd95SBruce Richardson struct rte_eth_representor_info *info) 639899a2dd95SBruce Richardson { 639999a2dd95SBruce Richardson struct rte_eth_dev *dev; 640099a2dd95SBruce Richardson 640199a2dd95SBruce Richardson RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 640299a2dd95SBruce Richardson dev = &rte_eth_devices[port_id]; 640399a2dd95SBruce Richardson 640499a2dd95SBruce Richardson RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->representor_info_get, -ENOTSUP); 640553ef1b34SMin Hu (Connor) return eth_err(port_id, (*dev->dev_ops->representor_info_get)(dev, info)); 640699a2dd95SBruce Richardson } 640799a2dd95SBruce Richardson 6408f6d8a6d3SIvan Malov int 6409f6d8a6d3SIvan Malov rte_eth_rx_metadata_negotiate(uint16_t port_id, uint64_t *features) 6410f6d8a6d3SIvan Malov { 6411f6d8a6d3SIvan Malov struct rte_eth_dev *dev; 6412f6d8a6d3SIvan Malov 6413f6d8a6d3SIvan Malov RTE_ETH_VALID_PORTID_OR_ERR_RET(port_id, -ENODEV); 6414f6d8a6d3SIvan Malov dev = &rte_eth_devices[port_id]; 6415f6d8a6d3SIvan Malov 6416f6d8a6d3SIvan Malov if (dev->data->dev_configured != 0) { 6417f6d8a6d3SIvan Malov RTE_ETHDEV_LOG(ERR, 6418f6d8a6d3SIvan Malov "The port (id=%"PRIu16") is already configured\n", 6419f6d8a6d3SIvan Malov port_id); 6420f6d8a6d3SIvan Malov return -EBUSY; 6421f6d8a6d3SIvan Malov } 6422f6d8a6d3SIvan Malov 6423f6d8a6d3SIvan Malov if (features == NULL) { 6424f6d8a6d3SIvan Malov RTE_ETHDEV_LOG(ERR, "Invalid features (NULL)\n"); 6425f6d8a6d3SIvan Malov return -EINVAL; 6426f6d8a6d3SIvan Malov } 6427f6d8a6d3SIvan Malov 6428f6d8a6d3SIvan Malov RTE_FUNC_PTR_OR_ERR_RET(*dev->dev_ops->rx_metadata_negotiate, -ENOTSUP); 6429f6d8a6d3SIvan Malov return eth_err(port_id, 6430f6d8a6d3SIvan Malov (*dev->dev_ops->rx_metadata_negotiate)(dev, features)); 6431f6d8a6d3SIvan Malov } 6432f6d8a6d3SIvan Malov 6433eeded204SDavid Marchand RTE_LOG_REGISTER_DEFAULT(rte_eth_dev_logtype, INFO); 643499a2dd95SBruce Richardson 643599a2dd95SBruce Richardson RTE_INIT(ethdev_init_telemetry) 643699a2dd95SBruce Richardson { 643799a2dd95SBruce Richardson rte_telemetry_register_cmd("/ethdev/list", eth_dev_handle_port_list, 643899a2dd95SBruce Richardson "Returns list of available ethdev ports. Takes no parameters"); 643999a2dd95SBruce Richardson rte_telemetry_register_cmd("/ethdev/stats", eth_dev_handle_port_stats, 644099a2dd95SBruce Richardson "Returns the common stats for a port. Parameters: int port_id"); 644199a2dd95SBruce Richardson rte_telemetry_register_cmd("/ethdev/xstats", eth_dev_handle_port_xstats, 644299a2dd95SBruce Richardson "Returns the extended stats for a port. Parameters: int port_id"); 644399a2dd95SBruce Richardson rte_telemetry_register_cmd("/ethdev/link_status", 644499a2dd95SBruce Richardson eth_dev_handle_port_link_status, 644599a2dd95SBruce Richardson "Returns the link status for a port. Parameters: int port_id"); 644658b43c1dSGowrishankar Muthukrishnan rte_telemetry_register_cmd("/ethdev/info", eth_dev_handle_port_info, 644758b43c1dSGowrishankar Muthukrishnan "Returns the device info for a port. Parameters: int port_id"); 644899a2dd95SBruce Richardson } 6449