aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-tegra/Kconfig
diff options
context:
space:
mode:
Diffstat (limited to 'arch/arm/mach-tegra/Kconfig')
-rw-r--r--arch/arm/mach-tegra/Kconfig49
1 files changed, 49 insertions, 0 deletions
diff --git a/arch/arm/mach-tegra/Kconfig b/arch/arm/mach-tegra/Kconfig
new file mode 100644
index 000000000000..bcbda96ec84c
--- /dev/null
+++ b/arch/arm/mach-tegra/Kconfig
@@ -0,0 +1,49 @@
1if ARCH_TEGRA
2
3comment "NVIDIA Tegra options"
4
5choice
6 prompt "Select Tegra processor family for target system"
7
8config ARCH_TEGRA_2x_SOC
9 bool "Tegra 2 family"
10 select CPU_V7
11 select ARM_GIC
12 help
13 Support for NVIDIA Tegra AP20 and T20 processors, based on the
14 ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
15
16endchoice
17
18comment "Tegra board type"
19
20config MACH_HARMONY
21 bool "Harmony board"
22 help
23 Support for nVidia Harmony development platform
24
25choice
26 prompt "Low-level debug console UART"
27 default TEGRA_DEBUG_UART_NONE
28
29config TEGRA_DEBUG_UART_NONE
30 bool "None"
31
32config TEGRA_DEBUG_UARTA
33 bool "UART-A"
34
35config TEGRA_DEBUG_UARTB
36 bool "UART-B"
37
38config TEGRA_DEBUG_UARTC
39 bool "UART-C"
40
41config TEGRA_DEBUG_UARTD
42 bool "UART-D"
43
44config TEGRA_DEBUG_UARTE
45 bool "UART-E"
46
47endchoice
48
49endif