Michał Żygowski has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/70101 )
Change subject: soc/intel/common/block/graphics: Hook up all ADL-S IGD PCI IDs ......................................................................
soc/intel/common/block/graphics: Hook up all ADL-S IGD PCI IDs
Some users of MSI Z690-A baord 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 --- M src/soc/intel/common/block/graphics/graphics.c 1 file changed, 19 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/01/70101/1
diff --git a/src/soc/intel/common/block/graphics/graphics.c b/src/soc/intel/common/block/graphics/graphics.c index dae181a..7093dd8 100644 --- a/src/soc/intel/common/block/graphics/graphics.c +++ b/src/soc/intel/common/block/graphics/graphics.c @@ -306,6 +306,10 @@ 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,