diff options
author | Guennadi Liakhovetski <lg@denx.de> | 2008-08-31 00:39:46 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-08-31 00:39:46 +0200 |
commit | 8262813ca04fc57f5d8856e1828085c136e0f1eb (patch) | |
tree | 522933b92c5c23808168761c2028427dc6ec9acf /cpu/arm1176/s3c64xx/Makefile | |
parent | 9b07773f8883665b002500c190507e9fd99b7181 (diff) | |
download | u-boot-imx-8262813ca04fc57f5d8856e1828085c136e0f1eb.zip u-boot-imx-8262813ca04fc57f5d8856e1828085c136e0f1eb.tar.gz u-boot-imx-8262813ca04fc57f5d8856e1828085c136e0f1eb.tar.bz2 |
USB: Add support for OHCI controller on S3C6400
Notice: USB on S3C6400 currently works _only_ with switched off MMU. One could
try to enable the MMU, but map addresses 1-to-1, and disable data cache, then
it should work too and we could still profit from instruction cache.
Signed-off-by: Guennadi Liakhovetski <lg@denx.de>
Diffstat (limited to 'cpu/arm1176/s3c64xx/Makefile')
-rw-r--r-- | cpu/arm1176/s3c64xx/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cpu/arm1176/s3c64xx/Makefile b/cpu/arm1176/s3c64xx/Makefile index fa4ee3f..4ab1811 100644 --- a/cpu/arm1176/s3c64xx/Makefile +++ b/cpu/arm1176/s3c64xx/Makefile @@ -30,6 +30,7 @@ LIB = $(obj)lib$(SOC).a COBJS-y = interrupts.o COBJS-$(CONFIG_S3C6400) += cpu_init.o speed.o +COBJS-$(CONFIG_USB_OHCI_NEW) += usb.o OBJS := $(addprefix $(obj),$(SOBJS) $(COBJS-y)) |