diff options
author | Jean-Jacques Hiblot <jjhiblot@ti.com> | 2019-01-22 16:48:17 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2019-02-01 09:09:40 -0500 |
commit | db34e0ede036f0abab95a4b60864ed799a7d0374 (patch) | |
tree | baf0c2b29b916ad3c5e88229680f828ee7be1567 /arch/arm/dts/am335x-evm-u-boot.dtsi | |
parent | 1c1464c2b19f1b96885040b8adc9cf5ba3c7b32d (diff) |
ARM: DTS: am335x-evm: Use USB0 in peripheral mode
This USB port is mainly used for RNDIS and DFU. To be able to use it with
DM_USB and DM_USB_GADGET, we need to provide a dr_mode value in the DTS.
Signed-off-by: Jean-Jacques Hiblot <jjhiblot@ti.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
Diffstat (limited to 'arch/arm/dts/am335x-evm-u-boot.dtsi')
-rw-r--r-- | arch/arm/dts/am335x-evm-u-boot.dtsi | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/arch/arm/dts/am335x-evm-u-boot.dtsi b/arch/arm/dts/am335x-evm-u-boot.dtsi index 0341600342..b6b97ed16d 100644 --- a/arch/arm/dts/am335x-evm-u-boot.dtsi +++ b/arch/arm/dts/am335x-evm-u-boot.dtsi @@ -7,3 +7,7 @@ &mmc3 { status = "disabled"; }; + +&usb0 { + dr_mode = "peripheral"; +}; |