mmc: DT: sdhci-brcmstb: Add device tree bindings
authorAl Cooper <alcooperx@gmail.com>
Thu, 16 Jun 2016 16:47:17 +0000 (12:47 -0400)
committerUlf Hansson <ulf.hansson@linaro.org>
Mon, 25 Jul 2016 08:34:13 +0000 (10:34 +0200)
The example includes the properties required to enable UHS modes.

Signed-off-by: Al Cooper <alcooperx@gmail.com>
Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
Documentation/devicetree/bindings/mmc/brcm,bcm7425-sdhci.txt [new file with mode: 0644]

diff --git a/Documentation/devicetree/bindings/mmc/brcm,bcm7425-sdhci.txt b/Documentation/devicetree/bindings/mmc/brcm,bcm7425-sdhci.txt
new file mode 100644 (file)
index 0000000..8284717
--- /dev/null
@@ -0,0 +1,36 @@
+* BROADCOM BRCMSTB/BMIPS SDHCI Controller
+
+This file documents differences between the core properties in mmc.txt
+and the properties used by the sdhci-brcmstb driver.
+
+NOTE: The driver disables all UHS speed modes by default and depends
+on Device Tree properties to enable them for SoC/Board combinations
+that support them.
+
+Required properties:
+- compatible: "brcm,bcm7425-sdhci"
+
+Refer to clocks/clock-bindings.txt for generic clock consumer properties.
+
+Example:
+
+       sdhci@f03e0100 {
+               compatible = "brcm,bcm7425-sdhci";
+               reg = <0xf03e0000 0x100>;
+               interrupts = <0x0 0x26 0x0>;
+               sdhci,auto-cmd12;
+               clocks = <&sw_sdio>;
+               sd-uhs-sdr50;
+               sd-uhs-ddr50;
+       };
+
+       sdhci@f03e0300 {
+               non-removable;
+               bus-width = <0x8>;
+               compatible = "brcm,bcm7425-sdhci";
+               reg = <0xf03e0200 0x100>;
+               interrupts = <0x0 0x27 0x0>;
+               sdhci,auto-cmd12;
+               clocks = <sw_sdio>;
+               mmc-hs200-1_8v;
+       };