examples: use global RTE_MAX_ETHPORTS
[dpdk.git] / examples / link_status_interrupt / main.c
1 /*-
2  *   BSD LICENSE
3  * 
4  *   Copyright(c) 2010-2013 Intel Corporation. All rights reserved.
5  *   All rights reserved.
6  * 
7  *   Redistribution and use in source and binary forms, with or without 
8  *   modification, are permitted provided that the following conditions 
9  *   are met:
10  * 
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 
16  *       distribution.
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.
20  * 
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.
32  * 
33  */
34
35 #include <stdio.h>
36 #include <stdlib.h>
37 #include <string.h>
38 #include <stdint.h>
39 #include <inttypes.h>
40 #include <sys/types.h>
41 #include <string.h>
42 #include <sys/queue.h>
43 #include <netinet/in.h>
44 #include <setjmp.h>
45 #include <stdarg.h>
46 #include <ctype.h>
47 #include <errno.h>
48 #include <getopt.h>
49
50 #include <rte_common.h>
51 #include <rte_log.h>
52 #include <rte_memory.h>
53 #include <rte_memcpy.h>
54 #include <rte_memzone.h>
55 #include <rte_tailq.h>
56 #include <rte_eal.h>
57 #include <rte_per_lcore.h>
58 #include <rte_launch.h>
59 #include <rte_atomic.h>
60 #include <rte_cycles.h>
61 #include <rte_prefetch.h>
62 #include <rte_lcore.h>
63 #include <rte_per_lcore.h>
64 #include <rte_branch_prediction.h>
65 #include <rte_interrupts.h>
66 #include <rte_pci.h>
67 #include <rte_random.h>
68 #include <rte_debug.h>
69 #include <rte_ether.h>
70 #include <rte_ethdev.h>
71 #include <rte_ring.h>
72 #include <rte_mempool.h>
73 #include <rte_mbuf.h>
74
75 #include "main.h"
76
77 #define RTE_LOGTYPE_LSI RTE_LOGTYPE_USER1
78
79 #define MBUF_SIZE (2048 + sizeof(struct rte_mbuf) + RTE_PKTMBUF_HEADROOM)
80 #define NB_MBUF   8192
81
82 /*
83  * RX and TX Prefetch, Host, and Write-back threshold values should be
84  * carefully set for optimal performance. Consult the network
85  * controller's datasheet and supporting DPDK documentation for guidance
86  * on how these parameters should be set.
87  */
88 #define RX_PTHRESH 8 /**< Default values of RX prefetch threshold reg. */
89 #define RX_HTHRESH 8 /**< Default values of RX host threshold reg. */
90 #define RX_WTHRESH 4 /**< Default values of RX write-back threshold reg. */
91
92 /*
93  * These default values are optimized for use with the Intel(R) 82599 10 GbE
94  * Controller and the DPDK ixgbe PMD. Consider using other values for other
95  * network controllers and/or network drivers.
96  */
97 #define TX_PTHRESH 36 /**< Default values of TX prefetch threshold reg. */
98 #define TX_HTHRESH 0  /**< Default values of TX host threshold reg. */
99 #define TX_WTHRESH 0  /**< Default values of TX write-back threshold reg. */
100
101 #define MAX_PKT_BURST 32
102 #define BURST_TX_DRAIN 200000ULL /* around 100us at 2 Ghz */
103
104 /*
105  * Configurable number of RX/TX ring descriptors
106  */
107 #define RTE_TEST_RX_DESC_DEFAULT 128
108 #define RTE_TEST_TX_DESC_DEFAULT 512
109 static uint16_t nb_rxd = RTE_TEST_RX_DESC_DEFAULT;
110 static uint16_t nb_txd = RTE_TEST_TX_DESC_DEFAULT;
111
112 /* ethernet addresses of ports */
113 static struct ether_addr lsi_ports_eth_addr[RTE_MAX_ETHPORTS];
114
115 /* mask of enabled ports */
116 static uint32_t lsi_enabled_port_mask = 0;
117
118 static unsigned int lsi_rx_queue_per_lcore = 1;
119
120 /* destination port for L2 forwarding */
121 static unsigned lsi_dst_ports[RTE_MAX_ETHPORTS] = {0};
122
123 #define MAX_PKT_BURST 32
124 struct mbuf_table {
125         unsigned len;
126         struct rte_mbuf *m_table[MAX_PKT_BURST];
127 };
128
129 #define MAX_RX_QUEUE_PER_LCORE 16
130 #define MAX_TX_QUEUE_PER_PORT 16
131 struct lcore_queue_conf {
132         unsigned n_rx_port;
133         unsigned rx_port_list[MAX_RX_QUEUE_PER_LCORE];
134         unsigned tx_queue_id;
135         struct mbuf_table tx_mbufs[RTE_MAX_ETHPORTS];
136
137 } __rte_cache_aligned;
138 struct lcore_queue_conf lcore_queue_conf[RTE_MAX_LCORE];
139
140 static const struct rte_eth_conf port_conf = {
141         .rxmode = {
142                 .split_hdr_size = 0,
143                 .header_split   = 0, /**< Header Split disabled */
144                 .hw_ip_checksum = 0, /**< IP checksum offload disabled */
145                 .hw_vlan_filter = 0, /**< VLAN filtering disabled */
146                 .jumbo_frame    = 0, /**< Jumbo Frame Support disabled */
147                 .hw_strip_crc   = 0, /**< CRC stripped by hardware */
148         },
149         .txmode = {
150                 .mq_mode = ETH_MQ_TX_NONE,
151         },
152         .intr_conf = {
153                 .lsc = 1, /**< lsc interrupt feature enabled */
154         },
155 };
156
157 static const struct rte_eth_rxconf rx_conf = {
158         .rx_thresh = {
159                 .pthresh = RX_PTHRESH,
160                 .hthresh = RX_HTHRESH,
161                 .wthresh = RX_WTHRESH,
162         },
163 };
164
165 static const struct rte_eth_txconf tx_conf = {
166         .tx_thresh = {
167                 .pthresh = TX_PTHRESH,
168                 .hthresh = TX_HTHRESH,
169                 .wthresh = TX_WTHRESH,
170         },
171         .tx_free_thresh = 0, /* Use PMD default values */
172         .tx_rs_thresh = 0, /* Use PMD default values */
173 };
174
175 struct rte_mempool * lsi_pktmbuf_pool = NULL;
176
177 /* Per-port statistics struct */
178 struct lsi_port_statistics {
179         uint64_t tx;
180         uint64_t rx;
181         uint64_t dropped;
182 } __rte_cache_aligned;
183 struct lsi_port_statistics port_statistics[RTE_MAX_ETHPORTS];
184
185 /* A tsc-based timer responsible for triggering statistics printout */
186 #define TIMER_MILLISECOND 2000000ULL /* around 1ms at 2 Ghz */
187 #define MAX_TIMER_PERIOD 86400 /* 1 day max */
188 static int64_t timer_period = 10 * TIMER_MILLISECOND * 1000; /* default period is 10 seconds */
189
190 /* Print out statistics on packets dropped */
191 static void
192 print_stats(void)
193 {
194         struct rte_eth_link link;
195         uint64_t total_packets_dropped, total_packets_tx, total_packets_rx;
196         unsigned portid;
197
198         total_packets_dropped = 0;
199         total_packets_tx = 0;
200         total_packets_rx = 0;
201
202         const char clr[] = { 27, '[', '2', 'J', '\0' };
203         const char topLeft[] = { 27, '[', '1', ';', '1', 'H','\0' };
204
205                 /* Clear screen and move to top left */
206         printf("%s%s", clr, topLeft);
207
208         printf("\nPort statistics ====================================");
209
210         for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
211                 /* skip ports that are not enabled */
212                 if ((lsi_enabled_port_mask & (1 << portid)) == 0)
213                         continue;
214
215                 memset(&link, 0, sizeof(link));
216                 rte_eth_link_get_nowait((uint8_t)portid, &link);
217                 printf("\nStatistics for port %u ------------------------------"
218                            "\nLink status: %25s"
219                            "\nLink speed: %26u"
220                            "\nLink duplex: %25s"
221                            "\nPackets sent: %24"PRIu64
222                            "\nPackets received: %20"PRIu64
223                            "\nPackets dropped: %21"PRIu64,
224                            portid,
225                            (link.link_status ? "Link up" : "Link down"),
226                            (unsigned)link.link_speed,
227                            (link.link_duplex == ETH_LINK_FULL_DUPLEX ? \
228                                         "full-duplex" : "half-duplex"),
229                            port_statistics[portid].tx,
230                            port_statistics[portid].rx,
231                            port_statistics[portid].dropped);
232
233                 total_packets_dropped += port_statistics[portid].dropped;
234                 total_packets_tx += port_statistics[portid].tx;
235                 total_packets_rx += port_statistics[portid].rx;
236         }
237         printf("\nAggregate statistics ==============================="
238                    "\nTotal packets sent: %18"PRIu64
239                    "\nTotal packets received: %14"PRIu64
240                    "\nTotal packets dropped: %15"PRIu64,
241                    total_packets_tx,
242                    total_packets_rx,
243                    total_packets_dropped);
244         printf("\n====================================================\n");
245 }
246
247 /* Send the packet on an output interface */
248 static int
249 lsi_send_burst(struct lcore_queue_conf *qconf, unsigned n, uint8_t port)
250 {
251         struct rte_mbuf **m_table;
252         unsigned ret;
253         unsigned queueid;
254
255         queueid = (uint16_t) qconf->tx_queue_id;
256         m_table = (struct rte_mbuf **)qconf->tx_mbufs[port].m_table;
257
258         ret = rte_eth_tx_burst(port, (uint16_t) queueid, m_table, (uint16_t) n);
259         port_statistics[port].tx += ret;
260         if (unlikely(ret < n)) {
261                 port_statistics[port].dropped += (n - ret);
262                 do {
263                         rte_pktmbuf_free(m_table[ret]);
264                 } while (++ret < n);
265         }
266
267         return 0;
268 }
269
270 /* Send the packet on an output interface */
271 static int
272 lsi_send_packet(struct rte_mbuf *m, uint8_t port)
273 {
274         unsigned lcore_id, len;
275         struct lcore_queue_conf *qconf;
276
277         lcore_id = rte_lcore_id();
278
279         qconf = &lcore_queue_conf[lcore_id];
280         len = qconf->tx_mbufs[port].len;
281         qconf->tx_mbufs[port].m_table[len] = m;
282         len++;
283
284         /* enough pkts to be sent */
285         if (unlikely(len == MAX_PKT_BURST)) {
286                 lsi_send_burst(qconf, MAX_PKT_BURST, port);
287                 len = 0;
288         }
289
290         qconf->tx_mbufs[port].len = len;
291         return 0;
292 }
293
294 static void
295 lsi_simple_forward(struct rte_mbuf *m, unsigned portid)
296 {
297         struct ether_hdr *eth;
298         void *tmp;
299         unsigned dst_port = lsi_dst_ports[portid];
300
301         eth = rte_pktmbuf_mtod(m, struct ether_hdr *);
302
303         /* 02:00:00:00:00:xx */
304         tmp = &eth->d_addr.addr_bytes[0];
305         *((uint64_t *)tmp) = 0x000000000002 + ((uint64_t)dst_port << 40);
306
307         /* src addr */
308         ether_addr_copy(&lsi_ports_eth_addr[dst_port], &eth->s_addr);
309
310         lsi_send_packet(m, (uint8_t) dst_port);
311 }
312
313 /* main processing loop */
314 static void
315 lsi_main_loop(void)
316 {
317         struct rte_mbuf *pkts_burst[MAX_PKT_BURST];
318         struct rte_mbuf *m;
319         unsigned lcore_id;
320         uint64_t prev_tsc = 0;
321         uint64_t diff_tsc, cur_tsc, timer_tsc;
322         unsigned i, j, portid, nb_rx;
323         struct lcore_queue_conf *qconf;
324
325         timer_tsc = 0;
326
327         lcore_id = rte_lcore_id();
328         qconf = &lcore_queue_conf[lcore_id];
329
330         if (qconf->n_rx_port == 0) {
331                 RTE_LOG(INFO, LSI, "lcore %u has nothing to do\n", lcore_id);
332                 while(1);
333         }
334
335         RTE_LOG(INFO, LSI, "entering main loop on lcore %u\n", lcore_id);
336
337         for (i = 0; i < qconf->n_rx_port; i++) {
338
339                 portid = qconf->rx_port_list[i];
340                 RTE_LOG(INFO, LSI, " -- lcoreid=%u portid=%u\n", lcore_id,
341                         portid);
342         }
343
344         while (1) {
345
346                 cur_tsc = rte_rdtsc();
347
348                 /*
349                  * TX burst queue drain
350                  */
351                 diff_tsc = cur_tsc - prev_tsc;
352                 if (unlikely(diff_tsc > BURST_TX_DRAIN)) {
353
354                         /* this could be optimized (use queueid instead of
355                          * portid), but it is not called so often */
356                         for (portid = 0; portid < RTE_MAX_ETHPORTS; portid++) {
357                                 if (qconf->tx_mbufs[portid].len == 0)
358                                         continue;
359                                 lsi_send_burst(&lcore_queue_conf[lcore_id],
360                                                  qconf->tx_mbufs[portid].len,
361                                                  (uint8_t) portid);
362                                 qconf->tx_mbufs[portid].len = 0;
363                         }
364
365                         /* if timer is enabled */
366                         if (timer_period > 0) {
367
368                                 /* advance the timer */
369                                 timer_tsc += diff_tsc;
370
371                                 /* if timer has reached its timeout */
372                                 if (unlikely(timer_tsc >= (uint64_t) timer_period)) {
373
374                                         /* do this only on master core */
375                                         if (lcore_id == rte_get_master_lcore()) {
376                                                 print_stats();
377                                                 /* reset the timer */
378                                                 timer_tsc = 0;
379                                         }
380                                 }
381                         }
382
383                         prev_tsc = cur_tsc;
384                 }
385
386                 /*
387                  * Read packet from RX queues
388                  */
389                 for (i = 0; i < qconf->n_rx_port; i++) {
390
391                         portid = qconf->rx_port_list[i];
392                         nb_rx = rte_eth_rx_burst((uint8_t) portid, 0,
393                                                  pkts_burst, MAX_PKT_BURST);
394
395                         port_statistics[portid].rx += nb_rx;
396
397                         for (j = 0; j < nb_rx; j++) {
398                                 m = pkts_burst[j];
399                                 rte_prefetch0(rte_pktmbuf_mtod(m, void *));
400                                 lsi_simple_forward(m, portid);
401                         }
402                 }
403         }
404 }
405
406 static int
407 lsi_launch_one_lcore(__attribute__((unused)) void *dummy)
408 {
409         lsi_main_loop();
410         return 0;
411 }
412
413 /* display usage */
414 static void
415 lsi_usage(const char *prgname)
416 {
417         printf("%s [EAL options] -- -p PORTMASK [-q NQ]\n"
418                 "  -p PORTMASK: hexadecimal bitmask of ports to configure\n"
419                 "  -q NQ: number of queue (=ports) per lcore (default is 1)\n"
420                 "  -T PERIOD: statistics will be refreshed each PERIOD seconds (0 to disable, 10 default, 86400 maximum)\n",
421                         prgname);
422 }
423
424 static int
425 lsi_parse_portmask(const char *portmask)
426 {
427         char *end = NULL;
428         unsigned long pm;
429
430         /* parse hexadecimal string */
431         pm = strtoul(portmask, &end, 16);
432         if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
433                 return -1;
434
435         if (pm == 0)
436                 return -1;
437
438         return pm;
439 }
440
441 static unsigned int
442 lsi_parse_nqueue(const char *q_arg)
443 {
444         char *end = NULL;
445         unsigned long n;
446
447         /* parse hexadecimal string */
448         n = strtoul(q_arg, &end, 10);
449         if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
450                 return 0;
451         if (n == 0)
452                 return 0;
453         if (n >= MAX_RX_QUEUE_PER_LCORE)
454                 return 0;
455
456         return n;
457 }
458
459 static int
460 lsi_parse_timer_period(const char *q_arg)
461 {
462         char *end = NULL;
463         int n;
464
465         /* parse number string */
466         n = strtol(q_arg, &end, 10);
467         if ((q_arg[0] == '\0') || (end == NULL) || (*end != '\0'))
468                 return -1;
469         if (n >= MAX_TIMER_PERIOD)
470                 return -1;
471
472         return n;
473 }
474
475 /* Parse the argument given in the command line of the application */
476 static int
477 lsi_parse_args(int argc, char **argv)
478 {
479         int opt, ret;
480         char **argvopt;
481         int option_index;
482         char *prgname = argv[0];
483         static struct option lgopts[] = {
484                 {NULL, 0, 0, 0}
485         };
486
487         argvopt = argv;
488
489         while ((opt = getopt_long(argc, argvopt, "p:q:T:",
490                                   lgopts, &option_index)) != EOF) {
491
492                 switch (opt) {
493                 /* portmask */
494                 case 'p':
495                         lsi_enabled_port_mask = lsi_parse_portmask(optarg);
496                         if (lsi_enabled_port_mask == 0) {
497                                 printf("invalid portmask\n");
498                                 lsi_usage(prgname);
499                                 return -1;
500                         }
501                         break;
502
503                 /* nqueue */
504                 case 'q':
505                         lsi_rx_queue_per_lcore = lsi_parse_nqueue(optarg);
506                         if (lsi_rx_queue_per_lcore == 0) {
507                                 printf("invalid queue number\n");
508                                 lsi_usage(prgname);
509                                 return -1;
510                         }
511                         break;
512
513                 /* timer period */
514                 case 'T':
515                         timer_period = lsi_parse_timer_period(optarg) * 1000 * TIMER_MILLISECOND;
516                         if (timer_period < 0) {
517                                 printf("invalid timer period\n");
518                                 lsi_usage(prgname);
519                                 return -1;
520                         }
521                         break;
522
523                 /* long options */
524                 case 0:
525                         lsi_usage(prgname);
526                         return -1;
527
528                 default:
529                         lsi_usage(prgname);
530                         return -1;
531                 }
532         }
533
534         if (optind >= 0)
535                 argv[optind-1] = prgname;
536
537         ret = optind-1;
538         optind = 0; /* reset getopt lib */
539         return ret;
540 }
541
542 /**
543  * It will be called as the callback for specified port after a LSI interrupt
544  * has been fully handled. This callback needs to be implemented carefully as
545  * it will be called in the interrupt host thread which is different from the
546  * application main thread.
547  *
548  * @param port_id
549  *  Port id.
550  * @param type
551  *  event type.
552  * @param param
553  *  Pointer to(address of) the parameters.
554  *
555  * @return
556  *  void.
557  */
558 static void
559 lsi_event_callback(uint8_t port_id, enum rte_eth_event_type type, void *param)
560 {
561         struct rte_eth_link link;
562
563         RTE_SET_USED(param);
564
565         printf("\n\nIn registered callback...\n");
566         printf("Event type: %s\n", type == RTE_ETH_EVENT_INTR_LSC ? "LSC interrupt" : "unknown event");
567         rte_eth_link_get_nowait(port_id, &link);
568         if (link.link_status) {
569                 printf("Port %d Link Up - speed %u Mbps - %s\n\n",
570                                 port_id, (unsigned)link.link_speed,
571                         (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
572                                 ("full-duplex") : ("half-duplex"));
573         } else
574                 printf("Port %d Link Down\n\n", port_id);
575 }
576
577 /* Check the link status of all ports in up to 9s, and print them finally */
578 static void
579 check_all_ports_link_status(uint8_t port_num, uint32_t port_mask)
580 {
581 #define CHECK_INTERVAL 100 /* 100ms */
582 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
583         uint8_t portid, count, all_ports_up, print_flag = 0;
584         struct rte_eth_link link;
585
586         printf("\nChecking link status");
587         fflush(stdout);
588         for (count = 0; count <= MAX_CHECK_TIME; count++) {
589                 all_ports_up = 1;
590                 for (portid = 0; portid < port_num; portid++) {
591                         if ((port_mask & (1 << portid)) == 0)
592                                 continue;
593                         memset(&link, 0, sizeof(link));
594                         rte_eth_link_get_nowait(portid, &link);
595                         /* print link status if flag set */
596                         if (print_flag == 1) {
597                                 if (link.link_status)
598                                         printf("Port %d Link Up - speed %u "
599                                                 "Mbps - %s\n", (uint8_t)portid,
600                                                 (unsigned)link.link_speed,
601                                 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
602                                         ("full-duplex") : ("half-duplex\n"));
603                                 else
604                                         printf("Port %d Link Down\n",
605                                                         (uint8_t)portid);
606                                 continue;
607                         }
608                         /* clear all_ports_up flag if any link down */
609                         if (link.link_status == 0) {
610                                 all_ports_up = 0;
611                                 break;
612                         }
613                 }
614                 /* after finally printing all link status, get out */
615                 if (print_flag == 1)
616                         break;
617
618                 if (all_ports_up == 0) {
619                         printf(".");
620                         fflush(stdout);
621                         rte_delay_ms(CHECK_INTERVAL);
622                 }
623
624                 /* set the print_flag if all ports up or timeout */
625                 if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
626                         print_flag = 1;
627                         printf("done\n");
628                 }
629         }
630 }
631
632 int
633 MAIN(int argc, char **argv)
634 {
635         struct lcore_queue_conf *qconf;
636         struct rte_eth_dev_info dev_info;
637         int ret;
638         uint8_t nb_ports;
639         uint8_t portid, portid_last = 0;
640         unsigned lcore_id, rx_lcore_id;
641         unsigned nb_ports_in_mask = 0;
642
643         /* init EAL */
644         ret = rte_eal_init(argc, argv);
645         if (ret < 0)
646                 rte_exit(EXIT_FAILURE, "rte_eal_init failed");
647         argc -= ret;
648         argv += ret;
649
650         /* parse application arguments (after the EAL ones) */
651         ret = lsi_parse_args(argc, argv);
652         if (ret < 0)
653                 rte_exit(EXIT_FAILURE, "Invalid arguments");
654
655         /* create the mbuf pool */
656         lsi_pktmbuf_pool =
657                 rte_mempool_create("mbuf_pool", NB_MBUF,
658                                    MBUF_SIZE, 32,
659                                    sizeof(struct rte_pktmbuf_pool_private),
660                                    rte_pktmbuf_pool_init, NULL,
661                                    rte_pktmbuf_init, NULL,
662                                    rte_socket_id(), 0);
663         if (lsi_pktmbuf_pool == NULL)
664                 rte_panic("Cannot init mbuf pool\n");
665
666         /* init driver(s) */
667         if (rte_pmd_init_all() < 0)
668                 rte_panic("Cannot init pmd\n");
669
670         if (rte_eal_pci_probe() < 0)
671                 rte_panic("Cannot probe PCI\n");
672
673         nb_ports = rte_eth_dev_count();
674         if (nb_ports == 0)
675                 rte_panic("No Ethernet port - bye\n");
676
677         if (nb_ports > RTE_MAX_ETHPORTS)
678                 nb_ports = RTE_MAX_ETHPORTS;
679
680         /*
681          * Each logical core is assigned a dedicated TX queue on each port.
682          */
683         for (portid = 0; portid < nb_ports; portid++) {
684                 /* skip ports that are not enabled */
685                 if ((lsi_enabled_port_mask & (1 << portid)) == 0)
686                         continue;
687
688                 /* save the destination port id */
689                 if (nb_ports_in_mask % 2) {
690                         lsi_dst_ports[portid] = portid_last;
691                         lsi_dst_ports[portid_last] = portid;
692                 }
693                 else
694                         portid_last = portid;
695
696                 nb_ports_in_mask++;
697
698                 rte_eth_dev_info_get(portid, &dev_info);
699         }
700         if (nb_ports_in_mask < 2 || nb_ports_in_mask % 2)
701                 rte_exit(EXIT_FAILURE, "Current enabled port number is %u, "
702                                 "but it should be even and at least 2\n",
703                                 nb_ports_in_mask);
704
705         rx_lcore_id = 0;
706         qconf = &lcore_queue_conf[rx_lcore_id];
707
708         /* Initialize the port/queue configuration of each logical core */
709         for (portid = 0; portid < nb_ports; portid++) {
710                 /* skip ports that are not enabled */
711                 if ((lsi_enabled_port_mask & (1 << portid)) == 0)
712                         continue;
713
714                 /* get the lcore_id for this port */
715                 while (rte_lcore_is_enabled(rx_lcore_id) == 0 ||
716                        lcore_queue_conf[rx_lcore_id].n_rx_port ==
717                        lsi_rx_queue_per_lcore) {
718
719                         rx_lcore_id++;
720                         if (rx_lcore_id >= RTE_MAX_LCORE)
721                                 rte_exit(EXIT_FAILURE, "Not enough cores\n");
722                 }
723                 if (qconf != &lcore_queue_conf[rx_lcore_id])
724                         /* Assigned a new logical core in the loop above. */
725                         qconf = &lcore_queue_conf[rx_lcore_id];
726
727                 qconf->rx_port_list[qconf->n_rx_port] = portid;
728                 qconf->n_rx_port++;
729                 printf("Lcore %u: RX port %u\n",rx_lcore_id, (unsigned) portid);
730         }
731
732         /* Initialise each port */
733         for (portid = 0; portid < nb_ports; portid++) {
734                 /* skip ports that are not enabled */
735                 if ((lsi_enabled_port_mask & (1 << portid)) == 0) {
736                         printf("Skipping disabled port %u\n", (unsigned) portid);
737                         continue;
738                 }
739                 /* init port */
740                 printf("Initializing port %u... ", (unsigned) portid);
741                 fflush(stdout);
742                 ret = rte_eth_dev_configure(portid, 1, 1, &port_conf);
743                 if (ret < 0)
744                         rte_exit(EXIT_FAILURE, "Cannot configure device: err=%d, port=%u\n",
745                                   ret, (unsigned) portid);
746
747                 /* register lsi interrupt callback, need to be after
748                  * rte_eth_dev_configure(). if (intr_conf.lsc == 0), no
749                  * lsc interrupt will be present, and below callback to
750                  * be registered will never be called.
751                  */
752                 rte_eth_dev_callback_register(portid,
753                         RTE_ETH_EVENT_INTR_LSC, lsi_event_callback, NULL);
754
755                 rte_eth_macaddr_get(portid,
756                                     &lsi_ports_eth_addr[portid]);
757
758                 /* init one RX queue */
759                 fflush(stdout);
760                 ret = rte_eth_rx_queue_setup(portid, 0, nb_rxd,
761                                              rte_eth_dev_socket_id(portid), &rx_conf,
762                                              lsi_pktmbuf_pool);
763                 if (ret < 0)
764                         rte_exit(EXIT_FAILURE, "rte_eth_rx_queue_setup: err=%d, port=%u\n",
765                                   ret, (unsigned) portid);
766
767                 /* init one TX queue logical core on each port */
768                 fflush(stdout);
769                 ret = rte_eth_tx_queue_setup(portid, 0, nb_txd,
770                                 rte_eth_dev_socket_id(portid), &tx_conf);
771                 if (ret < 0)
772                         rte_exit(EXIT_FAILURE, "rte_eth_tx_queue_setup: err=%d,port=%u\n",
773                                   ret, (unsigned) portid);
774
775                 /* Start device */
776                 ret = rte_eth_dev_start(portid);
777                 if (ret < 0)
778                         rte_exit(EXIT_FAILURE, "rte_eth_dev_start: err=%d, port=%u\n",
779                                   ret, (unsigned) portid);
780                 printf("done:\n");
781
782                 printf("Port %u, MAC address: %02X:%02X:%02X:%02X:%02X:%02X\n\n",
783                                 (unsigned) portid,
784                                 lsi_ports_eth_addr[portid].addr_bytes[0],
785                                 lsi_ports_eth_addr[portid].addr_bytes[1],
786                                 lsi_ports_eth_addr[portid].addr_bytes[2],
787                                 lsi_ports_eth_addr[portid].addr_bytes[3],
788                                 lsi_ports_eth_addr[portid].addr_bytes[4],
789                                 lsi_ports_eth_addr[portid].addr_bytes[5]);
790
791                 /* initialize port stats */
792                 memset(&port_statistics, 0, sizeof(port_statistics));
793         }
794
795         check_all_ports_link_status(nb_ports, lsi_enabled_port_mask);
796
797         /* launch per-lcore init on every lcore */
798         rte_eal_mp_remote_launch(lsi_launch_one_lcore, NULL, CALL_MASTER);
799         RTE_LCORE_FOREACH_SLAVE(lcore_id) {
800                 if (rte_eal_wait_lcore(lcore_id) < 0)
801                         return -1;
802         }
803
804         return 0;
805 }