From: Simon Glass Date: Tue, 25 Jul 2017 14:29:57 +0000 (-0600) Subject: tegra: spl: Enable debug UART X-Git-Tag: v2017.09-rc1~50 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=9b6b3c1b50bac5a1fe8870c2c19d62c118a79147;p=oweals%2Fu-boot.git tegra: spl: Enable debug UART Enable the debug UART in SPL to allow early serial output even if the standard UART does not work (e.g. due to driver model problem). Signed-off-by: Simon Glass Tested-by: Marcel Ziswiler Tested-on: Beaver, Jetson-TK1 Tested-by: Stephen Warren --- diff --git a/arch/arm/mach-tegra/spl.c b/arch/arm/mach-tegra/spl.c index 41c88cb2b4..189b3da026 100644 --- a/arch/arm/mach-tegra/spl.c +++ b/arch/arm/mach-tegra/spl.c @@ -7,6 +7,7 @@ * SPDX-License-Identifier: GPL-2.0+ */ #include +#include #include #include @@ -32,6 +33,9 @@ void spl_board_init(void) gpio_early_init_uart(); clock_early_init(); +#ifdef CONFIG_DEBUG_UART + debug_uart_init(); +#endif preloader_console_init(); }