summaryrefslogtreecommitdiffstats
path: root/arch/arm/mach-tegra/Kconfig
blob: 9224e628cb0f8a7923f5960173819c9217b75a5c (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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
if ARCH_TEGRA

choice
	prompt "Tegra processor type"

config ARCH_TEGRA_2x_SOC
	bool "Tegra 20"
	select PINCTRL_TEGRA20

endchoice

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

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

if ARCH_TEGRA_2x_SOC

config ARCH_TEXT_BASE
	hex
	default 0x00108000

choice
	prompt "Tegra 20 Board Type"

config MACH_TEGRA20_GENERIC
	bool "Generic DT based board"
	help
	  Say Y here if you are building for a generic DT based board.

config MACH_TOSHIBA_AC100
	bool "Toshiba AC100"
	help
	  Say Y here if you are using Toshiba AC100 smartbook.

endchoice

if MACH_TEGRA20_GENERIC

config BOARDINFO
	default "Generic Tegra20 board"

endif #MACH_TEGRA20_GENERIC

source arch/arm/boards/toshiba-ac100/Kconfig

endif #ARCH_TEGRA_2x_SOC

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

endif