diff options
author | Naresh G Solanki <naresh.solanki@intel.com> | 2017-04-08 17:46:06 +0530 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2017-04-24 19:30:13 +0200 |
commit | f8f682b024f7b9ff0a8c98147c45147d8266d55f (patch) | |
tree | a8e995172248aebdc4a9f3fb633805f509665fce /src/soc/intel/skylake/bootblock | |
parent | 9e49b0a2c58233e30673df343ad4c46a807822f4 (diff) |
soc/intel/skylake: Add ID's for Kabylake-R
Add CPUID, IGD, MCH & LPC ID of Kabylake-R.
Change-Id: I5ee7b3a2616f71137bba83c071288dbda2acde3d
Signed-off-by: Naresh G Solanki <naresh.solanki@intel.com>
Reviewed-on: https://review.coreboot.org/19218
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Reviewed-by: Balaji Manigandan <balaji.manigandan@intel.com>
Reviewed-by: Furquan Shaikh <furquan@google.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Diffstat (limited to 'src/soc/intel/skylake/bootblock')
-rw-r--r-- | src/soc/intel/skylake/bootblock/report_platform.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/intel/skylake/bootblock/report_platform.c b/src/soc/intel/skylake/bootblock/report_platform.c index 63cd6367ab..c50a6dd5eb 100644 --- a/src/soc/intel/skylake/bootblock/report_platform.c +++ b/src/soc/intel/skylake/bootblock/report_platform.c @@ -36,6 +36,7 @@ static struct { { CPUID_SKYLAKE_HR0, "Skylake H R0" }, { CPUID_KABYLAKE_G0, "Kabylake G0" }, { CPUID_KABYLAKE_H0, "Kabylake H0" }, + { CPUID_KABYLAKE_Y0, "Kabylake Y0" }, { CPUID_KABYLAKE_HA0, "Kabylake H A0" }, { CPUID_KABYLAKE_HB0, "Kabylake H B0" }, }; @@ -50,6 +51,7 @@ static struct { { MCH_SKYLAKE_ID_H, "Skylake-H" }, { MCH_SKYLAKE_ID_H_EM, "Skylake-H Embedded" }, { MCH_KABYLAKE_ID_U, "Kabylake-U" }, + { MCH_KABYLAKE_ID_U_R, "Kabylake-R ULT"}, { MCH_KABYLAKE_ID_Y, "Kabylake-Y" }, { MCH_KABYLAKE_ID_H, "Kabylake-H" }, }; @@ -82,6 +84,7 @@ static struct { { IGD_KABYLAKE_GT1_SULTM, "Kabylake ULT GT1"}, { IGD_KABYLAKE_GT2_SULXM, "Kabylake ULX GT2" }, { IGD_KABYLAKE_GT2_SULTM, "Kabylake ULT GT2" }, + { IGD_KABYLAKE_GT2_SULTMR, "Kabylake-R ULT GT2"}, { IGD_KABYLAKE_GT2_SHALM, "Kabylake HALO GT2" }, }; |