blob: ca96a263b768d68b5e5d23b45ee61cc13e1ba0fd [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"
Tom Rini22d567e2017-01-22 19:43:11 -05009 select BOARD_LATE_INIT
Masahiro Yamadafcd21552016-08-30 16:22:20 +090010 select CPU_V7_HAS_NONSEC
11 select CPU_V7_HAS_VIRT
Masahiro Yamadad5415b22016-08-30 16:22:22 +090012 select ARCH_SUPPORT_PSCI
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090013
Peter Chubb441f2382016-08-30 22:54:46 +000014config TARGET_CEI_TK1_SOM
15 bool "Colorado Engineering Inc Tegra124 TK1-som board"
Tom Rini22d567e2017-01-22 19:43:11 -050016 select BOARD_LATE_INIT
Peter Chubb441f2382016-08-30 22:54:46 +000017 select CPU_V7_HAS_NONSEC if !SPL_BUILD
18 select CPU_V7_HAS_VIRT if !SPL_BUILD
19 help
20 The Colorado Engineering Tegra TK1-SOM is a very compact
21 (51mmx58mm) board that is functionally almost the same as
22 the Jetson TK1. The main differences are in which balls on
23 the SoC are assigned to which functions, and the PCIEe
24 configuration.
25
Allen Martina142ac72014-12-04 06:36:30 -070026config TARGET_NYAN_BIG
Simon Glass9eb444e2015-06-05 14:39:45 -060027 bool "Google/NVIDIA Nyan-big Chromebook"
Tom Rini22d567e2017-01-22 19:43:11 -050028 select BOARD_LATE_INIT
Allen Martina142ac72014-12-04 06:36:30 -070029 help
30 Nyan Big is a Tegra124 clamshell board that is very similar
31 to venice2, but it has a different panel, the sdcard CD and WP
32 sense are flipped, and it has a different revision of the AS3722
33 PMIC. The retail name is the Acer Chromebook 13 CB5-311-T7NN
34 (13.3-inch HD, NVIDIA Tegra K1, 2GB).
35
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090036config TARGET_VENICE2
37 bool "NVIDIA Tegra124 Venice2"
Tom Rini22d567e2017-01-22 19:43:11 -050038 select BOARD_LATE_INIT
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090039
40endchoice
41
42config SYS_SOC
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090043 default "tegra124"
44
Peter Chubb441f2382016-08-30 22:54:46 +000045source "board/cei/cei-tk1-som/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090046source "board/nvidia/jetson-tk1/Kconfig"
Allen Martina142ac72014-12-04 06:36:30 -070047source "board/nvidia/nyan-big/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090048source "board/nvidia/venice2/Kconfig"
49
50endif