diff options
author | Mathieu J. Poirier <mathieu.poirier@linaro.org> | 2012-08-03 11:05:12 +0000 |
---|---|---|
committer | Albert ARIBAUD <albert.u.boot@aribaud.net> | 2012-09-01 14:58:19 +0200 |
commit | 84dee301c30d728f97c85f795661804980fb0c77 (patch) | |
tree | 272531d48c7393233c38f3a9b3c0fdbd6ff1d4bf /drivers/serial | |
parent | 77bfa6b4361e72529742ce36693a2adab66890a6 (diff) | |
download | u-boot-imx-84dee301c30d728f97c85f795661804980fb0c77.zip u-boot-imx-84dee301c30d728f97c85f795661804980fb0c77.tar.gz u-boot-imx-84dee301c30d728f97c85f795661804980fb0c77.tar.bz2 |
snowball: Add support for ux500 based snowball board
Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
Signed-off-by: John Rigby <john.rigby@linaro.org>
Acked-by: Tom Rini <trini@ti.com>
Acked-by: Linus Walleij <linus.walleij@linaro.org>
Conflicts:
drivers/gpio/Makefile
Diffstat (limited to 'drivers/serial')
-rw-r--r-- | drivers/serial/serial_pl01x.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/drivers/serial/serial_pl01x.c b/drivers/serial/serial_pl01x.c index ed581ae..d4c5137 100644 --- a/drivers/serial/serial_pl01x.c +++ b/drivers/serial/serial_pl01x.c @@ -156,6 +156,8 @@ int serial_init (void) writel(lcr, ®s->fr); writel(lcr, ®s->pl011_rlcr); + /* lcrh needs to be set again for change to be effective */ + writel(lcr, ®s->pl011_lcrh); } #endif /* Finally, enable the UART */ |