blob: a57713c1954abe0ca329648d7fc398c8ac3d64f7 [file] [log] [blame]
Erik Gillingc5f80062010-01-21 16:53:02 -08001if 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
Erik Gilling3c92db92010-03-15 19:40:06 -070012 select ARCH_REQUIRE_GPIOLIB
Erik Gillingc5f80062010-01-21 16:53:02 -080013 help
14 Support for NVIDIA Tegra AP20 and T20 processors, based on the
15 ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
16
17endchoice
18
19comment "Tegra board type"
20
21config MACH_HARMONY
22 bool "Harmony board"
23 help
24 Support for nVidia Harmony development platform
25
26choice
27 prompt "Low-level debug console UART"
28 default TEGRA_DEBUG_UART_NONE
29
30config TEGRA_DEBUG_UART_NONE
31 bool "None"
32
33config TEGRA_DEBUG_UARTA
34 bool "UART-A"
35
36config TEGRA_DEBUG_UARTB
37 bool "UART-B"
38
39config TEGRA_DEBUG_UARTC
40 bool "UART-C"
41
42config TEGRA_DEBUG_UARTD
43 bool "UART-D"
44
45config TEGRA_DEBUG_UARTE
46 bool "UART-E"
47
48endchoice
49
50endif