allwinner,sun4i-a10-musb.txt 880 B

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