blob: 0a05662e7cec6b9f212cd1e2b4a7435d4668495d [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
Tom Rinibacb52c2017-03-07 07:13:42 -050022# If set, the workarounds for these ARM errata are applied early during U-Boot
23# startup. Note that in general these options force the workarounds to be
24# applied; no CPU-type/version detection exists, unlike the similar options in
25# the Linux kernel. Do not set these options unless they apply! Also note that
26# the following can be machine specific errata. These do have ability to
27# provide rudimentary version and machine specific checks, but expect no
28# product checks:
29# CONFIG_ARM_ERRATA_430973
30# CONFIG_ARM_ERRATA_454179
31# CONFIG_ARM_ERRATA_621766
32# CONFIG_ARM_ERRATA_798870
33# CONFIG_ARM_ERRATA_801819
34config ARM_ERRATA_430973
35 bool
36
37config ARM_ERRATA_454179
38 bool
39
40config ARM_ERRATA_621766
41 bool
42
43config ARM_ERRATA_716044
44 bool
45
46config ARM_ERRATA_742230
47 bool
48
49config ARM_ERRATA_743622
50 bool
51
52config ARM_ERRATA_751472
53 bool
54
55config ARM_ERRATA_761320
56 bool
57
58config ARM_ERRATA_773022
59 bool
60
61config ARM_ERRATA_774769
62 bool
63
64config ARM_ERRATA_794072
65 bool
66
67config ARM_ERRATA_798870
68 bool
69
70config ARM_ERRATA_801819
71 bool
72
73config ARM_ERRATA_826974
74 bool
75
76config ARM_ERRATA_828024
77 bool
78
79config ARM_ERRATA_829520
80 bool
81
82config ARM_ERRATA_833069
83 bool
84
85config ARM_ERRATA_833471
86 bool
87
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010088config CPU_ARM720T
Tom Rinibca01962016-08-22 08:22:18 -040089 bool
Tom Rini84f9b612016-08-22 08:22:17 -040090 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010091
92config CPU_ARM920T
Tom Rinibca01962016-08-22 08:22:18 -040093 bool
Tom Rini84f9b612016-08-22 08:22:17 -040094 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010095
96config CPU_ARM926EJS
Tom Rinibca01962016-08-22 08:22:18 -040097 bool
Tom Rini84f9b612016-08-22 08:22:17 -040098 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010099
100config CPU_ARM946ES
Tom Rinibca01962016-08-22 08:22:18 -0400101 bool
Tom Rini84f9b612016-08-22 08:22:17 -0400102 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100103
104config CPU_ARM1136
Tom Rinibca01962016-08-22 08:22:18 -0400105 bool
Tom Rini84f9b612016-08-22 08:22:17 -0400106 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100107
108config CPU_ARM1176
Tom Rinibca01962016-08-22 08:22:18 -0400109 bool
110 select HAS_VBAR
Tom Rini84f9b612016-08-22 08:22:17 -0400111 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100112
113config CPU_V7
Tom Rinibca01962016-08-22 08:22:18 -0400114 bool
115 select HAS_VBAR
116 select HAS_THUMB2
Tom Rini84f9b612016-08-22 08:22:17 -0400117 select SYS_CACHE_SHIFT_6
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100118
rev13@wp.plb3b57e82015-03-01 12:44:39 +0100119config CPU_V7M
120 bool
Tom Rinibca01962016-08-22 08:22:18 -0400121 select HAS_THUMB2
Tom Rini84f9b612016-08-22 08:22:17 -0400122 select SYS_CACHE_SHIFT_5
rev13@wp.plb3b57e82015-03-01 12:44:39 +0100123
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100124config CPU_PXA
Tom Rinibca01962016-08-22 08:22:18 -0400125 bool
Tom Rini84f9b612016-08-22 08:22:17 -0400126 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100127
128config CPU_SA1100
Tom Rinibca01962016-08-22 08:22:18 -0400129 bool
Tom Rini84f9b612016-08-22 08:22:17 -0400130 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100131
132config SYS_CPU
Tom Rinibca01962016-08-22 08:22:18 -0400133 default "arm720t" if CPU_ARM720T
134 default "arm920t" if CPU_ARM920T
135 default "arm926ejs" if CPU_ARM926EJS
136 default "arm946es" if CPU_ARM946ES
137 default "arm1136" if CPU_ARM1136
138 default "arm1176" if CPU_ARM1176
139 default "armv7" if CPU_V7
140 default "armv7m" if CPU_V7M
141 default "pxa" if CPU_PXA
142 default "sa1100" if CPU_SA1100
Masahiro Yamadadade3b02014-11-06 11:39:27 +0900143 default "armv8" if ARM64
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100144
Marek Vasutb06c9542016-05-26 18:01:36 +0200145config SYS_ARM_ARCH
146 int
147 default 4 if CPU_ARM720T
148 default 4 if CPU_ARM920T
149 default 5 if CPU_ARM926EJS
150 default 5 if CPU_ARM946ES
151 default 6 if CPU_ARM1136
152 default 6 if CPU_ARM1176
153 default 7 if CPU_V7
154 default 7 if CPU_V7M
155 default 5 if CPU_PXA
156 default 4 if CPU_SA1100
157 default 8 if ARM64
158
Tom Rini84f9b612016-08-22 08:22:17 -0400159config SYS_CACHE_SHIFT_5
160 bool
161
162config SYS_CACHE_SHIFT_6
163 bool
164
165config SYS_CACHE_SHIFT_7
166 bool
167
168config SYS_CACHELINE_SIZE
169 int
170 default 128 if SYS_CACHE_SHIFT_7
171 default 64 if SYS_CACHE_SHIFT_6
172 default 32 if SYS_CACHE_SHIFT_5
173
Linus Walleij800d6fd2015-01-23 11:50:53 +0100174config SEMIHOSTING
175 bool "support boot from semihosting"
176 help
177 In emulated environments, semihosting is a way for
178 the hosted environment to call out to the emulator to
179 retrieve files from the host machine.
180
Peng Fan10ddab42015-08-19 15:48:57 +0800181config SYS_L2CACHE_OFF
182 bool "L2cache off"
183 help
184 If SoC does not support L2CACHE or one do not want to enable
185 L2CACHE, choose this option.
186
Andre Przywara48321ba2016-05-31 10:45:06 -0700187config ENABLE_ARM_SOC_BOOT0_HOOK
188 bool "prepare BOOT0 header"
189 help
190 If the SoC's BOOT0 requires a header area filled with (magic)
191 values, then choose this option, and create a define called
192 ARM_SOC_BOOT0_HOOK which contains the required assembler
193 preprocessor code.
194
Fabio Estevam988f5052016-12-15 19:30:40 -0200195config USE_ARCH_MEMCPY
196 bool "Use an assembly optimized implementation of memcpy"
Tom Rini443b5162017-01-12 13:16:02 -0500197 default y
Masahiro Yamadae55f1462016-12-19 19:31:02 +0900198 depends on !ARM64
Fabio Estevam988f5052016-12-15 19:30:40 -0200199 help
200 Enable the generation of an optimized version of memcpy.
201 Such implementation may be faster under some conditions
202 but may increase the binary size.
203
Tom Rini443b5162017-01-12 13:16:02 -0500204config SPL_USE_ARCH_MEMCPY
205 bool "Use an assembly optimized implementation of memcpy"
206 default y if USE_ARCH_MEMCPY
207 depends on !ARM64
208 help
209 Enable the generation of an optimized version of memcpy.
210 Such implementation may be faster under some conditions
211 but may increase the binary size.
212
Fabio Estevam988f5052016-12-15 19:30:40 -0200213config USE_ARCH_MEMSET
214 bool "Use an assembly optimized implementation of memset"
Tom Rini443b5162017-01-12 13:16:02 -0500215 default y
216 depends on !ARM64
217 help
218 Enable the generation of an optimized version of memset.
219 Such implementation may be faster under some conditions
220 but may increase the binary size.
221
222config SPL_USE_ARCH_MEMSET
223 bool "Use an assembly optimized implementation of memset"
224 default y if USE_ARCH_MEMSET
Masahiro Yamadae55f1462016-12-19 19:31:02 +0900225 depends on !ARM64
Fabio Estevam988f5052016-12-15 19:30:40 -0200226 help
227 Enable the generation of an optimized version of memset.
228 Such implementation may be faster under some conditions
229 but may increase the binary size.
230
Tom Rini5c02a1f2016-11-07 21:34:53 -0500231config ARCH_OMAP2
232 bool
233 select CPU_V7
234 select SUPPORT_SPL
235
Alison Wang73818d52016-11-10 10:49:03 +0800236config ARM64_SUPPORT_AARCH32
237 bool "ARM64 system support AArch32 execution state"
238 default y if ARM64 && !TARGET_THUNDERX_88XX
239 help
240 This ARM64 system supports AArch32 execution state.
241
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900242choice
243 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -0600244 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900245
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900246config ARCH_AT91
247 bool "Atmel AT91"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900248
249config TARGET_EDB93XX
250 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100251 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900252
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900253config TARGET_ASPENITE
254 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100255 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900256
257config TARGET_GPLUGD
258 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100259 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900260
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900261config ARCH_DAVINCI
262 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100263 select CPU_ARM926EJS
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900264 help
265 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900266
Masahiro Yamadad7570852014-08-31 07:10:59 +0900267config KIRKWOOD
268 bool "Marvell Kirkwood"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100269 select CPU_ARM926EJS
Simon Glass7a99a872017-01-23 13:31:20 -0700270 select BOARD_EARLY_INIT_F
Simon Glass95d31412017-01-23 13:31:21 -0700271 select ARCH_MISC_INIT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900272
Stefan Roese383e0c12015-08-25 13:18:38 +0200273config ARCH_MVEBU
Stefan Roesecb410332016-05-25 08:13:45 +0200274 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese096de4f2015-09-01 11:27:52 +0200275 select OF_CONTROL
276 select OF_SEPARATE
277 select DM
Stefan Roese05b38c12015-11-19 07:46:15 +0100278 select DM_ETH
Stefan Roese7f9f8e32015-09-02 08:41:41 +0200279 select DM_SERIAL
Stefan Roese49e7d772015-11-20 13:51:57 +0100280 select DM_SPI
281 select DM_SPI_FLASH
Stefan Roese9b1e2312014-10-22 12:13:19 +0200282
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900283config TARGET_DEVKIT3250
284 bool "Support devkit3250"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100285 select CPU_ARM926EJS
Vladimir Zapolskiy89f86a22015-07-18 01:47:11 +0300286 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900287
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200288config TARGET_WORK_92105
289 bool "Support work_92105"
290 select CPU_ARM926EJS
291 select SUPPORT_SPL
292
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900293config TARGET_MX25PDK
294 bool "Support mx25pdk"
Tom Rini22d567e2017-01-22 19:43:11 -0500295 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100296 select CPU_ARM926EJS
Simon Glass7a99a872017-01-23 13:31:20 -0700297 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900298
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900299config TARGET_ZMX25
300 bool "Support zmx25"
Tom Rini22d567e2017-01-22 19:43:11 -0500301 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100302 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900303
304config TARGET_APF27
305 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100306 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900307 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900308
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900309config TARGET_APX4DEVKIT
310 bool "Support apx4devkit"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100311 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900312 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900313
314config TARGET_XFI3
315 bool "Support xfi3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100316 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900317 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900318
319config TARGET_M28EVK
320 bool "Support m28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100321 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900322 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900323
324config TARGET_MX23EVK
325 bool "Support mx23evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100326 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900327 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -0700328 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900329
330config TARGET_MX28EVK
331 bool "Support mx28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100332 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900333 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -0700334 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900335
336config TARGET_MX23_OLINUXINO
337 bool "Support mx23_olinuxino"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100338 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900339 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -0700340 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900341
342config TARGET_BG0900
343 bool "Support bg0900"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100344 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900345 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900346
347config TARGET_SANSA_FUZE_PLUS
348 bool "Support sansa_fuze_plus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100349 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900350 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900351
352config TARGET_SC_SPS_1
353 bool "Support sc_sps_1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100354 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900355 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900356
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900357config ORION5X
358 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100359 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900360
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900361config TARGET_SPEAR300
362 bool "Support spear300"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100363 select CPU_ARM926EJS
Simon Glass7a99a872017-01-23 13:31:20 -0700364 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900365
366config TARGET_SPEAR310
367 bool "Support spear310"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100368 select CPU_ARM926EJS
Simon Glass7a99a872017-01-23 13:31:20 -0700369 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900370
371config TARGET_SPEAR320
372 bool "Support spear320"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100373 select CPU_ARM926EJS
Simon Glass7a99a872017-01-23 13:31:20 -0700374 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900375
376config TARGET_SPEAR600
377 bool "Support spear600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100378 select CPU_ARM926EJS
Simon Glass7a99a872017-01-23 13:31:20 -0700379 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900380
Vikas Manocha33913c52014-11-18 10:42:22 -0800381config TARGET_STV0991
382 bool "Support stv0991"
383 select CPU_V7
Masahiro Yamada0906a822015-03-31 12:48:01 +0900384 select DM
385 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700386 select DM_SPI
387 select DM_SPI_FLASH
388 select SPI_FLASH
Vikas Manocha33913c52014-11-18 10:42:22 -0800389
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900390config TARGET_X600
391 bool "Support x600"
Tom Rini22d567e2017-01-22 19:43:11 -0500392 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100393 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900394 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900395
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900396config TARGET_IMX31_PHYCORE
Tom Rini969dc222017-01-22 19:43:09 -0500397 bool "Support imx31_phycore_eet"
398 select CPU_ARM1136
Simon Glass7a99a872017-01-23 13:31:20 -0700399 select BOARD_EARLY_INIT_F
Tom Rini969dc222017-01-22 19:43:09 -0500400
401config TARGET_IMX31_PHYCORE_EET
402 bool "Support imx31_phycore_eet"
Tom Rini22d567e2017-01-22 19:43:11 -0500403 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100404 select CPU_ARM1136
Simon Glass7a99a872017-01-23 13:31:20 -0700405 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900406
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900407config TARGET_MX31ADS
408 bool "Support mx31ads"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100409 select CPU_ARM1136
Simon Glass7a99a872017-01-23 13:31:20 -0700410 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900411
412config TARGET_MX31PDK
413 bool "Support mx31pdk"
Tom Rini22d567e2017-01-22 19:43:11 -0500414 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100415 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900416 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -0700417 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900418
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900419config TARGET_WOODBURN
420 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100421 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900422
423config TARGET_WOODBURN_SD
424 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100425 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900426 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900427
428config TARGET_FLEA3
429 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100430 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900431
432config TARGET_MX35PDK
433 bool "Support mx35pdk"
Tom Rini22d567e2017-01-22 19:43:11 -0500434 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100435 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900436
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900437config ARCH_BCM283X
438 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900439 select DM
440 select DM_SERIAL
441 select DM_GPIO
Fabian Vogtf9e3ed52016-09-26 14:26:51 +0200442 select OF_CONTROL
Stephen Warrendc7ea682015-02-16 12:16:15 -0700443
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900444config TARGET_VEXPRESS_CA15_TC2
445 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100446 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100447 select CPU_V7_HAS_NONSEC
448 select CPU_V7_HAS_VIRT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900449
450config TARGET_VEXPRESS_CA5X2
451 bool "Support vexpress_ca5x2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100452 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900453
454config TARGET_VEXPRESS_CA9X4
455 bool "Support vexpress_ca9x4"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100456 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900457
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200458config TARGET_BRXRE1
459 bool "Support BRXRE1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500460 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500461 select BOARD_LATE_INIT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900462
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200463config TARGET_BRPPT1
464 bool "Support BRPPT1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500465 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500466 select BOARD_LATE_INIT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900467
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900468config TARGET_DRACO
469 bool "Support draco"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500470 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500471 select BOARD_LATE_INIT
Heiko Schocher107ef972016-06-13 15:16:01 +0200472 select DM
473 select DM_SERIAL
474 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900475
Heiko Schocher9ba67f22015-06-15 14:57:15 +0200476config TARGET_THUBAN
477 bool "Support thuban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500478 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500479 select BOARD_LATE_INIT
Heiko Schocher107ef972016-06-13 15:16:01 +0200480 select DM
481 select DM_SERIAL
482 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900483
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200484config TARGET_RASTABAN
485 bool "Support rastaban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500486 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500487 select BOARD_LATE_INIT
Heiko Schocher107ef972016-06-13 15:16:01 +0200488 select DM
489 select DM_SERIAL
490 select DM_GPIO
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200491
Heiko Schochercbec11a2016-06-07 08:55:45 +0200492config TARGET_ETAMIN
Tom Rinibca01962016-08-22 08:22:18 -0400493 bool "Support etamin"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500494 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500495 select BOARD_LATE_INIT
Heiko Schocher107ef972016-06-13 15:16:01 +0200496 select DM
497 select DM_SERIAL
498 select DM_GPIO
Heiko Schochercbec11a2016-06-07 08:55:45 +0200499
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900500config TARGET_PXM2
501 bool "Support pxm2"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500502 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500503 select BOARD_LATE_INIT
Heiko Schocher107ef972016-06-13 15:16:01 +0200504 select DM
505 select DM_SERIAL
506 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900507
508config TARGET_RUT
509 bool "Support rut"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500510 select ARCH_OMAP2
Tom Rini22d567e2017-01-22 19:43:11 -0500511 select BOARD_LATE_INIT
Heiko Schocher107ef972016-06-13 15:16:01 +0200512 select DM
513 select DM_SERIAL
514 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900515
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900516config TARGET_TI814X_EVM
517 bool "Support ti814x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500518 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900519
520config TARGET_TI816X_EVM
521 bool "Support ti816x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500522 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900523
Steve Rae45f2c702016-06-02 15:10:56 -0700524config TARGET_BCM23550_W1D
525 bool "Support bcm23550_w1d"
526 select CPU_V7
527
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900528config TARGET_BCM28155_AP
529 bool "Support bcm28155_ap"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100530 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900531
Steve Rae1c5f31c2014-11-11 11:32:18 -0800532config TARGET_BCMCYGNUS
533 bool "Support bcmcygnus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100534 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700535
Steve Rae1c5f31c2014-11-11 11:32:18 -0800536config TARGET_BCMNSP
537 bool "Support bcmnsp"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100538 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700539
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900540config ARCH_EXYNOS
541 bool "Samsung EXYNOS"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900542 select DM
Simon Glass7bbb7d92016-11-23 06:34:40 -0700543 select DM_I2C
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900544 select DM_SPI_FLASH
545 select DM_SERIAL
546 select DM_SPI
547 select DM_GPIO
Simon Glassaa8484f2015-10-18 21:17:17 -0600548 select DM_KEYBOARD
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900549
Simon Glass96aa0722014-10-07 22:01:50 -0600550config ARCH_S5PC1XX
551 bool "Samsung S5PC1XX"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100552 select CPU_V7
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900553 select DM
554 select DM_SERIAL
555 select DM_GPIO
Simon Glassc6aa9702016-11-23 06:34:41 -0700556 select DM_I2C
Simon Glass96aa0722014-10-07 22:01:50 -0600557
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900558config ARCH_HIGHBANK
559 bool "Calxeda Highbank"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100560 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900561
Masahiro Yamadacad44162015-04-21 21:59:36 +0900562config ARCH_INTEGRATOR
563 bool "ARM Ltd. Integrator family"
Linus Walleij616d9a02015-07-27 11:22:48 +0200564 select DM
565 select DM_SERIAL
Masahiro Yamadacad44162015-04-21 21:59:36 +0900566
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900567config ARCH_KEYSTONE
568 bool "TI Keystone"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100569 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900570 select SUPPORT_SPL
Tom Rini393a4ce2016-03-16 09:19:43 -0400571 select CMD_POWEROFF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900572
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200573config ARCH_MESON
574 bool "Amlogic Meson"
575 help
576 Support for the Meson SoC family developed by Amlogic Inc.,
577 targeted at media players and tablet computers. We currently
578 support the S905 (GXBaby) 64-bit SoC.
579
Adrian Alonso98810772015-09-03 11:49:28 -0500580config ARCH_MX7
581 bool "Freescale MX7"
582 select CPU_V7
York Sun92c36e22016-12-28 08:43:30 -0800583 select SYS_FSL_HAS_SEC if SECURE_BOOT
584 select SYS_FSL_SEC_COMPAT_4
York Sunfa4199422016-12-28 08:43:31 -0800585 select SYS_FSL_SEC_LE
Simon Glass7a99a872017-01-23 13:31:20 -0700586 select BOARD_EARLY_INIT_F
Simon Glass95d31412017-01-23 13:31:21 -0700587 select ARCH_MISC_INIT
Adrian Alonso98810772015-09-03 11:49:28 -0500588
Boris BREZILLON51e82662015-03-04 13:13:03 +0100589config ARCH_MX6
590 bool "Freescale MX6"
591 select CPU_V7
York Sun92c36e22016-12-28 08:43:30 -0800592 select SYS_FSL_HAS_SEC if SECURE_BOOT
593 select SYS_FSL_SEC_COMPAT_4
York Sunfa4199422016-12-28 08:43:31 -0800594 select SYS_FSL_SEC_LE
Boris BREZILLON51e82662015-03-04 13:13:03 +0100595
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200596config ARCH_MX5
597 bool "Freescale MX5"
598 select CPU_V7
Simon Glass7a99a872017-01-23 13:31:20 -0700599 select BOARD_EARLY_INIT_F
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200600
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900601config TARGET_M53EVK
602 bool "Support m53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100603 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900604 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -0700605 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900606
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900607config TARGET_MX51EVK
608 bool "Support mx51evk"
Tom Rini22d567e2017-01-22 19:43:11 -0500609 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100610 select CPU_V7
Simon Glass7a99a872017-01-23 13:31:20 -0700611 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900612
613config TARGET_MX53ARD
614 bool "Support mx53ard"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100615 select CPU_V7
Simon Glass7a99a872017-01-23 13:31:20 -0700616 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900617
618config TARGET_MX53EVK
619 bool "Support mx53evk"
Tom Rini22d567e2017-01-22 19:43:11 -0500620 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100621 select CPU_V7
Simon Glass7a99a872017-01-23 13:31:20 -0700622 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900623
624config TARGET_MX53LOCO
625 bool "Support mx53loco"
Tom Rini22d567e2017-01-22 19:43:11 -0500626 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100627 select CPU_V7
Simon Glass7a99a872017-01-23 13:31:20 -0700628 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900629
630config TARGET_MX53SMD
631 bool "Support mx53smd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100632 select CPU_V7
Simon Glass7a99a872017-01-23 13:31:20 -0700633 select BOARD_EARLY_INIT_F
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900634
Masahiro Yamadadd678432014-08-31 07:11:02 +0900635config OMAP34XX
636 bool "OMAP34XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500637 select ARCH_OMAP2
Tom Rinibacb52c2017-03-07 07:13:42 -0500638 select ARM_ERRATA_430973
639 select ARM_ERRATA_454179
640 select ARM_ERRATA_621766
Tom Rinib631c9d2016-07-27 22:29:41 -0400641 select USE_TINY_PRINTF
Tom Rini89a65682017-03-03 15:33:32 -0500642 imply SPL_EXT_SUPPORT
643 imply SPL_FAT_SUPPORT
644 imply SPL_GPIO_SUPPORT
645 imply SPL_I2C_SUPPORT
646 imply SPL_LIBCOMMON_SUPPORT
647 imply SPL_LIBDISK_SUPPORT
648 imply SPL_LIBGENERIC_SUPPORT
649 imply SPL_MMC_SUPPORT
650 imply SPL_NAND_SUPPORT
651 imply SPL_POWER_SUPPORT
652 imply SPL_SERIAL_SUPPORT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900653
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900654config OMAP44XX
655 bool "OMAP44XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500656 select ARCH_OMAP2
Tom Rinib631c9d2016-07-27 22:29:41 -0400657 select USE_TINY_PRINTF
Tom Rinid9709842017-03-03 15:33:33 -0500658 imply SPL_DISPLAY_PRINT
659 imply SPL_EXT_SUPPORT
660 imply SPL_FAT_SUPPORT
661 imply SPL_GPIO_SUPPORT
662 imply SPL_I2C_SUPPORT
663 imply SPL_LIBCOMMON_SUPPORT
664 imply SPL_LIBDISK_SUPPORT
665 imply SPL_LIBGENERIC_SUPPORT
666 imply SPL_MMC_SUPPORT
667 imply SPL_NAND_SUPPORT
668 imply SPL_POWER_SUPPORT
669 imply SPL_SERIAL_SUPPORT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900670
Masahiro Yamada420b8162014-08-31 07:11:04 +0900671config OMAP54XX
672 bool "OMAP54XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500673 select ARCH_OMAP2
Tom Rinibacb52c2017-03-07 07:13:42 -0500674 select ARM_ERRATA_798870
Tom Rini3b235102017-03-03 15:33:31 -0500675 imply SPL_DISPLAY_PRINT
676 imply SPL_ENV_SUPPORT
677 imply SPL_EXT_SUPPORT
678 imply SPL_FAT_SUPPORT
679 imply SPL_GPIO_SUPPORT
680 imply SPL_I2C_SUPPORT
681 imply SPL_LIBCOMMON_SUPPORT
682 imply SPL_LIBDISK_SUPPORT
683 imply SPL_LIBGENERIC_SUPPORT
684 imply SPL_MMC_SUPPORT
685 imply SPL_NAND_SUPPORT
686 imply SPL_POWER_SUPPORT
687 imply SPL_SERIAL_SUPPORT
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500688
689config AM43XX
690 bool "AM43XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500691 select ARCH_OMAP2
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500692 help
693 Support for AM43xx SOC from Texas Instruments.
694 The AM43xx high performance SOC features a Cortex-A9
695 ARM core, a quad core PRU-ICSS for industrial Ethernet
696 protocols, dual camera support, optional 3D graphics
697 and an optional customer programmable secure boot.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900698
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500699config AM33XX
700 bool "AM33XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500701 select ARCH_OMAP2
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500702 help
703 Support for AM335x SOC from Texas Instruments.
704 The AM335x high performance SOC features a Cortex-A8
705 ARM core, a dual core PRU-ICSS for industrial Ethernet
706 protocols, optional 3D graphics and an optional customer
707 programmable secure boot.
708
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900709config ARCH_RMOBILE
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900710 bool "Renesas ARM SoCs"
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900711 select DM
712 select DM_SERIAL
Simon Glass7a99a872017-01-23 13:31:20 -0700713 select BOARD_EARLY_INIT_F
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300714
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300715config TARGET_S32V234EVB
716 bool "Support s32v234evb"
717 select ARM64
York Sun097e3602016-12-28 08:43:42 -0800718 select SYS_FSL_ERRATUM_ESDHC111
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300719
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200720config ARCH_SNAPDRAGON
721 bool "Qualcomm Snapdragon SoCs"
722 select ARM64
723 select DM
724 select DM_GPIO
725 select DM_SERIAL
726 select SPMI
727 select OF_CONTROL
728 select OF_SEPARATE
729
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900730config ARCH_SOCFPGA
731 bool "Altera SOCFPGA family"
Marek Vasut69295472014-12-30 18:16:08 +0100732 select CPU_V7
733 select SUPPORT_SPL
Marek Vasutf44fb6f2015-08-19 23:23:52 +0200734 select OF_CONTROL
735 select SPL_OF_CONTROL
Masahiro Yamadae2005542015-03-31 12:47:59 +0900736 select DM
737 select DM_SPI_FLASH
738 select DM_SPI
Marek Vasutbcd861b2016-11-16 17:20:23 +0100739 select ENABLE_ARM_SOC_BOOT0_HOOK
Simon Glass62adede2017-01-23 13:31:19 -0700740 select ARCH_EARLY_INIT_R
Simon Glass95d31412017-01-23 13:31:21 -0700741 select ARCH_MISC_INIT
Dalon Westergreenf5ba9852017-02-10 17:15:35 -0800742 select SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Marek Vasut69295472014-12-30 18:16:08 +0100743
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300744config TARGET_CM_T43
745 bool "Support cm_t43"
Tom Rini28eec372016-11-07 21:34:54 -0500746 select ARCH_OMAP2
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300747
Ian Campbelld8e69e02014-10-24 21:20:44 +0100748config ARCH_SUNXI
749 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedec9511672016-04-03 09:41:44 +0200750 select CMD_GPIO
Hans de Goede2c526402016-05-15 13:51:58 +0200751 select CMD_MMC if MMC
Yann E. MORINe28217d2016-10-31 22:33:40 +0100752 select CMD_USB if DISTRO_DEFAULTS
Hans de Goede03914882015-04-15 20:46:48 +0200753 select DM
Tom Rini10e87172015-06-30 16:51:15 -0400754 select DM_ETH
Hans de Goedec8d43472015-12-21 20:22:00 +0100755 select DM_GPIO
756 select DM_KEYBOARD
Tom Rini10e87172015-06-30 16:51:15 -0400757 select DM_SERIAL
Yann E. MORINe28217d2016-10-31 22:33:40 +0100758 select DM_USB if DISTRO_DEFAULTS
Hans de Goede48a234a2016-03-22 22:51:52 +0100759 select OF_BOARD_SETUP
Hans de Goede03914882015-04-15 20:46:48 +0200760 select OF_CONTROL
761 select OF_SEPARATE
Alexander Graf0099be02016-03-29 17:29:07 +0200762 select SPL_STACK_R if SUPPORT_SPL
763 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede9cce88a2015-12-10 11:10:17 +0100764 select SYS_NS16550
Yann E. MORINe28217d2016-10-31 22:33:40 +0100765 select USB if DISTRO_DEFAULTS
766 select USB_STORAGE if DISTRO_DEFAULTS
767 select USB_KEYBOARD if DISTRO_DEFAULTS
Hans de Goede42a31822016-06-10 12:19:40 +0200768 select USE_TINY_PRINTF
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800769
Sebastien Bourdelinf012f662016-11-08 12:18:07 -0500770config TARGET_TS4600
771 bool "Support TS4600"
772 select CPU_ARM926EJS
773 select SUPPORT_SPL
774
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400775config TARGET_TS4800
776 bool "Support TS4800"
777 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800778 select SYS_FSL_ERRATUM_ESDHC_A001
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400779
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900780config TARGET_VF610TWR
781 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100782 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800783 select SYS_FSL_ERRATUM_ESDHC111
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900784
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530785config TARGET_COLIBRI_VF
786 bool "Support Colibri VF50/61"
Tom Rini22d567e2017-01-22 19:43:11 -0500787 select BOARD_LATE_INIT
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530788 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800789 select SYS_FSL_ERRATUM_ESDHC111
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530790
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200791config TARGET_PCM052
792 bool "Support pcm-052"
793 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800794 select SYS_FSL_ERRATUM_ESDHC111
795 select SYS_FSL_ERRATUM_ESDHC135
796 select SYS_FSL_ERRATUM_ESDHC_A001
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200797
Albert ARIBAUD \(3ADEV\)ddef3b62016-09-26 09:08:08 +0200798config TARGET_BK4R1
799 bool "Support BK4r1"
800 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800801 select SYS_FSL_ERRATUM_ESDHC111
802 select SYS_FSL_ERRATUM_ESDHC135
803 select SYS_FSL_ERRATUM_ESDHC_A001
Albert ARIBAUD \(3ADEV\)ddef3b62016-09-26 09:08:08 +0200804
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900805config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900806 bool "Xilinx Zynq Platform"
Tom Rini22d567e2017-01-22 19:43:11 -0500807 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100808 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900809 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530810 select OF_CONTROL
Michal Simek6dae8492016-01-13 14:32:43 +0100811 select SPL_OF_CONTROL if SPL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900812 select DM
Michal Simek250e05e2015-11-30 14:14:56 +0100813 select DM_ETH
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530814 select DM_GPIO
Michal Simek6dae8492016-01-13 14:32:43 +0100815 select SPL_DM if SPL
Michal Simek9ecd2682015-11-30 16:13:03 +0100816 select DM_MMC
Simon Glass4cc87fb2016-07-05 17:10:15 -0600817 select DM_MMC_OPS
Jagan Teki0bd03a52015-06-27 00:51:32 +0530818 select DM_SPI
Simon Glass23d9b622015-10-17 19:41:27 -0600819 select DM_SERIAL
Jagan Teki0bd03a52015-06-27 00:51:32 +0530820 select DM_SPI_FLASH
Michal Simek6dae8492016-01-13 14:32:43 +0100821 select SPL_SEPARATE_BSS if SPL
Simon Glass476e63f2016-07-05 17:10:14 -0600822 select DM_USB if USB
Simon Glass4cc87fb2016-07-05 17:10:15 -0600823 select BLK
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900824
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530825config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100826 bool "Support Xilinx ZynqMP Platform"
827 select ARM64
Tom Rini22d567e2017-01-22 19:43:11 -0500828 select BOARD_LATE_INIT
Michal Simek25b83712015-10-17 19:41:25 -0600829 select DM
830 select OF_CONTROL
831 select DM_SERIAL
Michal Simek72536fd2015-11-20 13:17:22 +0100832 select SUPPORT_SPL
Michal Simek6f88c702016-07-14 15:07:54 +0200833 select CLK
834 select SPL_CLK
Simon Glass476e63f2016-07-05 17:10:14 -0600835 select DM_USB if USB
Michal Simek04b7e622015-01-15 10:01:51 +0100836
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900837config TEGRA
838 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900839
Linus Walleij800d6fd2015-01-23 11:50:53 +0100840config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900841 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900842 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900843
Linus Walleij800d6fd2015-01-23 11:50:53 +0100844config TARGET_VEXPRESS64_BASE_FVP
845 bool "Support Versatile Express ARMv8a FVP BASE model"
846 select ARM64
847 select SEMIHOSTING
848
Ryan Harkinb6b96652015-10-09 17:18:02 +0100849config TARGET_VEXPRESS64_BASE_FVP_DRAM
850 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
851 select ARM64
852 help
853 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
854 the default config to allow the user to load the images directly into
855 DRAM using model parameters rather than by using semi-hosting to load
856 the files from the host filesystem.
857
Linus Walleijc5822502015-01-23 14:41:10 +0100858config TARGET_VEXPRESS64_JUNO
859 bool "Support Versatile Express Juno Development Platform"
860 select ARM64
861
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530862config TARGET_LS2080A_EMU
863 bool "Support ls2080a_emu"
York Sun4dd8c612016-10-04 14:31:48 -0700864 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900865 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100866 select ARMV8_MULTIENTRY
Simon Glass95d31412017-01-23 13:31:21 -0700867 select ARCH_MISC_INIT
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530868 help
869 Support for Freescale LS2080A_EMU platform
870 The LS2080A Development System (EMULATOR) is a pre silicon
871 development platform that supports the QorIQ LS2080A
872 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900873
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530874config TARGET_LS2080A_SIMU
875 bool "Support ls2080a_simu"
York Sun4dd8c612016-10-04 14:31:48 -0700876 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900877 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100878 select ARMV8_MULTIENTRY
Simon Glass95d31412017-01-23 13:31:21 -0700879 select ARCH_MISC_INIT
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530880 help
881 Support for Freescale LS2080A_SIMU platform
882 The LS2080A Development System (QDS) is a pre silicon
883 development platform that supports the QorIQ LS2080A
884 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900885
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530886config TARGET_LS2080AQDS
887 bool "Support ls2080aqds"
York Sun4dd8c612016-10-04 14:31:48 -0700888 select ARCH_LS2080A
York Sun03017032015-03-20 19:28:23 -0700889 select ARM64
890 select ARMV8_MULTIENTRY
Tom Rini22d567e2017-01-22 19:43:11 -0500891 select BOARD_LATE_INIT
Scott Wood8e728cd2015-03-24 13:25:02 -0700892 select SUPPORT_SPL
Simon Glass95d31412017-01-23 13:31:21 -0700893 select ARCH_MISC_INIT
York Sun03017032015-03-20 19:28:23 -0700894 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530895 Support for Freescale LS2080AQDS platform
896 The LS2080A Development System (QDS) is a high-performance
897 development platform that supports the QorIQ LS2080A
York Sun03017032015-03-20 19:28:23 -0700898 Layerscape Architecture processor.
899
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530900config TARGET_LS2080ARDB
901 bool "Support ls2080ardb"
York Sun4dd8c612016-10-04 14:31:48 -0700902 select ARCH_LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700903 select ARM64
904 select ARMV8_MULTIENTRY
Tom Rini22d567e2017-01-22 19:43:11 -0500905 select BOARD_LATE_INIT
Scott Wood212b8d82015-03-24 13:25:03 -0700906 select SUPPORT_SPL
Simon Glass95d31412017-01-23 13:31:21 -0700907 select ARCH_MISC_INIT
York Sune12abcb2015-03-20 19:28:24 -0700908 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530909 Support for Freescale LS2080ARDB platform.
910 The LS2080A Reference design board (RDB) is a high-performance
911 development platform that supports the QorIQ LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700912 Layerscape Architecture processor.
913
Peter Griffin31f327e2015-07-30 18:55:23 +0100914config TARGET_HIKEY
915 bool "Support HiKey 96boards Consumer Edition Platform"
916 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100917 select DM
918 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100919 select DM_SERIAL
Peter Griffinc97c37a2016-04-20 17:13:59 +0100920 select OF_CONTROL
Peter Griffin31f327e2015-07-30 18:55:23 +0100921 help
922 Support for HiKey 96boards platform. It features a HI6220
923 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
924
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530925config TARGET_LS1012AQDS
926 bool "Support ls1012aqds"
York Sunb3d71642016-09-26 08:09:26 -0700927 select ARCH_LS1012A
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530928 select ARM64
Tom Rini22d567e2017-01-22 19:43:11 -0500929 select BOARD_LATE_INIT
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530930 help
931 Support for Freescale LS1012AQDS platform.
932 The LS1012A Development System (QDS) is a high-performance
933 development platform that supports the QorIQ LS1012A
934 Layerscape Architecture processor.
935
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530936config TARGET_LS1012ARDB
937 bool "Support ls1012ardb"
York Sunb3d71642016-09-26 08:09:26 -0700938 select ARCH_LS1012A
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530939 select ARM64
Tom Rini22d567e2017-01-22 19:43:11 -0500940 select BOARD_LATE_INIT
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530941 help
942 Support for Freescale LS1012ARDB platform.
943 The LS1012A Reference design board (RDB) is a high-performance
944 development platform that supports the QorIQ LS1012A
945 Layerscape Architecture processor.
946
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530947config TARGET_LS1012AFRDM
948 bool "Support ls1012afrdm"
York Sunb3d71642016-09-26 08:09:26 -0700949 select ARCH_LS1012A
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530950 select ARM64
951 help
952 Support for Freescale LS1012AFRDM platform.
953 The LS1012A Freedom board (FRDM) is a high-performance
954 development platform that supports the QorIQ LS1012A
955 Layerscape Architecture processor.
956
Wang Huanf0ce7d62014-09-05 13:52:44 +0800957config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800958 bool "Support ls1021aqds"
Tom Rini22d567e2017-01-22 19:43:11 -0500959 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100960 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800961 select CPU_V7_HAS_NONSEC
962 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800963 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700964 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900965 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700966 select LS1_DEEP_SLEEP
York Sund297d392016-12-28 08:43:40 -0800967 select SYS_FSL_DDR
Simon Glass7a99a872017-01-23 13:31:20 -0700968 select BOARD_EARLY_INIT_F
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900969
Wang Huanddf89f92014-09-05 13:52:45 +0800970config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800971 bool "Support ls1021atwr"
Tom Rini22d567e2017-01-22 19:43:11 -0500972 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100973 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800974 select CPU_V7_HAS_NONSEC
975 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800976 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700977 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900978 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700979 select LS1_DEEP_SLEEP
Simon Glass7a99a872017-01-23 13:31:20 -0700980 select BOARD_EARLY_INIT_F
Wang Huanddf89f92014-09-05 13:52:45 +0800981
Feng Li39e112d2016-11-03 14:15:17 +0800982config TARGET_LS1021AIOT
983 bool "Support ls1021aiot"
Tom Rini22d567e2017-01-22 19:43:11 -0500984 select BOARD_LATE_INIT
Feng Li39e112d2016-11-03 14:15:17 +0800985 select CPU_V7
986 select CPU_V7_HAS_NONSEC
987 select CPU_V7_HAS_VIRT
988 select SUPPORT_SPL
989 select ARCH_LS1021A
990 select ARCH_SUPPORT_PSCI
991 help
992 Support for Freescale LS1021AIOT platform.
993 The LS1021A Freescale board (IOT) is a high-performance
994 development platform that supports the QorIQ LS1021A
995 Layerscape Architecture processor.
996
Shaohui Xiedd335672015-11-11 17:58:37 +0800997config TARGET_LS1043AQDS
998 bool "Support ls1043aqds"
York Sun149eb332016-09-26 08:09:27 -0700999 select ARCH_LS1043A
Shaohui Xiedd335672015-11-11 17:58:37 +08001000 select ARM64
1001 select ARMV8_MULTIENTRY
Tom Rini22d567e2017-01-22 19:43:11 -05001002 select BOARD_LATE_INIT
Shaohui Xiedd335672015-11-11 17:58:37 +08001003 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -07001004 select BOARD_EARLY_INIT_F
Shaohui Xiedd335672015-11-11 17:58:37 +08001005 help
1006 Support for Freescale LS1043AQDS platform.
1007
Mingkai Hueee86ff2015-10-26 19:47:52 +08001008config TARGET_LS1043ARDB
1009 bool "Support ls1043ardb"
York Sun149eb332016-09-26 08:09:27 -07001010 select ARCH_LS1043A
Mingkai Hueee86ff2015-10-26 19:47:52 +08001011 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +08001012 select ARMV8_MULTIENTRY
Tom Rini22d567e2017-01-22 19:43:11 -05001013 select BOARD_LATE_INIT
Gong Qianyu8168a0f2015-10-26 19:47:53 +08001014 select SUPPORT_SPL
Simon Glass7a99a872017-01-23 13:31:20 -07001015 select BOARD_EARLY_INIT_F
Mingkai Hueee86ff2015-10-26 19:47:52 +08001016 help
1017 Support for Freescale LS1043ARDB platform.
1018
Shaohui Xie085ac1c2016-09-07 17:56:14 +08001019config TARGET_LS1046AQDS
1020 bool "Support ls1046aqds"
York Sunbad49842016-09-26 08:09:24 -07001021 select ARCH_LS1046A
Shaohui Xie085ac1c2016-09-07 17:56:14 +08001022 select ARM64
1023 select ARMV8_MULTIENTRY
Tom Rini22d567e2017-01-22 19:43:11 -05001024 select BOARD_LATE_INIT
Shaohui Xie085ac1c2016-09-07 17:56:14 +08001025 select SUPPORT_SPL
1026 select DM_SPI_FLASH if DM_SPI
Simon Glass7a99a872017-01-23 13:31:20 -07001027 select BOARD_EARLY_INIT_F
Shaohui Xie085ac1c2016-09-07 17:56:14 +08001028 help
1029 Support for Freescale LS1046AQDS platform.
1030 The LS1046A Development System (QDS) is a high-performance
1031 development platform that supports the QorIQ LS1046A
1032 Layerscape Architecture processor.
1033
Mingkai Hud2396512016-09-07 18:47:28 +08001034config TARGET_LS1046ARDB
1035 bool "Support ls1046ardb"
York Sunbad49842016-09-26 08:09:24 -07001036 select ARCH_LS1046A
Mingkai Hud2396512016-09-07 18:47:28 +08001037 select ARM64
1038 select ARMV8_MULTIENTRY
Tom Rini22d567e2017-01-22 19:43:11 -05001039 select BOARD_LATE_INIT
Mingkai Hud2396512016-09-07 18:47:28 +08001040 select SUPPORT_SPL
1041 select DM_SPI_FLASH if DM_SPI
Hou Zhiqiang67b6d0a2016-12-09 16:09:01 +08001042 select POWER_MC34VR500
Simon Glass7a99a872017-01-23 13:31:20 -07001043 select BOARD_EARLY_INIT_F
Mingkai Hud2396512016-09-07 18:47:28 +08001044 help
1045 Support for Freescale LS1046ARDB platform.
1046 The LS1046A Reference Design Board (RDB) is a high-performance
1047 development platform that supports the QorIQ LS1046A
1048 Layerscape Architecture processor.
1049
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001050config TARGET_H2200
1051 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +01001052 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001053
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -07001054config TARGET_ZIPITZ2
1055 bool "Support zipitz2"
1056 select CPU_PXA
1057
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001058config TARGET_COLIBRI_PXA270
1059 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +01001060 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001061
Masahiro Yamada82069432014-10-03 19:21:07 +09001062config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +09001063 bool "Socionext UniPhier SoCs"
Tom Rini22d567e2017-01-22 19:43:11 -05001064 select BOARD_LATE_INIT
Masahiro Yamadae4dfb052016-02-02 21:11:32 +09001065 select CLK_UNIPHIER
Masahiro Yamada85eb8262015-03-31 12:47:54 +09001066 select DM
Masahiro Yamada5f128922016-02-16 17:03:50 +09001067 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +09001068 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +09001069 select DM_MMC
Masahiro Yamada2aa4b5b2016-10-08 13:25:31 +09001070 select DM_RESET
Masahiro Yamada694adf12016-09-14 01:05:59 +09001071 select DM_SERIAL
Masahiro Yamada5021b8a2016-09-14 01:06:00 +09001072 select DM_USB
Masahiro Yamada694adf12016-09-14 01:05:59 +09001073 select OF_CONTROL
1074 select OF_LIBFDT
Masahiro Yamada0c977252016-09-17 03:33:01 +09001075 select PINCTRL
Masahiro Yamadadabee242017-01-21 18:05:22 +09001076 select SPL_DM if SPL
1077 select SPL_LIBCOMMON_SUPPORT if SPL
1078 select SPL_LIBGENERIC_SUPPORT if SPL
1079 select SPL_OF_CONTROL if SPL
1080 select SPL_PINCTRL if SPL
Masahiro Yamada694adf12016-09-14 01:05:59 +09001081 select SUPPORT_SPL
Masahiro Yamada563ee4c2015-05-29 17:30:01 +09001082 help
1083 Support for UniPhier SoC family developed by Socionext Inc.
1084 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada82069432014-10-03 19:21:07 +09001085
Vikas Manocha95c89192016-01-15 17:49:06 -08001086config STM32
1087 bool "Support STM32"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +01001088 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +01001089 select DM
1090 select DM_SERIAL
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +01001091
Simon Glass2cffe662015-08-30 16:55:38 -06001092config ARCH_ROCKCHIP
1093 bool "Support Rockchip SoCs"
Simon Glass2cffe662015-08-30 16:55:38 -06001094 select OF_CONTROL
Simon Glass94106272016-06-12 23:30:14 -06001095 select BLK
Simon Glass2cffe662015-08-30 16:55:38 -06001096 select DM
Kever Yang0d3d7832016-07-19 21:16:59 +08001097 select SPL_DM if SPL
Simon Glass94106272016-06-12 23:30:14 -06001098 select SYS_MALLOC_F
Kever Yang0d3d7832016-07-19 21:16:59 +08001099 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glass94106272016-06-12 23:30:14 -06001100 select DM_GPIO
1101 select DM_I2C
1102 select DM_MMC
Simon Glassfaeef3b2016-06-12 23:30:24 -06001103 select DM_MMC_OPS
Simon Glass94106272016-06-12 23:30:14 -06001104 select DM_SERIAL
1105 select DM_SPI
1106 select DM_SPI_FLASH
MengDongyangf0bf5de2016-08-24 12:02:18 +08001107 select DM_USB if USB
Kever Yangb8594e22016-09-23 15:57:21 +08001108 select DM_PWM
1109 select DM_REGULATOR
Simon Glass2cffe662015-08-30 16:55:38 -06001110
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001111config TARGET_THUNDERX_88XX
1112 bool "Support ThunderX 88xx"
Marek Vasut09ab8ad2016-06-01 02:33:53 +02001113 select ARM64
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001114 select OF_CONTROL
Tom Rini84f9b612016-08-22 08:22:17 -04001115 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001116
maxims@google.comf57bd002017-01-18 13:44:55 -08001117config ARCH_ASPEED
1118 bool "Support Aspeed SoCs"
1119 select OF_CONTROL
1120 select DM
1121
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001122endchoice
1123
maxims@google.comf57bd002017-01-18 13:44:55 -08001124source "arch/arm/mach-aspeed/Kconfig"
1125
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +09001126source "arch/arm/mach-at91/Kconfig"
1127
Masahiro Yamadaed22cc72015-03-19 19:42:56 +09001128source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +09001129
Masahiro Yamadaed22cc72015-03-19 19:42:56 +09001130source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -07001131
Thomas Abraham74f84862015-08-03 17:58:00 +05301132source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +09001133
Masahiro Yamada95ec48b2015-02-20 17:04:08 +09001134source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +09001135
Masahiro Yamadacad44162015-04-21 21:59:36 +09001136source "arch/arm/mach-integrator/Kconfig"
1137
Masahiro Yamadaf058b792015-02-20 17:04:11 +09001138source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +09001139
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +09001140source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +09001141
Stefan Roese383e0c12015-08-25 13:18:38 +02001142source "arch/arm/mach-mvebu/Kconfig"
1143
York Sun149eb332016-09-26 08:09:27 -07001144source "arch/arm/cpu/armv7/ls102xa/Kconfig"
1145
Adrian Alonso98810772015-09-03 11:49:28 -05001146source "arch/arm/cpu/armv7/mx7/Kconfig"
1147
Boris BREZILLON51e82662015-03-04 13:13:03 +01001148source "arch/arm/cpu/armv7/mx6/Kconfig"
1149
Andrej Rosano1ac4bca2015-04-08 18:56:29 +02001150source "arch/arm/cpu/armv7/mx5/Kconfig"
1151
Tom Rini28eec372016-11-07 21:34:54 -05001152source "arch/arm/mach-omap2/Kconfig"
Madan Srinivaseba13cd2016-05-19 19:10:43 -05001153
York Sunbad49842016-09-26 08:09:24 -07001154source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
1155
Masahiro Yamada22537642015-02-20 17:04:09 +09001156source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +09001157
Nobuhiro Iwamatsuc91ef682015-10-09 16:40:09 +09001158source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadac9c54e22014-08-31 07:10:57 +09001159
Beniamino Galvanid1037e42016-05-08 08:30:16 +02001160source "arch/arm/mach-meson/Kconfig"
1161
Simon Glass2cffe662015-08-30 16:55:38 -06001162source "arch/arm/mach-rockchip/Kconfig"
1163
Minkyu Kang56b820a2015-11-20 15:24:57 +09001164source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -06001165
Mateusz Kulikowski2507d822016-03-31 23:12:32 +02001166source "arch/arm/mach-snapdragon/Kconfig"
1167
Masahiro Yamada144a3e02015-04-21 20:38:20 +09001168source "arch/arm/mach-socfpga/Kconfig"
1169
Vikas Manocha95c89192016-01-15 17:49:06 -08001170source "arch/arm/mach-stm32/Kconfig"
1171
Masahiro Yamadaed1632a2015-02-20 17:04:04 +09001172source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +09001173
Masahiro Yamadaf8563982015-02-27 02:26:42 +09001174source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +09001175
Masahiro Yamada43246cc2015-03-16 16:43:22 +09001176source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +09001177
Hans de Goede85437352014-11-14 09:34:30 +01001178source "arch/arm/cpu/armv7/Kconfig"
1179
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +05301180source "arch/arm/cpu/armv8/zynqmp/Kconfig"
1181
Linus Walleij74771392015-03-09 10:53:21 +01001182source "arch/arm/cpu/armv8/Kconfig"
1183
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +01001184source "arch/arm/imx-common/Kconfig"
1185
Heiko Schocherf1163962016-06-07 08:31:25 +02001186source "board/bosch/shc/Kconfig"
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +02001187source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer20ccb432016-06-22 12:36:13 +02001188source "board/BuR/brppt1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001189source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001190source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001191source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001192source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001193source "board/armltd/vexpress/Kconfig"
1194source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001195source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae45f2c702016-06-02 15:10:56 -07001196source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001197source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -08001198source "board/broadcom/bcmcygnus/Kconfig"
1199source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001200source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001201source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001202source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -04001203source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001204source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001205source "board/denx/m28evk/Kconfig"
1206source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301207source "board/freescale/ls2080a/Kconfig"
1208source "board/freescale/ls2080aqds/Kconfig"
1209source "board/freescale/ls2080ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +08001210source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +08001211source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +08001212source "board/freescale/ls1021atwr/Kconfig"
Feng Li39e112d2016-11-03 14:15:17 +08001213source "board/freescale/ls1021aiot/Kconfig"
Shaohui Xie085ac1c2016-09-07 17:56:14 +08001214source "board/freescale/ls1046aqds/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +08001215source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hud2396512016-09-07 18:47:28 +08001216source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha55432502016-06-03 18:41:34 +05301217source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +05301218source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +05301219source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001220source "board/freescale/mx23evk/Kconfig"
1221source "board/freescale/mx25pdk/Kconfig"
1222source "board/freescale/mx28evk/Kconfig"
1223source "board/freescale/mx31ads/Kconfig"
1224source "board/freescale/mx31pdk/Kconfig"
1225source "board/freescale/mx35pdk/Kconfig"
1226source "board/freescale/mx51evk/Kconfig"
1227source "board/freescale/mx53ard/Kconfig"
1228source "board/freescale/mx53evk/Kconfig"
1229source "board/freescale/mx53loco/Kconfig"
1230source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor5178dc12016-06-05 03:43:00 +03001231source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001232source "board/freescale/vf610twr/Kconfig"
Marcin Niestroj20315d22017-01-25 09:53:08 +01001233source "board/grinn/chiliboard/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001234source "board/gumstix/pepper/Kconfig"
1235source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -04001236source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001237source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001238source "board/isee/igep0033/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001239source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001240source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +02001241source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001242source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001243source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001244source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001245source "board/siemens/draco/Kconfig"
1246source "board/siemens/pxm2/Kconfig"
1247source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001248source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001249source "board/spear/spear300/Kconfig"
1250source "board/spear/spear310/Kconfig"
1251source "board/spear/spear320/Kconfig"
1252source "board/spear/spear600/Kconfig"
1253source "board/spear/x600/Kconfig"
Vikas Manocha33913c52014-11-18 10:42:22 -08001254source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001255source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001256source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +02001257source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001258source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001259source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -08001260source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001261source "board/ti/ti814x/Kconfig"
1262source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001263source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001264source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +05301265source "board/toradex/colibri_vf/Kconfig"
Sebastien Bourdelinf012f662016-11-08 12:18:07 -05001266source "board/technologic/ts4600/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -04001267source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +02001268source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001269source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +02001270source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -07001271source "board/zipitz2/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001272
Masahiro Yamadadf00e522014-09-01 11:06:34 +09001273source "arch/arm/Kconfig.debug"
1274
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001275endmenu