CONFIG_SYS_[DI]CACHE_OFF: convert to Kconfig
[oweals/u-boot.git] / arch / xtensa / Kconfig
1 menu "Xtensa architecture"
2         depends on XTENSA
3
4 config SYS_ARCH
5         string
6         default "xtensa"
7
8 config SYS_CPU
9         string "Xtensa Core Variant"
10
11 choice
12         prompt "Target select"
13
14 config TARGET_XTFPGA
15         bool "Support XTFPGA"
16
17 endchoice
18
19 config SYS_ICACHE_OFF
20         bool "Do not enable icache"
21         default n
22         help
23           Do not enable instruction cache in U-Boot.
24
25 config SYS_DCACHE_OFF
26         bool "Do not enable dcache"
27         default n
28         help
29           Do not enable data cache in U-Boot.
30
31 source "board/cadence/xtfpga/Kconfig"
32
33 endmenu