Kconfig 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. if TEGRA210
  2. choice
  3. prompt "Tegra210 board select"
  4. config TARGET_E2220_1170
  5. bool "NVIDIA Tegra210 E2220-1170 board"
  6. select BOARD_LATE_INIT
  7. help
  8. E2220-1170 is a Tegra210 bringup board with onboard SoC, DRAM,
  9. eMMC, SD card slot, HDMI, USB micro-B port, and sockets for various
  10. expansion modules.
  11. config TARGET_P2371_0000
  12. bool "NVIDIA Tegra210 P2371-0000 board"
  13. select BOARD_LATE_INIT
  14. help
  15. P2371-0000 is a P2581 or P2530 CPU board married to a P2595 I/O
  16. board. The combination contains SoC, DRAM, eMMC, SD card slot,
  17. HDMI, USB micro-B port, Ethernet via USB3, USB3 host port, SATA,
  18. a GPIO expansion header, and an analog audio jack.
  19. config TARGET_P2371_2180
  20. bool "NVIDIA Tegra210 P2371-2180 (Jetson TX1) board"
  21. select BOARD_LATE_INIT
  22. help
  23. P2371-2180 (Jetson TX1 developer kit) is a P2180 CPU board married
  24. to a P2597 I/O board. The combination contains SoC, DRAM, eMMC, SD
  25. card slot, HDMI, USB micro-B port, Ethernet via USB3, USB3 host
  26. port, SATA, PCIe, and two GPIO expansion headers.
  27. config TARGET_P2571
  28. bool "NVIDIA Tegra210 P2571 base board"
  29. select BOARD_LATE_INIT
  30. help
  31. P2571 is a P2530 married to a P1963 I/O board
  32. config TARGET_P3450_0000
  33. bool "NVIDIA Jetson Nano Developer Kit"
  34. select BOARD_LATE_INIT
  35. help
  36. P3450-0000 is a P3448 CPU board married to a P3449 I/O board.
  37. endchoice
  38. config SYS_SOC
  39. default "tegra210"
  40. source "board/nvidia/e2220-1170/Kconfig"
  41. source "board/nvidia/p2371-0000/Kconfig"
  42. source "board/nvidia/p2371-2180/Kconfig"
  43. source "board/nvidia/p2571/Kconfig"
  44. source "board/nvidia/p3450-0000/Kconfig"
  45. endif