Merge branch 'network_master' of https://source.denx.de/u-boot/custodians/u-boot...
[platform/kernel/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         help
22           Do not enable instruction cache in U-Boot.
23
24 config 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
31 config SYS_DCACHE_OFF
32         bool "Do not enable dcache"
33         help
34           Do not enable data cache in U-Boot.
35
36 config 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
43 source "board/cadence/xtfpga/Kconfig"
44
45 endmenu