summaryrefslogtreecommitdiff
path: root/src/soc/intel/common/block/cpu
diff options
context:
space:
mode:
authorLean Sheng Tan <sheng.tan@9elements.com>2022-04-01 12:03:51 +0200
committerAngel Pons <th3fanbus@gmail.com>2022-04-04 17:48:56 +0000
commit9e78dd13577b577f96699710fefd965acda686e1 (patch)
tree9e6f2bb50eda7d698ba9ca14e5971537885d197e /src/soc/intel/common/block/cpu
parent74d6efc924326b5858fabbafa58ce095d4cca38d (diff)
soc/intel/alderlake: Update CPU IDs with correct steppings
Update ADL CPU IDs per correct steppings listed in Intel Doc 626774. Signed-off-by: Lean Sheng Tan <sheng.tan@9elements.com> Change-Id: I722043c493b8c3de8965bcaa13f33c907d51f284 Reviewed-on: https://review.coreboot.org/c/coreboot/+/63299 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Subrata Banik <subratabanik@google.com> Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
Diffstat (limited to 'src/soc/intel/common/block/cpu')
-rw-r--r--src/soc/intel/common/block/cpu/mp_init.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/soc/intel/common/block/cpu/mp_init.c b/src/soc/intel/common/block/cpu/mp_init.c
index 2d838c5ea3..0305815750 100644
--- a/src/soc/intel/common/block/cpu/mp_init.c
+++ b/src/soc/intel/common/block/cpu/mp_init.c
@@ -70,10 +70,10 @@ static const struct cpu_device_id cpu_table[] = {
{ X86_VENDOR_INTEL, CPUID_ELKHARTLAKE_B0 },
{ X86_VENDOR_INTEL, CPUID_JASPERLAKE_A0 },
{ X86_VENDOR_INTEL, CPUID_ALDERLAKE_S_A0 },
- { X86_VENDOR_INTEL, CPUID_ALDERLAKE_A0 },
- { X86_VENDOR_INTEL, CPUID_ALDERLAKE_A1 },
- { X86_VENDOR_INTEL, CPUID_ALDERLAKE_A2 },
- { X86_VENDOR_INTEL, CPUID_ALDERLAKE_A3 },
+ { X86_VENDOR_INTEL, CPUID_ALDERLAKE_J0 },
+ { X86_VENDOR_INTEL, CPUID_ALDERLAKE_K0 },
+ { X86_VENDOR_INTEL, CPUID_ALDERLAKE_Q0 },
+ { X86_VENDOR_INTEL, CPUID_ALDERLAKE_R0 },
{ X86_VENDOR_INTEL, CPUID_ALDERLAKE_N_A0 },
{ 0, 0 },
};