mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-12-19 00:54:41 +08:00
c2294c1496
Read out powercap zone information via: cpupower powercap-info and show the zone hierarchy to the user: ./cpupower powercap-info Driver: intel-rapl Powercap domain hierarchy: Zone: package-0 (enabled) Power consumption can be monitored in micro Watts Zone: core (disabled) Power consumption can be monitored in micro Watts Zone: uncore (disabled) Power consumption can be monitored in micro Watts Zone: dram (disabled) Power consumption can be monitored in micro Watts There is a dummy -a option for powercap-info which can/should be used to show more detailed info later. Like that other args can be added easily later as well. A enable/disable option via powercap-set subcommand is also an enhancement for later. Also not all RAPL domains are shown. The func walking through RAPL subdomains is restricted and hardcoded to: "intel-rapl/intel-rapl:0" On my system above powercap domains map to: intel-rapl/intel-rapl:0 -> pack (age-0) intel-rapl/intel-rapl:0/intel-rapl:0:0 -> core intel-rapl/intel-rapl:0/intel-rapl:0:1 -> uncore Missing ones on my system are: intel-rapl-mmio/intel-rapl-mmio:0 -> pack (age-0) intel-rapl/intel-rapl:1 -> psys This could get enhanced in: struct powercap_zone *powercap_init_zones() and adopted to walk through all intel-rapl zones, but also to other powercap drivers like dtpm (Dynamic Thermal Power Management framework), cmp with: drivers/powercap/dtpm_* Signed-off-by: Thomas Renninger <trenn@suse.de> CC: Shuah Khan <skhan@linuxfoundation.org> Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
118 lines
2.2 KiB
C
118 lines
2.2 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* (C) 2016 SUSE Software Solutions GmbH
|
|
* Thomas Renninger <trenn@suse.de>
|
|
*/
|
|
|
|
#include <unistd.h>
|
|
#include <stdio.h>
|
|
#include <errno.h>
|
|
#include <stdlib.h>
|
|
#include <stdint.h>
|
|
#include <string.h>
|
|
|
|
#include <getopt.h>
|
|
|
|
#include "powercap.h"
|
|
#include "helpers/helpers.h"
|
|
|
|
int powercap_show_all;
|
|
|
|
static struct option info_opts[] = {
|
|
{ "all", no_argument, NULL, 'a'},
|
|
{ },
|
|
};
|
|
|
|
static int powercap_print_one_zone(struct powercap_zone *zone)
|
|
{
|
|
int mode, i, ret = 0;
|
|
char pr_prefix[1024] = "";
|
|
|
|
for (i = 0; i < zone->tree_depth && i < POWERCAP_MAX_TREE_DEPTH; i++)
|
|
strcat(pr_prefix, "\t");
|
|
|
|
printf("%sZone: %s", pr_prefix, zone->name);
|
|
ret = powercap_zone_get_enabled(zone, &mode);
|
|
if (ret < 0)
|
|
return ret;
|
|
printf(" (%s)\n", mode ? "enabled" : "disabled");
|
|
|
|
if (zone->has_power_uw)
|
|
printf(_("%sPower can be monitored in micro Jules\n"),
|
|
pr_prefix);
|
|
|
|
if (zone->has_energy_uj)
|
|
printf(_("%sPower can be monitored in micro Watts\n"),
|
|
pr_prefix);
|
|
|
|
printf("\n");
|
|
|
|
if (ret != 0)
|
|
return ret;
|
|
return ret;
|
|
}
|
|
|
|
static int powercap_show(void)
|
|
{
|
|
struct powercap_zone *root_zone;
|
|
char line[MAX_LINE_LEN] = "";
|
|
int ret, val;
|
|
|
|
ret = powercap_get_driver(line, MAX_LINE_LEN);
|
|
if (ret < 0) {
|
|
printf(_("No powercapping driver loaded\n"));
|
|
return ret;
|
|
}
|
|
|
|
printf("Driver: %s\n", line);
|
|
ret = powercap_get_enabled(&val);
|
|
if (ret < 0)
|
|
return ret;
|
|
if (!val) {
|
|
printf(_("Powercapping is disabled\n"));
|
|
return -1;
|
|
}
|
|
|
|
printf(_("Powercap domain hierarchy:\n\n"));
|
|
root_zone = powercap_init_zones();
|
|
|
|
if (root_zone == NULL) {
|
|
printf(_("No powercap info found\n"));
|
|
return 1;
|
|
}
|
|
|
|
powercap_walk_zones(root_zone, powercap_print_one_zone);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int cmd_cap_set(int argc, char **argv)
|
|
{
|
|
return 0;
|
|
};
|
|
int cmd_cap_info(int argc, char **argv)
|
|
{
|
|
int ret = 0, cont = 1;
|
|
|
|
do {
|
|
ret = getopt_long(argc, argv, "a", info_opts, NULL);
|
|
switch (ret) {
|
|
case '?':
|
|
cont = 0;
|
|
break;
|
|
case -1:
|
|
cont = 0;
|
|
break;
|
|
case 'a':
|
|
powercap_show_all = 1;
|
|
break;
|
|
default:
|
|
fprintf(stderr, _("invalid or unknown argument\n"));
|
|
return EXIT_FAILURE;
|
|
}
|
|
} while (cont);
|
|
|
|
powercap_show();
|
|
return 0;
|
|
}
|