serial: ns16550: Wait in debug_uart_init until tx buffer is empty
authorPali Rohár <pali@kernel.org>
Thu, 23 Jun 2022 12:13:56 +0000 (14:13 +0200)
committerTom Rini <trini@konsulko.com>
Fri, 8 Jul 2022 16:20:04 +0000 (12:20 -0400)
commit5e998b4de33fed22da29e3a12e2856f9c00eaebc
tree3f76eaf62451545457bb1d23b19d2184494426ae
parente3812b5b083e39f3dd11009579cc7d44008adaf5
serial: ns16550: Wait in debug_uart_init until tx buffer is empty

Commit d293759d55cc ("serial: ns16550: Add support for
SPL_DEBUG_UART_BASE") fixed support for setting correct early debug UART
base address in SPL.

But after this commit, output from Marvell A385 BootROM is truncated or
lost and not fully present on serial console.

Debugging this issue showed that BootROM just put bytes into UART HW output
buffer and does not wait until UART HW transmit all characters. U-Boot
ns16550 early debug is initialized very early and during its initialization
is resetting UART HW and flushing remaining transmit buffer (which still
contains BootROM output).

Fix this issue by waiting in init function prior resetting UART HW until
TxEmpty bit in UART Line Status Register is set. TxEmpty is set when all
remaining bytes from HW buffer are transmitted.

Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Stefan Roese <sr@denx.de>
[trini: Add comment, move ';' to new line per checkpatch.pl]
Signed-off-by: Tom Rini <trini@konsulko.com>
drivers/serial/ns16550.c