]> git.karo-electronics.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/usb/allwinner,sun4i-a10-musb.txt
usb: musb: sunxi: Add support for the Allwinner sunxi musb controller
[karo-tx-linux.git] / Documentation / devicetree / bindings / usb / allwinner,sun4i-a10-musb.txt
1 Allwinner sun4i A10 musb DRC/OTG controller
2 -------------------------------------------
3
4 Required properties:
5  - compatible      : "allwinner,sun4i-a10-musb"
6  - reg             : mmio address range of the musb controller
7  - clocks          : clock specifier for the musb controller ahb gate clock
8  - interrupts      : interrupt to which the musb controller is connected
9  - interrupt-names : must be "mc"
10  - phys            : phy specifier for the otg phy
11  - phy-names       : must be "usb"
12  - dr_mode         : Dual-Role mode must be "host" or "otg"
13  - extcon          : extcon specifier for the otg phy
14
15 Example:
16
17         usb_otg: usb@01c13000 {
18                 compatible = "allwinner,sun4i-a10-musb";
19                 reg = <0x01c13000 0x0400>;
20                 clocks = <&ahb_gates 0>;
21                 interrupts = <38>;
22                 interrupt-names = "mc";
23                 phys = <&usbphy 0>;
24                 phy-names = "usb";
25                 extcon = <&usbphy 0>;
26                 status = "disabled";
27         };