Kconfig 796 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. menu "Xtensa architecture"
  2. depends on XTENSA
  3. config SYS_ARCH
  4. string
  5. default "xtensa"
  6. config SYS_CPU
  7. string "Xtensa Core Variant"
  8. choice
  9. prompt "Target select"
  10. config TARGET_XTFPGA
  11. bool "Support XTFPGA"
  12. select BOARD_POSTCLK_INIT
  13. endchoice
  14. config SYS_ICACHE_OFF
  15. bool "Do not enable icache"
  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. help
  27. Do not enable data cache in U-Boot.
  28. config SPL_SYS_DCACHE_OFF
  29. bool "Do not enable dcache in SPL"
  30. depends on SPL
  31. default SYS_DCACHE_OFF
  32. help
  33. Do not enable data cache in SPL.
  34. source "board/cadence/xtfpga/Kconfig"
  35. endmenu