Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1 | menu "NDS32 architecture" |
| 2 | depends on NDS32 |
| 3 | |
| 4 | config SYS_ARCH |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 5 | default "nds32" |
| 6 | |
| 7 | choice |
| 8 | prompt "Target select" |
Joe Hershberger | a26cd04 | 2015-05-12 14:46:23 -0500 | [diff] [blame] | 9 | optional |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 10 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 11 | config TARGET_ADP_AG101P |
| 12 | bool "Support adp-ag101p" |
| 13 | |
rick | b841b6e | 2017-05-18 14:37:53 +0800 | [diff] [blame] | 14 | config TARGET_ADP_AE3XX |
| 15 | bool "Support adp-ae3xx" |
| 16 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 17 | endchoice |
| 18 | |
Trevor Woerner | a0aba8a | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 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 | |
Trevor Woerner | 1001502 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 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 | |
Trevor Woerner | a0aba8a | 2019-05-03 09:40:59 -0400 | [diff] [blame] | 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 | |
Trevor Woerner | 1001502 | 2019-05-03 09:41:00 -0400 | [diff] [blame] | 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 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 45 | source "board/AndesTech/adp-ag101p/Kconfig" |
rick | b841b6e | 2017-05-18 14:37:53 +0800 | [diff] [blame] | 46 | source "board/AndesTech/adp-ae3xx/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 47 | |
| 48 | endmenu |