0001 Samsung S3C2410 and compatible SoC USB controller
0002
0003 OHCI
0004
0005 Required properties:
0006 - compatible: should be "samsung,s3c2410-ohci" for USB host controller
0007 - reg: address and length of the controller memory mapped region
0008 - interrupts: interrupt number for the USB OHCI controller
0009 - clocks: Should reference the bus and host clocks
0010 - clock-names: Should contain two strings
0011 "usb-bus-host" for the USB bus clock
0012 "usb-host" for the USB host clock
0013
0014 Example:
0015
0016 usb0: ohci@49000000 {
0017 compatible = "samsung,s3c2410-ohci";
0018 reg = <0x49000000 0x100>;
0019 interrupts = <0 0 26 3>;
0020 clocks = <&clocks UCLK>, <&clocks HCLK_USBH>;
0021 clock-names = "usb-bus-host", "usb-host";
0022 };