Message ID | 20240904-b4-rb3gen2-usb2-v1-1-b858e681195e@linaro.org (mailing list archive) |
---|---|
State | Changes Requested |
Headers | show |
Series | arm64: dts: qcom: rb3gen2: add second USB port | expand |
diff --git a/arch/arm64/boot/dts/qcom/sc7280.dtsi b/arch/arm64/boot/dts/qcom/sc7280.dtsi index 3d8410683402..06a74601c2d7 100644 --- a/arch/arm64/boot/dts/qcom/sc7280.dtsi +++ b/arch/arm64/boot/dts/qcom/sc7280.dtsi @@ -3712,11 +3712,23 @@ usb_2_dwc3: usb@8c00000 { phy-names = "usb2-phy"; maximum-speed = "high-speed"; usb-role-switch; - port { - usb2_role_switch: endpoint { - remote-endpoint = <&eud_ep>; + ports { + #address-cells = <1>; + #size-cells = <0>; + + port@0 { + reg = <0>; + usb_2_dwc3_hs: endpoint { + }; + }; + + + port@1 { + usb2_role_switch: endpoint { + remote-endpoint = <&eud_ep>; + }; }; }; }; };
We might have more than one port, so use ports instead for the second USB controllers. Signed-off-by: Caleb Connolly <caleb.connolly@linaro.org> --- arch/arm64/boot/dts/qcom/sc7280.dtsi | 18 +++++++++++++++--- 1 file changed, 15 insertions(+), 3 deletions(-)