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 BOARD_LATE_INIT 10 select CPU_V7_HAS_NONSEC 11 select CPU_V7_HAS_VIRT 12 select ARCH_SUPPORT_PSCI 13 14config TARGET_CEI_TK1_SOM 15 bool "Colorado Engineering Inc Tegra124 TK1-som board" 16 select BOARD_LATE_INIT 17 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 26config TARGET_NYAN_BIG 27 bool "Google/NVIDIA Nyan-big Chromebook" 28 select BOARD_LATE_INIT 29 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 36config TARGET_VENICE2 37 bool "NVIDIA Tegra124 Venice2" 38 select BOARD_LATE_INIT 39 40endchoice 41 42config SYS_SOC 43 default "tegra124" 44 45source "board/cei/cei-tk1-som/Kconfig" 46source "board/nvidia/jetson-tk1/Kconfig" 47source "board/nvidia/nyan-big/Kconfig" 48source "board/nvidia/venice2/Kconfig" 49 50endif 51