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