blob: 35e5b89dda047fcd5e059ba65c1ae36cff4a84fe [file] [log] [blame]
Chris Zankelc978b522016-08-10 18:36:44 +03001menu "Xtensa architecture"
2 depends on XTENSA
3
4config SYS_ARCH
5 string
6 default "xtensa"
7
8config SYS_CPU
9 string "Xtensa Core Variant"
10
11choice
12 prompt "Target select"
13
Chris Zankel7e270ec2016-08-10 18:36:48 +030014config TARGET_XTFPGA
15 bool "Support XTFPGA"
Chris Zankelc978b522016-08-10 18:36:44 +030016
17endchoice
18
Trevor Woernera0aba8a2019-05-03 09:40:59 -040019config SYS_ICACHE_OFF
20 bool "Do not enable icache"
Trevor Woernera0aba8a2019-05-03 09:40:59 -040021 help
22 Do not enable instruction cache in U-Boot.
23
Trevor Woerner10015022019-05-03 09:41:00 -040024config SPL_SYS_ICACHE_OFF
25 bool "Do not enable icache in SPL"
26 depends on SPL
27 default SYS_ICACHE_OFF
28 help
29 Do not enable instruction cache in SPL.
30
Trevor Woernera0aba8a2019-05-03 09:40:59 -040031config SYS_DCACHE_OFF
32 bool "Do not enable dcache"
Trevor Woernera0aba8a2019-05-03 09:40:59 -040033 help
34 Do not enable data cache in U-Boot.
35
Trevor Woerner10015022019-05-03 09:41:00 -040036config SPL_SYS_DCACHE_OFF
37 bool "Do not enable dcache in SPL"
38 depends on SPL
39 default SYS_DCACHE_OFF
40 help
41 Do not enable data cache in SPL.
42
Chris Zankel7e270ec2016-08-10 18:36:48 +030043source "board/cadence/xtfpga/Kconfig"
Chris Zankelc978b522016-08-10 18:36:44 +030044
45endmenu