Kconfig 697 B

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