summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarshall Dawson <marshalldawson3rd@gmail.com>2020-01-03 19:01:19 -0700
committerMartin Roth <martinroth@google.com>2020-03-02 16:33:07 +0000
commit4062b6a3b18f8e562b813b94509ecebc4415bfa2 (patch)
tree9896ef794050c7ffdcdcab03943e21ba691dca5b
parentc105d9ab3faa7aa8ee6ff86f8c4608bad96093e9 (diff)
downloadcoreboot-4062b6a3b18f8e562b813b94509ecebc4415bfa2.tar.xz
soc/amd/picasso: Add PCI ID for Dali xHCI
soc//picasso is intended to be forward-compatible with the Dali APU, a Family 17h Models 20h-2Fh product. Add the one new device ID it has. See PPR document #55772 (still NDA only) for more information. Change-Id: I7e9b90bb00ae6f4a121f10b1467d2ca398ac860c Signed-off-by: Marshall Dawson <marshalldawson3rd@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/38169 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Eric Peers <epeers@google.com> Reviewed-by: Martin Roth <martinroth@google.com>
-rw-r--r--src/include/device/pci_ids.h1
-rw-r--r--src/soc/amd/picasso/usb.c1
2 files changed, 2 insertions, 0 deletions
diff --git a/src/include/device/pci_ids.h b/src/include/device/pci_ids.h
index 47b182577d..e2dc28e17a 100644
--- a/src/include/device/pci_ids.h
+++ b/src/include/device/pci_ids.h
@@ -459,6 +459,7 @@
#define PCI_DEVICD_ID_AMD_PCO_ACP 0x15e2
#define PCI_DEVICE_ID_AMD_PCO_XHCI0 0x15e0
#define PCI_DEVICE_ID_AMD_PCO_XHCI1 0x15e1
+#define PCI_DEVICE_ID_AMD_DALI_XHCI 0x15e5
#define PCI_VENDOR_ID_VLSI 0x1004
#define PCI_DEVICE_ID_VLSI_82C592 0x0005
diff --git a/src/soc/amd/picasso/usb.c b/src/soc/amd/picasso/usb.c
index 80e960cd86..faea3c3af8 100644
--- a/src/soc/amd/picasso/usb.c
+++ b/src/soc/amd/picasso/usb.c
@@ -48,6 +48,7 @@ static struct device_operations usb_ops = {
static const unsigned short pci_device_ids[] = {
PCI_DEVICE_ID_AMD_PCO_XHCI0,
PCI_DEVICE_ID_AMD_PCO_XHCI1,
+ PCI_DEVICE_ID_AMD_DALI_XHCI,
0
};