blob: 0805fa41ac9b7224d97a57cfd968840125732831 [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
9
Lokesh Vutlaf94277d2016-03-24 16:02:00 +053010config DMA_ADDR_T_64BIT
11 bool
12 default y if ARM64
13
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010014config HAS_VBAR
15 bool
16
Albert ARIBAUDa3823222015-10-23 18:06:40 +020017config HAS_THUMB2
18 bool
19
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010020config CPU_ARM720T
21 bool
22
23config CPU_ARM920T
24 bool
25
26config CPU_ARM926EJS
27 bool
28
29config CPU_ARM946ES
30 bool
31
32config CPU_ARM1136
33 bool
34
35config CPU_ARM1176
36 bool
37 select HAS_VBAR
38
39config CPU_V7
40 bool
41 select HAS_VBAR
Albert ARIBAUDa3823222015-10-23 18:06:40 +020042 select HAS_THUMB2
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010043
rev13@wp.plb3b57e82015-03-01 12:44:39 +010044config CPU_V7M
45 bool
Albert ARIBAUDa3823222015-10-23 18:06:40 +020046 select HAS_THUMB2
rev13@wp.plb3b57e82015-03-01 12:44:39 +010047
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010048config CPU_PXA
49 bool
50
51config CPU_SA1100
52 bool
53
54config SYS_CPU
55 default "arm720t" if CPU_ARM720T
56 default "arm920t" if CPU_ARM920T
57 default "arm926ejs" if CPU_ARM926EJS
58 default "arm946es" if CPU_ARM946ES
59 default "arm1136" if CPU_ARM1136
60 default "arm1176" if CPU_ARM1176
61 default "armv7" if CPU_V7
rev13@wp.plb3b57e82015-03-01 12:44:39 +010062 default "armv7m" if CPU_V7M
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010063 default "pxa" if CPU_PXA
64 default "sa1100" if CPU_SA1100
Masahiro Yamadadade3b02014-11-06 11:39:27 +090065 default "armv8" if ARM64
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010066
Marek Vasutb06c9542016-05-26 18:01:36 +020067config SYS_ARM_ARCH
68 int
69 default 4 if CPU_ARM720T
70 default 4 if CPU_ARM920T
71 default 5 if CPU_ARM926EJS
72 default 5 if CPU_ARM946ES
73 default 6 if CPU_ARM1136
74 default 6 if CPU_ARM1176
75 default 7 if CPU_V7
76 default 7 if CPU_V7M
77 default 5 if CPU_PXA
78 default 4 if CPU_SA1100
79 default 8 if ARM64
80
Linus Walleij800d6fd2015-01-23 11:50:53 +010081config SEMIHOSTING
82 bool "support boot from semihosting"
83 help
84 In emulated environments, semihosting is a way for
85 the hosted environment to call out to the emulator to
86 retrieve files from the host machine.
87
Peng Fan10ddab42015-08-19 15:48:57 +080088config SYS_L2CACHE_OFF
89 bool "L2cache off"
90 help
91 If SoC does not support L2CACHE or one do not want to enable
92 L2CACHE, choose this option.
93
Andre Przywara48321ba2016-05-31 10:45:06 -070094config ENABLE_ARM_SOC_BOOT0_HOOK
95 bool "prepare BOOT0 header"
96 help
97 If the SoC's BOOT0 requires a header area filled with (magic)
98 values, then choose this option, and create a define called
99 ARM_SOC_BOOT0_HOOK which contains the required assembler
100 preprocessor code.
101
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900102choice
103 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -0600104 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900105
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900106config ARCH_AT91
107 bool "Atmel AT91"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900108
109config TARGET_EDB93XX
110 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100111 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900112
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900113config TARGET_VCMA9
114 bool "Support VCMA9"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100115 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900116
117config TARGET_SMDK2410
118 bool "Support smdk2410"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100119 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900120
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900121config TARGET_ASPENITE
122 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100123 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900124
125config TARGET_GPLUGD
126 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100127 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900128
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900129config ARCH_DAVINCI
130 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100131 select CPU_ARM926EJS
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900132 help
133 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900134
Masahiro Yamadad7570852014-08-31 07:10:59 +0900135config KIRKWOOD
136 bool "Marvell Kirkwood"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100137 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900138
Stefan Roese383e0c12015-08-25 13:18:38 +0200139config ARCH_MVEBU
Stefan Roese9106ed02016-01-29 09:14:54 +0100140 bool "Marvell MVEBU family (Armada XP/375/38x)"
Stefan Roese073efd72015-04-25 06:29:56 +0200141 select CPU_V7
142 select SUPPORT_SPL
Stefan Roese096de4f2015-09-01 11:27:52 +0200143 select OF_CONTROL
144 select OF_SEPARATE
145 select DM
Stefan Roese05b38c12015-11-19 07:46:15 +0100146 select DM_ETH
Stefan Roese7f9f8e32015-09-02 08:41:41 +0200147 select DM_SERIAL
Stefan Roese49e7d772015-11-20 13:51:57 +0100148 select DM_SPI
149 select DM_SPI_FLASH
Stefan Roese83097cf2015-11-25 07:37:00 +0100150 select SPL_DM
Nathan Rossi66f05702016-01-08 03:00:47 +1000151 select SPL_DM_SEQ_ALIAS
Stefan Roese83097cf2015-11-25 07:37:00 +0100152 select SPL_OF_CONTROL
Stefan Roese49e7d772015-11-20 13:51:57 +0100153 select SPL_SIMPLE_BUS
Stefan Roese9b1e2312014-10-22 12:13:19 +0200154
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900155config TARGET_DEVKIT3250
156 bool "Support devkit3250"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100157 select CPU_ARM926EJS
Vladimir Zapolskiy89f86a22015-07-18 01:47:11 +0300158 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900159
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200160config TARGET_WORK_92105
161 bool "Support work_92105"
162 select CPU_ARM926EJS
163 select SUPPORT_SPL
164
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900165config TARGET_MX25PDK
166 bool "Support mx25pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100167 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900168
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900169config TARGET_ZMX25
170 bool "Support zmx25"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100171 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900172
173config TARGET_APF27
174 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100175 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900176 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900177
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900178config TARGET_APX4DEVKIT
179 bool "Support apx4devkit"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100180 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900181 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900182
183config TARGET_XFI3
184 bool "Support xfi3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100185 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900186 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900187
188config TARGET_M28EVK
189 bool "Support m28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100190 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900191 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900192
193config TARGET_MX23EVK
194 bool "Support mx23evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100195 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900196 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900197
198config TARGET_MX28EVK
199 bool "Support mx28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100200 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900201 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900202
203config TARGET_MX23_OLINUXINO
204 bool "Support mx23_olinuxino"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100205 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900206 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900207
208config TARGET_BG0900
209 bool "Support bg0900"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100210 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900211 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900212
213config TARGET_SANSA_FUZE_PLUS
214 bool "Support sansa_fuze_plus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100215 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900216 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900217
218config TARGET_SC_SPS_1
219 bool "Support sc_sps_1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100220 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900221 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900222
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900223config ORION5X
224 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100225 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900226
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900227config TARGET_SPEAR300
228 bool "Support spear300"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100229 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900230
231config TARGET_SPEAR310
232 bool "Support spear310"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100233 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900234
235config TARGET_SPEAR320
236 bool "Support spear320"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100237 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900238
239config TARGET_SPEAR600
240 bool "Support spear600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100241 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900242
Vikas Manocha33913c52014-11-18 10:42:22 -0800243config TARGET_STV0991
244 bool "Support stv0991"
245 select CPU_V7
Masahiro Yamada0906a822015-03-31 12:48:01 +0900246 select DM
247 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700248 select DM_SPI
249 select DM_SPI_FLASH
250 select SPI_FLASH
Vikas Manocha33913c52014-11-18 10:42:22 -0800251
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900252config TARGET_X600
253 bool "Support x600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100254 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900255 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900256
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900257config TARGET_IMX31_PHYCORE
258 bool "Support imx31_phycore"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100259 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900260
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900261config TARGET_MX31ADS
262 bool "Support mx31ads"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100263 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900264
265config TARGET_MX31PDK
266 bool "Support mx31pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100267 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900268 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900269
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900270config TARGET_WOODBURN
271 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100272 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900273
274config TARGET_WOODBURN_SD
275 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100276 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900277 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900278
279config TARGET_FLEA3
280 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100281 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900282
283config TARGET_MX35PDK
284 bool "Support mx35pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100285 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900286
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900287config ARCH_BCM283X
288 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900289 select DM
290 select DM_SERIAL
291 select DM_GPIO
Stephen Warrendc7ea682015-02-16 12:16:15 -0700292
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900293config TARGET_VEXPRESS_CA15_TC2
294 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100295 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100296 select CPU_V7_HAS_NONSEC
297 select CPU_V7_HAS_VIRT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900298
299config TARGET_VEXPRESS_CA5X2
300 bool "Support vexpress_ca5x2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100301 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900302
303config TARGET_VEXPRESS_CA9X4
304 bool "Support vexpress_ca9x4"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100305 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900306
307config TARGET_KWB
308 bool "Support kwb"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100309 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900310 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900311
312config TARGET_TSERIES
313 bool "Support tseries"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100314 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900315 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900316
317config TARGET_CM_T335
318 bool "Support cm_t335"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100319 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900320 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900321 select DM
322 select DM_SERIAL
323 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900324
325config TARGET_PEPPER
326 bool "Support pepper"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100327 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900328 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900329 select DM
330 select DM_SERIAL
331 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900332
333config TARGET_AM335X_IGEP0033
334 bool "Support am335x_igep0033"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100335 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900336 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900337 select DM
338 select DM_SERIAL
339 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900340
341config TARGET_PCM051
342 bool "Support pcm051"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100343 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900344 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900345 select DM
346 select DM_SERIAL
347 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900348
349config TARGET_DRACO
350 bool "Support draco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100351 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900352 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900353
Heiko Schocher9ba67f22015-06-15 14:57:15 +0200354config TARGET_THUBAN
355 bool "Support thuban"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100356 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900357 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900358
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200359config TARGET_RASTABAN
360 bool "Support rastaban"
361 select CPU_V7
362 select SUPPORT_SPL
363
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900364config TARGET_PXM2
365 bool "Support pxm2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100366 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900367 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900368
369config TARGET_RUT
370 bool "Support rut"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100371 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900372 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900373
374config TARGET_PENGWYN
375 bool "Support pengwyn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100376 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900377 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900378 select DM
379 select DM_SERIAL
380 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900381
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200382config TARGET_AM335X_BALTOS
383 bool "Support am335x_baltos"
384 select CPU_V7
385 select SUPPORT_SPL
386 select DM
387 select DM_SERIAL
388 select DM_GPIO
389
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900390config TARGET_AM335X_EVM
391 bool "Support am335x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100392 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900393 select SUPPORT_SPL
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900394 select DM
395 select DM_SERIAL
396 select DM_GPIO
Nishanth Menon2afa70d2016-02-24 12:30:55 -0600397 select TI_I2C_BOARD_DETECT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900398
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +0200399config TARGET_AM335X_SL50
400 bool "Support am335x_sl50"
401 select CPU_V7
402 select SUPPORT_SPL
403 select DM
404 select DM_SERIAL
405
Gilles Gameiroebd46d12015-02-10 01:36:01 -0800406config TARGET_BAV335X
407 bool "Support bav335x"
408 select CPU_V7
409 select SUPPORT_SPL
Masahiro Yamada20c57812015-03-31 12:48:00 +0900410 select DM
411 select DM_SERIAL
Gilles Gameiroebd46d12015-02-10 01:36:01 -0800412 help
413 The BAV335x OEM Network Processor integrates all the functions of an
414 embedded network computer in a small, easy to use SODIMM module which
415 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8
416 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit
417 ethernet with simple connection to external connectors.
418
419 For more information, visit: http://birdland.com/oem
420
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900421config TARGET_TI814X_EVM
422 bool "Support ti814x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100423 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900424 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900425
426config TARGET_TI816X_EVM
427 bool "Support ti816x_evm"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100428 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900429 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900430
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900431config TARGET_BCM28155_AP
432 bool "Support bcm28155_ap"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100433 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900434
Steve Rae1c5f31c2014-11-11 11:32:18 -0800435config TARGET_BCMCYGNUS
436 bool "Support bcmcygnus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100437 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700438
Steve Rae1c5f31c2014-11-11 11:32:18 -0800439config TARGET_BCMNSP
440 bool "Support bcmnsp"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100441 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700442
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900443config ARCH_EXYNOS
444 bool "Samsung EXYNOS"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100445 select CPU_V7
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900446 select DM
447 select DM_SPI_FLASH
448 select DM_SERIAL
449 select DM_SPI
450 select DM_GPIO
Simon Glassaa8484f2015-10-18 21:17:17 -0600451 select DM_KEYBOARD
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900452
Simon Glass96aa0722014-10-07 22:01:50 -0600453config ARCH_S5PC1XX
454 bool "Samsung S5PC1XX"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100455 select CPU_V7
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900456 select DM
457 select DM_SERIAL
458 select DM_GPIO
Simon Glass96aa0722014-10-07 22:01:50 -0600459
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900460config ARCH_HIGHBANK
461 bool "Calxeda Highbank"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100462 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900463
Masahiro Yamadacad44162015-04-21 21:59:36 +0900464config ARCH_INTEGRATOR
465 bool "ARM Ltd. Integrator family"
Linus Walleij616d9a02015-07-27 11:22:48 +0200466 select DM
467 select DM_SERIAL
Masahiro Yamadacad44162015-04-21 21:59:36 +0900468
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900469config ARCH_KEYSTONE
470 bool "TI Keystone"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100471 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900472 select SUPPORT_SPL
Tom Rini393a4ce2016-03-16 09:19:43 -0400473 select CMD_POWEROFF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900474
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200475config ARCH_MESON
476 bool "Amlogic Meson"
477 help
478 Support for the Meson SoC family developed by Amlogic Inc.,
479 targeted at media players and tablet computers. We currently
480 support the S905 (GXBaby) 64-bit SoC.
481
Adrian Alonso98810772015-09-03 11:49:28 -0500482config ARCH_MX7
483 bool "Freescale MX7"
484 select CPU_V7
485
Boris BREZILLON51e82662015-03-04 13:13:03 +0100486config ARCH_MX6
487 bool "Freescale MX6"
488 select CPU_V7
489
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200490config ARCH_MX5
491 bool "Freescale MX5"
492 select CPU_V7
493
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900494config TARGET_M53EVK
495 bool "Support m53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100496 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900497 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900498
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900499config TARGET_MX51EVK
500 bool "Support mx51evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100501 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900502
503config TARGET_MX53ARD
504 bool "Support mx53ard"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100505 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900506
507config TARGET_MX53EVK
508 bool "Support mx53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100509 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900510
511config TARGET_MX53LOCO
512 bool "Support mx53loco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100513 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900514
515config TARGET_MX53SMD
516 bool "Support mx53smd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100517 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900518
Masahiro Yamadadd678432014-08-31 07:11:02 +0900519config OMAP34XX
520 bool "OMAP34XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100521 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900522
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900523config OMAP44XX
524 bool "OMAP44XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100525 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900526 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900527
Masahiro Yamada420b8162014-08-31 07:11:04 +0900528config OMAP54XX
529 bool "OMAP54XX SoC"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100530 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900531 select SUPPORT_SPL
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500532
533config AM43XX
534 bool "AM43XX SoC"
535 select CPU_V7
536 select SUPPORT_SPL
537 help
538 Support for AM43xx SOC from Texas Instruments.
539 The AM43xx high performance SOC features a Cortex-A9
540 ARM core, a quad core PRU-ICSS for industrial Ethernet
541 protocols, dual camera support, optional 3D graphics
542 and an optional customer programmable secure boot.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900543
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900544config RMOBILE
545 bool "Renesas ARM SoCs"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100546 select CPU_V7
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300547
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200548config ARCH_SNAPDRAGON
549 bool "Qualcomm Snapdragon SoCs"
550 select ARM64
551 select DM
552 select DM_GPIO
553 select DM_SERIAL
554 select SPMI
555 select OF_CONTROL
556 select OF_SEPARATE
557
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900558config ARCH_SOCFPGA
559 bool "Altera SOCFPGA family"
Marek Vasut69295472014-12-30 18:16:08 +0100560 select CPU_V7
561 select SUPPORT_SPL
Marek Vasutf44fb6f2015-08-19 23:23:52 +0200562 select OF_CONTROL
563 select SPL_OF_CONTROL
Masahiro Yamadae2005542015-03-31 12:47:59 +0900564 select DM
565 select DM_SPI_FLASH
566 select DM_SPI
Marek Vasut69295472014-12-30 18:16:08 +0100567
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300568config TARGET_CM_T43
569 bool "Support cm_t43"
570 select CPU_V7
571 select SUPPORT_SPL
572
Ian Campbelld8e69e02014-10-24 21:20:44 +0100573config ARCH_SUNXI
574 bool "Support sunxi (Allwinner) SoCs"
Hans de Goede2c526402016-05-15 13:51:58 +0200575 select CMD_BOOTZ
576 select CMD_DHCP
577 select CMD_EXT2
578 select CMD_EXT4
579 select CMD_FAT
580 select CMD_FS_GENERIC
Hans de Goedec9511672016-04-03 09:41:44 +0200581 select CMD_GPIO
Hans de Goede2c526402016-05-15 13:51:58 +0200582 select CMD_MII
583 select CMD_MMC if MMC
584 select CMD_PING
Hans de Goede16eac6562015-06-17 20:54:07 +0200585 select CMD_USB
Hans de Goede03914882015-04-15 20:46:48 +0200586 select DM
Tom Rini10e87172015-06-30 16:51:15 -0400587 select DM_ETH
Hans de Goedec8d43472015-12-21 20:22:00 +0100588 select DM_GPIO
589 select DM_KEYBOARD
Tom Rini10e87172015-06-30 16:51:15 -0400590 select DM_SERIAL
Hans de Goede0b3845a2015-06-17 17:44:58 +0200591 select DM_USB
Hans de Goede2c526402016-05-15 13:51:58 +0200592 select HUSH_PARSER
Hans de Goede48a234a2016-03-22 22:51:52 +0100593 select OF_BOARD_SETUP
Hans de Goede03914882015-04-15 20:46:48 +0200594 select OF_CONTROL
595 select OF_SEPARATE
Alexander Graf0099be02016-03-29 17:29:07 +0200596 select SPL_STACK_R if SUPPORT_SPL
597 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede9cce88a2015-12-10 11:10:17 +0100598 select SYS_NS16550
Tom Rini10e87172015-06-30 16:51:15 -0400599 select USB
Hans de Goede16eac6562015-06-17 20:54:07 +0200600 select USB_STORAGE
Hans de Goede35e80a42015-08-04 17:04:13 +0200601 select USB_KEYBOARD
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800602
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400603config TARGET_TS4800
604 bool "Support TS4800"
605 select CPU_V7
606
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900607config TARGET_VF610TWR
608 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100609 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900610
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530611config TARGET_COLIBRI_VF
612 bool "Support Colibri VF50/61"
613 select CPU_V7
614
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200615config TARGET_PCM052
616 bool "Support pcm-052"
617 select CPU_V7
618
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900619config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900620 bool "Xilinx Zynq Platform"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100621 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900622 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530623 select OF_CONTROL
Michal Simek6dae8492016-01-13 14:32:43 +0100624 select SPL_OF_CONTROL if SPL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900625 select DM
Michal Simek250e05e2015-11-30 14:14:56 +0100626 select DM_ETH
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530627 select DM_GPIO
Michal Simek6dae8492016-01-13 14:32:43 +0100628 select SPL_DM if SPL
Michal Simek9ecd2682015-11-30 16:13:03 +0100629 select DM_MMC
Jagan Teki0bd03a52015-06-27 00:51:32 +0530630 select DM_SPI
Simon Glass23d9b622015-10-17 19:41:27 -0600631 select DM_SERIAL
Jagan Teki0bd03a52015-06-27 00:51:32 +0530632 select DM_SPI_FLASH
Michal Simek6dae8492016-01-13 14:32:43 +0100633 select SPL_SEPARATE_BSS if SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900634
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530635config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100636 bool "Support Xilinx ZynqMP Platform"
637 select ARM64
Michal Simek25b83712015-10-17 19:41:25 -0600638 select DM
639 select OF_CONTROL
640 select DM_SERIAL
Michal Simek72536fd2015-11-20 13:17:22 +0100641 select SUPPORT_SPL
Michal Simek04b7e622015-01-15 10:01:51 +0100642
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900643config TEGRA
644 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900645
Linus Walleij800d6fd2015-01-23 11:50:53 +0100646config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900647 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900648 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900649
Linus Walleij800d6fd2015-01-23 11:50:53 +0100650config TARGET_VEXPRESS64_BASE_FVP
651 bool "Support Versatile Express ARMv8a FVP BASE model"
652 select ARM64
653 select SEMIHOSTING
654
Ryan Harkinb6b96652015-10-09 17:18:02 +0100655config TARGET_VEXPRESS64_BASE_FVP_DRAM
656 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
657 select ARM64
658 help
659 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
660 the default config to allow the user to load the images directly into
661 DRAM using model parameters rather than by using semi-hosting to load
662 the files from the host filesystem.
663
Linus Walleijc5822502015-01-23 14:41:10 +0100664config TARGET_VEXPRESS64_JUNO
665 bool "Support Versatile Express Juno Development Platform"
666 select ARM64
667
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530668config TARGET_LS2080A_EMU
669 bool "Support ls2080a_emu"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900670 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100671 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530672 help
673 Support for Freescale LS2080A_EMU platform
674 The LS2080A Development System (EMULATOR) is a pre silicon
675 development platform that supports the QorIQ LS2080A
676 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900677
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530678config TARGET_LS2080A_SIMU
679 bool "Support ls2080a_simu"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900680 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100681 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530682 help
683 Support for Freescale LS2080A_SIMU platform
684 The LS2080A Development System (QDS) is a pre silicon
685 development platform that supports the QorIQ LS2080A
686 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900687
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530688config TARGET_LS2080AQDS
689 bool "Support ls2080aqds"
York Sun03017032015-03-20 19:28:23 -0700690 select ARM64
691 select ARMV8_MULTIENTRY
Scott Wood8e728cd2015-03-24 13:25:02 -0700692 select SUPPORT_SPL
York Sun03017032015-03-20 19:28:23 -0700693 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530694 Support for Freescale LS2080AQDS platform
695 The LS2080A Development System (QDS) is a high-performance
696 development platform that supports the QorIQ LS2080A
York Sun03017032015-03-20 19:28:23 -0700697 Layerscape Architecture processor.
698
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530699config TARGET_LS2080ARDB
700 bool "Support ls2080ardb"
York Sune12abcb2015-03-20 19:28:24 -0700701 select ARM64
702 select ARMV8_MULTIENTRY
Scott Wood212b8d82015-03-24 13:25:03 -0700703 select SUPPORT_SPL
York Sune12abcb2015-03-20 19:28:24 -0700704 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530705 Support for Freescale LS2080ARDB platform.
706 The LS2080A Reference design board (RDB) is a high-performance
707 development platform that supports the QorIQ LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700708 Layerscape Architecture processor.
709
Peter Griffin31f327e2015-07-30 18:55:23 +0100710config TARGET_HIKEY
711 bool "Support HiKey 96boards Consumer Edition Platform"
712 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100713 select DM
714 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100715 select DM_SERIAL
Peter Griffinc97c37a2016-04-20 17:13:59 +0100716 select OF_CONTROL
Peter Griffin31f327e2015-07-30 18:55:23 +0100717 help
718 Support for HiKey 96boards platform. It features a HI6220
719 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
720
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530721config TARGET_LS1012AQDS
722 bool "Support ls1012aqds"
723 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"
732 select ARM64
733 help
734 Support for Freescale LS1012ARDB platform.
735 The LS1012A Reference design board (RDB) is a high-performance
736 development platform that supports the QorIQ LS1012A
737 Layerscape Architecture processor.
738
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530739config TARGET_LS1012AFRDM
740 bool "Support ls1012afrdm"
741 select ARM64
742 help
743 Support for Freescale LS1012AFRDM platform.
744 The LS1012A Freedom board (FRDM) is a high-performance
745 development platform that supports the QorIQ LS1012A
746 Layerscape Architecture processor.
747
Wang Huanf0ce7d62014-09-05 13:52:44 +0800748config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800749 bool "Support ls1021aqds"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100750 select CPU_V7
Alison Wang024e6b12014-12-03 15:00:45 +0800751 select SUPPORT_SPL
Wang Huanddf89f92014-09-05 13:52:45 +0800752config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800753 bool "Support ls1021atwr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100754 select CPU_V7
Alison Wang024e6b12014-12-03 15:00:45 +0800755 select SUPPORT_SPL
Wang Huanddf89f92014-09-05 13:52:45 +0800756
Shaohui Xiedd335672015-11-11 17:58:37 +0800757config TARGET_LS1043AQDS
758 bool "Support ls1043aqds"
759 select ARM64
760 select ARMV8_MULTIENTRY
761 select SUPPORT_SPL
762 help
763 Support for Freescale LS1043AQDS platform.
764
Mingkai Hueee86ff2015-10-26 19:47:52 +0800765config TARGET_LS1043ARDB
766 bool "Support ls1043ardb"
767 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800768 select ARMV8_MULTIENTRY
Gong Qianyu8168a0f2015-10-26 19:47:53 +0800769 select SUPPORT_SPL
Mingkai Hueee86ff2015-10-26 19:47:52 +0800770 help
771 Support for Freescale LS1043ARDB platform.
772
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900773config TARGET_H2200
774 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100775 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900776
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -0700777config TARGET_ZIPITZ2
778 bool "Support zipitz2"
779 select CPU_PXA
780
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900781config TARGET_COLIBRI_PXA270
782 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100783 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900784
Masahiro Yamada82069432014-10-03 19:21:07 +0900785config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900786 bool "Socionext UniPhier SoCs"
Masahiro Yamadae4dfb052016-02-02 21:11:32 +0900787 select CLK_UNIPHIER
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900788 select SUPPORT_SPL
Masahiro Yamada9c9a3e12014-12-18 19:11:03 +0900789 select SPL
Masahiro Yamadacfc2f7d2015-02-24 22:26:21 +0900790 select OF_CONTROL
Masahiro Yamada47eb9a82015-08-28 20:13:18 +0900791 select SPL_OF_CONTROL
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900792 select DM
Masahiro Yamadad1066ba2015-08-28 20:13:17 +0900793 select SPL_DM
Masahiro Yamada5f128922016-02-16 17:03:50 +0900794 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900795 select DM_SERIAL
796 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +0900797 select DM_MMC
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900798 help
799 Support for UniPhier SoC family developed by Socionext Inc.
800 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada82069432014-10-03 19:21:07 +0900801
Vikas Manocha95c89192016-01-15 17:49:06 -0800802config STM32
803 bool "Support STM32"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100804 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +0100805 select DM
806 select DM_SERIAL
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100807
Simon Glass2cffe662015-08-30 16:55:38 -0600808config ARCH_ROCKCHIP
809 bool "Support Rockchip SoCs"
810 select SUPPORT_SPL
811 select SPL
812 select OF_CONTROL
813 select CPU_V7
814 select DM
815
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700816config TARGET_THUNDERX_88XX
817 bool "Support ThunderX 88xx"
Marek Vasut09ab8ad2016-06-01 02:33:53 +0200818 select ARM64
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700819 select OF_CONTROL
820
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900821endchoice
822
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900823source "arch/arm/mach-at91/Kconfig"
824
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900825source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900826
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900827source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -0700828
Thomas Abraham74f84862015-08-03 17:58:00 +0530829source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900830
Masahiro Yamada95ec48b2015-02-20 17:04:08 +0900831source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900832
Masahiro Yamadacad44162015-04-21 21:59:36 +0900833source "arch/arm/mach-integrator/Kconfig"
834
Masahiro Yamadaf058b792015-02-20 17:04:11 +0900835source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900836
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +0900837source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +0900838
Stefan Roese383e0c12015-08-25 13:18:38 +0200839source "arch/arm/mach-mvebu/Kconfig"
840
Adrian Alonso98810772015-09-03 11:49:28 -0500841source "arch/arm/cpu/armv7/mx7/Kconfig"
842
Boris BREZILLON51e82662015-03-04 13:13:03 +0100843source "arch/arm/cpu/armv7/mx6/Kconfig"
844
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200845source "arch/arm/cpu/armv7/mx5/Kconfig"
846
Madan Srinivas8a536e92016-05-19 19:10:44 -0500847source "arch/arm/cpu/armv7/omap-common/Kconfig"
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500848
Masahiro Yamada22537642015-02-20 17:04:09 +0900849source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900850
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900851source "arch/arm/cpu/armv7/rmobile/Kconfig"
852
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200853source "arch/arm/mach-meson/Kconfig"
854
Simon Glass2cffe662015-08-30 16:55:38 -0600855source "arch/arm/mach-rockchip/Kconfig"
856
Minkyu Kang56b820a2015-11-20 15:24:57 +0900857source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -0600858
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200859source "arch/arm/mach-snapdragon/Kconfig"
860
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900861source "arch/arm/mach-socfpga/Kconfig"
862
Vikas Manocha95c89192016-01-15 17:49:06 -0800863source "arch/arm/mach-stm32/Kconfig"
864
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900865source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900866
Masahiro Yamadaf8563982015-02-27 02:26:42 +0900867source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +0900868
Masahiro Yamada43246cc2015-03-16 16:43:22 +0900869source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900870
Hans de Goede85437352014-11-14 09:34:30 +0100871source "arch/arm/cpu/armv7/Kconfig"
872
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +0530873source "arch/arm/cpu/armv8/zynqmp/Kconfig"
874
Linus Walleij74771392015-03-09 10:53:21 +0100875source "arch/arm/cpu/armv8/Kconfig"
876
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +0100877source "arch/arm/imx-common/Kconfig"
878
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900879source "board/BuR/kwb/Kconfig"
880source "board/BuR/tseries/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900881source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900882source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900883source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900884source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900885source "board/armltd/vexpress/Kconfig"
886source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900887source "board/bluegiga/apx4devkit/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900888source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -0800889source "board/broadcom/bcmcygnus/Kconfig"
890source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700891source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900892source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900893source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400894source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900895source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900896source "board/denx/m28evk/Kconfig"
897source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530898source "board/freescale/ls2080a/Kconfig"
899source "board/freescale/ls2080aqds/Kconfig"
900source "board/freescale/ls2080ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +0800901source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +0800902source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +0800903source "board/freescale/ls1021atwr/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +0800904source "board/freescale/ls1043ardb/Kconfig"
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530905source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530906source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530907source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900908source "board/freescale/mx23evk/Kconfig"
909source "board/freescale/mx25pdk/Kconfig"
910source "board/freescale/mx28evk/Kconfig"
911source "board/freescale/mx31ads/Kconfig"
912source "board/freescale/mx31pdk/Kconfig"
913source "board/freescale/mx35pdk/Kconfig"
914source "board/freescale/mx51evk/Kconfig"
915source "board/freescale/mx53ard/Kconfig"
916source "board/freescale/mx53evk/Kconfig"
917source "board/freescale/mx53loco/Kconfig"
918source "board/freescale/mx53smd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900919source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900920source "board/gumstix/pepper/Kconfig"
921source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -0400922source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900923source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900924source "board/isee/igep0033/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900925source "board/mpl/vcma9/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900926source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900927source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200928source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900929source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900930source "board/samsung/smdk2410/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900931source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900932source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900933source "board/siemens/draco/Kconfig"
934source "board/siemens/pxm2/Kconfig"
935source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900936source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900937source "board/spear/spear300/Kconfig"
938source "board/spear/spear310/Kconfig"
939source "board/spear/spear320/Kconfig"
940source "board/spear/spear600/Kconfig"
941source "board/spear/x600/Kconfig"
Vikas Manocha33913c52014-11-18 10:42:22 -0800942source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900943source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900944source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +0200945source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900946source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900947source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -0800948source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900949source "board/ti/ti814x/Kconfig"
950source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900951source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900952source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530953source "board/toradex/colibri_vf/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400954source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +0200955source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900956source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200957source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -0700958source "board/zipitz2/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900959
Masahiro Yamadadf00e522014-09-01 11:06:34 +0900960source "arch/arm/Kconfig.debug"
961
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900962endmenu