diff mbox

[RFC,v3,2/3] Documentation: Add Spreadtrum MMC DT bindings.

Message ID 1439571353-30165-3-git-send-email-wuht06@gmail.com
State Under Review, archived
Headers show

Commit Message

Hongtao Wu Aug. 14, 2015, 4:55 p.m. UTC
The bindings is used to interpret Spreadtrum MMC dts file.

Signed-off-by: Billows Wu(WuHongtao) <wuht06@gmail.com>
---
 Documentation/devicetree/bindings/mmc/sprd-mmc.txt |   46 ++++++++++++++++++++
 1 file changed, 46 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/mmc/sprd-mmc.txt

--
1.7.9.5

--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
diff mbox

Patch

diff --git a/Documentation/devicetree/bindings/mmc/sprd-mmc.txt b/Documentation/devicetree/bindings/mmc/sprd-mmc.txt
new file mode 100644
index 0000000..9603059
--- /dev/null
+++ b/Documentation/devicetree/bindings/mmc/sprd-mmc.txt
@@ -0,0 +1,46 @@ 
+* Spreadtrum MMC Host Controller
+
+The Spreadtrum MMC Host Controller provides an interface for MMC, SD, and SDIO
+types of memory cards. This file documents differences between the core
+properties described by mmc.txt and the properties used by the Spreadtrum MMC
+driver.
+
+Required properties:
+- compatible:
+ should be "sprd,sdhost-3.0": in order to compatible with MMC controller
+ version
+- reg: Registers location and length
+- interrupts: exactly one interrupt specifier
+- clocks: phandle to input clocks
+
+Optional properties:
+- cd-gpios: specify GPIOs for card detection, see gpio binding
+- vmmc-supply: phandle to input sdio core voltage
+- vqmmc-supply: phandle to input sdio signal voltage
+
+*NOTE*
+- The following properties are defined by spreadtrum. They are not standard
+ properties of SDIO.
+- sprd,name: The name of the MMC device. For Example, "emmc", "wifi" and "sd".
+  The capabilities of different MMC device can be set by this property in
+  spreadtrum MMC host driver.
+- sprd,delay: This property value that obtained by hardware testing are fixed.
+ prop-encoded-array <wr-dl rd-pos-dl rd-neg-dl> where:
+    * wr-dl is the delay value between sdio clock signal and data write in
+        milliseconds
+    * rd-pos-dl is the delay value between sdio clock signal and posedge data
+        read in milliseconds
+    * rd-neg-dl is the delay value between sdio clock signal and negedge data
+        read in milliseconds
+
+Example:
+
+sdio0@abc0000 {
+    compatible  = "sprd,sdhost-3.0";
+    reg = <0 0xabc00000 0 0x1000>;
+    interrupts = <GIC_SPI 60 IRQ_TYPE_LEVEL_HIGH>;
+    vmmc-supply = <&vddemmccore>;
+    vqmmc-supply = <&vddgen0>;
+    clocks = <&ext_192m>;
+    sprd,delay = <0x3 0xa 0xa>;
+};