blob: 17f18cbf3022401a1cebbebe861f40e8124b2f56 [file] [log] [blame]
Tom Warrenf80dd822015-02-02 13:22:29 -07001if TEGRA210
2
3choice
4 prompt "Tegra210 board select"
5
Stephen Warren952a5732015-08-05 11:52:08 -06006config TARGET_P2371_0000
7 bool "NVIDIA Tegra210 P2371-0000 board"
Tom Rini22d567e2017-01-22 19:43:11 -05008 select BOARD_LATE_INIT
Stephen Warren952a5732015-08-05 11:52:08 -06009 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
Stephen Warren86815612015-08-13 22:34:22 -060015config TARGET_P2371_2180
Stephen Warren7f75d542015-11-12 08:58:22 -070016 bool "NVIDIA Tegra210 P2371-2180 (Jetson TX1) board"
Tom Rini22d567e2017-01-22 19:43:11 -050017 select BOARD_LATE_INIT
Stephen Warren86815612015-08-13 22:34:22 -060018 help
Stephen Warren7f75d542015-11-12 08:58:22 -070019 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.
Stephen Warren86815612015-08-13 22:34:22 -060023
Tom Warren22425c92015-02-12 15:01:49 -070024config TARGET_P2571
25 bool "NVIDIA Tegra210 P2571 base board"
Tom Rini22d567e2017-01-22 19:43:11 -050026 select BOARD_LATE_INIT
Tom Warren22425c92015-02-12 15:01:49 -070027 help
28 P2571 is a P2530 married to a P1963 I/O board
29
Tom Warren872111a2020-02-28 16:17:07 -070030config 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
Tom Warrenf80dd822015-02-02 13:22:29 -070036endchoice
37
38config SYS_SOC
39 default "tegra210"
40
Stephen Warren952a5732015-08-05 11:52:08 -060041source "board/nvidia/p2371-0000/Kconfig"
Stephen Warren86815612015-08-13 22:34:22 -060042source "board/nvidia/p2371-2180/Kconfig"
Tom Warren22425c92015-02-12 15:01:49 -070043source "board/nvidia/p2571/Kconfig"
Tom Warren872111a2020-02-28 16:17:07 -070044source "board/nvidia/p3450-0000/Kconfig"
Tom Warren22425c92015-02-12 15:01:49 -070045
Tom Warrenf80dd822015-02-02 13:22:29 -070046endif