From 9700fe2f101738689274cd124706677b22b51b3c Mon Sep 17 00:00:00 2001 From: Felix Held Date: Mon, 6 Feb 2023 18:03:49 +0100 Subject: 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 Change-Id: Id05f849d59c04efa9f38dd66892f3cb99d94e3ff Reviewed-on: https://review.coreboot.org/c/coreboot/+/72855 Reviewed-by: Fred Reitberger Reviewed-by: Martin Roth Tested-by: build bot (Jenkins) --- src/soc/amd/stoneyridge/cpu.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/soc') 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 }, }; -- cgit v1.2.3