diff options
author | Maxim Polyakov <max.senia.poliak@gmail.com> | 2019-09-23 11:07:21 +0300 |
---|---|---|
committer | Patrick Georgi <pgeorgi@google.com> | 2019-09-30 11:49:07 +0000 |
commit | 9529530766ed6f1ed17c2af11d51deca9a2092d6 (patch) | |
tree | 328c50dfb2eeeba57407b855f0dba470205df5e4 | |
parent | dde937cce30b92c1b507c7c294768e0691efd28f (diff) | |
download | coreboot-9529530766ed6f1ed17c2af11d51deca9a2092d6.tar.gz coreboot-9529530766ed6f1ed17c2af11d51deca9a2092d6.tar.bz2 coreboot-9529530766ed6f1ed17c2af11d51deca9a2092d6.zip |
pci_ids: fix PCI ID for Intel Iris HALO GT4 iGPU
According to the documentation [1], SKL-H Halo GT4E (Iris Pro Graphics
P580) PCI ID should be 0x193B.
[1] page 11-12, Intel(R) Open Source HD Graphics, Intel Iris(TM)
Graphics, and Intel Iris(TM) Pro Graphics, Programmer's Reference
Manual. Volume 4: Configurations. May 2016, Revision 1.0
Doc Ref # IHD-OS-SKL-Vol 4-05.16
Change-Id: Id62fe3ec26779d51b748efd271db565ade1e3ee0
Signed-off-by: Maxim Polyakov <max.senia.poliak@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35536
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net>
Reviewed-by: Patrick Rudolph <siro@das-labor.org>
-rw-r--r-- | src/include/device/pci_ids.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h index 07589c8048a8..e6b8b1879d42 100644 --- a/src/include/device/pci_ids.h +++ b/src/include/device/pci_ids.h @@ -3103,7 +3103,7 @@ #define PCI_DEVICE_ID_INTEL_SKL_GT2_SULTM 0x1916 #define PCI_DEVICE_ID_INTEL_SKL_GT2_SHALM 0x191B #define PCI_DEVICE_ID_INTEL_SKL_GT2_SWKSM 0x191D -#define PCI_DEVICE_ID_INTEL_SKL_GT4_SHALM 0x193D +#define PCI_DEVICE_ID_INTEL_SKL_GT4_SHALM 0x193B #define PCI_DEVICE_ID_INTEL_KBL_GT1_SULTM 0x5906 #define PCI_DEVICE_ID_INTEL_KBL_GT2_DT2P2 0x5912 #define PCI_DEVICE_ID_INTEL_KBL_GT2_SULXM 0x591E |