Felix Held has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/58631 )
Change subject: soc/amd/common/block/graphics: add missing GPU PCI IDs ......................................................................
soc/amd/common/block/graphics: add missing GPU PCI IDs
Since the iGPU PCI device IDs for AMD Renoir (family 17h, model 60h) and Lucienne (family 17h, model 68h) are already defined in pci_ids.h, also add them to the pci_device_ids list in the common AMD graphics support block.
TEST=None
Signed-off-by: Felix Held felix-coreboot@felixheld.de Change-Id: I1c554d21eece182ecea7b09b45b7aa8a733425d5 --- M src/soc/amd/common/block/graphics/graphics.c 1 file changed, 2 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/31/58631/1
diff --git a/src/soc/amd/common/block/graphics/graphics.c b/src/soc/amd/common/block/graphics/graphics.c index 3b60e26..79aeef7 100644 --- a/src/soc/amd/common/block/graphics/graphics.c +++ b/src/soc/amd/common/block/graphics/graphics.c @@ -181,6 +181,8 @@
static const unsigned short pci_device_ids[] = { PCI_DEVICE_ID_ATI_FAM17H_MODEL18H_GPU, + PCI_DEVICE_ID_ATI_FAM17H_MODEL60H_GPU, + PCI_DEVICE_ID_ATI_FAM17H_MODEL68H_GPU, PCI_DEVICE_ID_ATI_FAM19H_MODEL51H_GPU_CEZANNE, PCI_DEVICE_ID_ATI_FAM19H_MODEL51H_GPU_BARCELO, 0,