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
Reviewed-on: https://review.coreboot.org/c/coreboot/+/72855
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Reviewed-by: Martin Roth <martin.roth@amd.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
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 },
 };