Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/72850 )
Change subject: soc/amd/mendocino/cpu: use CPUID_ALL_STEPPINGS_MASK ......................................................................
soc/amd/mendocino/cpu: use CPUID_ALL_STEPPINGS_MASK
Use CPUID_ALL_STEPPINGS_MASK as CPUID match mask to support all Mendocino 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: I77ea8c6162667e0a318176e62078b1f57726c10c --- M src/soc/amd/mendocino/cpu.c 1 file changed, 15 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/50/72850/1
diff --git a/src/soc/amd/mendocino/cpu.c b/src/soc/amd/mendocino/cpu.c index 7561b24..f59a910 100644 --- a/src/soc/amd/mendocino/cpu.c +++ b/src/soc/amd/mendocino/cpu.c @@ -48,7 +48,7 @@ };
static struct cpu_device_id cpu_table[] = { - { X86_VENDOR_AMD, MENDOCINO_A0_CPUID, CPUID_EXACT_MATCH_MASK }, + { X86_VENDOR_AMD, MENDOCINO_A0_CPUID, CPUID_ALL_STEPPINGS_MASK }, { 0, 0, 0 }, };