blob: 435333720c734afa2008fb5671a702c237392898 [file] [log] [blame]
Masahiro Yamadadd840582014-07-30 14:08:14 +09001menu "NDS32 architecture"
2 depends on NDS32
3
4config SYS_ARCH
Masahiro Yamadadd840582014-07-30 14:08:14 +09005 default "nds32"
6
7choice
8 prompt "Target select"
Joe Hershbergera26cd042015-05-12 14:46:23 -05009 optional
Masahiro Yamadadd840582014-07-30 14:08:14 +090010
Masahiro Yamadadd840582014-07-30 14:08:14 +090011config TARGET_ADP_AG101P
12 bool "Support adp-ag101p"
13
rickb841b6e2017-05-18 14:37:53 +080014config TARGET_ADP_AE3XX
15 bool "Support adp-ae3xx"
16
Masahiro Yamadadd840582014-07-30 14:08:14 +090017endchoice
18
Trevor Woernera0aba8a2019-05-03 09:40:59 -040019config SYS_ICACHE_OFF
20 bool "Do not enable icache"
Trevor Woernera0aba8a2019-05-03 09:40:59 -040021 help
22 Do not enable instruction cache in U-Boot.
23
Trevor Woerner10015022019-05-03 09:41:00 -040024config 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
Trevor Woernera0aba8a2019-05-03 09:40:59 -040031config SYS_DCACHE_OFF
32 bool "Do not enable dcache"
Trevor Woernera0aba8a2019-05-03 09:40:59 -040033 help
34 Do not enable data cache in U-Boot.
35
Trevor Woerner10015022019-05-03 09:41:00 -040036config 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
Masahiro Yamadadd840582014-07-30 14:08:14 +090043source "board/AndesTech/adp-ag101p/Kconfig"
rickb841b6e2017-05-18 14:37:53 +080044source "board/AndesTech/adp-ae3xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +090045
46endmenu