1if TEGRA124 2 3choice 4 prompt "Tegra124 board select" 5 optional 6 7config TARGET_APALIS_TK1 8 bool "Toradex Apalis TK1 module" 9 select ARCH_SUPPORT_PSCI 10 select CPU_V7_HAS_NONSEC 11 select CPU_V7_HAS_VIRT 12 13config TARGET_JETSON_TK1 14 bool "NVIDIA Tegra124 Jetson TK1 board" 15 select ARCH_SUPPORT_PSCI 16 select BOARD_LATE_INIT 17 select CPU_V7_HAS_NONSEC 18 select CPU_V7_HAS_VIRT 19 20config TARGET_CEI_TK1_SOM 21 bool "Colorado Engineering Inc Tegra124 TK1-som board" 22 select ARCH_SUPPORT_PSCI 23 select BOARD_LATE_INIT 24 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 33config TARGET_NYAN_BIG 34 bool "Google/NVIDIA Nyan-big Chromebook" 35 select BOARD_LATE_INIT 36 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 43config TARGET_VENICE2 44 bool "NVIDIA Tegra124 Venice2" 45 select BOARD_LATE_INIT 46 47endchoice 48 49config SYS_SOC 50 default "tegra124" 51 52source "board/cei/cei-tk1-som/Kconfig" 53source "board/nvidia/jetson-tk1/Kconfig" 54source "board/nvidia/nyan-big/Kconfig" 55source "board/nvidia/venice2/Kconfig" 56source "board/toradex/apalis-tk1/Kconfig" 57 58endif 59