4 * Copyright(c) 2010-2015 Intel Corporation. All rights reserved.
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 * * Redistributions in binary form must reproduce the above copyright
14 * notice, this list of conditions and the following disclaimer in
15 * the documentation and/or other materials provided with the
17 * * Neither the name of Intel Corporation nor the names of its
18 * contributors may be used to endorse or promote products derived
19 * from this software without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
25 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
34 #include "rte_eth_ring.h"
36 #include <rte_ethdev.h>
37 #include <rte_malloc.h>
38 #include <rte_memcpy.h>
39 #include <rte_string_fns.h>
41 #include <rte_kvargs.h>
43 #define ETH_RING_NUMA_NODE_ACTION_ARG "nodeaction"
44 #define ETH_RING_ACTION_CREATE "CREATE"
45 #define ETH_RING_ACTION_ATTACH "ATTACH"
47 static const char *ring_ethdev_driver_name = "Ring PMD";
49 static const char *valid_arguments[] = {
50 ETH_RING_NUMA_NODE_ACTION_ARG,
56 rte_atomic64_t rx_pkts;
57 rte_atomic64_t tx_pkts;
58 rte_atomic64_t err_pkts;
61 struct pmd_internals {
62 unsigned nb_rx_queues;
63 unsigned nb_tx_queues;
65 struct ring_queue rx_ring_queues[RTE_PMD_RING_MAX_RX_RINGS];
66 struct ring_queue tx_ring_queues[RTE_PMD_RING_MAX_TX_RINGS];
68 struct ether_addr address;
72 static const char *drivername = "Rings PMD";
73 static struct rte_eth_link pmd_link = {
75 .link_duplex = ETH_LINK_FULL_DUPLEX,
80 eth_ring_rx(void *q, struct rte_mbuf **bufs, uint16_t nb_bufs)
82 void **ptrs = (void *)&bufs[0];
83 struct ring_queue *r = q;
84 const uint16_t nb_rx = (uint16_t)rte_ring_dequeue_burst(r->rng,
86 if (r->rng->flags & RING_F_SC_DEQ)
87 r->rx_pkts.cnt += nb_rx;
89 rte_atomic64_add(&(r->rx_pkts), nb_rx);
94 eth_ring_tx(void *q, struct rte_mbuf **bufs, uint16_t nb_bufs)
96 void **ptrs = (void *)&bufs[0];
97 struct ring_queue *r = q;
98 const uint16_t nb_tx = (uint16_t)rte_ring_enqueue_burst(r->rng,
100 if (r->rng->flags & RING_F_SP_ENQ) {
101 r->tx_pkts.cnt += nb_tx;
102 r->err_pkts.cnt += nb_bufs - nb_tx;
104 rte_atomic64_add(&(r->tx_pkts), nb_tx);
105 rte_atomic64_add(&(r->err_pkts), nb_bufs - nb_tx);
111 eth_dev_configure(struct rte_eth_dev *dev __rte_unused) { return 0; }
114 eth_dev_start(struct rte_eth_dev *dev)
116 dev->data->dev_link.link_status = 1;
121 eth_dev_stop(struct rte_eth_dev *dev)
123 dev->data->dev_link.link_status = 0;
127 eth_dev_set_link_down(struct rte_eth_dev *dev)
129 dev->data->dev_link.link_status = 0;
134 eth_dev_set_link_up(struct rte_eth_dev *dev)
136 dev->data->dev_link.link_status = 1;
141 eth_rx_queue_setup(struct rte_eth_dev *dev,uint16_t rx_queue_id,
142 uint16_t nb_rx_desc __rte_unused,
143 unsigned int socket_id __rte_unused,
144 const struct rte_eth_rxconf *rx_conf __rte_unused,
145 struct rte_mempool *mb_pool __rte_unused)
147 struct pmd_internals *internals = dev->data->dev_private;
148 dev->data->rx_queues[rx_queue_id] = &internals->rx_ring_queues[rx_queue_id];
153 eth_tx_queue_setup(struct rte_eth_dev *dev, uint16_t tx_queue_id,
154 uint16_t nb_tx_desc __rte_unused,
155 unsigned int socket_id __rte_unused,
156 const struct rte_eth_txconf *tx_conf __rte_unused)
158 struct pmd_internals *internals = dev->data->dev_private;
159 dev->data->tx_queues[tx_queue_id] = &internals->tx_ring_queues[tx_queue_id];
165 eth_dev_info(struct rte_eth_dev *dev,
166 struct rte_eth_dev_info *dev_info)
168 struct pmd_internals *internals = dev->data->dev_private;
169 dev_info->driver_name = drivername;
170 dev_info->max_mac_addrs = 1;
171 dev_info->max_rx_pktlen = (uint32_t)-1;
172 dev_info->max_rx_queues = (uint16_t)internals->nb_rx_queues;
173 dev_info->max_tx_queues = (uint16_t)internals->nb_tx_queues;
174 dev_info->min_rx_bufsize = 0;
175 dev_info->pci_dev = NULL;
179 eth_stats_get(struct rte_eth_dev *dev, struct rte_eth_stats *igb_stats)
182 unsigned long rx_total = 0, tx_total = 0, tx_err_total = 0;
183 const struct pmd_internals *internal = dev->data->dev_private;
185 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS &&
186 i < internal->nb_rx_queues; i++) {
187 igb_stats->q_ipackets[i] = internal->rx_ring_queues[i].rx_pkts.cnt;
188 rx_total += igb_stats->q_ipackets[i];
191 for (i = 0; i < RTE_ETHDEV_QUEUE_STAT_CNTRS &&
192 i < internal->nb_tx_queues; i++) {
193 igb_stats->q_opackets[i] = internal->tx_ring_queues[i].tx_pkts.cnt;
194 igb_stats->q_errors[i] = internal->tx_ring_queues[i].err_pkts.cnt;
195 tx_total += igb_stats->q_opackets[i];
196 tx_err_total += igb_stats->q_errors[i];
199 igb_stats->ipackets = rx_total;
200 igb_stats->opackets = tx_total;
201 igb_stats->oerrors = tx_err_total;
205 eth_stats_reset(struct rte_eth_dev *dev)
208 struct pmd_internals *internal = dev->data->dev_private;
209 for (i = 0; i < internal->nb_rx_queues; i++)
210 internal->rx_ring_queues[i].rx_pkts.cnt = 0;
211 for (i = 0; i < internal->nb_tx_queues; i++) {
212 internal->tx_ring_queues[i].tx_pkts.cnt = 0;
213 internal->tx_ring_queues[i].err_pkts.cnt = 0;
218 eth_mac_addr_remove(struct rte_eth_dev *dev __rte_unused,
219 uint32_t index __rte_unused)
224 eth_mac_addr_add(struct rte_eth_dev *dev __rte_unused,
225 struct ether_addr *mac_addr __rte_unused,
226 uint32_t index __rte_unused,
227 uint32_t vmdq __rte_unused)
232 eth_queue_release(void *q __rte_unused) { ; }
234 eth_link_update(struct rte_eth_dev *dev __rte_unused,
235 int wait_to_complete __rte_unused) { return 0; }
237 static const struct eth_dev_ops ops = {
238 .dev_start = eth_dev_start,
239 .dev_stop = eth_dev_stop,
240 .dev_set_link_up = eth_dev_set_link_up,
241 .dev_set_link_down = eth_dev_set_link_down,
242 .dev_configure = eth_dev_configure,
243 .dev_infos_get = eth_dev_info,
244 .rx_queue_setup = eth_rx_queue_setup,
245 .tx_queue_setup = eth_tx_queue_setup,
246 .rx_queue_release = eth_queue_release,
247 .tx_queue_release = eth_queue_release,
248 .link_update = eth_link_update,
249 .stats_get = eth_stats_get,
250 .stats_reset = eth_stats_reset,
251 .mac_addr_remove = eth_mac_addr_remove,
252 .mac_addr_add = eth_mac_addr_add,
255 static struct eth_driver rte_ring_pmd = {
257 .name = "rte_ring_pmd",
258 .drv_flags = RTE_PCI_DRV_DETACHABLE,
262 static struct rte_pci_id id_table;
265 rte_eth_from_rings(const char *name, struct rte_ring *const rx_queues[],
266 const unsigned nb_rx_queues,
267 struct rte_ring *const tx_queues[],
268 const unsigned nb_tx_queues,
269 const unsigned numa_node)
271 struct rte_eth_dev_data *data = NULL;
272 struct rte_pci_device *pci_dev = NULL;
273 struct pmd_internals *internals = NULL;
274 struct rte_eth_dev *eth_dev = NULL;
278 /* do some parameter checking */
279 if (rx_queues == NULL && nb_rx_queues > 0)
281 if (tx_queues == NULL && nb_tx_queues > 0)
284 RTE_LOG(INFO, PMD, "Creating rings-backed ethdev on numa socket %u\n",
287 /* now do all data allocation - for eth_dev structure, dummy pci driver
288 * and internal (private) data
290 data = rte_zmalloc_socket(name, sizeof(*data), 0, numa_node);
294 pci_dev = rte_zmalloc_socket(name, sizeof(*pci_dev), 0, numa_node);
298 internals = rte_zmalloc_socket(name, sizeof(*internals), 0, numa_node);
299 if (internals == NULL)
302 /* reserve an ethdev entry */
303 eth_dev = rte_eth_dev_allocate(name, RTE_ETH_DEV_VIRTUAL);
308 /* now put it all together
309 * - store queue data in internals,
310 * - store numa_node info in pci_driver
311 * - point eth_dev_data to internals and pci_driver
312 * - and point eth_dev structure to new eth_dev_data structure
314 /* NOTE: we'll replace the data element, of originally allocated eth_dev
315 * so the rings are local per-process */
317 internals->nb_rx_queues = nb_rx_queues;
318 internals->nb_tx_queues = nb_tx_queues;
319 for (i = 0; i < nb_rx_queues; i++) {
320 internals->rx_ring_queues[i].rng = rx_queues[i];
322 for (i = 0; i < nb_tx_queues; i++) {
323 internals->tx_ring_queues[i].rng = tx_queues[i];
326 rte_ring_pmd.pci_drv.name = ring_ethdev_driver_name;
327 rte_ring_pmd.pci_drv.id_table = &id_table;
329 pci_dev->numa_node = numa_node;
330 pci_dev->driver = &rte_ring_pmd.pci_drv;
332 data->dev_private = internals;
333 data->port_id = eth_dev->data->port_id;
334 memmove(data->name, eth_dev->data->name, sizeof(data->name));
335 data->nb_rx_queues = (uint16_t)nb_rx_queues;
336 data->nb_tx_queues = (uint16_t)nb_tx_queues;
337 data->dev_link = pmd_link;
338 data->mac_addrs = &internals->address;
340 eth_dev->data = data;
341 eth_dev->driver = &rte_ring_pmd;
342 eth_dev->dev_ops = &ops;
343 eth_dev->pci_dev = pci_dev;
344 TAILQ_INIT(&(eth_dev->link_intr_cbs));
346 /* finally assign rx and tx ops */
347 eth_dev->rx_pkt_burst = eth_ring_rx;
348 eth_dev->tx_pkt_burst = eth_ring_tx;
350 return data->port_id;
366 eth_dev_ring_create(const char *name, const unsigned numa_node,
367 enum dev_action action)
369 /* rx and tx are so-called from point of view of first port.
370 * They are inverted from the point of view of second port
372 struct rte_ring *rxtx[RTE_PMD_RING_MAX_RX_RINGS];
374 char rng_name[RTE_RING_NAMESIZE];
375 unsigned num_rings = RTE_MIN(RTE_PMD_RING_MAX_RX_RINGS,
376 RTE_PMD_RING_MAX_TX_RINGS);
378 for (i = 0; i < num_rings; i++) {
379 snprintf(rng_name, sizeof(rng_name), "ETH_RXTX%u_%s", i, name);
380 rxtx[i] = (action == DEV_CREATE) ?
381 rte_ring_create(rng_name, 1024, numa_node,
382 RING_F_SP_ENQ|RING_F_SC_DEQ) :
383 rte_ring_lookup(rng_name);
388 if (rte_eth_from_rings(name, rxtx, num_rings, rxtx, num_rings, numa_node) < 0)
394 struct node_action_pair {
397 enum dev_action action;
400 struct node_action_list {
403 struct node_action_pair *list;
406 static int parse_kvlist (const char *key __rte_unused, const char *value, void *data)
408 struct node_action_list *info = data;
415 name = strdup(value);
420 RTE_LOG(WARNING, PMD, "command line paramter is empty for ring pmd!\n");
424 node = strchr(name, ':');
426 RTE_LOG(WARNING, PMD, "could not parse node value from %s", name);
433 action = strchr(node, ':');
435 RTE_LOG(WARNING, PMD, "could not action value from %s", node);
443 * Need to do some sanity checking here
446 if (strcmp(action, ETH_RING_ACTION_ATTACH) == 0)
447 info->list[info->count].action = DEV_ATTACH;
448 else if (strcmp(action, ETH_RING_ACTION_CREATE) == 0)
449 info->list[info->count].action = DEV_CREATE;
454 info->list[info->count].node = strtol(node, &end, 10);
456 if ((errno != 0) || (*end != '\0')) {
457 RTE_LOG(WARNING, PMD, "node value %s is unparseable as a number\n", node);
461 snprintf(info->list[info->count].name, sizeof(info->list[info->count].name), "%s", name);
472 rte_pmd_ring_devinit(const char *name, const char *params)
474 struct rte_kvargs *kvlist = NULL;
476 struct node_action_list *info = NULL;
478 RTE_LOG(INFO, PMD, "Initializing pmd_ring for %s\n", name);
480 if (params == NULL || params[0] == '\0') {
481 ret = eth_dev_ring_create(name, rte_socket_id(), DEV_CREATE);
484 "Attach to pmd_ring for %s\n", name);
485 ret = eth_dev_ring_create(name, rte_socket_id(),
490 kvlist = rte_kvargs_parse(params, valid_arguments);
493 RTE_LOG(INFO, PMD, "Ignoring unsupported parameters when creating"
494 " rings-backed ethernet device\n");
495 ret = eth_dev_ring_create(name, rte_socket_id(),
499 "Attach to pmd_ring for %s\n",
501 ret = eth_dev_ring_create(name, rte_socket_id(),
506 ret = rte_kvargs_count(kvlist, ETH_RING_NUMA_NODE_ACTION_ARG);
507 info = rte_zmalloc("struct node_action_list",
508 sizeof(struct node_action_list) +
509 (sizeof(struct node_action_pair) * ret),
515 info->list = (struct node_action_pair*)(info + 1);
517 ret = rte_kvargs_process(kvlist, ETH_RING_NUMA_NODE_ACTION_ARG,
523 for (info->count = 0; info->count < info->total; info->count++) {
524 ret = eth_dev_ring_create(name,
525 info->list[info->count].node,
526 info->list[info->count].action);
528 (info->list[info->count].action == DEV_CREATE)) {
530 "Attach to pmd_ring for %s\n",
532 ret = eth_dev_ring_create(name,
533 info->list[info->count].node,
541 rte_kvargs_free(kvlist);
547 rte_pmd_ring_devuninit(const char *name)
549 struct rte_eth_dev *eth_dev = NULL;
551 RTE_LOG(INFO, PMD, "Un-Initializing pmd_ring for %s\n", name);
556 /* find an ethdev entry */
557 eth_dev = rte_eth_dev_allocated(name);
561 eth_dev_stop(eth_dev);
562 rte_free(eth_dev->data->dev_private);
563 rte_free(eth_dev->data);
564 rte_free(eth_dev->pci_dev);
566 rte_eth_dev_release_port(eth_dev);
570 static struct rte_driver pmd_ring_drv = {
573 .init = rte_pmd_ring_devinit,
574 .uninit = rte_pmd_ring_devuninit,
577 PMD_REGISTER_DRIVER(pmd_ring_drv);