aboutsummaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-tegra/Kconfig
diff options
context:
space:
mode:
authorErik Gilling <konkers@android.com>2010-01-21 19:53:02 -0500
committerErik Gilling <konkers@android.com>2010-08-05 17:51:42 -0400
commitc5f800656bc985b448b1d848d309648826536543 (patch)
treeefac337e79b73bf24ce639840e41f77bcd46d707 /arch/arm/mach-tegra/Kconfig
parentcdd854bc42b5e6c79bbbc40c6600d995ffe6e747 (diff)
[ARM] tegra: initial tegra support
v2: Fixes from Mike Rapoport - remove unused header files (mach/dma.h and mach/nand.h) - remove tegra 1 references from Makefile.boot v2: fixes from Russell King - remove mach/io.h include from mach/iomap.h - fix whitespace in Kconfig v2: from Colin Cross - fix invalid immediate in debug-macro.S v3: - allow selection of multiple boards Signed-off-by: Colin Cross <ccross@android.com> Signed-off-by: Erik Gilling <konkers@android.com>
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