1if ARCH_SYNQUACER 2 3choice 4 prompt "SC2A11 Cortex-A53 MPCore 24cores" 5 optional 6 7config TARGET_DEVELOPERBOX 8 bool "Socionext DeveloperBox" 9 select PCI 10 select PCIE_ECAM_SYNQUACER 11 select SYS_DISABLE_DCACHE_OPS 12 select OF_BOARD_SETUP 13 help 14 Choose this option if you build the U-Boot for the DeveloperBox 15 96boards Enterprise Edition. 16 This board will booted from SCP firmware and it enables SMMU, thus 17 the dcache is updated automatically when DMA operation is executed. 18endchoice 19 20config SYS_SOC 21 default "sc2a11" 22 23if TARGET_DEVELOPERBOX 24 25config SYS_BOARD 26 default "developerbox" 27 28config SYS_VENDOR 29 default "socionext" 30 31config SYS_CONFIG_NAME 32 default "synquacer" 33 34endif 35endif 36