s3c2410-usb.txt 663 B

12345678910111213141516171819202122
  1. Samsung S3C2410 and compatible SoC USB controller
  2. OHCI
  3. Required properties:
  4. - compatible: should be "samsung,s3c2410-ohci" for USB host controller
  5. - reg: address and lenght of the controller memory mapped region
  6. - interrupts: interrupt number for the USB OHCI controller
  7. - clocks: Should reference the bus and host clocks
  8. - clock-names: Should contain two strings
  9. "usb-bus-host" for the USB bus clock
  10. "usb-host" for the USB host clock
  11. Example:
  12. usb0: ohci@49000000 {
  13. compatible = "samsung,s3c2410-ohci";
  14. reg = <0x49000000 0x100>;
  15. interrupts = <0 0 26 3>;
  16. clocks = <&clocks UCLK>, <&clocks HCLK_USBH>;
  17. clock-names = "usb-bus-host", "usb-host";
  18. };