]>
Commit | Line | Data |
---|---|---|
dd84058d MY |
1 | menu "NDS32 architecture" |
2 | depends on NDS32 | |
3 | ||
4 | config SYS_ARCH | |
dd84058d MY |
5 | default "nds32" |
6 | ||
7 | choice | |
8 | prompt "Target select" | |
a26cd049 | 9 | optional |
dd84058d | 10 | |
dd84058d MY |
11 | config TARGET_ADP_AG101P |
12 | bool "Support adp-ag101p" | |
13 | ||
b841b6e9 | 14 | config TARGET_ADP_AE3XX |
15 | bool "Support adp-ae3xx" | |
16 | ||
dd84058d MY |
17 | endchoice |
18 | ||
a0aba8a2 TW |
19 | config SYS_ICACHE_OFF |
20 | bool "Do not enable icache" | |
a0aba8a2 TW |
21 | help |
22 | Do not enable instruction cache in U-Boot. | |
23 | ||
10015025 TW |
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 | ||
a0aba8a2 TW |
31 | config SYS_DCACHE_OFF |
32 | bool "Do not enable dcache" | |
a0aba8a2 TW |
33 | help |
34 | Do not enable data cache in U-Boot. | |
35 | ||
10015025 TW |
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 | ||
dd84058d | 43 | source "board/AndesTech/adp-ag101p/Kconfig" |
b841b6e9 | 44 | source "board/AndesTech/adp-ae3xx/Kconfig" |
dd84058d MY |
45 | |
46 | endmenu |