aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings
diff options
context:
space:
mode:
authorTim Kryger <tim.kryger@linaro.org>2013-12-05 14:20:39 -0500
committerChristian Daudt <bcm@fixthebug.org>2013-12-23 02:45:32 -0500
commit7d6afbd6e6730be2587690402b469839c420957e (patch)
tree7069d31adc084149895d0b6f3daa4077aa368d4a /Documentation/devicetree/bindings
parent740309b6dc9faa6b3c8f7dcd1fac63eae1ee1709 (diff)
Documentation: dt: kona-sdhci: Add clocks property
The Kona SDHCI block requires a clock that must be specified in the device tree. Update the documentation to reflect this requirement. Signed-off-by: Tim Kryger <tim.kryger@linaro.org> Reviewed-by: Matt Porter <matt.porter@linaro.org> Signed-off-by: Christian Daudt <bcm@fixthebug.org>
Diffstat (limited to 'Documentation/devicetree/bindings')
-rw-r--r--Documentation/devicetree/bindings/mmc/kona-sdhci.txt4
1 files changed, 4 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/mmc/kona-sdhci.txt b/Documentation/devicetree/bindings/mmc/kona-sdhci.txt
index 789fb07a426d..aaba2483b4ff 100644
--- a/Documentation/devicetree/bindings/mmc/kona-sdhci.txt
+++ b/Documentation/devicetree/bindings/mmc/kona-sdhci.txt
@@ -6,12 +6,16 @@ and the properties present in the bcm281xx SDHCI
6Required properties: 6Required properties:
7- compatible : Should be "brcm,kona-sdhci" 7- compatible : Should be "brcm,kona-sdhci"
8- DEPRECATED: compatible : Should be "bcm,kona-sdhci" 8- DEPRECATED: compatible : Should be "bcm,kona-sdhci"
9- clocks: phandle + clock specifier pair of the external clock
10
11Refer to clocks/clock-bindings.txt for generic clock consumer properties.
9 12
10Example: 13Example:
11 14
12sdio2: sdio@0x3f1a0000 { 15sdio2: sdio@0x3f1a0000 {
13 compatible = "brcm,kona-sdhci"; 16 compatible = "brcm,kona-sdhci";
14 reg = <0x3f1a0000 0x10000>; 17 reg = <0x3f1a0000 0x10000>;
18 clocks = <&sdio3_clk>;
15 interrupts = <0x0 74 0x4>; 19 interrupts = <0x0 74 0x4>;
16}; 20};
17 21