mb/google/volteer: Fix USB port definitions
Commit bc8f5405b5 ("tgl mainboards: Move usb{2,3}_ports settings into
XHCI device scope") not only moved the USB port definitions under the
XHCI device reference, but also combined multiple register definitions.
In doing so, it broke the inheritance from the baseboard, since the
variant overridetree registers now replaced the entire usb2_ports/
usb3_ports structs, rather than replacing individual array elements
therein. This resulted in any USB ports inherited from the baseboard
and not overridden by the variant being non-functional as they were
not included in the resulting combined devicetree.
To fix this, return to overriding individual array elements in the
usb2/3_ports structs.
TEST=build/boot google/drobit. Verify all USB ports present and
functional. Verify mainboard/static.c in built shows all ports.
Change-Id: I54921fa4ecf594a1ecbcfa7c45e5d745d4a95652
Signed-off-by: Matt DeVillier <matt.devillier@gmail.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/84348
Reviewed-by: Paul Menzel <paulepanter@mailbox.org>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Felix Singer <service+coreboot-gerrit@felixsinger.de>
Reviewed-by: Elyes Haouas <ehaouas@noos.fr>
This commit is contained in:
parent
19788920cb
commit
ad8cac34a4
16 changed files with 100 additions and 144 deletions
|
|
@ -393,22 +393,18 @@ chip soc/intel/tigerlake
|
|||
device ref gna on end
|
||||
device ref north_xhci on end
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
[0] = USB2_PORT_MID(OC_SKIP), // Type-A Port A0
|
||||
[1] = USB2_PORT_MID(OC_SKIP), // Type-A Port A1
|
||||
[2] = USB2_PORT_MID(OC_SKIP), // M.2 WWAN
|
||||
[3] = USB2_PORT_MID(OC_SKIP), // Type-A / Type-C Cl
|
||||
[4] = USB2_PORT_MID(OC_SKIP), // M.2 Camera
|
||||
[8] = USB2_PORT_MID(OC_SKIP), // Type-A / Type-C Co
|
||||
[9] = USB2_PORT_MID(OC_SKIP), // M.2 Bluetooth
|
||||
}"
|
||||
register "usb2_ports[0]" = "USB2_PORT_MID(OC_SKIP)" # Type-A Port A0
|
||||
register "usb2_ports[1]" = "USB2_PORT_MID(OC_SKIP)" # Type-A Port A1
|
||||
register "usb2_ports[2]" = "USB2_PORT_MID(OC_SKIP)" # M.2 WWAN
|
||||
register "usb2_ports[3]" = "USB2_PORT_MID(OC_SKIP)" # Type-A / Type-C Cl
|
||||
register "usb2_ports[4]" = "USB2_PORT_MID(OC_SKIP)" # M.2 Camera
|
||||
register "usb2_ports[8]" = "USB2_PORT_MID(OC_SKIP)" # Type-A / Type-C Co
|
||||
register "usb2_ports[9]" = "USB2_PORT_MID(OC_SKIP)" # M.2 Bluetooth
|
||||
|
||||
register "usb3_ports" = "{
|
||||
[0] = USB3_PORT_DEFAULT(OC1), // USB3/2 Type A port A0
|
||||
[1] = USB3_PORT_DEFAULT(OC2), // USB3/2 Type A port A1
|
||||
[2] = USB3_PORT_DEFAULT(OC_SKIP), // M.2 WWAN
|
||||
[3] = USB3_PORT_DEFAULT(OC_SKIP), // M.2 Camera
|
||||
}"
|
||||
register "usb3_ports[0]" = "USB3_PORT_DEFAULT(OC1)" # USB3/2 Type A port A0
|
||||
register "usb3_ports[1]" = "USB3_PORT_DEFAULT(OC2)" # USB3/2 Type A port A1
|
||||
register "usb3_ports[2]" = "USB3_PORT_DEFAULT(OC_SKIP)" # M.2 WWAN
|
||||
register "usb3_ports[3]" = "USB3_PORT_DEFAULT(OC_SKIP)" # M.2 Camera
|
||||
end
|
||||
device ref shared_ram on end
|
||||
device ref cnvi_wifi on
|
||||
|
|
|
|||
|
|
@ -131,11 +131,9 @@ 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
|
||||
}"
|
||||
register "usb2_ports[2]" = "USB2_PORT_EMPTY" # Disable M.2 WWAN
|
||||
register "usb2_ports[3]" = "USB2_PORT_TYPE_C(OC_SKIP)" # Type-A / Type-C C1
|
||||
register "usb2_ports[8]" = "USB2_PORT_TYPE_C(OC_SKIP)" # Type-A / Type-C C0
|
||||
|
||||
chip drivers/usb/acpi
|
||||
device ref xhci_root_hub on
|
||||
|
|
|
|||
|
|
@ -239,19 +239,15 @@ chip soc/intel/tigerlake
|
|||
end
|
||||
end
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
[0] = USB2_PORT_TYPE_C(OC1), // Type-A Port A0
|
||||
[1] = USB2_PORT_TYPE_C(OC2), // Type-A Port A1
|
||||
[2] = USB2_PORT_TYPE_C(OC0), // Type-C Port C1
|
||||
[3] = USB2_PORT_MID(OC_SKIP), // Front Camera
|
||||
[4] = USB2_PORT_TYPE_C(OC3), // Type-C Port C0
|
||||
[5] = USB2_PORT_MID(OC_SKIP), // WFC Camera
|
||||
}"
|
||||
register "usb2_ports[0]" = "USB2_PORT_TYPE_C(OC1)" # Type-A Port A0
|
||||
register "usb2_ports[1]" = "USB2_PORT_TYPE_C(OC2)" # Type-A Port A1
|
||||
register "usb2_ports[2]" = "USB2_PORT_TYPE_C(OC0)" # Type-C Port C1
|
||||
register "usb2_ports[3]" = "USB2_PORT_MID(OC_SKIP)" # Front Camera
|
||||
register "usb2_ports[4]" = "USB2_PORT_TYPE_C(OC3)" # Type-C Port C0
|
||||
register "usb2_ports[5]" = "USB2_PORT_MID(OC_SKIP)" # WFC Camera
|
||||
|
||||
register "usb3_ports" = "{
|
||||
[0] = USB3_PORT_DEFAULT(OC1), // USB3/2 Type-A Port A0
|
||||
[1] = USB3_PORT_DEFAULT(OC2), // USB3/2 Type-A Port A1
|
||||
}"
|
||||
register "usb3_ports[0]" = "USB3_PORT_DEFAULT(OC1)" # USB3/2 Type-A Port A0
|
||||
register "usb3_ports[1]" = "USB3_PORT_DEFAULT(OC2)" # USB3/2 Type-A Port A1
|
||||
|
||||
chip drivers/usb/acpi
|
||||
device ref xhci_root_hub on
|
||||
|
|
|
|||
|
|
@ -266,12 +266,10 @@ chip soc/intel/tigerlake
|
|||
end
|
||||
end
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
[0] = USB2_PORT_TYPE_C(OC0), // Type-A / Type-C Port 0
|
||||
[2] = USB2_PORT_TYPE_C(OC1), // Type-A / Type-C Port 1
|
||||
[3] = USB2_PORT_MID(OC_SKIP), // Front Camera
|
||||
[4] = USB2_PORT_TYPE_C(OC0), // Type-A / Type-C Port 0
|
||||
}"
|
||||
register "usb2_ports[0]" = "USB2_PORT_TYPE_C(OC0)" # Type-A / Type-C Port 0
|
||||
register "usb2_ports[2]" = "USB2_PORT_TYPE_C(OC1)" # Type-A / Type-C Port 1
|
||||
register "usb2_ports[3]" = "USB2_PORT_MID(OC_SKIP)" # Front Camera
|
||||
register "usb2_ports[4]" = "USB2_PORT_TYPE_C(OC0)" # Type-A / Type-C Port 0
|
||||
|
||||
register "usb3_ports[0]" = "USB3_PORT_DEFAULT(OC0)" # Type-A / Type-C Port 0
|
||||
|
||||
|
|
|
|||
|
|
@ -245,18 +245,16 @@ chip soc/intel/tigerlake
|
|||
end
|
||||
end
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
// These settings improve the USB2 Port4 eye diagram
|
||||
[3] = {
|
||||
.enable = 1,
|
||||
.tx_bias = USB2_BIAS_28P15MV,
|
||||
.tx_emp_enable = USB2_PRE_EMP_ON,
|
||||
.pre_emp_bias = USB2_BIAS_56P3MV,
|
||||
.pre_emp_bit = USB2_HALF_BIT_PRE_EMP,
|
||||
.type_c = 1,
|
||||
},
|
||||
[8] = USB2_PORT_TYPE_C(OC_SKIP),
|
||||
# These settings improve the USB2 Port4 eye diagram
|
||||
register "usb2_ports[3]" = "{
|
||||
.enable = 1,
|
||||
.tx_bias = USB2_BIAS_28P15MV,
|
||||
.tx_emp_enable = USB2_PRE_EMP_ON,
|
||||
.pre_emp_bias = USB2_BIAS_56P3MV,
|
||||
.pre_emp_bit = USB2_HALF_BIT_PRE_EMP,
|
||||
.type_c = 1,
|
||||
}"
|
||||
register "usb2_ports[8]" = "USB2_PORT_TYPE_C(OC_SKIP)"
|
||||
|
||||
|
||||
chip drivers/usb/acpi
|
||||
|
|
|
|||
|
|
@ -257,10 +257,8 @@ chip soc/intel/tigerlake
|
|||
end
|
||||
end
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
[3] = USB2_PORT_TYPE_C(OC0), // Type-C port 1
|
||||
[8] = USB2_PORT_TYPE_C(OC3), // Type-C port 0
|
||||
}"
|
||||
register "usb2_ports[3]" = "USB2_PORT_TYPE_C(OC0)" # Type-C port 1
|
||||
register "usb2_ports[8]" = "USB2_PORT_TYPE_C(OC3)" # Type-C port 0
|
||||
|
||||
chip drivers/usb/acpi
|
||||
device ref xhci_root_hub on
|
||||
|
|
|
|||
|
|
@ -222,35 +222,31 @@ chip soc/intel/tigerlake
|
|||
end
|
||||
end
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
[1] = USB2_PORT_EMPTY, // Disable Type-A Port A1
|
||||
[2] = USB2_PORT_EMPTY, // Disable M.2 WWAN
|
||||
|
||||
// improve the USB2 Port1 eye diagram
|
||||
[3] = {
|
||||
.enable = 1,
|
||||
.ocpin = OC_SKIP,
|
||||
.tx_bias = USB2_BIAS_39P35MV,
|
||||
.tx_emp_enable = USB2_DE_EMP_ON_PRE_EMP_ON,
|
||||
.pre_emp_bias = USB2_BIAS_39P35MV,
|
||||
.pre_emp_bit = USB2_FULL_BIT_PRE_EMP,
|
||||
.type_c = 1,
|
||||
},
|
||||
|
||||
// lower camera driving
|
||||
[4] = {
|
||||
.enable = 1,
|
||||
.ocpin = OC_SKIP,
|
||||
.tx_bias = USB2_BIAS_0MV,
|
||||
.tx_emp_enable = USB2_EMP_OFF,
|
||||
.pre_emp_bias = USB2_BIAS_0MV,
|
||||
.pre_emp_bit = USB2_FULL_BIT_PRE_EMP,
|
||||
},
|
||||
|
||||
// Type-A / Type-C C0
|
||||
[8] = USB2_PORT_TYPE_C(OC_SKIP),
|
||||
# Disable Type-A Port A1
|
||||
register "usb2_ports[1]" = "USB2_PORT_EMPTY"
|
||||
# Disable M.2 WWAN
|
||||
register "usb2_ports[2]" = "USB2_PORT_EMPTY"
|
||||
# Improve the USB2 Port4 eye diagram
|
||||
register "usb2_ports[3]" = "{
|
||||
.enable = 1,
|
||||
.ocpin = OC_SKIP,
|
||||
.tx_bias = USB2_BIAS_39P35MV,
|
||||
.tx_emp_enable = USB2_DE_EMP_ON_PRE_EMP_ON,
|
||||
.pre_emp_bias = USB2_BIAS_39P35MV,
|
||||
.pre_emp_bit = USB2_FULL_BIT_PRE_EMP,
|
||||
.type_c = 1,
|
||||
}"
|
||||
|
||||
# Lower camera driving
|
||||
register "usb2_ports[4]" = "{
|
||||
.enable = 1,
|
||||
.ocpin = OC_SKIP,
|
||||
.tx_bias = USB2_BIAS_0MV,
|
||||
.tx_emp_enable = USB2_EMP_OFF,
|
||||
.pre_emp_bias = USB2_BIAS_0MV,
|
||||
.pre_emp_bit = USB2_FULL_BIT_PRE_EMP,
|
||||
}"
|
||||
# Type-A / Type-C C0
|
||||
register "usb2_ports[8]" = "USB2_PORT_TYPE_C(OC_SKIP)"
|
||||
chip drivers/usb/acpi
|
||||
device ref xhci_root_hub on
|
||||
chip drivers/usb/acpi
|
||||
|
|
|
|||
|
|
@ -131,11 +131,9 @@ 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
|
||||
}"
|
||||
register "usb2_ports[2]" = "USB2_PORT_EMPTY" # Disable M.2 WWAN
|
||||
register "usb2_ports[3]" = "USB2_PORT_TYPE_C(OC_SKIP)" # Type-A / Type-C C1
|
||||
register "usb2_ports[8]" = "USB2_PORT_TYPE_C(OC_SKIP)" # Type-A / Type-C C0
|
||||
|
||||
chip drivers/usb/acpi
|
||||
device ref xhci_root_hub on
|
||||
|
|
|
|||
|
|
@ -122,14 +122,11 @@ chip soc/intel/tigerlake
|
|||
end
|
||||
end
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
[1] = USB2_PORT_MID(OC_SKIP), // Type-A / Type-C Port 0
|
||||
[3] = USB2_PORT_MID(OC_SKIP), // Type-A / Type-C Port 1
|
||||
[4] = USB2_PORT_MID(OC_SKIP), // Front Camera
|
||||
[5] = USB2_PORT_MID(OC_SKIP), // Type-A / Type-C Port 2
|
||||
[9] = USB2_PORT_MID(OC_SKIP), // Reserve for CNVi BT
|
||||
}"
|
||||
|
||||
register "usb2_ports[1]" = "USB2_PORT_MID(OC_SKIP)" # Type-A / Type-C Port 0
|
||||
register "usb2_ports[3]" = "USB2_PORT_MID(OC_SKIP)" # Type-A / Type-C Port 1
|
||||
register "usb2_ports[4]" = "USB2_PORT_MID(OC_SKIP)" # Front Camera
|
||||
register "usb2_ports[5]" = "USB2_PORT_MID(OC_SKIP)" # Type-A / Type-C Port 2
|
||||
register "usb2_ports[9]" = "USB2_PORT_MID(OC_SKIP)" # Reserve for CNVi BT
|
||||
chip drivers/usb/acpi
|
||||
device ref xhci_root_hub on
|
||||
chip drivers/usb/acpi
|
||||
|
|
|
|||
|
|
@ -318,13 +318,11 @@ chip soc/intel/tigerlake
|
|||
end
|
||||
end
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
[0] = USB2_PORT_MID(OC_SKIP), // Type-A Port A0
|
||||
[3] = USB2_PORT_TYPE_C(OC_SKIP), // Type-A / Type-C C1
|
||||
[4] = USB2_PORT_MID(OC_SKIP), // M.2 Camera
|
||||
[8] = USB2_PORT_TYPE_C(OC_SKIP), // Type-A / Type-C C0
|
||||
[9] = USB2_PORT_MID(OC_SKIP), // M.2 Bluetooth
|
||||
}"
|
||||
register "usb2_ports[0]" = "USB2_PORT_MID(OC_SKIP)" # Type-A Port A0
|
||||
register "usb2_ports[3]" = "USB2_PORT_TYPE_C(OC_SKIP)" # Type-A / Type-C C1
|
||||
register "usb2_ports[4]" = "USB2_PORT_MID(OC_SKIP)" # M.2 Camera
|
||||
register "usb2_ports[8]" = "USB2_PORT_TYPE_C(OC_SKIP)" # Type-A / Type-C C0
|
||||
register "usb2_ports[9]" = "USB2_PORT_MID(OC_SKIP)" # M.2 Bluetooth
|
||||
|
||||
register "usb3_ports[0]" = "USB3_PORT_DEFAULT(OC1)" # USB3/2 Type A port A0
|
||||
|
||||
|
|
|
|||
|
|
@ -104,16 +104,13 @@ chip soc/intel/tigerlake
|
|||
end
|
||||
end
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
[0] = USB2_PORT_MID(OC_SKIP), // Type-A Port A0
|
||||
[3] = USB2_PORT_MID(OC_SKIP), // Type-A / Type-C C1
|
||||
[4] = USB2_PORT_MID(OC_SKIP), // M.2 Camera
|
||||
[8] = USB2_PORT_MID(OC_SKIP), // Type-A / Type-C C0
|
||||
[9] = USB2_PORT_MID(OC_SKIP), // M.2 Bluetooth
|
||||
}"
|
||||
register "usb2_ports[0]" = "USB2_PORT_MID(OC_SKIP)" # Type-A Port A0
|
||||
register "usb2_ports[3]" = "USB2_PORT_MID(OC_SKIP)" # Type-A / Type-C C1
|
||||
register "usb2_ports[4]" = "USB2_PORT_MID(OC_SKIP)" # M.2 Camera
|
||||
register "usb2_ports[8]" = "USB2_PORT_MID(OC_SKIP)" # Type-A / Type-C C0
|
||||
register "usb2_ports[9]" = "USB2_PORT_MID(OC_SKIP)" # M.2 Bluetooth
|
||||
|
||||
register "usb3_ports[0]" = "USB3_PORT_DEFAULT(OC1)" # USB3/2 Type A port A0
|
||||
|
||||
chip drivers/usb/acpi
|
||||
device ref xhci_root_hub on
|
||||
chip drivers/usb/acpi
|
||||
|
|
|
|||
|
|
@ -186,18 +186,14 @@ chip soc/intel/tigerlake
|
|||
end
|
||||
end
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
[0] = USB2_PORT_TYPE_C(OC0), // Type-A / Type-C Port 0
|
||||
[1] = USB2_PORT_TYPE_C(OC1), // Type-A / Type-C Port 1
|
||||
[2] = USB2_PORT_TYPE_C(OC1), // Type-A / Type-C Port 1
|
||||
[3] = USB2_PORT_MID(OC_SKIP), // Front Camera
|
||||
[4] = USB2_PORT_TYPE_C(OC0), // Type-A / Type-C Port 0
|
||||
}"
|
||||
register "usb2_ports[0]" = "USB2_PORT_TYPE_C(OC0)" # Type-A / Type-C Port 0
|
||||
register "usb2_ports[1]" = "USB2_PORT_TYPE_C(OC1)" # Type-A / Type-C Port 1
|
||||
register "usb2_ports[2]" = "USB2_PORT_TYPE_C(OC1)" # Type-A / Type-C Port 1
|
||||
register "usb2_ports[3]" = "USB2_PORT_MID(OC_SKIP)" # Front Camera
|
||||
register "usb2_ports[4]" = "USB2_PORT_TYPE_C(OC0)" # Type-A / Type-C Port 0
|
||||
|
||||
register "usb3_ports" = "{
|
||||
[0] = USB3_PORT_DEFAULT(OC0), // Type-A / Type-C Port 0
|
||||
[1] = USB3_PORT_DEFAULT(OC1), // Type-A / Type-C Port 1
|
||||
}"
|
||||
register "usb3_ports[0]" = "USB3_PORT_DEFAULT(OC0)" # Type-A / Type-C Port 0
|
||||
register "usb3_ports[1]" = "USB3_PORT_DEFAULT(OC1)" # Type-A / Type-C Port 1
|
||||
|
||||
chip drivers/usb/acpi
|
||||
device ref xhci_root_hub on
|
||||
|
|
|
|||
|
|
@ -12,18 +12,14 @@ chip soc/intel/tigerlake
|
|||
|
||||
device domain 0 on
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
[0] = USB2_PORT_TYPE_C(OC0), // Type-A / Type-C Port 0
|
||||
[1] = USB2_PORT_TYPE_C(OC1), // Type-A / Type-C Port 1
|
||||
[2] = USB2_PORT_TYPE_C(OC1), // Type-A / Type-C Port 1
|
||||
[3] = USB2_PORT_MID(OC_SKIP), // Front Camera
|
||||
[4] = USB2_PORT_TYPE_C(OC0), // Type-A / Type-C Port 0
|
||||
}"
|
||||
register "usb2_ports[0]" = "USB2_PORT_TYPE_C(OC0)" # Type-A / Type-C Port 0
|
||||
register "usb2_ports[1]" = "USB2_PORT_TYPE_C(OC1)" # Type-A / Type-C Port 1
|
||||
register "usb2_ports[2]" = "USB2_PORT_TYPE_C(OC1)" # Type-A / Type-C Port 1
|
||||
register "usb2_ports[3]" = "USB2_PORT_MID(OC_SKIP)" # Front Camera
|
||||
register "usb2_ports[4]" = "USB2_PORT_TYPE_C(OC0)" # Type-A / Type-C Port 0
|
||||
|
||||
register "usb3_ports" = "{
|
||||
[0] = USB3_PORT_DEFAULT(OC0), // Type-A / Type-C Port 0
|
||||
[1] = USB3_PORT_DEFAULT(OC1), // Type-A / Type-C Port 1
|
||||
}"
|
||||
register "usb3_ports[0]" = "USB3_PORT_DEFAULT(OC0)" # Type-A / Type-C Port 0
|
||||
register "usb3_ports[1]" = "USB3_PORT_DEFAULT(OC1)" # Type-A / Type-C Port 1
|
||||
end
|
||||
device ref dptf on
|
||||
chip drivers/intel/dptf
|
||||
|
|
|
|||
|
|
@ -156,10 +156,8 @@ chip soc/intel/tigerlake
|
|||
end
|
||||
end
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
[2] = USB2_PORT_TYPE_C(OC_SKIP), // Type-A / Type-C Port 1
|
||||
[4] = USB2_PORT_TYPE_C(OC_SKIP), // Type-A / Type-C Port 0
|
||||
}"
|
||||
register "usb2_ports[2]" = "USB2_PORT_TYPE_C(OC_SKIP)" # Type-A / Type-C Port 1
|
||||
register "usb2_ports[4]" = "USB2_PORT_TYPE_C(OC_SKIP)" # Type-A / Type-C Port 0
|
||||
|
||||
chip drivers/usb/acpi
|
||||
device ref xhci_root_hub on
|
||||
|
|
|
|||
|
|
@ -182,10 +182,8 @@ chip soc/intel/tigerlake
|
|||
end
|
||||
end
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
[3] = USB2_PORT_TYPE_C(OC_SKIP), // Type-A / Type-C Cl
|
||||
[8] = USB2_PORT_TYPE_C(OC_SKIP), // Type-A / Type-C C0
|
||||
}"
|
||||
register "usb2_ports[3]" = "USB2_PORT_TYPE_C(OC_SKIP)" # Type-A / Type-C Cl
|
||||
register "usb2_ports[8]" = "USB2_PORT_TYPE_C(OC_SKIP)" # Type-A / Type-C C0
|
||||
|
||||
chip drivers/usb/acpi
|
||||
device ref xhci_root_hub on
|
||||
|
|
|
|||
|
|
@ -277,10 +277,8 @@ chip soc/intel/tigerlake
|
|||
end
|
||||
end
|
||||
device ref south_xhci on
|
||||
register "usb2_ports" = "{
|
||||
[3] = USB2_PORT_TYPE_C(OC_SKIP), // Type-A / Type-C Cl
|
||||
[8] = USB2_PORT_TYPE_C(OC_SKIP), // Type-A / Type-C C0
|
||||
}"
|
||||
register "usb2_ports[3]" = "USB2_PORT_TYPE_C(OC_SKIP)" # Type-A / Type-C Cl
|
||||
register "usb2_ports[8]" = "USB2_PORT_TYPE_C(OC_SKIP)" # Type-A / Type-C C0
|
||||
|
||||
chip drivers/usb/acpi
|
||||
device ref xhci_root_hub on
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue