summaryrefslogtreecommitdiff
path: root/src/include
diff options
context:
space:
mode:
authorMichał Żygowski <michal.zygowski@3mdeb.com>2023-07-03 17:17:32 +0200
committerFelix Held <felix-coreboot@felixheld.de>2023-07-12 13:53:40 +0000
commitd54a5b294ff3fe7a8b27f71b5fb3da2d2d0057b1 (patch)
treea66b4b60cfc02450c8ba2168932c690abdf54f64 /src/include
parent573e6ded9f0cc0119c90dbe849480b1a2974773e (diff)
treewide: Drop the suffixes from ADL and RPL CPUID macros and strings
CPUID is the same for Alder Lake and Raptor Lake S and HX variants. To reduce the confusion and concerns how to name the macros, remove the suffixes from macros and platform reporting strings. Thankfully the stepping names are unique across mobile (P suffixed) and desktop (S and HX suffixed) SKUs. Distinguishing the S from HX is possible via host bridge PCI ID. Change-Id: Ib08fb0923481541dd6f358cf60da44d90bd75ae2 Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/76203 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Tim Crawford <tcrawford@system76.com>
Diffstat (limited to 'src/include')
-rw-r--r--src/include/cpu/intel/cpu_ids.h22
1 files changed, 11 insertions, 11 deletions
diff --git a/src/include/cpu/intel/cpu_ids.h b/src/include/cpu/intel/cpu_ids.h
index e89be70abf..443135030c 100644
--- a/src/include/cpu/intel/cpu_ids.h
+++ b/src/include/cpu/intel/cpu_ids.h
@@ -58,11 +58,11 @@
#define CPUID_SAPPHIRERAPIDS_SP_Ex 0x806f8
#define CPUID_ELKHARTLAKE_A0 0x90660
#define CPUID_ELKHARTLAKE_B0 0x90661
-#define CPUID_ALDERLAKE_S_A0 0x90670
-#define CPUID_ALDERLAKE_S_B0 0x90671
-#define CPUID_ALDERLAKE_S_C0 0x90672
-#define CPUID_ALDERLAKE_S_G0 0x90674
-#define CPUID_ALDERLAKE_S_H0 0x90675
+#define CPUID_ALDERLAKE_A0 0x90670
+#define CPUID_ALDERLAKE_B0 0x90671
+#define CPUID_ALDERLAKE_C0 0x90672
+#define CPUID_ALDERLAKE_G0 0x90674
+#define CPUID_ALDERLAKE_H0 0x90675
#define CPUID_ALDERLAKE_J0 0x906a0
#define CPUID_ALDERLAKE_Q0 0x906a1
#define CPUID_ALDERLAKE_K0 0x906a2
@@ -73,11 +73,11 @@
#define CPUID_METEORLAKE_A0_2 0xa06a1
#define CPUID_METEORLAKE_B0 0xa06a2
#define CPUID_METEORLAKE_C0 0xa06a4
-#define CPUID_RAPTORLAKE_S_A0 0xb0670
-#define CPUID_RAPTORLAKE_S_B0 0xb0671
-#define CPUID_RAPTORLAKE_S_C0 0xb06f2
-#define CPUID_RAPTORLAKE_S_H0 0xb06f5
-#define CPUID_RAPTORLAKE_P_J0 0xb06a2
-#define CPUID_RAPTORLAKE_P_Q0 0xb06a3
+#define CPUID_RAPTORLAKE_A0 0xb0670
+#define CPUID_RAPTORLAKE_B0 0xb0671
+#define CPUID_RAPTORLAKE_C0 0xb06f2
+#define CPUID_RAPTORLAKE_H0 0xb06f5
+#define CPUID_RAPTORLAKE_J0 0xb06a2
+#define CPUID_RAPTORLAKE_Q0 0xb06a3
#endif /* CPU_INTEL_CPU_IDS_H */