ohci-da8xx.txt 616 B

1234567891011121314151617181920212223
  1. DA8XX USB OHCI controller
  2. Required properties:
  3. - compatible: Should be "ti,da830-ohci"
  4. - reg: Should contain one register range i.e. start and length
  5. - interrupts: Description of the interrupt line
  6. - phys: Phandle for the PHY device
  7. - phy-names: Should be "usb-phy"
  8. Optional properties:
  9. - vbus-supply: phandle of regulator that controls vbus power / over-current
  10. Example:
  11. ohci: usb@225000 {
  12. compatible = "ti,da830-ohci";
  13. reg = <0x225000 0x1000>;
  14. interrupts = <59>;
  15. phys = <&usb_phy 1>;
  16. phy-names = "usb-phy";
  17. vbus-supply = <&reg_usb_ohci>;
  18. };