blob: df7746228386fbab489f480029f9acab9cdb7419 [file] [log] [blame]
Masahiro Yamadaddd960e2014-08-31 07:10:56 +09001if TEGRA124
2
3choice
4 prompt "Tegra124 board select"
Joe Hershbergera26cd042015-05-12 14:46:23 -05005 optional
Masahiro Yamadaddd960e2014-08-31 07:10:56 +09006
7config TARGET_JETSON_TK1
8 bool "NVIDIA Tegra124 Jetson TK1 board"
Masahiro Yamada55a65e62016-08-30 16:22:20 +09009 select CPU_V7_HAS_NONSEC
10 select CPU_V7_HAS_VIRT
Masahiro Yamada217f92b2016-08-30 16:22:22 +090011 select ARCH_SUPPORT_PSCI
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090012
Peter Chubbb6152672016-08-30 22:54:46 +000013config TARGET_CEI_TK1_SOM
14 bool "Colorado Engineering Inc Tegra124 TK1-som board"
15 select CPU_V7_HAS_NONSEC if !SPL_BUILD
16 select CPU_V7_HAS_VIRT if !SPL_BUILD
17 help
18 The Colorado Engineering Tegra TK1-SOM is a very compact
19 (51mmx58mm) board that is functionally almost the same as
20 the Jetson TK1. The main differences are in which balls on
21 the SoC are assigned to which functions, and the PCIEe
22 configuration.
23
Allen Martina6c7b462014-12-04 06:36:30 -070024config TARGET_NYAN_BIG
Simon Glassf3746622015-06-05 14:39:45 -060025 bool "Google/NVIDIA Nyan-big Chromebook"
Allen Martina6c7b462014-12-04 06:36:30 -070026 help
27 Nyan Big is a Tegra124 clamshell board that is very similar
28 to venice2, but it has a different panel, the sdcard CD and WP
29 sense are flipped, and it has a different revision of the AS3722
30 PMIC. The retail name is the Acer Chromebook 13 CB5-311-T7NN
31 (13.3-inch HD, NVIDIA Tegra K1, 2GB).
32
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090033config TARGET_VENICE2
34 bool "NVIDIA Tegra124 Venice2"
35
36endchoice
37
38config SYS_SOC
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090039 default "tegra124"
40
Peter Chubbb6152672016-08-30 22:54:46 +000041source "board/cei/cei-tk1-som/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090042source "board/nvidia/jetson-tk1/Kconfig"
Allen Martina6c7b462014-12-04 06:36:30 -070043source "board/nvidia/nyan-big/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +090044source "board/nvidia/venice2/Kconfig"
45
46endif