Commit a076cc74 authored by Rafael J. Wysocki's avatar Rafael J. Wysocki
Browse files

Merge branch 'pm-tools'

Merge cpupower utility updates, including a fix and improvements of the
existing functionality, for 7.0-rc4.

* pm-tools:
  cpupower: Add intel_pstate turbo boost support for Intel platforms
  cpupower: Add support for setting EPP via systemd service
  cpupower: fix swapped power/energy unit labels
parents d557640e 06c2a67e
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -30,3 +30,8 @@
# its policy for the relative importance of performance versus energy savings to
# the processor. See man CPUPOWER-SET(1) for additional details
#PERF_BIAS=

# Set the Energy Performance Preference
# Available options can be read from
# /sys/devices/system/cpu/cpufreq/policy0/energy_performance_available_preferences
#EPP=
+6 −0
Original line number Diff line number Diff line
@@ -23,4 +23,10 @@ then
    cpupower set -b "$PERF_BIAS" > /dev/null || ESTATUS=1
fi

# apply Energy Performance Preference
if test -n "$EPP"
then
    cpupower set -e "$EPP" > /dev/null || ESTATUS=1
fi

exit $ESTATUS
+5 −1
Original line number Diff line number Diff line
@@ -124,7 +124,11 @@ int cmd_set(int argc, char **argv)
	}

	if (params.turbo_boost) {
		ret = cpupower_set_turbo_boost(turbo_boost);
		if (cpupower_cpu_info.vendor == X86_VENDOR_INTEL)
			ret = cpupower_set_intel_turbo_boost(turbo_boost);
		else
			ret = cpupower_set_generic_turbo_boost(turbo_boost);

		if (ret)
			fprintf(stderr, "Error setting turbo-boost\n");
	}
+4 −1
Original line number Diff line number Diff line
@@ -104,7 +104,7 @@ extern struct cpupower_cpu_info cpupower_cpu_info;
/* cpuid and cpuinfo helpers  **************************/

int cpufreq_has_generic_boost_support(bool *active);
int cpupower_set_turbo_boost(int turbo_boost);
int cpupower_set_generic_turbo_boost(int turbo_boost);

/* X86 ONLY ****************************************/
#if defined(__i386__) || defined(__x86_64__)
@@ -143,6 +143,7 @@ extern int decode_pstates(unsigned int cpu, int boost_states,

int cpufreq_has_x86_boost_support(unsigned int cpu, int *support,
				  int *active, int *states);
int cpupower_set_intel_turbo_boost(int turbo_boost);

/* AMD P-State stuff **************************/
bool cpupower_amd_pstate_enabled(void);
@@ -189,6 +190,8 @@ static inline int cpupower_set_amd_pstate_mode(char *mode)
static inline int cpufreq_has_x86_boost_support(unsigned int cpu, int *support,
						int *active, int *states)
{ return -1; }
static inline int cpupower_set_intel_turbo_boost(int turbo_boost)
{ return -1; }

static inline bool cpupower_amd_pstate_enabled(void)
{ return false; }
+39 −2
Original line number Diff line number Diff line
@@ -19,6 +19,9 @@ int cpufreq_has_x86_boost_support(unsigned int cpu, int *support, int *active,
{
	int ret;
	unsigned long long val;
	char linebuf[MAX_LINE_LEN];
	char path[SYSFS_PATH_MAX];
	char *endp;

	*support = *active = *states = 0;

@@ -42,8 +45,42 @@ int cpufreq_has_x86_boost_support(unsigned int cpu, int *support, int *active,
		}
	} else if (cpupower_cpu_info.caps & CPUPOWER_CAP_AMD_PSTATE) {
		amd_pstate_boost_init(cpu, support, active);
	} else if (cpupower_cpu_info.caps & CPUPOWER_CAP_INTEL_IDA)
	} else if (cpupower_cpu_info.caps & CPUPOWER_CAP_INTEL_IDA) {
		*support = *active = 1;

		snprintf(path, sizeof(path), PATH_TO_CPU "intel_pstate/no_turbo");

		if (!is_valid_path(path))
			return 0;

		if (cpupower_read_sysfs(path, linebuf, MAX_LINE_LEN) == 0)
			return -1;

		val = strtol(linebuf, &endp, 0);
		if (endp == linebuf || errno == ERANGE)
			return -1;

		*active = !val;
	}
	return 0;
}

int cpupower_set_intel_turbo_boost(int turbo_boost)
{
	char path[SYSFS_PATH_MAX];
	char linebuf[2] = {};

	snprintf(path, sizeof(path), PATH_TO_CPU "intel_pstate/no_turbo");

	/* Fallback to generic solution when intel_pstate driver not running */
	if (!is_valid_path(path))
		return cpupower_set_generic_turbo_boost(turbo_boost);

	snprintf(linebuf, sizeof(linebuf), "%d", !turbo_boost);

	if (cpupower_write_sysfs(path, linebuf, 2) <= 0)
		return -1;

	return 0;
}

@@ -274,7 +311,7 @@ void print_speed(unsigned long speed, int no_rounding)
	}
}

int cpupower_set_turbo_boost(int turbo_boost)
int cpupower_set_generic_turbo_boost(int turbo_boost)
{
	char path[SYSFS_PATH_MAX];
	char linebuf[2] = {};
Loading