diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-10-26 19:41:26 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-10-27 22:17:17 +0000 |
commit | 3d1fff9c01d426e31abed77ae8bb28ab59640d34 (patch) | |
tree | 14584e6e6be9978f54189f49a5d1279a49beeae7 /src/soc/amd/common/block | |
parent | 8cc0a91c3c98bd987320ce442656bb41d4fe6c63 (diff) |
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
Reviewed-on: https://review.coreboot.org/c/coreboot/+/58631
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/soc/amd/common/block')
-rw-r--r-- | src/soc/amd/common/block/graphics/graphics.c | 2 |
1 files changed, 2 insertions, 0 deletions
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, |