Kconfig 791 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  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. 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/cadence/xtfpga/Kconfig"
  36. endmenu