ARM: dts: stm32: Reinstate card detect behavior on ST boards
[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 SPL_SYS_ICACHE_OFF
26         bool "Do not enable icache in SPL"
27         depends on SPL
28         default SYS_ICACHE_OFF
29         help
30           Do not enable instruction cache in SPL.
31
32 config SYS_DCACHE_OFF
33         bool "Do not enable dcache"
34         default n
35         help
36           Do not enable data cache in U-Boot.
37
38 config SPL_SYS_DCACHE_OFF
39         bool "Do not enable dcache in SPL"
40         depends on SPL
41         default SYS_DCACHE_OFF
42         help
43           Do not enable data cache in SPL.
44
45 source "board/cadence/xtfpga/Kconfig"
46
47 endmenu