aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/devicetree/bindings/usb/usb-phy.txt
diff options
context:
space:
mode:
authorKishon Vijay Abraham I <kishon@ti.com>2012-09-06 20:27:06 +0530
committerFelipe Balbi <balbi@ti.com>2012-09-06 20:14:53 +0300
commit657b306a7bdfca4ae1514b533a0e7c3c6d26dbc6 (patch)
tree37862b7feec66ad89ca111ed88662fedb122698e /Documentation/devicetree/bindings/usb/usb-phy.txt
parentusb: phy: fix build break (diff)
downloadlinux-dev-657b306a7bdfca4ae1514b533a0e7c3c6d26dbc6.tar.xz
linux-dev-657b306a7bdfca4ae1514b533a0e7c3c6d26dbc6.zip
usb: phy: add a new driver for omap usb2 phy
All phy related programming like enabling/disabling the clocks, powering on/off the phy is taken care of by this driver. It is also used for OTG related functionality like srp. This also includes device tree support for usb2 phy driver and the documentation with device tree binding information is updated. Currently writing to control module register is taken care in this driver which will be removed once the control module driver is in place. Cc: Felipe Balbi <balbi@ti.com> Signed-off-by: Kishon Vijay Abraham I <kishon@ti.com> Signed-off-by: Felipe Balbi <balbi@ti.com>
Diffstat (limited to 'Documentation/devicetree/bindings/usb/usb-phy.txt')
-rw-r--r--Documentation/devicetree/bindings/usb/usb-phy.txt17
1 files changed, 17 insertions, 0 deletions
diff --git a/Documentation/devicetree/bindings/usb/usb-phy.txt b/Documentation/devicetree/bindings/usb/usb-phy.txt
new file mode 100644
index 000000000000..80d4148cb661
--- /dev/null
+++ b/Documentation/devicetree/bindings/usb/usb-phy.txt
@@ -0,0 +1,17 @@
+USB PHY
+
+OMAP USB2 PHY
+
+Required properties:
+ - compatible: Should be "ti,omap-usb2"
+ - reg : Address and length of the register set for the device. Also
+add the address of control module dev conf register until a driver for
+control module is added
+
+This is usually a subnode of ocp2scp to which it is connected.
+
+usb2phy@4a0ad080 {
+ compatible = "ti,omap-usb2";
+ reg = <0x4a0ad080 0x58>,
+ <0x4a002300 0x4>;
+};