mirror of
https://github.com/fail0verflow/switch-coreboot.git
synced 2025-05-04 01:39:18 -04:00
UPSTREAM: 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 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> Change-Id: I3b810d0ff51eb51d396b783e282779aefb2dcb8c Reviewed-on: https://chromium-review.googlesource.com/380055 Commit-Ready: Furquan Shaikh <furquan@chromium.org> Tested-by: Furquan Shaikh <furquan@chromium.org> Reviewed-by: Aaron Durbin <adurbin@chromium.org>
This commit is contained in:
parent
45129d71cc
commit
8dcf854aa7
2 changed files with 6 additions and 0 deletions
|
@ -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)
|
||||
|
|
|
@ -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,
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue