diff options
author | Felix Singer <felixsinger@posteo.net> | 2024-06-27 22:58:52 +0200 |
---|---|---|
committer | Felix Singer <felixsinger@posteo.net> | 2024-06-29 20:03:50 +0000 |
commit | bc8f5405b542eef35a71e5189d71654cbe134558 (patch) | |
tree | 289b1339565fb614281b31e07f09bb933c1465b8 /src/mainboard/google/volteer/variants/chronicler/overridetree.cb | |
parent | 0adf35537bd6093b79b1701becee823d3436d975 (diff) |
tgl mainboards: Move usb{2,3}_ports settings into XHCI device scope
Change-Id: Ide5126c6e642ca16249efeaf46321724f2ddce9a
Signed-off-by: Felix Singer <felixsinger@posteo.net>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/83245
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
Diffstat (limited to 'src/mainboard/google/volteer/variants/chronicler/overridetree.cb')
-rw-r--r-- | src/mainboard/google/volteer/variants/chronicler/overridetree.cb | 15 |
1 files changed, 6 insertions, 9 deletions
diff --git a/src/mainboard/google/volteer/variants/chronicler/overridetree.cb b/src/mainboard/google/volteer/variants/chronicler/overridetree.cb index 53ed651bdd..fc5d6ab063 100644 --- a/src/mainboard/google/volteer/variants/chronicler/overridetree.cb +++ b/src/mainboard/google/volteer/variants/chronicler/overridetree.cb @@ -66,15 +66,6 @@ chip soc/intel/tigerlake }, }" - # Disable M.2 WWAN - register "usb2_ports[2]" = "USB2_PORT_EMPTY" - - # Type-A / Type-C C1 - register "usb2_ports[3]" = "USB2_PORT_TYPE_C(OC_SKIP)" - - # Type-A / Type-C C0 - register "usb2_ports[8]" = "USB2_PORT_TYPE_C(OC_SKIP)" - device domain 0 on device ref dptf on chip drivers/intel/dptf @@ -146,6 +137,12 @@ chip soc/intel/tigerlake end end device ref south_xhci on + register "usb2_ports" = "{ + [2] = USB2_PORT_EMPTY, // Disable M.2 WWAN + [3] = USB2_PORT_TYPE_C(OC_SKIP), // Type-A / Type-C C1 + [8] = USB2_PORT_TYPE_C(OC_SKIP), // Type-A / Type-C C0 + }" + chip drivers/usb/acpi device ref xhci_root_hub on chip drivers/usb/acpi |