summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorKrishna Prasad Bhat <krishna.p.bhat.d@intel.com>2020-07-28 20:46:39 +0530
committerSubrata Banik <subrata.banik@intel.com>2020-08-17 05:15:40 +0000
commit166d930e7a1219becf58db28b3910e64b15d3ce5 (patch)
treeecd7c10bc5a2424c51e9d8ba84df96ca76fb8c6f /src
parent8fd5823c502c2bafdfa70bc0eb1bd8023ee0b692 (diff)
downloadcoreboot-166d930e7a1219becf58db28b3910e64b15d3ce5.tar.xz
soc/intel/jasperlake: Add IGD Device ID
Add IGD Device ID for Jasperlake. Reference is taken from Jasperlake EDS volume 1(Document Number: 613601). TEST=Build and boot Jasperlake platform. Change-Id: Iab3ba286f36afbf9533ac3cc62891fa390ca2441 Signed-off-by: Krishna Prasad Bhat <krishna.p.bhat.d@intel.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/44000 Reviewed-by: Subrata Banik <subrata.banik@intel.com> Reviewed-by: Aamir Bohra <aamir.bohra@intel.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src')
-rw-r--r--src/include/device/pci_ids.h1
-rw-r--r--src/soc/intel/common/block/graphics/graphics.c1
-rw-r--r--src/soc/intel/jasperlake/bootblock/report_platform.c1
3 files changed, 3 insertions, 0 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h
index 589e50cb90..b1d3d3fb5c 100644
--- a/src/include/device/pci_ids.h
+++ b/src/include/device/pci_ids.h
@@ -3638,6 +3638,7 @@
#define PCI_DEVICE_ID_INTEL_EHL_GT2_3 0x4570
#define PCI_DEVICE_ID_INTEL_JSL_GT1 0x4E51
#define PCI_DEVICE_ID_INTEL_JSL_GT2 0x4E71
+#define PCI_DEVICE_ID_INTEL_JSL_GT3 0x4E61
#define PCI_DEVICE_ID_INTEL_ADL_GT0 0x46ff
#define PCI_DEVICE_ID_INTEL_ADL_GT1 0x4600
diff --git a/src/soc/intel/common/block/graphics/graphics.c b/src/soc/intel/common/block/graphics/graphics.c
index 38d41df5c6..4561a38cc2 100644
--- a/src/soc/intel/common/block/graphics/graphics.c
+++ b/src/soc/intel/common/block/graphics/graphics.c
@@ -282,6 +282,7 @@ static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_INTEL_EHL_GT2_3,
PCI_DEVICE_ID_INTEL_JSL_GT1,
PCI_DEVICE_ID_INTEL_JSL_GT2,
+ PCI_DEVICE_ID_INTEL_JSL_GT3,
PCI_DEVICE_ID_INTEL_ADL_GT0,
PCI_DEVICE_ID_INTEL_ADL_GT1,
PCI_DEVICE_ID_INTEL_ADL_GT1_1,
diff --git a/src/soc/intel/jasperlake/bootblock/report_platform.c b/src/soc/intel/jasperlake/bootblock/report_platform.c
index 8f1318d8d2..d7eb490709 100644
--- a/src/soc/intel/jasperlake/bootblock/report_platform.c
+++ b/src/soc/intel/jasperlake/bootblock/report_platform.c
@@ -44,6 +44,7 @@ static struct {
} igd_table[] = {
{ PCI_DEVICE_ID_INTEL_JSL_GT1, "Jasperlake GT1" },
{ PCI_DEVICE_ID_INTEL_JSL_GT2, "Jasperlake GT2" },
+ { PCI_DEVICE_ID_INTEL_JSL_GT3, "Jasperlake GT3" },
};
static inline uint8_t get_dev_revision(pci_devfn_t dev)