1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2010-2018 Intel Corporation
8 #include <rte_ethdev.h>
9 #include <rte_string_fns.h>
14 static struct link_list link_list;
19 TAILQ_INIT(&link_list);
25 link_find(const char *name)
32 TAILQ_FOREACH(link, &link_list, node)
33 if (strcmp(link->name, name) == 0)
40 link_next(struct link *link)
42 return (link == NULL) ? TAILQ_FIRST(&link_list) : TAILQ_NEXT(link, node);
45 static struct rte_eth_conf port_conf_default = {
48 .mq_mode = ETH_MQ_RX_NONE,
49 .max_rx_pkt_len = 9000, /* Jumbo frame max packet len */
50 .split_hdr_size = 0, /* Header split buffer size */
60 .mq_mode = ETH_MQ_TX_NONE,
65 #define RETA_CONF_SIZE (ETH_RSS_RETA_SIZE_512 / RTE_RETA_GROUP_SIZE)
68 rss_setup(uint16_t port_id,
70 struct link_params_rss *rss)
72 struct rte_eth_rss_reta_entry64 reta_conf[RETA_CONF_SIZE];
77 memset(reta_conf, 0, sizeof(reta_conf));
79 for (i = 0; i < reta_size; i++)
80 reta_conf[i / RTE_RETA_GROUP_SIZE].mask = UINT64_MAX;
82 for (i = 0; i < reta_size; i++) {
83 uint32_t reta_id = i / RTE_RETA_GROUP_SIZE;
84 uint32_t reta_pos = i % RTE_RETA_GROUP_SIZE;
85 uint32_t rss_qs_pos = i % rss->n_queues;
87 reta_conf[reta_id].reta[reta_pos] =
88 (uint16_t) rss->queue_id[rss_qs_pos];
92 status = rte_eth_dev_rss_reta_update(port_id,
100 link_create(const char *name, struct link_params *params)
102 struct rte_eth_dev_info port_info;
103 struct rte_eth_conf port_conf;
105 struct link_params_rss *rss;
106 struct mempool *mempool;
111 /* Check input params */
112 if ((name == NULL) ||
115 (params->rx.n_queues == 0) ||
116 (params->rx.queue_size == 0) ||
117 (params->tx.n_queues == 0) ||
118 (params->tx.queue_size == 0))
121 port_id = params->port_id;
122 if (params->dev_name) {
123 status = rte_eth_dev_get_port_by_name(params->dev_name,
129 if (!rte_eth_dev_is_valid_port(port_id))
132 rte_eth_dev_info_get(port_id, &port_info);
134 mempool = mempool_find(params->rx.mempool_name);
138 rss = params->rx.rss;
140 if ((port_info.reta_size == 0) ||
141 (port_info.reta_size > ETH_RSS_RETA_SIZE_512))
144 if ((rss->n_queues == 0) ||
145 (rss->n_queues >= LINK_RXQ_RSS_MAX))
148 for (i = 0; i < rss->n_queues; i++)
149 if (rss->queue_id[i] >= port_info.max_rx_queues)
157 memcpy(&port_conf, &port_conf_default, sizeof(port_conf));
159 port_conf.rxmode.mq_mode = ETH_MQ_RX_RSS;
160 port_conf.rx_adv_conf.rss_conf.rss_hf =
161 (ETH_RSS_IP | ETH_RSS_TCP | ETH_RSS_UDP) &
162 port_info.flow_type_rss_offloads;
165 cpu_id = (uint32_t) rte_eth_dev_socket_id(port_id);
166 if (cpu_id == (uint32_t) SOCKET_ID_ANY)
169 status = rte_eth_dev_configure(
178 if (params->promiscuous)
179 rte_eth_promiscuous_enable(port_id);
182 for (i = 0; i < params->rx.n_queues; i++) {
183 status = rte_eth_rx_queue_setup(
186 params->rx.queue_size,
196 for (i = 0; i < params->tx.n_queues; i++) {
197 status = rte_eth_tx_queue_setup(
200 params->tx.queue_size,
209 status = rte_eth_dev_start(port_id);
214 status = rss_setup(port_id, port_info.reta_size, rss);
217 rte_eth_dev_stop(port_id);
223 status = rte_eth_dev_set_link_up(port_id);
224 if ((status < 0) && (status != -ENOTSUP)) {
225 rte_eth_dev_stop(port_id);
229 /* Node allocation */
230 link = calloc(1, sizeof(struct link));
232 rte_eth_dev_stop(port_id);
237 strlcpy(link->name, name, sizeof(link->name));
238 link->port_id = port_id;
239 link->n_rxq = params->rx.n_queues;
240 link->n_txq = params->tx.n_queues;
242 /* Node add to list */
243 TAILQ_INSERT_TAIL(&link_list, link, node);
249 link_is_up(const char *name)
251 struct rte_eth_link link_params;
254 /* Check input params */
258 link = link_find(name);
263 rte_eth_link_get(link->port_id, &link_params);
265 return (link_params.link_status == ETH_LINK_DOWN) ? 0 : 1;