1if TEGRA210
2
3choice
4	prompt "Tegra210 board select"
5
6config TARGET_E2220_1170
7	bool "NVIDIA Tegra210 E2220-1170 board"
8	help
9	  E2220-1170 is a Tegra210 bringup board with onboard SoC, DRAM,
10	  eMMC, SD card slot, HDMI, USB micro-B port, and sockets for various
11	  expansion modules.
12
13config TARGET_P2371_0000
14	bool "NVIDIA Tegra210 P2371-0000 board"
15	help
16	  P2371-0000 is a P2581 or P2530 CPU board married to a P2595 I/O
17	  board. The combination contains SoC, DRAM, eMMC, SD card slot,
18	  HDMI, USB micro-B port, Ethernet via USB3, USB3 host port, SATA,
19	  a GPIO expansion header, and an analog audio jack.
20
21config TARGET_P2571
22	bool "NVIDIA Tegra210 P2571 base board"
23	help
24	  P2571 is a P2530 married to a P1963 I/O board
25
26endchoice
27
28config SYS_SOC
29	default "tegra210"
30
31source "board/nvidia/e2220-1170/Kconfig"
32source "board/nvidia/p2371-0000/Kconfig"
33source "board/nvidia/p2571/Kconfig"
34
35endif
36