aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/staging
diff options
context:
space:
mode:
authorMatthijs Kooijman <matthijs@stdin.nl>2013-04-22 14:00:19 -0700
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-04-23 10:37:55 -0700
commit5b9974b13e3648b6821a6d2aab408ce7cef60ce3 (patch)
tree0ac9b88705c1408a4f39b355f244f2235331adb1 /Documentation/devicetree/bindings/staging
parentstaging: dwc2: check for null pointer before dereferencing it (diff)
downloadlinux-dev-5b9974b13e3648b6821a6d2aab408ce7cef60ce3.tar.xz
linux-dev-5b9974b13e3648b6821a6d2aab408ce7cef60ce3.zip
staging: dwc2: add platform device bindings
This adds a dwc_platform.ko module that can be loaded by using compatible = "snps,dwc2" in a device tree. Signed-off-by: Matthijs Kooijman <matthijs@stdin.nl> Signed-off-by: Paul Zimmerman <paulz@synopsys.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'Documentation/devicetree/bindings/staging')
-rw-r--r--Documentation/devicetree/bindings/staging/dwc2.txt15
1 files changed, 15 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/staging/dwc2.txt b/Documentation/devicetree/bindings/staging/dwc2.txt
new file mode 100644
index 000000000000..1a1b7cfa4845
--- /dev/null
+++ b/Documentation/devicetree/bindings/staging/dwc2.txt
@@ -0,0 +1,15 @@
+Platform DesignWare HS OTG USB 2.0 controller
+-----------------------------------------------------
+
+Required properties:
+- compatible : "snps,dwc2"
+- reg : Should contain 1 register range (address and length)
+- interrupts : Should contain 1 interrupt
+
+Example:
+
+ usb@101c0000 {
+ compatible = "ralink,rt3050-usb, snps,dwc2";
+ reg = <0x101c0000 40000>;
+ interrupts = <18>;
+ };