Commit 8c6294cc authored by Petr Tesařík's avatar Petr Tesařík Committed by Rafael J. Wysocki

ACPI: CPPC: add sysfs entry for guaranteed performance

Expose the CPPC guaranteed performance as reported by the platform through
GuaranteedPerformanceRegister.

The current value is already read in cppc_get_perf_caps() and stored in
struct cppc_perf_caps (to be used by the intel_pstate driver), so only the
attribute itself needs to be defined.
Signed-off-by: default avatarPetr Tesařík <ptesarik@suse.com>
Signed-off-by: default avatarRafael J. Wysocki <rafael.j.wysocki@intel.com>
parent 83a7eefe
...@@ -160,6 +160,7 @@ show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, highest_perf); ...@@ -160,6 +160,7 @@ show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, highest_perf);
show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, lowest_perf); show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, lowest_perf);
show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, nominal_perf); show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, nominal_perf);
show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, lowest_nonlinear_perf); show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, lowest_nonlinear_perf);
show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, guaranteed_perf);
show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, lowest_freq); show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, lowest_freq);
show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, nominal_freq); show_cppc_data(cppc_get_perf_caps, cppc_perf_caps, nominal_freq);
...@@ -196,6 +197,7 @@ static struct attribute *cppc_attrs[] = { ...@@ -196,6 +197,7 @@ static struct attribute *cppc_attrs[] = {
&highest_perf.attr, &highest_perf.attr,
&lowest_perf.attr, &lowest_perf.attr,
&lowest_nonlinear_perf.attr, &lowest_nonlinear_perf.attr,
&guaranteed_perf.attr,
&nominal_perf.attr, &nominal_perf.attr,
&nominal_freq.attr, &nominal_freq.attr,
&lowest_freq.attr, &lowest_freq.attr,
......
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