From a5d7f1603a48ba3a2f4a564b2fbd193535326ac1 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Mon, 6 Feb 2023 17:27:07 +0100 Subject: soc/amd/phoenix/cpu: use CPUID_ALL_STEPPINGS_MASK Use CPUID_ALL_STEPPINGS_MASK as CPUID match mask to support all Phoenix 2 steppings that might be available in the future. Right now it shouldn't change any behavior. Signed-off-by: Felix Held Change-Id: If9878b4687360250cac4cfe1409d5dbad7147cf3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/72851 Reviewed-by: Fred Reitberger Reviewed-by: Martin Roth Tested-by: build bot (Jenkins) --- src/soc/amd/phoenix/cpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/soc/amd') diff --git a/src/soc/amd/phoenix/cpu.c b/src/soc/amd/phoenix/cpu.c index cba22e97e3..9c51a579e2 100644 --- a/src/soc/amd/phoenix/cpu.c +++ b/src/soc/amd/phoenix/cpu.c @@ -51,7 +51,7 @@ static struct device_operations cpu_dev_ops = { static struct cpu_device_id cpu_table[] = { /* TODO: Add Phoenix CPUID */ - { X86_VENDOR_AMD, PHOENIX2_A0_CPUID, CPUID_EXACT_MATCH_MASK }, + { X86_VENDOR_AMD, PHOENIX2_A0_CPUID, CPUID_ALL_STEPPINGS_MASK }, { 0, 0, 0 }, }; -- cgit v1.2.3