1if ASPEED_AST2600
2
3config SYS_CPU
4	default "armv7"
5
6choice
7	prompt "AST2600 board select"
8	depends on ASPEED_AST2600
9	default TARGET_EVB_AST2600
10
11config TARGET_EVB_AST2600
12	bool "EVB-AST2600"
13	depends on ASPEED_AST2600
14	help
15	  EVB-AST2600 is Aspeed evaluation board for AST2600A0 chip.
16	  It has 512M of RAM, 32M of SPI flash, two Ethernet ports,
17	  4 Serial ports, 4 USB ports, VGA port, PCIe, SD card slot,
18	  20 pin JTAG, pinouts for 14 I2Cs, 3 SPIs and eSPI, 8 PWMs.
19
20
21config TARGET_FPGA_AST2600
22	bool "FPGA-AST2600"
23	depends on ASPEED_AST2600
24	help
25	  FPGA-AST2600 is Aspeed FPGA board for AST2600 chip.
26	  This is mainly for internal development. Note that
27	  most implementation is co-code with EVB-AST2600.
28
29config TARGET_SLT_AST2600
30	bool "SLT-AST2600"
31	depends on ASPEED_AST2600
32	help
33	  SLT-AST2600 is Aspeed SLT board for AST2600 chip.
34
35endchoice
36
37source "board/aspeed/evb_ast2600/Kconfig"
38source "board/aspeed/fpga_ast2600/Kconfig"
39source "board/aspeed/slt_ast2600/Kconfig"
40
41endif
42