Attention is currently required from: Matt DeVillier.
Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/72855 )
Change subject: soc/amd/stoneyridge/cpu: use CPUID_ALL_STEPPINGS_MASK ......................................................................
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 felix-coreboot@felixheld.de Change-Id: Id05f849d59c04efa9f38dd66892f3cb99d94e3ff --- M src/soc/amd/stoneyridge/cpu.c 1 file changed, 15 insertions(+), 2 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/55/72855/1
diff --git a/src/soc/amd/stoneyridge/cpu.c b/src/soc/amd/stoneyridge/cpu.c index a40b54b..5ecf0c6 100644 --- a/src/soc/amd/stoneyridge/cpu.c +++ b/src/soc/amd/stoneyridge/cpu.c @@ -60,8 +60,8 @@ };
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 }, };