[SCSI] Documentation/devicetree: Add DT bindings for UFS host controller
authorSujit Reddy Thumma <sthumma@codeaurora.org>
Tue, 14 May 2013 16:04:15 +0000 (21:34 +0530)
committerJames Bottomley <JBottomley@Parallels.com>
Tue, 4 Jun 2013 18:16:21 +0000 (11:16 -0700)
Compatible list is used in commit 03b1781 but is not documented.
Add necessary device tree bindings to describe on-chip UFS host
controllers.

Signed-off-by: Sujit Reddy Thumma <sthumma@codeaurora.org>
Signed-off-by: Santosh Y <santoshsy@gmail.com>
Signed-off-by: James Bottomley <JBottomley@Parallels.com>
Documentation/devicetree/bindings/ufs/ufshcd-pltfrm.txt [new file with mode: 0644]

diff --git a/Documentation/devicetree/bindings/ufs/ufshcd-pltfrm.txt b/Documentation/devicetree/bindings/ufs/ufshcd-pltfrm.txt
new file mode 100644 (file)
index 0000000..20468b2
--- /dev/null
@@ -0,0 +1,16 @@
+* Universal Flash Storage (UFS) Host Controller
+
+UFSHC nodes are defined to describe on-chip UFS host controllers.
+Each UFS controller instance should have its own node.
+
+Required properties:
+- compatible        : compatible list, contains "jedec,ufs-1.1"
+- interrupts        : <interrupt mapping for UFS host controller IRQ>
+- reg               : <registers mapping>
+
+Example:
+       ufshc@0xfc598000 {
+               compatible = "jedec,ufs-1.1";
+               reg = <0xfc598000 0x800>;
+               interrupts = <0 28 0>;
+       };