diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-02-22 15:49:28 +0100 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2009-02-22 15:49:28 +0100 |
commit | 4f5728987f4f9f7845688482aa2b7f2127768165 (patch) | |
tree | e5ddb625e83ddaa8101528de0838f593f3fae318 /drivers/serial/Makefile | |
parent | 0cd18fa982f9a8c1a90ce971379a7d6408976d48 (diff) | |
download | u-boot-imx-4f5728987f4f9f7845688482aa2b7f2127768165.zip u-boot-imx-4f5728987f4f9f7845688482aa2b7f2127768165.tar.gz u-boot-imx-4f5728987f4f9f7845688482aa2b7f2127768165.tar.bz2 |
arm: add uart dcc support
Serial driver via the EmbeddedICE macrocell's DCC channel using
co-processor 14.
It does include a timeout to ensure that the system does not
totally freeze when there is nothing connected to read.
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'drivers/serial/Makefile')
-rw-r--r-- | drivers/serial/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/serial/Makefile b/drivers/serial/Makefile index 0f980ab..d0efd73 100644 --- a/drivers/serial/Makefile +++ b/drivers/serial/Makefile @@ -25,6 +25,7 @@ include $(TOPDIR)/config.mk LIB := $(obj)libserial.a +COBJS-$(CONFIG_ARM_DCC) += arm_dcc.o COBJS-$(CONFIG_ATMEL_USART) += atmel_usart.o COBJS-$(CONFIG_MCFUART) += mcfuart.o COBJS-$(CONFIG_NS9750_UART) += ns9750_serial.o |