From 84ceee96fe751cae32a2deae7ce268d83512a7b6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20=C5=BBygowski?= Date: Tue, 29 Nov 2022 10:47:05 +0100 Subject: [PATCH] soc/intel/common/block/graphics: Hook up all ADL-S IGD PCI IDs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 Change-Id: I07584e07182ee56b61b6f751100431589d1cbe83 Reviewed-on: https://review.coreboot.org/c/coreboot/+/70101 Tested-by: build bot (Jenkins) Reviewed-by: Elias Souza Reviewed-by: Felix Singer --- src/soc/intel/common/block/graphics/graphics.c | 4 ++++ 1 file changed, 4 insertions(+) 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,