diff options
author | Felix Held <felix-coreboot@felixheld.de> | 2021-02-23 17:08:44 +0100 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2021-02-24 19:37:12 +0000 |
commit | 0151b463c3a29db731c8d2c2f5f07d7b73082a97 (patch) | |
tree | 13cef8f4e3729dfdd957794dbaaae37c88ab69cb /src/soc | |
parent | 8240cc33ec2d415cf92816e8af4ed6dd47664543 (diff) |
soc/amd/picasso/data_fabric: add missing data fabric device function 7
The device function is missing in the PCI device table in the PPR, but
is present in the hardware. Verified on a Mandolin board with PCO APU.
The corresponding ticket for the PPR is DESPCSOC-6667.
Signed-off-by: Felix Held <felix-coreboot@felixheld.de>
Change-Id: Ie91438bc905691d443ca4e7841549d1e3bca39ca
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51041
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Marshall Dawson <marshalldawson3rd@gmail.com>
Diffstat (limited to 'src/soc')
-rw-r--r-- | src/soc/amd/picasso/data_fabric.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/soc/amd/picasso/data_fabric.c b/src/soc/amd/picasso/data_fabric.c index 982b7b243d..700cb84d6b 100644 --- a/src/soc/amd/picasso/data_fabric.c +++ b/src/soc/amd/picasso/data_fabric.c @@ -115,6 +115,8 @@ static const char *data_fabric_acpi_name(const struct device *dev) return "DFD5"; case PCI_DEVICE_ID_AMD_FAM17H_MODEL18H_DF6: return "DFD6"; + case PCI_DEVICE_ID_AMD_FAM17H_MODEL18H_DF7: + return "DFD7"; default: printk(BIOS_ERR, "%s: Unhandled device id 0x%x\n", __func__, dev->device); } @@ -137,6 +139,7 @@ static const unsigned short pci_device_ids[] = { PCI_DEVICE_ID_AMD_FAM17H_MODEL18H_DF4, PCI_DEVICE_ID_AMD_FAM17H_MODEL18H_DF5, PCI_DEVICE_ID_AMD_FAM17H_MODEL18H_DF6, + PCI_DEVICE_ID_AMD_FAM17H_MODEL18H_DF7, 0 }; |