commit 5209654a46ee ("x86/ACPI/cstate: Allow ACPI C1 FFH MWAIT use on AMD systems") allows use of FFH for ACPI C1 but tools like cpupower and turbostat display INTEL for the cstate description.
Output "AMD" for AMD systems with FFH for ACPI C1. Signed-off-by: Prarit Bhargava <pra...@redhat.com> Cc: Len Brown <l...@kernel.org> Cc: "Rafael J. Wysocki" <r...@rjwysocki.net> Cc: Pavel Machek <pa...@ucw.cz> Cc: Thomas Gleixner <t...@linutronix.de> Cc: Ingo Molnar <mi...@redhat.com> Cc: "H. Peter Anvin" <h...@zytor.com> Cc: x...@kernel.org Cc: linux...@vger.kernel.org --- arch/x86/kernel/acpi/cstate.c | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/arch/x86/kernel/acpi/cstate.c b/arch/x86/kernel/acpi/cstate.c index dde437f5d14f..f10d3c673519 100644 --- a/arch/x86/kernel/acpi/cstate.c +++ b/arch/x86/kernel/acpi/cstate.c @@ -76,6 +76,7 @@ static long acpi_processor_ffh_cstate_probe_cpu(void *_cx) unsigned int edx_part; unsigned int cstate_type; /* C-state type and not ACPI C-state type */ unsigned int num_cstate_subtype; + struct cpuinfo_x86 *c = &boot_cpu_data; cpuid(CPUID_MWAIT_LEAF, &eax, &ebx, &ecx, &edx); @@ -107,9 +108,14 @@ static long acpi_processor_ffh_cstate_probe_cpu(void *_cx) "Monitor-Mwait will be used to enter C-%d state\n", cx->type); } - snprintf(cx->desc, - ACPI_CX_DESC_LEN, "ACPI FFH INTEL MWAIT 0x%x", - cx->address); + if (c->x86_vendor == X86_VENDOR_INTEL) + snprintf(cx->desc, + ACPI_CX_DESC_LEN, "ACPI FFH INTEL MWAIT 0x%x", + cx->address); + else + snprintf(cx->desc, + ACPI_CX_DESC_LEN, "ACPI FFH AMD MWAIT 0x%x", + cx->address); out: return retval; } -- 2.14.4