]> git.baikalelectronics.ru Git - uboot.git/commit
serial: ns16550: fix debug uart putc called before init
authorSimon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Thu, 9 Aug 2018 19:04:19 +0000 (21:04 +0200)
committerSimon Glass <sjg@chromium.org>
Wed, 14 Nov 2018 17:16:28 +0000 (09:16 -0800)
commitc0009e32e93ee6af9a1a74a39d053bc005c3e95a
treed6ab8dab8076d0dc5e7f7ad64b7d8dfb9be7a025
parent33e397d9a20c590d64b0e7eca035b67f679bd36e
serial: ns16550: fix debug uart putc called before init

If _debug_uart_putc() is called before _debug_uart_init(), the
ns16550 debug uart driver hangs in a tight loop waiting for the
tx FIFO to get empty.

As this can happen via a printf sneaking in before the port calls
debug_uart_init(), let's rather ignore characters before the debug
uart is initialized.

This is done by reading the baudrate divisor and aborting if is zero.

Tested on socfpga_cyclone5_socrates.

Signed-off-by: Simon Goldschmidt <simon.k.r.goldschmidt@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
drivers/serial/ns16550.c