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_AST2600A0 10 11config TARGET_EVB_AST2600A0 12 bool "EVB-AST2600A0" 13 depends on ASPEED_AST2600 14 help 15 EVB-AST2600 is Aspeed evaluation board for AST2600 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_EVB_AST2600A1 21 bool "EVB-AST2600A1" 22 depends on ASPEED_AST2600 23 help 24 EVB-AST2600A1 is based on A0 with ECO changes 25 26config TARGET_NCSI_AST2600A0 27 bool "NCSI-AST2600A0" 28 depends on ASPEED_AST2600 29 help 30 NCSI-AST2600 is Aspeed EVB board for AST2600 chip with NC-SI 31 daughtercard. This is mainly for internal development. Note that 32 most implementation is co-code with EVB-AST2600. 33 34config TARGET_NCSI_AST2600A1 35 bool "NCSI-AST2600A1" 36 depends on ASPEED_AST2600 37 help 38 NCSI-AST2600A1 is based on A0 with ECO changes 39 40config TARGET_FPGA_AST2600 41 bool "FPGA-AST2600" 42 depends on ASPEED_AST2600 43 help 44 FPGA-AST2600 is Aspeed FPGA board for AST2600 chip. 45 This is mainly for internal development. Note that 46 most implementation is co-code with EVB-AST2600. 47 48config TARGET_SLT_AST2600 49 bool "SLT-AST2600" 50 depends on ASPEED_AST2600 51 help 52 SLT-AST2600 is Aspeed SLT board for AST2600 chip. 53 54endchoice 55 56source "board/aspeed/evb_ast2600a0/Kconfig" 57source "board/aspeed/evb_ast2600a1/Kconfig" 58source "board/aspeed/ncsi_ast2600a0/Kconfig" 59source "board/aspeed/ncsi_ast2600a1/Kconfig" 60source "board/aspeed/fpga_ast2600/Kconfig" 61source "board/aspeed/slt_ast2600/Kconfig" 62 63endif 64