blob: 9e21e3099db5922d2a7f2abaa1622f6ef7a2d345 [file] [log] [blame]
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +09001if TEGRA124
2
3choice
4 prompt "Tegra124 board select"
Joe Hershbergerf0699602015-05-12 14:46:23 -05005 optional
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +09006
7config TARGET_JETSON_TK1
8 bool "NVIDIA Tegra124 Jetson TK1 board"
Ian Campbell56c6c312015-04-21 07:18:40 +02009 select CPU_V7_HAS_NONSEC if !SPL_BUILD
10 select CPU_V7_HAS_VIRT if !SPL_BUILD
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090011
Peter Chubb441f2382016-08-30 22:54:46 +000012config TARGET_CEI_TK1_SOM
13 bool "Colorado Engineering Inc Tegra124 TK1-som board"
14 select CPU_V7_HAS_NONSEC if !SPL_BUILD
15 select CPU_V7_HAS_VIRT if !SPL_BUILD
16 help
17 The Colorado Engineering Tegra TK1-SOM is a very compact
18 (51mmx58mm) board that is functionally almost the same as
19 the Jetson TK1. The main differences are in which balls on
20 the SoC are assigned to which functions, and the PCIEe
21 configuration.
22
Allen Martina142ac72014-12-04 06:36:30 -070023config TARGET_NYAN_BIG
Simon Glass9eb444e2015-06-05 14:39:45 -060024 bool "Google/NVIDIA Nyan-big Chromebook"
Allen Martina142ac72014-12-04 06:36:30 -070025 help
26 Nyan Big is a Tegra124 clamshell board that is very similar
27 to venice2, but it has a different panel, the sdcard CD and WP
28 sense are flipped, and it has a different revision of the AS3722
29 PMIC. The retail name is the Acer Chromebook 13 CB5-311-T7NN
30 (13.3-inch HD, NVIDIA Tegra K1, 2GB).
31
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090032config TARGET_VENICE2
33 bool "NVIDIA Tegra124 Venice2"
34
35endchoice
36
37config SYS_SOC
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090038 default "tegra124"
39
Peter Chubb441f2382016-08-30 22:54:46 +000040source "board/cei/cei-tk1-som/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090041source "board/nvidia/jetson-tk1/Kconfig"
Allen Martina142ac72014-12-04 06:36:30 -070042source "board/nvidia/nyan-big/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090043source "board/nvidia/venice2/Kconfig"
44
45endif