[PATCH 4/5] arm64: dts: qcom: nord-rrd: Enable USB ports

From: Shawn Guo

Date: Fri Sep 11 2026 - 10:32:46 EST


Describe the RRD USB topology. Enable i2c9 and add the two NXP PTN3222
eUSB2 repeaters for USB_0 and USB_1, supplied from vreg_l3l_1p8 and a new
fixed 3.3 V pre-regulator, and reset through pmau0102_i GPIOs 9 and 10.

Add the onsemi FUSB15201 Type-C controller at 0x50 with its interrupt and
pinctrl state on pmau0102_i gpio8. Unlike RIDE, only port A of
the controller is wired on this board, to USB_0, so a single
usb-c-connector is described and port B is left out. USB_0 is configured
for OTG with usb-role-switch and its HS and SS endpoints are linked to
the dwc3 HS endpoint and the QMP combo PHY SS output.

USB_1 is a fixed host port feeding an on-board Genesys Logic GL3590 USB
3.1 hub. Add the HS and SS hub pair as children of USB_1, linked with
peer-hub, with the HS half reset via TLMM GPIO 170 and the SS half
additionally supplied by a fixed 1.2 V rail.

Assisted-by: LLM
Signed-off-by: Shawn Guo <shengchao.guo@xxxxxxxxxxxxxxxx>
---
arch/arm64/boot/dts/qcom/nord-rrd.dts | 169 ++++++++++++++++++++++++++
1 file changed, 169 insertions(+)

diff --git a/arch/arm64/boot/dts/qcom/nord-rrd.dts b/arch/arm64/boot/dts/qcom/nord-rrd.dts
index c547963371b4..c2f870ac4234 100644
--- a/arch/arm64/boot/dts/qcom/nord-rrd.dts
+++ b/arch/arm64/boot/dts/qcom/nord-rrd.dts
@@ -6,6 +6,7 @@
/dts-v1/;

#include <dt-bindings/gpio/gpio.h>
+#include <dt-bindings/interrupt-controller/irq.h>
#include <dt-bindings/regulator/qcom,rpmh-regulator.h>

#include "nord-embedded.dtsi"
@@ -53,6 +54,22 @@ bi_tcxo_ao_div2: bi-tcxo-ao-div2-clk {
clock-div = <2>;
};
};
+
+ vreg_per_3p3: regulator-per-3p3 {
+ compatible = "regulator-fixed";
+ regulator-name = "vreg_per_3p3";
+ regulator-min-microvolt = <3300000>;
+ regulator-max-microvolt = <3300000>;
+ regulator-always-on;
+ };
+
+ vreg_hub_1p2: regulator-hub-1p2 {
+ compatible = "regulator-fixed";
+ regulator-name = "vreg_hub_1p2";
+ regulator-min-microvolt = <1200000>;
+ regulator-max-microvolt = <1200000>;
+ regulator-always-on;
+ };
};

&apps_rsc {
@@ -377,6 +394,86 @@ rtc@32 {
};
};

+&i2c9 {
+ clock-frequency = <400000>;
+
+ status = "okay";
+
+ usb0_repeater: redriver@43 {
+ compatible = "nxp,ptn3222";
+ reg = <0x43>;
+ #phy-cells = <0>;
+ vdd1v8-supply = <&vreg_l3l_1p8>;
+ vdd3v3-supply = <&vreg_per_3p3>;
+ reset-gpios = <&pmau0102_i_gpios 9 GPIO_ACTIVE_LOW>;
+ };
+
+ usb1_repeater: redriver@4f {
+ compatible = "nxp,ptn3222";
+ reg = <0x4f>;
+ #phy-cells = <0>;
+ vdd1v8-supply = <&vreg_l3l_1p8>;
+ vdd3v3-supply = <&vreg_per_3p3>;
+ reset-gpios = <&pmau0102_i_gpios 10 GPIO_ACTIVE_LOW>;
+ };
+
+ typec@50 {
+ compatible = "onnn,fusb15201";
+ reg = <0x50>;
+ interrupts-extended = <&pmau0102_i_gpios 8 IRQ_TYPE_LEVEL_LOW>;
+
+ pinctrl-0 = <&usb_pd_int_default>;
+ pinctrl-names = "default";
+
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ /*
+ * Only port A of the controller is wired up on this board, to
+ * USB_0. Port B is left unconnected.
+ */
+ connector@0 {
+ compatible = "usb-c-connector";
+ reg = <0>;
+ label = "USB-C0";
+ power-role = "dual";
+ data-role = "dual";
+ try-power-role = "sink";
+
+ ports {
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ port@0 {
+ reg = <0>;
+
+ usb_0_con_hs: endpoint {
+ remote-endpoint = <&usb_0_dwc3_hs>;
+ };
+ };
+
+ port@1 {
+ reg = <1>;
+
+ usb_0_con_ss: endpoint {
+ remote-endpoint = <&usb_0_qmpphy_usb_ss_out>;
+ };
+ };
+ };
+ };
+ };
+};
+
+&pmau0102_i_gpios {
+ usb_pd_int_default: usb-pd-int-state {
+ pins = "gpio8";
+ function = "normal";
+ input-enable;
+ bias-pull-up;
+ power-source = <0>;
+ };
+};
+
&qupv3_0 {
firmware-name = "qcom/nord/qupv3fw.elf";

@@ -459,3 +556,75 @@ &ufs_mem_phy {

status = "okay";
};
+
+&usb_0 {
+ dr_mode = "otg";
+ usb-role-switch;
+
+ status = "okay";
+};
+
+&usb_0_dwc3_hs {
+ remote-endpoint = <&usb_0_con_hs>;
+};
+
+&usb_0_hsphy {
+ vdd-supply = <&vreg_l1h_0p9>;
+ vdda12-supply = <&vreg_l2h_1p2>;
+
+ phys = <&usb0_repeater>;
+
+ status = "okay";
+};
+
+&usb_0_qmpphy {
+ vdda-phy-supply = <&vreg_l2k_0p9>;
+ vdda-pll-supply = <&vreg_l2h_1p2>;
+
+ status = "okay";
+};
+
+&usb_0_qmpphy_usb_ss_out {
+ remote-endpoint = <&usb_0_con_ss>;
+};
+
+&usb_1 {
+ dr_mode = "host";
+
+ #address-cells = <1>;
+ #size-cells = <0>;
+
+ status = "okay";
+
+ hub_hs: hub@1 {
+ compatible = "usb5e3,610";
+ reg = <1>;
+ reset-gpios = <&tlmm 170 GPIO_ACTIVE_LOW>;
+ vdd-supply = <&vreg_per_3p3>;
+ peer-hub = <&hub_ss>;
+ };
+
+ hub_ss: hub@2 {
+ compatible = "usb5e3,625";
+ reg = <2>;
+ vdd-supply = <&vreg_per_3p3>;
+ vdd12-supply = <&vreg_hub_1p2>;
+ peer-hub = <&hub_hs>;
+ };
+};
+
+&usb_1_hsphy {
+ vdd-supply = <&vreg_l1h_0p9>;
+ vdda12-supply = <&vreg_l2h_1p2>;
+
+ phys = <&usb1_repeater>;
+
+ status = "okay";
+};
+
+&usb_1_qmpphy {
+ vdda-phy-supply = <&vreg_l2k_0p9>;
+ vdda-pll-supply = <&vreg_l2h_1p2>;
+
+ status = "okay";
+};
--
2.43.0