examples/vm_power: add --port-list option
[dpdk.git] / examples / vm_power_manager / main.c
1 /* SPDX-License-Identifier: BSD-3-Clause
2  * Copyright(c) 2010-2014 Intel Corporation
3  */
4
5 #include <stdio.h>
6 #include <string.h>
7 #include <stdint.h>
8 #include <sys/epoll.h>
9 #include <fcntl.h>
10 #include <unistd.h>
11 #include <stdlib.h>
12 #include <signal.h>
13 #include <errno.h>
14
15 #include <sys/queue.h>
16
17 #include <rte_common.h>
18 #include <rte_eal.h>
19 #include <rte_launch.h>
20 #include <rte_log.h>
21 #include <rte_per_lcore.h>
22 #include <rte_lcore.h>
23 #include <rte_ethdev.h>
24 #include <getopt.h>
25 #include <rte_cycles.h>
26 #include <rte_debug.h>
27
28 #include "channel_manager.h"
29 #include "channel_monitor.h"
30 #include "power_manager.h"
31 #include "vm_power_cli.h"
32 #include "oob_monitor.h"
33 #include "parse.h"
34 #include <rte_pmd_ixgbe.h>
35 #include <rte_pmd_i40e.h>
36 #include <rte_pmd_bnxt.h>
37
38 #define RX_RING_SIZE 1024
39 #define TX_RING_SIZE 1024
40
41 #define NUM_MBUFS 8191
42 #define MBUF_CACHE_SIZE 250
43 #define BURST_SIZE 32
44
45 static uint32_t enabled_port_mask;
46 static volatile bool force_quit;
47
48 /****************/
49 static const struct rte_eth_conf port_conf_default = {
50         .rxmode = {
51                 .max_rx_pkt_len = ETHER_MAX_LEN,
52         },
53 };
54
55 static inline int
56 port_init(uint16_t port, struct rte_mempool *mbuf_pool)
57 {
58         struct rte_eth_conf port_conf = port_conf_default;
59         const uint16_t rx_rings = 1, tx_rings = 1;
60         int retval;
61         uint16_t q;
62         struct rte_eth_dev_info dev_info;
63         struct rte_eth_txconf txq_conf;
64
65         if (!rte_eth_dev_is_valid_port(port))
66                 return -1;
67
68         rte_eth_dev_info_get(port, &dev_info);
69         if (dev_info.tx_offload_capa & DEV_TX_OFFLOAD_MBUF_FAST_FREE)
70                 port_conf.txmode.offloads |=
71                         DEV_TX_OFFLOAD_MBUF_FAST_FREE;
72
73         /* Configure the Ethernet device. */
74         retval = rte_eth_dev_configure(port, rx_rings, tx_rings, &port_conf);
75         if (retval != 0)
76                 return retval;
77
78         /* Allocate and set up 1 RX queue per Ethernet port. */
79         for (q = 0; q < rx_rings; q++) {
80                 retval = rte_eth_rx_queue_setup(port, q, RX_RING_SIZE,
81                                 rte_eth_dev_socket_id(port), NULL, mbuf_pool);
82                 if (retval < 0)
83                         return retval;
84         }
85
86         txq_conf = dev_info.default_txconf;
87         txq_conf.offloads = port_conf.txmode.offloads;
88         /* Allocate and set up 1 TX queue per Ethernet port. */
89         for (q = 0; q < tx_rings; q++) {
90                 retval = rte_eth_tx_queue_setup(port, q, TX_RING_SIZE,
91                                 rte_eth_dev_socket_id(port), &txq_conf);
92                 if (retval < 0)
93                         return retval;
94         }
95
96         /* Start the Ethernet port. */
97         retval = rte_eth_dev_start(port);
98         if (retval < 0)
99                 return retval;
100
101         /* Display the port MAC address. */
102         struct ether_addr addr;
103         rte_eth_macaddr_get(port, &addr);
104         printf("Port %u MAC: %02" PRIx8 " %02" PRIx8 " %02" PRIx8
105                            " %02" PRIx8 " %02" PRIx8 " %02" PRIx8 "\n",
106                         (unsigned int)port,
107                         addr.addr_bytes[0], addr.addr_bytes[1],
108                         addr.addr_bytes[2], addr.addr_bytes[3],
109                         addr.addr_bytes[4], addr.addr_bytes[5]);
110
111         /* Enable RX in promiscuous mode for the Ethernet device. */
112         rte_eth_promiscuous_enable(port);
113
114
115         return 0;
116 }
117
118 static int
119 parse_portmask(const char *portmask)
120 {
121         char *end = NULL;
122         unsigned long pm;
123
124         /* parse hexadecimal string */
125         pm = strtoul(portmask, &end, 16);
126         if ((portmask[0] == '\0') || (end == NULL) || (*end != '\0'))
127                 return -1;
128
129         if (pm == 0)
130                 return -1;
131
132         return pm;
133 }
134 /* Parse the argument given in the command line of the application */
135 static int
136 parse_args(int argc, char **argv)
137 {
138         int opt, ret, cnt, i;
139         char **argvopt;
140         uint16_t *oob_enable;
141         int option_index;
142         char *prgname = argv[0];
143         struct core_info *ci;
144         static struct option lgopts[] = {
145                 { "mac-updating", no_argument, 0, 1},
146                 { "no-mac-updating", no_argument, 0, 0},
147                 { "core-list", optional_argument, 0, 'l'},
148                 { "port-list", optional_argument, 0, 'p'},
149                 {NULL, 0, 0, 0}
150         };
151         argvopt = argv;
152         ci = get_core_info();
153
154         while ((opt = getopt_long(argc, argvopt, "l:p:q:T:",
155                                   lgopts, &option_index)) != EOF) {
156
157                 switch (opt) {
158                 /* portmask */
159                 case 'p':
160                         enabled_port_mask = parse_portmask(optarg);
161                         if (enabled_port_mask == 0) {
162                                 printf("invalid portmask\n");
163                                 return -1;
164                         }
165                         break;
166                 case 'l':
167                         oob_enable = malloc(ci->core_count * sizeof(uint16_t));
168                         if (oob_enable == NULL) {
169                                 printf("Error - Unable to allocate memory\n");
170                                 return -1;
171                         }
172                         cnt = parse_set(optarg, oob_enable, ci->core_count);
173                         if (cnt < 0) {
174                                 printf("Invalid core-list - [%s]\n",
175                                                 optarg);
176                                 break;
177                         }
178                         for (i = 0; i < ci->core_count; i++) {
179                                 if (oob_enable[i]) {
180                                         printf("***Using core %d\n", i);
181                                         ci->cd[i].oob_enabled = 1;
182                                         ci->cd[i].global_enabled_cpus = 1;
183                                 }
184                         }
185                         free(oob_enable);
186                         break;
187                 /* long options */
188                 case 0:
189                         break;
190
191                 default:
192                         return -1;
193                 }
194         }
195
196         if (optind >= 0)
197                 argv[optind-1] = prgname;
198
199         ret = optind-1;
200         optind = 0; /* reset getopt lib */
201         return ret;
202 }
203
204 static void
205 check_all_ports_link_status(uint32_t port_mask)
206 {
207 #define CHECK_INTERVAL 100 /* 100ms */
208 #define MAX_CHECK_TIME 90 /* 9s (90 * 100ms) in total */
209         uint16_t portid, count, all_ports_up, print_flag = 0;
210         struct rte_eth_link link;
211
212         printf("\nChecking link status");
213         fflush(stdout);
214         for (count = 0; count <= MAX_CHECK_TIME; count++) {
215                 if (force_quit)
216                         return;
217                 all_ports_up = 1;
218                 RTE_ETH_FOREACH_DEV(portid) {
219                         if (force_quit)
220                                 return;
221                         if ((port_mask & (1 << portid)) == 0)
222                                 continue;
223                         memset(&link, 0, sizeof(link));
224                         rte_eth_link_get_nowait(portid, &link);
225                         /* print link status if flag set */
226                         if (print_flag == 1) {
227                                 if (link.link_status)
228                                         printf("Port %d Link Up - speed %u "
229                                                 "Mbps - %s\n", (uint16_t)portid,
230                                                 (unsigned int)link.link_speed,
231                                 (link.link_duplex == ETH_LINK_FULL_DUPLEX) ?
232                                         ("full-duplex") : ("half-duplex\n"));
233                                 else
234                                         printf("Port %d Link Down\n",
235                                                 (uint16_t)portid);
236                                 continue;
237                         }
238                        /* clear all_ports_up flag if any link down */
239                         if (link.link_status == ETH_LINK_DOWN) {
240                                 all_ports_up = 0;
241                                 break;
242                         }
243                 }
244                 /* after finally printing all link status, get out */
245                 if (print_flag == 1)
246                         break;
247
248                 if (all_ports_up == 0) {
249                         printf(".");
250                         fflush(stdout);
251                         rte_delay_ms(CHECK_INTERVAL);
252                 }
253
254                 /* set the print_flag if all ports up or timeout */
255                 if (all_ports_up == 1 || count == (MAX_CHECK_TIME - 1)) {
256                         print_flag = 1;
257                         printf("done\n");
258                 }
259         }
260 }
261 static int
262 run_monitor(__attribute__((unused)) void *arg)
263 {
264         if (channel_monitor_init() < 0) {
265                 printf("Unable to initialize channel monitor\n");
266                 return -1;
267         }
268         run_channel_monitor();
269         return 0;
270 }
271
272 static int
273 run_core_monitor(__attribute__((unused)) void *arg)
274 {
275         if (branch_monitor_init() < 0) {
276                 printf("Unable to initialize core monitor\n");
277                 return -1;
278         }
279         run_branch_monitor();
280         return 0;
281 }
282
283 static void
284 sig_handler(int signo)
285 {
286         printf("Received signal %d, exiting...\n", signo);
287         channel_monitor_exit();
288         channel_manager_exit();
289         power_manager_exit();
290
291 }
292
293 int
294 main(int argc, char **argv)
295 {
296         int ret;
297         unsigned lcore_id;
298         unsigned int nb_ports;
299         struct rte_mempool *mbuf_pool;
300         uint16_t portid;
301         struct core_info *ci;
302
303
304         ret = core_info_init();
305         if (ret < 0)
306                 rte_panic("Cannot allocate core info\n");
307
308         ci = get_core_info();
309
310         ret = rte_eal_init(argc, argv);
311         if (ret < 0)
312                 rte_panic("Cannot init EAL\n");
313
314         signal(SIGINT, sig_handler);
315         signal(SIGTERM, sig_handler);
316
317         argc -= ret;
318         argv += ret;
319
320         /* parse application arguments (after the EAL ones) */
321         ret = parse_args(argc, argv);
322         if (ret < 0)
323                 rte_exit(EXIT_FAILURE, "Invalid arguments\n");
324
325         nb_ports = rte_eth_dev_count_avail();
326
327         if (nb_ports > 0) {
328                 mbuf_pool = rte_pktmbuf_pool_create("MBUF_POOL",
329                                 NUM_MBUFS * nb_ports, MBUF_CACHE_SIZE, 0,
330                                 RTE_MBUF_DEFAULT_BUF_SIZE, rte_socket_id());
331
332                 if (mbuf_pool == NULL)
333                         rte_exit(EXIT_FAILURE, "Cannot create mbuf pool\n");
334
335                 /* Initialize ports. */
336                 RTE_ETH_FOREACH_DEV(portid) {
337                         struct ether_addr eth;
338                         int w, j;
339                         int ret;
340
341                         if ((enabled_port_mask & (1 << portid)) == 0)
342                                 continue;
343
344                         eth.addr_bytes[0] = 0xe0;
345                         eth.addr_bytes[1] = 0xe0;
346                         eth.addr_bytes[2] = 0xe0;
347                         eth.addr_bytes[3] = 0xe0;
348                         eth.addr_bytes[4] = portid + 0xf0;
349
350                         if (port_init(portid, mbuf_pool) != 0)
351                                 rte_exit(EXIT_FAILURE,
352                                         "Cannot init port %"PRIu8 "\n",
353                                         portid);
354
355                         for (w = 0; w < MAX_VFS; w++) {
356                                 eth.addr_bytes[5] = w + 0xf0;
357
358                                 ret = rte_pmd_ixgbe_set_vf_mac_addr(portid,
359                                                         w, &eth);
360                                 if (ret == -ENOTSUP)
361                                         ret = rte_pmd_i40e_set_vf_mac_addr(
362                                                         portid, w, &eth);
363                                 if (ret == -ENOTSUP)
364                                         ret = rte_pmd_bnxt_set_vf_mac_addr(
365                                                         portid, w, &eth);
366
367                                 switch (ret) {
368                                 case 0:
369                                         printf("Port %d VF %d MAC: ",
370                                                         portid, w);
371                                         for (j = 0; j < 5; j++) {
372                                                 printf("%02x:",
373                                                         eth.addr_bytes[j]);
374                                         }
375                                         printf("%02x\n", eth.addr_bytes[5]);
376                                         break;
377                                 }
378                                 printf("\n");
379                                 break;
380                         }
381                 }
382         }
383
384         check_all_ports_link_status(enabled_port_mask);
385
386         lcore_id = rte_get_next_lcore(-1, 1, 0);
387         if (lcore_id == RTE_MAX_LCORE) {
388                 RTE_LOG(ERR, EAL, "A minimum of three cores are required to run "
389                                 "application\n");
390                 return 0;
391         }
392         printf("Running channel monitor on lcore id %d\n", lcore_id);
393         rte_eal_remote_launch(run_monitor, NULL, lcore_id);
394
395         lcore_id = rte_get_next_lcore(lcore_id, 1, 0);
396         if (lcore_id == RTE_MAX_LCORE) {
397                 RTE_LOG(ERR, EAL, "A minimum of three cores are required to run "
398                                 "application\n");
399                 return 0;
400         }
401         if (power_manager_init() < 0) {
402                 printf("Unable to initialize power manager\n");
403                 return -1;
404         }
405         if (channel_manager_init(CHANNEL_MGR_DEFAULT_HV_PATH) < 0) {
406                 printf("Unable to initialize channel manager\n");
407                 return -1;
408         }
409
410         printf("Running core monitor on lcore id %d\n", lcore_id);
411         rte_eal_remote_launch(run_core_monitor, NULL, lcore_id);
412
413         run_cli(NULL);
414
415         branch_monitor_exit();
416
417         rte_eal_mp_wait_lcore();
418
419         free(ci->cd);
420
421         return 0;
422 }