mirror of
https://github.com/torvalds/linux.git
synced 2024-12-25 12:21:37 +00:00
657b306a7b
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>
18 lines
417 B
Plaintext
18 lines
417 B
Plaintext
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>;
|
|
};
|