Skip to content
Snippets Groups Projects
Commit d896276d authored by Soeren Moch's avatar Soeren Moch Committed by Stefano Babic
Browse files

tbs2910: support for usb otg host mode


Add support for USB OTG host mode. Only high speed devices supported so far
(e.g. usb 2.0 hub required to connect a keyboard).

Signed-off-by: default avatarSoeren Moch <smoch@web.de>
parent e719cdde
No related branches found
No related tags found
No related merge requests found
......@@ -372,6 +372,12 @@ static const struct boot_mode board_boot_modes[] = {
};
#endif
#ifdef CONFIG_USB_EHCI_MX6
static iomux_v3_cfg_t const usb_otg_pads[] = {
MX6_PAD_ENET_RX_ER__USB_OTG_ID | MUX_PAD_CTRL(NO_PAD_CTRL),
};
#endif
int board_init(void)
{
/* address of boot parameters */
......@@ -390,6 +396,10 @@ int board_init(void)
#endif
#ifdef CONFIG_CMD_BMODE
add_board_boot_modes(board_boot_modes);
#endif
#ifdef CONFIG_USB_EHCI_MX6
imx_iomux_v3_setup_multiple_pads(
usb_otg_pads, ARRAY_SIZE(usb_otg_pads));
#endif
return 0;
}
......
......@@ -163,6 +163,7 @@
#define CONFIG_USB_EHCI
#define CONFIG_USB_EHCI_MX6
#define CONFIG_USB_MAX_CONTROLLER_COUNT 2
#define CONFIG_EHCI_HCD_INIT_AFTER_RESET
#define CONFIG_MXC_USB_PORTSC (PORT_PTS_UTMI | PORT_PTS_PTW)
#define CONFIG_USB_STORAGE
#define CONFIG_CMD_USB_MASS_STORAGE
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment