diff options
author | Musse Abdullahi <musse.abdullahi@intel.com> | 2023-04-10 18:07:14 -0700 |
---|---|---|
committer | Subrata Banik <subratabanik@google.com> | 2023-04-15 12:10:08 +0000 |
commit | ab496bf1770b4b2a1b0f6a99e14e736c43190b44 (patch) | |
tree | 238334809b2e94af391df572f98b77427e10c32c /src/soc/intel/meteorlake | |
parent | 71fd3becf0f6aafa1b17495233129b06893402b1 (diff) |
soc/intel/meteorlake: Add B0 stepping CPU ID
This patch adds CPU ID for B0 stepping (aka ES2).
DOC=#723567
TEST=Able to boot on B0 rvp and get correct CPU Name in coreboot log.
Signed-off-by: Musse Abdullahi <musse.abdullahi@intel.com>
Change-Id: I8b939ccc8b05e3648c55f8f2a0a391cb08f04184
Signed-off-by: Musse Abdullahi <musse.abdullahi@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/74300
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Reviewed-by: Subrata Banik <subratabanik@google.com>
Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/meteorlake')
-rw-r--r-- | src/soc/intel/meteorlake/bootblock/report_platform.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/soc/intel/meteorlake/bootblock/report_platform.c b/src/soc/intel/meteorlake/bootblock/report_platform.c index a5d32f356e..3e8bc561c1 100644 --- a/src/soc/intel/meteorlake/bootblock/report_platform.c +++ b/src/soc/intel/meteorlake/bootblock/report_platform.c @@ -19,6 +19,7 @@ static struct { } cpu_table[] = { { CPUID_METEORLAKE_A0_1, "MeteorLake A0" }, { CPUID_METEORLAKE_A0_2, "MeteorLake A0" }, + { CPUID_METEORLAKE_B0, "MeteorLake B0" }, }; static struct { |