Kconfig 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  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. endchoice
  33. config SYS_SOC
  34. default "tegra210"
  35. config SYS_INIT_SP_BSS_OFFSET
  36. default 524288
  37. source "board/nvidia/e2220-1170/Kconfig"
  38. source "board/nvidia/p2371-0000/Kconfig"
  39. source "board/nvidia/p2371-2180/Kconfig"
  40. source "board/nvidia/p2571/Kconfig"
  41. endif