xref: /dpdk/examples/vm_power_manager/main.c (revision 7fe90a66c718665e819ba68396e016ca51778d23)
1 /*-
2  *   BSD LICENSE
3  *
4  *   Copyright(c) 2010-2014 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 #include <stdio.h>
35 #include <string.h>
36 #include <stdint.h>
37 #include <sys/epoll.h>
38 #include <fcntl.h>
39 #include <unistd.h>
40 #include <stdlib.h>
41 #include <signal.h>
42 #include <errno.h>
43 
44 #include <sys/queue.h>
45 
46 #include <rte_common.h>
47 #include <rte_eal.h>
48 #include <rte_launch.h>
49 #include <rte_log.h>
50 #include <rte_per_lcore.h>
51 #include <rte_lcore.h>
52 #include <rte_debug.h>
53 
54 #include "channel_manager.h"
55 #include "channel_monitor.h"
56 #include "power_manager.h"
57 #include "vm_power_cli.h"
58 
59 static int
60 run_monitor(__attribute__((unused)) void *arg)
61 {
62 	if (channel_monitor_init() < 0) {
63 		printf("Unable to initialize channel monitor\n");
64 		return -1;
65 	}
66 	run_channel_monitor();
67 	return 0;
68 }
69 
70 static void
71 sig_handler(int signo)
72 {
73 	printf("Received signal %d, exiting...\n", signo);
74 	channel_monitor_exit();
75 	channel_manager_exit();
76 	power_manager_exit();
77 
78 }
79 
80 int
81 main(int argc, char **argv)
82 {
83 	int ret;
84 	unsigned lcore_id;
85 
86 	ret = rte_eal_init(argc, argv);
87 	if (ret < 0)
88 		rte_panic("Cannot init EAL\n");
89 
90 	signal(SIGINT, sig_handler);
91 	signal(SIGTERM, sig_handler);
92 
93 	lcore_id = rte_get_next_lcore(-1, 1, 0);
94 	if (lcore_id == RTE_MAX_LCORE) {
95 		RTE_LOG(ERR, EAL, "A minimum of two cores are required to run "
96 				"application\n");
97 		return 0;
98 	}
99 	rte_eal_remote_launch(run_monitor, NULL, lcore_id);
100 
101 	if (power_manager_init() < 0) {
102 		printf("Unable to initialize power manager\n");
103 		return -1;
104 	}
105 	if (channel_manager_init(CHANNEL_MGR_DEFAULT_HV_PATH) < 0) {
106 		printf("Unable to initialize channel manager\n");
107 		return -1;
108 	}
109 	run_cli(NULL);
110 
111 	rte_eal_mp_wait_lcore();
112 	return 0;
113 }
114