Kconfig 596 B

1234567891011121314151617181920212223242526272829
  1. # Copyright (c) 2016, NVIDIA CORPORATION.
  2. #
  3. # SPDX-License-Identifier: GPL-2.0
  4. if TEGRA186
  5. choice
  6. prompt "Tegra186 board select"
  7. config TARGET_P2771_0000
  8. bool "NVIDIA Tegra186 P2771-0000 board"
  9. select BOARD_LATE_INIT
  10. help
  11. P2771-0000 is a P3310 CPU board married to a P2597 I/O board. The
  12. combination contains SoC, DRAM, eMMC, SD card slot, HDMI, USB
  13. micro-B port, Ethernet, USB3 host port, SATA, PCIe, and two GPIO
  14. expansion headers.
  15. endchoice
  16. config SYS_SOC
  17. default "tegra186"
  18. config SYS_INIT_SP_BSS_OFFSET
  19. default 524288
  20. source "board/nvidia/p2771-0000/Kconfig"
  21. endif