mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
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 <smoch@web.de>
This commit is contained in:
parent
e719cdde3c
commit
d896276d27
2 changed files with 11 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue