allwinner,sun4i-a10-musb.txt 1.0 KB

1234567891011121314151617181920212223242526272829
  1. Allwinner sun4i A10 musb DRC/OTG controller
  2. -------------------------------------------
  3. Required properties:
  4. - compatible : "allwinner,sun4i-a10-musb", "allwinner,sun6i-a31-musb"
  5. or "allwinner,sun8i-a33-musb"
  6. - reg : mmio address range of the musb controller
  7. - clocks : clock specifier for the musb controller ahb gate clock
  8. - reset : reset specifier for the ahb reset (A31 and newer only)
  9. - interrupts : interrupt to which the musb controller is connected
  10. - interrupt-names : must be "mc"
  11. - phys : phy specifier for the otg phy
  12. - phy-names : must be "usb"
  13. - dr_mode : Dual-Role mode must be "host" or "otg"
  14. - extcon : extcon specifier for the otg phy
  15. Example:
  16. usb_otg: usb@01c13000 {
  17. compatible = "allwinner,sun4i-a10-musb";
  18. reg = <0x01c13000 0x0400>;
  19. clocks = <&ahb_gates 0>;
  20. interrupts = <38>;
  21. interrupt-names = "mc";
  22. phys = <&usbphy 0>;
  23. phy-names = "usb";
  24. extcon = <&usbphy 0>;
  25. status = "disabled";
  26. };