diff options
author | Karthikeyan Ramasubramanian <kramasub@google.com> | 2022-04-14 13:39:55 -0600 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2022-04-19 15:58:40 +0000 |
commit | d083317fae30b01fd855cf24d81203aa2d6dec3c (patch) | |
tree | 03c6d22815a81623cb7c911e7643bf81d27e1c63 | |
parent | 2c4b42655765fc4a1ef431c7ca276032bd14e1f9 (diff) |
drivers/usb/pci_xhci: Add Sabrina xhci pci device id
BUG=None
TEST=Build and boot to OS in Skyrim. Ensure that the XHCI controllers
are enumerated successfully and ACPI device objects are added in SSDT.
Signed-off-by: Karthikeyan Ramasubramanian <kramasub@google.com>
Change-Id: I7ad4555212ed38ea0f9029275345e4945855a8c3
Reviewed-on: https://review.coreboot.org/c/coreboot/+/63641
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Jon Murphy <jpmurphy@google.com>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Reviewed-by: Felix Held <felix-coreboot@felixheld.de>
-rw-r--r-- | src/drivers/usb/pci_xhci/pci_xhci.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/drivers/usb/pci_xhci/pci_xhci.c b/src/drivers/usb/pci_xhci/pci_xhci.c index 1952130e1a..63a98c7cd5 100644 --- a/src/drivers/usb/pci_xhci/pci_xhci.c +++ b/src/drivers/usb/pci_xhci/pci_xhci.c @@ -257,6 +257,9 @@ static const unsigned short amd_pci_device_ids[] = { PCI_DID_AMD_FAM17H_MODEL18H_XHCI1, PCI_DID_AMD_FAM17H_MODEL20H_XHCI0, PCI_DID_AMD_FAM17H_MODEL60H_XHCI, + PCI_DID_AMD_FAM17H_MODELA0H_XHCI0, + PCI_DID_AMD_FAM17H_MODELA0H_XHCI1, + PCI_DID_AMD_FAM17H_MODELA0H_XHCI2, 0 }; |