blob: 308245185b83fbef40f2742ae522665dbdf9b896 [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
Tom Rini5c02a1f2016-11-07 21:34:53 -0500129config ARCH_OMAP2
130 bool
131 select CPU_V7
132 select SUPPORT_SPL
133
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900134choice
135 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -0600136 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900137
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900138config ARCH_AT91
139 bool "Atmel AT91"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900140
141config TARGET_EDB93XX
142 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100143 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900144
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900145config TARGET_VCMA9
146 bool "Support VCMA9"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100147 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900148
149config TARGET_SMDK2410
150 bool "Support smdk2410"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100151 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900152
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900153config TARGET_ASPENITE
154 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100155 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900156
157config TARGET_GPLUGD
158 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100159 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900160
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900161config ARCH_DAVINCI
162 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100163 select CPU_ARM926EJS
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900164 help
165 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900166
Masahiro Yamadad7570852014-08-31 07:10:59 +0900167config KIRKWOOD
168 bool "Marvell Kirkwood"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100169 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900170
Stefan Roese383e0c12015-08-25 13:18:38 +0200171config ARCH_MVEBU
Stefan Roesecb410332016-05-25 08:13:45 +0200172 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese096de4f2015-09-01 11:27:52 +0200173 select OF_CONTROL
174 select OF_SEPARATE
175 select DM
Stefan Roese05b38c12015-11-19 07:46:15 +0100176 select DM_ETH
Stefan Roese7f9f8e32015-09-02 08:41:41 +0200177 select DM_SERIAL
Stefan Roese49e7d772015-11-20 13:51:57 +0100178 select DM_SPI
179 select DM_SPI_FLASH
Stefan Roese9b1e2312014-10-22 12:13:19 +0200180
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900181config TARGET_DEVKIT3250
182 bool "Support devkit3250"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100183 select CPU_ARM926EJS
Vladimir Zapolskiy89f86a22015-07-18 01:47:11 +0300184 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900185
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200186config TARGET_WORK_92105
187 bool "Support work_92105"
188 select CPU_ARM926EJS
189 select SUPPORT_SPL
190
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900191config TARGET_MX25PDK
192 bool "Support mx25pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100193 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900194
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900195config TARGET_ZMX25
196 bool "Support zmx25"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100197 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900198
199config TARGET_APF27
200 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100201 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900202 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900203
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900204config TARGET_APX4DEVKIT
205 bool "Support apx4devkit"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100206 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900207 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900208
209config TARGET_XFI3
210 bool "Support xfi3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100211 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900212 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900213
214config TARGET_M28EVK
215 bool "Support m28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100216 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900217 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900218
219config TARGET_MX23EVK
220 bool "Support mx23evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100221 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900222 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900223
224config TARGET_MX28EVK
225 bool "Support mx28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100226 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900227 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900228
229config TARGET_MX23_OLINUXINO
230 bool "Support mx23_olinuxino"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100231 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900232 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900233
234config TARGET_BG0900
235 bool "Support bg0900"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100236 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900237 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900238
239config TARGET_SANSA_FUZE_PLUS
240 bool "Support sansa_fuze_plus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100241 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900242 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900243
244config TARGET_SC_SPS_1
245 bool "Support sc_sps_1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100246 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900247 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900248
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900249config ORION5X
250 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100251 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900252
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900253config TARGET_SPEAR300
254 bool "Support spear300"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100255 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900256
257config TARGET_SPEAR310
258 bool "Support spear310"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100259 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900260
261config TARGET_SPEAR320
262 bool "Support spear320"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100263 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900264
265config TARGET_SPEAR600
266 bool "Support spear600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100267 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900268
Vikas Manocha33913c52014-11-18 10:42:22 -0800269config TARGET_STV0991
270 bool "Support stv0991"
271 select CPU_V7
Masahiro Yamada0906a822015-03-31 12:48:01 +0900272 select DM
273 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700274 select DM_SPI
275 select DM_SPI_FLASH
276 select SPI_FLASH
Vikas Manocha33913c52014-11-18 10:42:22 -0800277
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900278config TARGET_X600
279 bool "Support x600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100280 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900281 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900282
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900283config TARGET_IMX31_PHYCORE
284 bool "Support imx31_phycore"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100285 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900286
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900287config TARGET_MX31ADS
288 bool "Support mx31ads"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100289 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900290
291config TARGET_MX31PDK
292 bool "Support mx31pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100293 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900294 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900295
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900296config TARGET_WOODBURN
297 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100298 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900299
300config TARGET_WOODBURN_SD
301 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100302 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900303 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900304
305config TARGET_FLEA3
306 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100307 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900308
309config TARGET_MX35PDK
310 bool "Support mx35pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100311 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900312
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900313config ARCH_BCM283X
314 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900315 select DM
316 select DM_SERIAL
317 select DM_GPIO
Stephen Warrendc7ea682015-02-16 12:16:15 -0700318
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900319config TARGET_VEXPRESS_CA15_TC2
320 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100321 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100322 select CPU_V7_HAS_NONSEC
323 select CPU_V7_HAS_VIRT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900324
325config TARGET_VEXPRESS_CA5X2
326 bool "Support vexpress_ca5x2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100327 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900328
329config TARGET_VEXPRESS_CA9X4
330 bool "Support vexpress_ca9x4"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100331 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900332
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200333config TARGET_BRXRE1
334 bool "Support BRXRE1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500335 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900336
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200337config TARGET_BRPPT1
338 bool "Support BRPPT1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500339 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900340
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900341config TARGET_DRACO
342 bool "Support draco"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500343 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200344 select DM
345 select DM_SERIAL
346 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900347
Heiko Schocher9ba67f22015-06-15 14:57:15 +0200348config TARGET_THUBAN
349 bool "Support thuban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500350 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200351 select DM
352 select DM_SERIAL
353 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900354
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200355config TARGET_RASTABAN
356 bool "Support rastaban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500357 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200358 select DM
359 select DM_SERIAL
360 select DM_GPIO
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200361
Heiko Schochercbec11a2016-06-07 08:55:45 +0200362config TARGET_ETAMIN
Tom Rinibca01962016-08-22 08:22:18 -0400363 bool "Support etamin"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500364 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200365 select DM
366 select DM_SERIAL
367 select DM_GPIO
Heiko Schochercbec11a2016-06-07 08:55:45 +0200368
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900369config TARGET_PXM2
370 bool "Support pxm2"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500371 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200372 select DM
373 select DM_SERIAL
374 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900375
376config TARGET_RUT
377 bool "Support rut"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500378 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200379 select DM
380 select DM_SERIAL
381 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900382
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900383config TARGET_TI814X_EVM
384 bool "Support ti814x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500385 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900386
387config TARGET_TI816X_EVM
388 bool "Support ti816x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500389 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900390
Steve Rae45f2c702016-06-02 15:10:56 -0700391config TARGET_BCM23550_W1D
392 bool "Support bcm23550_w1d"
393 select CPU_V7
394
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900395config TARGET_BCM28155_AP
396 bool "Support bcm28155_ap"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100397 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900398
Steve Rae1c5f31c2014-11-11 11:32:18 -0800399config TARGET_BCMCYGNUS
400 bool "Support bcmcygnus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100401 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700402
Steve Rae1c5f31c2014-11-11 11:32:18 -0800403config TARGET_BCMNSP
404 bool "Support bcmnsp"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100405 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700406
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900407config ARCH_EXYNOS
408 bool "Samsung EXYNOS"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900409 select DM
410 select DM_SPI_FLASH
411 select DM_SERIAL
412 select DM_SPI
413 select DM_GPIO
Simon Glassaa8484f2015-10-18 21:17:17 -0600414 select DM_KEYBOARD
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900415
Simon Glass96aa0722014-10-07 22:01:50 -0600416config ARCH_S5PC1XX
417 bool "Samsung S5PC1XX"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100418 select CPU_V7
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900419 select DM
420 select DM_SERIAL
421 select DM_GPIO
Simon Glass96aa0722014-10-07 22:01:50 -0600422
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900423config ARCH_HIGHBANK
424 bool "Calxeda Highbank"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100425 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900426
Masahiro Yamadacad44162015-04-21 21:59:36 +0900427config ARCH_INTEGRATOR
428 bool "ARM Ltd. Integrator family"
Linus Walleij616d9a02015-07-27 11:22:48 +0200429 select DM
430 select DM_SERIAL
Masahiro Yamadacad44162015-04-21 21:59:36 +0900431
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900432config ARCH_KEYSTONE
433 bool "TI Keystone"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100434 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900435 select SUPPORT_SPL
Tom Rini393a4ce2016-03-16 09:19:43 -0400436 select CMD_POWEROFF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900437
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200438config ARCH_MESON
439 bool "Amlogic Meson"
440 help
441 Support for the Meson SoC family developed by Amlogic Inc.,
442 targeted at media players and tablet computers. We currently
443 support the S905 (GXBaby) 64-bit SoC.
444
Adrian Alonso98810772015-09-03 11:49:28 -0500445config ARCH_MX7
446 bool "Freescale MX7"
447 select CPU_V7
448
Boris BREZILLON51e82662015-03-04 13:13:03 +0100449config ARCH_MX6
450 bool "Freescale MX6"
451 select CPU_V7
452
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200453config ARCH_MX5
454 bool "Freescale MX5"
455 select CPU_V7
456
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900457config TARGET_M53EVK
458 bool "Support m53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100459 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900460 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900461
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900462config TARGET_MX51EVK
463 bool "Support mx51evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100464 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900465
466config TARGET_MX53ARD
467 bool "Support mx53ard"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100468 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900469
470config TARGET_MX53EVK
471 bool "Support mx53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100472 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900473
474config TARGET_MX53LOCO
475 bool "Support mx53loco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100476 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900477
478config TARGET_MX53SMD
479 bool "Support mx53smd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100480 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900481
Masahiro Yamadadd678432014-08-31 07:11:02 +0900482config OMAP34XX
483 bool "OMAP34XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500484 select ARCH_OMAP2
Tom Rinib631c9d2016-07-27 22:29:41 -0400485 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900486
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900487config OMAP44XX
488 bool "OMAP44XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500489 select ARCH_OMAP2
Tom Rinib631c9d2016-07-27 22:29:41 -0400490 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900491
Masahiro Yamada420b8162014-08-31 07:11:04 +0900492config OMAP54XX
493 bool "OMAP54XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500494 select ARCH_OMAP2
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500495
496config AM43XX
497 bool "AM43XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500498 select ARCH_OMAP2
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500499 help
500 Support for AM43xx SOC from Texas Instruments.
501 The AM43xx high performance SOC features a Cortex-A9
502 ARM core, a quad core PRU-ICSS for industrial Ethernet
503 protocols, dual camera support, optional 3D graphics
504 and an optional customer programmable secure boot.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900505
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500506config AM33XX
507 bool "AM33XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500508 select ARCH_OMAP2
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500509 help
510 Support for AM335x SOC from Texas Instruments.
511 The AM335x high performance SOC features a Cortex-A8
512 ARM core, a dual core PRU-ICSS for industrial Ethernet
513 protocols, optional 3D graphics and an optional customer
514 programmable secure boot.
515
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900516config ARCH_RMOBILE
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900517 bool "Renesas ARM SoCs"
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900518 select DM
519 select DM_SERIAL
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300520
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300521config TARGET_S32V234EVB
522 bool "Support s32v234evb"
523 select ARM64
524
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200525config ARCH_SNAPDRAGON
526 bool "Qualcomm Snapdragon SoCs"
527 select ARM64
528 select DM
529 select DM_GPIO
530 select DM_SERIAL
531 select SPMI
532 select OF_CONTROL
533 select OF_SEPARATE
534
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900535config ARCH_SOCFPGA
536 bool "Altera SOCFPGA family"
Marek Vasut69295472014-12-30 18:16:08 +0100537 select CPU_V7
538 select SUPPORT_SPL
Marek Vasutf44fb6f2015-08-19 23:23:52 +0200539 select OF_CONTROL
540 select SPL_OF_CONTROL
Masahiro Yamadae2005542015-03-31 12:47:59 +0900541 select DM
542 select DM_SPI_FLASH
543 select DM_SPI
Marek Vasut69295472014-12-30 18:16:08 +0100544
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300545config TARGET_CM_T43
546 bool "Support cm_t43"
547 select CPU_V7
548 select SUPPORT_SPL
549
Ian Campbelld8e69e02014-10-24 21:20:44 +0100550config ARCH_SUNXI
551 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedec9511672016-04-03 09:41:44 +0200552 select CMD_GPIO
Hans de Goede2c526402016-05-15 13:51:58 +0200553 select CMD_MMC if MMC
Hans de Goede16eac6562015-06-17 20:54:07 +0200554 select CMD_USB
Hans de Goede03914882015-04-15 20:46:48 +0200555 select DM
Tom Rini10e87172015-06-30 16:51:15 -0400556 select DM_ETH
Hans de Goedec8d43472015-12-21 20:22:00 +0100557 select DM_GPIO
558 select DM_KEYBOARD
Tom Rini10e87172015-06-30 16:51:15 -0400559 select DM_SERIAL
Hans de Goede0b3845a2015-06-17 17:44:58 +0200560 select DM_USB
Hans de Goede48a234a2016-03-22 22:51:52 +0100561 select OF_BOARD_SETUP
Hans de Goede03914882015-04-15 20:46:48 +0200562 select OF_CONTROL
563 select OF_SEPARATE
Alexander Graf0099be02016-03-29 17:29:07 +0200564 select SPL_STACK_R if SUPPORT_SPL
565 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede9cce88a2015-12-10 11:10:17 +0100566 select SYS_NS16550
Tom Rini10e87172015-06-30 16:51:15 -0400567 select USB
Hans de Goede16eac6562015-06-17 20:54:07 +0200568 select USB_STORAGE
Hans de Goede35e80a42015-08-04 17:04:13 +0200569 select USB_KEYBOARD
Hans de Goede42a31822016-06-10 12:19:40 +0200570 select USE_TINY_PRINTF
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800571
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400572config TARGET_TS4800
573 bool "Support TS4800"
574 select CPU_V7
575
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900576config TARGET_VF610TWR
577 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100578 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900579
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530580config TARGET_COLIBRI_VF
581 bool "Support Colibri VF50/61"
582 select CPU_V7
583
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200584config TARGET_PCM052
585 bool "Support pcm-052"
586 select CPU_V7
587
Albert ARIBAUD \(3ADEV\)ddef3b62016-09-26 09:08:08 +0200588config TARGET_BK4R1
589 bool "Support BK4r1"
590 select CPU_V7
591
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900592config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900593 bool "Xilinx Zynq Platform"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100594 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900595 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530596 select OF_CONTROL
Michal Simek6dae8492016-01-13 14:32:43 +0100597 select SPL_OF_CONTROL if SPL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900598 select DM
Michal Simek250e05e2015-11-30 14:14:56 +0100599 select DM_ETH
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530600 select DM_GPIO
Michal Simek6dae8492016-01-13 14:32:43 +0100601 select SPL_DM if SPL
Michal Simek9ecd2682015-11-30 16:13:03 +0100602 select DM_MMC
Simon Glass4cc87fb2016-07-05 17:10:15 -0600603 select DM_MMC_OPS
Jagan Teki0bd03a52015-06-27 00:51:32 +0530604 select DM_SPI
Simon Glass23d9b622015-10-17 19:41:27 -0600605 select DM_SERIAL
Jagan Teki0bd03a52015-06-27 00:51:32 +0530606 select DM_SPI_FLASH
Michal Simek6dae8492016-01-13 14:32:43 +0100607 select SPL_SEPARATE_BSS if SPL
Simon Glass476e63f2016-07-05 17:10:14 -0600608 select DM_USB if USB
Simon Glass4cc87fb2016-07-05 17:10:15 -0600609 select BLK
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900610
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530611config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100612 bool "Support Xilinx ZynqMP Platform"
613 select ARM64
Michal Simek25b83712015-10-17 19:41:25 -0600614 select DM
615 select OF_CONTROL
616 select DM_SERIAL
Michal Simek72536fd2015-11-20 13:17:22 +0100617 select SUPPORT_SPL
Michal Simek6f88c702016-07-14 15:07:54 +0200618 select CLK
619 select SPL_CLK
Simon Glass476e63f2016-07-05 17:10:14 -0600620 select DM_USB if USB
Michal Simek04b7e622015-01-15 10:01:51 +0100621
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900622config TEGRA
623 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900624
Linus Walleij800d6fd2015-01-23 11:50:53 +0100625config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900626 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900627 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900628
Linus Walleij800d6fd2015-01-23 11:50:53 +0100629config TARGET_VEXPRESS64_BASE_FVP
630 bool "Support Versatile Express ARMv8a FVP BASE model"
631 select ARM64
632 select SEMIHOSTING
633
Ryan Harkinb6b96652015-10-09 17:18:02 +0100634config TARGET_VEXPRESS64_BASE_FVP_DRAM
635 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
636 select ARM64
637 help
638 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
639 the default config to allow the user to load the images directly into
640 DRAM using model parameters rather than by using semi-hosting to load
641 the files from the host filesystem.
642
Linus Walleijc5822502015-01-23 14:41:10 +0100643config TARGET_VEXPRESS64_JUNO
644 bool "Support Versatile Express Juno Development Platform"
645 select ARM64
646
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530647config TARGET_LS2080A_EMU
648 bool "Support ls2080a_emu"
York Sun4dd8c612016-10-04 14:31:48 -0700649 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900650 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100651 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530652 help
653 Support for Freescale LS2080A_EMU platform
654 The LS2080A Development System (EMULATOR) is a pre silicon
655 development platform that supports the QorIQ LS2080A
656 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900657
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530658config TARGET_LS2080A_SIMU
659 bool "Support ls2080a_simu"
York Sun4dd8c612016-10-04 14:31:48 -0700660 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900661 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100662 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530663 help
664 Support for Freescale LS2080A_SIMU platform
665 The LS2080A Development System (QDS) is a pre silicon
666 development platform that supports the QorIQ LS2080A
667 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900668
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530669config TARGET_LS2080AQDS
670 bool "Support ls2080aqds"
York Sun4dd8c612016-10-04 14:31:48 -0700671 select ARCH_LS2080A
York Sun03017032015-03-20 19:28:23 -0700672 select ARM64
673 select ARMV8_MULTIENTRY
Scott Wood8e728cd2015-03-24 13:25:02 -0700674 select SUPPORT_SPL
York Sun03017032015-03-20 19:28:23 -0700675 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530676 Support for Freescale LS2080AQDS platform
677 The LS2080A Development System (QDS) is a high-performance
678 development platform that supports the QorIQ LS2080A
York Sun03017032015-03-20 19:28:23 -0700679 Layerscape Architecture processor.
680
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530681config TARGET_LS2080ARDB
682 bool "Support ls2080ardb"
York Sun4dd8c612016-10-04 14:31:48 -0700683 select ARCH_LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700684 select ARM64
685 select ARMV8_MULTIENTRY
Scott Wood212b8d82015-03-24 13:25:03 -0700686 select SUPPORT_SPL
York Sune12abcb2015-03-20 19:28:24 -0700687 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530688 Support for Freescale LS2080ARDB platform.
689 The LS2080A Reference design board (RDB) is a high-performance
690 development platform that supports the QorIQ LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700691 Layerscape Architecture processor.
692
Peter Griffin31f327e2015-07-30 18:55:23 +0100693config TARGET_HIKEY
694 bool "Support HiKey 96boards Consumer Edition Platform"
695 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100696 select DM
697 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100698 select DM_SERIAL
Peter Griffinc97c37a2016-04-20 17:13:59 +0100699 select OF_CONTROL
Peter Griffin31f327e2015-07-30 18:55:23 +0100700 help
701 Support for HiKey 96boards platform. It features a HI6220
702 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
703
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530704config TARGET_LS1012AQDS
705 bool "Support ls1012aqds"
York Sunb3d71642016-09-26 08:09:26 -0700706 select ARCH_LS1012A
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530707 select ARM64
708 help
709 Support for Freescale LS1012AQDS platform.
710 The LS1012A Development System (QDS) is a high-performance
711 development platform that supports the QorIQ LS1012A
712 Layerscape Architecture processor.
713
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530714config TARGET_LS1012ARDB
715 bool "Support ls1012ardb"
York Sunb3d71642016-09-26 08:09:26 -0700716 select ARCH_LS1012A
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530717 select ARM64
718 help
719 Support for Freescale LS1012ARDB platform.
720 The LS1012A Reference design board (RDB) is a high-performance
721 development platform that supports the QorIQ LS1012A
722 Layerscape Architecture processor.
723
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530724config TARGET_LS1012AFRDM
725 bool "Support ls1012afrdm"
York Sunb3d71642016-09-26 08:09:26 -0700726 select ARCH_LS1012A
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530727 select ARM64
728 help
729 Support for Freescale LS1012AFRDM platform.
730 The LS1012A Freedom board (FRDM) is a high-performance
731 development platform that supports the QorIQ LS1012A
732 Layerscape Architecture processor.
733
Wang Huanf0ce7d62014-09-05 13:52:44 +0800734config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800735 bool "Support ls1021aqds"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100736 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800737 select CPU_V7_HAS_NONSEC
738 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800739 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700740 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900741 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700742 select LS1_DEEP_SLEEP
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900743
Wang Huanddf89f92014-09-05 13:52:45 +0800744config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800745 bool "Support ls1021atwr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100746 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800747 select CPU_V7_HAS_NONSEC
748 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800749 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700750 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900751 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700752 select LS1_DEEP_SLEEP
Wang Huanddf89f92014-09-05 13:52:45 +0800753
Shaohui Xiedd335672015-11-11 17:58:37 +0800754config TARGET_LS1043AQDS
755 bool "Support ls1043aqds"
York Sun149eb332016-09-26 08:09:27 -0700756 select ARCH_LS1043A
Shaohui Xiedd335672015-11-11 17:58:37 +0800757 select ARM64
758 select ARMV8_MULTIENTRY
759 select SUPPORT_SPL
760 help
761 Support for Freescale LS1043AQDS platform.
762
Mingkai Hueee86ff2015-10-26 19:47:52 +0800763config TARGET_LS1043ARDB
764 bool "Support ls1043ardb"
York Sun149eb332016-09-26 08:09:27 -0700765 select ARCH_LS1043A
Mingkai Hueee86ff2015-10-26 19:47:52 +0800766 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800767 select ARMV8_MULTIENTRY
Gong Qianyu8168a0f2015-10-26 19:47:53 +0800768 select SUPPORT_SPL
Mingkai Hueee86ff2015-10-26 19:47:52 +0800769 help
770 Support for Freescale LS1043ARDB platform.
771
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800772config TARGET_LS1046AQDS
773 bool "Support ls1046aqds"
York Sunbad49842016-09-26 08:09:24 -0700774 select ARCH_LS1046A
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800775 select ARM64
776 select ARMV8_MULTIENTRY
777 select SUPPORT_SPL
778 select DM_SPI_FLASH if DM_SPI
779 help
780 Support for Freescale LS1046AQDS platform.
781 The LS1046A Development System (QDS) is a high-performance
782 development platform that supports the QorIQ LS1046A
783 Layerscape Architecture processor.
784
Mingkai Hud2396512016-09-07 18:47:28 +0800785config TARGET_LS1046ARDB
786 bool "Support ls1046ardb"
York Sunbad49842016-09-26 08:09:24 -0700787 select ARCH_LS1046A
Mingkai Hud2396512016-09-07 18:47:28 +0800788 select ARM64
789 select ARMV8_MULTIENTRY
790 select SUPPORT_SPL
791 select DM_SPI_FLASH if DM_SPI
792 help
793 Support for Freescale LS1046ARDB platform.
794 The LS1046A Reference Design Board (RDB) is a high-performance
795 development platform that supports the QorIQ LS1046A
796 Layerscape Architecture processor.
797
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900798config TARGET_H2200
799 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100800 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900801
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -0700802config TARGET_ZIPITZ2
803 bool "Support zipitz2"
804 select CPU_PXA
805
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900806config TARGET_COLIBRI_PXA270
807 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100808 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900809
Masahiro Yamada82069432014-10-03 19:21:07 +0900810config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900811 bool "Socionext UniPhier SoCs"
Masahiro Yamadae67eac02016-09-14 01:06:03 +0900812 select BLK
Masahiro Yamadae4dfb052016-02-02 21:11:32 +0900813 select CLK_UNIPHIER
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900814 select DM
Masahiro Yamada5f128922016-02-16 17:03:50 +0900815 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900816 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +0900817 select DM_MMC
Masahiro Yamada2aa4b5b2016-10-08 13:25:31 +0900818 select DM_RESET
Masahiro Yamada694adf12016-09-14 01:05:59 +0900819 select DM_SERIAL
Masahiro Yamada5021b8a2016-09-14 01:06:00 +0900820 select DM_USB
Masahiro Yamada694adf12016-09-14 01:05:59 +0900821 select OF_CONTROL
822 select OF_LIBFDT
Masahiro Yamada0c977252016-09-17 03:33:01 +0900823 select PINCTRL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900824 select SPL
825 select SPL_DM
Masahiro Yamada8bcd0ec2016-09-20 14:27:00 +0900826 select SPL_LIBCOMMON_SUPPORT
827 select SPL_LIBGENERIC_SUPPORT
Masahiro Yamada694adf12016-09-14 01:05:59 +0900828 select SPL_OF_CONTROL
Masahiro Yamada0c977252016-09-17 03:33:01 +0900829 select SPL_PINCTRL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900830 select SUPPORT_SPL
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900831 help
832 Support for UniPhier SoC family developed by Socionext Inc.
833 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada82069432014-10-03 19:21:07 +0900834
Vikas Manocha95c89192016-01-15 17:49:06 -0800835config STM32
836 bool "Support STM32"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100837 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +0100838 select DM
839 select DM_SERIAL
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100840
Simon Glass2cffe662015-08-30 16:55:38 -0600841config ARCH_ROCKCHIP
842 bool "Support Rockchip SoCs"
Simon Glass2cffe662015-08-30 16:55:38 -0600843 select OF_CONTROL
Simon Glass94106272016-06-12 23:30:14 -0600844 select BLK
Simon Glass2cffe662015-08-30 16:55:38 -0600845 select DM
Kever Yang0d3d7832016-07-19 21:16:59 +0800846 select SPL_DM if SPL
Simon Glass94106272016-06-12 23:30:14 -0600847 select SYS_MALLOC_F
Kever Yang0d3d7832016-07-19 21:16:59 +0800848 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glass94106272016-06-12 23:30:14 -0600849 select DM_GPIO
850 select DM_I2C
851 select DM_MMC
Simon Glassfaeef3b2016-06-12 23:30:24 -0600852 select DM_MMC_OPS
Simon Glass94106272016-06-12 23:30:14 -0600853 select DM_SERIAL
854 select DM_SPI
855 select DM_SPI_FLASH
MengDongyangf0bf5de2016-08-24 12:02:18 +0800856 select DM_USB if USB
Kever Yangb8594e22016-09-23 15:57:21 +0800857 select DM_PWM
858 select DM_REGULATOR
Simon Glass2cffe662015-08-30 16:55:38 -0600859
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700860config TARGET_THUNDERX_88XX
861 bool "Support ThunderX 88xx"
Marek Vasut09ab8ad2016-06-01 02:33:53 +0200862 select ARM64
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700863 select OF_CONTROL
Tom Rini84f9b612016-08-22 08:22:17 -0400864 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700865
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900866endchoice
867
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900868source "arch/arm/mach-at91/Kconfig"
869
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900870source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900871
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900872source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -0700873
Thomas Abraham74f84862015-08-03 17:58:00 +0530874source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900875
Masahiro Yamada95ec48b2015-02-20 17:04:08 +0900876source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900877
Masahiro Yamadacad44162015-04-21 21:59:36 +0900878source "arch/arm/mach-integrator/Kconfig"
879
Masahiro Yamadaf058b792015-02-20 17:04:11 +0900880source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900881
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +0900882source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +0900883
Stefan Roese383e0c12015-08-25 13:18:38 +0200884source "arch/arm/mach-mvebu/Kconfig"
885
York Sun149eb332016-09-26 08:09:27 -0700886source "arch/arm/cpu/armv7/ls102xa/Kconfig"
887
Adrian Alonso98810772015-09-03 11:49:28 -0500888source "arch/arm/cpu/armv7/mx7/Kconfig"
889
Boris BREZILLON51e82662015-03-04 13:13:03 +0100890source "arch/arm/cpu/armv7/mx6/Kconfig"
891
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200892source "arch/arm/cpu/armv7/mx5/Kconfig"
893
Madan Srinivas8a536e92016-05-19 19:10:44 -0500894source "arch/arm/cpu/armv7/omap-common/Kconfig"
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500895
York Sunbad49842016-09-26 08:09:24 -0700896source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
897
Masahiro Yamada22537642015-02-20 17:04:09 +0900898source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900899
Nobuhiro Iwamatsuc91ef682015-10-09 16:40:09 +0900900source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900901
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200902source "arch/arm/mach-meson/Kconfig"
903
Simon Glass2cffe662015-08-30 16:55:38 -0600904source "arch/arm/mach-rockchip/Kconfig"
905
Minkyu Kang56b820a2015-11-20 15:24:57 +0900906source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -0600907
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200908source "arch/arm/mach-snapdragon/Kconfig"
909
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900910source "arch/arm/mach-socfpga/Kconfig"
911
Vikas Manocha95c89192016-01-15 17:49:06 -0800912source "arch/arm/mach-stm32/Kconfig"
913
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900914source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900915
Masahiro Yamadaf8563982015-02-27 02:26:42 +0900916source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +0900917
Masahiro Yamada43246cc2015-03-16 16:43:22 +0900918source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900919
Hans de Goede85437352014-11-14 09:34:30 +0100920source "arch/arm/cpu/armv7/Kconfig"
921
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +0530922source "arch/arm/cpu/armv8/zynqmp/Kconfig"
923
Linus Walleij74771392015-03-09 10:53:21 +0100924source "arch/arm/cpu/armv8/Kconfig"
925
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +0100926source "arch/arm/imx-common/Kconfig"
927
Heiko Schocherf1163962016-06-07 08:31:25 +0200928source "board/bosch/shc/Kconfig"
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200929source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200930source "board/BuR/brppt1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900931source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900932source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900933source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900934source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900935source "board/armltd/vexpress/Kconfig"
936source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900937source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae45f2c702016-06-02 15:10:56 -0700938source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900939source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -0800940source "board/broadcom/bcmcygnus/Kconfig"
941source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700942source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900943source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900944source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400945source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900946source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900947source "board/denx/m28evk/Kconfig"
948source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530949source "board/freescale/ls2080a/Kconfig"
950source "board/freescale/ls2080aqds/Kconfig"
951source "board/freescale/ls2080ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +0800952source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +0800953source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +0800954source "board/freescale/ls1021atwr/Kconfig"
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800955source "board/freescale/ls1046aqds/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +0800956source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hud2396512016-09-07 18:47:28 +0800957source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530958source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530959source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530960source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900961source "board/freescale/mx23evk/Kconfig"
962source "board/freescale/mx25pdk/Kconfig"
963source "board/freescale/mx28evk/Kconfig"
964source "board/freescale/mx31ads/Kconfig"
965source "board/freescale/mx31pdk/Kconfig"
966source "board/freescale/mx35pdk/Kconfig"
967source "board/freescale/mx51evk/Kconfig"
968source "board/freescale/mx53ard/Kconfig"
969source "board/freescale/mx53evk/Kconfig"
970source "board/freescale/mx53loco/Kconfig"
971source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300972source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900973source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900974source "board/gumstix/pepper/Kconfig"
975source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400976source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900977source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900978source "board/isee/igep0033/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900979source "board/mpl/vcma9/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900980source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900981source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200982source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900983source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900984source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900985source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900986source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900987source "board/siemens/draco/Kconfig"
988source "board/siemens/pxm2/Kconfig"
989source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900990source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900991source "board/spear/spear300/Kconfig"
992source "board/spear/spear310/Kconfig"
993source "board/spear/spear320/Kconfig"
994source "board/spear/spear600/Kconfig"
995source "board/spear/x600/Kconfig"
Vikas Manocha33913c52014-11-18 10:42:22 -0800996source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900997source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900998source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +0200999source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001000source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001001source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -08001002source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001003source "board/ti/ti814x/Kconfig"
1004source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001005source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001006source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +05301007source "board/toradex/colibri_vf/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -04001008source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +02001009source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001010source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +02001011source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -07001012source "board/zipitz2/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001013
Masahiro Yamadadf00e522014-09-01 11:06:34 +09001014source "arch/arm/Kconfig.debug"
1015
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001016endmenu