Kishon Vijay Abraham I | 657b306 | 2012-09-06 20:27:06 +0530 | [diff] [blame] | 1 | USB PHY |
| 2 | |
| 3 | OMAP USB2 PHY |
| 4 | |
| 5 | Required properties: |
| 6 | - compatible: Should be "ti,omap-usb2" |
Kishon Vijay Abraham I | ca784be | 2013-01-25 15:54:00 +0530 | [diff] [blame] | 7 | - reg : Address and length of the register set for the device. |
Kishon Vijay Abraham I | 657b306 | 2012-09-06 20:27:06 +0530 | [diff] [blame] | 8 | |
Kishon Vijay Abraham I | 01658f0 | 2013-01-25 15:53:57 +0530 | [diff] [blame] | 9 | Optional properties: |
| 10 | - ctrl-module : phandle of the control module used by PHY driver to power on |
| 11 | the PHY. |
| 12 | |
Kishon Vijay Abraham I | 657b306 | 2012-09-06 20:27:06 +0530 | [diff] [blame] | 13 | This is usually a subnode of ocp2scp to which it is connected. |
| 14 | |
| 15 | usb2phy@4a0ad080 { |
| 16 | compatible = "ti,omap-usb2"; |
Kishon Vijay Abraham I | ca784be | 2013-01-25 15:54:00 +0530 | [diff] [blame] | 17 | reg = <0x4a0ad080 0x58>; |
Kishon Vijay Abraham I | 01658f0 | 2013-01-25 15:53:57 +0530 | [diff] [blame] | 18 | ctrl-module = <&omap_control_usb>; |
Kishon Vijay Abraham I | 657b306 | 2012-09-06 20:27:06 +0530 | [diff] [blame] | 19 | }; |
Kishon Vijay Abraham I | 57f6ce0 | 2013-01-25 08:21:48 +0530 | [diff] [blame^] | 20 | |
| 21 | OMAP USB3 PHY |
| 22 | |
| 23 | Required properties: |
| 24 | - compatible: Should be "ti,omap-usb3" |
| 25 | - reg : Address and length of the register set for the device. |
| 26 | - reg-names: The names of the register addresses corresponding to the registers |
| 27 | filled in "reg". |
| 28 | |
| 29 | Optional properties: |
| 30 | - ctrl-module : phandle of the control module used by PHY driver to power on |
| 31 | the PHY. |
| 32 | |
| 33 | This is usually a subnode of ocp2scp to which it is connected. |
| 34 | |
| 35 | usb3phy@4a084400 { |
| 36 | compatible = "ti,omap-usb3"; |
| 37 | reg = <0x4a084400 0x80>, |
| 38 | <0x4a084800 0x64>, |
| 39 | <0x4a084c00 0x40>; |
| 40 | reg-names = "phy_rx", "phy_tx", "pll_ctrl"; |
| 41 | ctrl-module = <&omap_control_usb>; |
| 42 | }; |