diff options
author | Michał Żygowski <michal.zygowski@3mdeb.com> | 2023-07-03 17:17:32 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-07-12 13:53:40 +0000 |
commit | d54a5b294ff3fe7a8b27f71b5fb3da2d2d0057b1 (patch) | |
tree | a66b4b60cfc02450c8ba2168932c690abdf54f64 /src/soc/intel/alderlake/bootblock | |
parent | 573e6ded9f0cc0119c90dbe849480b1a2974773e (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/soc/intel/alderlake/bootblock')
-rw-r--r-- | src/soc/intel/alderlake/bootblock/report_platform.c | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/src/soc/intel/alderlake/bootblock/report_platform.c b/src/soc/intel/alderlake/bootblock/report_platform.c index 9cc2c17766..938c8ebbca 100644 --- a/src/soc/intel/alderlake/bootblock/report_platform.c +++ b/src/soc/intel/alderlake/bootblock/report_platform.c @@ -29,17 +29,17 @@ static struct { { CPUID_ALDERLAKE_Q0, "Alderlake Q0 Platform" }, { CPUID_ALDERLAKE_R0, "Alderlake R0 Platform" }, { CPUID_ALDERLAKE_N_A0, "Alderlake-N Platform" }, - { CPUID_ALDERLAKE_S_A0, "Alderlake-S A0 Platform" }, - { CPUID_ALDERLAKE_S_B0, "Alderlake-S B0 Platform" }, - { CPUID_ALDERLAKE_S_C0, "Alderlake-S C0 Platform" }, - { CPUID_ALDERLAKE_S_G0, "Alderlake-S G0 Platform" }, - { CPUID_ALDERLAKE_S_H0, "Alderlake-S H0 Platform" }, - { CPUID_RAPTORLAKE_S_A0, "Raptorlake-S A0 Platform" }, - { CPUID_RAPTORLAKE_S_B0, "Raptorlake-S B0 Platform" }, - { CPUID_RAPTORLAKE_S_C0, "Raptorlake-S C0 Platform" }, - { CPUID_RAPTORLAKE_S_H0, "Raptorlake-S H0 Platform" }, - { CPUID_RAPTORLAKE_P_J0, "Raptorlake-P J0 Platform" }, - { CPUID_RAPTORLAKE_P_Q0, "Raptorlake-P Q0 Platform" }, + { CPUID_ALDERLAKE_A0, "Alderlake A0 Platform" }, + { CPUID_ALDERLAKE_B0, "Alderlake B0 Platform" }, + { CPUID_ALDERLAKE_C0, "Alderlake C0 Platform" }, + { CPUID_ALDERLAKE_G0, "Alderlake G0 Platform" }, + { CPUID_ALDERLAKE_H0, "Alderlake H0 Platform" }, + { CPUID_RAPTORLAKE_A0, "Raptorlake A0 Platform" }, + { CPUID_RAPTORLAKE_B0, "Raptorlake B0 Platform" }, + { CPUID_RAPTORLAKE_C0, "Raptorlake C0 Platform" }, + { CPUID_RAPTORLAKE_H0, "Raptorlake H0 Platform" }, + { CPUID_RAPTORLAKE_J0, "Raptorlake J0 Platform" }, + { CPUID_RAPTORLAKE_Q0, "Raptorlake Q0 Platform" }, }; static struct { |