soc/amd/common/block: add new PCI IDs to common code
The existing common AMD SoC code supports some of AMD Family 17h Model A0h SoC's PCI devices that however have different PCI IDs. Add the new PCI ID defines to the PCI ID lists of the common PCI drivers. Signed-off-by: Felix Held <felix-coreboot@felixheld.de> Change-Id: I50960e502c63a2ffcfed35178c5e7c9729ef061e Reviewed-on: https://review.coreboot.org/c/coreboot/+/60985 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
This commit is contained in:
parent
27b02c2eee
commit
caa83ab2e1
|
@ -183,6 +183,7 @@ 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_FAM17H_MODELA0H_GPU,
|
||||
PCI_DEVICE_ID_ATI_FAM19H_MODEL51H_GPU_CEZANNE,
|
||||
PCI_DEVICE_ID_ATI_FAM19H_MODEL51H_GPU_BARCELO,
|
||||
0,
|
||||
|
|
|
@ -43,6 +43,7 @@ static const unsigned short pci_device_ids[] = {
|
|||
PCI_DEVICE_ID_AMD_15H_MODEL_707F_NB_IOMMU,
|
||||
PCI_DEVICE_ID_AMD_17H_MODEL_1020_NB_IOMMU,
|
||||
PCI_DEVICE_ID_AMD_17H_MODEL_606F_NB_IOMMU,
|
||||
PCI_DEVICE_ID_AMD_17H_MODEL_A0AF_NB_IOMMU,
|
||||
0
|
||||
};
|
||||
|
||||
|
|
|
@ -62,6 +62,7 @@ static const unsigned short internal_pci_gpp_ids[] = {
|
|||
PCI_DEVICE_ID_AMD_FAM17H_MODEL18H_PCIE_GPP_BUSA,
|
||||
PCI_DEVICE_ID_AMD_FAM17H_MODEL18H_PCIE_GPP_BUSB,
|
||||
PCI_DEVICE_ID_AMD_FAM17H_MODEL60H_PCIE_GPP_BUSABC,
|
||||
PCI_DEVICE_ID_AMD_FAM17H_MODELA0H_PCIE_GPP_BUSABC,
|
||||
0
|
||||
};
|
||||
|
||||
|
@ -85,6 +86,7 @@ static const unsigned short external_pci_gpp_ids[] = {
|
|||
PCI_DEVICE_ID_AMD_FAM17H_MODEL18H_PCIE_GPP,
|
||||
PCI_DEVICE_ID_AMD_FAM17H_MODEL60H_PCIE_GPP_D1,
|
||||
PCI_DEVICE_ID_AMD_FAM17H_MODEL60H_PCIE_GPP_D2,
|
||||
PCI_DEVICE_ID_AMD_FAM17H_MODELA0H_PCIE_GPP,
|
||||
0
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue