Add snapshot of device tree bindings from keystone common kernel, branch "android-mainline-keystone-qcom-release" at c4c12103f9c0 ("Snap for 9228065 from e32903b9a63bb558df8b803b076619c53c16baad to android-mainline-keystone-qcom-release"). Change-Id: I7682079615cbd9f29340a5c1f2a1d84ec441a1f1 Signed-off-by: Melody Olvera <quic_molvera@quicinc.com>
23 lines
663 B
Plaintext
23 lines
663 B
Plaintext
Samsung S3C2410 and compatible SoC USB controller
|
|
|
|
OHCI
|
|
|
|
Required properties:
|
|
- compatible: should be "samsung,s3c2410-ohci" for USB host controller
|
|
- reg: address and length of the controller memory mapped region
|
|
- interrupts: interrupt number for the USB OHCI controller
|
|
- clocks: Should reference the bus and host clocks
|
|
- clock-names: Should contain two strings
|
|
"usb-bus-host" for the USB bus clock
|
|
"usb-host" for the USB host clock
|
|
|
|
Example:
|
|
|
|
usb0: ohci@49000000 {
|
|
compatible = "samsung,s3c2410-ohci";
|
|
reg = <0x49000000 0x100>;
|
|
interrupts = <0 0 26 3>;
|
|
clocks = <&clocks UCLK>, <&clocks HCLK_USBH>;
|
|
clock-names = "usb-bus-host", "usb-host";
|
|
};
|