diff options
author | Doug Anderson <dianders@chromium.org> | 2013-04-04 02:12:22 -0400 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2013-04-08 12:39:16 -0400 |
commit | 319c51068cdf2ca785778f1fff8cc3142d3d64bb (patch) | |
tree | 0db14cdd226cb0253795b23155e2a2a1f536755c /Documentation | |
parent | b3cd7d876e1b6dbb6dfbde1eb634d078cb5ee60d (diff) |
ARM: dts: Document usb clocks in samsung,exynos4210-ehci/ohci bindings
The exynox4210-ehci and exynos4210-ohci nodes need a clock specified
using the common clock framework. Document it.
Signed-off-by: Doug Anderson <dianders@chromium.org>
Acked-by: Jingoo Han <jg1.han@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/devicetree/bindings/usb/exynos-usb.txt | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/usb/exynos-usb.txt b/Documentation/devicetree/bindings/usb/exynos-usb.txt index f66fcddba46f..b3abde736017 100644 --- a/Documentation/devicetree/bindings/usb/exynos-usb.txt +++ b/Documentation/devicetree/bindings/usb/exynos-usb.txt | |||
@@ -10,6 +10,8 @@ Required properties: | |||
10 | - reg: physical base address of the controller and length of memory mapped | 10 | - reg: physical base address of the controller and length of memory mapped |
11 | region. | 11 | region. |
12 | - interrupts: interrupt number to the cpu. | 12 | - interrupts: interrupt number to the cpu. |
13 | - clocks: from common clock binding: handle to usb clock. | ||
14 | - clock-names: from common clock binding: Shall be "usbhost". | ||
13 | 15 | ||
14 | Optional properties: | 16 | Optional properties: |
15 | - samsung,vbus-gpio: if present, specifies the GPIO that | 17 | - samsung,vbus-gpio: if present, specifies the GPIO that |
@@ -22,6 +24,9 @@ Example: | |||
22 | reg = <0x12110000 0x100>; | 24 | reg = <0x12110000 0x100>; |
23 | interrupts = <0 71 0>; | 25 | interrupts = <0 71 0>; |
24 | samsung,vbus-gpio = <&gpx2 6 1 3 3>; | 26 | samsung,vbus-gpio = <&gpx2 6 1 3 3>; |
27 | |||
28 | clocks = <&clock 285>; | ||
29 | clock-names = "usbhost"; | ||
25 | }; | 30 | }; |
26 | 31 | ||
27 | OHCI | 32 | OHCI |
@@ -31,10 +36,15 @@ Required properties: | |||
31 | - reg: physical base address of the controller and length of memory mapped | 36 | - reg: physical base address of the controller and length of memory mapped |
32 | region. | 37 | region. |
33 | - interrupts: interrupt number to the cpu. | 38 | - interrupts: interrupt number to the cpu. |
39 | - clocks: from common clock binding: handle to usb clock. | ||
40 | - clock-names: from common clock binding: Shall be "usbhost". | ||
34 | 41 | ||
35 | Example: | 42 | Example: |
36 | usb@12120000 { | 43 | usb@12120000 { |
37 | compatible = "samsung,exynos4210-ohci"; | 44 | compatible = "samsung,exynos4210-ohci"; |
38 | reg = <0x12120000 0x100>; | 45 | reg = <0x12120000 0x100>; |
39 | interrupts = <0 71 0>; | 46 | interrupts = <0 71 0>; |
47 | |||
48 | clocks = <&clock 285>; | ||
49 | clock-names = "usbhost"; | ||
40 | }; | 50 | }; |