From 3d1fff9c01d426e31abed77ae8bb28ab59640d34 Mon Sep 17 00:00:00 2001 From: Felix Held Date: Tue, 26 Oct 2021 19:41:26 +0200 Subject: [PATCH] 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 Change-Id: I1c554d21eece182ecea7b09b45b7aa8a733425d5 Reviewed-on: https://review.coreboot.org/c/coreboot/+/58631 Tested-by: build bot (Jenkins) Reviewed-by: Marshall Dawson --- src/soc/amd/common/block/graphics/graphics.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/soc/amd/common/block/graphics/graphics.c b/src/soc/amd/common/block/graphics/graphics.c index 3b60e26d9a..79aeef795b 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 struct device_operations graphics_ops = { 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,