ehci-omap.txt 754 B

1234567891011121314151617181920212223242526272829303132
  1. OMAP HS USB EHCI controller
  2. This device is usually the child of the omap-usb-host
  3. Documentation/devicetree/bindings/mfd/omap-usb-host.txt
  4. Required properties:
  5. - compatible: should be "ti,ehci-omap"
  6. - reg: should contain one register range i.e. start and length
  7. - interrupts: description of the interrupt line
  8. Optional properties:
  9. - phys: list of phandles to PHY nodes.
  10. This property is required if at least one of the ports are in
  11. PHY mode i.e. OMAP_EHCI_PORT_MODE_PHY
  12. To specify the port mode, see
  13. Documentation/devicetree/bindings/mfd/omap-usb-host.txt
  14. Example for OMAP4:
  15. usbhsehci: ehci@4a064c00 {
  16. compatible = "ti,ehci-omap";
  17. reg = <0x4a064c00 0x400>;
  18. interrupts = <0 77 0x4>;
  19. };
  20. &usbhsehci {
  21. phys = <&hsusb1_phy 0 &hsusb3_phy>;
  22. };