Kconfig 1.3 KB

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