diff options
author | Pavel Machek <pavel@ucw.cz> | 2009-11-02 05:48:29 -0500 |
---|---|---|
committer | Daniel Walker <dwalker@fifo99.com> | 2009-11-20 09:40:05 -0500 |
commit | 6339f6695f84e48b42021c6df91d81b17308fe92 (patch) | |
tree | 38be250cc731428524eba5f1c598771f71780304 /arch/arm/mach-msm/Kconfig | |
parent | 333a07437c31ea8c16a2b82071629a540ae1e50f (diff) |
msm: make debugging UART (for DEBUG_LL) configurable
Provides options to select one of the three "lowspeed" UARTs
on MSM7k SoCs for DEBUG_LL output from the zImage decompressor
and kernel.
Signed-off-by: Brian Swetland <swetland@google.com>
Signed-off-by: Pavel Machek <pavel@ucw.cz>
Signed-off-by: Daniel Walker <dwalker@codeaurora.org>
Diffstat (limited to 'arch/arm/mach-msm/Kconfig')
-rw-r--r-- | arch/arm/mach-msm/Kconfig | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/arch/arm/mach-msm/Kconfig b/arch/arm/mach-msm/Kconfig index d140abca690a..35f2a90a2afe 100644 --- a/arch/arm/mach-msm/Kconfig +++ b/arch/arm/mach-msm/Kconfig | |||
@@ -3,6 +3,30 @@ if ARCH_MSM | |||
3 | comment "MSM Board Type" | 3 | comment "MSM Board Type" |
4 | depends on ARCH_MSM | 4 | depends on ARCH_MSM |
5 | 5 | ||
6 | config MSM_DEBUG_UART | ||
7 | int | ||
8 | default 1 if MSM_DEBUG_UART1 | ||
9 | default 2 if MSM_DEBUG_UART2 | ||
10 | default 3 if MSM_DEBUG_UART3 | ||
11 | |||
12 | choice | ||
13 | prompt "Debug UART" | ||
14 | |||
15 | default MSM_DEBUG_UART_NONE | ||
16 | |||
17 | config MSM_DEBUG_UART_NONE | ||
18 | bool "None" | ||
19 | |||
20 | config MSM_DEBUG_UART1 | ||
21 | bool "UART1" | ||
22 | |||
23 | config MSM_DEBUG_UART2 | ||
24 | bool "UART2" | ||
25 | |||
26 | config MSM_DEBUG_UART3 | ||
27 | bool "UART3" | ||
28 | endchoice | ||
29 | |||
6 | config MACH_HALIBUT | 30 | config MACH_HALIBUT |
7 | depends on ARCH_MSM | 31 | depends on ARCH_MSM |
8 | default y | 32 | default y |