Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/72849 )
Change subject: soc/amd/cezanne: use CPUID_ALL_STEPPINGS_MASK to support all steppings ......................................................................
soc/amd/cezanne: use CPUID_ALL_STEPPINGS_MASK to support all steppings
Use CPUID_ALL_STEPPINGS_MASK as CPUID match mask to support all Cezanne steppings. This adds support for Cezanne stepping A1 and possible future steppings.
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: Idb020052685d9369109f391797fdd8f8790a91d1 --- M src/soc/amd/cezanne/cpu.c 1 file changed, 15 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/49/72849/1
diff --git a/src/soc/amd/cezanne/cpu.c b/src/soc/amd/cezanne/cpu.c index ddd4afe..4d3fa1e 100644 --- a/src/soc/amd/cezanne/cpu.c +++ b/src/soc/amd/cezanne/cpu.c @@ -47,7 +47,7 @@ };
static struct cpu_device_id cpu_table[] = { - { X86_VENDOR_AMD, CEZANNE_A0_CPUID, CPUID_EXACT_MATCH_MASK }, + { X86_VENDOR_AMD, CEZANNE_A0_CPUID, CPUID_ALL_STEPPINGS_MASK }, { 0, 0, 0 }, };