summaryrefslogtreecommitdiff
path: root/src/soc/amd
diff options
context:
space:
mode:
authorFelix Held <felix-coreboot@felixheld.de>2023-02-06 18:03:49 +0100
committerFelix Held <felix-coreboot@felixheld.de>2023-02-08 15:11:46 +0000
commit9700fe2f101738689274cd124706677b22b51b3c (patch)
treec69a33e1baebb7f41097903fed02e1b930533639 /src/soc/amd
parenta5aee116c3f51111b81fc6dd51cf286feffcbff8 (diff)
soc/amd/stoneyridge/cpu: use CPUID_ALL_STEPPINGS_MASK
Use CPUID_ALL_STEPPINGS_MASK as CPUID match mask to support all family 15h model 60h and 70h steppings. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: Id05f849d59c04efa9f38dd66892f3cb99d94e3ff Reviewed-on: https://review.coreboot.org/c/coreboot/+/72855 Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com> Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/amd')
-rw-r--r--src/soc/amd/stoneyridge/cpu.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/soc/amd/stoneyridge/cpu.c b/src/soc/amd/stoneyridge/cpu.c
index a40b54bb81..5ecf0c6404 100644
--- a/src/soc/amd/stoneyridge/cpu.c
+++ b/src/soc/amd/stoneyridge/cpu.c
@@ -60,8 +60,8 @@ static struct device_operations cpu_dev_ops = {
};
static struct cpu_device_id cpu_table[] = {
- { X86_VENDOR_AMD, 0x660f01, CPUID_EXACT_MATCH_MASK },
- { X86_VENDOR_AMD, 0x670f00, CPUID_EXACT_MATCH_MASK },
+ { X86_VENDOR_AMD, 0x660f00, CPUID_ALL_STEPPINGS_MASK },
+ { X86_VENDOR_AMD, 0x670f00, CPUID_ALL_STEPPINGS_MASK },
{ 0, 0, 0 },
};