summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-tegra/Kconfig
blob: 3becb84d00cd17ed8405ec15b40d432d9f07fa0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
if ARCH_TEGRA

config ARCH_TEXT_BASE
	hex
	default 0x0

config BOARDINFO
	default ""

choice
	prompt "Tegra debug UART"
	help
	  This is the first serial console that gets activated by barebox.
	  Normally each board vendor should program a valid debug UART into
	  the ODMdata section of the boot configuration table, so it's a
	  reasonably good bet to use that.
	  If you know your ODMdata is broken, or you don't wish to activate
	  any serial console at all you can override the default here.

config TEGRA_UART_ODMDATA
	bool "ODMdata defined UART"

config TEGRA_UART_A
	bool "UART A"

config TEGRA_UART_B
	bool "UART B"

config TEGRA_UART_C
	bool "UART C"

config TEGRA_UART_D
	bool "UART D"

config TEGRA_UART_E
	bool "UART E"

config TEGRA_UART_NONE
	bool "None"

endchoice

# ---------------------------------------------------------

config ARCH_TEGRA_2x_SOC
	bool
	select PINCTRL_TEGRA20

menu "select Tegra boards to be built"

config MACH_TORADEX_COLIBRI_T20_IRIS
	bool "Toradex Colibri T20 on Iris Carrier"
	select ARCH_TEGRA_2x_SOC

config MACH_TOSHIBA_AC100
	bool "Toshiba AC100"
	select ARCH_TEGRA_2x_SOC

endmenu

# ---------------------------------------------------------

endif