This thread has been locked.

If you have a related question, please click the "Ask a related question" button in the top right corner. The newly created question will be automatically linked to this question.

Linux/PROCESSOR-SDK-AM437X: USB0 use for mass storage

Part Number: PROCESSOR-SDK-AM437X

Tool/software: Linux

Hello!

I want to use the AM437x board as a mass storage device (our board is based on AM437x-sk-evm).
It looks like a USB memory stick.
So I found the dts file on the AM437x sdk and looked for the USB0 port.
But there is no USB0 port, only information about USB1 and USB2.

USB1 is OTG and USB2 is HOST.
But I want to use it as a mass storage device.
How do I set it up and what ports should I use?

(Our board uses SD card booting and will use SD card as mass storage device.)
SDcard (Storage) -> usb0 port -> pc

usb1{
dr_mode = "otg";
status = "okay";
...
}
usb2{
dr_mode = "host";
status = "okay";
...
}

help me plz.......