]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
usb: chipidea: msm: Add device tree binding information
authorIvan T. Ivanov <iivanov@mm-sol.com>
Sun, 4 May 2014 01:24:40 +0000 (09:24 +0800)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 23 May 2014 02:36:44 +0000 (11:36 +0900)
Document device tree binding information as required by
the Qualcomm USB controller.

Signed-off-by: Peter Chen <peter.chen@freescale.com>
Signed-off-by: Ivan T. Ivanov <iivanov@mm-sol.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Documentation/devicetree/bindings/usb/ci-hdrc-qcom.txt [new file with mode: 0644]

diff --git a/Documentation/devicetree/bindings/usb/ci-hdrc-qcom.txt b/Documentation/devicetree/bindings/usb/ci-hdrc-qcom.txt
new file mode 100644 (file)
index 0000000..f2899b5
--- /dev/null
@@ -0,0 +1,17 @@
+Qualcomm CI13xxx (Chipidea) USB controllers
+
+Required properties:
+- compatible:   should contain "qcom,ci-hdrc"
+- reg:          offset and length of the register set in the memory map
+- interrupts:   interrupt-specifier for the controller interrupt.
+- usb-phy:      phandle for the PHY device
+- dr_mode:      Should be "peripheral"
+
+Examples:
+       gadget@f9a55000 {
+               compatible = "qcom,ci-hdrc";
+               reg = <0xf9a55000 0x400>;
+               dr_mode = "peripheral";
+               interrupts = <0 134 0>;
+               usb-phy = <&usbphy0>;
+       };