]> git.sur5r.net Git - u-boot/blob - arch/arm/mach-tegra/tegra124/Kconfig
ARM: tegra: Add support for TK1-SOM board from Colorado Engineering
[u-boot] / arch / arm / mach-tegra / tegra124 / Kconfig
1 if TEGRA124
2
3 choice
4         prompt "Tegra124 board select"
5         optional
6
7 config TARGET_JETSON_TK1
8         bool "NVIDIA Tegra124 Jetson TK1 board"
9         select CPU_V7_HAS_NONSEC if !SPL_BUILD
10         select CPU_V7_HAS_VIRT if !SPL_BUILD
11
12 config TARGET_CEI_TK1_SOM
13         bool "Colorado Engineering Inc Tegra124 TK1-som board"
14         select CPU_V7_HAS_NONSEC if !SPL_BUILD
15         select CPU_V7_HAS_VIRT if !SPL_BUILD
16         help
17           The Colorado Engineering Tegra TK1-SOM is a very compact
18           (51mmx58mm) board that is functionally almost the same as
19           the Jetson TK1.  The main differences are in which balls on
20           the SoC are assigned to which functions, and the PCIEe
21           configuration.
22
23 config TARGET_NYAN_BIG
24         bool "Google/NVIDIA Nyan-big Chromebook"
25         help
26           Nyan Big is a Tegra124 clamshell board that is very similar
27           to venice2, but it has a different panel, the sdcard CD and WP
28           sense are flipped, and it has a different revision of the AS3722
29           PMIC. The retail name is the Acer Chromebook 13 CB5-311-T7NN
30           (13.3-inch HD, NVIDIA Tegra K1, 2GB).
31
32 config TARGET_VENICE2
33         bool "NVIDIA Tegra124 Venice2"
34
35 endchoice
36
37 config SYS_SOC
38         default "tegra124"
39
40 source "board/cei/cei-tk1-som/Kconfig"
41 source "board/nvidia/jetson-tk1/Kconfig"
42 source "board/nvidia/nyan-big/Kconfig"
43 source "board/nvidia/venice2/Kconfig"
44
45 endif