Kconfig 1.5 KB

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