blob: 49bc9d83756c645bbe10d55f5340ebb8712455a4 [file] [log] [blame]
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09005 default "arm"
6
Masahiro Yamada0d46c342014-09-14 03:01:51 +09007config ARM64
8 bool
Masahiro Yamada653e9fe2016-07-25 19:56:03 +09009 select PHYS_64BIT
Tom Rini84f9b612016-08-22 08:22:17 -040010 select SYS_CACHE_SHIFT_6
Masahiro Yamada0d46c342014-09-14 03:01:51 +090011
Lokesh Vutlaf94277d2016-03-24 16:02:00 +053012config DMA_ADDR_T_64BIT
13 bool
14 default y if ARM64
15
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010016config HAS_VBAR
Tom Rinibca01962016-08-22 08:22:18 -040017 bool
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010018
Albert ARIBAUDa3823222015-10-23 18:06:40 +020019config HAS_THUMB2
Tom Rinibca01962016-08-22 08:22:18 -040020 bool
Albert ARIBAUDa3823222015-10-23 18:06:40 +020021
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010022config CPU_ARM720T
Tom Rinibca01962016-08-22 08:22:18 -040023 bool
Tom Rini84f9b612016-08-22 08:22:17 -040024 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010025
26config CPU_ARM920T
Tom Rinibca01962016-08-22 08:22:18 -040027 bool
Tom Rini84f9b612016-08-22 08:22:17 -040028 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010029
30config CPU_ARM926EJS
Tom Rinibca01962016-08-22 08:22:18 -040031 bool
Tom Rini84f9b612016-08-22 08:22:17 -040032 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010033
34config CPU_ARM946ES
Tom Rinibca01962016-08-22 08:22:18 -040035 bool
Tom Rini84f9b612016-08-22 08:22:17 -040036 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010037
38config CPU_ARM1136
Tom Rinibca01962016-08-22 08:22:18 -040039 bool
Tom Rini84f9b612016-08-22 08:22:17 -040040 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010041
42config CPU_ARM1176
Tom Rinibca01962016-08-22 08:22:18 -040043 bool
44 select HAS_VBAR
Tom Rini84f9b612016-08-22 08:22:17 -040045 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010046
47config CPU_V7
Tom Rinibca01962016-08-22 08:22:18 -040048 bool
49 select HAS_VBAR
50 select HAS_THUMB2
Tom Rini84f9b612016-08-22 08:22:17 -040051 select SYS_CACHE_SHIFT_6
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010052
rev13@wp.plb3b57e82015-03-01 12:44:39 +010053config CPU_V7M
54 bool
Tom Rinibca01962016-08-22 08:22:18 -040055 select HAS_THUMB2
Tom Rini84f9b612016-08-22 08:22:17 -040056 select SYS_CACHE_SHIFT_5
rev13@wp.plb3b57e82015-03-01 12:44:39 +010057
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010058config CPU_PXA
Tom Rinibca01962016-08-22 08:22:18 -040059 bool
Tom Rini84f9b612016-08-22 08:22:17 -040060 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010061
62config CPU_SA1100
Tom Rinibca01962016-08-22 08:22:18 -040063 bool
Tom Rini84f9b612016-08-22 08:22:17 -040064 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010065
66config SYS_CPU
Tom Rinibca01962016-08-22 08:22:18 -040067 default "arm720t" if CPU_ARM720T
68 default "arm920t" if CPU_ARM920T
69 default "arm926ejs" if CPU_ARM926EJS
70 default "arm946es" if CPU_ARM946ES
71 default "arm1136" if CPU_ARM1136
72 default "arm1176" if CPU_ARM1176
73 default "armv7" if CPU_V7
74 default "armv7m" if CPU_V7M
75 default "pxa" if CPU_PXA
76 default "sa1100" if CPU_SA1100
Masahiro Yamadadade3b02014-11-06 11:39:27 +090077 default "armv8" if ARM64
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010078
Marek Vasutb06c9542016-05-26 18:01:36 +020079config SYS_ARM_ARCH
80 int
81 default 4 if CPU_ARM720T
82 default 4 if CPU_ARM920T
83 default 5 if CPU_ARM926EJS
84 default 5 if CPU_ARM946ES
85 default 6 if CPU_ARM1136
86 default 6 if CPU_ARM1176
87 default 7 if CPU_V7
88 default 7 if CPU_V7M
89 default 5 if CPU_PXA
90 default 4 if CPU_SA1100
91 default 8 if ARM64
92
Tom Rini84f9b612016-08-22 08:22:17 -040093config SYS_CACHE_SHIFT_5
94 bool
95
96config SYS_CACHE_SHIFT_6
97 bool
98
99config SYS_CACHE_SHIFT_7
100 bool
101
102config SYS_CACHELINE_SIZE
103 int
104 default 128 if SYS_CACHE_SHIFT_7
105 default 64 if SYS_CACHE_SHIFT_6
106 default 32 if SYS_CACHE_SHIFT_5
107
Linus Walleij800d6fd2015-01-23 11:50:53 +0100108config SEMIHOSTING
109 bool "support boot from semihosting"
110 help
111 In emulated environments, semihosting is a way for
112 the hosted environment to call out to the emulator to
113 retrieve files from the host machine.
114
Peng Fan10ddab42015-08-19 15:48:57 +0800115config SYS_L2CACHE_OFF
116 bool "L2cache off"
117 help
118 If SoC does not support L2CACHE or one do not want to enable
119 L2CACHE, choose this option.
120
Andre Przywara48321ba2016-05-31 10:45:06 -0700121config ENABLE_ARM_SOC_BOOT0_HOOK
122 bool "prepare BOOT0 header"
123 help
124 If the SoC's BOOT0 requires a header area filled with (magic)
125 values, then choose this option, and create a define called
126 ARM_SOC_BOOT0_HOOK which contains the required assembler
127 preprocessor code.
128
Alison Wang73818d52016-11-10 10:49:03 +0800129config ARM64_SUPPORT_AARCH32
130 bool "ARM64 system support AArch32 execution state"
131 default y if ARM64 && !TARGET_THUNDERX_88XX
132 help
133 This ARM64 system supports AArch32 execution state.
134
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900135choice
136 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -0600137 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900138
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900139config ARCH_AT91
140 bool "Atmel AT91"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900141
142config TARGET_EDB93XX
143 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100144 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900145
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900146config TARGET_VCMA9
147 bool "Support VCMA9"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100148 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900149
150config TARGET_SMDK2410
151 bool "Support smdk2410"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100152 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900153
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900154config TARGET_ASPENITE
155 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100156 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900157
158config TARGET_GPLUGD
159 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100160 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900161
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900162config ARCH_DAVINCI
163 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100164 select CPU_ARM926EJS
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900165 help
166 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900167
Masahiro Yamadad7570852014-08-31 07:10:59 +0900168config KIRKWOOD
169 bool "Marvell Kirkwood"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100170 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900171
Stefan Roese383e0c12015-08-25 13:18:38 +0200172config ARCH_MVEBU
Stefan Roesecb410332016-05-25 08:13:45 +0200173 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese096de4f2015-09-01 11:27:52 +0200174 select OF_CONTROL
175 select OF_SEPARATE
176 select DM
Stefan Roese05b38c12015-11-19 07:46:15 +0100177 select DM_ETH
Stefan Roese7f9f8e32015-09-02 08:41:41 +0200178 select DM_SERIAL
Stefan Roese49e7d772015-11-20 13:51:57 +0100179 select DM_SPI
180 select DM_SPI_FLASH
Stefan Roese9b1e2312014-10-22 12:13:19 +0200181
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900182config TARGET_DEVKIT3250
183 bool "Support devkit3250"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100184 select CPU_ARM926EJS
Vladimir Zapolskiy89f86a22015-07-18 01:47:11 +0300185 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900186
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200187config TARGET_WORK_92105
188 bool "Support work_92105"
189 select CPU_ARM926EJS
190 select SUPPORT_SPL
191
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900192config TARGET_MX25PDK
193 bool "Support mx25pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100194 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900195
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900196config TARGET_ZMX25
197 bool "Support zmx25"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100198 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900199
200config TARGET_APF27
201 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100202 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900203 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900204
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900205config TARGET_APX4DEVKIT
206 bool "Support apx4devkit"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100207 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900208 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900209
210config TARGET_XFI3
211 bool "Support xfi3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100212 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900213 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900214
215config TARGET_M28EVK
216 bool "Support m28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100217 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900218 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900219
220config TARGET_MX23EVK
221 bool "Support mx23evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100222 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900223 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900224
225config TARGET_MX28EVK
226 bool "Support mx28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100227 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900228 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900229
230config TARGET_MX23_OLINUXINO
231 bool "Support mx23_olinuxino"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100232 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900233 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900234
235config TARGET_BG0900
236 bool "Support bg0900"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100237 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900238 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900239
240config TARGET_SANSA_FUZE_PLUS
241 bool "Support sansa_fuze_plus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100242 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900243 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900244
245config TARGET_SC_SPS_1
246 bool "Support sc_sps_1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100247 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900248 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900249
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900250config ORION5X
251 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100252 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900253
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900254config TARGET_SPEAR300
255 bool "Support spear300"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100256 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900257
258config TARGET_SPEAR310
259 bool "Support spear310"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100260 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900261
262config TARGET_SPEAR320
263 bool "Support spear320"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100264 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900265
266config TARGET_SPEAR600
267 bool "Support spear600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100268 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900269
Vikas Manocha33913c52014-11-18 10:42:22 -0800270config TARGET_STV0991
271 bool "Support stv0991"
272 select CPU_V7
Masahiro Yamada0906a822015-03-31 12:48:01 +0900273 select DM
274 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700275 select DM_SPI
276 select DM_SPI_FLASH
277 select SPI_FLASH
Vikas Manocha33913c52014-11-18 10:42:22 -0800278
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900279config TARGET_X600
280 bool "Support x600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100281 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900282 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900283
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900284config TARGET_IMX31_PHYCORE
285 bool "Support imx31_phycore"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100286 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900287
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900288config TARGET_MX31ADS
289 bool "Support mx31ads"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100290 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900291
292config TARGET_MX31PDK
293 bool "Support mx31pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100294 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900295 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900296
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900297config TARGET_WOODBURN
298 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100299 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900300
301config TARGET_WOODBURN_SD
302 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100303 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900304 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900305
306config TARGET_FLEA3
307 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100308 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900309
310config TARGET_MX35PDK
311 bool "Support mx35pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100312 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900313
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900314config ARCH_BCM283X
315 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900316 select DM
317 select DM_SERIAL
318 select DM_GPIO
Stephen Warrendc7ea682015-02-16 12:16:15 -0700319
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900320config TARGET_VEXPRESS_CA15_TC2
321 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100322 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100323 select CPU_V7_HAS_NONSEC
324 select CPU_V7_HAS_VIRT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900325
326config TARGET_VEXPRESS_CA5X2
327 bool "Support vexpress_ca5x2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100328 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900329
330config TARGET_VEXPRESS_CA9X4
331 bool "Support vexpress_ca9x4"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100332 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900333
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200334config TARGET_BRXRE1
335 bool "Support BRXRE1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100336 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900337 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900338
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200339config TARGET_BRPPT1
340 bool "Support BRPPT1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100341 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900342 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900343
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900344config TARGET_DRACO
345 bool "Support draco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100346 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900347 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200348 select DM
349 select DM_SERIAL
350 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900351
Heiko Schocher9ba67f22015-06-15 14:57:15 +0200352config TARGET_THUBAN
353 bool "Support thuban"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100354 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900355 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200356 select DM
357 select DM_SERIAL
358 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900359
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200360config TARGET_RASTABAN
361 bool "Support rastaban"
362 select CPU_V7
363 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200364 select DM
365 select DM_SERIAL
366 select DM_GPIO
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200367
Heiko Schochercbec11a2016-06-07 08:55:45 +0200368config TARGET_ETAMIN
Tom Rinibca01962016-08-22 08:22:18 -0400369 bool "Support etamin"
370 select CPU_V7
371 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200372 select DM
373 select DM_SERIAL
374 select DM_GPIO
Heiko Schochercbec11a2016-06-07 08:55:45 +0200375
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900376config TARGET_PXM2
377 bool "Support pxm2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100378 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900379 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200380 select DM
381 select DM_SERIAL
382 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900383
384config TARGET_RUT
385 bool "Support rut"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100386 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900387 select SUPPORT_SPL
Heiko Schocher107ef972016-06-13 15:16:01 +0200388 select DM
389 select DM_SERIAL
390 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900391
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900392config TARGET_TI814X_EVM
393 bool "Support ti814x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100394 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900395 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900396
397config TARGET_TI816X_EVM
398 bool "Support ti816x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100399 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900400 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900401
Steve Rae45f2c702016-06-02 15:10:56 -0700402config TARGET_BCM23550_W1D
403 bool "Support bcm23550_w1d"
404 select CPU_V7
405
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900406config TARGET_BCM28155_AP
407 bool "Support bcm28155_ap"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100408 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900409
Steve Rae1c5f31c2014-11-11 11:32:18 -0800410config TARGET_BCMCYGNUS
411 bool "Support bcmcygnus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100412 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700413
Steve Rae1c5f31c2014-11-11 11:32:18 -0800414config TARGET_BCMNSP
415 bool "Support bcmnsp"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100416 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700417
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900418config ARCH_EXYNOS
419 bool "Samsung EXYNOS"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900420 select DM
421 select DM_SPI_FLASH
422 select DM_SERIAL
423 select DM_SPI
424 select DM_GPIO
Simon Glassaa8484f2015-10-18 21:17:17 -0600425 select DM_KEYBOARD
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900426
Simon Glass96aa0722014-10-07 22:01:50 -0600427config ARCH_S5PC1XX
428 bool "Samsung S5PC1XX"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100429 select CPU_V7
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900430 select DM
431 select DM_SERIAL
432 select DM_GPIO
Simon Glass96aa0722014-10-07 22:01:50 -0600433
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900434config ARCH_HIGHBANK
435 bool "Calxeda Highbank"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100436 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900437
Masahiro Yamadacad44162015-04-21 21:59:36 +0900438config ARCH_INTEGRATOR
439 bool "ARM Ltd. Integrator family"
Linus Walleij616d9a02015-07-27 11:22:48 +0200440 select DM
441 select DM_SERIAL
Masahiro Yamadacad44162015-04-21 21:59:36 +0900442
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900443config ARCH_KEYSTONE
444 bool "TI Keystone"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100445 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900446 select SUPPORT_SPL
Tom Rini393a4ce2016-03-16 09:19:43 -0400447 select CMD_POWEROFF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900448
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200449config ARCH_MESON
450 bool "Amlogic Meson"
451 help
452 Support for the Meson SoC family developed by Amlogic Inc.,
453 targeted at media players and tablet computers. We currently
454 support the S905 (GXBaby) 64-bit SoC.
455
Adrian Alonso98810772015-09-03 11:49:28 -0500456config ARCH_MX7
457 bool "Freescale MX7"
458 select CPU_V7
459
Boris BREZILLON51e82662015-03-04 13:13:03 +0100460config ARCH_MX6
461 bool "Freescale MX6"
462 select CPU_V7
463
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200464config ARCH_MX5
465 bool "Freescale MX5"
466 select CPU_V7
467
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900468config TARGET_M53EVK
469 bool "Support m53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100470 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900471 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900472
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900473config TARGET_MX51EVK
474 bool "Support mx51evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100475 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900476
477config TARGET_MX53ARD
478 bool "Support mx53ard"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100479 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900480
481config TARGET_MX53EVK
482 bool "Support mx53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100483 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900484
485config TARGET_MX53LOCO
486 bool "Support mx53loco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100487 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900488
489config TARGET_MX53SMD
490 bool "Support mx53smd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100491 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900492
Masahiro Yamadadd678432014-08-31 07:11:02 +0900493config OMAP34XX
494 bool "OMAP34XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100495 select CPU_V7
Tom Rini9d245eb2016-07-27 22:29:40 -0400496 select SUPPORT_SPL
Tom Rinib631c9d2016-07-27 22:29:41 -0400497 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900498
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900499config OMAP44XX
500 bool "OMAP44XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100501 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900502 select SUPPORT_SPL
Tom Rinib631c9d2016-07-27 22:29:41 -0400503 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900504
Masahiro Yamada420b8162014-08-31 07:11:04 +0900505config OMAP54XX
506 bool "OMAP54XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100507 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900508 select SUPPORT_SPL
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500509
510config AM43XX
511 bool "AM43XX SoC"
512 select CPU_V7
513 select SUPPORT_SPL
514 help
515 Support for AM43xx SOC from Texas Instruments.
516 The AM43xx high performance SOC features a Cortex-A9
517 ARM core, a quad core PRU-ICSS for industrial Ethernet
518 protocols, dual camera support, optional 3D graphics
519 and an optional customer programmable secure boot.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900520
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500521config AM33XX
522 bool "AM33XX SoC"
523 select CPU_V7
524 select SUPPORT_SPL
525 help
526 Support for AM335x SOC from Texas Instruments.
527 The AM335x high performance SOC features a Cortex-A8
528 ARM core, a dual core PRU-ICSS for industrial Ethernet
529 protocols, optional 3D graphics and an optional customer
530 programmable secure boot.
531
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900532config ARCH_RMOBILE
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900533 bool "Renesas ARM SoCs"
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900534 select DM
535 select DM_SERIAL
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300536
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300537config TARGET_S32V234EVB
538 bool "Support s32v234evb"
539 select ARM64
540
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200541config ARCH_SNAPDRAGON
542 bool "Qualcomm Snapdragon SoCs"
543 select ARM64
544 select DM
545 select DM_GPIO
546 select DM_SERIAL
547 select SPMI
548 select OF_CONTROL
549 select OF_SEPARATE
550
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900551config ARCH_SOCFPGA
552 bool "Altera SOCFPGA family"
Marek Vasut69295472014-12-30 18:16:08 +0100553 select CPU_V7
554 select SUPPORT_SPL
Marek Vasutf44fb6f2015-08-19 23:23:52 +0200555 select OF_CONTROL
556 select SPL_OF_CONTROL
Masahiro Yamadae2005542015-03-31 12:47:59 +0900557 select DM
558 select DM_SPI_FLASH
559 select DM_SPI
Marek Vasut69295472014-12-30 18:16:08 +0100560
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300561config TARGET_CM_T43
562 bool "Support cm_t43"
563 select CPU_V7
564 select SUPPORT_SPL
565
Ian Campbelld8e69e02014-10-24 21:20:44 +0100566config ARCH_SUNXI
567 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedec9511672016-04-03 09:41:44 +0200568 select CMD_GPIO
Hans de Goede2c526402016-05-15 13:51:58 +0200569 select CMD_MMC if MMC
Hans de Goede16eac6562015-06-17 20:54:07 +0200570 select CMD_USB
Hans de Goede03914882015-04-15 20:46:48 +0200571 select DM
Tom Rini10e87172015-06-30 16:51:15 -0400572 select DM_ETH
Hans de Goedec8d43472015-12-21 20:22:00 +0100573 select DM_GPIO
574 select DM_KEYBOARD
Tom Rini10e87172015-06-30 16:51:15 -0400575 select DM_SERIAL
Hans de Goede0b3845a2015-06-17 17:44:58 +0200576 select DM_USB
Hans de Goede48a234a2016-03-22 22:51:52 +0100577 select OF_BOARD_SETUP
Hans de Goede03914882015-04-15 20:46:48 +0200578 select OF_CONTROL
579 select OF_SEPARATE
Alexander Graf0099be02016-03-29 17:29:07 +0200580 select SPL_STACK_R if SUPPORT_SPL
581 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede9cce88a2015-12-10 11:10:17 +0100582 select SYS_NS16550
Tom Rini10e87172015-06-30 16:51:15 -0400583 select USB
Hans de Goede16eac6562015-06-17 20:54:07 +0200584 select USB_STORAGE
Hans de Goede35e80a42015-08-04 17:04:13 +0200585 select USB_KEYBOARD
Hans de Goede42a31822016-06-10 12:19:40 +0200586 select USE_TINY_PRINTF
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800587
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400588config TARGET_TS4800
589 bool "Support TS4800"
590 select CPU_V7
591
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900592config TARGET_VF610TWR
593 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100594 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900595
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530596config TARGET_COLIBRI_VF
597 bool "Support Colibri VF50/61"
598 select CPU_V7
599
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200600config TARGET_PCM052
601 bool "Support pcm-052"
602 select CPU_V7
603
Albert ARIBAUD \(3ADEV\)ddef3b62016-09-26 09:08:08 +0200604config TARGET_BK4R1
605 bool "Support BK4r1"
606 select CPU_V7
607
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900608config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900609 bool "Xilinx Zynq Platform"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100610 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900611 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530612 select OF_CONTROL
Michal Simek6dae8492016-01-13 14:32:43 +0100613 select SPL_OF_CONTROL if SPL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900614 select DM
Michal Simek250e05e2015-11-30 14:14:56 +0100615 select DM_ETH
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530616 select DM_GPIO
Michal Simek6dae8492016-01-13 14:32:43 +0100617 select SPL_DM if SPL
Michal Simek9ecd2682015-11-30 16:13:03 +0100618 select DM_MMC
Simon Glass4cc87fb2016-07-05 17:10:15 -0600619 select DM_MMC_OPS
Jagan Teki0bd03a52015-06-27 00:51:32 +0530620 select DM_SPI
Simon Glass23d9b622015-10-17 19:41:27 -0600621 select DM_SERIAL
Jagan Teki0bd03a52015-06-27 00:51:32 +0530622 select DM_SPI_FLASH
Michal Simek6dae8492016-01-13 14:32:43 +0100623 select SPL_SEPARATE_BSS if SPL
Simon Glass476e63f2016-07-05 17:10:14 -0600624 select DM_USB if USB
Simon Glass4cc87fb2016-07-05 17:10:15 -0600625 select BLK
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900626
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530627config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100628 bool "Support Xilinx ZynqMP Platform"
629 select ARM64
Michal Simek25b83712015-10-17 19:41:25 -0600630 select DM
631 select OF_CONTROL
632 select DM_SERIAL
Michal Simek72536fd2015-11-20 13:17:22 +0100633 select SUPPORT_SPL
Michal Simek6f88c702016-07-14 15:07:54 +0200634 select CLK
635 select SPL_CLK
Simon Glass476e63f2016-07-05 17:10:14 -0600636 select DM_USB if USB
Michal Simek04b7e622015-01-15 10:01:51 +0100637
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900638config TEGRA
639 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900640
Linus Walleij800d6fd2015-01-23 11:50:53 +0100641config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900642 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900643 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900644
Linus Walleij800d6fd2015-01-23 11:50:53 +0100645config TARGET_VEXPRESS64_BASE_FVP
646 bool "Support Versatile Express ARMv8a FVP BASE model"
647 select ARM64
648 select SEMIHOSTING
649
Ryan Harkinb6b96652015-10-09 17:18:02 +0100650config TARGET_VEXPRESS64_BASE_FVP_DRAM
651 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
652 select ARM64
653 help
654 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
655 the default config to allow the user to load the images directly into
656 DRAM using model parameters rather than by using semi-hosting to load
657 the files from the host filesystem.
658
Linus Walleijc5822502015-01-23 14:41:10 +0100659config TARGET_VEXPRESS64_JUNO
660 bool "Support Versatile Express Juno Development Platform"
661 select ARM64
662
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530663config TARGET_LS2080A_EMU
664 bool "Support ls2080a_emu"
York Sun4dd8c612016-10-04 14:31:48 -0700665 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900666 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100667 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530668 help
669 Support for Freescale LS2080A_EMU platform
670 The LS2080A Development System (EMULATOR) is a pre silicon
671 development platform that supports the QorIQ LS2080A
672 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900673
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530674config TARGET_LS2080A_SIMU
675 bool "Support ls2080a_simu"
York Sun4dd8c612016-10-04 14:31:48 -0700676 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900677 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100678 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530679 help
680 Support for Freescale LS2080A_SIMU platform
681 The LS2080A Development System (QDS) is a pre silicon
682 development platform that supports the QorIQ LS2080A
683 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900684
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530685config TARGET_LS2080AQDS
686 bool "Support ls2080aqds"
York Sun4dd8c612016-10-04 14:31:48 -0700687 select ARCH_LS2080A
York Sun03017032015-03-20 19:28:23 -0700688 select ARM64
689 select ARMV8_MULTIENTRY
Scott Wood8e728cd2015-03-24 13:25:02 -0700690 select SUPPORT_SPL
York Sun03017032015-03-20 19:28:23 -0700691 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530692 Support for Freescale LS2080AQDS platform
693 The LS2080A Development System (QDS) is a high-performance
694 development platform that supports the QorIQ LS2080A
York Sun03017032015-03-20 19:28:23 -0700695 Layerscape Architecture processor.
696
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530697config TARGET_LS2080ARDB
698 bool "Support ls2080ardb"
York Sun4dd8c612016-10-04 14:31:48 -0700699 select ARCH_LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700700 select ARM64
701 select ARMV8_MULTIENTRY
Scott Wood212b8d82015-03-24 13:25:03 -0700702 select SUPPORT_SPL
York Sune12abcb2015-03-20 19:28:24 -0700703 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530704 Support for Freescale LS2080ARDB platform.
705 The LS2080A Reference design board (RDB) is a high-performance
706 development platform that supports the QorIQ LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700707 Layerscape Architecture processor.
708
Peter Griffin31f327e2015-07-30 18:55:23 +0100709config TARGET_HIKEY
710 bool "Support HiKey 96boards Consumer Edition Platform"
711 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100712 select DM
713 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100714 select DM_SERIAL
Peter Griffinc97c37a2016-04-20 17:13:59 +0100715 select OF_CONTROL
Peter Griffin31f327e2015-07-30 18:55:23 +0100716 help
717 Support for HiKey 96boards platform. It features a HI6220
718 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
719
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530720config TARGET_LS1012AQDS
721 bool "Support ls1012aqds"
York Sunb3d71642016-09-26 08:09:26 -0700722 select ARCH_LS1012A
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530723 select ARM64
724 help
725 Support for Freescale LS1012AQDS platform.
726 The LS1012A Development System (QDS) is a high-performance
727 development platform that supports the QorIQ LS1012A
728 Layerscape Architecture processor.
729
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530730config TARGET_LS1012ARDB
731 bool "Support ls1012ardb"
York Sunb3d71642016-09-26 08:09:26 -0700732 select ARCH_LS1012A
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530733 select ARM64
734 help
735 Support for Freescale LS1012ARDB platform.
736 The LS1012A Reference design board (RDB) is a high-performance
737 development platform that supports the QorIQ LS1012A
738 Layerscape Architecture processor.
739
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530740config TARGET_LS1012AFRDM
741 bool "Support ls1012afrdm"
York Sunb3d71642016-09-26 08:09:26 -0700742 select ARCH_LS1012A
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530743 select ARM64
744 help
745 Support for Freescale LS1012AFRDM platform.
746 The LS1012A Freedom board (FRDM) is a high-performance
747 development platform that supports the QorIQ LS1012A
748 Layerscape Architecture processor.
749
Wang Huanf0ce7d62014-09-05 13:52:44 +0800750config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800751 bool "Support ls1021aqds"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100752 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800753 select CPU_V7_HAS_NONSEC
754 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800755 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700756 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900757 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700758 select LS1_DEEP_SLEEP
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900759
Wang Huanddf89f92014-09-05 13:52:45 +0800760config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800761 bool "Support ls1021atwr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100762 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800763 select CPU_V7_HAS_NONSEC
764 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800765 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700766 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900767 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700768 select LS1_DEEP_SLEEP
Wang Huanddf89f92014-09-05 13:52:45 +0800769
Feng Li39e112d2016-11-03 14:15:17 +0800770config TARGET_LS1021AIOT
771 bool "Support ls1021aiot"
772 select CPU_V7
773 select CPU_V7_HAS_NONSEC
774 select CPU_V7_HAS_VIRT
775 select SUPPORT_SPL
776 select ARCH_LS1021A
777 select ARCH_SUPPORT_PSCI
778 help
779 Support for Freescale LS1021AIOT platform.
780 The LS1021A Freescale board (IOT) is a high-performance
781 development platform that supports the QorIQ LS1021A
782 Layerscape Architecture processor.
783
Shaohui Xiedd335672015-11-11 17:58:37 +0800784config TARGET_LS1043AQDS
785 bool "Support ls1043aqds"
York Sun149eb332016-09-26 08:09:27 -0700786 select ARCH_LS1043A
Shaohui Xiedd335672015-11-11 17:58:37 +0800787 select ARM64
788 select ARMV8_MULTIENTRY
789 select SUPPORT_SPL
790 help
791 Support for Freescale LS1043AQDS platform.
792
Mingkai Hueee86ff2015-10-26 19:47:52 +0800793config TARGET_LS1043ARDB
794 bool "Support ls1043ardb"
York Sun149eb332016-09-26 08:09:27 -0700795 select ARCH_LS1043A
Mingkai Hueee86ff2015-10-26 19:47:52 +0800796 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800797 select ARMV8_MULTIENTRY
Gong Qianyu8168a0f2015-10-26 19:47:53 +0800798 select SUPPORT_SPL
Mingkai Hueee86ff2015-10-26 19:47:52 +0800799 help
800 Support for Freescale LS1043ARDB platform.
801
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800802config TARGET_LS1046AQDS
803 bool "Support ls1046aqds"
York Sunbad49842016-09-26 08:09:24 -0700804 select ARCH_LS1046A
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800805 select ARM64
806 select ARMV8_MULTIENTRY
807 select SUPPORT_SPL
808 select DM_SPI_FLASH if DM_SPI
809 help
810 Support for Freescale LS1046AQDS platform.
811 The LS1046A Development System (QDS) is a high-performance
812 development platform that supports the QorIQ LS1046A
813 Layerscape Architecture processor.
814
Mingkai Hud2396512016-09-07 18:47:28 +0800815config TARGET_LS1046ARDB
816 bool "Support ls1046ardb"
York Sunbad49842016-09-26 08:09:24 -0700817 select ARCH_LS1046A
Mingkai Hud2396512016-09-07 18:47:28 +0800818 select ARM64
819 select ARMV8_MULTIENTRY
820 select SUPPORT_SPL
821 select DM_SPI_FLASH if DM_SPI
822 help
823 Support for Freescale LS1046ARDB platform.
824 The LS1046A Reference Design Board (RDB) is a high-performance
825 development platform that supports the QorIQ LS1046A
826 Layerscape Architecture processor.
827
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900828config TARGET_H2200
829 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100830 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900831
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -0700832config TARGET_ZIPITZ2
833 bool "Support zipitz2"
834 select CPU_PXA
835
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900836config TARGET_COLIBRI_PXA270
837 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100838 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900839
Masahiro Yamada82069432014-10-03 19:21:07 +0900840config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900841 bool "Socionext UniPhier SoCs"
Masahiro Yamadae67eac02016-09-14 01:06:03 +0900842 select BLK
Masahiro Yamadae4dfb052016-02-02 21:11:32 +0900843 select CLK_UNIPHIER
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900844 select DM
Masahiro Yamada5f128922016-02-16 17:03:50 +0900845 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900846 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +0900847 select DM_MMC
Masahiro Yamada2aa4b5b2016-10-08 13:25:31 +0900848 select DM_RESET
Masahiro Yamada694adf12016-09-14 01:05:59 +0900849 select DM_SERIAL
Masahiro Yamada5021b8a2016-09-14 01:06:00 +0900850 select DM_USB
Masahiro Yamada694adf12016-09-14 01:05:59 +0900851 select OF_CONTROL
852 select OF_LIBFDT
Masahiro Yamada0c977252016-09-17 03:33:01 +0900853 select PINCTRL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900854 select SPL
855 select SPL_DM
Masahiro Yamada8bcd0ec2016-09-20 14:27:00 +0900856 select SPL_LIBCOMMON_SUPPORT
857 select SPL_LIBGENERIC_SUPPORT
Masahiro Yamada694adf12016-09-14 01:05:59 +0900858 select SPL_OF_CONTROL
Masahiro Yamada0c977252016-09-17 03:33:01 +0900859 select SPL_PINCTRL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900860 select SUPPORT_SPL
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900861 help
862 Support for UniPhier SoC family developed by Socionext Inc.
863 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada82069432014-10-03 19:21:07 +0900864
Vikas Manocha95c89192016-01-15 17:49:06 -0800865config STM32
866 bool "Support STM32"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100867 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +0100868 select DM
869 select DM_SERIAL
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100870
Simon Glass2cffe662015-08-30 16:55:38 -0600871config ARCH_ROCKCHIP
872 bool "Support Rockchip SoCs"
Simon Glass2cffe662015-08-30 16:55:38 -0600873 select OF_CONTROL
Simon Glass94106272016-06-12 23:30:14 -0600874 select BLK
Simon Glass2cffe662015-08-30 16:55:38 -0600875 select DM
Kever Yang0d3d7832016-07-19 21:16:59 +0800876 select SPL_DM if SPL
Simon Glass94106272016-06-12 23:30:14 -0600877 select SYS_MALLOC_F
Kever Yang0d3d7832016-07-19 21:16:59 +0800878 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glass94106272016-06-12 23:30:14 -0600879 select DM_GPIO
880 select DM_I2C
881 select DM_MMC
Simon Glassfaeef3b2016-06-12 23:30:24 -0600882 select DM_MMC_OPS
Simon Glass94106272016-06-12 23:30:14 -0600883 select DM_SERIAL
884 select DM_SPI
885 select DM_SPI_FLASH
MengDongyangf0bf5de2016-08-24 12:02:18 +0800886 select DM_USB if USB
Kever Yangb8594e22016-09-23 15:57:21 +0800887 select DM_PWM
888 select DM_REGULATOR
Simon Glass2cffe662015-08-30 16:55:38 -0600889
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700890config TARGET_THUNDERX_88XX
891 bool "Support ThunderX 88xx"
Marek Vasut09ab8ad2016-06-01 02:33:53 +0200892 select ARM64
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700893 select OF_CONTROL
Tom Rini84f9b612016-08-22 08:22:17 -0400894 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700895
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900896endchoice
897
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900898source "arch/arm/mach-at91/Kconfig"
899
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900900source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900901
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900902source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -0700903
Thomas Abraham74f84862015-08-03 17:58:00 +0530904source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900905
Masahiro Yamada95ec48b2015-02-20 17:04:08 +0900906source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900907
Masahiro Yamadacad44162015-04-21 21:59:36 +0900908source "arch/arm/mach-integrator/Kconfig"
909
Masahiro Yamadaf058b792015-02-20 17:04:11 +0900910source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900911
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +0900912source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +0900913
Stefan Roese383e0c12015-08-25 13:18:38 +0200914source "arch/arm/mach-mvebu/Kconfig"
915
York Sun149eb332016-09-26 08:09:27 -0700916source "arch/arm/cpu/armv7/ls102xa/Kconfig"
917
Adrian Alonso98810772015-09-03 11:49:28 -0500918source "arch/arm/cpu/armv7/mx7/Kconfig"
919
Boris BREZILLON51e82662015-03-04 13:13:03 +0100920source "arch/arm/cpu/armv7/mx6/Kconfig"
921
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200922source "arch/arm/cpu/armv7/mx5/Kconfig"
923
Madan Srinivas8a536e92016-05-19 19:10:44 -0500924source "arch/arm/cpu/armv7/omap-common/Kconfig"
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500925
York Sunbad49842016-09-26 08:09:24 -0700926source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
927
Masahiro Yamada22537642015-02-20 17:04:09 +0900928source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900929
Nobuhiro Iwamatsuc91ef682015-10-09 16:40:09 +0900930source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900931
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200932source "arch/arm/mach-meson/Kconfig"
933
Simon Glass2cffe662015-08-30 16:55:38 -0600934source "arch/arm/mach-rockchip/Kconfig"
935
Minkyu Kang56b820a2015-11-20 15:24:57 +0900936source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -0600937
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200938source "arch/arm/mach-snapdragon/Kconfig"
939
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900940source "arch/arm/mach-socfpga/Kconfig"
941
Vikas Manocha95c89192016-01-15 17:49:06 -0800942source "arch/arm/mach-stm32/Kconfig"
943
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900944source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900945
Masahiro Yamadaf8563982015-02-27 02:26:42 +0900946source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +0900947
Masahiro Yamada43246cc2015-03-16 16:43:22 +0900948source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900949
Hans de Goede85437352014-11-14 09:34:30 +0100950source "arch/arm/cpu/armv7/Kconfig"
951
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +0530952source "arch/arm/cpu/armv8/zynqmp/Kconfig"
953
Linus Walleij74771392015-03-09 10:53:21 +0100954source "arch/arm/cpu/armv8/Kconfig"
955
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +0100956source "arch/arm/imx-common/Kconfig"
957
Heiko Schocherf1163962016-06-07 08:31:25 +0200958source "board/bosch/shc/Kconfig"
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200959source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200960source "board/BuR/brppt1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900961source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900962source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900963source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900964source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900965source "board/armltd/vexpress/Kconfig"
966source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900967source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae45f2c702016-06-02 15:10:56 -0700968source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900969source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -0800970source "board/broadcom/bcmcygnus/Kconfig"
971source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700972source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900973source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900974source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400975source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900976source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900977source "board/denx/m28evk/Kconfig"
978source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530979source "board/freescale/ls2080a/Kconfig"
980source "board/freescale/ls2080aqds/Kconfig"
981source "board/freescale/ls2080ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +0800982source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +0800983source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +0800984source "board/freescale/ls1021atwr/Kconfig"
Feng Li39e112d2016-11-03 14:15:17 +0800985source "board/freescale/ls1021aiot/Kconfig"
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800986source "board/freescale/ls1046aqds/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +0800987source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hud2396512016-09-07 18:47:28 +0800988source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530989source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530990source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530991source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900992source "board/freescale/mx23evk/Kconfig"
993source "board/freescale/mx25pdk/Kconfig"
994source "board/freescale/mx28evk/Kconfig"
995source "board/freescale/mx31ads/Kconfig"
996source "board/freescale/mx31pdk/Kconfig"
997source "board/freescale/mx35pdk/Kconfig"
998source "board/freescale/mx51evk/Kconfig"
999source "board/freescale/mx53ard/Kconfig"
1000source "board/freescale/mx53evk/Kconfig"
1001source "board/freescale/mx53loco/Kconfig"
1002source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor5178dc12016-06-05 03:43:00 +03001003source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001004source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001005source "board/gumstix/pepper/Kconfig"
1006source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -04001007source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001008source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001009source "board/isee/igep0033/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001010source "board/mpl/vcma9/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001011source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001012source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +02001013source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001014source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001015source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001016source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001017source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001018source "board/siemens/draco/Kconfig"
1019source "board/siemens/pxm2/Kconfig"
1020source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001021source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001022source "board/spear/spear300/Kconfig"
1023source "board/spear/spear310/Kconfig"
1024source "board/spear/spear320/Kconfig"
1025source "board/spear/spear600/Kconfig"
1026source "board/spear/x600/Kconfig"
Vikas Manocha33913c52014-11-18 10:42:22 -08001027source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001028source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001029source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +02001030source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001031source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001032source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -08001033source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001034source "board/ti/ti814x/Kconfig"
1035source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001036source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001037source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +05301038source "board/toradex/colibri_vf/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -04001039source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +02001040source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001041source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +02001042source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -07001043source "board/zipitz2/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001044
Masahiro Yamadadf00e522014-09-01 11:06:34 +09001045source "arch/arm/Kconfig.debug"
1046
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001047endmenu