blob: 545fc3e243cdf0b8c1d05237b84fde3432e2309a [file] [log] [blame]
Masahiro Yamadadd840582014-07-30 14:08:14 +09001menu "ARC architecture"
2 depends on ARC
3
4config SYS_ARCH
Masahiro Yamadadd840582014-07-30 14:08:14 +09005 default "arc"
6
Alexey Brodkine20bcb02014-12-25 18:47:45 +03007config SYS_CPU
Alexey Brodkinf13606b2015-01-13 18:35:46 +03008 default "arcv1" if ISA_ARCOMPACT
9 default "arcv2" if ISA_ARCV2
10
11choice
12 prompt "ARC Instruction Set"
13 default ISA_ARCOMPACT
14
15config ISA_ARCOMPACT
16 bool "ARCompact ISA"
17 help
18 The original ARC ISA of ARC600/700 cores
19
20config ISA_ARCV2
21 bool "ARC ISA v2"
22 help
23 ISA for the Next Generation ARC-HS cores
24
25endchoice
Alexey Brodkine20bcb02014-12-25 18:47:45 +030026
Masahiro Yamadadd840582014-07-30 14:08:14 +090027choice
Alexey Brodkin812980b2015-02-03 13:58:11 +030028 prompt "CPU selection"
Alexey Brodkinf13606b2015-01-13 18:35:46 +030029 default CPU_ARC770D if ISA_ARCOMPACT
30 default CPU_ARCHS38 if ISA_ARCV2
Alexey Brodkin812980b2015-02-03 13:58:11 +030031
32config CPU_ARC750D
33 bool "ARC 750D"
Alexey Brodkinf13606b2015-01-13 18:35:46 +030034 depends on ISA_ARCOMPACT
Michal Simek58008cb2018-07-23 15:55:15 +020035 select ARC_MMU_V2
Alexey Brodkin812980b2015-02-03 13:58:11 +030036 help
37 Choose this option to build an U-Boot for ARC750D CPU.
38
39config CPU_ARC770D
40 bool "ARC 770D"
Alexey Brodkinf13606b2015-01-13 18:35:46 +030041 depends on ISA_ARCOMPACT
Michal Simek58008cb2018-07-23 15:55:15 +020042 select ARC_MMU_V3
Alexey Brodkin812980b2015-02-03 13:58:11 +030043 help
44 Choose this option to build an U-Boot for ARC770D CPU.
45
Alexey Brodkinf13606b2015-01-13 18:35:46 +030046config CPU_ARCEM6
47 bool "ARC EM6"
Alexey Brodkinf13606b2015-01-13 18:35:46 +030048 depends on ISA_ARCV2
Michal Simek58008cb2018-07-23 15:55:15 +020049 select ARC_MMU_ABSENT
Alexey Brodkinf13606b2015-01-13 18:35:46 +030050 help
51 Next Generation ARC Core based on ISA-v2 ISA without MMU.
52
53config CPU_ARCHS36
54 bool "ARC HS36"
Alexey Brodkinf13606b2015-01-13 18:35:46 +030055 depends on ISA_ARCV2
Michal Simek58008cb2018-07-23 15:55:15 +020056 select ARC_MMU_ABSENT
Alexey Brodkinf13606b2015-01-13 18:35:46 +030057 help
58 Next Generation ARC Core based on ISA-v2 ISA without MMU.
59
60config CPU_ARCHS38
61 bool "ARC HS38"
Alexey Brodkinf13606b2015-01-13 18:35:46 +030062 depends on ISA_ARCV2
Michal Simek58008cb2018-07-23 15:55:15 +020063 select ARC_MMU_V4
Alexey Brodkinf13606b2015-01-13 18:35:46 +030064 help
65 Next Generation ARC Core based on ISA-v2 ISA with MMU.
66
Alexey Brodkin812980b2015-02-03 13:58:11 +030067endchoice
68
69choice
70 prompt "MMU Version"
71 default ARC_MMU_V3 if CPU_ARC770D
72 default ARC_MMU_V2 if CPU_ARC750D
Alexey Brodkinf13606b2015-01-13 18:35:46 +030073 default ARC_MMU_ABSENT if CPU_ARCEM6
74 default ARC_MMU_ABSENT if CPU_ARCHS36
75 default ARC_MMU_V4 if CPU_ARCHS38
76
77config ARC_MMU_ABSENT
78 bool "No MMU"
79 help
80 No MMU
Alexey Brodkin812980b2015-02-03 13:58:11 +030081
82config ARC_MMU_V2
83 bool "MMU v2"
84 depends on CPU_ARC750D
85 help
86 Fixed the deficiency of v1 - possible thrashing in memcpy sceanrio
87 when 2 D-TLB and 1 I-TLB entries index into same 2way set.
88
89config ARC_MMU_V3
90 bool "MMU v3"
91 depends on CPU_ARC770D
92 help
93 Introduced with ARC700 4.10: New Features
94 Variable Page size (1k-16k), var JTLB size 128 x (2 or 4)
95 Shared Address Spaces (SASID)
96
Alexey Brodkinf13606b2015-01-13 18:35:46 +030097config ARC_MMU_V4
98 bool "MMU v4"
99 depends on CPU_ARCHS38
100 help
101 Introduced as a part of ARC HS38 release.
102
Alexey Brodkin812980b2015-02-03 13:58:11 +0300103endchoice
104
Alexey Brodkin1f9ad442015-02-03 13:58:14 +0300105config CPU_BIG_ENDIAN
106 bool "Enable Big Endian Mode"
107 default n
108 help
109 Build kernel for Big Endian Mode of ARC CPU
110
Alexey Brodkin205e7a72015-02-03 13:58:13 +0300111config SYS_ICACHE_OFF
Trevor Woernera0aba8a2019-05-03 09:40:59 -0400112 bool "Do not enable icache"
Alexey Brodkin205e7a72015-02-03 13:58:13 +0300113 default n
Trevor Woernera0aba8a2019-05-03 09:40:59 -0400114 help
115 Do not enable instruction cache in U-Boot.
Alexey Brodkin205e7a72015-02-03 13:58:13 +0300116
Trevor Woerner10015022019-05-03 09:41:00 -0400117config SPL_SYS_ICACHE_OFF
118 bool "Do not enable icache in SPL"
119 depends on SPL
120 default SYS_ICACHE_OFF
121 help
122 Do not enable instruction cache in SPL.
123
Alexey Brodkin205e7a72015-02-03 13:58:13 +0300124config SYS_DCACHE_OFF
Trevor Woernera0aba8a2019-05-03 09:40:59 -0400125 bool "Do not enable dcache"
Alexey Brodkin205e7a72015-02-03 13:58:13 +0300126 default n
Trevor Woernera0aba8a2019-05-03 09:40:59 -0400127 help
128 Do not enable data cache in U-Boot.
Alexey Brodkin205e7a72015-02-03 13:58:13 +0300129
Trevor Woerner10015022019-05-03 09:41:00 -0400130config SPL_SYS_DCACHE_OFF
131 bool "Do not enable dcache in SPL"
132 depends on SPL
133 default SYS_DCACHE_OFF
134 help
135 Do not enable data cache in SPL.
136
Eugeniy Paltsev48b04832018-03-21 15:58:59 +0300137menuconfig ARC_DBG
138 bool "ARC debugging"
139 default n
140
141if ARC_DBG
142
143config ARC_DBG_IOC_ENABLE
144 bool "Enable IO coherency unit"
145 depends on CPU_ARCHS38
146 default n
147 help
148 Enable IO coherency unit to debug problems with caches and
149 DMA peripherals.
150 NOTE: as of today linux will not work properly if this option
151 is enabled in u-boot!
152
153endif
154
Alexey Brodkin812980b2015-02-03 13:58:11 +0300155choice
Masahiro Yamadadd840582014-07-30 14:08:14 +0900156 prompt "Target select"
Vlad Zakharov0c770922017-03-21 14:49:48 +0300157 default TARGET_AXS103
Masahiro Yamadadd840582014-07-30 14:08:14 +0900158
159config TARGET_TB100
160 bool "Support tb100"
161
Alexey Brodkincc8be222016-08-04 14:35:01 +0300162config TARGET_NSIM
Alexey Brodkin95f71032019-12-26 14:47:42 +0300163 bool "Support ARC simulation & prototyping platforms"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900164
Vlad Zakharov0c770922017-03-21 14:49:48 +0300165config TARGET_AXS101
166 bool "Support Synopsys Designware SDP board AXS101"
Philipp Tomsich2acc24f2018-11-30 22:13:25 +0100167 select BOUNCE_BUFFER if CMD_NAND
Vlad Zakharov0c770922017-03-21 14:49:48 +0300168
169config TARGET_AXS103
170 bool "Support Synopsys Designware SDP board AXS103"
Philipp Tomsich2acc24f2018-11-30 22:13:25 +0100171 select BOUNCE_BUFFER if CMD_NAND
Masahiro Yamadadd840582014-07-30 14:08:14 +0900172
Alexey Brodkinadc9b092018-10-18 09:54:58 +0300173config TARGET_EMSDP
174 bool "Synopsys EM Software Development Platform"
Alexey Brodkin2c3f9262018-05-28 15:27:43 +0300175 select CPU_ARCEM6
176
Alexey Brodkin67482f52016-11-25 16:23:43 +0300177config TARGET_HSDK
178 bool "Support Synpsys HS DevelopmentKit board"
179
Alexey Brodkin5396e8b2018-01-24 21:37:14 +0300180config TARGET_IOT_DEVKIT
181 bool "Synopsys Brite IoT Development kit"
182 select CPU_ARCEM6
183
Masahiro Yamadadd840582014-07-30 14:08:14 +0900184endchoice
185
186source "board/abilis/tb100/Kconfig"
Alexey Brodkin65fcba12016-08-04 15:00:35 +0300187source "board/synopsys/axs10x/Kconfig"
Alexey Brodkinadc9b092018-10-18 09:54:58 +0300188source "board/synopsys/emsdp/Kconfig"
Alexey Brodkin67482f52016-11-25 16:23:43 +0300189source "board/synopsys/hsdk/Kconfig"
Alexey Brodkin5396e8b2018-01-24 21:37:14 +0300190source "board/synopsys/iot_devkit/Kconfig"
Alexey Brodkin95f71032019-12-26 14:47:42 +0300191source "board/synopsys/nsim/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900192
193endmenu