brintos

brintos / linux-shallow public Read only

0
0
Text · 663 B · 26c85af Raw
23 lines · plain
1Samsung S3C2410 and compatible SoC USB controller2 3OHCI4 5Required properties:6 - compatible: should be "samsung,s3c2410-ohci" for USB host controller7 - reg: address and length of the controller memory mapped region8 - interrupts: interrupt number for the USB OHCI controller9 - clocks: Should reference the bus and host clocks10 - clock-names: Should contain two strings11		"usb-bus-host" for the USB bus clock12		"usb-host" for the USB host clock13 14Example:15 16usb0: ohci@49000000 {17	compatible = "samsung,s3c2410-ohci";18	reg = <0x49000000 0x100>;19	interrupts = <0 0 26 3>;20	clocks = <&clocks UCLK>, <&clocks HCLK_USBH>;21	clock-names = "usb-bus-host", "usb-host";22};23