blob: 5ec1846aa1d0d13c17b143cd72235919b8bc5f26 [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
Benoit Goby91525d02011-03-09 16:28:55 -080013 select USB_ARCH_HAS_EHCI if USB_SUPPORT
14 select USB_ULPI if USB_SUPPORT
15 select USB_ULPI_VIEWPORT if USB_SUPPORT
Erik Gillingc5f80062010-01-21 16:53:02 -080016 help
17 Support for NVIDIA Tegra AP20 and T20 processors, based on the
18 ARM CortexA9MP CPU and the ARM PL310 L2 cache controller
19
20endchoice
21
Mike Rapoport77ffc142010-09-27 11:26:33 +020022config TEGRA_PCI
23 bool "PCI Express support"
24 select PCI
25
Erik Gillingc5f80062010-01-21 16:53:02 -080026comment "Tegra board type"
27
28config MACH_HARMONY
29 bool "Harmony board"
Stephen Warren47912a62011-04-19 10:18:01 -060030 select MACH_HAS_SND_SOC_TEGRA_WM8903
Erik Gillingc5f80062010-01-21 16:53:02 -080031 help
32 Support for nVidia Harmony development platform
33
Olof Johanssond9a51fe2011-02-19 17:25:32 -080034config MACH_KAEN
35 bool "Kaen board"
36 select MACH_SEABOARD
Stephen Warren47912a62011-04-19 10:18:01 -060037 select MACH_HAS_SND_SOC_TEGRA_WM8903
Olof Johanssond9a51fe2011-02-19 17:25:32 -080038 help
39 Support for the Kaen version of Seaboard
40
Marc Dietrich65b935a2011-03-07 21:01:31 +010041config MACH_PAZ00
42 bool "Paz00 board"
43 help
44 Support for the Toshiba AC100/Dynabook AZ netbook
45
Olof Johanssond9a51fe2011-02-19 17:25:32 -080046config MACH_SEABOARD
47 bool "Seaboard board"
Stephen Warren47912a62011-04-19 10:18:01 -060048 select MACH_HAS_SND_SOC_TEGRA_WM8903
Olof Johanssond9a51fe2011-02-19 17:25:32 -080049 help
50 Support for nVidia Seaboard development platform. It will
51 also be included for some of the derivative boards that
52 have large similarities with the seaboard design.
53
Mike Rapoportcca414b2011-02-07 10:10:53 +020054config MACH_TRIMSLICE
55 bool "TrimSlice board"
56 select TEGRA_PCI
57 help
58 Support for CompuLab TrimSlice platform
59
Olof Johanssond9a51fe2011-02-19 17:25:32 -080060config MACH_WARIO
61 bool "Wario board"
62 select MACH_SEABOARD
63 help
64 Support for the Wario version of Seaboard
65
Erik Gillingc5f80062010-01-21 16:53:02 -080066choice
67 prompt "Low-level debug console UART"
68 default TEGRA_DEBUG_UART_NONE
69
70config TEGRA_DEBUG_UART_NONE
71 bool "None"
72
73config TEGRA_DEBUG_UARTA
74 bool "UART-A"
75
76config TEGRA_DEBUG_UARTB
77 bool "UART-B"
78
79config TEGRA_DEBUG_UARTC
80 bool "UART-C"
81
82config TEGRA_DEBUG_UARTD
83 bool "UART-D"
84
85config TEGRA_DEBUG_UARTE
86 bool "UART-E"
87
88endchoice
89
Colin Cross4de3a8f2010-04-05 13:16:42 -070090config TEGRA_SYSTEM_DMA
91 bool "Enable system DMA driver for NVIDIA Tegra SoCs"
92 default y
93 help
94 Adds system DMA functionality for NVIDIA Tegra SoCs, used by
95 several Tegra device drivers
96
Colin Crossefdf72a2011-02-12 18:22:49 -080097config TEGRA_EMC_SCALING_ENABLE
98 bool "Enable scaling the memory frequency"
Mark Brown38376862011-02-22 20:35:24 +000099
100endif