mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-02-17 22:49:02 +00:00
apalis_imx6: migrate usb to using driver model
Migrate USB to using driver model. Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
This commit is contained in:
parent
72b49e2c1e
commit
9fb4b8929a
2 changed files with 1 additions and 22 deletions
|
@ -271,28 +271,6 @@ int board_ehci_hcd_init(int port)
|
|||
imx_iomux_v3_setup_multiple_pads(usb_pads, ARRAY_SIZE(usb_pads));
|
||||
return 0;
|
||||
}
|
||||
|
||||
int board_ehci_power(int port, int on)
|
||||
{
|
||||
switch (port) {
|
||||
case 0:
|
||||
/* control OTG power */
|
||||
gpio_direction_output(GPIO_USBO_EN, on);
|
||||
mdelay(100);
|
||||
break;
|
||||
case 1:
|
||||
/* Control MXM USBH */
|
||||
gpio_direction_output(GPIO_USBH_EN, on);
|
||||
mdelay(2);
|
||||
/* Control onboard USB Hub VBUS */
|
||||
gpio_direction_output(GPIO_USB_VBUS_DET, on);
|
||||
mdelay(100);
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
#endif
|
||||
|
||||
#if defined(CONFIG_FSL_ESDHC) && defined(CONFIG_SPL_BUILD)
|
||||
|
|
|
@ -72,6 +72,7 @@ CONFIG_DM_REGULATOR_FIXED=y
|
|||
CONFIG_DM_SCSI=y
|
||||
CONFIG_IMX_THERMAL=y
|
||||
CONFIG_USB=y
|
||||
CONFIG_DM_USB=y
|
||||
CONFIG_USB_KEYBOARD=y
|
||||
CONFIG_USB_GADGET=y
|
||||
CONFIG_USB_GADGET_MANUFACTURER="Toradex"
|
||||
|
|
Loading…
Add table
Reference in a new issue