diff options
author | Peter Chubb <peter.chubb@nicta.com.au> | 2012-07-04 10:43:33 +0000 |
---|---|---|
committer | Peter Maydell <peter.maydell@linaro.org> | 2012-07-04 10:43:33 +0000 |
commit | 40b6f91151e7538ffeec5316300030140b09c16c (patch) | |
tree | daaa738df2238c65094146bda6eb2ed569a8089b /hw/arm | |
parent | 7bdf43a7538f3c198338e41255fdbe1a851f2203 (diff) | |
download | qemu-40b6f91151e7538ffeec5316300030140b09c16c.tar.gz qemu-40b6f91151e7538ffeec5316300030140b09c16c.tar.bz2 qemu-40b6f91151e7538ffeec5316300030140b09c16c.zip |
i.MX: UART support
Implement the Freescale i.MX UART. This uart is used in a variety of
SoCs, including some by Motorola, as well as in the Freescale i.MX
series.
This patch gives only a `bare-bones' implementation, enough to run Linux
or OKL4, but that's about it.
Signed-off-by: Philip O'Sullivan <philipo@ok-labs.com>
Signed-off-by: Peter Chubb <peter.chubb@nicta.com.au>
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Diffstat (limited to 'hw/arm')
-rw-r--r-- | hw/arm/Makefile.objs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/hw/arm/Makefile.objs b/hw/arm/Makefile.objs index 0fdb8329e6..2f8ff9a514 100644 --- a/hw/arm/Makefile.objs +++ b/hw/arm/Makefile.objs @@ -35,6 +35,7 @@ obj-y += framebuffer.o obj-y += vexpress.o obj-y += strongarm.o obj-y += collie.o +obj-y += imx_serial.o obj-y += pl041.o lm4549.o obj-$(CONFIG_FDT) += ../device_tree.o |