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