mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 15:37:23 +00:00
usb: dwc3-meson-g12a: always configure dr-mode
dwc3_meson_g12a_force_mode() sets the dr-mode of the USB PHY. However it skips setting the mode if it matches the one done during driver probe (stored in private structure). This fails if the mode has been changed to other value and then back to initial one. Fix this by configuring the dr-mode always, regadless of the one set at the driver probe). This fixes operation of USB gadget based drivers when they are initialized for the second time. Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com> Acked-by: Neil Armstrong <narmstrong@baylibre.com> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
This commit is contained in:
parent
5a1a8a63be
commit
5c88b6ad40
1 changed files with 0 additions and 3 deletions
|
@ -269,9 +269,6 @@ int dwc3_meson_g12a_force_mode(struct udevice *dev, enum usb_dr_mode mode)
|
||||||
if (!priv->phys[USB2_OTG_PHY].dev)
|
if (!priv->phys[USB2_OTG_PHY].dev)
|
||||||
return -EINVAL;
|
return -EINVAL;
|
||||||
|
|
||||||
if (mode == priv->otg_mode)
|
|
||||||
return 0;
|
|
||||||
|
|
||||||
if (mode == USB_DR_MODE_HOST)
|
if (mode == USB_DR_MODE_HOST)
|
||||||
debug("%s: switching to Host Mode\n", __func__);
|
debug("%s: switching to Host Mode\n", __func__);
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue