]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
arm64: dts: rockchip: Enable USB 2.0 ports on ArmSoM Sige1
authorJonas Karlman <jonas@kwiboo.se>
Fri, 29 May 2026 19:03:54 +0000 (21:03 +0200)
committerHeiko Stuebner <heiko@sntech.de>
Tue, 2 Jun 2026 20:44:25 +0000 (22:44 +0200)
The ArmSoM Sige1 has two USB 2.0 Type-A HOST ports behind an onboard
USB hub, and one USB 2.0 Type-C OTG port.

Add support for using the USB 2.0 ports on ArmSoM Sige1.

The onboard USB hub handles OHCI so only the EHCI controller is enabled.

Signed-off-by: Jonas Karlman <jonas@kwiboo.se>
[added phy-supply for otg port]
Signed-off-by: Heiko Stuebner <heiko@sntech.de>
Link: https://patch.msgid.link/20260529190355.4148175-5-heiko@sntech.de
arch/arm64/boot/dts/rockchip/rk3528-armsom-sige1.dts

index c41af8fc0c8d14fbb8369c3e41fa08a03e3cc1f0..ee4183fb980d8cdfe7bf44aa9533aea95f7f8997 100644 (file)
                vddio-supply = <&vcc_1v8>;
        };
 };
+
+&usb_host0_ehci {
+       status = "okay";
+};
+
+&usb_host0_xhci {
+       extcon = <&usb2phy>;
+       maximum-speed = "high-speed";
+       phys = <&usb2phy_otg>;
+       phy-names = "usb2-phy";
+       status = "okay";
+};
+
+&usb2phy {
+       status = "okay";
+};
+
+&usb2phy_host {
+       status = "okay";
+};
+
+&usb2phy_otg {
+       phy-supply = <&vcc5v0_usb_otg>;
+       status = "okay";
+};