1if TEGRA124
2
3choice
4	prompt "Tegra124 board select"
5	optional
6
7config TARGET_JETSON_TK1
8	bool "NVIDIA Tegra124 Jetson TK1 board"
9	select CPU_V7_HAS_NONSEC if !SPL_BUILD
10	select CPU_V7_HAS_VIRT if !SPL_BUILD
11
12config TARGET_NYAN_BIG
13	bool "Google/NVIDIA Nyan-big Chromebook"
14	help
15	  Nyan Big is a Tegra124 clamshell board that is very similar
16	  to venice2, but it has a different panel, the sdcard CD and WP
17	  sense are flipped, and it has a different revision of the AS3722
18	  PMIC. The retail name is the Acer Chromebook 13 CB5-311-T7NN
19	  (13.3-inch HD, NVIDIA Tegra K1, 2GB).
20
21config TARGET_VENICE2
22	bool "NVIDIA Tegra124 Venice2"
23
24endchoice
25
26config SYS_SOC
27	default "tegra124"
28
29source "board/nvidia/jetson-tk1/Kconfig"
30source "board/nvidia/nyan-big/Kconfig"
31source "board/nvidia/venice2/Kconfig"
32
33endif
34