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 41endchoice 42 43source "board/aspeed/evb_ast2600/Kconfig" 44source "board/aspeed/fpga_ast2600/Kconfig" 45source "board/aspeed/slt_ast2600/Kconfig" 46source "board/aspeed/ast2600_intel/Kconfig" 47 48endif 49