Commit 27c4a1c5 authored by Rafael J. Wysocki's avatar Rafael J. Wysocki

Merge branches 'pm-avs', 'pm-clk', 'powercap' and 'pm-tools'

* pm-avs:
  PM / AVS: rockchip-io: make io-domains a child of the GRF

* pm-clk:
  PM / clk: ensure we don't allocate a -ve size of count clks

* powercap:
  powercap/intel_rapl: Add support for Kabylake

* pm-tools:
  cpupower: fix potential memory leak
  cpupower: Add cpuidle parts into library
  cpupowerutils: bench: trivial fix of spelling mistake on "average"
  Fix cpupower manpages "NAME" section
  cpupower: bench: parse.c: fix several resource leaks
  Honour user's LDFLAGS
...@@ -37,8 +37,10 @@ Required properties: ...@@ -37,8 +37,10 @@ Required properties:
- "rockchip,rk3368-pmu-io-voltage-domain" for rk3368 pmu-domains - "rockchip,rk3368-pmu-io-voltage-domain" for rk3368 pmu-domains
- "rockchip,rk3399-io-voltage-domain" for rk3399 - "rockchip,rk3399-io-voltage-domain" for rk3399
- "rockchip,rk3399-pmu-io-voltage-domain" for rk3399 pmu-domains - "rockchip,rk3399-pmu-io-voltage-domain" for rk3399 pmu-domains
- rockchip,grf: phandle to the syscon managing the "general register files"
Deprecated properties:
- rockchip,grf: phandle to the syscon managing the "general register files"
Systems should move the io-domains to a sub-node of the grf simple-mfd.
You specify supplies using the standard regulator bindings by including You specify supplies using the standard regulator bindings by including
a phandle the relevant regulator. All specified supplies must be able a phandle the relevant regulator. All specified supplies must be able
......
...@@ -159,7 +159,7 @@ int of_pm_clk_add_clks(struct device *dev) ...@@ -159,7 +159,7 @@ int of_pm_clk_add_clks(struct device *dev)
count = of_count_phandle_with_args(dev->of_node, "clocks", count = of_count_phandle_with_args(dev->of_node, "clocks",
"#clock-cells"); "#clock-cells");
if (count == 0) if (count <= 0)
return -ENODEV; return -ENODEV;
clks = kcalloc(count, sizeof(*clks), GFP_KERNEL); clks = kcalloc(count, sizeof(*clks), GFP_KERNEL);
......
...@@ -336,6 +336,7 @@ static int rockchip_iodomain_probe(struct platform_device *pdev) ...@@ -336,6 +336,7 @@ static int rockchip_iodomain_probe(struct platform_device *pdev)
struct device_node *np = pdev->dev.of_node; struct device_node *np = pdev->dev.of_node;
const struct of_device_id *match; const struct of_device_id *match;
struct rockchip_iodomain *iod; struct rockchip_iodomain *iod;
struct device *parent;
int i, ret = 0; int i, ret = 0;
if (!np) if (!np)
...@@ -351,7 +352,14 @@ static int rockchip_iodomain_probe(struct platform_device *pdev) ...@@ -351,7 +352,14 @@ static int rockchip_iodomain_probe(struct platform_device *pdev)
match = of_match_node(rockchip_iodomain_match, np); match = of_match_node(rockchip_iodomain_match, np);
iod->soc_data = (struct rockchip_iodomain_soc_data *)match->data; iod->soc_data = (struct rockchip_iodomain_soc_data *)match->data;
parent = pdev->dev.parent;
if (parent && parent->of_node) {
iod->grf = syscon_node_to_regmap(parent->of_node);
} else {
dev_dbg(&pdev->dev, "falling back to old binding\n");
iod->grf = syscon_regmap_lookup_by_phandle(np, "rockchip,grf"); iod->grf = syscon_regmap_lookup_by_phandle(np, "rockchip,grf");
}
if (IS_ERR(iod->grf)) { if (IS_ERR(iod->grf)) {
dev_err(&pdev->dev, "couldn't find grf regmap\n"); dev_err(&pdev->dev, "couldn't find grf regmap\n");
return PTR_ERR(iod->grf); return PTR_ERR(iod->grf);
......
...@@ -1101,6 +1101,8 @@ static const struct x86_cpu_id rapl_ids[] __initconst = { ...@@ -1101,6 +1101,8 @@ static const struct x86_cpu_id rapl_ids[] __initconst = {
RAPL_CPU(0X5C, rapl_defaults_core),/* Broxton */ RAPL_CPU(0X5C, rapl_defaults_core),/* Broxton */
RAPL_CPU(0x5E, rapl_defaults_core),/* Skylake-H/S */ RAPL_CPU(0x5E, rapl_defaults_core),/* Skylake-H/S */
RAPL_CPU(0x57, rapl_defaults_hsw_server),/* Knights Landing */ RAPL_CPU(0x57, rapl_defaults_hsw_server),/* Knights Landing */
RAPL_CPU(0x8E, rapl_defaults_core),/* Kabylake */
RAPL_CPU(0x9E, rapl_defaults_core),/* Kabylake */
{} {}
}; };
MODULE_DEVICE_TABLE(x86cpu, rapl_ids); MODULE_DEVICE_TABLE(x86cpu, rapl_ids);
......
...@@ -63,7 +63,7 @@ DESTDIR ?= ...@@ -63,7 +63,7 @@ DESTDIR ?=
# and _should_ modify the PACKAGE_BUGREPORT definition # and _should_ modify the PACKAGE_BUGREPORT definition
VERSION= $(shell ./utils/version-gen.sh) VERSION= $(shell ./utils/version-gen.sh)
LIB_MAJ= 0.0.0 LIB_MAJ= 0.0.1
LIB_MIN= 0 LIB_MIN= 0
PACKAGE = cpupower PACKAGE = cpupower
...@@ -129,7 +129,7 @@ WARNINGS += -Wshadow ...@@ -129,7 +129,7 @@ WARNINGS += -Wshadow
CFLAGS += -DVERSION=\"$(VERSION)\" -DPACKAGE=\"$(PACKAGE)\" \ CFLAGS += -DVERSION=\"$(VERSION)\" -DPACKAGE=\"$(PACKAGE)\" \
-DPACKAGE_BUGREPORT=\"$(PACKAGE_BUGREPORT)\" -D_GNU_SOURCE -DPACKAGE_BUGREPORT=\"$(PACKAGE_BUGREPORT)\" -D_GNU_SOURCE
UTIL_OBJS = utils/helpers/amd.o utils/helpers/topology.o utils/helpers/msr.o \ UTIL_OBJS = utils/helpers/amd.o utils/helpers/msr.o \
utils/helpers/sysfs.o utils/helpers/misc.o utils/helpers/cpuid.o \ utils/helpers/sysfs.o utils/helpers/misc.o utils/helpers/cpuid.o \
utils/helpers/pci.o utils/helpers/bitmask.o \ utils/helpers/pci.o utils/helpers/bitmask.o \
utils/idle_monitor/nhm_idle.o utils/idle_monitor/snb_idle.o \ utils/idle_monitor/nhm_idle.o utils/idle_monitor/snb_idle.o \
...@@ -148,9 +148,9 @@ UTIL_HEADERS = utils/helpers/helpers.h utils/idle_monitor/cpupower-monitor.h \ ...@@ -148,9 +148,9 @@ UTIL_HEADERS = utils/helpers/helpers.h utils/idle_monitor/cpupower-monitor.h \
utils/helpers/bitmask.h \ utils/helpers/bitmask.h \
utils/idle_monitor/idle_monitors.h utils/idle_monitor/idle_monitors.def utils/idle_monitor/idle_monitors.h utils/idle_monitor/idle_monitors.def
LIB_HEADERS = lib/cpufreq.h lib/sysfs.h LIB_HEADERS = lib/cpufreq.h lib/cpupower.h lib/cpuidle.h
LIB_SRC = lib/cpufreq.c lib/sysfs.c LIB_SRC = lib/cpufreq.c lib/cpupower.c lib/cpuidle.c
LIB_OBJS = lib/cpufreq.o lib/sysfs.o LIB_OBJS = lib/cpufreq.o lib/cpupower.o lib/cpuidle.o
LIB_OBJS := $(addprefix $(OUTPUT),$(LIB_OBJS)) LIB_OBJS := $(addprefix $(OUTPUT),$(LIB_OBJS))
CFLAGS += -pipe CFLAGS += -pipe
...@@ -280,6 +280,7 @@ install-lib: ...@@ -280,6 +280,7 @@ install-lib:
$(CP) $(OUTPUT)libcpupower.so* $(DESTDIR)${libdir}/ $(CP) $(OUTPUT)libcpupower.so* $(DESTDIR)${libdir}/
$(INSTALL) -d $(DESTDIR)${includedir} $(INSTALL) -d $(DESTDIR)${includedir}
$(INSTALL_DATA) lib/cpufreq.h $(DESTDIR)${includedir}/cpufreq.h $(INSTALL_DATA) lib/cpufreq.h $(DESTDIR)${includedir}/cpufreq.h
$(INSTALL_DATA) lib/cpuidle.h $(DESTDIR)${includedir}/cpuidle.h
install-tools: install-tools:
$(INSTALL) -d $(DESTDIR)${bindir} $(INSTALL) -d $(DESTDIR)${bindir}
...@@ -315,6 +316,7 @@ endif ...@@ -315,6 +316,7 @@ endif
uninstall: uninstall:
- rm -f $(DESTDIR)${libdir}/libcpupower.* - rm -f $(DESTDIR)${libdir}/libcpupower.*
- rm -f $(DESTDIR)${includedir}/cpufreq.h - rm -f $(DESTDIR)${includedir}/cpufreq.h
- rm -f $(DESTDIR)${includedir}/cpuidle.h
- rm -f $(DESTDIR)${bindir}/utils/cpupower - rm -f $(DESTDIR)${bindir}/utils/cpupower
- rm -f $(DESTDIR)${mandir}/man1/cpupower.1 - rm -f $(DESTDIR)${mandir}/man1/cpupower.1
- rm -f $(DESTDIR)${mandir}/man1/cpupower-frequency-set.1 - rm -f $(DESTDIR)${mandir}/man1/cpupower-frequency-set.1
......
...@@ -22,7 +22,7 @@ $(OUTPUT)%.o : %.c ...@@ -22,7 +22,7 @@ $(OUTPUT)%.o : %.c
$(OUTPUT)cpufreq-bench: $(OBJS) $(OUTPUT)cpufreq-bench: $(OBJS)
$(ECHO) " CC " $@ $(ECHO) " CC " $@
$(QUIET) $(CC) -o $@ $(CFLAGS) $(OBJS) $(LIBS) $(QUIET) $(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(OBJS) $(LIBS)
all: $(OUTPUT)cpufreq-bench all: $(OUTPUT)cpufreq-bench
......
...@@ -113,7 +113,7 @@ cpufreq-bench Command Usage ...@@ -113,7 +113,7 @@ cpufreq-bench Command Usage
-c, --cpu=<unsigned int> CPU Number to use, starting at 0 -c, --cpu=<unsigned int> CPU Number to use, starting at 0
-p, --prio=<priority> scheduler priority, HIGH, LOW or DEFAULT -p, --prio=<priority> scheduler priority, HIGH, LOW or DEFAULT
-g, --governor=<governor> cpufreq governor to test -g, --governor=<governor> cpufreq governor to test
-n, --cycles=<int> load/sleep cycles to get an avarage value to compare -n, --cycles=<int> load/sleep cycles to get an average value to compare
-r, --rounds<int> load/sleep rounds -r, --rounds<int> load/sleep rounds
-f, --file=<configfile> config file to use -f, --file=<configfile> config file to use
-o, --output=<dir> output dir, must exist -o, --output=<dir> output dir, must exist
......
...@@ -130,7 +130,7 @@ void start_benchmark(struct config *config) ...@@ -130,7 +130,7 @@ void start_benchmark(struct config *config)
_round, load_time, sleep_time); _round, load_time, sleep_time);
if (config->verbose) if (config->verbose)
printf("avarage: %lius, rps:%li\n", printf("average: %lius, rps:%li\n",
load_time / calculations, load_time / calculations,
1000000 * calculations / load_time); 1000000 * calculations / load_time);
...@@ -177,7 +177,7 @@ void start_benchmark(struct config *config) ...@@ -177,7 +177,7 @@ void start_benchmark(struct config *config)
progress_time += sleep_time + load_time; progress_time += sleep_time + load_time;
/* compare the avarage sleep/load cycles */ /* compare the average sleep/load cycles */
fprintf(config->output, "%li ", fprintf(config->output, "%li ",
powersave_time / config->cycles); powersave_time / config->cycles);
fprintf(config->output, "%.3f\n", fprintf(config->output, "%.3f\n",
......
...@@ -65,7 +65,7 @@ FILE *prepare_output(const char *dirname) ...@@ -65,7 +65,7 @@ FILE *prepare_output(const char *dirname)
{ {
FILE *output = NULL; FILE *output = NULL;
int len; int len;
char *filename; char *filename, *filename_tmp;
struct utsname sysdata; struct utsname sysdata;
DIR *dir; DIR *dir;
...@@ -81,16 +81,22 @@ FILE *prepare_output(const char *dirname) ...@@ -81,16 +81,22 @@ FILE *prepare_output(const char *dirname)
len = strlen(dirname) + 30; len = strlen(dirname) + 30;
filename = malloc(sizeof(char) * len); filename = malloc(sizeof(char) * len);
if (!filename) {
perror("malloc");
goto out_dir;
}
if (uname(&sysdata) == 0) { if (uname(&sysdata) == 0) {
len += strlen(sysdata.nodename) + strlen(sysdata.release); len += strlen(sysdata.nodename) + strlen(sysdata.release);
filename = realloc(filename, sizeof(char) * len); filename_tmp = realloc(filename, sizeof(*filename) * len);
if (filename == NULL) { if (filename_tmp == NULL) {
free(filename);
perror("realloc"); perror("realloc");
return NULL; goto out_dir;
} }
filename = filename_tmp;
snprintf(filename, len - 1, "%s/benchmark_%s_%s_%li.log", snprintf(filename, len - 1, "%s/benchmark_%s_%s_%li.log",
dirname, sysdata.nodename, sysdata.release, time(NULL)); dirname, sysdata.nodename, sysdata.release, time(NULL));
} else { } else {
...@@ -104,12 +110,16 @@ FILE *prepare_output(const char *dirname) ...@@ -104,12 +110,16 @@ FILE *prepare_output(const char *dirname)
if (output == NULL) { if (output == NULL) {
perror("fopen"); perror("fopen");
fprintf(stderr, "error: unable to open logfile\n"); fprintf(stderr, "error: unable to open logfile\n");
goto out;
} }
fprintf(stdout, "Logfile: %s\n", filename); fprintf(stdout, "Logfile: %s\n", filename);
free(filename);
fprintf(output, "#round load sleep performance powersave percentage\n"); fprintf(output, "#round load sleep performance powersave percentage\n");
out:
free(filename);
out_dir:
closedir(dir);
return output; return output;
} }
......
...@@ -26,6 +26,7 @@ ...@@ -26,6 +26,7 @@
#include <sched.h> #include <sched.h>
#include <cpufreq.h> #include <cpufreq.h>
#include <cpupower.h>
#include "config.h" #include "config.h"
#include "system.h" #include "system.h"
...@@ -60,7 +61,7 @@ int set_cpufreq_governor(char *governor, unsigned int cpu) ...@@ -60,7 +61,7 @@ int set_cpufreq_governor(char *governor, unsigned int cpu)
dprintf("set %s as cpufreq governor\n", governor); dprintf("set %s as cpufreq governor\n", governor);
if (cpufreq_cpu_exists(cpu) != 0) { if (cpupower_is_cpu_online(cpu) != 0) {
perror("cpufreq_cpu_exists"); perror("cpufreq_cpu_exists");
fprintf(stderr, "error: cpu %u does not exist\n", cpu); fprintf(stderr, "error: cpu %u does not exist\n", cpu);
return -1; return -1;
......
This diff is collapsed.
...@@ -17,8 +17,8 @@ ...@@ -17,8 +17,8 @@
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*/ */
#ifndef _CPUFREQ_H #ifndef __CPUPOWER_CPUFREQ_H__
#define _CPUFREQ_H 1 #define __CPUPOWER_CPUFREQ_H__
struct cpufreq_policy { struct cpufreq_policy {
unsigned long min; unsigned long min;
...@@ -58,13 +58,6 @@ struct cpufreq_stats { ...@@ -58,13 +58,6 @@ struct cpufreq_stats {
extern "C" { extern "C" {
#endif #endif
/*
* returns 0 if the specified CPU is present (it doesn't say
* whether it is online!), and an error value if not.
*/
extern int cpufreq_cpu_exists(unsigned int cpu);
/* determine current CPU frequency /* determine current CPU frequency
* - _kernel variant means kernel's opinion of CPU frequency * - _kernel variant means kernel's opinion of CPU frequency
* - _hardware variant means actual hardware CPU frequency, * - _hardware variant means actual hardware CPU frequency,
...@@ -73,9 +66,9 @@ extern int cpufreq_cpu_exists(unsigned int cpu); ...@@ -73,9 +66,9 @@ extern int cpufreq_cpu_exists(unsigned int cpu);
* returns 0 on failure, else frequency in kHz. * returns 0 on failure, else frequency in kHz.
*/ */
extern unsigned long cpufreq_get_freq_kernel(unsigned int cpu); unsigned long cpufreq_get_freq_kernel(unsigned int cpu);
extern unsigned long cpufreq_get_freq_hardware(unsigned int cpu); unsigned long cpufreq_get_freq_hardware(unsigned int cpu);
#define cpufreq_get(cpu) cpufreq_get_freq_kernel(cpu); #define cpufreq_get(cpu) cpufreq_get_freq_kernel(cpu);
...@@ -84,7 +77,7 @@ extern unsigned long cpufreq_get_freq_hardware(unsigned int cpu); ...@@ -84,7 +77,7 @@ extern unsigned long cpufreq_get_freq_hardware(unsigned int cpu);
* *
* returns 0 on failure, else transition latency in 10^(-9) s = nanoseconds * returns 0 on failure, else transition latency in 10^(-9) s = nanoseconds
*/ */
extern unsigned long cpufreq_get_transition_latency(unsigned int cpu); unsigned long cpufreq_get_transition_latency(unsigned int cpu);
/* determine hardware CPU frequency limits /* determine hardware CPU frequency limits
...@@ -93,7 +86,7 @@ extern unsigned long cpufreq_get_transition_latency(unsigned int cpu); ...@@ -93,7 +86,7 @@ extern unsigned long cpufreq_get_transition_latency(unsigned int cpu);
* considerations by cpufreq policy notifiers in the kernel. * considerations by cpufreq policy notifiers in the kernel.
*/ */
extern int cpufreq_get_hardware_limits(unsigned int cpu, int cpufreq_get_hardware_limits(unsigned int cpu,
unsigned long *min, unsigned long *min,
unsigned long *max); unsigned long *max);
...@@ -104,9 +97,9 @@ extern int cpufreq_get_hardware_limits(unsigned int cpu, ...@@ -104,9 +97,9 @@ extern int cpufreq_get_hardware_limits(unsigned int cpu,
* to avoid memory leakage, please. * to avoid memory leakage, please.
*/ */
extern char *cpufreq_get_driver(unsigned int cpu); char *cpufreq_get_driver(unsigned int cpu);
extern void cpufreq_put_driver(char *ptr); void cpufreq_put_driver(char *ptr);
/* determine CPUfreq policy currently used /* determine CPUfreq policy currently used
...@@ -116,9 +109,9 @@ extern void cpufreq_put_driver(char *ptr); ...@@ -116,9 +109,9 @@ extern void cpufreq_put_driver(char *ptr);
*/ */
extern struct cpufreq_policy *cpufreq_get_policy(unsigned int cpu); struct cpufreq_policy *cpufreq_get_policy(unsigned int cpu);
extern void cpufreq_put_policy(struct cpufreq_policy *policy); void cpufreq_put_policy(struct cpufreq_policy *policy);
/* determine CPUfreq governors currently available /* determine CPUfreq governors currently available
...@@ -129,10 +122,10 @@ extern void cpufreq_put_policy(struct cpufreq_policy *policy); ...@@ -129,10 +122,10 @@ extern void cpufreq_put_policy(struct cpufreq_policy *policy);
*/ */
extern struct cpufreq_available_governors struct cpufreq_available_governors
*cpufreq_get_available_governors(unsigned int cpu); *cpufreq_get_available_governors(unsigned int cpu);
extern void cpufreq_put_available_governors( void cpufreq_put_available_governors(
struct cpufreq_available_governors *first); struct cpufreq_available_governors *first);
...@@ -143,10 +136,10 @@ extern void cpufreq_put_available_governors( ...@@ -143,10 +136,10 @@ extern void cpufreq_put_available_governors(
* cpufreq_put_available_frequencies after use. * cpufreq_put_available_frequencies after use.
*/ */
extern struct cpufreq_available_frequencies struct cpufreq_available_frequencies
*cpufreq_get_available_frequencies(unsigned int cpu); *cpufreq_get_available_frequencies(unsigned int cpu);
extern void cpufreq_put_available_frequencies( void cpufreq_put_available_frequencies(
struct cpufreq_available_frequencies *first); struct cpufreq_available_frequencies *first);
...@@ -156,10 +149,10 @@ extern void cpufreq_put_available_frequencies( ...@@ -156,10 +149,10 @@ extern void cpufreq_put_available_frequencies(
* to avoid memory leakage, please. * to avoid memory leakage, please.
*/ */
extern struct cpufreq_affected_cpus *cpufreq_get_affected_cpus(unsigned struct cpufreq_affected_cpus *cpufreq_get_affected_cpus(unsigned
int cpu); int cpu);
extern void cpufreq_put_affected_cpus(struct cpufreq_affected_cpus *first); void cpufreq_put_affected_cpus(struct cpufreq_affected_cpus *first);
/* determine related CPUs /* determine related CPUs
...@@ -168,10 +161,10 @@ extern void cpufreq_put_affected_cpus(struct cpufreq_affected_cpus *first); ...@@ -168,10 +161,10 @@ extern void cpufreq_put_affected_cpus(struct cpufreq_affected_cpus *first);
* to avoid memory leakage, please. * to avoid memory leakage, please.
*/ */
extern struct cpufreq_affected_cpus *cpufreq_get_related_cpus(unsigned struct cpufreq_affected_cpus *cpufreq_get_related_cpus(unsigned
int cpu); int cpu);
extern void cpufreq_put_related_cpus(struct cpufreq_affected_cpus *first); void cpufreq_put_related_cpus(struct cpufreq_affected_cpus *first);
/* determine stats for cpufreq subsystem /* determine stats for cpufreq subsystem
...@@ -179,12 +172,12 @@ extern void cpufreq_put_related_cpus(struct cpufreq_affected_cpus *first); ...@@ -179,12 +172,12 @@ extern void cpufreq_put_related_cpus(struct cpufreq_affected_cpus *first);
* This is not available in all kernel versions or configurations. * This is not available in all kernel versions or configurations.
*/ */
extern struct cpufreq_stats *cpufreq_get_stats(unsigned int cpu, struct cpufreq_stats *cpufreq_get_stats(unsigned int cpu,
unsigned long long *total_time); unsigned long long *total_time);
extern void cpufreq_put_stats(struct cpufreq_stats *stats); void cpufreq_put_stats(struct cpufreq_stats *stats);
extern unsigned long cpufreq_get_transitions(unsigned int cpu); unsigned long cpufreq_get_transitions(unsigned int cpu);
/* set new cpufreq policy /* set new cpufreq policy
...@@ -193,7 +186,7 @@ extern unsigned long cpufreq_get_transitions(unsigned int cpu); ...@@ -193,7 +186,7 @@ extern unsigned long cpufreq_get_transitions(unsigned int cpu);
* but results may differ depending e.g. on governors being available. * but results may differ depending e.g. on governors being available.
*/ */
extern int cpufreq_set_policy(unsigned int cpu, struct cpufreq_policy *policy); int cpufreq_set_policy(unsigned int cpu, struct cpufreq_policy *policy);
/* modify a policy by only changing min/max freq or governor /* modify a policy by only changing min/max freq or governor
...@@ -201,9 +194,9 @@ extern int cpufreq_set_policy(unsigned int cpu, struct cpufreq_policy *policy); ...@@ -201,9 +194,9 @@ extern int cpufreq_set_policy(unsigned int cpu, struct cpufreq_policy *policy);
* Does not check whether result is what was intended. * Does not check whether result is what was intended.
*/ */
extern int cpufreq_modify_policy_min(unsigned int cpu, unsigned long min_freq); int cpufreq_modify_policy_min(unsigned int cpu, unsigned long min_freq);
extern int cpufreq_modify_policy_max(unsigned int cpu, unsigned long max_freq); int cpufreq_modify_policy_max(unsigned int cpu, unsigned long max_freq);
extern int cpufreq_modify_policy_governor(unsigned int cpu, char *governor); int cpufreq_modify_policy_governor(unsigned int cpu, char *governor);
/* set a specific frequency /* set a specific frequency
...@@ -213,7 +206,7 @@ extern int cpufreq_modify_policy_governor(unsigned int cpu, char *governor); ...@@ -213,7 +206,7 @@ extern int cpufreq_modify_policy_governor(unsigned int cpu, char *governor);
* occurs. Also does not work on ->range() cpufreq drivers. * occurs. Also does not work on ->range() cpufreq drivers.
*/ */
extern int cpufreq_set_frequency(unsigned int cpu, int cpufreq_set_frequency(unsigned int cpu,
unsigned long target_frequency); unsigned long target_frequency);
#ifdef __cplusplus #ifdef __cplusplus
......
/*
* (C) 2004-2009 Dominik Brodowski <linux@dominikbrodowski.de>
* (C) 2011 Thomas Renninger <trenn@novell.com> Novell Inc.
*
* Licensed under the terms of the GNU GPL License version 2.
*/
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include "cpuidle.h"
#include "cpupower_intern.h"
/*
* helper function to check whether a file under "../cpuX/cpuidle/stateX/" dir
* exists.
* For example the functionality to disable c-states was introduced in later
* kernel versions, this function can be used to explicitly check for this
* feature.
*
* returns 1 if the file exists, 0 otherwise.
*/
static
unsigned int cpuidle_state_file_exists(unsigned int cpu,
unsigned int idlestate,
const char *fname)
{
char path[SYSFS_PATH_MAX];
struct stat statbuf;
snprintf(path, sizeof(path), PATH_TO_CPU "cpu%u/cpuidle/state%u/%s",
cpu, idlestate, fname);
if (stat(path, &statbuf) != 0)
return 0;
return 1;
}
/*
* helper function to read file from /sys into given buffer
* fname is a relative path under "cpuX/cpuidle/stateX/" dir
* cstates starting with 0, C0 is not counted as cstate.
* This means if you want C1 info, pass 0 as idlestate param
*/
static
unsigned int cpuidle_state_read_file(unsigned int cpu,
unsigned int idlestate,
const char *fname, char *buf,
size_t buflen)
{
char path[SYSFS_PATH_MAX];
int fd;
ssize_t numread;
snprintf(path, sizeof(path), PATH_TO_CPU "cpu%u/cpuidle/state%u/%s",
cpu, idlestate, fname);
fd = open(path, O_RDONLY);
if (fd == -1)
return 0;
numread = read(fd, buf, buflen - 1);
if (numread < 1) {
close(fd);
return 0;
}
buf[numread] = '\0';
close(fd);
return (unsigned int) numread;
}
/*
* helper function to write a new value to a /sys file
* fname is a relative path under "../cpuX/cpuidle/cstateY/" dir
*
* Returns the number of bytes written or 0 on error
*/
static
unsigned int cpuidle_state_write_file(unsigned int cpu,
unsigned int idlestate,
const char *fname,
const char *value, size_t len)
{
char path[SYSFS_PATH_MAX];
int fd;
ssize_t numwrite;
snprintf(path, sizeof(path), PATH_TO_CPU "cpu%u/cpuidle/state%u/%s",
cpu, idlestate, fname);
fd = open(path, O_WRONLY);
if (fd == -1)
return 0;
numwrite = write(fd, value, len);
if (numwrite < 1) {
close(fd);
return 0;
}
close(fd);
return (unsigned int) numwrite;
}
/* read access to files which contain one numeric value */
enum idlestate_value {
IDLESTATE_USAGE,
IDLESTATE_POWER,
IDLESTATE_LATENCY,
IDLESTATE_TIME,
IDLESTATE_DISABLE,
MAX_IDLESTATE_VALUE_FILES
};
static const char *idlestate_value_files[MAX_IDLESTATE_VALUE_FILES] = {
[IDLESTATE_USAGE] = "usage",
[IDLESTATE_POWER] = "power",
[IDLESTATE_LATENCY] = "latency",
[IDLESTATE_TIME] = "time",
[IDLESTATE_DISABLE] = "disable",
};
static
unsigned long long cpuidle_state_get_one_value(unsigned int cpu,
unsigned int idlestate,
enum idlestate_value which)
{
unsigned long long value;
unsigned int len;
char linebuf[MAX_LINE_LEN];
char *endp;
if (which >= MAX_IDLESTATE_VALUE_FILES)
return 0;
len = cpuidle_state_read_file(cpu, idlestate,
idlestate_value_files[which],
linebuf, sizeof(linebuf));
if (len == 0)
return 0;
value = strtoull(linebuf, &endp, 0);
if (endp == linebuf || errno == ERANGE)
return 0;
return value;
}
/* read access to files which contain one string */
enum idlestate_string {
IDLESTATE_DESC,
IDLESTATE_NAME,
MAX_IDLESTATE_STRING_FILES
};
static const char *idlestate_string_files[MAX_IDLESTATE_STRING_FILES] = {
[IDLESTATE_DESC] = "desc",
[IDLESTATE_NAME] = "name",
};
static char *cpuidle_state_get_one_string(unsigned int cpu,
unsigned int idlestate,
enum idlestate_string which)
{
char linebuf[MAX_LINE_LEN];
char *result;
unsigned int len;
if (which >= MAX_IDLESTATE_STRING_FILES)
return NULL;
len = cpuidle_state_read_file(cpu, idlestate,
idlestate_string_files[which],
linebuf, sizeof(linebuf));
if (len == 0)
return NULL;
result = strdup(linebuf);
if (result == NULL)
return NULL;
if (result[strlen(result) - 1] == '\n')
result[strlen(result) - 1] = '\0';
return result;
}
/*
* Returns:
* 1 if disabled
* 0 if enabled
* -1 if idlestate is not available
* -2 if disabling is not supported by the kernel
*/
int cpuidle_is_state_disabled(unsigned int cpu,
unsigned int idlestate)
{
if (cpuidle_state_count(cpu) <= idlestate)
return -1;
if (!cpuidle_state_file_exists(cpu, idlestate,
idlestate_value_files[IDLESTATE_DISABLE]))
return -2;
return cpuidle_state_get_one_value(cpu, idlestate, IDLESTATE_DISABLE);
}
/*
* Pass 1 as last argument to disable or 0 to enable the state
* Returns:
* 0 on success
* negative values on error, for example:
* -1 if idlestate is not available
* -2 if disabling is not supported by the kernel
* -3 No write access to disable/enable C-states
*/
int cpuidle_state_disable(unsigned int cpu,
unsigned int idlestate,
unsigned int disable)
{
char value[SYSFS_PATH_MAX];
int bytes_written;
if (cpuidle_state_count(cpu) <= idlestate)
return -1;
if (!cpuidle_state_file_exists(cpu, idlestate,
idlestate_value_files[IDLESTATE_DISABLE]))
return -2;
snprintf(value, SYSFS_PATH_MAX, "%u", disable);
bytes_written = cpuidle_state_write_file(cpu, idlestate, "disable",
value, sizeof(disable));
if (bytes_written)
return 0;
return -3;
}
unsigned long cpuidle_state_latency(unsigned int cpu,
unsigned int idlestate)
{
return cpuidle_state_get_one_value(cpu, idlestate, IDLESTATE_LATENCY);
}
unsigned long cpuidle_state_usage(unsigned int cpu,
unsigned int idlestate)
{
return cpuidle_state_get_one_value(cpu, idlestate, IDLESTATE_USAGE);
}
unsigned long long cpuidle_state_time(unsigned int cpu,
unsigned int idlestate)
{
return cpuidle_state_get_one_value(cpu, idlestate, IDLESTATE_TIME);
}
char *cpuidle_state_name(unsigned int cpu, unsigned int idlestate)
{
return cpuidle_state_get_one_string(cpu, idlestate, IDLESTATE_NAME);
}
char *cpuidle_state_desc(unsigned int cpu, unsigned int idlestate)
{
return cpuidle_state_get_one_string(cpu, idlestate, IDLESTATE_DESC);
}
/*
* Returns number of supported C-states of CPU core cpu
* Negativ in error case
* Zero if cpuidle does not export any C-states
*/
unsigned int cpuidle_state_count(unsigned int cpu)
{
char file[SYSFS_PATH_MAX];
struct stat statbuf;
int idlestates = 1;
snprintf(file, SYSFS_PATH_MAX, PATH_TO_CPU "cpuidle");
if (stat(file, &statbuf) != 0 || !S_ISDIR(statbuf.st_mode))
return 0;
snprintf(file, SYSFS_PATH_MAX, PATH_TO_CPU "cpu%u/cpuidle/state0", cpu);
if (stat(file, &statbuf) != 0 || !S_ISDIR(statbuf.st_mode))
return 0;
while (stat(file, &statbuf) == 0 && S_ISDIR(statbuf.st_mode)) {
snprintf(file, SYSFS_PATH_MAX, PATH_TO_CPU
"cpu%u/cpuidle/state%d", cpu, idlestates);
idlestates++;
}
idlestates--;
return idlestates;
}
/* CPUidle general /sys/devices/system/cpu/cpuidle/ sysfs access ********/
/*
* helper function to read file from /sys into given buffer
* fname is a relative path under "cpu/cpuidle/" dir
*/
static unsigned int sysfs_cpuidle_read_file(const char *fname, char *buf,
size_t buflen)
{
char path[SYSFS_PATH_MAX];
snprintf(path, sizeof(path), PATH_TO_CPU "cpuidle/%s", fname);
return sysfs_read_file(path, buf, buflen);
}
/* read access to files which contain one string */
enum cpuidle_string {
CPUIDLE_GOVERNOR,
CPUIDLE_GOVERNOR_RO,
CPUIDLE_DRIVER,
MAX_CPUIDLE_STRING_FILES
};
static const char *cpuidle_string_files[MAX_CPUIDLE_STRING_FILES] = {
[CPUIDLE_GOVERNOR] = "current_governor",
[CPUIDLE_GOVERNOR_RO] = "current_governor_ro",
[CPUIDLE_DRIVER] = "current_driver",
};
static char *sysfs_cpuidle_get_one_string(enum cpuidle_string which)
{
char linebuf[MAX_LINE_LEN];
char *result;
unsigned int len;
if (which >= MAX_CPUIDLE_STRING_FILES)
return NULL;
len = sysfs_cpuidle_read_file(cpuidle_string_files[which],
linebuf, sizeof(linebuf));
if (len == 0)
return NULL;
result = strdup(linebuf);
if (result == NULL)
return NULL;
if (result[strlen(result) - 1] == '\n')
result[strlen(result) - 1] = '\0';
return result;
}
char *cpuidle_get_governor(void)
{
char *tmp = sysfs_cpuidle_get_one_string(CPUIDLE_GOVERNOR_RO);
if (!tmp)
return sysfs_cpuidle_get_one_string(CPUIDLE_GOVERNOR);
else
return tmp;
}
char *cpuidle_get_driver(void)
{
return sysfs_cpuidle_get_one_string(CPUIDLE_DRIVER);
}
/* CPUidle idlestate specific /sys/devices/system/cpu/cpuX/cpuidle/ access */
#ifndef __CPUPOWER_CPUIDLE_H__
#define __CPUPOWER_CPUIDLE_H__
int cpuidle_is_state_disabled(unsigned int cpu,
unsigned int idlestate);
int cpuidle_state_disable(unsigned int cpu, unsigned int idlestate,
unsigned int disable);
unsigned long cpuidle_state_latency(unsigned int cpu,
unsigned int idlestate);
unsigned long cpuidle_state_usage(unsigned int cpu,
unsigned int idlestate);
unsigned long long cpuidle_state_time(unsigned int cpu,
unsigned int idlestate);
char *cpuidle_state_name(unsigned int cpu,
unsigned int idlestate);
char *cpuidle_state_desc(unsigned int cpu,
unsigned int idlestate);
unsigned int cpuidle_state_count(unsigned int cpu);
char *cpuidle_get_governor(void);
char *cpuidle_get_driver(void);
#endif /* __CPUPOWER_HELPERS_SYSFS_H__ */
/*
* (C) 2004-2009 Dominik Brodowski <linux@dominikbrodowski.de>
*
* Licensed under the terms of the GNU GPL License version 2.
*/
#include <sys/types.h>
#include <sys/stat.h>
#include <fcntl.h>
#include <unistd.h>
#include <stdio.h>
#include <errno.h>
#include <stdlib.h>
#include "cpupower.h"
#include "cpupower_intern.h"
unsigned int sysfs_read_file(const char *path, char *buf, size_t buflen)
{
int fd;
ssize_t numread;
fd = open(path, O_RDONLY);
if (fd == -1)
return 0;
numread = read(fd, buf, buflen - 1);
if (numread < 1) {
close(fd);
return 0;
}
buf[numread] = '\0';
close(fd);
return (unsigned int) numread;
}
/*
* Detect whether a CPU is online
*
* Returns:
* 1 -> if CPU is online
* 0 -> if CPU is offline
* negative errno values in error case
*/
int cpupower_is_cpu_online(unsigned int cpu)
{
char path[SYSFS_PATH_MAX];
int fd;
ssize_t numread;
unsigned long long value;
char linebuf[MAX_LINE_LEN];
char *endp;
struct stat statbuf;
snprintf(path, sizeof(path), PATH_TO_CPU "cpu%u", cpu);
if (stat(path, &statbuf) != 0)
return 0;
/*
* kernel without CONFIG_HOTPLUG_CPU
* -> cpuX directory exists, but not cpuX/online file
*/
snprintf(path, sizeof(path), PATH_TO_CPU "cpu%u/online", cpu);
if (stat(path, &statbuf) != 0)
return 1;
fd = open(path, O_RDONLY);
if (fd == -1)
return -errno;
numread = read(fd, linebuf, MAX_LINE_LEN - 1);
if (numread < 1) {
close(fd);
return -EIO;
}
linebuf[numread] = '\0';
close(fd);
value = strtoull(linebuf, &endp, 0);
if (value > 1)
return -EINVAL;
return value;
}
/* returns -1 on failure, 0 on success */
static int sysfs_topology_read_file(unsigned int cpu, const char *fname, int *result)
{
char linebuf[MAX_LINE_LEN];
char *endp;
char path[SYSFS_PATH_MAX];
snprintf(path, sizeof(path), PATH_TO_CPU "cpu%u/topology/%s",
cpu, fname);
if (sysfs_read_file(path, linebuf, MAX_LINE_LEN) == 0)
return -1;
*result = strtol(linebuf, &endp, 0);
if (endp == linebuf || errno == ERANGE)
return -1;
return 0;
}
static int __compare(const void *t1, const void *t2)
{
struct cpuid_core_info *top1 = (struct cpuid_core_info *)t1;
struct cpuid_core_info *top2 = (struct cpuid_core_info *)t2;
if (top1->pkg < top2->pkg)
return -1;
else if (top1->pkg > top2->pkg)
return 1;
else if (top1->core < top2->core)
return -1;
else if (top1->core > top2->core)
return 1;
else if (top1->cpu < top2->cpu)
return -1;
else if (top1->cpu > top2->cpu)
return 1;
else
return 0;
}
/*
* Returns amount of cpus, negative on error, cpu_top must be
* passed to cpu_topology_release to free resources
*
* Array is sorted after ->pkg, ->core, then ->cpu
*/
int get_cpu_topology(struct cpupower_topology *cpu_top)
{
int cpu, last_pkg, cpus = sysconf(_SC_NPROCESSORS_CONF);
cpu_top->core_info = malloc(sizeof(struct cpuid_core_info) * cpus);
if (cpu_top->core_info == NULL)
return -ENOMEM;
cpu_top->pkgs = cpu_top->cores = 0;
for (cpu = 0; cpu < cpus; cpu++) {
cpu_top->core_info[cpu].cpu = cpu;
cpu_top->core_info[cpu].is_online = cpupower_is_cpu_online(cpu);
if(sysfs_topology_read_file(
cpu,
"physical_package_id",
&(cpu_top->core_info[cpu].pkg)) < 0) {
cpu_top->core_info[cpu].pkg = -1;
cpu_top->core_info[cpu].core = -1;
continue;
}
if(sysfs_topology_read_file(
cpu,
"core_id",
&(cpu_top->core_info[cpu].core)) < 0) {
cpu_top->core_info[cpu].pkg = -1;
cpu_top->core_info[cpu].core = -1;
continue;
}
}
qsort(cpu_top->core_info, cpus, sizeof(struct cpuid_core_info),
__compare);
/* Count the number of distinct pkgs values. This works
because the primary sort of the core_info struct was just
done by pkg value. */
last_pkg = cpu_top->core_info[0].pkg;
for(cpu = 1; cpu < cpus; cpu++) {
if (cpu_top->core_info[cpu].pkg != last_pkg &&
cpu_top->core_info[cpu].pkg != -1) {
last_pkg = cpu_top->core_info[cpu].pkg;
cpu_top->pkgs++;
}
}
if (!(cpu_top->core_info[0].pkg == -1))
cpu_top->pkgs++;
/* Intel's cores count is not consecutively numbered, there may
* be a core_id of 3, but none of 2. Assume there always is 0
* Get amount of cores by counting duplicates in a package
for (cpu = 0; cpu_top->core_info[cpu].pkg = 0 && cpu < cpus; cpu++) {
if (cpu_top->core_info[cpu].core == 0)
cpu_top->cores++;
*/
return cpus;
}
void cpu_topology_release(struct cpupower_topology cpu_top)
{
free(cpu_top.core_info);
}
#ifndef __CPUPOWER_CPUPOWER_H__
#define __CPUPOWER_CPUPOWER_H__
struct cpupower_topology {
/* Amount of CPU cores, packages and threads per core in the system */
unsigned int cores;
unsigned int pkgs;
unsigned int threads; /* per core */
/* Array gets mallocated with cores entries, holding per core info */
struct cpuid_core_info *core_info;
};
struct cpuid_core_info {
int pkg;
int core;
int cpu;
/* flags */
unsigned int is_online:1;
};
#ifdef __cplusplus
extern "C" {
#endif
int get_cpu_topology(struct cpupower_topology *cpu_top);
void cpu_topology_release(struct cpupower_topology cpu_top);
int cpupower_is_cpu_online(unsigned int cpu);
#ifdef __cplusplus
}
#endif
#endif
#define PATH_TO_CPU "/sys/devices/system/cpu/"
#define MAX_LINE_LEN 4096
#define SYSFS_PATH_MAX 255
unsigned int sysfs_read_file(const char *path, char *buf, size_t buflen);
This diff is collapsed.
/* General */
extern unsigned int sysfs_cpu_exists(unsigned int cpu);
/* CPUfreq */
extern unsigned long sysfs_get_freq_kernel(unsigned int cpu);
extern unsigned long sysfs_get_freq_hardware(unsigned int cpu);
extern unsigned long sysfs_get_freq_transition_latency(unsigned int cpu);
extern int sysfs_get_freq_hardware_limits(unsigned int cpu,
unsigned long *min, unsigned long *max);
extern char *sysfs_get_freq_driver(unsigned int cpu);
extern struct cpufreq_policy *sysfs_get_freq_policy(unsigned int cpu);
extern struct cpufreq_available_governors *sysfs_get_freq_available_governors(
unsigned int cpu);
extern struct cpufreq_available_frequencies *sysfs_get_available_frequencies(
unsigned int cpu);
extern struct cpufreq_affected_cpus *sysfs_get_freq_affected_cpus(
unsigned int cpu);
extern struct cpufreq_affected_cpus *sysfs_get_freq_related_cpus(
unsigned int cpu);
extern struct cpufreq_stats *sysfs_get_freq_stats(unsigned int cpu,
unsigned long long *total_time);
extern unsigned long sysfs_get_freq_transitions(unsigned int cpu);
extern int sysfs_set_freq_policy(unsigned int cpu,
struct cpufreq_policy *policy);
extern int sysfs_modify_freq_policy_min(unsigned int cpu,
unsigned long min_freq);
extern int sysfs_modify_freq_policy_max(unsigned int cpu,
unsigned long max_freq);
extern int sysfs_modify_freq_policy_governor(unsigned int cpu, char *governor);
extern int sysfs_set_frequency(unsigned int cpu,
unsigned long target_frequency);
.TH "CPUPOWER\-FREQUENCY\-INFO" "1" "0.1" "" "cpupower Manual" .TH "CPUPOWER\-FREQUENCY\-INFO" "1" "0.1" "" "cpupower Manual"
.SH "NAME" .SH "NAME"
.LP .LP
cpupower frequency\-info \- Utility to retrieve cpufreq kernel information cpupower\-frequency\-info \- Utility to retrieve cpufreq kernel information
.SH "SYNTAX" .SH "SYNTAX"
.LP .LP
cpupower [ \-c cpulist ] frequency\-info [\fIoptions\fP] cpupower [ \-c cpulist ] frequency\-info [\fIoptions\fP]
......
.TH "CPUPOWER\-FREQUENCY\-SET" "1" "0.1" "" "cpupower Manual" .TH "CPUPOWER\-FREQUENCY\-SET" "1" "0.1" "" "cpupower Manual"
.SH "NAME" .SH "NAME"
.LP .LP
cpupower frequency\-set \- A small tool which allows to modify cpufreq settings. cpupower\-frequency\-set \- A small tool which allows to modify cpufreq settings.
.SH "SYNTAX" .SH "SYNTAX"
.LP .LP
cpupower [ \-c cpu ] frequency\-set [\fIoptions\fP] cpupower [ \-c cpu ] frequency\-set [\fIoptions\fP]
......
.TH "CPUPOWER-IDLE-INFO" "1" "0.1" "" "cpupower Manual" .TH "CPUPOWER-IDLE-INFO" "1" "0.1" "" "cpupower Manual"
.SH "NAME" .SH "NAME"
.LP .LP
cpupower idle\-info \- Utility to retrieve cpu idle kernel information cpupower\-idle\-info \- Utility to retrieve cpu idle kernel information
.SH "SYNTAX" .SH "SYNTAX"
.LP .LP
cpupower [ \-c cpulist ] idle\-info [\fIoptions\fP] cpupower [ \-c cpulist ] idle\-info [\fIoptions\fP]
......
.TH "CPUPOWER-IDLE-SET" "1" "0.1" "" "cpupower Manual" .TH "CPUPOWER-IDLE-SET" "1" "0.1" "" "cpupower Manual"
.SH "NAME" .SH "NAME"
.LP .LP
cpupower idle\-set \- Utility to set cpu idle state specific kernel options cpupower\-idle\-set \- Utility to set cpu idle state specific kernel options
.SH "SYNTAX" .SH "SYNTAX"
.LP .LP
cpupower [ \-c cpulist ] idle\-info [\fIoptions\fP] cpupower [ \-c cpulist ] idle\-info [\fIoptions\fP]
......
...@@ -16,8 +16,8 @@ ...@@ -16,8 +16,8 @@
#include <getopt.h> #include <getopt.h>
#include "cpufreq.h" #include "cpufreq.h"
#include "cpuidle.h"
#include "helpers/helpers.h" #include "helpers/helpers.h"
#include "helpers/sysfs.h"
#define NORM_FREQ_LEN 32 #define NORM_FREQ_LEN 32
...@@ -296,7 +296,7 @@ int cmd_freq_set(int argc, char **argv) ...@@ -296,7 +296,7 @@ int cmd_freq_set(int argc, char **argv)
struct cpufreq_affected_cpus *cpus; struct cpufreq_affected_cpus *cpus;
if (!bitmask_isbitset(cpus_chosen, cpu) || if (!bitmask_isbitset(cpus_chosen, cpu) ||
cpufreq_cpu_exists(cpu)) cpupower_is_cpu_online(cpu))
continue; continue;
cpus = cpufreq_get_related_cpus(cpu); cpus = cpufreq_get_related_cpus(cpu);
...@@ -316,10 +316,10 @@ int cmd_freq_set(int argc, char **argv) ...@@ -316,10 +316,10 @@ int cmd_freq_set(int argc, char **argv)
cpu <= bitmask_last(cpus_chosen); cpu++) { cpu <= bitmask_last(cpus_chosen); cpu++) {
if (!bitmask_isbitset(cpus_chosen, cpu) || if (!bitmask_isbitset(cpus_chosen, cpu) ||
cpufreq_cpu_exists(cpu)) cpupower_is_cpu_online(cpu))
continue; continue;
if (sysfs_is_cpu_online(cpu) != 1) if (cpupower_is_cpu_online(cpu) != 1)
continue; continue;
printf(_("Setting cpu: %d\n"), cpu); printf(_("Setting cpu: %d\n"), cpu);
......
...@@ -13,8 +13,10 @@ ...@@ -13,8 +13,10 @@
#include <string.h> #include <string.h>
#include <getopt.h> #include <getopt.h>
#include "helpers/helpers.h" #include <cpuidle.h>
#include "helpers/sysfs.h" #include "helpers/sysfs.h"
#include "helpers/helpers.h"
#include "helpers/bitmask.h" #include "helpers/bitmask.h"
#define LINE_LEN 10 #define LINE_LEN 10
...@@ -24,7 +26,7 @@ static void cpuidle_cpu_output(unsigned int cpu, int verbose) ...@@ -24,7 +26,7 @@ static void cpuidle_cpu_output(unsigned int cpu, int verbose)
unsigned int idlestates, idlestate; unsigned int idlestates, idlestate;
char *tmp; char *tmp;
idlestates = sysfs_get_idlestate_count(cpu); idlestates = cpuidle_state_count(cpu);
if (idlestates == 0) { if (idlestates == 0) {
printf(_("CPU %u: No idle states\n"), cpu); printf(_("CPU %u: No idle states\n"), cpu);
return; return;
...@@ -33,7 +35,7 @@ static void cpuidle_cpu_output(unsigned int cpu, int verbose) ...@@ -33,7 +35,7 @@ static void cpuidle_cpu_output(unsigned int cpu, int verbose)
printf(_("Number of idle states: %d\n"), idlestates); printf(_("Number of idle states: %d\n"), idlestates);
printf(_("Available idle states:")); printf(_("Available idle states:"));
for (idlestate = 0; idlestate < idlestates; idlestate++) { for (idlestate = 0; idlestate < idlestates; idlestate++) {
tmp = sysfs_get_idlestate_name(cpu, idlestate); tmp = cpuidle_state_name(cpu, idlestate);
if (!tmp) if (!tmp)
continue; continue;
printf(" %s", tmp); printf(" %s", tmp);
...@@ -45,28 +47,28 @@ static void cpuidle_cpu_output(unsigned int cpu, int verbose) ...@@ -45,28 +47,28 @@ static void cpuidle_cpu_output(unsigned int cpu, int verbose)
return; return;
for (idlestate = 0; idlestate < idlestates; idlestate++) { for (idlestate = 0; idlestate < idlestates; idlestate++) {
int disabled = sysfs_is_idlestate_disabled(cpu, idlestate); int disabled = cpuidle_is_state_disabled(cpu, idlestate);
/* Disabled interface not supported on older kernels */ /* Disabled interface not supported on older kernels */
if (disabled < 0) if (disabled < 0)
disabled = 0; disabled = 0;
tmp = sysfs_get_idlestate_name(cpu, idlestate); tmp = cpuidle_state_name(cpu, idlestate);
if (!tmp) if (!tmp)
continue; continue;
printf("%s%s:\n", tmp, (disabled) ? " (DISABLED) " : ""); printf("%s%s:\n", tmp, (disabled) ? " (DISABLED) " : "");
free(tmp); free(tmp);
tmp = sysfs_get_idlestate_desc(cpu, idlestate); tmp = cpuidle_state_desc(cpu, idlestate);
if (!tmp) if (!tmp)
continue; continue;
printf(_("Flags/Description: %s\n"), tmp); printf(_("Flags/Description: %s\n"), tmp);
free(tmp); free(tmp);
printf(_("Latency: %lu\n"), printf(_("Latency: %lu\n"),
sysfs_get_idlestate_latency(cpu, idlestate)); cpuidle_state_latency(cpu, idlestate));
printf(_("Usage: %lu\n"), printf(_("Usage: %lu\n"),
sysfs_get_idlestate_usage(cpu, idlestate)); cpuidle_state_usage(cpu, idlestate));
printf(_("Duration: %llu\n"), printf(_("Duration: %llu\n"),
sysfs_get_idlestate_time(cpu, idlestate)); cpuidle_state_time(cpu, idlestate));
} }
} }
...@@ -74,7 +76,7 @@ static void cpuidle_general_output(void) ...@@ -74,7 +76,7 @@ static void cpuidle_general_output(void)
{ {
char *tmp; char *tmp;
tmp = sysfs_get_cpuidle_driver(); tmp = cpuidle_get_driver();
if (!tmp) { if (!tmp) {
printf(_("Could not determine cpuidle driver\n")); printf(_("Could not determine cpuidle driver\n"));
return; return;
...@@ -83,7 +85,7 @@ static void cpuidle_general_output(void) ...@@ -83,7 +85,7 @@ static void cpuidle_general_output(void)
printf(_("CPUidle driver: %s\n"), tmp); printf(_("CPUidle driver: %s\n"), tmp);
free(tmp); free(tmp);
tmp = sysfs_get_cpuidle_governor(); tmp = cpuidle_get_governor();
if (!tmp) { if (!tmp) {
printf(_("Could not determine cpuidle governor\n")); printf(_("Could not determine cpuidle governor\n"));
return; return;
...@@ -98,7 +100,7 @@ static void proc_cpuidle_cpu_output(unsigned int cpu) ...@@ -98,7 +100,7 @@ static void proc_cpuidle_cpu_output(unsigned int cpu)
long max_allowed_cstate = 2000000000; long max_allowed_cstate = 2000000000;
unsigned int cstate, cstates; unsigned int cstate, cstates;
cstates = sysfs_get_idlestate_count(cpu); cstates = cpuidle_state_count(cpu);
if (cstates == 0) { if (cstates == 0) {
printf(_("CPU %u: No C-states info\n"), cpu); printf(_("CPU %u: No C-states info\n"), cpu);
return; return;
...@@ -113,11 +115,11 @@ static void proc_cpuidle_cpu_output(unsigned int cpu) ...@@ -113,11 +115,11 @@ static void proc_cpuidle_cpu_output(unsigned int cpu)
"type[C%d] "), cstate, cstate); "type[C%d] "), cstate, cstate);
printf(_("promotion[--] demotion[--] ")); printf(_("promotion[--] demotion[--] "));
printf(_("latency[%03lu] "), printf(_("latency[%03lu] "),
sysfs_get_idlestate_latency(cpu, cstate)); cpuidle_state_latency(cpu, cstate));
printf(_("usage[%08lu] "), printf(_("usage[%08lu] "),
sysfs_get_idlestate_usage(cpu, cstate)); cpuidle_state_usage(cpu, cstate));
printf(_("duration[%020Lu] \n"), printf(_("duration[%020Lu] \n"),
sysfs_get_idlestate_time(cpu, cstate)); cpuidle_state_time(cpu, cstate));
} }
} }
......
...@@ -5,12 +5,12 @@ ...@@ -5,12 +5,12 @@
#include <limits.h> #include <limits.h>
#include <string.h> #include <string.h>
#include <ctype.h> #include <ctype.h>
#include <getopt.h> #include <getopt.h>
#include "cpufreq.h" #include <cpufreq.h>
#include <cpuidle.h>
#include "helpers/helpers.h" #include "helpers/helpers.h"
#include "helpers/sysfs.h"
static struct option info_opts[] = { static struct option info_opts[] = {
{"disable", required_argument, NULL, 'd'}, {"disable", required_argument, NULL, 'd'},
...@@ -104,16 +104,16 @@ int cmd_idle_set(int argc, char **argv) ...@@ -104,16 +104,16 @@ int cmd_idle_set(int argc, char **argv)
if (!bitmask_isbitset(cpus_chosen, cpu)) if (!bitmask_isbitset(cpus_chosen, cpu))
continue; continue;
if (sysfs_is_cpu_online(cpu) != 1) if (cpupower_is_cpu_online(cpu) != 1)
continue; continue;
idlestates = sysfs_get_idlestate_count(cpu); idlestates = cpuidle_state_count(cpu);
if (idlestates <= 0) if (idlestates <= 0)
continue; continue;
switch (param) { switch (param) {
case 'd': case 'd':
ret = sysfs_idlestate_disable(cpu, idlestate, 1); ret = cpuidle_state_disable(cpu, idlestate, 1);
if (ret == 0) if (ret == 0)
printf(_("Idlestate %u disabled on CPU %u\n"), idlestate, cpu); printf(_("Idlestate %u disabled on CPU %u\n"), idlestate, cpu);
else if (ret == -1) else if (ret == -1)
...@@ -126,7 +126,7 @@ int cmd_idle_set(int argc, char **argv) ...@@ -126,7 +126,7 @@ int cmd_idle_set(int argc, char **argv)
idlestate, cpu); idlestate, cpu);
break; break;
case 'e': case 'e':
ret = sysfs_idlestate_disable(cpu, idlestate, 0); ret = cpuidle_state_disable(cpu, idlestate, 0);
if (ret == 0) if (ret == 0)
printf(_("Idlestate %u enabled on CPU %u\n"), idlestate, cpu); printf(_("Idlestate %u enabled on CPU %u\n"), idlestate, cpu);
else if (ret == -1) else if (ret == -1)
...@@ -140,13 +140,13 @@ int cmd_idle_set(int argc, char **argv) ...@@ -140,13 +140,13 @@ int cmd_idle_set(int argc, char **argv)
break; break;
case 'D': case 'D':
for (idlestate = 0; idlestate < idlestates; idlestate++) { for (idlestate = 0; idlestate < idlestates; idlestate++) {
disabled = sysfs_is_idlestate_disabled disabled = cpuidle_is_state_disabled
(cpu, idlestate); (cpu, idlestate);
state_latency = sysfs_get_idlestate_latency state_latency = cpuidle_state_latency
(cpu, idlestate); (cpu, idlestate);
if (disabled == 1) { if (disabled == 1) {
if (latency > state_latency){ if (latency > state_latency){
ret = sysfs_idlestate_disable ret = cpuidle_state_disable
(cpu, idlestate, 0); (cpu, idlestate, 0);
if (ret == 0) if (ret == 0)
printf(_("Idlestate %u enabled on CPU %u\n"), idlestate, cpu); printf(_("Idlestate %u enabled on CPU %u\n"), idlestate, cpu);
...@@ -154,7 +154,7 @@ int cmd_idle_set(int argc, char **argv) ...@@ -154,7 +154,7 @@ int cmd_idle_set(int argc, char **argv)
continue; continue;
} }
if (latency <= state_latency){ if (latency <= state_latency){
ret = sysfs_idlestate_disable ret = cpuidle_state_disable
(cpu, idlestate, 1); (cpu, idlestate, 1);
if (ret == 0) if (ret == 0)
printf(_("Idlestate %u disabled on CPU %u\n"), idlestate, cpu); printf(_("Idlestate %u disabled on CPU %u\n"), idlestate, cpu);
...@@ -163,10 +163,10 @@ int cmd_idle_set(int argc, char **argv) ...@@ -163,10 +163,10 @@ int cmd_idle_set(int argc, char **argv)
break; break;
case 'E': case 'E':
for (idlestate = 0; idlestate < idlestates; idlestate++) { for (idlestate = 0; idlestate < idlestates; idlestate++) {
disabled = sysfs_is_idlestate_disabled disabled = cpuidle_is_state_disabled
(cpu, idlestate); (cpu, idlestate);
if (disabled == 1) { if (disabled == 1) {
ret = sysfs_idlestate_disable ret = cpuidle_state_disable
(cpu, idlestate, 0); (cpu, idlestate, 0);
if (ret == 0) if (ret == 0)
printf(_("Idlestate %u enabled on CPU %u\n"), idlestate, cpu); printf(_("Idlestate %u enabled on CPU %u\n"), idlestate, cpu);
......
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
#include <locale.h> #include <locale.h>
#include "helpers/bitmask.h" #include "helpers/bitmask.h"
#include <cpupower.h>
/* Internationalization ****************************/ /* Internationalization ****************************/
#ifdef NLS #ifdef NLS
...@@ -92,31 +93,6 @@ extern int get_cpu_info(unsigned int cpu, struct cpupower_cpu_info *cpu_info); ...@@ -92,31 +93,6 @@ extern int get_cpu_info(unsigned int cpu, struct cpupower_cpu_info *cpu_info);
extern struct cpupower_cpu_info cpupower_cpu_info; extern struct cpupower_cpu_info cpupower_cpu_info;
/* cpuid and cpuinfo helpers **************************/ /* cpuid and cpuinfo helpers **************************/
struct cpuid_core_info {
int pkg;
int core;
int cpu;
/* flags */
unsigned int is_online:1;
};
/* CPU topology/hierarchy parsing ******************/
struct cpupower_topology {
/* Amount of CPU cores, packages and threads per core in the system */
unsigned int cores;
unsigned int pkgs;
unsigned int threads; /* per core */
/* Array gets mallocated with cores entries, holding per core info */
struct cpuid_core_info *core_info;
};
extern int get_cpu_topology(struct cpupower_topology *cpu_top);
extern void cpu_topology_release(struct cpupower_topology cpu_top);
/* CPU topology/hierarchy parsing ******************/
/* X86 ONLY ****************************************/ /* X86 ONLY ****************************************/
#if defined(__i386__) || defined(__x86_64__) #if defined(__i386__) || defined(__x86_64__)
......
...@@ -16,110 +16,7 @@ ...@@ -16,110 +16,7 @@
#include <errno.h> #include <errno.h>
#include <fcntl.h> #include <fcntl.h>
#include <helpers/helpers.h> #include <cpuidle.h>
#include <helpers/sysfs.h>
/* returns -1 on failure, 0 on success */ /* CPU topology/hierarchy parsing ******************/
static int sysfs_topology_read_file(unsigned int cpu, const char *fname, int *result)
{
char linebuf[MAX_LINE_LEN];
char *endp;
char path[SYSFS_PATH_MAX];
snprintf(path, sizeof(path), PATH_TO_CPU "cpu%u/topology/%s",
cpu, fname);
if (sysfs_read_file(path, linebuf, MAX_LINE_LEN) == 0)
return -1;
*result = strtol(linebuf, &endp, 0);
if (endp == linebuf || errno == ERANGE)
return -1;
return 0;
}
static int __compare(const void *t1, const void *t2)
{
struct cpuid_core_info *top1 = (struct cpuid_core_info *)t1;
struct cpuid_core_info *top2 = (struct cpuid_core_info *)t2;
if (top1->pkg < top2->pkg)
return -1;
else if (top1->pkg > top2->pkg)
return 1;
else if (top1->core < top2->core)
return -1;
else if (top1->core > top2->core)
return 1;
else if (top1->cpu < top2->cpu)
return -1;
else if (top1->cpu > top2->cpu)
return 1;
else
return 0;
}
/*
* Returns amount of cpus, negative on error, cpu_top must be
* passed to cpu_topology_release to free resources
*
* Array is sorted after ->pkg, ->core, then ->cpu
*/
int get_cpu_topology(struct cpupower_topology *cpu_top)
{
int cpu, last_pkg, cpus = sysconf(_SC_NPROCESSORS_CONF);
cpu_top->core_info = malloc(sizeof(struct cpuid_core_info) * cpus);
if (cpu_top->core_info == NULL)
return -ENOMEM;
cpu_top->pkgs = cpu_top->cores = 0;
for (cpu = 0; cpu < cpus; cpu++) {
cpu_top->core_info[cpu].cpu = cpu;
cpu_top->core_info[cpu].is_online = sysfs_is_cpu_online(cpu);
if(sysfs_topology_read_file(
cpu,
"physical_package_id",
&(cpu_top->core_info[cpu].pkg)) < 0) {
cpu_top->core_info[cpu].pkg = -1;
cpu_top->core_info[cpu].core = -1;
continue;
}
if(sysfs_topology_read_file(
cpu,
"core_id",
&(cpu_top->core_info[cpu].core)) < 0) {
cpu_top->core_info[cpu].pkg = -1;
cpu_top->core_info[cpu].core = -1;
continue;
}
}
qsort(cpu_top->core_info, cpus, sizeof(struct cpuid_core_info),
__compare);
/* Count the number of distinct pkgs values. This works
because the primary sort of the core_info struct was just
done by pkg value. */
last_pkg = cpu_top->core_info[0].pkg;
for(cpu = 1; cpu < cpus; cpu++) {
if (cpu_top->core_info[cpu].pkg != last_pkg &&
cpu_top->core_info[cpu].pkg != -1) {
last_pkg = cpu_top->core_info[cpu].pkg;
cpu_top->pkgs++;
}
}
if (!(cpu_top->core_info[0].pkg == -1))
cpu_top->pkgs++;
/* Intel's cores count is not consecutively numbered, there may
* be a core_id of 3, but none of 2. Assume there always is 0
* Get amount of cores by counting duplicates in a package
for (cpu = 0; cpu_top->core_info[cpu].pkg = 0 && cpu < cpus; cpu++) {
if (cpu_top->core_info[cpu].core == 0)
cpu_top->cores++;
*/
return cpus;
}
void cpu_topology_release(struct cpupower_topology cpu_top)
{
free(cpu_top.core_info);
}
...@@ -10,8 +10,8 @@ ...@@ -10,8 +10,8 @@
#include <stdint.h> #include <stdint.h>
#include <string.h> #include <string.h>
#include <limits.h> #include <limits.h>
#include <cpuidle.h>
#include "helpers/sysfs.h"
#include "helpers/helpers.h" #include "helpers/helpers.h"
#include "idle_monitor/cpupower-monitor.h" #include "idle_monitor/cpupower-monitor.h"
...@@ -51,7 +51,7 @@ static int cpuidle_start(void) ...@@ -51,7 +51,7 @@ static int cpuidle_start(void)
for (state = 0; state < cpuidle_sysfs_monitor.hw_states_num; for (state = 0; state < cpuidle_sysfs_monitor.hw_states_num;
state++) { state++) {
previous_count[cpu][state] = previous_count[cpu][state] =
sysfs_get_idlestate_time(cpu, state); cpuidle_state_time(cpu, state);
dprint("CPU %d - State: %d - Val: %llu\n", dprint("CPU %d - State: %d - Val: %llu\n",
cpu, state, previous_count[cpu][state]); cpu, state, previous_count[cpu][state]);
} }
...@@ -70,7 +70,7 @@ static int cpuidle_stop(void) ...@@ -70,7 +70,7 @@ static int cpuidle_stop(void)
for (state = 0; state < cpuidle_sysfs_monitor.hw_states_num; for (state = 0; state < cpuidle_sysfs_monitor.hw_states_num;
state++) { state++) {
current_count[cpu][state] = current_count[cpu][state] =
sysfs_get_idlestate_time(cpu, state); cpuidle_state_time(cpu, state);
dprint("CPU %d - State: %d - Val: %llu\n", dprint("CPU %d - State: %d - Val: %llu\n",
cpu, state, previous_count[cpu][state]); cpu, state, previous_count[cpu][state]);
} }
...@@ -132,13 +132,13 @@ static struct cpuidle_monitor *cpuidle_register(void) ...@@ -132,13 +132,13 @@ static struct cpuidle_monitor *cpuidle_register(void)
char *tmp; char *tmp;
/* Assume idle state count is the same for all CPUs */ /* Assume idle state count is the same for all CPUs */
cpuidle_sysfs_monitor.hw_states_num = sysfs_get_idlestate_count(0); cpuidle_sysfs_monitor.hw_states_num = cpuidle_state_count(0);
if (cpuidle_sysfs_monitor.hw_states_num <= 0) if (cpuidle_sysfs_monitor.hw_states_num <= 0)
return NULL; return NULL;
for (num = 0; num < cpuidle_sysfs_monitor.hw_states_num; num++) { for (num = 0; num < cpuidle_sysfs_monitor.hw_states_num; num++) {
tmp = sysfs_get_idlestate_name(0, num); tmp = cpuidle_state_name(0, num);
if (tmp == NULL) if (tmp == NULL)
continue; continue;
...@@ -146,7 +146,7 @@ static struct cpuidle_monitor *cpuidle_register(void) ...@@ -146,7 +146,7 @@ static struct cpuidle_monitor *cpuidle_register(void)
strncpy(cpuidle_cstates[num].name, tmp, CSTATE_NAME_LEN - 1); strncpy(cpuidle_cstates[num].name, tmp, CSTATE_NAME_LEN - 1);
free(tmp); free(tmp);
tmp = sysfs_get_idlestate_desc(0, num); tmp = cpuidle_state_desc(0, num);
if (tmp == NULL) if (tmp == NULL)
continue; continue;
strncpy(cpuidle_cstates[num].desc, tmp, CSTATE_DESC_LEN - 1); strncpy(cpuidle_cstates[num].desc, tmp, CSTATE_DESC_LEN - 1);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment