Part Number: AM5728
our custom board with AM5728 use USB 2.0 as host.
To configure the USB 2.0 as host in u-boot 2017.01 we had to do the following
- replace CONFIG_OMAP_USB3PHY1_HOST with CONFIG_OMAP_USB2PHY2_HOST in our include/configs/board.h
- modify xhci-omap.h to apply the following define
#define OMAP_XHCI_BASE 0x488d0000
#define OMAP_OCP1_SCP_BASE 0x4A081000
#define OMAP_OTG_WRAPPER_BASE 0x488c0000
but I realized that this does not apply anymore for u-boot 2019.01 as the usb_init is done through usb-class.c instead of omap_usb_phy.c.
My question is how to configure USB 2.0 as host in u-boot 2019.01 (processor sdk 06.01)?
regards,