blob: fb016aa46c90f5cee54abb77383c4391761ab542 [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
Marcel Ziswilerd2b64bd2017-04-01 15:43:16 -07007config TARGET_APALIS_TK1
8 bool "Toradex Apalis TK1 module"
Michal Simek7e7ba3b2018-07-23 15:55:15 +02009 select ARCH_SUPPORT_PSCI
Marcel Ziswilerd2b64bd2017-04-01 15:43:16 -070010 select CPU_V7_HAS_NONSEC
11 select CPU_V7_HAS_VIRT
Marcel Ziswilerd2b64bd2017-04-01 15:43:16 -070012
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090013config TARGET_JETSON_TK1
14 bool "NVIDIA Tegra124 Jetson TK1 board"
Michal Simek7e7ba3b2018-07-23 15:55:15 +020015 select ARCH_SUPPORT_PSCI
Tom Rini22d567e2017-01-22 19:43:11 -050016 select BOARD_LATE_INIT
Masahiro Yamadafcd21552016-08-30 16:22:20 +090017 select CPU_V7_HAS_NONSEC
18 select CPU_V7_HAS_VIRT
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090019
Peter Chubb441f2382016-08-30 22:54:46 +000020config TARGET_CEI_TK1_SOM
21 bool "Colorado Engineering Inc Tegra124 TK1-som board"
Patrick Delaunaya4cc1a72020-06-18 09:41:34 +020022 select ARCH_SUPPORT_PSCI
Tom Rini22d567e2017-01-22 19:43:11 -050023 select BOARD_LATE_INIT
Peter Chubb441f2382016-08-30 22:54:46 +000024 select CPU_V7_HAS_NONSEC if !SPL_BUILD
25 select CPU_V7_HAS_VIRT if !SPL_BUILD
26 help
27 The Colorado Engineering Tegra TK1-SOM is a very compact
28 (51mmx58mm) board that is functionally almost the same as
29 the Jetson TK1. The main differences are in which balls on
30 the SoC are assigned to which functions, and the PCIEe
31 configuration.
32
Allen Martina142ac72014-12-04 06:36:30 -070033config TARGET_NYAN_BIG
Simon Glass9eb444e2015-06-05 14:39:45 -060034 bool "Google/NVIDIA Nyan-big Chromebook"
Tom Rini22d567e2017-01-22 19:43:11 -050035 select BOARD_LATE_INIT
Allen Martina142ac72014-12-04 06:36:30 -070036 help
37 Nyan Big is a Tegra124 clamshell board that is very similar
38 to venice2, but it has a different panel, the sdcard CD and WP
39 sense are flipped, and it has a different revision of the AS3722
40 PMIC. The retail name is the Acer Chromebook 13 CB5-311-T7NN
41 (13.3-inch HD, NVIDIA Tegra K1, 2GB).
42
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090043config TARGET_VENICE2
44 bool "NVIDIA Tegra124 Venice2"
Tom Rini22d567e2017-01-22 19:43:11 -050045 select BOARD_LATE_INIT
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090046
47endchoice
48
49config SYS_SOC
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090050 default "tegra124"
51
Peter Chubb441f2382016-08-30 22:54:46 +000052source "board/cei/cei-tk1-som/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090053source "board/nvidia/jetson-tk1/Kconfig"
Allen Martina142ac72014-12-04 06:36:30 -070054source "board/nvidia/nyan-big/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090055source "board/nvidia/venice2/Kconfig"
Marcel Ziswilerd2b64bd2017-04-01 15:43:16 -070056source "board/toradex/apalis-tk1/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +090057
58endif