Kconfig 852 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. menu "NDS32 architecture"
  2. depends on NDS32
  3. config SYS_ARCH
  4. default "nds32"
  5. choice
  6. prompt "Target select"
  7. optional
  8. config TARGET_ADP_AG101P
  9. bool "Support adp-ag101p"
  10. config TARGET_ADP_AE3XX
  11. bool "Support adp-ae3xx"
  12. endchoice
  13. config SYS_ICACHE_OFF
  14. bool "Do not enable icache"
  15. default n
  16. help
  17. Do not enable instruction cache in U-Boot.
  18. config SPL_SYS_ICACHE_OFF
  19. bool "Do not enable icache in SPL"
  20. depends on SPL
  21. default SYS_ICACHE_OFF
  22. help
  23. Do not enable instruction cache in SPL.
  24. config SYS_DCACHE_OFF
  25. bool "Do not enable dcache"
  26. default n
  27. help
  28. Do not enable data cache in U-Boot.
  29. config SPL_SYS_DCACHE_OFF
  30. bool "Do not enable dcache in SPL"
  31. depends on SPL
  32. default SYS_DCACHE_OFF
  33. help
  34. Do not enable data cache in SPL.
  35. source "board/AndesTech/adp-ag101p/Kconfig"
  36. source "board/AndesTech/adp-ae3xx/Kconfig"
  37. endmenu