diff options
author | Bo Shen <voice.shen@atmel.com> | 2012-06-27 21:58:20 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-07-07 14:07:29 +0200 |
commit | cc30b7803d3a3237fbcef860b9320e9b4bfbffaf (patch) | |
tree | 2c473dad00bbe3f8797d2e19260c3579bbe67363 /drivers/usb/host/Makefile | |
parent | 5e7d0917b644e1768ddfdeb1fa5822dc7c974fa4 (diff) | |
download | u-boot-imx-cc30b7803d3a3237fbcef860b9320e9b4bfbffaf.zip u-boot-imx-cc30b7803d3a3237fbcef860b9320e9b4bfbffaf.tar.gz u-boot-imx-cc30b7803d3a3237fbcef860b9320e9b4bfbffaf.tar.bz2 |
Atmel : usb : add EHCI driver for Atmel SoC
Some Atmel SoC support USB EHCI, add the EHCI driver to support it.
To enable the USB EHCI, add the following configuration options into
board relative configuration file and remove USB OHCI options.
#define CONFIG_USB_EHCI
#define CONFIG_USB_EHCI_ATMEL
#define CONFIG_SYS_USB_EHCI_MAX_ROOT_PORTS 2
Signed-off-by: Bo Shen <voice.shen@atmel.com>
Acked-by: Marek Vasut <marex@denx.de>
Signed-off-by: Andreas Bießmann <andreas.devel@googlemail.com>
Diffstat (limited to 'drivers/usb/host/Makefile')
-rw-r--r-- | drivers/usb/host/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/usb/host/Makefile b/drivers/usb/host/Makefile index 59c3e57..4547f37 100644 --- a/drivers/usb/host/Makefile +++ b/drivers/usb/host/Makefile @@ -36,6 +36,7 @@ COBJS-$(CONFIG_USB_SL811HS) += sl811-hcd.o # echi COBJS-$(CONFIG_USB_EHCI) += ehci-hcd.o COBJS-$(CONFIG_USB_EHCI_ARMADA100) += ehci-armada100.o utmi-armada100.o +COBJS-$(CONFIG_USB_EHCI_ATMEL) += ehci-atmel.o ifdef CONFIG_MPC512X COBJS-$(CONFIG_USB_EHCI_FSL) += ehci-mpc512x.o else |