diff options
author | Mathew King <mathewk@chromium.org> | 2021-03-04 08:26:51 -0700 |
---|---|---|
committer | Martin Roth <martinroth@google.com> | 2021-03-10 23:47:03 +0000 |
commit | c519bff9c15ebefd790f844921b314bcf080bdcc (patch) | |
tree | cd771a55ba6d9fe81813e10983b274be07ca1bf3 /src/soc/amd | |
parent | 807ce6258a731aa3387359660d29b42cc52b46d3 (diff) |
soc/amd/cezanne: Add USB ports to chipset.cb
BUG=b:180529005
TEST=builds
Signed-off-by: Mathew King <mathewk@chromium.org>
Change-Id: I16de0869abd1eff4e89cf1b8128775858702acb3
Reviewed-on: https://review.coreboot.org/c/coreboot/+/51255
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Raul Rangel <rrangel@chromium.org>
Diffstat (limited to 'src/soc/amd')
-rw-r--r-- | src/soc/amd/cezanne/Kconfig | 2 | ||||
-rw-r--r-- | src/soc/amd/cezanne/chipset.cb | 52 |
2 files changed, 52 insertions, 2 deletions
diff --git a/src/soc/amd/cezanne/Kconfig b/src/soc/amd/cezanne/Kconfig index 290fc229a6..01b38e06fb 100644 --- a/src/soc/amd/cezanne/Kconfig +++ b/src/soc/amd/cezanne/Kconfig @@ -15,6 +15,8 @@ config SOC_SPECIFIC_OPTIONS select ARCH_ROMSTAGE_X86_32 select ARCH_RAMSTAGE_X86_32 select BOOT_DEVICE_SUPPORTS_WRITES if BOOT_DEVICE_SPI_FLASH + select DRIVERS_USB_ACPI + select DRIVERS_USB_PCI_XHCI select FSP_COMPRESS_FSP_M_LZMA select FSP_COMPRESS_FSP_S_LZMA select HAVE_ACPI_TABLES diff --git a/src/soc/amd/cezanne/chipset.cb b/src/soc/amd/cezanne/chipset.cb index cb05750eb6..0963637408 100644 --- a/src/soc/amd/cezanne/chipset.cb +++ b/src/soc/amd/cezanne/chipset.cb @@ -25,8 +25,56 @@ chip soc/amd/cezanne device pci 0.0 alias gfx off end # Internal GPU (GFX) device pci 0.1 alias gfx_hda off end # Display HD Audio Controller (GFXAZ) device pci 0.2 alias crypto off end # Crypto Coprocessor - device pci 0.3 alias xhci_0 off end - device pci 0.4 alias xhci_1 off end + device pci 0.3 alias xhci_0 off + chip drivers/usb/acpi + register "type" = "UPC_TYPE_HUB" + device usb 0.0 alias xhci_0_root_hub off + chip drivers/usb/acpi + device usb 3.0 alias usb3_port0 off end + end + chip drivers/usb/acpi + device usb 3.1 alias usb3_port1 off end + end + chip drivers/usb/acpi + device usb 2.0 alias usb2_port0 off end + end + chip drivers/usb/acpi + device usb 2.1 alias usb2_port1 off end + end + chip drivers/usb/acpi + device usb 2.2 alias usb2_port2 off end + end + chip drivers/usb/acpi + device usb 2.3 alias usb2_port3 off end + end + end + end + end + device pci 0.4 alias xhci_1 off + chip drivers/usb/acpi + register "type" = "UPC_TYPE_HUB" + device usb 0.0 alias xhci_1_root_hub off + chip drivers/usb/acpi + device usb 3.0 alias usb3_port4 off end + end + chip drivers/usb/acpi + device usb 3.1 alias usb3_port5 off end + end + chip drivers/usb/acpi + device usb 2.0 alias usb2_port4 off end + end + chip drivers/usb/acpi + device usb 2.1 alias usb2_port5 off end + end + chip drivers/usb/acpi + device usb 2.2 alias usb2_port6 off end + end + chip drivers/usb/acpi + device usb 2.3 alias usb2_port7 off end + end + end + end + end device pci 0.5 alias acp off end # Audio Processor (ACP) device pci 0.6 alias hda off end # Audio Processor HD Audio Controller (main AZ) device pci 0.7 alias mp2 off end # Sensor Fusion Hub (MP2) |