From: Meng Dongyang Date: Wed, 17 May 2017 10:21:45 +0000 (+0800) Subject: configs: rk3328: add support for usb and config ehci and ohci driver X-Git-Tag: v2017.07-rc2~80^2~45 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=d16f514d8c7dfe7da86bfa1da6e4b7215d9eee44;p=u-boot configs: rk3328: add support for usb and config ehci and ohci driver Add defconfig for usb and ehci and ohci controller, config maximal number of ports of the root hub for ohci driver. Signed-off-by: Meng Dongyang Reviewed-by: Simon Glass --- diff --git a/configs/evb-rk3328_defconfig b/configs/evb-rk3328_defconfig index 96241f6f9b..a4312b27f2 100644 --- a/configs/evb-rk3328_defconfig +++ b/configs/evb-rk3328_defconfig @@ -31,3 +31,11 @@ CONFIG_SYS_NS16550=y CONFIG_SYSRESET=y CONFIG_USE_TINY_PRINTF=y CONFIG_ERRNO_STR=y +CONFIG_USB=y +CONFIG_DM_USB=y +CONFIG_CMD_USB=y +CONFIG_USB_STORAGE=y +CONFIG_USB_EHCI_HCD=y +CONFIG_USB_EHCI_GENERIC=y +CONFIG_USB_OHCI_HCD=y +CONFIG_USB_OHCI_GENERIC=y diff --git a/include/configs/rk3328_common.h b/include/configs/rk3328_common.h index 7ccbc9b241..9cfeab8182 100644 --- a/include/configs/rk3328_common.h +++ b/include/configs/rk3328_common.h @@ -59,4 +59,7 @@ #endif +/* rockchip ohci host driver */ +#define CONFIG_USB_OHCI_NEW +#define CONFIG_SYS_USB_OHCI_MAX_ROOT_PORTS 1 #endif