1 /* SPDX-License-Identifier: BSD-3-Clause
2 * Copyright(c) 2019 Intel Corporation
11 #include <rte_malloc.h>
12 #include <rte_ethdev.h>
13 #include <rte_rawdev.h>
14 #include <rte_ioat_rawdev.h>
16 /* size of ring used for software copying between rx and tx. */
17 #define RTE_LOGTYPE_IOAT RTE_LOGTYPE_USER1
18 #define MAX_PKT_BURST 32
19 #define MEMPOOL_CACHE_SIZE 512
20 #define MIN_POOL_SIZE 65536U
21 #define CMD_LINE_OPT_MAC_UPDATING "mac-updating"
22 #define CMD_LINE_OPT_NO_MAC_UPDATING "no-mac-updating"
23 #define CMD_LINE_OPT_PORTMASK "portmask"
24 #define CMD_LINE_OPT_NB_QUEUE "nb-queue"
25 #define CMD_LINE_OPT_COPY_TYPE "copy-type"
26 #define CMD_LINE_OPT_RING_SIZE "ring-size"
28 /* configurable number of RX/TX ring descriptors */
29 #define RX_DEFAULT_RINGSIZE 1024
30 #define TX_DEFAULT_RINGSIZE 1024
32 /* max number of RX queues per port */
33 #define MAX_RX_QUEUES_COUNT 8
35 struct rxtx_port_config {
39 /* for software copy mode */
40 struct rte_ring *rx_to_tx_ring;
41 /* for IOAT rawdev copy mode */
42 uint16_t ioat_ids[MAX_RX_QUEUES_COUNT];
45 struct rxtx_transmission_config {
46 struct rxtx_port_config ports[RTE_MAX_ETHPORTS];
51 /* per-port statistics struct */
52 struct ioat_port_statistics {
53 uint64_t rx[RTE_MAX_ETHPORTS];
54 uint64_t tx[RTE_MAX_ETHPORTS];
55 uint64_t tx_dropped[RTE_MAX_ETHPORTS];
56 uint64_t copy_dropped[RTE_MAX_ETHPORTS];
58 struct ioat_port_statistics port_statistics;
60 struct total_statistics {
61 uint64_t total_packets_dropped;
62 uint64_t total_packets_tx;
63 uint64_t total_packets_rx;
64 uint64_t total_successful_enqueues;
65 uint64_t total_failed_enqueues;
68 typedef enum copy_mode_t {
69 #define COPY_MODE_SW "sw"
71 #define COPY_MODE_IOAT "hw"
73 COPY_MODE_INVALID_NUM,
74 COPY_MODE_SIZE_NUM = COPY_MODE_INVALID_NUM
77 /* mask of enabled ports */
78 static uint32_t ioat_enabled_port_mask;
80 /* number of RX queues per port */
81 static uint16_t nb_queues = 1;
83 /* MAC updating enabled by default. */
84 static int mac_updating = 1;
86 /* hardare copy mode enabled by default. */
87 static copy_mode_t copy_mode = COPY_MODE_IOAT_NUM;
89 /* size of IOAT rawdev ring for hardware copy mode or
90 * rte_ring for software copy mode
92 static unsigned short ring_size = 2048;
94 /* global transmission config */
95 struct rxtx_transmission_config cfg;
97 /* configurable number of RX/TX ring descriptors */
98 static uint16_t nb_rxd = RX_DEFAULT_RINGSIZE;
99 static uint16_t nb_txd = TX_DEFAULT_RINGSIZE;
101 static volatile bool force_quit;
103 /* ethernet addresses of ports */
104 static struct rte_ether_addr ioat_ports_eth_addr[RTE_MAX_ETHPORTS];
106 static struct rte_eth_dev_tx_buffer *tx_buffer[RTE_MAX_ETHPORTS];
107 struct rte_mempool *ioat_pktmbuf_pool;
109 /* Print out statistics for one port. */
111 print_port_stats(uint16_t port_id)
113 printf("\nStatistics for port %u ------------------------------"
114 "\nPackets sent: %34"PRIu64
115 "\nPackets received: %30"PRIu64
116 "\nPackets dropped on tx: %25"PRIu64
117 "\nPackets dropped on copy: %23"PRIu64,
119 port_statistics.tx[port_id],
120 port_statistics.rx[port_id],
121 port_statistics.tx_dropped[port_id],
122 port_statistics.copy_dropped[port_id]);
125 /* Print out statistics for one IOAT rawdev device. */
127 print_rawdev_stats(uint32_t dev_id, uint64_t *xstats,
128 unsigned int *ids_xstats, uint16_t nb_xstats,
129 struct rte_rawdev_xstats_name *names_xstats)
133 printf("\nIOAT channel %u", dev_id);
134 for (i = 0; i < nb_xstats; i++)
135 printf("\n\t %s: %*"PRIu64,
136 names_xstats[ids_xstats[i]].name,
137 (int)(37 - strlen(names_xstats[ids_xstats[i]].name)),
142 print_total_stats(struct total_statistics *ts)
144 printf("\nAggregate statistics ==============================="
145 "\nTotal packets Tx: %24"PRIu64" [pps]"
146 "\nTotal packets Rx: %24"PRIu64" [pps]"
147 "\nTotal packets dropped: %19"PRIu64" [pps]",
148 ts->total_packets_tx,
149 ts->total_packets_rx,
150 ts->total_packets_dropped);
152 if (copy_mode == COPY_MODE_IOAT_NUM) {
153 printf("\nTotal IOAT successful enqueues: %8"PRIu64" [enq/s]"
154 "\nTotal IOAT failed enqueues: %12"PRIu64" [enq/s]",
155 ts->total_successful_enqueues,
156 ts->total_failed_enqueues);
159 printf("\n====================================================\n");
162 /* Print out statistics on packets dropped. */
164 print_stats(char *prgname)
166 struct total_statistics ts, delta_ts;
167 uint32_t i, port_id, dev_id;
168 struct rte_rawdev_xstats_name *names_xstats;
170 unsigned int *ids_xstats, nb_xstats;
171 char status_string[120]; /* to print at the top of the output */
175 const char clr[] = { 27, '[', '2', 'J', '\0' };
176 const char topLeft[] = { 27, '[', '1', ';', '1', 'H', '\0' };
178 status_strlen = snprintf(status_string, sizeof(status_string),
180 status_strlen += snprintf(status_string + status_strlen,
181 sizeof(status_string) - status_strlen,
182 "Worker Threads = %d, ",
183 rte_lcore_count() > 2 ? 2 : 1);
184 status_strlen += snprintf(status_string + status_strlen,
185 sizeof(status_string) - status_strlen,
186 "Copy Mode = %s,\n", copy_mode == COPY_MODE_SW_NUM ?
187 COPY_MODE_SW : COPY_MODE_IOAT);
188 status_strlen += snprintf(status_string + status_strlen,
189 sizeof(status_string) - status_strlen,
190 "Updating MAC = %s, ", mac_updating ?
191 "enabled" : "disabled");
192 status_strlen += snprintf(status_string + status_strlen,
193 sizeof(status_string) - status_strlen,
194 "Rx Queues = %d, ", nb_queues);
195 status_strlen += snprintf(status_string + status_strlen,
196 sizeof(status_string) - status_strlen,
197 "Ring Size = %d\n", ring_size);
199 /* Allocate memory for xstats names and values */
200 ret = rte_rawdev_xstats_names_get(
201 cfg.ports[0].ioat_ids[0], NULL, 0);
204 nb_xstats = (unsigned int)ret;
206 names_xstats = malloc(sizeof(*names_xstats) * nb_xstats);
207 if (names_xstats == NULL) {
208 rte_exit(EXIT_FAILURE,
209 "Error allocating xstat names memory\n");
211 rte_rawdev_xstats_names_get(cfg.ports[0].ioat_ids[0],
212 names_xstats, nb_xstats);
214 ids_xstats = malloc(sizeof(*ids_xstats) * 2);
215 if (ids_xstats == NULL) {
216 rte_exit(EXIT_FAILURE,
217 "Error allocating xstat ids_xstats memory\n");
220 xstats = malloc(sizeof(*xstats) * 2);
221 if (xstats == NULL) {
222 rte_exit(EXIT_FAILURE,
223 "Error allocating xstat memory\n");
226 /* Get failed/successful enqueues stats index */
227 ids_xstats[0] = ids_xstats[1] = nb_xstats;
228 for (i = 0; i < nb_xstats; i++) {
229 if (!strcmp(names_xstats[i].name, "failed_enqueues"))
231 else if (!strcmp(names_xstats[i].name, "successful_enqueues"))
233 if (ids_xstats[0] < nb_xstats && ids_xstats[1] < nb_xstats)
236 if (ids_xstats[0] == nb_xstats || ids_xstats[1] == nb_xstats) {
237 rte_exit(EXIT_FAILURE,
238 "Error getting failed/successful enqueues stats index\n");
241 memset(&ts, 0, sizeof(struct total_statistics));
243 while (!force_quit) {
244 /* Sleep for 1 second each round - init sleep allows reading
245 * messages from app startup.
249 /* Clear screen and move to top left */
250 printf("%s%s", clr, topLeft);
252 memset(&delta_ts, 0, sizeof(struct total_statistics));
254 printf("%s", status_string);
256 for (i = 0; i < cfg.nb_ports; i++) {
257 port_id = cfg.ports[i].rxtx_port;
258 print_port_stats(port_id);
260 delta_ts.total_packets_dropped +=
261 port_statistics.tx_dropped[port_id]
262 + port_statistics.copy_dropped[port_id];
263 delta_ts.total_packets_tx +=
264 port_statistics.tx[port_id];
265 delta_ts.total_packets_rx +=
266 port_statistics.rx[port_id];
268 if (copy_mode == COPY_MODE_IOAT_NUM) {
271 for (j = 0; j < cfg.ports[i].nb_queues; j++) {
272 dev_id = cfg.ports[i].ioat_ids[j];
273 rte_rawdev_xstats_get(dev_id,
274 ids_xstats, xstats, 2);
276 print_rawdev_stats(dev_id, xstats,
277 ids_xstats, 2, names_xstats);
279 delta_ts.total_failed_enqueues +=
280 xstats[ids_xstats[0]];
281 delta_ts.total_successful_enqueues +=
282 xstats[ids_xstats[1]];
287 delta_ts.total_packets_tx -= ts.total_packets_tx;
288 delta_ts.total_packets_rx -= ts.total_packets_rx;
289 delta_ts.total_packets_dropped -= ts.total_packets_dropped;
290 delta_ts.total_failed_enqueues -= ts.total_failed_enqueues;
291 delta_ts.total_successful_enqueues -=
292 ts.total_successful_enqueues;
295 print_total_stats(&delta_ts);
299 ts.total_packets_tx += delta_ts.total_packets_tx;
300 ts.total_packets_rx += delta_ts.total_packets_rx;
301 ts.total_packets_dropped += delta_ts.total_packets_dropped;
302 ts.total_failed_enqueues += delta_ts.total_failed_enqueues;
303 ts.total_successful_enqueues +=
304 delta_ts.total_successful_enqueues;
313 update_mac_addrs(struct rte_mbuf *m, uint32_t dest_portid)
315 struct rte_ether_hdr *eth;
318 eth = rte_pktmbuf_mtod(m, struct rte_ether_hdr *);
320 /* 02:00:00:00:00:xx - overwriting 2 bytes of source address but
321 * it's acceptable cause it gets overwritten by rte_ether_addr_copy
323 tmp = ð->d_addr.addr_bytes[0];
324 *((uint64_t *)tmp) = 0x000000000002 + ((uint64_t)dest_portid << 40);
327 rte_ether_addr_copy(&ioat_ports_eth_addr[dest_portid], ð->s_addr);
331 pktmbuf_sw_copy(struct rte_mbuf *src, struct rte_mbuf *dst)
333 /* Copy packet metadata */
334 rte_memcpy(&dst->rearm_data,
336 offsetof(struct rte_mbuf, cacheline1)
337 - offsetof(struct rte_mbuf, rearm_data));
339 /* Copy packet data */
340 rte_memcpy(rte_pktmbuf_mtod(dst, char *),
341 rte_pktmbuf_mtod(src, char *), src->data_len);
345 ioat_enqueue_packets(struct rte_mbuf **pkts,
346 uint32_t nb_rx, uint16_t dev_id)
350 struct rte_mbuf *pkts_copy[MAX_PKT_BURST];
352 const uint64_t addr_offset = RTE_PTR_DIFF(pkts[0]->buf_addr,
353 &pkts[0]->rearm_data);
355 ret = rte_mempool_get_bulk(ioat_pktmbuf_pool,
356 (void *)pkts_copy, nb_rx);
358 if (unlikely(ret < 0))
359 rte_exit(EXIT_FAILURE, "Unable to allocate memory.\n");
361 for (i = 0; i < nb_rx; i++) {
362 /* Perform data copy */
363 ret = rte_ioat_enqueue_copy(dev_id,
366 pkts_copy[i]->buf_iova
368 rte_pktmbuf_data_len(pkts[i])
371 (uintptr_t)pkts_copy[i],
379 /* Free any not enqueued packets. */
380 rte_mempool_put_bulk(ioat_pktmbuf_pool, (void *)&pkts[i], nb_rx - i);
381 rte_mempool_put_bulk(ioat_pktmbuf_pool, (void *)&pkts_copy[i],
387 /* Receive packets on one port and enqueue to IOAT rawdev or rte_ring. */
389 ioat_rx_port(struct rxtx_port_config *rx_config)
391 uint32_t nb_rx, nb_enq, i, j;
392 struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
394 for (i = 0; i < rx_config->nb_queues; i++) {
396 nb_rx = rte_eth_rx_burst(rx_config->rxtx_port, i,
397 pkts_burst, MAX_PKT_BURST);
402 port_statistics.rx[rx_config->rxtx_port] += nb_rx;
404 if (copy_mode == COPY_MODE_IOAT_NUM) {
405 /* Perform packet hardware copy */
406 nb_enq = ioat_enqueue_packets(pkts_burst,
407 nb_rx, rx_config->ioat_ids[i]);
409 rte_ioat_do_copies(rx_config->ioat_ids[i]);
411 /* Perform packet software copy, free source packets */
413 struct rte_mbuf *pkts_burst_copy[MAX_PKT_BURST];
415 ret = rte_mempool_get_bulk(ioat_pktmbuf_pool,
416 (void *)pkts_burst_copy, nb_rx);
418 if (unlikely(ret < 0))
419 rte_exit(EXIT_FAILURE,
420 "Unable to allocate memory.\n");
422 for (j = 0; j < nb_rx; j++)
423 pktmbuf_sw_copy(pkts_burst[j],
426 rte_mempool_put_bulk(ioat_pktmbuf_pool,
427 (void *)pkts_burst, nb_rx);
429 nb_enq = rte_ring_enqueue_burst(
430 rx_config->rx_to_tx_ring,
431 (void *)pkts_burst_copy, nb_rx, NULL);
433 /* Free any not enqueued packets. */
434 rte_mempool_put_bulk(ioat_pktmbuf_pool,
435 (void *)&pkts_burst_copy[nb_enq],
439 port_statistics.copy_dropped[rx_config->rxtx_port] +=
444 /* Transmit packets from IOAT rawdev/rte_ring for one port. */
446 ioat_tx_port(struct rxtx_port_config *tx_config)
448 uint32_t i, j, nb_dq = 0;
449 struct rte_mbuf *mbufs_src[MAX_PKT_BURST];
450 struct rte_mbuf *mbufs_dst[MAX_PKT_BURST];
452 for (i = 0; i < tx_config->nb_queues; i++) {
453 if (copy_mode == COPY_MODE_IOAT_NUM) {
454 /* Deque the mbufs from IOAT device. */
455 nb_dq = rte_ioat_completed_copies(
456 tx_config->ioat_ids[i], MAX_PKT_BURST,
457 (void *)mbufs_src, (void *)mbufs_dst);
459 /* Deque the mbufs from rx_to_tx_ring. */
460 nb_dq = rte_ring_dequeue_burst(
461 tx_config->rx_to_tx_ring, (void *)mbufs_dst,
462 MAX_PKT_BURST, NULL);
465 if ((int32_t) nb_dq <= 0)
468 if (copy_mode == COPY_MODE_IOAT_NUM)
469 rte_mempool_put_bulk(ioat_pktmbuf_pool,
470 (void *)mbufs_src, nb_dq);
472 /* Update macs if enabled */
474 for (j = 0; j < nb_dq; j++)
475 update_mac_addrs(mbufs_dst[j],
476 tx_config->rxtx_port);
479 const uint16_t nb_tx = rte_eth_tx_burst(
480 tx_config->rxtx_port, 0,
481 (void *)mbufs_dst, nb_dq);
483 port_statistics.tx[tx_config->rxtx_port] += nb_tx;
485 /* Free any unsent packets. */
486 if (unlikely(nb_tx < nb_dq))
487 rte_mempool_put_bulk(ioat_pktmbuf_pool,
488 (void *)&mbufs_dst[nb_tx],
493 /* Main rx processing loop for IOAT rawdev. */
498 uint16_t nb_ports = cfg.nb_ports;
500 RTE_LOG(INFO, IOAT, "Entering main rx loop for copy on lcore %u\n",
504 for (i = 0; i < nb_ports; i++)
505 ioat_rx_port(&cfg.ports[i]);
508 /* Main tx processing loop for hardware copy. */
513 uint16_t nb_ports = cfg.nb_ports;
515 RTE_LOG(INFO, IOAT, "Entering main tx loop for copy on lcore %u\n",
519 for (i = 0; i < nb_ports; i++)
520 ioat_tx_port(&cfg.ports[i]);
523 /* Main rx and tx loop if only one slave lcore available */
528 uint16_t nb_ports = cfg.nb_ports;
530 RTE_LOG(INFO, IOAT, "Entering main rx and tx loop for copy on"
531 " lcore %u\n", rte_lcore_id());
534 for (i = 0; i < nb_ports; i++) {
535 ioat_rx_port(&cfg.ports[i]);
536 ioat_tx_port(&cfg.ports[i]);
540 static void start_forwarding_cores(void)
542 uint32_t lcore_id = rte_lcore_id();
544 RTE_LOG(INFO, IOAT, "Entering %s on lcore %u\n",
545 __func__, rte_lcore_id());
547 if (cfg.nb_lcores == 1) {
548 lcore_id = rte_get_next_lcore(lcore_id, true, true);
549 rte_eal_remote_launch((lcore_function_t *)rxtx_main_loop,
551 } else if (cfg.nb_lcores > 1) {
552 lcore_id = rte_get_next_lcore(lcore_id, true, true);
553 rte_eal_remote_launch((lcore_function_t *)rx_main_loop,
556 lcore_id = rte_get_next_lcore(lcore_id, true, true);
557 rte_eal_remote_launch((lcore_function_t *)tx_main_loop, NULL,
564 ioat_usage(const char *prgname)
566 printf("%s [EAL options] -- -p PORTMASK [-q NQ]\n"
567 " -p --portmask: hexadecimal bitmask of ports to configure\n"
568 " -q NQ: number of RX queues per port (default is 1)\n"
569 " --[no-]mac-updating: Enable or disable MAC addresses updating (enabled by default)\n"
571 " - The source MAC address is replaced by the TX port MAC address\n"
572 " - The destination MAC address is replaced by 02:00:00:00:00:TX_PORT_ID\n"
573 " -c --copy-type CT: type of copy: sw|hw\n"
574 " -s --ring-size RS: size of IOAT rawdev ring for hardware copy mode or rte_ring for software copy mode\n",
579 ioat_parse_portmask(const char *portmask)
584 /* Parse hexadecimal string */
585 pm = strtoul(portmask, &end, 16);
586 if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
593 ioat_parse_copy_mode(const char *copy_mode)
595 if (strcmp(copy_mode, COPY_MODE_SW) == 0)
596 return COPY_MODE_SW_NUM;
597 else if (strcmp(copy_mode, COPY_MODE_IOAT) == 0)
598 return COPY_MODE_IOAT_NUM;
600 return COPY_MODE_INVALID_NUM;
603 /* Parse the argument given in the command line of the application */
605 ioat_parse_args(int argc, char **argv, unsigned int nb_ports)
607 static const char short_options[] =
609 "q:" /* number of RX queues per port */
610 "c:" /* copy type (sw|hw) */
614 static const struct option lgopts[] = {
615 {CMD_LINE_OPT_MAC_UPDATING, no_argument, &mac_updating, 1},
616 {CMD_LINE_OPT_NO_MAC_UPDATING, no_argument, &mac_updating, 0},
617 {CMD_LINE_OPT_PORTMASK, required_argument, NULL, 'p'},
618 {CMD_LINE_OPT_NB_QUEUE, required_argument, NULL, 'q'},
619 {CMD_LINE_OPT_COPY_TYPE, required_argument, NULL, 'c'},
620 {CMD_LINE_OPT_RING_SIZE, required_argument, NULL, 's'},
624 const unsigned int default_port_mask = (1 << nb_ports) - 1;
628 char *prgname = argv[0];
630 ioat_enabled_port_mask = default_port_mask;
633 while ((opt = getopt_long(argc, argvopt, short_options,
634 lgopts, &option_index)) != EOF) {
639 ioat_enabled_port_mask = ioat_parse_portmask(optarg);
640 if (ioat_enabled_port_mask & ~default_port_mask ||
641 ioat_enabled_port_mask <= 0) {
642 printf("Invalid portmask, %s, suggest 0x%x\n",
643 optarg, default_port_mask);
650 nb_queues = atoi(optarg);
651 if (nb_queues == 0 || nb_queues > MAX_RX_QUEUES_COUNT) {
652 printf("Invalid RX queues number %s. Max %u\n",
653 optarg, MAX_RX_QUEUES_COUNT);
660 copy_mode = ioat_parse_copy_mode(optarg);
661 if (copy_mode == COPY_MODE_INVALID_NUM) {
662 printf("Invalid copy type. Use: sw, hw\n");
669 ring_size = atoi(optarg);
670 if (ring_size == 0) {
671 printf("Invalid ring size, %s.\n", optarg);
687 printf("MAC updating %s\n", mac_updating ? "enabled" : "disabled");
689 argv[optind - 1] = prgname;
692 optind = 1; /* reset getopt lib */
696 /* check link status, return true if at least one port is up */
698 check_link_status(uint32_t port_mask)
701 struct rte_eth_link link;
702 int ret, link_status = 0;
704 printf("\nChecking link status\n");
705 RTE_ETH_FOREACH_DEV(portid) {
706 if ((port_mask & (1 << portid)) == 0)
709 memset(&link, 0, sizeof(link));
710 ret = rte_eth_link_get(portid, &link);
712 printf("Port %u link get failed: err=%d\n",
717 /* Print link status */
718 if (link.link_status) {
720 "Port %d Link Up. Speed %u Mbps - %s\n",
721 portid, link.link_speed,
722 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
723 ("full-duplex") : ("half-duplex"));
726 printf("Port %d Link Down\n", portid);
732 configure_rawdev_queue(uint32_t dev_id)
734 struct rte_ioat_rawdev_config dev_config = { .ring_size = ring_size };
735 struct rte_rawdev_info info = { .dev_private = &dev_config };
737 if (rte_rawdev_configure(dev_id, &info) != 0) {
738 rte_exit(EXIT_FAILURE,
739 "Error with rte_rawdev_configure()\n");
741 if (rte_rawdev_start(dev_id) != 0) {
742 rte_exit(EXIT_FAILURE,
743 "Error with rte_rawdev_start()\n");
750 uint16_t nb_rawdev = 0, rdev_id = 0;
753 for (i = 0; i < cfg.nb_ports; i++) {
754 for (j = 0; j < cfg.ports[i].nb_queues; j++) {
755 struct rte_rawdev_info rdev_info = { 0 };
758 if (rdev_id == rte_rawdev_count())
760 rte_rawdev_info_get(rdev_id++, &rdev_info);
761 } while (rdev_info.driver_name == NULL ||
762 strcmp(rdev_info.driver_name,
763 IOAT_PMD_RAWDEV_NAME_STR) != 0);
765 cfg.ports[i].ioat_ids[j] = rdev_id - 1;
766 configure_rawdev_queue(cfg.ports[i].ioat_ids[j]);
771 if (nb_rawdev < cfg.nb_ports * cfg.ports[0].nb_queues)
772 rte_exit(EXIT_FAILURE,
773 "Not enough IOAT rawdevs (%u) for all queues (%u).\n",
774 nb_rawdev, cfg.nb_ports * cfg.ports[0].nb_queues);
775 RTE_LOG(INFO, IOAT, "Number of used rawdevs: %u.\n", nb_rawdev);
783 for (i = 0; i < cfg.nb_ports; i++) {
784 char ring_name[RTE_RING_NAMESIZE];
786 snprintf(ring_name, sizeof(ring_name), "rx_to_tx_ring_%u", i);
787 /* Create ring for inter core communication */
788 cfg.ports[i].rx_to_tx_ring = rte_ring_create(
789 ring_name, ring_size,
790 rte_socket_id(), RING_F_SP_ENQ | RING_F_SC_DEQ);
792 if (cfg.ports[i].rx_to_tx_ring == NULL)
793 rte_exit(EXIT_FAILURE, "Ring create failed: %s\n",
794 rte_strerror(rte_errno));
799 * Initializes a given port using global settings and with the RX buffers
800 * coming from the mbuf_pool passed as a parameter.
803 port_init(uint16_t portid, struct rte_mempool *mbuf_pool, uint16_t nb_queues)
805 /* configuring port to use RSS for multiple RX queues */
806 static const struct rte_eth_conf port_conf = {
808 .mq_mode = ETH_MQ_RX_RSS,
809 .max_rx_pkt_len = RTE_ETHER_MAX_LEN
814 .rss_hf = ETH_RSS_PROTO_MASK,
819 struct rte_eth_rxconf rxq_conf;
820 struct rte_eth_txconf txq_conf;
821 struct rte_eth_conf local_port_conf = port_conf;
822 struct rte_eth_dev_info dev_info;
825 /* Skip ports that are not enabled */
826 if ((ioat_enabled_port_mask & (1 << portid)) == 0) {
827 printf("Skipping disabled port %u\n", portid);
832 printf("Initializing port %u... ", portid);
834 ret = rte_eth_dev_info_get(portid, &dev_info);
836 rte_exit(EXIT_FAILURE, "Cannot get device info: %s, port=%u\n",
837 rte_strerror(-ret), portid);
839 local_port_conf.rx_adv_conf.rss_conf.rss_hf &=
840 dev_info.flow_type_rss_offloads;
841 if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MBUF_FAST_FREE)
842 local_port_conf.txmode.offloads |=
843 DEV_TX_OFFLOAD_MBUF_FAST_FREE;
844 ret = rte_eth_dev_configure(portid, nb_queues, 1, &local_port_conf);
846 rte_exit(EXIT_FAILURE, "Cannot configure device:"
847 " err=%d, port=%u\n", ret, portid);
849 ret = rte_eth_dev_adjust_nb_rx_tx_desc(portid, &nb_rxd,
852 rte_exit(EXIT_FAILURE,
853 "Cannot adjust number of descriptors: err=%d, port=%u\n",
856 rte_eth_macaddr_get(portid, &ioat_ports_eth_addr[portid]);
859 rxq_conf = dev_info.default_rxconf;
860 rxq_conf.offloads = local_port_conf.rxmode.offloads;
861 for (i = 0; i < nb_queues; i++) {
862 ret = rte_eth_rx_queue_setup(portid, i, nb_rxd,
863 rte_eth_dev_socket_id(portid), &rxq_conf,
866 rte_exit(EXIT_FAILURE,
867 "rte_eth_rx_queue_setup:err=%d,port=%u, queue_id=%u\n",
871 /* Init one TX queue on each port */
872 txq_conf = dev_info.default_txconf;
873 txq_conf.offloads = local_port_conf.txmode.offloads;
874 ret = rte_eth_tx_queue_setup(portid, 0, nb_txd,
875 rte_eth_dev_socket_id(portid),
878 rte_exit(EXIT_FAILURE,
879 "rte_eth_tx_queue_setup:err=%d,port=%u\n",
882 /* Initialize TX buffers */
883 tx_buffer[portid] = rte_zmalloc_socket("tx_buffer",
884 RTE_ETH_TX_BUFFER_SIZE(MAX_PKT_BURST), 0,
885 rte_eth_dev_socket_id(portid));
886 if (tx_buffer[portid] == NULL)
887 rte_exit(EXIT_FAILURE,
888 "Cannot allocate buffer for tx on port %u\n",
891 rte_eth_tx_buffer_init(tx_buffer[portid], MAX_PKT_BURST);
893 ret = rte_eth_tx_buffer_set_err_callback(tx_buffer[portid],
894 rte_eth_tx_buffer_count_callback,
895 &port_statistics.tx_dropped[portid]);
897 rte_exit(EXIT_FAILURE,
898 "Cannot set error callback for tx buffer on port %u\n",
902 ret = rte_eth_dev_start(portid);
904 rte_exit(EXIT_FAILURE,
905 "rte_eth_dev_start:err=%d, port=%u\n",
908 rte_eth_promiscuous_enable(portid);
910 printf("Port %u, MAC address: %02X:%02X:%02X:%02X:%02X:%02X\n\n",
912 ioat_ports_eth_addr[portid].addr_bytes[0],
913 ioat_ports_eth_addr[portid].addr_bytes[1],
914 ioat_ports_eth_addr[portid].addr_bytes[2],
915 ioat_ports_eth_addr[portid].addr_bytes[3],
916 ioat_ports_eth_addr[portid].addr_bytes[4],
917 ioat_ports_eth_addr[portid].addr_bytes[5]);
919 cfg.ports[cfg.nb_ports].rxtx_port = portid;
920 cfg.ports[cfg.nb_ports++].nb_queues = nb_queues;
924 signal_handler(int signum)
926 if (signum == SIGINT || signum == SIGTERM) {
927 printf("\n\nSignal %d received, preparing to exit...\n",
934 main(int argc, char **argv)
937 uint16_t nb_ports, portid;
939 unsigned int nb_mbufs;
942 ret = rte_eal_init(argc, argv);
944 rte_exit(EXIT_FAILURE, "Invalid EAL arguments\n");
949 signal(SIGINT, signal_handler);
950 signal(SIGTERM, signal_handler);
952 nb_ports = rte_eth_dev_count_avail();
954 rte_exit(EXIT_FAILURE, "No Ethernet ports - bye\n");
956 /* Parse application arguments (after the EAL ones) */
957 ret = ioat_parse_args(argc, argv, nb_ports);
959 rte_exit(EXIT_FAILURE, "Invalid IOAT arguments\n");
961 nb_mbufs = RTE_MAX(nb_ports * (nb_queues * (nb_rxd + nb_txd +
962 4 * MAX_PKT_BURST) + rte_lcore_count() * MEMPOOL_CACHE_SIZE),
965 /* Create the mbuf pool */
966 ioat_pktmbuf_pool = rte_pktmbuf_pool_create("mbuf_pool", nb_mbufs,
967 MEMPOOL_CACHE_SIZE, 0, RTE_MBUF_DEFAULT_BUF_SIZE,
969 if (ioat_pktmbuf_pool == NULL)
970 rte_exit(EXIT_FAILURE, "Cannot init mbuf pool\n");
972 /* Initialise each port */
974 RTE_ETH_FOREACH_DEV(portid)
975 port_init(portid, ioat_pktmbuf_pool, nb_queues);
977 /* Initialize port xstats */
978 memset(&port_statistics, 0, sizeof(port_statistics));
980 while (!check_link_status(ioat_enabled_port_mask) && !force_quit)
983 /* Check if there is enough lcores for all ports. */
984 cfg.nb_lcores = rte_lcore_count() - 1;
985 if (cfg.nb_lcores < 1)
986 rte_exit(EXIT_FAILURE,
987 "There should be at least one slave lcore.\n");
989 if (copy_mode == COPY_MODE_IOAT_NUM)
991 else /* copy_mode == COPY_MODE_SW_NUM */
994 start_forwarding_cores();
995 /* master core prints stats while other cores forward */
996 print_stats(argv[0]);
998 /* force_quit is true when we get here */
999 rte_eal_mp_wait_lcore();
1002 for (i = 0; i < cfg.nb_ports; i++) {
1003 printf("Closing port %d\n", cfg.ports[i].rxtx_port);
1004 rte_eth_dev_stop(cfg.ports[i].rxtx_port);
1005 rte_eth_dev_close(cfg.ports[i].rxtx_port);
1006 if (copy_mode == COPY_MODE_IOAT_NUM) {
1007 for (j = 0; j < cfg.ports[i].nb_queues; j++) {
1008 printf("Stopping rawdev %d\n",
1009 cfg.ports[i].ioat_ids[j]);
1010 rte_rawdev_stop(cfg.ports[i].ioat_ids[j]);
1012 } else /* copy_mode == COPY_MODE_SW_NUM */
1013 rte_ring_free(cfg.ports[i].rx_to_tx_ring);