xref: /openbmc/u-boot/arch/arm/mach-aspeed/ast2600/Kconfig (revision c916075f81c7f43e04b437ea7c388f102d6ca87b)
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
20config TARGET_FPGA_AST2600
21	bool "FPGA-AST2600"
22	depends on ASPEED_AST2600
23	help
24	  FPGA-AST2600 is Aspeed FPGA board for AST2600 chip.
25	  This is mainly for internal development. Note that
26	  most implementation is co-code with EVB-AST2600.
27
28config TARGET_SLT_AST2600
29	bool "SLT-AST2600"
30	depends on ASPEED_AST2600
31	help
32	  SLT-AST2600 is Aspeed SLT board for AST2600 chip.
33
34config TARGET_AST2600_INTEL
35	bool "AST2600-INTEL"
36	depends on ASPEED_AST2600
37	help
38	  AST2600-INTEL is an Intel Eagle Stream CRB with
39	  AST2600 as the BMC.
40
41config TARGET_AST2600_DCSCM
42	bool "AST2600-DCSCM"
43	depends on ASPEED_AST2600
44	help
45	  AST2600_DCSCM_AVENUE_CITY is an Aspeed demo board in
46	  DCSCM form factor.
47
48endchoice
49
50source "board/aspeed/evb_ast2600/Kconfig"
51source "board/aspeed/fpga_ast2600/Kconfig"
52source "board/aspeed/slt_ast2600/Kconfig"
53source "board/aspeed/ast2600_intel/Kconfig"
54source "board/aspeed/ast2600_dcscm/Kconfig"
55
56endif
57