1menu "NDS32 architecture"
2	depends on NDS32
3
4config SYS_ARCH
5	default "nds32"
6
7choice
8	prompt "Target select"
9	optional
10
11config TARGET_ADP_AG101P
12	bool "Support adp-ag101p"
13
14config TARGET_ADP_AE3XX
15	bool "Support adp-ae3xx"
16
17endchoice
18
19config SYS_ICACHE_OFF
20	bool "Do not enable icache"
21	default n
22	help
23	  Do not enable instruction cache in U-Boot.
24
25config 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
32config SYS_DCACHE_OFF
33	bool "Do not enable dcache"
34	default n
35	help
36	  Do not enable data cache in U-Boot.
37
38config 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
45source "board/AndesTech/adp-ag101p/Kconfig"
46source "board/AndesTech/adp-ae3xx/Kconfig"
47
48endmenu
49