1 The device node for Mediatek USB3.0 DRD controller
4 - compatible : should be "mediatek,<soc-model>-mtu3", "mediatek,mtu3",
5 soc-model is the name of SoC, such as mt8173, mt2712 etc,
6 when using "mediatek,mtu3" compatible string, you need SoC specific
7 ones in addition, one of:
8 - "mediatek,mt8173-mtu3"
9 - reg : specifies physical base address and size of the registers
10 - reg-names: should be "mac" for device IP and "ippc" for IP port control
11 - interrupts : interrupt used by the device IP
12 - power-domains : a phandle to USB power domain node to control USB's
14 - vusb33-supply : regulator of USB avdd3.3v
15 - clocks : a list of phandle + clock-specifier pairs, one for each
17 - clock-names : must contain "sys_ck" for clock of controller,
18 the following clocks are optional:
19 "ref_ck", "mcu_ck" and "dam_ck";
20 - phys : a list of phandle + phy specifier pairs
21 - dr_mode : should be one of "host", "peripheral" or "otg",
22 refer to usb/generic.txt
25 - #address-cells, #size-cells : should be '2' if the device has sub-nodes
27 - ranges : allows valid 1:1 translation between child's address space and
28 parent's address space
29 - extcon : external connector for vbus and idpin changes detection, needed
30 when supports dual-role mode.
31 - vbus-supply : reference to the VBUS regulator, needed when supports
33 - pinctrl-names : a pinctrl state named "default" is optional, and need be
34 defined if auto drd switch is enabled, that means the property dr_mode
35 is set as "otg", and meanwhile the property "mediatek,enable-manual-drd"
37 - pinctrl-0 : pin control group
38 See: Documentation/devicetree/bindings/pinctrl/pinctrl-bindings.txt
40 - maximum-speed : valid arguments are "super-speed", "high-speed" and
41 "full-speed"; refer to usb/generic.txt
42 - enable-manual-drd : supports manual dual-role switch via debugfs; usually
43 used when receptacle is TYPE-A and also wants to support dual-role
45 - wakeup-source: enable USB remote wakeup of host mode.
46 - mediatek,syscon-wakeup : phandle to syscon used to access the register
47 of the USB wakeup glue layer between SSUSB and SPM; it depends on
48 "wakeup-source", and has two arguments:
49 - the first one : register base address of the glue layer in syscon;
50 - the second one : hardware version of the glue layer
51 - 1 : used by mt8173 etc
52 - 2 : used by mt2712 etc
53 - mediatek,u3p-dis-msk : mask to disable u3ports, bit0 for u3port0,
54 bit1 for u3port1, ... etc;
57 The xhci should be added as subnode to mtu3 as shown in the following example
58 if host mode is enabled. The DT binding details of xhci can be found in:
59 Documentation/devicetree/bindings/usb/mediatek,mtk-xhci.txt
63 compatible = "mediatek,mt8173-mtu3";
64 reg = <0 0x11271000 0 0x3000>,
65 <0 0x11280700 0 0x0100>;
66 reg-names = "mac", "ippc";
67 interrupts = <GIC_SPI 64 IRQ_TYPE_LEVEL_LOW>;
68 phys = <&phy_port0 PHY_TYPE_USB3>,
69 <&phy_port1 PHY_TYPE_USB2>;
70 power-domains = <&scpsys MT8173_POWER_DOMAIN_USB>;
71 clocks = <&topckgen CLK_TOP_USB30_SEL>, <&clk26m>,
72 <&pericfg CLK_PERI_USB0>,
73 <&pericfg CLK_PERI_USB1>;
74 clock-names = "sys_ck", "ref_ck";
75 vusb33-supply = <&mt6397_vusb_reg>;
76 vbus-supply = <&usb_p0_vbus>;
77 extcon = <&extcon_usb>;
80 mediatek,syscon-wakeup = <&pericfg 0x400 1>;
85 usb_host: xhci@11270000 {
86 compatible = "mediatek,mt8173-xhci";
87 reg = <0 0x11270000 0 0x1000>;
89 interrupts = <GIC_SPI 115 IRQ_TYPE_LEVEL_LOW>;
90 power-domains = <&scpsys MT8173_POWER_DOMAIN_USB>;
91 clocks = <&topckgen CLK_TOP_USB30_SEL>, <&clk26m>;
92 clock-names = "sys_ck", "ref_ck";
93 vusb33-supply = <&mt6397_vusb_reg>;