Message ID | 20200129210602.14521-4-offougajoris@gmail.com |
---|---|
State | Accepted |
Commit | 41fe56e3ad81233fd3e4f7d2f52f18cd418e0892 |
Headers | show |
Series | [V2,1/4] warp7: Fix the pmic_get() parameter in the DM case | expand |
On Wed, Jan 29, 2020 at 6:06 PM Joris Offouga <offougajoris at gmail.com> wrote: > > Before: > => ums 0 mmc 0 > UMS: LUN 0, dev 0, hwpart 0, sector 0x0, count 0x1dacc00 > usb dr_mode not found > CTRL+C - Operation aborted > => dfu 0 mmc 0 > usb dr_mode not found > > After : > => ums 0 mmc 0 > UMS: LUN 0, dev 0, hwpart 0, sector 0x0, count 0x1dacc00 > => dfu 0 mmc 0 > > Signed-off-by: Joris Offouga <offougajoris at gmail.com> Reviewed-by: Fabio Estevam <festevam at gmail.com>
diff --git a/arch/arm/dts/imx7d-sdb-u-boot.dtsi b/arch/arm/dts/imx7d-sdb-u-boot.dtsi index 05dd74eee1..b78358fa13 100644 --- a/arch/arm/dts/imx7d-sdb-u-boot.dtsi +++ b/arch/arm/dts/imx7d-sdb-u-boot.dtsi @@ -1,3 +1,7 @@ &fec2 { status = "disable"; }; + +&usbotg1 { + dr_mode = "peripheral"; +};
Before: => ums 0 mmc 0 UMS: LUN 0, dev 0, hwpart 0, sector 0x0, count 0x1dacc00 usb dr_mode not found CTRL+C - Operation aborted => dfu 0 mmc 0 usb dr_mode not found After : => ums 0 mmc 0 UMS: LUN 0, dev 0, hwpart 0, sector 0x0, count 0x1dacc00 => dfu 0 mmc 0 Signed-off-by: Joris Offouga <offougajoris at gmail.com> --- changes v1->v2: none arch/arm/dts/imx7d-sdb-u-boot.dtsi | 4 ++++ 1 file changed, 4 insertions(+)