From f3c42825f3d984ff6246789167a527ad51b6d094 Mon Sep 17 00:00:00 2001 From: Meera Ravindranath Date: Mon, 13 Sep 2021 13:35:34 +0530 Subject: [PATCH] soc/intel/alderlake: Add CPU ID 0x906a4 TEST=Build and boot brya Signed-off-by: Meera Ravindranath Change-Id: I4342c7343876eb40c2955f6f4dd99d6346852dc0 Reviewed-on: https://review.coreboot.org/c/coreboot/+/57610 Tested-by: build bot (Jenkins) Reviewed-by: Arthur Heymans Reviewed-by: Tim Wawrzynczak Reviewed-by: Varshit B Pandya --- src/include/cpu/intel/cpu_ids.h | 1 + src/soc/intel/alderlake/bootblock/report_platform.c | 1 + src/soc/intel/common/block/cpu/mp_init.c | 1 + 3 files changed, 3 insertions(+) diff --git a/src/include/cpu/intel/cpu_ids.h b/src/include/cpu/intel/cpu_ids.h index 8d03d75e6a..53140762d4 100644 --- a/src/include/cpu/intel/cpu_ids.h +++ b/src/include/cpu/intel/cpu_ids.h @@ -54,5 +54,6 @@ #define CPUID_ALDERLAKE_A0 0x906a0 #define CPUID_ALDERLAKE_A1 0x906a1 #define CPUID_ALDERLAKE_A2 0x906a2 +#define CPUID_ALDERLAKE_A3 0x906a4 #endif /* CPU_INTEL_CPU_IDS_H */ diff --git a/src/soc/intel/alderlake/bootblock/report_platform.c b/src/soc/intel/alderlake/bootblock/report_platform.c index a053c7079c..2fc8eab79c 100644 --- a/src/soc/intel/alderlake/bootblock/report_platform.c +++ b/src/soc/intel/alderlake/bootblock/report_platform.c @@ -26,6 +26,7 @@ static struct { { CPUID_ALDERLAKE_A0, "Alderlake Platform" }, { CPUID_ALDERLAKE_A1, "Alderlake Platform" }, { CPUID_ALDERLAKE_A2, "Alderlake Platform" }, + { CPUID_ALDERLAKE_A3, "Alderlake Platform" }, }; static struct { diff --git a/src/soc/intel/common/block/cpu/mp_init.c b/src/soc/intel/common/block/cpu/mp_init.c index 54eeb3c389..4a429ab8f8 100644 --- a/src/soc/intel/common/block/cpu/mp_init.c +++ b/src/soc/intel/common/block/cpu/mp_init.c @@ -71,6 +71,7 @@ static const struct cpu_device_id cpu_table[] = { { X86_VENDOR_INTEL, CPUID_ALDERLAKE_A0 }, { X86_VENDOR_INTEL, CPUID_ALDERLAKE_A1 }, { X86_VENDOR_INTEL, CPUID_ALDERLAKE_A2 }, + { X86_VENDOR_INTEL, CPUID_ALDERLAKE_A3 }, { 0, 0 }, };