xref: /openbmc/linux/tools/power/cpupower/utils/powercap-info.c (revision 7ae9fb1b7ecbb5d85d07857943f677fd1a559b18)
1*c2294c14SThomas Renninger // SPDX-License-Identifier: GPL-2.0-only
2*c2294c14SThomas Renninger /*
3*c2294c14SThomas Renninger  *  (C) 2016 SUSE Software Solutions GmbH
4*c2294c14SThomas Renninger  *           Thomas Renninger <trenn@suse.de>
5*c2294c14SThomas Renninger  */
6*c2294c14SThomas Renninger 
7*c2294c14SThomas Renninger #include <unistd.h>
8*c2294c14SThomas Renninger #include <stdio.h>
9*c2294c14SThomas Renninger #include <errno.h>
10*c2294c14SThomas Renninger #include <stdlib.h>
11*c2294c14SThomas Renninger #include <stdint.h>
12*c2294c14SThomas Renninger #include <string.h>
13*c2294c14SThomas Renninger 
14*c2294c14SThomas Renninger #include <getopt.h>
15*c2294c14SThomas Renninger 
16*c2294c14SThomas Renninger #include "powercap.h"
17*c2294c14SThomas Renninger #include "helpers/helpers.h"
18*c2294c14SThomas Renninger 
19*c2294c14SThomas Renninger int powercap_show_all;
20*c2294c14SThomas Renninger 
21*c2294c14SThomas Renninger static struct option info_opts[] = {
22*c2294c14SThomas Renninger 	{ "all",		no_argument,		 NULL,	 'a'},
23*c2294c14SThomas Renninger 	{ },
24*c2294c14SThomas Renninger };
25*c2294c14SThomas Renninger 
powercap_print_one_zone(struct powercap_zone * zone)26*c2294c14SThomas Renninger static int powercap_print_one_zone(struct powercap_zone *zone)
27*c2294c14SThomas Renninger {
28*c2294c14SThomas Renninger 	int mode, i, ret = 0;
29*c2294c14SThomas Renninger 	char pr_prefix[1024] = "";
30*c2294c14SThomas Renninger 
31*c2294c14SThomas Renninger 	for (i = 0; i < zone->tree_depth && i < POWERCAP_MAX_TREE_DEPTH; i++)
32*c2294c14SThomas Renninger 		strcat(pr_prefix, "\t");
33*c2294c14SThomas Renninger 
34*c2294c14SThomas Renninger 	printf("%sZone: %s", pr_prefix, zone->name);
35*c2294c14SThomas Renninger 	ret = powercap_zone_get_enabled(zone, &mode);
36*c2294c14SThomas Renninger 	if (ret < 0)
37*c2294c14SThomas Renninger 		return ret;
38*c2294c14SThomas Renninger 	printf(" (%s)\n", mode ? "enabled" : "disabled");
39*c2294c14SThomas Renninger 
40*c2294c14SThomas Renninger 	if (zone->has_power_uw)
41*c2294c14SThomas Renninger 		printf(_("%sPower can be monitored in micro Jules\n"),
42*c2294c14SThomas Renninger 		       pr_prefix);
43*c2294c14SThomas Renninger 
44*c2294c14SThomas Renninger 	if (zone->has_energy_uj)
45*c2294c14SThomas Renninger 		printf(_("%sPower can be monitored in micro Watts\n"),
46*c2294c14SThomas Renninger 		       pr_prefix);
47*c2294c14SThomas Renninger 
48*c2294c14SThomas Renninger 	printf("\n");
49*c2294c14SThomas Renninger 
50*c2294c14SThomas Renninger 	if (ret != 0)
51*c2294c14SThomas Renninger 		return ret;
52*c2294c14SThomas Renninger 	return ret;
53*c2294c14SThomas Renninger }
54*c2294c14SThomas Renninger 
powercap_show(void)55*c2294c14SThomas Renninger static int powercap_show(void)
56*c2294c14SThomas Renninger {
57*c2294c14SThomas Renninger 	struct powercap_zone *root_zone;
58*c2294c14SThomas Renninger 	char line[MAX_LINE_LEN] = "";
59*c2294c14SThomas Renninger 	int ret, val;
60*c2294c14SThomas Renninger 
61*c2294c14SThomas Renninger 	ret = powercap_get_driver(line, MAX_LINE_LEN);
62*c2294c14SThomas Renninger 	if (ret < 0) {
63*c2294c14SThomas Renninger 		printf(_("No powercapping driver loaded\n"));
64*c2294c14SThomas Renninger 		return ret;
65*c2294c14SThomas Renninger 	}
66*c2294c14SThomas Renninger 
67*c2294c14SThomas Renninger 	printf("Driver: %s\n", line);
68*c2294c14SThomas Renninger 	ret = powercap_get_enabled(&val);
69*c2294c14SThomas Renninger 	if (ret < 0)
70*c2294c14SThomas Renninger 		return ret;
71*c2294c14SThomas Renninger 	if (!val) {
72*c2294c14SThomas Renninger 		printf(_("Powercapping is disabled\n"));
73*c2294c14SThomas Renninger 		return -1;
74*c2294c14SThomas Renninger 	}
75*c2294c14SThomas Renninger 
76*c2294c14SThomas Renninger 	printf(_("Powercap domain hierarchy:\n\n"));
77*c2294c14SThomas Renninger 	root_zone = powercap_init_zones();
78*c2294c14SThomas Renninger 
79*c2294c14SThomas Renninger 	if (root_zone == NULL) {
80*c2294c14SThomas Renninger 		printf(_("No powercap info found\n"));
81*c2294c14SThomas Renninger 		return 1;
82*c2294c14SThomas Renninger 	}
83*c2294c14SThomas Renninger 
84*c2294c14SThomas Renninger 	powercap_walk_zones(root_zone, powercap_print_one_zone);
85*c2294c14SThomas Renninger 
86*c2294c14SThomas Renninger 	return 0;
87*c2294c14SThomas Renninger }
88*c2294c14SThomas Renninger 
cmd_cap_set(int argc,char ** argv)89*c2294c14SThomas Renninger int cmd_cap_set(int argc, char **argv)
90*c2294c14SThomas Renninger {
91*c2294c14SThomas Renninger 	return 0;
92*c2294c14SThomas Renninger };
cmd_cap_info(int argc,char ** argv)93*c2294c14SThomas Renninger int cmd_cap_info(int argc, char **argv)
94*c2294c14SThomas Renninger {
95*c2294c14SThomas Renninger 	int ret = 0, cont = 1;
96*c2294c14SThomas Renninger 
97*c2294c14SThomas Renninger 	do {
98*c2294c14SThomas Renninger 		ret = getopt_long(argc, argv, "a", info_opts, NULL);
99*c2294c14SThomas Renninger 		switch (ret) {
100*c2294c14SThomas Renninger 		case '?':
101*c2294c14SThomas Renninger 			cont = 0;
102*c2294c14SThomas Renninger 			break;
103*c2294c14SThomas Renninger 		case -1:
104*c2294c14SThomas Renninger 			cont = 0;
105*c2294c14SThomas Renninger 			break;
106*c2294c14SThomas Renninger 		case 'a':
107*c2294c14SThomas Renninger 			powercap_show_all = 1;
108*c2294c14SThomas Renninger 			break;
109*c2294c14SThomas Renninger 		default:
110*c2294c14SThomas Renninger 			fprintf(stderr, _("invalid or unknown argument\n"));
111*c2294c14SThomas Renninger 			return EXIT_FAILURE;
112*c2294c14SThomas Renninger 		}
113*c2294c14SThomas Renninger 	} while (cont);
114*c2294c14SThomas Renninger 
115*c2294c14SThomas Renninger 	powercap_show();
116*c2294c14SThomas Renninger 	return 0;
117*c2294c14SThomas Renninger }
118