diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2023-02-16 19:40:29 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-02-17 22:57:10 +0000 |
commit | edb36a1fd1be9172486c2a3839c712514bef8270 (patch) | |
tree | 0d0e10a36838a0c1577dc9421025cb4cc34537f7 /src/cpu/amd | |
parent | 4a74a5ffd78f29493824a597ff13e2c05513a1e8 (diff) |
cpu/amd/pi/00730F01/model_16_init: use CPUID_ALL_STEPPINGS_MASK
Instead of having two entries for two different steppings of the same
family and model combination using the CPUID_EXACT_MATCH_MASK, just have
one entry that uses CPUID_ALL_STEPPINGS_MASK to cover all steppings.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: I0118bb9b4b0be4d954a657d50789addca08a784e
Reviewed-on: https://review.coreboot.org/c/coreboot/+/73068
Reviewed-by: Michał Żygowski <michal.zygowski@3mdeb.com>
Reviewed-by: Fred Reitberger <reitbergerfred@gmail.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/cpu/amd')
-rw-r--r-- | src/cpu/amd/pi/00730F01/model_16_init.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/cpu/amd/pi/00730F01/model_16_init.c b/src/cpu/amd/pi/00730F01/model_16_init.c index a3064620a3..6ecc96bdc4 100644 --- a/src/cpu/amd/pi/00730F01/model_16_init.c +++ b/src/cpu/amd/pi/00730F01/model_16_init.c @@ -58,8 +58,7 @@ static struct device_operations cpu_dev_ops = { }; static const struct cpu_device_id cpu_table[] = { - { X86_VENDOR_AMD, 0x730F00, CPUID_EXACT_MATCH_MASK }, - { X86_VENDOR_AMD, 0x730F01, CPUID_EXACT_MATCH_MASK }, + { X86_VENDOR_AMD, 0x730F00, CPUID_ALL_STEPPINGS_MASK }, CPU_TABLE_END }; |