diff options
| author | Patrice Chotard <[email protected]> | 2018-09-20 15:14:15 +0200 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2018-09-30 13:00:35 -0400 |
| commit | 95a077217b06cd8e4ad8cacb526bf430185dc0a3 (patch) | |
| tree | 8fd4614aeb46a25335a247478e11096e26bfc731 /drivers | |
| parent | 18f201ea207a28aa79d7a485a2dc7b643ec36a31 (diff) | |
serial: serial_stm32: Enable uart FIFO for STM32F7xx SoCs
Since commit 7b3b74d32127 ("serial: serial_stm32: Enable overrun")
on STM32F7xx based boards, the first lines of serial output are
missing during boot (we no more see the U-Boot release version,
board model and DRAM size).
By enabling the uart FIFO on STM32F7, the complete U-boot log
can be sent correctly.
Signed-off-by: Patrice Chotard <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/serial/serial_stm32.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/serial/serial_stm32.h b/drivers/serial/serial_stm32.h index ccafa31219a..5549f8c5368 100644 --- a/drivers/serial/serial_stm32.h +++ b/drivers/serial/serial_stm32.h @@ -37,7 +37,7 @@ struct stm32_uart_info stm32f4_info = { struct stm32_uart_info stm32f7_info = { .uart_enable_bit = 0, .stm32f4 = false, - .has_fifo = false, + .has_fifo = true, }; struct stm32_uart_info stm32h7_info = { |
