Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/72851 )
Change subject: soc/amd/phoenix/cpu: use CPUID_ALL_STEPPINGS_MASK ......................................................................
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 felix-coreboot@felixheld.de Change-Id: If9878b4687360250cac4cfe1409d5dbad7147cf3 --- M src/soc/amd/phoenix/cpu.c 1 file changed, 15 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/51/72851/1
diff --git a/src/soc/amd/phoenix/cpu.c b/src/soc/amd/phoenix/cpu.c index cba22e9..9c51a57 100644 --- a/src/soc/amd/phoenix/cpu.c +++ b/src/soc/amd/phoenix/cpu.c @@ -51,7 +51,7 @@
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 }, };