summaryrefslogtreecommitdiffstats
path: root/arch
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2022-07-16 10:52:41 -0700
committerLinus Torvalds <torvalds@linux-foundation.org>2022-07-16 10:52:41 -0700
commit16c957f089d520893b0b08e06641329fbcec492d (patch)
tree40c1731333cd74a3981c03c526c272be51fe80e1 /arch
parentbe9b7b6acfeae47778f829d9d176ab1f9269593e (diff)
parentfbd74d16890b9f5d08ea69b5282b123c894f8860 (diff)
downloadlinux-stable-16c957f089d520893b0b08e06641329fbcec492d.tar.gz
linux-stable-16c957f089d520893b0b08e06641329fbcec492d.tar.bz2
linux-stable-16c957f089d520893b0b08e06641329fbcec492d.zip
Merge tag 'acpi-5.19-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm
Pull ACPI fix from Rafael Wysocki: "Fix more fallout from recent changes of the ACPI CPPC handling on AMD platforms (Mario Limonciello)" * tag 'acpi-5.19-rc7' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm: ACPI: CPPC: Fix enabling CPPC on AMD systems with shared memory
Diffstat (limited to 'arch')
-rw-r--r--arch/x86/kernel/acpi/cppc.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/arch/x86/kernel/acpi/cppc.c b/arch/x86/kernel/acpi/cppc.c
index 734b96454896..8d8752b44f11 100644
--- a/arch/x86/kernel/acpi/cppc.c
+++ b/arch/x86/kernel/acpi/cppc.c
@@ -16,6 +16,12 @@ bool cpc_supported_by_cpu(void)
switch (boot_cpu_data.x86_vendor) {
case X86_VENDOR_AMD:
case X86_VENDOR_HYGON:
+ if (boot_cpu_data.x86 == 0x19 && ((boot_cpu_data.x86_model <= 0x0f) ||
+ (boot_cpu_data.x86_model >= 0x20 && boot_cpu_data.x86_model <= 0x2f)))
+ return true;
+ else if (boot_cpu_data.x86 == 0x17 &&
+ boot_cpu_data.x86_model >= 0x70 && boot_cpu_data.x86_model <= 0x7f)
+ return true;
return boot_cpu_has(X86_FEATURE_CPPC);
}
return false;