diff options
author | Erik Gilling <konkers@android.com> | 2010-01-21 19:53:02 -0500 |
---|---|---|
committer | Erik Gilling <konkers@android.com> | 2010-08-05 17:51:42 -0400 |
commit | c5f800656bc985b448b1d848d309648826536543 (patch) | |
tree | efac337e79b73bf24ce639840e41f77bcd46d707 /arch/arm/mach-tegra/Kconfig | |
parent | cdd854bc42b5e6c79bbbc40c6600d995ffe6e747 (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/Kconfig | 49 |
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 @@ | |||
1 | if ARCH_TEGRA | ||
2 | |||
3 | comment "NVIDIA Tegra options" | ||
4 | |||
5 | choice | ||
6 | prompt "Select Tegra processor family for target system" | ||
7 | |||
8 | config 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 | |||
16 | endchoice | ||
17 | |||
18 | comment "Tegra board type" | ||
19 | |||
20 | config MACH_HARMONY | ||
21 | bool "Harmony board" | ||
22 | help | ||
23 | Support for nVidia Harmony development platform | ||
24 | |||
25 | choice | ||
26 | prompt "Low-level debug console UART" | ||
27 | default TEGRA_DEBUG_UART_NONE | ||
28 | |||
29 | config TEGRA_DEBUG_UART_NONE | ||
30 | bool "None" | ||
31 | |||
32 | config TEGRA_DEBUG_UARTA | ||
33 | bool "UART-A" | ||
34 | |||
35 | config TEGRA_DEBUG_UARTB | ||
36 | bool "UART-B" | ||
37 | |||
38 | config TEGRA_DEBUG_UARTC | ||
39 | bool "UART-C" | ||
40 | |||
41 | config TEGRA_DEBUG_UARTD | ||
42 | bool "UART-D" | ||
43 | |||
44 | config TEGRA_DEBUG_UARTE | ||
45 | bool "UART-E" | ||
46 | |||
47 | endchoice | ||
48 | |||
49 | endif | ||