Commit d9f50074 authored by vikram pandita's avatar vikram pandita Committed by Tony Lindgren

omap: introduce OMAP_LL_DEBUG_NONE DEBUG_LL config

Zoom2/Zoom3 kind of boards do not use omap uarts for console.
These use external debug board for console.

So these boards should not have "Uncompressing Kernel...."
log put on omap uarts.

By interoducing OMAP_LL_DEBUG_NONE option,
unnecessary writes to omap uarts is avoided.

In future, the DEBUG_LL interface will be enhanced
to use external debug board.
Signed-off-by: default avatarVikram Pandita <vikram.pandita@ti.com>
Signed-off-by: default avatarTony Lindgren <tony@atomide.com>
parent 9d30b99f
...@@ -165,7 +165,7 @@ config OMAP_DM_TIMER ...@@ -165,7 +165,7 @@ config OMAP_DM_TIMER
choice choice
prompt "Low-level debug console UART" prompt "Low-level debug console UART"
depends on ARCH_OMAP depends on ARCH_OMAP
default OMAP_LL_DEBUG_UART1 default OMAP_LL_DEBUG_NONE
config OMAP_LL_DEBUG_UART1 config OMAP_LL_DEBUG_UART1
bool "UART1" bool "UART1"
...@@ -176,6 +176,9 @@ config OMAP_LL_DEBUG_UART2 ...@@ -176,6 +176,9 @@ config OMAP_LL_DEBUG_UART2
config OMAP_LL_DEBUG_UART3 config OMAP_LL_DEBUG_UART3
bool "UART3" bool "UART3"
config OMAP_LL_DEBUG_NONE
bool "None"
endchoice endchoice
config OMAP_SERIAL_WAKE config OMAP_SERIAL_WAKE
......
...@@ -44,8 +44,12 @@ static void putc(int c) ...@@ -44,8 +44,12 @@ static void putc(int c)
uart = (volatile u8 *)(OMAP_UART3_BASE); uart = (volatile u8 *)(OMAP_UART3_BASE);
#elif defined(CONFIG_OMAP_LL_DEBUG_UART2) #elif defined(CONFIG_OMAP_LL_DEBUG_UART2)
uart = (volatile u8 *)(OMAP_UART2_BASE); uart = (volatile u8 *)(OMAP_UART2_BASE);
#else #elif defined(CONFIG_OMAP_LL_DEBUG_UART1)
uart = (volatile u8 *)(OMAP_UART1_BASE); uart = (volatile u8 *)(OMAP_UART1_BASE);
#elif defined(CONFIG_OMAP_LL_DEBUG_NONE)
return;
#else
return;
#endif #endif
#ifdef CONFIG_ARCH_OMAP1 #ifdef CONFIG_ARCH_OMAP1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment