diff options
| author | Linus Walleij <[email protected]> | 2011-10-02 11:52:52 +0000 |
|---|---|---|
| committer | Wolfgang Denk <[email protected]> | 2011-10-22 00:42:04 +0200 |
| commit | 96baa4c37695b4dac2bde981f59c38e7af19f2eb (patch) | |
| tree | 4c9c24511165b0571d8ac9579a982ba03483fd1e /drivers | |
| parent | 349e83f071e2bf7bd9fec50377bbdcfb1a143666 (diff) | |
serial: pl01x: drain PL01x FIFO before baudrate change
Not draining the FIFO and waiting for the UART to be non-busy
before changing baudrate results in crap characters on the
console, so let's wait for the FIFO to drain and the last
character to be clocked out before we do that.
Signed-off-by: Linus Walleij <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/serial/serial_pl01x.c | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/drivers/serial/serial_pl01x.c b/drivers/serial/serial_pl01x.c index 7a064ffb24d..ed581ae22bf 100644 --- a/drivers/serial/serial_pl01x.c +++ b/drivers/serial/serial_pl01x.c @@ -194,7 +194,17 @@ int serial_tstc (void) void serial_setbrg (void) { + struct pl01x_regs *regs = pl01x_get_regs(CONSOLE_PORT); + baudrate = gd->baudrate; + /* + * Flush FIFO and wait for non-busy before changing baudrate to avoid + * crap in console + */ + while (!(readl(®s->fr) & UART_PL01x_FR_TXFE)) + WATCHDOG_RESET(); + while (readl(®s->fr) & UART_PL01x_FR_BUSY) + WATCHDOG_RESET(); serial_init(); } |
