From d896276d27bf688cdd3be9c76bff7efc4e4d80b6 Mon Sep 17 00:00:00 2001 From: Soeren Moch Date: Tue, 5 May 2015 23:09:18 +0200 Subject: 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: Soeren Moch --- board/tbs/tbs2910/tbs2910.c | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'board/tbs/tbs2910/tbs2910.c') diff --git a/board/tbs/tbs2910/tbs2910.c b/board/tbs/tbs2910/tbs2910.c index 42b166d..0b509b6 100644 --- a/board/tbs/tbs2910/tbs2910.c +++ b/board/tbs/tbs2910/tbs2910.c @@ -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 */ @@ -391,6 +397,10 @@ int board_init(void) #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; } -- cgit v1.1