usb-ohci.txt 799 B

1234567891011121314151617181920212223242526
  1. USB OHCI controllers
  2. Required properties:
  3. - compatible : "generic-ohci"
  4. - reg : ohci controller register range (address and length)
  5. - interrupts : ohci controller interrupt
  6. Optional properties:
  7. - big-endian-regs : boolean, set this for hcds with big-endian registers
  8. - big-endian-desc : boolean, set this for hcds with big-endian descriptors
  9. - big-endian : boolean, for hcds with big-endian-regs + big-endian-desc
  10. - clocks : a list of phandle + clock specifier pairs
  11. - phys : phandle + phy specifier pair
  12. - phy-names : "usb"
  13. - resets : phandle + reset specifier pair
  14. Example:
  15. ohci0: usb@01c14400 {
  16. compatible = "allwinner,sun4i-a10-ohci", "generic-ohci";
  17. reg = <0x01c14400 0x100>;
  18. interrupts = <64>;
  19. clocks = <&usb_clk 6>, <&ahb_gates 2>;
  20. phys = <&usbphy 1>;
  21. phy-names = "usb";
  22. };