diff options
author | Barnali Sarkar <barnali.sarkar@intel.com> | 2016-08-26 14:48:46 +0530 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2016-08-30 16:55:04 +0200 |
commit | 99123101815074322a55332c0344100d1e8193cd (patch) | |
tree | d756246d25e754e3274a297640f62d62aa52a115 /src | |
parent | fe349392a4b56524fe137e73803e753a7ae74c00 (diff) |
soc/intel/skylake: Include Kabylake specific IGD Device IDs
Add Kabylake specific Graphics IDs in report_platform.c and igd.c.
BUG=none
BRANCH=none
TEST=Built and boot kunimitsu
Change-Id: I3b810d0ff51eb51d396b783e282779aefb2dcb8c
Signed-off-by: Barnali Sarkar <barnali.sarkar@intel.com>
Reviewed-on: https://review.coreboot.org/16329
Tested-by: build bot (Jenkins)
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Aaron Durbin <adurbin@chromium.org>
Diffstat (limited to 'src')
-rw-r--r-- | src/soc/intel/skylake/bootblock/report_platform.c | 3 | ||||
-rw-r--r-- | src/soc/intel/skylake/igd.c | 3 |
2 files changed, 6 insertions, 0 deletions
diff --git a/src/soc/intel/skylake/bootblock/report_platform.c b/src/soc/intel/skylake/bootblock/report_platform.c index 2610940859..f10159f9e7 100644 --- a/src/soc/intel/skylake/bootblock/report_platform.c +++ b/src/soc/intel/skylake/bootblock/report_platform.c @@ -66,6 +66,9 @@ static struct { { IGD_SKYLAKE_GT1_SULTM, "Skylake ULT GT1"}, { IGD_SKYLAKE_GT2_SULXM, "Skylake ULX GT2" }, { IGD_SKYLAKE_GT2_SULTM, "Skylake ULT GT2" }, + { IGD_KABYLAKE_GT1_SULTM, "Kabylake ULT GT1"}, + { IGD_KABYLAKE_GT2_SULXM, "Kabylake ULX GT2" }, + { IGD_KABYLAKE_GT2_SULTM, "Kabylake ULT GT2" }, }; static void report_cpu_info(void) diff --git a/src/soc/intel/skylake/igd.c b/src/soc/intel/skylake/igd.c index 3e29ab0ffd..a8ac645409 100644 --- a/src/soc/intel/skylake/igd.c +++ b/src/soc/intel/skylake/igd.c @@ -209,6 +209,9 @@ static const unsigned short pci_device_ids[] = { IGD_SKYLAKE_GT1_SULTM, IGD_SKYLAKE_GT2_SULXM, IGD_SKYLAKE_GT2_SULTM, + IGD_KABYLAKE_GT1_SULTM, + IGD_KABYLAKE_GT2_SULXM, + IGD_KABYLAKE_GT2_SULTM, 0, }; |