ARM: tegra: Add usb-role-switch property to USB OTG ports
If an USB port is an OTG port, then we should add the usb-role-switch property. Otherwise XUSB setup fails and therefore padctl is unable to set up the ports. This leads to broken USB and PCIe ports. Add the usb-role-switch properties to Tegra124 device-trees to fix the problem. The error message shown without this patch is e.g: usb2-0: usb-role-switch not found for otg mode [digetx@gmail.com: improved commit message] Tested-by: Thomas Graichen <thomas.graichen@gmail.com> # T124 Nyan Big Signed-off-by: Stefan Eichenberger <stefan.eichenberger@toradex.com> Signed-off-by: Dmitry Osipenko <digetx@gmail.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
This commit is contained in:
parent
ef6fb9875c
commit
e6fd5c1e9f
|
@ -1888,6 +1888,7 @@
|
|||
usb2-0 {
|
||||
status = "okay";
|
||||
mode = "otg";
|
||||
usb-role-switch;
|
||||
vbus-supply = <®_usbo1_vbus>;
|
||||
};
|
||||
|
||||
|
|
|
@ -1880,6 +1880,7 @@
|
|||
usb2-0 {
|
||||
status = "okay";
|
||||
mode = "otg";
|
||||
usb-role-switch;
|
||||
vbus-supply = <®_usbo1_vbus>;
|
||||
};
|
||||
|
||||
|
|
|
@ -466,6 +466,7 @@
|
|||
vbus-supply = <&vdd_usb1_vbus>;
|
||||
status = "okay";
|
||||
mode = "otg";
|
||||
usb-role-switch;
|
||||
};
|
||||
|
||||
usb2-1 {
|
||||
|
|
|
@ -973,7 +973,7 @@
|
|||
usb2-0 {
|
||||
status = "okay";
|
||||
mode = "otg";
|
||||
|
||||
usb-role-switch;
|
||||
vbus-supply = <&vdd_usb1_vbus>;
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in New Issue