CONFIG_SYS_[DI]CACHE_OFF: convert to Kconfig
[platform/kernel/u-boot.git] / arch / nds32 / Kconfig
1 menu "NDS32 architecture"
2         depends on NDS32
3
4 config SYS_ARCH
5         default "nds32"
6
7 choice
8         prompt "Target select"
9         optional
10
11 config TARGET_ADP_AG101P
12         bool "Support adp-ag101p"
13
14 config TARGET_ADP_AE3XX
15         bool "Support adp-ae3xx"
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/AndesTech/adp-ag101p/Kconfig"
32 source "board/AndesTech/adp-ae3xx/Kconfig"
33
34 endmenu