aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichał Żygowski <michal.zygowski@3mdeb.com>2022-11-29 10:47:05 +0100
committerFelix Singer <felixsinger@posteo.net>2023-02-17 16:35:18 +0000
commit84ceee96fe751cae32a2deae7ce268d83512a7b6 (patch)
tree50adc8a63800e13838a9a655d7d021d5b0d7e05c
parent5331462e9efa44a8ea433e41b941b3ea663424e2 (diff)
soc/intel/common/block/graphics: Hook up all ADL-S IGD PCI IDs
Some users of MSI Z690-A board reported non-working IGD display during post using various CPUs. As not all PCI IDs were hooked, coreboot didn't detect GOP-provided framebuffer nor passed the framebuffer information to the payload, causing a black screen. Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com> Change-Id: I07584e07182ee56b61b6f751100431589d1cbe83 Reviewed-on: https://review.coreboot.org/c/coreboot/+/70101 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Elias Souza <eliascontato@protonmail.com> Reviewed-by: Felix Singer <felixsinger@posteo.net>
-rw-r--r--src/soc/intel/common/block/graphics/graphics.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/soc/intel/common/block/graphics/graphics.c b/src/soc/intel/common/block/graphics/graphics.c
index acef488675..81a5d342f0 100644
--- a/src/soc/intel/common/block/graphics/graphics.c
+++ b/src/soc/intel/common/block/graphics/graphics.c
@@ -302,6 +302,10 @@ static const unsigned short pci_device_ids[] = {
PCI_DID_INTEL_ADL_P_GT2_8,
PCI_DID_INTEL_ADL_P_GT2_9,
PCI_DID_INTEL_ADL_S_GT1,
+ PCI_DID_INTEL_ADL_S_GT1_1,
+ PCI_DID_INTEL_ADL_S_GT2,
+ PCI_DID_INTEL_ADL_S_GT2_1,
+ PCI_DID_INTEL_ADL_S_GT2_2,
PCI_DID_INTEL_ADL_M_GT1,
PCI_DID_INTEL_ADL_M_GT2,
PCI_DID_INTEL_ADL_M_GT3,