blob: 8f950778bde46314cc0eaa77c947a6f0343232d7 [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
Stephen Warren81c21372017-11-02 18:11:27 -060012if ARM64
13config POSITION_INDEPENDENT
14 bool "Generate position-independent pre-relocation code"
15 help
16 U-Boot expects to be linked to a specific hard-coded address, and to
17 be loaded to and run from that address. This option lifts that
18 restriction, thus allowing the code to be loaded to and executed
19 from almost any address. This logic relies on the relocation
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -050020 information that is embedded in the binary to support U-Boot
Stephen Warren81c21372017-11-02 18:11:27 -060021 relocating itself to the top-of-RAM later during execution.
Stephen Warrenb80fe6d2017-12-19 18:30:36 -070022
Masahiro Yamadabf4645c2019-06-26 13:51:46 +090023config INIT_SP_RELATIVE
24 bool "Specify the early stack pointer relative to the .bss section"
Stephen Warrenb80fe6d2017-12-19 18:30:36 -070025 help
26 U-Boot typically uses a hard-coded value for the stack pointer
Masahiro Yamadabf4645c2019-06-26 13:51:46 +090027 before relocation. Enable this option to instead calculate the
Stephen Warrenb80fe6d2017-12-19 18:30:36 -070028 initial SP at run-time. This is useful to avoid hard-coding addresses
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -050029 into U-Boot, so that it can be loaded and executed at arbitrary
Masahiro Yamadabf4645c2019-06-26 13:51:46 +090030 addresses and thus avoid using arbitrary addresses at runtime.
31
32 If this option is enabled, the early stack pointer is set to
33 &_bss_start with a offset value added. The offset is specified by
34 SYS_INIT_SP_BSS_OFFSET.
35
36config SYS_INIT_SP_BSS_OFFSET
37 int "Early stack offset from the .bss base address"
38 depends on INIT_SP_RELATIVE
39 default 524288
40 help
41 This option's value is the offset added to &_bss_start in order to
Stephen Warrenb80fe6d2017-12-19 18:30:36 -070042 calculate the stack pointer. This offset should be large enough so
43 that the early malloc region, global data (gd), and early stack usage
44 do not overlap any appended DTB.
Stephen Warren80a93652018-01-03 14:31:51 -070045
46config LINUX_KERNEL_IMAGE_HEADER
47 bool
48 help
49 Place a Linux kernel image header at the start of the U-Boot binary.
50 The format of the header is described in the Linux kernel source at
51 Documentation/arm64/booting.txt. This feature is useful since the
52 image header reports the amount of memory (BSS and similar) that
53 U-Boot needs to use, but which isn't part of the binary.
54
55if LINUX_KERNEL_IMAGE_HEADER
56config LNX_KRNL_IMG_TEXT_OFFSET_BASE
57 hex
58 help
59 The value subtracted from CONFIG_SYS_TEXT_BASE to calculate the
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -050060 TEXT_OFFSET value written to the Linux kernel image header.
Stephen Warren80a93652018-01-03 14:31:51 -070061endif
Stephen Warren81c21372017-11-02 18:11:27 -060062endif
63
Bharat Kumar Reddy Gooty436efc02019-12-16 09:09:43 -080064config GIC_V3_ITS
65 bool "ARM GICV3 ITS"
66 help
67 ARM GICV3 Interrupt translation service (ITS).
68 Basic support for programming locality specific peripheral
69 interrupts (LPI) configuration tables and enable LPI tables.
70 LPI configuration table can be used by u-boot or Linux.
71 ARM GICV3 has limitation, once the LPI table is enabled, LPI
72 configuration table can not be re-programmed, unless GICV3 reset.
73
Stephen Warren81c21372017-11-02 18:11:27 -060074config STATIC_RELA
75 bool
76 default y if ARM64 && !POSITION_INDEPENDENT
77
Lokesh Vutlaf94277d2016-03-24 16:02:00 +053078config DMA_ADDR_T_64BIT
79 bool
80 default y if ARM64
81
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010082config HAS_VBAR
Tom Rinibca01962016-08-22 08:22:18 -040083 bool
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010084
Albert ARIBAUDa3823222015-10-23 18:06:40 +020085config HAS_THUMB2
Tom Rinibca01962016-08-22 08:22:18 -040086 bool
Albert ARIBAUDa3823222015-10-23 18:06:40 +020087
Phil Edworthy3b8f16a2017-06-01 07:33:28 +010088# Used for compatibility with asm files copied from the kernel
89config ARM_ASM_UNIFIED
90 bool
91 default y
92
93# Used for compatibility with asm files copied from the kernel
94config THUMB2_KERNEL
95 bool
96
Trevor Woernerba64b8b2019-05-03 09:40:59 -040097config SYS_ICACHE_OFF
98 bool "Do not enable icache"
99 default n
100 help
101 Do not enable instruction cache in U-Boot.
102
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400103config SPL_SYS_ICACHE_OFF
104 bool "Do not enable icache in SPL"
105 depends on SPL
106 default SYS_ICACHE_OFF
107 help
108 Do not enable instruction cache in SPL.
109
Trevor Woernerba64b8b2019-05-03 09:40:59 -0400110config SYS_DCACHE_OFF
111 bool "Do not enable dcache"
112 default n
113 help
114 Do not enable data cache in U-Boot.
115
Trevor Woerner43ec7e02019-05-03 09:41:00 -0400116config SPL_SYS_DCACHE_OFF
117 bool "Do not enable dcache in SPL"
118 depends on SPL
119 default SYS_DCACHE_OFF
120 help
121 Do not enable data cache in SPL.
122
Lokesh Vutla5a5bb6c2018-04-26 18:21:28 +0530123config SYS_ARM_CACHE_CP15
124 bool "CP15 based cache enabling support"
125 help
126 Select this if your processor suports enabling caches by using
127 CP15 registers.
128
Lokesh Vutlab2d00d62018-04-26 18:21:27 +0530129config SYS_ARM_MMU
130 bool "MMU-based Paged Memory Management Support"
Lokesh Vutla5a5bb6c2018-04-26 18:21:28 +0530131 select SYS_ARM_CACHE_CP15
Lokesh Vutlab2d00d62018-04-26 18:21:27 +0530132 help
133 Select if you want MMU-based virtualised addressing space
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500134 support via paged memory management.
Lokesh Vutlab2d00d62018-04-26 18:21:27 +0530135
Lokesh Vutla076ee452018-04-26 18:21:30 +0530136config SYS_ARM_MPU
137 bool 'Use the ARM v7 PMSA Compliant MPU'
138 help
139 Some ARM systems without an MMU have instead a Memory Protection
140 Unit (MPU) that defines the type and permissions for regions of
141 memory.
142 If your CPU has an MPU then you should choose 'y' here unless you
143 know that you do not want to use the MPU.
144
Tom Rinibacb52c2017-03-07 07:13:42 -0500145# If set, the workarounds for these ARM errata are applied early during U-Boot
146# startup. Note that in general these options force the workarounds to be
147# applied; no CPU-type/version detection exists, unlike the similar options in
148# the Linux kernel. Do not set these options unless they apply! Also note that
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500149# the following can be machine-specific errata. These do have ability to
150# provide rudimentary version and machine-specific checks, but expect no
Tom Rinibacb52c2017-03-07 07:13:42 -0500151# product checks:
152# CONFIG_ARM_ERRATA_430973
153# CONFIG_ARM_ERRATA_454179
154# CONFIG_ARM_ERRATA_621766
155# CONFIG_ARM_ERRATA_798870
156# CONFIG_ARM_ERRATA_801819
Nishanth Menon85515bf2018-06-12 15:24:08 -0500157# CONFIG_ARM_CORTEX_A8_CVE_2017_5715
Nishanth Menon6ffdeaa2018-06-12 15:24:09 -0500158# CONFIG_ARM_CORTEX_A15_CVE_2017_5715
Nishanth Menon85515bf2018-06-12 15:24:08 -0500159
Tom Rinibacb52c2017-03-07 07:13:42 -0500160config ARM_ERRATA_430973
161 bool
162
163config ARM_ERRATA_454179
164 bool
165
166config ARM_ERRATA_621766
167 bool
168
169config ARM_ERRATA_716044
170 bool
171
Siarhei Siamashkafe038a72017-03-06 03:16:53 +0200172config ARM_ERRATA_725233
173 bool
174
Tom Rinibacb52c2017-03-07 07:13:42 -0500175config ARM_ERRATA_742230
176 bool
177
178config ARM_ERRATA_743622
179 bool
180
181config ARM_ERRATA_751472
182 bool
183
184config ARM_ERRATA_761320
185 bool
186
187config ARM_ERRATA_773022
188 bool
189
190config ARM_ERRATA_774769
191 bool
192
193config ARM_ERRATA_794072
194 bool
195
196config ARM_ERRATA_798870
197 bool
198
199config ARM_ERRATA_801819
200 bool
201
202config ARM_ERRATA_826974
203 bool
204
205config ARM_ERRATA_828024
206 bool
207
208config ARM_ERRATA_829520
209 bool
210
211config ARM_ERRATA_833069
212 bool
213
214config ARM_ERRATA_833471
215 bool
216
Peng Fan5ac341f2017-08-08 13:34:52 +0800217config ARM_ERRATA_845369
Michal Simekf751ff52018-07-23 15:55:12 +0200218 bool
Peng Fan5ac341f2017-08-08 13:34:52 +0800219
Nisal Menukafaa993a2017-04-26 16:18:01 -0500220config ARM_ERRATA_852421
221 bool
222
223config ARM_ERRATA_852423
224 bool
225
Alison Wangc1293872017-12-28 13:00:55 +0800226config ARM_ERRATA_855873
227 bool
228
Nishanth Menon85515bf2018-06-12 15:24:08 -0500229config ARM_CORTEX_A8_CVE_2017_5715
230 bool
231
Nishanth Menon6ffdeaa2018-06-12 15:24:09 -0500232config ARM_CORTEX_A15_CVE_2017_5715
233 bool
234
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100235config CPU_ARM720T
Tom Rinibca01962016-08-22 08:22:18 -0400236 bool
Tom Rini84f9b612016-08-22 08:22:17 -0400237 select SYS_CACHE_SHIFT_5
Lokesh Vutlab2d00d62018-04-26 18:21:27 +0530238 imply SYS_ARM_MMU
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100239
240config CPU_ARM920T
Tom Rinibca01962016-08-22 08:22:18 -0400241 bool
Tom Rini84f9b612016-08-22 08:22:17 -0400242 select SYS_CACHE_SHIFT_5
Lokesh Vutlab2d00d62018-04-26 18:21:27 +0530243 imply SYS_ARM_MMU
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100244
245config CPU_ARM926EJS
Tom Rinibca01962016-08-22 08:22:18 -0400246 bool
Tom Rini84f9b612016-08-22 08:22:17 -0400247 select SYS_CACHE_SHIFT_5
Lokesh Vutlab2d00d62018-04-26 18:21:27 +0530248 imply SYS_ARM_MMU
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100249
250config CPU_ARM946ES
Tom Rinibca01962016-08-22 08:22:18 -0400251 bool
Tom Rini84f9b612016-08-22 08:22:17 -0400252 select SYS_CACHE_SHIFT_5
Lokesh Vutlab2d00d62018-04-26 18:21:27 +0530253 imply SYS_ARM_MMU
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100254
255config CPU_ARM1136
Tom Rinibca01962016-08-22 08:22:18 -0400256 bool
Tom Rini84f9b612016-08-22 08:22:17 -0400257 select SYS_CACHE_SHIFT_5
Lokesh Vutlab2d00d62018-04-26 18:21:27 +0530258 imply SYS_ARM_MMU
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100259
260config CPU_ARM1176
Tom Rinibca01962016-08-22 08:22:18 -0400261 bool
262 select HAS_VBAR
Tom Rini84f9b612016-08-22 08:22:17 -0400263 select SYS_CACHE_SHIFT_5
Lokesh Vutlab2d00d62018-04-26 18:21:27 +0530264 imply SYS_ARM_MMU
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100265
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530266config CPU_V7A
Tom Rinibca01962016-08-22 08:22:18 -0400267 bool
Tom Rinibca01962016-08-22 08:22:18 -0400268 select HAS_THUMB2
Michal Simek84f3dec2018-07-23 15:55:13 +0200269 select HAS_VBAR
Tom Rini84f9b612016-08-22 08:22:17 -0400270 select SYS_CACHE_SHIFT_6
Lokesh Vutlab2d00d62018-04-26 18:21:27 +0530271 imply SYS_ARM_MMU
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100272
rev13@wp.plb3b57e82015-03-01 12:44:39 +0100273config CPU_V7M
274 bool
Tom Rinibca01962016-08-22 08:22:18 -0400275 select HAS_THUMB2
Lokesh Vutla076ee452018-04-26 18:21:30 +0530276 select SYS_ARM_MPU
Michal Simek84f3dec2018-07-23 15:55:13 +0200277 select SYS_CACHE_SHIFT_5
Tom Rini19bdef62018-05-07 20:46:52 -0400278 select SYS_THUMB_BUILD
Michal Simek84f3dec2018-07-23 15:55:13 +0200279 select THUMB2_KERNEL
rev13@wp.plb3b57e82015-03-01 12:44:39 +0100280
Michal Simekf4359382018-04-26 18:21:29 +0530281config CPU_V7R
282 bool
283 select HAS_THUMB2
Lokesh Vutla076ee452018-04-26 18:21:30 +0530284 select SYS_ARM_CACHE_CP15
Michal Simek84f3dec2018-07-23 15:55:13 +0200285 select SYS_ARM_MPU
286 select SYS_CACHE_SHIFT_6
Michal Simekf4359382018-04-26 18:21:29 +0530287
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100288config CPU_PXA
Tom Rinibca01962016-08-22 08:22:18 -0400289 bool
Tom Rini84f9b612016-08-22 08:22:17 -0400290 select SYS_CACHE_SHIFT_5
Lokesh Vutlab2d00d62018-04-26 18:21:27 +0530291 imply SYS_ARM_MMU
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100292
293config CPU_SA1100
Tom Rinibca01962016-08-22 08:22:18 -0400294 bool
Tom Rini84f9b612016-08-22 08:22:17 -0400295 select SYS_CACHE_SHIFT_5
Lokesh Vutlab2d00d62018-04-26 18:21:27 +0530296 imply SYS_ARM_MMU
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100297
298config SYS_CPU
Tom Rinibca01962016-08-22 08:22:18 -0400299 default "arm720t" if CPU_ARM720T
300 default "arm920t" if CPU_ARM920T
301 default "arm926ejs" if CPU_ARM926EJS
302 default "arm946es" if CPU_ARM946ES
303 default "arm1136" if CPU_ARM1136
304 default "arm1176" if CPU_ARM1176
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530305 default "armv7" if CPU_V7A
Michal Simekf4359382018-04-26 18:21:29 +0530306 default "armv7" if CPU_V7R
Tom Rinibca01962016-08-22 08:22:18 -0400307 default "armv7m" if CPU_V7M
308 default "pxa" if CPU_PXA
309 default "sa1100" if CPU_SA1100
Masahiro Yamadadade3b02014-11-06 11:39:27 +0900310 default "armv8" if ARM64
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100311
Marek Vasutb06c9542016-05-26 18:01:36 +0200312config SYS_ARM_ARCH
313 int
314 default 4 if CPU_ARM720T
315 default 4 if CPU_ARM920T
316 default 5 if CPU_ARM926EJS
317 default 5 if CPU_ARM946ES
318 default 6 if CPU_ARM1136
319 default 6 if CPU_ARM1176
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530320 default 7 if CPU_V7A
Marek Vasutb06c9542016-05-26 18:01:36 +0200321 default 7 if CPU_V7M
Michal Simekf4359382018-04-26 18:21:29 +0530322 default 7 if CPU_V7R
Marek Vasutb06c9542016-05-26 18:01:36 +0200323 default 5 if CPU_PXA
324 default 4 if CPU_SA1100
325 default 8 if ARM64
326
Tom Rini84f9b612016-08-22 08:22:17 -0400327config SYS_CACHE_SHIFT_5
328 bool
329
330config SYS_CACHE_SHIFT_6
331 bool
332
333config SYS_CACHE_SHIFT_7
334 bool
335
336config SYS_CACHELINE_SIZE
337 int
338 default 128 if SYS_CACHE_SHIFT_7
339 default 64 if SYS_CACHE_SHIFT_6
340 default 32 if SYS_CACHE_SHIFT_5
341
Adam Fordd36b1022019-08-14 08:29:25 -0500342config ARCH_CPU_INIT
343 bool "Enable ARCH_CPU_INIT"
344 help
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500345 Some architectures require a call to arch_cpu_init().
Adam Fordd36b1022019-08-14 08:29:25 -0500346 Say Y here to enable it
347
Andre Przywara7b169252018-04-12 04:24:46 +0300348config SYS_ARCH_TIMER
349 bool "ARM Generic Timer support"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530350 depends on CPU_V7A || ARM64
Andre Przywara7b169252018-04-12 04:24:46 +0300351 default y if ARM64
352 help
353 The ARM Generic Timer (aka arch-timer) provides an architected
354 interface to a timer source on an SoC.
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500355 It is mandatory for ARMv8 implementation and widely available
Andre Przywara7b169252018-04-12 04:24:46 +0300356 on ARMv7 systems.
357
Masahiro Yamadae8ead732017-04-14 11:10:23 +0900358config ARM_SMCCC
359 bool "Support for ARM SMC Calling Convention (SMCCC)"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530360 depends on CPU_V7A || ARM64
Masahiro Yamada836c55d2017-04-14 11:10:24 +0900361 select ARM_PSCI_FW
Masahiro Yamadae8ead732017-04-14 11:10:23 +0900362 help
363 Say Y here if you want to enable ARM SMC Calling Convention.
364 This should be enabled if U-Boot needs to communicate with system
365 firmware (for example, PSCI) according to SMCCC.
366
Linus Walleij800d6fd2015-01-23 11:50:53 +0100367config SEMIHOSTING
368 bool "support boot from semihosting"
369 help
370 In emulated environments, semihosting is a way for
371 the hosted environment to call out to the emulator to
372 retrieve files from the host machine.
373
Tom Rini1c640a62017-03-18 09:01:44 -0400374config SYS_THUMB_BUILD
375 bool "Build U-Boot using the Thumb instruction set"
376 depends on !ARM64
377 help
378 Use this flag to build U-Boot using the Thumb instruction set for
379 ARM architectures. Thumb instruction set provides better code
380 density. For ARM architectures that support Thumb2 this flag will
381 result in Thumb2 code generated by GCC.
382
383config SPL_SYS_THUMB_BUILD
384 bool "Build SPL using the Thumb instruction set"
385 default y if SYS_THUMB_BUILD
Adam Ford43a1e2d2019-08-13 14:32:30 -0500386 depends on !ARM64 && SPL
Tom Rini1c640a62017-03-18 09:01:44 -0400387 help
388 Use this flag to build SPL using the Thumb instruction set for
389 ARM architectures. Thumb instruction set provides better code
390 density. For ARM architectures that support Thumb2 this flag will
391 result in Thumb2 code generated by GCC.
392
Kever Yang55688602019-04-02 20:41:20 +0800393config TPL_SYS_THUMB_BUILD
394 bool "Build TPL using the Thumb instruction set"
395 default y if SYS_THUMB_BUILD
396 depends on TPL && !ARM64
397 help
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500398 Use this flag to build TPL using the Thumb instruction set for
Kever Yang55688602019-04-02 20:41:20 +0800399 ARM architectures. Thumb instruction set provides better code
400 density. For ARM architectures that support Thumb2 this flag will
401 result in Thumb2 code generated by GCC.
402
403
Peng Fan10ddab42015-08-19 15:48:57 +0800404config SYS_L2CACHE_OFF
405 bool "L2cache off"
406 help
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500407 If SoC does not support L2CACHE or one does not want to enable
Peng Fan10ddab42015-08-19 15:48:57 +0800408 L2CACHE, choose this option.
409
Andre Przywara48321ba2016-05-31 10:45:06 -0700410config ENABLE_ARM_SOC_BOOT0_HOOK
411 bool "prepare BOOT0 header"
412 help
413 If the SoC's BOOT0 requires a header area filled with (magic)
Simon Goldschmidt387218a2018-02-13 13:18:00 +0100414 values, then choose this option, and create a file included as
415 <asm/arch/boot0.h> which contains the required assembler code.
Andre Przywara48321ba2016-05-31 10:45:06 -0700416
Andre Przywara4330eb92017-02-16 01:20:21 +0000417config ARM_CORTEX_CPU_IS_UP
418 bool
419 default n
420
Fabio Estevam988f5052016-12-15 19:30:40 -0200421config USE_ARCH_MEMCPY
422 bool "Use an assembly optimized implementation of memcpy"
Tom Rini443b5162017-01-12 13:16:02 -0500423 default y
Masahiro Yamadae55f1462016-12-19 19:31:02 +0900424 depends on !ARM64
Fabio Estevam988f5052016-12-15 19:30:40 -0200425 help
426 Enable the generation of an optimized version of memcpy.
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500427 Such an implementation may be faster under some conditions
Fabio Estevam988f5052016-12-15 19:30:40 -0200428 but may increase the binary size.
429
Tom Rini443b5162017-01-12 13:16:02 -0500430config SPL_USE_ARCH_MEMCPY
Andy Yan524f3ce2017-06-28 16:27:37 +0800431 bool "Use an assembly optimized implementation of memcpy for SPL"
Tom Rini443b5162017-01-12 13:16:02 -0500432 default y if USE_ARCH_MEMCPY
Adam Ford43a1e2d2019-08-13 14:32:30 -0500433 depends on !ARM64 && SPL
Tom Rini443b5162017-01-12 13:16:02 -0500434 help
435 Enable the generation of an optimized version of memcpy.
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500436 Such an implementation may be faster under some conditions
Tom Rini443b5162017-01-12 13:16:02 -0500437 but may increase the binary size.
438
Kever Yang55688602019-04-02 20:41:20 +0800439config TPL_USE_ARCH_MEMCPY
440 bool "Use an assembly optimized implementation of memcpy for TPL"
441 default y if USE_ARCH_MEMCPY
Adam Ford43a1e2d2019-08-13 14:32:30 -0500442 depends on !ARM64 && TPL
Kever Yang55688602019-04-02 20:41:20 +0800443 help
444 Enable the generation of an optimized version of memcpy.
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500445 Such an implementation may be faster under some conditions
Kever Yang55688602019-04-02 20:41:20 +0800446 but may increase the binary size.
447
Fabio Estevam988f5052016-12-15 19:30:40 -0200448config USE_ARCH_MEMSET
449 bool "Use an assembly optimized implementation of memset"
Tom Rini443b5162017-01-12 13:16:02 -0500450 default y
451 depends on !ARM64
452 help
453 Enable the generation of an optimized version of memset.
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500454 Such an implementation may be faster under some conditions
Tom Rini443b5162017-01-12 13:16:02 -0500455 but may increase the binary size.
456
457config SPL_USE_ARCH_MEMSET
Andy Yan524f3ce2017-06-28 16:27:37 +0800458 bool "Use an assembly optimized implementation of memset for SPL"
Tom Rini443b5162017-01-12 13:16:02 -0500459 default y if USE_ARCH_MEMSET
Adam Ford43a1e2d2019-08-13 14:32:30 -0500460 depends on !ARM64 && SPL
Fabio Estevam988f5052016-12-15 19:30:40 -0200461 help
462 Enable the generation of an optimized version of memset.
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500463 Such an implementation may be faster under some conditions
Fabio Estevam988f5052016-12-15 19:30:40 -0200464 but may increase the binary size.
465
Kever Yang55688602019-04-02 20:41:20 +0800466config TPL_USE_ARCH_MEMSET
467 bool "Use an assembly optimized implementation of memset for TPL"
468 default y if USE_ARCH_MEMSET
Adam Ford43a1e2d2019-08-13 14:32:30 -0500469 depends on !ARM64 && TPL
Kever Yang55688602019-04-02 20:41:20 +0800470 help
471 Enable the generation of an optimized version of memset.
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500472 Such an implementation may be faster under some conditions
Kever Yang55688602019-04-02 20:41:20 +0800473 but may increase the binary size.
474
Siva Durga Prasad Paladuguc5cf9d12019-08-05 23:28:30 +0530475config SET_STACK_SIZE
476 bool "Enable an option to set max stack size that can be used"
T Karthik Reddy0d2e7fe2019-08-20 09:30:57 +0530477 default y if ARCH_VERSAL || ARCH_ZYNQMP
Siva Durga Prasad Paladuguc5cf9d12019-08-05 23:28:30 +0530478 help
479 This will enable an option to set max stack size that can be
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500480 used by U-Boot.
Siva Durga Prasad Paladuguc5cf9d12019-08-05 23:28:30 +0530481
482config STACK_SIZE
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500483 hex "Define max stack size that can be used by U-Boot"
Siva Durga Prasad Paladuguc5cf9d12019-08-05 23:28:30 +0530484 depends on SET_STACK_SIZE
T Karthik Reddy0d2e7fe2019-08-20 09:30:57 +0530485 default 0x4000000 if ARCH_VERSAL || ARCH_ZYNQMP
Siva Durga Prasad Paladuguc5cf9d12019-08-05 23:28:30 +0530486 help
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500487 Define Max stack size that can be used by U-Boot so that the
Siva Durga Prasad Paladuguc5cf9d12019-08-05 23:28:30 +0530488 initrd_high will be calculated as base stack pointer minus this
489 stack size.
490
Alison Wang73818d52016-11-10 10:49:03 +0800491config ARM64_SUPPORT_AARCH32
492 bool "ARM64 system support AArch32 execution state"
Adam Ford43a1e2d2019-08-13 14:32:30 -0500493 depends on ARM64
494 default y if !TARGET_THUNDERX_88XX
Alison Wang73818d52016-11-10 10:49:03 +0800495 help
496 This ARM64 system supports AArch32 execution state.
497
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900498choice
499 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -0600500 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900501
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900502config ARCH_AT91
503 bool "Atmel AT91"
Tom Rini4a2b61b2018-05-10 07:15:52 -0400504 select SPL_BOARD_INIT if SPL && !TARGET_SMARTWEB
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900505
506config TARGET_EDB93XX
507 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100508 select CPU_ARM920T
Alexander Graf2184ccd2018-01-25 12:05:50 +0100509 select PL010_SERIAL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900510
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900511config TARGET_ASPENITE
512 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100513 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900514
515config TARGET_GPLUGD
516 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100517 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900518
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900519config ARCH_DAVINCI
520 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100521 select CPU_ARM926EJS
Simon Glassd09f3772017-08-04 16:34:43 -0600522 imply CMD_SAVES
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900523 help
524 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900525
Masahiro Yamadad7570852014-08-31 07:10:59 +0900526config KIRKWOOD
527 bool "Marvell Kirkwood"
Simon Glass95d31412017-01-23 13:31:21 -0700528 select ARCH_MISC_INIT
Michal Simek84f3dec2018-07-23 15:55:13 +0200529 select BOARD_EARLY_INIT_F
530 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900531
Stefan Roese383e0c12015-08-25 13:18:38 +0200532config ARCH_MVEBU
Stefan Roesecb410332016-05-25 08:13:45 +0200533 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese096de4f2015-09-01 11:27:52 +0200534 select DM
Stefan Roese05b38c12015-11-19 07:46:15 +0100535 select DM_ETH
Stefan Roese7f9f8e32015-09-02 08:41:41 +0200536 select DM_SERIAL
Stefan Roese49e7d772015-11-20 13:51:57 +0100537 select DM_SPI
538 select DM_SPI_FLASH
Michal Simek84f3dec2018-07-23 15:55:13 +0200539 select OF_CONTROL
540 select OF_SEPARATE
Adam Ford4e96ff82018-04-15 13:51:26 -0400541 select SPI
Michal Simek2e7c8192018-07-23 15:55:14 +0200542 imply CMD_DM
Stefan Roese9b1e2312014-10-22 12:13:19 +0200543
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900544config TARGET_APF27
545 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100546 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900547 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900548
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900549config ORION5X
550 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100551 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900552
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900553config TARGET_SPEAR300
554 bool "Support spear300"
Simon Glass7a99a872017-01-23 13:31:20 -0700555 select BOARD_EARLY_INIT_F
Michal Simek84f3dec2018-07-23 15:55:13 +0200556 select CPU_ARM926EJS
Alexander Graf65bfb422018-01-25 12:05:51 +0100557 select PL011_SERIAL
Michal Simek84f3dec2018-07-23 15:55:13 +0200558 imply CMD_SAVES
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900559
560config TARGET_SPEAR310
561 bool "Support spear310"
Simon Glass7a99a872017-01-23 13:31:20 -0700562 select BOARD_EARLY_INIT_F
Michal Simek84f3dec2018-07-23 15:55:13 +0200563 select CPU_ARM926EJS
Alexander Graf65bfb422018-01-25 12:05:51 +0100564 select PL011_SERIAL
Michal Simek84f3dec2018-07-23 15:55:13 +0200565 imply CMD_SAVES
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900566
567config TARGET_SPEAR320
568 bool "Support spear320"
Simon Glass7a99a872017-01-23 13:31:20 -0700569 select BOARD_EARLY_INIT_F
Michal Simek84f3dec2018-07-23 15:55:13 +0200570 select CPU_ARM926EJS
Alexander Graf65bfb422018-01-25 12:05:51 +0100571 select PL011_SERIAL
Michal Simek84f3dec2018-07-23 15:55:13 +0200572 imply CMD_SAVES
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900573
574config TARGET_SPEAR600
575 bool "Support spear600"
Simon Glass7a99a872017-01-23 13:31:20 -0700576 select BOARD_EARLY_INIT_F
Michal Simek84f3dec2018-07-23 15:55:13 +0200577 select CPU_ARM926EJS
Alexander Graf65bfb422018-01-25 12:05:51 +0100578 select PL011_SERIAL
Michal Simek84f3dec2018-07-23 15:55:13 +0200579 imply CMD_SAVES
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900580
Vikas Manocha33913c52014-11-18 10:42:22 -0800581config TARGET_STV0991
582 bool "Support stv0991"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530583 select CPU_V7A
Masahiro Yamada0906a822015-03-31 12:48:01 +0900584 select DM
585 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700586 select DM_SPI
587 select DM_SPI_FLASH
Michal Simek84f3dec2018-07-23 15:55:13 +0200588 select PL01X_SERIAL
Adam Ford4e96ff82018-04-15 13:51:26 -0400589 select SPI
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700590 select SPI_FLASH
Michal Simek2e7c8192018-07-23 15:55:14 +0200591 imply CMD_DM
Vikas Manocha33913c52014-11-18 10:42:22 -0800592
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900593config TARGET_X600
594 bool "Support x600"
Tom Rini22d567e2017-01-22 19:43:11 -0500595 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100596 select CPU_ARM926EJS
Alexander Graf65bfb422018-01-25 12:05:51 +0100597 select PL011_SERIAL
Michal Simek84f3dec2018-07-23 15:55:13 +0200598 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900599
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900600config TARGET_WOODBURN
601 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100602 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900603
604config TARGET_WOODBURN_SD
605 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100606 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900607 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900608
609config TARGET_FLEA3
610 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100611 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900612
613config TARGET_MX35PDK
614 bool "Support mx35pdk"
Tom Rini22d567e2017-01-22 19:43:11 -0500615 select BOARD_LATE_INIT
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100616 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900617
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900618config ARCH_BCM283X
619 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900620 select DM
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900621 select DM_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +0200622 select DM_SERIAL
Fabian Vogtf9e3ed52016-09-26 14:26:51 +0200623 select OF_CONTROL
Alexander Graf633ef892018-01-25 12:05:52 +0100624 select PL01X_SERIAL
Alexander Grafc8bda542018-01-29 13:57:20 +0100625 select SERIAL_SEARCH_ALL
Michal Simek2e7c8192018-07-23 15:55:14 +0200626 imply CMD_DM
Tom Rinid8532af2017-06-02 11:03:50 -0400627 imply FAT_WRITE
Stephen Warrendc7ea682015-02-16 12:16:15 -0700628
Philippe Reynes312a3f92019-01-31 18:57:35 +0100629config ARCH_BCM63158
630 bool "Broadcom BCM63158 family"
631 select DM
632 select OF_CONTROL
633 imply CMD_DM
634
Philippe Reynes697f15e2018-10-11 18:31:58 +0200635config ARCH_BCM6858
636 bool "Broadcom BCM6858 family"
637 select DM
638 select OF_CONTROL
639 imply CMD_DM
640
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900641config TARGET_VEXPRESS_CA15_TC2
642 bool "Support vexpress_ca15_tc2"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530643 select CPU_V7A
Hans de Goede85437352014-11-14 09:34:30 +0100644 select CPU_V7_HAS_NONSEC
645 select CPU_V7_HAS_VIRT
Alexander Graf65bfb422018-01-25 12:05:51 +0100646 select PL011_SERIAL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900647
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -0400648config ARCH_BCMSTB
649 bool "Broadcom BCM7XXX family"
650 select CPU_V7A
651 select DM
652 select OF_CONTROL
653 select OF_PRIOR_STAGE
Michal Simek2e7c8192018-07-23 15:55:14 +0200654 imply CMD_DM
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -0400655 help
656 This enables support for Broadcom ARM-based set-top box
657 chipsets, including the 7445 family of chips.
658
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900659config TARGET_VEXPRESS_CA5X2
660 bool "Support vexpress_ca5x2"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530661 select CPU_V7A
Alexander Graf65bfb422018-01-25 12:05:51 +0100662 select PL011_SERIAL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900663
664config TARGET_VEXPRESS_CA9X4
665 bool "Support vexpress_ca9x4"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530666 select CPU_V7A
Alexander Graf65bfb422018-01-25 12:05:51 +0100667 select PL011_SERIAL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900668
Steve Rae45f2c702016-06-02 15:10:56 -0700669config TARGET_BCM23550_W1D
670 bool "Support bcm23550_w1d"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530671 select CPU_V7A
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100672 imply CRC32_VERIFY
Tom Rinid8532af2017-06-02 11:03:50 -0400673 imply FAT_WRITE
Steve Rae45f2c702016-06-02 15:10:56 -0700674
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900675config TARGET_BCM28155_AP
676 bool "Support bcm28155_ap"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530677 select CPU_V7A
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100678 imply CRC32_VERIFY
Tom Rinid8532af2017-06-02 11:03:50 -0400679 imply FAT_WRITE
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900680
Steve Rae1c5f31c2014-11-11 11:32:18 -0800681config TARGET_BCMCYGNUS
682 bool "Support bcmcygnus"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530683 select CPU_V7A
Michal Simek84f3dec2018-07-23 15:55:13 +0200684 imply BCM_SF2_ETH
685 imply BCM_SF2_ETH_GMAC
Simon Glass027608e2017-05-17 03:25:25 -0600686 imply CMD_HASH
Michal Simek84f3dec2018-07-23 15:55:13 +0200687 imply CRC32_VERIFY
Tom Rinid8532af2017-06-02 11:03:50 -0400688 imply FAT_WRITE
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100689 imply HASH_VERIFY
Suji Velupillaid2f677a2017-07-10 14:05:41 -0700690 imply NETDEVICES
Steve Rae729da8b2014-08-11 13:58:26 -0700691
Steve Rae1c5f31c2014-11-11 11:32:18 -0800692config TARGET_BCMNSP
693 bool "Support bcmnsp"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530694 select CPU_V7A
Steve Rae729da8b2014-08-11 13:58:26 -0700695
Jon Masond59b5862017-03-17 12:12:14 -0400696config TARGET_BCMNS2
697 bool "Support Broadcom Northstar2"
698 select ARM64
699 help
700 Support for Broadcom Northstar 2 SoCs. NS2 is a quad-core 64-bit
701 ARMv8 Cortex-A57 processors targeting a broad range of networking
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -0500702 applications.
Jon Masond59b5862017-03-17 12:12:14 -0400703
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900704config ARCH_EXYNOS
705 bool "Samsung EXYNOS"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900706 select DM
Michal Simek84f3dec2018-07-23 15:55:13 +0200707 select DM_GPIO
Simon Glass7bbb7d92016-11-23 06:34:40 -0700708 select DM_I2C
Michal Simek84f3dec2018-07-23 15:55:13 +0200709 select DM_KEYBOARD
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900710 select DM_SERIAL
711 select DM_SPI
Michal Simek84f3dec2018-07-23 15:55:13 +0200712 select DM_SPI_FLASH
Adam Ford4e96ff82018-04-15 13:51:26 -0400713 select SPI
Guillaume GARDETf5357322018-11-20 14:15:13 +0100714 imply SYS_THUMB_BUILD
Michal Simek2e7c8192018-07-23 15:55:14 +0200715 imply CMD_DM
Tom Rinid8532af2017-06-02 11:03:50 -0400716 imply FAT_WRITE
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900717
Simon Glass96aa0722014-10-07 22:01:50 -0600718config ARCH_S5PC1XX
719 bool "Samsung S5PC1XX"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530720 select CPU_V7A
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900721 select DM
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900722 select DM_GPIO
Simon Glassc6aa9702016-11-23 06:34:41 -0700723 select DM_I2C
Michal Simek84f3dec2018-07-23 15:55:13 +0200724 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200725 imply CMD_DM
Simon Glass96aa0722014-10-07 22:01:50 -0600726
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900727config ARCH_HIGHBANK
728 bool "Calxeda Highbank"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530729 select CPU_V7A
Alexander Graf65bfb422018-01-25 12:05:51 +0100730 select PL011_SERIAL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900731
Masahiro Yamadacad44162015-04-21 21:59:36 +0900732config ARCH_INTEGRATOR
733 bool "ARM Ltd. Integrator family"
Linus Walleij616d9a02015-07-27 11:22:48 +0200734 select DM
735 select DM_SERIAL
Alexander Graf633ef892018-01-25 12:05:52 +0100736 select PL01X_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200737 imply CMD_DM
Masahiro Yamadacad44162015-04-21 21:59:36 +0900738
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900739config ARCH_KEYSTONE
740 bool "TI Keystone"
Michal Simek84f3dec2018-07-23 15:55:13 +0200741 select CMD_POWEROFF
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530742 select CPU_V7A
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900743 select SUPPORT_SPL
Andre Przywara7b169252018-04-12 04:24:46 +0300744 select SYS_ARCH_TIMER
Michal Simek84f3dec2018-07-23 15:55:13 +0200745 select SYS_THUMB_BUILD
Tom Rinic20bb732017-07-22 18:36:16 -0400746 imply CMD_MTDPARTS
Simon Glassd09f3772017-08-04 16:34:43 -0600747 imply CMD_SAVES
Michal Simek84f3dec2018-07-23 15:55:13 +0200748 imply FIT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900749
Lokesh Vutla9bdec002018-08-27 15:57:08 +0530750config ARCH_K3
751 bool "Texas Instruments' K3 Architecture"
752 select SPL
753 select SUPPORT_SPL
754 select FIT
755
Masahiro Yamada6e1288c2017-04-25 13:10:11 +0900756config ARCH_OMAP2PLUS
757 bool "TI OMAP2+"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530758 select CPU_V7A
Ley Foon Tan48fcc4a2017-05-03 17:13:32 +0800759 select SPL_BOARD_INIT if SPL
Tom Rinic37e0cf2017-09-17 11:44:49 -0400760 select SPL_STACK_R if SPL
Masahiro Yamada6e1288c2017-04-25 13:10:11 +0900761 select SUPPORT_SPL
762 imply FIT
763
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200764config ARCH_MESON
765 bool "Amlogic Meson"
Masahiro Yamada9afc6c52018-04-25 18:47:52 +0900766 imply DISTRO_DEFAULTS
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200767 help
768 Support for the Meson SoC family developed by Amlogic Inc.,
769 targeted at media players and tablet computers. We currently
770 support the S905 (GXBaby) 64-bit SoC.
771
developerf4a079c2018-11-15 10:07:52 +0800772config ARCH_MEDIATEK
773 bool "MediaTek SoCs"
774 select BINMAN
775 select DM
776 select OF_CONTROL
777 select SPL_DM if SPL
778 select SPL_LIBCOMMON_SUPPORT if SPL
779 select SPL_LIBGENERIC_SUPPORT if SPL
780 select SPL_OF_CONTROL if SPL
781 select SUPPORT_SPL
782 help
783 Support for the MediaTek SoCs family developed by MediaTek Inc.
784 Please refer to doc/README.mediatek for more information.
785
Vladimir Zapolskiy31d0e962018-09-17 21:43:03 +0300786config ARCH_LPC32XX
787 bool "NXP LPC32xx platform"
788 select CPU_ARM926EJS
789 select DM
790 select DM_GPIO
791 select DM_SERIAL
792 select SPL_DM if SPL
793 select SUPPORT_SPL
794 imply CMD_DM
795
Peng Fan6bae1c72018-10-18 14:28:08 +0200796config ARCH_IMX8
797 bool "NXP i.MX8 platform"
798 select ARM64
799 select DM
800 select OF_CONTROL
Ye Li97b41652019-07-12 09:33:52 +0000801 select ENABLE_ARM_SOC_BOOT0_HOOK
Peng Fan6bae1c72018-10-18 14:28:08 +0200802
Peng Fan39945c12018-11-20 10:19:25 +0000803config ARCH_IMX8M
Peng Fan66294882018-01-10 13:20:19 +0800804 bool "NXP i.MX8M platform"
805 select ARM64
806 select DM
807 select SUPPORT_SPL
Michal Simek2e7c8192018-07-23 15:55:14 +0200808 imply CMD_DM
Peng Fan66294882018-01-10 13:20:19 +0800809
Stefan Agner081ea1f2018-02-06 09:44:34 +0100810config ARCH_MX23
811 bool "NXP i.MX23 family"
812 select CPU_ARM926EJS
813 select PL011_SERIAL
814 select SUPPORT_SPL
815
Fabio Estevam52b2f452017-11-03 13:40:08 -0200816config ARCH_MX25
817 bool "NXP MX25"
818 select CPU_ARM926EJS
Adam Fordb413c452018-02-04 09:32:43 -0600819 imply MXC_GPIO
Fabio Estevam52b2f452017-11-03 13:40:08 -0200820
Stefan Agner663a3232018-02-06 09:44:35 +0100821config ARCH_MX28
822 bool "NXP i.MX28 family"
823 select CPU_ARM926EJS
824 select PL011_SERIAL
825 select SUPPORT_SPL
826
Magnus Liljac74f70f2018-05-11 14:06:54 +0200827config ARCH_MX31
828 bool "NXP i.MX31 family"
829 select CPU_ARM1136
830
Peng Fan2c7b1702017-02-22 16:21:39 +0800831config ARCH_MX7ULP
Michal Simekf751ff52018-07-23 15:55:12 +0200832 bool "NXP MX7ULP"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530833 select CPU_V7A
Peng Fan2c7b1702017-02-22 16:21:39 +0800834 select ROM_UNIFIED_SECTIONS
Adam Fordb413c452018-02-04 09:32:43 -0600835 imply MXC_GPIO
Tom Rini4f834a42019-12-03 09:28:03 -0500836 imply SYS_THUMB_BUILD
Peng Fan2c7b1702017-02-22 16:21:39 +0800837
Adrian Alonso98810772015-09-03 11:49:28 -0500838config ARCH_MX7
839 bool "Freescale MX7"
Michal Simek84f3dec2018-07-23 15:55:13 +0200840 select ARCH_MISC_INIT
841 select BOARD_EARLY_INIT_F
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530842 select CPU_V7A
Stefano Babicf8b509b2019-09-20 08:47:53 +0200843 select SYS_FSL_HAS_SEC if IMX_HAB
York Sun92c36e22016-12-28 08:43:30 -0800844 select SYS_FSL_SEC_COMPAT_4
York Sunfa4199422016-12-28 08:43:31 -0800845 select SYS_FSL_SEC_LE
Adam Fordb413c452018-02-04 09:32:43 -0600846 imply MXC_GPIO
Tom Rini4f834a42019-12-03 09:28:03 -0500847 imply SYS_THUMB_BUILD
Adrian Alonso98810772015-09-03 11:49:28 -0500848
Boris BREZILLON51e82662015-03-04 13:13:03 +0100849config ARCH_MX6
850 bool "Freescale MX6"
Lokesh Vutla81b1a672018-04-26 18:21:26 +0530851 select CPU_V7A
Stefano Babicf8b509b2019-09-20 08:47:53 +0200852 select SYS_FSL_HAS_SEC if IMX_HAB
York Sun92c36e22016-12-28 08:43:30 -0800853 select SYS_FSL_SEC_COMPAT_4
York Sunfa4199422016-12-28 08:43:31 -0800854 select SYS_FSL_SEC_LE
Adam Fordb413c452018-02-04 09:32:43 -0600855 imply MXC_GPIO
Tom Rini4f834a42019-12-03 09:28:03 -0500856 imply SYS_THUMB_BUILD
Boris BREZILLON51e82662015-03-04 13:13:03 +0100857
Philipp Tomsich2d6a0cc2017-08-03 23:23:55 +0200858if ARCH_MX6
859config SPL_LDSCRIPT
Michal Simekf751ff52018-07-23 15:55:12 +0200860 default "arch/arm/mach-omap2/u-boot-spl.lds"
Philipp Tomsich2d6a0cc2017-08-03 23:23:55 +0200861endif
862
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200863config ARCH_MX5
864 bool "Freescale MX5"
Simon Glass7a99a872017-01-23 13:31:20 -0700865 select BOARD_EARLY_INIT_F
Michal Simek84f3dec2018-07-23 15:55:13 +0200866 select CPU_V7A
Adam Fordb413c452018-02-04 09:32:43 -0600867 imply MXC_GPIO
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200868
Manivannan Sadhasivam474a5df2018-06-14 23:38:31 +0530869config ARCH_OWL
870 bool "Actions Semi OWL SoCs"
871 select ARM64
872 select DM
873 select DM_SERIAL
874 select OF_CONTROL
Michal Simek2e7c8192018-07-23 15:55:14 +0200875 imply CMD_DM
Manivannan Sadhasivam474a5df2018-06-14 23:38:31 +0530876
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +0300877config ARCH_QEMU
878 bool "QEMU Virtual Platform"
AKASHI Takahiroff91dde2019-07-03 10:44:40 +0900879 select ARCH_SUPPORT_TFABOOT
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +0300880 select DM
881 select DM_SERIAL
882 select OF_CONTROL
Alexander Graf633ef892018-01-25 12:05:52 +0100883 select PL01X_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200884 imply CMD_DM
AKASHI Takahiro501cc842018-09-14 17:06:54 +0900885 imply DM_RTC
886 imply RTC_PL031
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +0300887
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900888config ARCH_RMOBILE
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900889 bool "Renesas ARM SoCs"
Chris Brandt43b11d92017-08-23 14:53:59 -0500890 select BOARD_EARLY_INIT_F if !RZA1
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900891 select DM
892 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +0200893 imply CMD_DM
Tom Rinid8532af2017-06-02 11:03:50 -0400894 imply FAT_WRITE
Tom Rini1c640a62017-03-18 09:01:44 -0400895 imply SYS_THUMB_BUILD
Marek Vasutb90dc692018-12-03 13:28:25 +0100896 imply ARCH_MISC_INIT if DISPLAY_CPUINFO
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300897
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300898config TARGET_S32V234EVB
899 bool "Support s32v234evb"
900 select ARM64
York Sun097e3602016-12-28 08:43:42 -0800901 select SYS_FSL_ERRATUM_ESDHC111
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300902
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200903config ARCH_SNAPDRAGON
904 bool "Qualcomm Snapdragon SoCs"
905 select ARM64
906 select DM
907 select DM_GPIO
908 select DM_SERIAL
Michal Simek84f3dec2018-07-23 15:55:13 +0200909 select MSM_SMEM
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200910 select OF_CONTROL
911 select OF_SEPARATE
Ramon Fried4b4bd492018-07-02 02:57:56 +0300912 select SMEM
Michal Simek84f3dec2018-07-23 15:55:13 +0200913 select SPMI
Michal Simek2e7c8192018-07-23 15:55:14 +0200914 imply CMD_DM
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200915
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900916config ARCH_SOCFPGA
917 bool "Altera SOCFPGA family"
Marek Vasut014f0ab2018-05-11 22:25:59 +0200918 select ARCH_EARLY_INIT_R
Marek Vasut04c8f4f2018-08-13 20:06:46 +0200919 select ARCH_MISC_INIT if !TARGET_SOCFPGA_ARRIA10
Ley Foon Tan461d2982019-11-27 15:55:32 +0800920 select ARM64 if TARGET_SOCFPGA_STRATIX10 || TARGET_SOCFPGA_AGILEX
Ley Foon Tan9c407b52018-05-24 00:17:32 +0800921 select CPU_V7A if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
Masahiro Yamadae2005542015-03-31 12:47:59 +0900922 select DM
Marek Vasut57f03d22018-05-11 22:26:35 +0200923 select DM_SERIAL
Ley Foon Tan9c407b52018-05-24 00:17:32 +0800924 select ENABLE_ARM_SOC_BOOT0_HOOK if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
Marek Vasut014f0ab2018-05-11 22:25:59 +0200925 select OF_CONTROL
Ley Foon Tan9ae7b0a2018-07-13 13:40:23 +0800926 select SPL_DM_RESET if DM_RESET
Michal Simek84f3dec2018-07-23 15:55:13 +0200927 select SPL_DM_SERIAL
Marek Vasut014f0ab2018-05-11 22:25:59 +0200928 select SPL_LIBCOMMON_SUPPORT
Marek Vasut014f0ab2018-05-11 22:25:59 +0200929 select SPL_LIBGENERIC_SUPPORT
Marek Vasut014f0ab2018-05-11 22:25:59 +0200930 select SPL_NAND_SUPPORT if SPL_NAND_DENALI
931 select SPL_OF_CONTROL
Ley Foon Tan461d2982019-11-27 15:55:32 +0800932 select SPL_SEPARATE_BSS if TARGET_SOCFPGA_STRATIX10 || TARGET_SOCFPGA_AGILEX
Marek Vasut014f0ab2018-05-11 22:25:59 +0200933 select SPL_SERIAL_SUPPORT
Simon Goldschmidtfc824662019-07-15 21:47:55 +0200934 select SPL_SYSRESET
Marek Vasut014f0ab2018-05-11 22:25:59 +0200935 select SPL_WATCHDOG_SUPPORT
936 select SUPPORT_SPL
Marek Vasut57f03d22018-05-11 22:26:35 +0200937 select SYS_NS16550
Ley Foon Tan9c407b52018-05-24 00:17:32 +0800938 select SYS_THUMB_BUILD if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
Simon Goldschmidtfc824662019-07-15 21:47:55 +0200939 select SYSRESET
940 select SYSRESET_SOCFPGA if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10
Ley Foon Tanfbd3db62019-08-07 16:30:53 +0800941 select SYSRESET_SOCFPGA_S10 if TARGET_SOCFPGA_STRATIX10
Michal Simek2e7c8192018-07-23 15:55:14 +0200942 imply CMD_DM
Tom Rinic20bb732017-07-22 18:36:16 -0400943 imply CMD_MTDPARTS
Daniel Thompsona9e2c672017-05-19 17:26:58 +0100944 imply CRC32_VERIFY
Simon Goldschmidta4347302018-02-13 06:34:14 +0100945 imply DM_SPI
946 imply DM_SPI_FLASH
Tom Rinid8532af2017-06-02 11:03:50 -0400947 imply FAT_WRITE
Simon Goldschmidtb1c42692019-04-09 21:02:05 +0200948 imply SPL
949 imply SPL_DM
Simon Goldschmidtc26195d2018-11-29 21:17:08 +0100950 imply SPL_LIBDISK_SUPPORT
951 imply SPL_MMC_SUPPORT
Simon Goldschmidta4347302018-02-13 06:34:14 +0100952 imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Simon Goldschmidt3b551bc2018-10-30 20:21:49 +0100953 imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE
Simon Goldschmidtc26195d2018-11-29 21:17:08 +0100954 imply SPL_SPI_FLASH_SUPPORT
955 imply SPL_SPI_SUPPORT
Dinh Nguyen41e32962019-04-23 16:55:06 -0500956 imply L2X0_CACHE
Marek Vasut69295472014-12-30 18:16:08 +0100957
Ian Campbelld8e69e02014-10-24 21:20:44 +0100958config ARCH_SUNXI
959 bool "Support sunxi (Allwinner) SoCs"
Masahiro Yamada87247af2017-10-17 13:42:44 +0900960 select BINMAN
Hans de Goedec9511672016-04-03 09:41:44 +0200961 select CMD_GPIO
Hans de Goede2c526402016-05-15 13:51:58 +0200962 select CMD_MMC if MMC
Yann E. MORINe28217d2016-10-31 22:33:40 +0100963 select CMD_USB if DISTRO_DEFAULTS
Jagan Teki80d261b2019-01-11 16:40:20 +0530964 select CLK
Hans de Goede03914882015-04-15 20:46:48 +0200965 select DM
Tom Rini10e87172015-06-30 16:51:15 -0400966 select DM_ETH
Hans de Goedec8d43472015-12-21 20:22:00 +0100967 select DM_GPIO
968 select DM_KEYBOARD
Jagan Tekic4981542019-04-12 16:48:25 +0530969 select DM_MMC if MMC
970 select DM_SCSI if SCSI
Tom Rini10e87172015-06-30 16:51:15 -0400971 select DM_SERIAL
Yann E. MORINe28217d2016-10-31 22:33:40 +0100972 select DM_USB if DISTRO_DEFAULTS
Hans de Goede48a234a2016-03-22 22:51:52 +0100973 select OF_BOARD_SETUP
Hans de Goede03914882015-04-15 20:46:48 +0200974 select OF_CONTROL
975 select OF_SEPARATE
Tom Rinie69ba982018-03-06 19:02:27 -0500976 select SPECIFY_CONSOLE_INDEX
Tom Rinidac518f2017-06-21 07:54:46 -0400977 select SPL_STACK_R if SPL
978 select SPL_SYS_MALLOC_SIMPLE if SPL
Tom Rini1c640a62017-03-18 09:01:44 -0400979 select SPL_SYS_THUMB_BUILD if !ARM64
Andre Przywara9d3bab92019-06-23 15:09:46 +0100980 select SUNXI_GPIO
Michal Simek84f3dec2018-07-23 15:55:13 +0200981 select SYS_NS16550
Maxime Ripard2ba0f212017-10-19 11:49:29 +0200982 select SYS_THUMB_BUILD if !ARM64
Yann E. MORINe28217d2016-10-31 22:33:40 +0100983 select USB if DISTRO_DEFAULTS
Yann E. MORINe28217d2016-10-31 22:33:40 +0100984 select USB_KEYBOARD if DISTRO_DEFAULTS
Michal Simek84f3dec2018-07-23 15:55:13 +0200985 select USB_STORAGE if DISTRO_DEFAULTS
Simon Glass7611ac62019-09-25 08:56:27 -0600986 select SPL_USE_TINY_PRINTF
Michal Simek2e7c8192018-07-23 15:55:14 +0200987 imply CMD_DM
Maxime Ripardbc7db012017-08-24 11:54:03 +0200988 imply CMD_GPT
Miquel Raynald0935362019-10-03 19:50:03 +0200989 imply CMD_UBI if MTD_RAW_NAND
Masahiro Yamada9afc6c52018-04-25 18:47:52 +0900990 imply DISTRO_DEFAULTS
Tom Rinid8532af2017-06-02 11:03:50 -0400991 imply FAT_WRITE
Marek Vasut88e3a842018-10-10 18:27:35 +0200992 imply FIT
Andre Heider11790742018-01-16 09:44:22 +0100993 imply OF_LIBFDT_OVERLAY
Masahiro Yamada8e5e1ea2017-04-28 19:42:19 +0900994 imply PRE_CONSOLE_BUFFER
995 imply SPL_GPIO_SUPPORT
996 imply SPL_LIBCOMMON_SUPPORT
Masahiro Yamada8e5e1ea2017-04-28 19:42:19 +0900997 imply SPL_LIBGENERIC_SUPPORT
Masahiro Yamada0a780172017-05-09 20:31:39 +0900998 imply SPL_MMC_SUPPORT if MMC
Masahiro Yamada8e5e1ea2017-04-28 19:42:19 +0900999 imply SPL_POWER_SUPPORT
1000 imply SPL_SERIAL_SUPPORT
Maxime Ripardabb17b42017-09-07 10:46:24 +02001001 imply USB_GADGET
Chen-Yu Tsai848c2632014-10-22 16:47:44 +08001002
Michal Simek4b066a12018-08-22 14:55:27 +02001003config ARCH_VERSAL
1004 bool "Support Xilinx Versal Platform"
1005 select ARM64
1006 select CLK
1007 select DM
Michal Simek0609abd2019-01-15 08:52:46 +01001008 select DM_ETH if NET
1009 select DM_MMC if MMC
Michal Simek4b066a12018-08-22 14:55:27 +02001010 select DM_SERIAL
1011 select OF_CONTROL
Siva Durga Prasad Paladugu37c2ff82019-01-31 17:28:14 +05301012 imply BOARD_LATE_INIT
Michal Simek4b066a12018-08-22 14:55:27 +02001013
Stefan Agnerd53c0a42017-03-13 18:41:36 -07001014config ARCH_VF610
1015 bool "Freescale Vybrid"
Lokesh Vutla81b1a672018-04-26 18:21:26 +05301016 select CPU_V7A
York Sun097e3602016-12-28 08:43:42 -08001017 select SYS_FSL_ERRATUM_ESDHC111
Tom Rinic20bb732017-07-22 18:36:16 -04001018 imply CMD_MTDPARTS
Miquel Raynald0935362019-10-03 19:50:03 +02001019 imply MTD_RAW_NAND
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +05301020
Masahiro Yamada8204bd12015-03-16 16:43:24 +09001021config ARCH_ZYNQ
Michal Simek8caedde2017-11-23 08:25:41 +01001022 bool "Xilinx Zynq based platform"
Michal Simek84f3dec2018-07-23 15:55:13 +02001023 select CLK
1024 select CLK_ZYNQ
Lokesh Vutla81b1a672018-04-26 18:21:26 +05301025 select CPU_V7A
Masahiro Yamada2df07d42015-03-31 12:47:55 +09001026 select DM
Michal Simek6d35f3f2018-01-09 14:49:28 +01001027 select DM_ETH if NET
Michal Simek6d35f3f2018-01-09 14:49:28 +01001028 select DM_MMC if MMC
Simon Glass23d9b622015-10-17 19:41:27 -06001029 select DM_SERIAL
Michal Simek84f3dec2018-07-23 15:55:13 +02001030 select DM_SPI
Jagan Teki0bd03a52015-06-27 00:51:32 +05301031 select DM_SPI_FLASH
Simon Glass476e63f2016-07-05 17:10:14 -06001032 select DM_USB if USB
Michal Simek84f3dec2018-07-23 15:55:13 +02001033 select OF_CONTROL
Adam Ford4e96ff82018-04-15 13:51:26 -04001034 select SPI
Michal Simek84f3dec2018-07-23 15:55:13 +02001035 select SPL_BOARD_INIT if SPL
1036 select SPL_CLK if SPL
1037 select SPL_DM if SPL
1038 select SPL_OF_CONTROL if SPL
1039 select SPL_SEPARATE_BSS if SPL
1040 select SUPPORT_SPL
1041 imply ARCH_EARLY_INIT_R
Michal Simek37ad2702018-08-20 08:24:14 +02001042 imply BOARD_LATE_INIT
Simon Glass04ac6f12017-04-26 22:28:02 -06001043 imply CMD_CLK
Michal Simek2e7c8192018-07-23 15:55:14 +02001044 imply CMD_DM
Simon Glassc6567fa2017-08-04 16:34:48 -06001045 imply CMD_SPL
Michal Simek84f3dec2018-07-23 15:55:13 +02001046 imply FAT_WRITE
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001047
Michal Simekb513bcd2018-04-12 17:39:46 +02001048config ARCH_ZYNQMP_R5
1049 bool "Xilinx ZynqMP R5 based platform"
Michal Simek84f3dec2018-07-23 15:55:13 +02001050 select CLK
Michal Simekb513bcd2018-04-12 17:39:46 +02001051 select CPU_V7R
Michal Simekb513bcd2018-04-12 17:39:46 +02001052 select DM
Michal Simek5f3c3382019-01-15 09:06:46 +01001053 select DM_ETH if NET
1054 select DM_MMC if MMC
Michal Simekb513bcd2018-04-12 17:39:46 +02001055 select DM_SERIAL
Michal Simek84f3dec2018-07-23 15:55:13 +02001056 select OF_CONTROL
Michal Simek2e7c8192018-07-23 15:55:14 +02001057 imply CMD_DM
Jean-Jacques Hiblot44aaec72018-11-29 10:52:42 +01001058 imply DM_USB_GADGET
Michal Simekb513bcd2018-04-12 17:39:46 +02001059
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +05301060config ARCH_ZYNQMP
Michal Simek8caedde2017-11-23 08:25:41 +01001061 bool "Xilinx ZynqMP based platform"
Michal Simek04b7e622015-01-15 10:01:51 +01001062 select ARM64
Michal Simek84f3dec2018-07-23 15:55:13 +02001063 select CLK
Michal Simek25b83712015-10-17 19:41:25 -06001064 select DM
Michal Simek73f2d0f2019-01-15 08:52:51 +01001065 select DM_ETH if NET
Ibai Erkiagad47ed6f2019-09-27 12:51:41 +02001066 select DM_MAILBOX
Michal Simek73f2d0f2019-01-15 08:52:51 +01001067 select DM_MMC if MMC
Michal Simek25b83712015-10-17 19:41:25 -06001068 select DM_SERIAL
Michal Simek968388d2019-01-15 10:50:39 +01001069 select DM_SPI if SPI
1070 select DM_SPI_FLASH if DM_SPI
Michal Simek84f3dec2018-07-23 15:55:13 +02001071 select DM_USB if USB
Ibai Erkiaga2d9b95b2019-09-27 11:37:04 +01001072 select FIRMWARE
Michal Simek84f3dec2018-07-23 15:55:13 +02001073 select OF_CONTROL
Ley Foon Tan48fcc4a2017-05-03 17:13:32 +08001074 select SPL_BOARD_INIT if SPL
Michal Simekfd1d7662017-12-01 15:13:36 +01001075 select SPL_CLK if SPL
Ibai Erkiaga2d9b95b2019-09-27 11:37:04 +01001076 select SPL_DM_MAILBOX if SPL
1077 select SPL_FIRMWARE if SPL
Michal Simek88674da2018-11-23 09:01:44 +01001078 select SPL_SEPARATE_BSS if SPL
Michal Simek84f3dec2018-07-23 15:55:13 +02001079 select SUPPORT_SPL
Ibai Erkiagad47ed6f2019-09-27 12:51:41 +02001080 select ZYNQMP_IPI
Michal Simek37ad2702018-08-20 08:24:14 +02001081 imply BOARD_LATE_INIT
Michal Simek2e7c8192018-07-23 15:55:14 +02001082 imply CMD_DM
Tom Rinid8532af2017-06-02 11:03:50 -04001083 imply FAT_WRITE
Michal Simeka8ddd6a2018-10-04 14:26:13 +02001084 imply MP
Jean-Jacques Hiblot44aaec72018-11-29 10:52:42 +01001085 imply DM_USB_GADGET
Michal Simek04b7e622015-01-15 10:01:51 +01001086
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +09001087config TEGRA
1088 bool "NVIDIA Tegra"
Masahiro Yamada9afc6c52018-04-25 18:47:52 +09001089 imply DISTRO_DEFAULTS
Tom Rinid8532af2017-06-02 11:03:50 -04001090 imply FAT_WRITE
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001091
Linus Walleij800d6fd2015-01-23 11:50:53 +01001092config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001093 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +09001094 select ARM64
Alexander Graf633ef892018-01-25 12:05:52 +01001095 select PL01X_SERIAL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001096
Linus Walleij800d6fd2015-01-23 11:50:53 +01001097config TARGET_VEXPRESS64_BASE_FVP
1098 bool "Support Versatile Express ARMv8a FVP BASE model"
1099 select ARM64
Alexander Graf633ef892018-01-25 12:05:52 +01001100 select PL01X_SERIAL
Michal Simek84f3dec2018-07-23 15:55:13 +02001101 select SEMIHOSTING
Linus Walleij800d6fd2015-01-23 11:50:53 +01001102
Linus Walleijc5822502015-01-23 14:41:10 +01001103config TARGET_VEXPRESS64_JUNO
1104 bool "Support Versatile Express Juno Development Platform"
1105 select ARM64
Alexander Graf633ef892018-01-25 12:05:52 +01001106 select PL01X_SERIAL
Linus Walleijc5822502015-01-23 14:41:10 +01001107
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301108config TARGET_LS2080A_EMU
1109 bool "Support ls2080a_emu"
York Sun4dd8c612016-10-04 14:31:48 -07001110 select ARCH_LS2080A
Michal Simek84f3dec2018-07-23 15:55:13 +02001111 select ARCH_MISC_INIT
Masahiro Yamada0d46c342014-09-14 03:01:51 +09001112 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +01001113 select ARMV8_MULTIENTRY
Rajesh Bhagatba2414f2019-02-01 05:22:01 +00001114 select FSL_DDR_SYNC_REFRESH
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301115 help
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -05001116 Support for Freescale LS2080A_EMU platform.
1117 The LS2080A Development System (EMULATOR) is a pre-silicon
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301118 development platform that supports the QorIQ LS2080A
1119 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001120
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301121config TARGET_LS2080A_SIMU
1122 bool "Support ls2080a_simu"
York Sun4dd8c612016-10-04 14:31:48 -07001123 select ARCH_LS2080A
Michal Simek84f3dec2018-07-23 15:55:13 +02001124 select ARCH_MISC_INIT
Masahiro Yamada0d46c342014-09-14 03:01:51 +09001125 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +01001126 select ARMV8_MULTIENTRY
Yuantian Tangafa86692019-07-02 16:16:22 +08001127 select BOARD_LATE_INIT
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301128 help
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -05001129 Support for Freescale LS2080A_SIMU platform.
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301130 The LS2080A Development System (QDS) is a pre silicon
1131 development platform that supports the QorIQ LS2080A
1132 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001133
Ashish Kumar1ef4c772017-08-31 16:12:55 +05301134config TARGET_LS1088AQDS
1135 bool "Support ls1088aqds"
1136 select ARCH_LS1088A
Michal Simek84f3dec2018-07-23 15:55:13 +02001137 select ARCH_MISC_INIT
Ashish Kumar1ef4c772017-08-31 16:12:55 +05301138 select ARM64
1139 select ARMV8_MULTIENTRY
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001140 select ARCH_SUPPORT_TFABOOT
Ashish Kumar1ef4c772017-08-31 16:12:55 +05301141 select BOARD_LATE_INIT
Ashish Kumar4feb83b2017-11-06 13:18:44 +05301142 select SUPPORT_SPL
Rajesh Bhagatba2414f2019-02-01 05:22:01 +00001143 select FSL_DDR_INTERACTIVE if !SD_BOOT
Ashish Kumar1ef4c772017-08-31 16:12:55 +05301144 help
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -05001145 Support for NXP LS1088AQDS platform.
Ashish Kumar1ef4c772017-08-31 16:12:55 +05301146 The LS1088A Development System (QDS) is a high-performance
1147 development platform that supports the QorIQ LS1088A
1148 Layerscape Architecture processor.
1149
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301150config TARGET_LS2080AQDS
1151 bool "Support ls2080aqds"
York Sun4dd8c612016-10-04 14:31:48 -07001152 select ARCH_LS2080A
Michal Simek84f3dec2018-07-23 15:55:13 +02001153 select ARCH_MISC_INIT
York Sun03017032015-03-20 19:28:23 -07001154 select ARM64
1155 select ARMV8_MULTIENTRY
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001156 select ARCH_SUPPORT_TFABOOT
Tom Rini22d567e2017-01-22 19:43:11 -05001157 select BOARD_LATE_INIT
Scott Wood8e728cd2015-03-24 13:25:02 -07001158 select SUPPORT_SPL
Simon Glass0e5faf02017-06-14 21:28:21 -06001159 imply SCSI
Tuomas Tynkkynenedf9f622017-12-08 15:36:19 +02001160 imply SCSI_AHCI
Rajesh Bhagatba2414f2019-02-01 05:22:01 +00001161 select FSL_DDR_BIST
1162 select FSL_DDR_INTERACTIVE if !SPL
York Sun03017032015-03-20 19:28:23 -07001163 help
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -05001164 Support for Freescale LS2080AQDS platform.
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301165 The LS2080A Development System (QDS) is a high-performance
1166 development platform that supports the QorIQ LS2080A
York Sun03017032015-03-20 19:28:23 -07001167 Layerscape Architecture processor.
1168
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301169config TARGET_LS2080ARDB
1170 bool "Support ls2080ardb"
York Sun4dd8c612016-10-04 14:31:48 -07001171 select ARCH_LS2080A
Michal Simek84f3dec2018-07-23 15:55:13 +02001172 select ARCH_MISC_INIT
York Sune12abcb2015-03-20 19:28:24 -07001173 select ARM64
1174 select ARMV8_MULTIENTRY
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001175 select ARCH_SUPPORT_TFABOOT
Tom Rini22d567e2017-01-22 19:43:11 -05001176 select BOARD_LATE_INIT
Scott Wood212b8d82015-03-24 13:25:03 -07001177 select SUPPORT_SPL
Rajesh Bhagatba2414f2019-02-01 05:22:01 +00001178 select FSL_DDR_BIST
1179 select FSL_DDR_INTERACTIVE if !SPL
Simon Glass0e5faf02017-06-14 21:28:21 -06001180 imply SCSI
Tuomas Tynkkynenedf9f622017-12-08 15:36:19 +02001181 imply SCSI_AHCI
York Sune12abcb2015-03-20 19:28:24 -07001182 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301183 Support for Freescale LS2080ARDB platform.
1184 The LS2080A Reference design board (RDB) is a high-performance
1185 development platform that supports the QorIQ LS2080A
York Sune12abcb2015-03-20 19:28:24 -07001186 Layerscape Architecture processor.
1187
Priyanka Jain75cd67f2017-04-27 15:08:07 +05301188config TARGET_LS2081ARDB
1189 bool "Support ls2081ardb"
1190 select ARCH_LS2080A
Michal Simek84f3dec2018-07-23 15:55:13 +02001191 select ARCH_MISC_INIT
Priyanka Jain75cd67f2017-04-27 15:08:07 +05301192 select ARM64
1193 select ARMV8_MULTIENTRY
1194 select BOARD_LATE_INIT
1195 select SUPPORT_SPL
Priyanka Jain75cd67f2017-04-27 15:08:07 +05301196 help
1197 Support for Freescale LS2081ARDB platform.
1198 The LS2081A Reference design board (RDB) is a high-performance
1199 development platform that supports the QorIQ LS2081A/LS2041A
1200 Layerscape Architecture processor.
1201
Priyanka Jainfd45ca02018-11-28 13:04:27 +00001202config TARGET_LX2160ARDB
1203 bool "Support lx2160ardb"
1204 select ARCH_LX2160A
1205 select ARCH_MISC_INIT
1206 select ARM64
1207 select ARMV8_MULTIENTRY
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001208 select ARCH_SUPPORT_TFABOOT
Priyanka Jainfd45ca02018-11-28 13:04:27 +00001209 select BOARD_LATE_INIT
1210 help
1211 Support for NXP LX2160ARDB platform.
1212 The lx2160ardb (LX2160A Reference design board (RDB)
1213 is a high-performance development platform that supports the
1214 QorIQ LX2160A/LX2120A/LX2080A Layerscape Architecture processor.
1215
Pankaj Bansal338baa32019-02-08 10:29:58 +00001216config TARGET_LX2160AQDS
1217 bool "Support lx2160aqds"
1218 select ARCH_LX2160A
1219 select ARCH_MISC_INIT
1220 select ARM64
1221 select ARMV8_MULTIENTRY
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001222 select ARCH_SUPPORT_TFABOOT
Pankaj Bansal338baa32019-02-08 10:29:58 +00001223 select BOARD_LATE_INIT
1224 help
1225 Support for NXP LX2160AQDS platform.
1226 The lx2160aqds (LX2160A QorIQ Development System (QDS)
1227 is a high-performance development platform that supports the
1228 QorIQ LX2160A/LX2120A/LX2080A Layerscape Architecture processor.
1229
Peter Griffin31f327e2015-07-30 18:55:23 +01001230config TARGET_HIKEY
1231 bool "Support HiKey 96boards Consumer Edition Platform"
1232 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +01001233 select DM
1234 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +01001235 select DM_SERIAL
Peter Griffinc97c37a2016-04-20 17:13:59 +01001236 select OF_CONTROL
Alexander Graf633ef892018-01-25 12:05:52 +01001237 select PL01X_SERIAL
Tom Rinie69ba982018-03-06 19:02:27 -05001238 select SPECIFY_CONSOLE_INDEX
Michal Simek2e7c8192018-07-23 15:55:14 +02001239 imply CMD_DM
Peter Griffin31f327e2015-07-30 18:55:23 +01001240 help
1241 Support for HiKey 96boards platform. It features a HI6220
1242 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
1243
Manivannan Sadhasivamcf33f922019-08-02 20:40:09 +05301244config TARGET_HIKEY960
1245 bool "Support HiKey960 96boards Consumer Edition Platform"
1246 select ARM64
1247 select DM
1248 select DM_SERIAL
1249 select OF_CONTROL
1250 select PL01X_SERIAL
1251 imply CMD_DM
1252 help
1253 Support for HiKey960 96boards platform. It features a HI3660
1254 SoC, with 4xA73 CPU, 4xA53 CPU, MALI-G71 GPU, and 3GB RAM.
1255
Jorge Ramirez-Ortizf5b38422017-06-26 15:52:49 +02001256config TARGET_POPLAR
1257 bool "Support Poplar 96boards Enterprise Edition Platform"
1258 select ARM64
1259 select DM
Jorge Ramirez-Ortizf5b38422017-06-26 15:52:49 +02001260 select DM_SERIAL
1261 select DM_USB
Michal Simek84f3dec2018-07-23 15:55:13 +02001262 select OF_CONTROL
Alexander Graf633ef892018-01-25 12:05:52 +01001263 select PL01X_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +02001264 imply CMD_DM
Jorge Ramirez-Ortizf5b38422017-06-26 15:52:49 +02001265 help
1266 Support for Poplar 96boards EE platform. It features a HI3798cv200
1267 SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU
1268 making it capable of running any commercial set-top solution based on
1269 Linux or Android.
1270
Prabhakar Kushwaha55432502016-06-03 18:41:34 +05301271config TARGET_LS1012AQDS
1272 bool "Support ls1012aqds"
York Sunb3d71642016-09-26 08:09:26 -07001273 select ARCH_LS1012A
Prabhakar Kushwaha55432502016-06-03 18:41:34 +05301274 select ARM64
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001275 select ARCH_SUPPORT_TFABOOT
Tom Rini22d567e2017-01-22 19:43:11 -05001276 select BOARD_LATE_INIT
Prabhakar Kushwaha55432502016-06-03 18:41:34 +05301277 help
1278 Support for Freescale LS1012AQDS platform.
1279 The LS1012A Development System (QDS) is a high-performance
1280 development platform that supports the QorIQ LS1012A
1281 Layerscape Architecture processor.
1282
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +05301283config TARGET_LS1012ARDB
1284 bool "Support ls1012ardb"
York Sunb3d71642016-09-26 08:09:26 -07001285 select ARCH_LS1012A
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +05301286 select ARM64
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001287 select ARCH_SUPPORT_TFABOOT
Tom Rini22d567e2017-01-22 19:43:11 -05001288 select BOARD_LATE_INIT
Simon Glass0e5faf02017-06-14 21:28:21 -06001289 imply SCSI
Tuomas Tynkkynenedf9f622017-12-08 15:36:19 +02001290 imply SCSI_AHCI
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +05301291 help
1292 Support for Freescale LS1012ARDB platform.
1293 The LS1012A Reference design board (RDB) is a high-performance
1294 development platform that supports the QorIQ LS1012A
1295 Layerscape Architecture processor.
1296
Bhaskar Upadhaya7fff22a2018-01-11 20:03:31 +05301297config TARGET_LS1012A2G5RDB
1298 bool "Support ls1012a2g5rdb"
1299 select ARCH_LS1012A
1300 select ARM64
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001301 select ARCH_SUPPORT_TFABOOT
Bhaskar Upadhaya7fff22a2018-01-11 20:03:31 +05301302 select BOARD_LATE_INIT
1303 imply SCSI
1304 help
1305 Support for Freescale LS1012A2G5RDB platform.
1306 The LS1012A 2G5 Reference design board (RDB) is a high-performance
1307 development platform that supports the QorIQ LS1012A
1308 Layerscape Architecture processor.
1309
Bhaskar Upadhaya5e6f5982018-05-23 11:03:30 +05301310config TARGET_LS1012AFRWY
1311 bool "Support ls1012afrwy"
1312 select ARCH_LS1012A
1313 select ARM64
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001314 select ARCH_SUPPORT_TFABOOT
Michal Simek84f3dec2018-07-23 15:55:13 +02001315 select BOARD_LATE_INIT
Bhaskar Upadhaya5e6f5982018-05-23 11:03:30 +05301316 imply SCSI
1317 imply SCSI_AHCI
1318 help
1319 Support for Freescale LS1012AFRWY platform.
1320 The LS1012A FRWY board (FRWY) is a high-performance
1321 development platform that supports the QorIQ LS1012A
1322 Layerscape Architecture processor.
1323
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +05301324config TARGET_LS1012AFRDM
1325 bool "Support ls1012afrdm"
York Sunb3d71642016-09-26 08:09:26 -07001326 select ARCH_LS1012A
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +05301327 select ARM64
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001328 select ARCH_SUPPORT_TFABOOT
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +05301329 help
1330 Support for Freescale LS1012AFRDM platform.
1331 The LS1012A Freedom board (FRDM) is a high-performance
1332 development platform that supports the QorIQ LS1012A
1333 Layerscape Architecture processor.
1334
Yuantian Tang473bbc42019-04-10 16:43:35 +08001335config TARGET_LS1028AQDS
1336 bool "Support ls1028aqds"
1337 select ARCH_LS1028A
1338 select ARM64
1339 select ARMV8_MULTIENTRY
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001340 select ARCH_SUPPORT_TFABOOT
Yuantian Tangafa86692019-07-02 16:16:22 +08001341 select BOARD_LATE_INIT
Pankaj Bansal7fd13ae2019-07-23 07:22:05 +00001342 select ARCH_MISC_INIT
Yuantian Tang473bbc42019-04-10 16:43:35 +08001343 help
1344 Support for Freescale LS1028AQDS platform
1345 The LS1028A Development System (QDS) is a high-performance
1346 development platform that supports the QorIQ LS1028A
1347 Layerscape Architecture processor.
1348
Yuantian Tang92f18ff2019-04-10 16:43:34 +08001349config TARGET_LS1028ARDB
1350 bool "Support ls1028ardb"
1351 select ARCH_LS1028A
1352 select ARM64
1353 select ARMV8_MULTIENTRY
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001354 select ARCH_SUPPORT_TFABOOT
Yuantian Tang92f18ff2019-04-10 16:43:34 +08001355 help
1356 Support for Freescale LS1028ARDB platform
1357 The LS1028A Development System (RDB) is a high-performance
1358 development platform that supports the QorIQ LS1028A
1359 Layerscape Architecture processor.
1360
Ashish Kumar227b4bc2017-08-31 16:12:54 +05301361config TARGET_LS1088ARDB
1362 bool "Support ls1088ardb"
1363 select ARCH_LS1088A
Michal Simek84f3dec2018-07-23 15:55:13 +02001364 select ARCH_MISC_INIT
Ashish Kumar227b4bc2017-08-31 16:12:54 +05301365 select ARM64
1366 select ARMV8_MULTIENTRY
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001367 select ARCH_SUPPORT_TFABOOT
Ashish Kumar227b4bc2017-08-31 16:12:54 +05301368 select BOARD_LATE_INIT
Ashish Kumar5676ceb2017-11-06 13:18:43 +05301369 select SUPPORT_SPL
Rajesh Bhagatba2414f2019-02-01 05:22:01 +00001370 select FSL_DDR_INTERACTIVE if !SD_BOOT
Ashish Kumar227b4bc2017-08-31 16:12:54 +05301371 help
1372 Support for NXP LS1088ARDB platform.
1373 The LS1088A Reference design board (RDB) is a high-performance
1374 development platform that supports the QorIQ LS1088A
1375 Layerscape Architecture processor.
1376
Wang Huanf0ce7d62014-09-05 13:52:44 +08001377config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +08001378 bool "Support ls1021aqds"
Michal Simek84f3dec2018-07-23 15:55:13 +02001379 select ARCH_LS1021A
1380 select ARCH_SUPPORT_PSCI
1381 select BOARD_EARLY_INIT_F
Tom Rini22d567e2017-01-22 19:43:11 -05001382 select BOARD_LATE_INIT
Lokesh Vutla81b1a672018-04-26 18:21:26 +05301383 select CPU_V7A
Hongbo Zhange80fccf2016-09-21 18:31:04 +08001384 select CPU_V7_HAS_NONSEC
1385 select CPU_V7_HAS_VIRT
York Sun4de7e932016-09-26 08:09:29 -07001386 select LS1_DEEP_SLEEP
Michal Simek84f3dec2018-07-23 15:55:13 +02001387 select SUPPORT_SPL
York Sund297d392016-12-28 08:43:40 -08001388 select SYS_FSL_DDR
Rajesh Bhagatba2414f2019-02-01 05:22:01 +00001389 select FSL_DDR_INTERACTIVE
Simon Glass0e5faf02017-06-14 21:28:21 -06001390 imply SCSI
Masahiro Yamadad5415b22016-08-30 16:22:22 +09001391
Wang Huanddf89f92014-09-05 13:52:45 +08001392config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +08001393 bool "Support ls1021atwr"
Michal Simek84f3dec2018-07-23 15:55:13 +02001394 select ARCH_LS1021A
1395 select ARCH_SUPPORT_PSCI
1396 select BOARD_EARLY_INIT_F
Tom Rini22d567e2017-01-22 19:43:11 -05001397 select BOARD_LATE_INIT
Lokesh Vutla81b1a672018-04-26 18:21:26 +05301398 select CPU_V7A
Hongbo Zhange80fccf2016-09-21 18:31:04 +08001399 select CPU_V7_HAS_NONSEC
1400 select CPU_V7_HAS_VIRT
York Sun4de7e932016-09-26 08:09:29 -07001401 select LS1_DEEP_SLEEP
Michal Simek84f3dec2018-07-23 15:55:13 +02001402 select SUPPORT_SPL
Simon Glass0e5faf02017-06-14 21:28:21 -06001403 imply SCSI
Wang Huanddf89f92014-09-05 13:52:45 +08001404
Jianchao Wange5332ba2019-07-19 00:30:01 +03001405config TARGET_LS1021ATSN
1406 bool "Support ls1021atsn"
1407 select ARCH_LS1021A
1408 select ARCH_SUPPORT_PSCI
1409 select BOARD_EARLY_INIT_F
1410 select BOARD_LATE_INIT
1411 select CPU_V7A
1412 select CPU_V7_HAS_NONSEC
1413 select CPU_V7_HAS_VIRT
1414 select LS1_DEEP_SLEEP
1415 select SUPPORT_SPL
1416 imply SCSI
1417
Feng Li39e112d2016-11-03 14:15:17 +08001418config TARGET_LS1021AIOT
1419 bool "Support ls1021aiot"
Michal Simek84f3dec2018-07-23 15:55:13 +02001420 select ARCH_LS1021A
1421 select ARCH_SUPPORT_PSCI
Tom Rini22d567e2017-01-22 19:43:11 -05001422 select BOARD_LATE_INIT
Lokesh Vutla81b1a672018-04-26 18:21:26 +05301423 select CPU_V7A
Feng Li39e112d2016-11-03 14:15:17 +08001424 select CPU_V7_HAS_NONSEC
1425 select CPU_V7_HAS_VIRT
1426 select SUPPORT_SPL
Simon Glass0e5faf02017-06-14 21:28:21 -06001427 imply SCSI
Feng Li39e112d2016-11-03 14:15:17 +08001428 help
1429 Support for Freescale LS1021AIOT platform.
1430 The LS1021A Freescale board (IOT) is a high-performance
1431 development platform that supports the QorIQ LS1021A
1432 Layerscape Architecture processor.
1433
Shaohui Xiedd335672015-11-11 17:58:37 +08001434config TARGET_LS1043AQDS
1435 bool "Support ls1043aqds"
York Sun149eb332016-09-26 08:09:27 -07001436 select ARCH_LS1043A
Shaohui Xiedd335672015-11-11 17:58:37 +08001437 select ARM64
1438 select ARMV8_MULTIENTRY
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001439 select ARCH_SUPPORT_TFABOOT
Michal Simek84f3dec2018-07-23 15:55:13 +02001440 select BOARD_EARLY_INIT_F
Tom Rini22d567e2017-01-22 19:43:11 -05001441 select BOARD_LATE_INIT
Shaohui Xiedd335672015-11-11 17:58:37 +08001442 select SUPPORT_SPL
Rajesh Bhagatba2414f2019-02-01 05:22:01 +00001443 select FSL_DDR_INTERACTIVE if !SPL
Simon Glass0e5faf02017-06-14 21:28:21 -06001444 imply SCSI
Peng Maa550eb62019-01-30 19:11:49 +08001445 imply SCSI_AHCI
Shaohui Xiedd335672015-11-11 17:58:37 +08001446 help
1447 Support for Freescale LS1043AQDS platform.
1448
Mingkai Hueee86ff2015-10-26 19:47:52 +08001449config TARGET_LS1043ARDB
1450 bool "Support ls1043ardb"
York Sun149eb332016-09-26 08:09:27 -07001451 select ARCH_LS1043A
Mingkai Hueee86ff2015-10-26 19:47:52 +08001452 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +08001453 select ARMV8_MULTIENTRY
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001454 select ARCH_SUPPORT_TFABOOT
Michal Simek84f3dec2018-07-23 15:55:13 +02001455 select BOARD_EARLY_INIT_F
Tom Rini22d567e2017-01-22 19:43:11 -05001456 select BOARD_LATE_INIT
Gong Qianyu8168a0f2015-10-26 19:47:53 +08001457 select SUPPORT_SPL
Mingkai Hueee86ff2015-10-26 19:47:52 +08001458 help
1459 Support for Freescale LS1043ARDB platform.
1460
Shaohui Xie085ac1c2016-09-07 17:56:14 +08001461config TARGET_LS1046AQDS
1462 bool "Support ls1046aqds"
York Sunbad49842016-09-26 08:09:24 -07001463 select ARCH_LS1046A
Shaohui Xie085ac1c2016-09-07 17:56:14 +08001464 select ARM64
1465 select ARMV8_MULTIENTRY
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001466 select ARCH_SUPPORT_TFABOOT
Michal Simek84f3dec2018-07-23 15:55:13 +02001467 select BOARD_EARLY_INIT_F
Tom Rini22d567e2017-01-22 19:43:11 -05001468 select BOARD_LATE_INIT
Shaohui Xie085ac1c2016-09-07 17:56:14 +08001469 select DM_SPI_FLASH if DM_SPI
Michal Simek84f3dec2018-07-23 15:55:13 +02001470 select SUPPORT_SPL
Rajesh Bhagatba2414f2019-02-01 05:22:01 +00001471 select FSL_DDR_BIST if !SPL
1472 select FSL_DDR_INTERACTIVE if !SPL
1473 select FSL_DDR_INTERACTIVE if !SPL
Simon Glass0e5faf02017-06-14 21:28:21 -06001474 imply SCSI
Shaohui Xie085ac1c2016-09-07 17:56:14 +08001475 help
1476 Support for Freescale LS1046AQDS platform.
1477 The LS1046A Development System (QDS) is a high-performance
1478 development platform that supports the QorIQ LS1046A
1479 Layerscape Architecture processor.
1480
Mingkai Hud2396512016-09-07 18:47:28 +08001481config TARGET_LS1046ARDB
1482 bool "Support ls1046ardb"
York Sunbad49842016-09-26 08:09:24 -07001483 select ARCH_LS1046A
Mingkai Hud2396512016-09-07 18:47:28 +08001484 select ARM64
1485 select ARMV8_MULTIENTRY
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001486 select ARCH_SUPPORT_TFABOOT
Michal Simek84f3dec2018-07-23 15:55:13 +02001487 select BOARD_EARLY_INIT_F
Tom Rini22d567e2017-01-22 19:43:11 -05001488 select BOARD_LATE_INIT
Mingkai Hud2396512016-09-07 18:47:28 +08001489 select DM_SPI_FLASH if DM_SPI
Hou Zhiqiang67b6d0a2016-12-09 16:09:01 +08001490 select POWER_MC34VR500
Michal Simek84f3dec2018-07-23 15:55:13 +02001491 select SUPPORT_SPL
Rajesh Bhagatba2414f2019-02-01 05:22:01 +00001492 select FSL_DDR_BIST
1493 select FSL_DDR_INTERACTIVE if !SPL
Simon Glass0e5faf02017-06-14 21:28:21 -06001494 imply SCSI
Mingkai Hud2396512016-09-07 18:47:28 +08001495 help
1496 Support for Freescale LS1046ARDB platform.
1497 The LS1046A Reference Design Board (RDB) is a high-performance
1498 development platform that supports the QorIQ LS1046A
1499 Layerscape Architecture processor.
1500
Vabhav Sharma51641912019-06-06 12:35:28 +00001501config TARGET_LS1046AFRWY
1502 bool "Support ls1046afrwy"
1503 select ARCH_LS1046A
1504 select ARM64
1505 select ARMV8_MULTIENTRY
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001506 select ARCH_SUPPORT_TFABOOT
Vabhav Sharma51641912019-06-06 12:35:28 +00001507 select BOARD_EARLY_INIT_F
1508 select BOARD_LATE_INIT
1509 select DM_SPI_FLASH if DM_SPI
1510 imply SCSI
1511 help
1512 Support for Freescale LS1046AFRWY platform.
1513 The LS1046A Freeway Board (FRWY) is a high-performance
1514 development platform that supports the QorIQ LS1046A
1515 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001516
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001517config TARGET_COLIBRI_PXA270
1518 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +01001519 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001520
Masahiro Yamada82069432014-10-03 19:21:07 +09001521config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +09001522 bool "Socionext UniPhier SoCs"
Tom Rini22d567e2017-01-22 19:43:11 -05001523 select BOARD_LATE_INIT
Masahiro Yamada85eb8262015-03-31 12:47:54 +09001524 select DM
Masahiro Yamada5f128922016-02-16 17:03:50 +09001525 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +09001526 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +09001527 select DM_MMC
Masahiro Yamada2aa4b5b2016-10-08 13:25:31 +09001528 select DM_RESET
Masahiro Yamada694adf12016-09-14 01:05:59 +09001529 select DM_SERIAL
Masahiro Yamada5021b8a2016-09-14 01:06:00 +09001530 select DM_USB
Masahiro Yamadae0a6fa82018-07-19 16:28:25 +09001531 select OF_BOARD_SETUP
Masahiro Yamada694adf12016-09-14 01:05:59 +09001532 select OF_CONTROL
1533 select OF_LIBFDT
Masahiro Yamada0c977252016-09-17 03:33:01 +09001534 select PINCTRL
Ley Foon Tan48fcc4a2017-05-03 17:13:32 +08001535 select SPL_BOARD_INIT if SPL
Masahiro Yamadadabee242017-01-21 18:05:22 +09001536 select SPL_DM if SPL
1537 select SPL_LIBCOMMON_SUPPORT if SPL
1538 select SPL_LIBGENERIC_SUPPORT if SPL
1539 select SPL_OF_CONTROL if SPL
1540 select SPL_PINCTRL if SPL
Masahiro Yamada694adf12016-09-14 01:05:59 +09001541 select SUPPORT_SPL
Michal Simek2e7c8192018-07-23 15:55:14 +02001542 imply CMD_DM
Masahiro Yamada577242b2018-07-20 21:47:18 +09001543 imply DISTRO_DEFAULTS
Tom Rinid8532af2017-06-02 11:03:50 -04001544 imply FAT_WRITE
Masahiro Yamada563ee4c2015-05-29 17:30:01 +09001545 help
1546 Support for UniPhier SoC family developed by Socionext Inc.
1547 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada82069432014-10-03 19:21:07 +09001548
Vikas Manocha95c89192016-01-15 17:49:06 -08001549config STM32
Patrick Delaunay85b53972018-03-12 10:46:10 +01001550 bool "Support STMicroelectronics STM32 MCU with cortex M"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +01001551 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +01001552 select DM
1553 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +02001554 imply CMD_DM
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +01001555
Patrice Chotard5b428242017-02-21 13:37:04 +01001556config ARCH_STI
1557 bool "Support STMicrolectronics SoCs"
Michal Simek84f3dec2018-07-23 15:55:13 +02001558 select BLK
Lokesh Vutla81b1a672018-04-26 18:21:26 +05301559 select CPU_V7A
Patrice Chotard42d742b2017-02-21 13:37:07 +01001560 select DM
Patrice Chotard2eea7d82017-02-21 13:37:09 +01001561 select DM_MMC
Patrice Chotard1235aa02017-03-22 10:54:03 +01001562 select DM_RESET
Michal Simek84f3dec2018-07-23 15:55:13 +02001563 select DM_SERIAL
Michal Simek2e7c8192018-07-23 15:55:14 +02001564 imply CMD_DM
Patrice Chotard5b428242017-02-21 13:37:04 +01001565 help
1566 Support for STMicroelectronics STiH407/10 SoC family.
1567 This SoC is used on Linaro 96Board STiH410-B2260
1568
Patrick Delaunay85b53972018-03-12 10:46:10 +01001569config ARCH_STM32MP
1570 bool "Support STMicroelectronics STM32MP Socs with cortex A"
Patrick Delaunayc5d15652018-03-20 10:54:53 +01001571 select ARCH_MISC_INIT
Patrick Delaunay85b53972018-03-12 10:46:10 +01001572 select BOARD_LATE_INIT
1573 select CLK
1574 select DM
1575 select DM_GPIO
1576 select DM_RESET
1577 select DM_SERIAL
Michal Simek84f3dec2018-07-23 15:55:13 +02001578 select MISC
Patrick Delaunay85b53972018-03-12 10:46:10 +01001579 select OF_CONTROL
1580 select OF_LIBFDT
Patrick Delaunaya6f03912019-07-05 17:20:14 +02001581 select OF_SYSTEM_SETUP
Patrick Delaunay85b53972018-03-12 10:46:10 +01001582 select PINCTRL
1583 select REGMAP
1584 select SUPPORT_SPL
1585 select SYSCON
Patrick Delaunay32ddd262018-03-20 14:15:06 +01001586 select SYSRESET
Patrick Delaunay85b53972018-03-12 10:46:10 +01001587 select SYS_THUMB_BUILD
Kever Yang525ea472019-04-02 20:41:25 +08001588 imply SPL_SYSRESET
Michal Simek2e7c8192018-07-23 15:55:14 +02001589 imply CMD_DM
Patrick Delaunay4e8dbe22019-04-12 11:55:46 +02001590 imply CMD_POWEROFF
Patrick Delaunay03552502019-07-30 19:16:28 +02001591 imply OF_LIBFDT_OVERLAY
Patrick Delaunayd70e3f82019-02-27 17:01:11 +01001592 imply ENV_VARS_UBOOT_RUNTIME_CONFIG
Patrick Delaunay64e02e92019-04-18 17:32:38 +02001593 imply USE_PREBOOT
Patrick Delaunay85b53972018-03-12 10:46:10 +01001594 help
1595 Support for STM32MP SoC family developed by STMicroelectronics,
1596 MPUs based on ARM cortex A core
Patrick Delaunay5d061412019-02-12 11:44:39 +01001597 U-BOOT is running in DDR, loaded by the First Stage BootLoader (FSBL).
1598 FSBL can be TF-A: Trusted Firmware for Cortex A, for trusted boot
1599 chain.
1600 SPL is the unsecure FSBL for the basic boot chain.
Patrick Delaunay85b53972018-03-12 10:46:10 +01001601
Simon Glass2cffe662015-08-30 16:55:38 -06001602config ARCH_ROCKCHIP
1603 bool "Support Rockchip SoCs"
Simon Glass94106272016-06-12 23:30:14 -06001604 select BLK
Simon Glass2cffe662015-08-30 16:55:38 -06001605 select DM
Simon Glass94106272016-06-12 23:30:14 -06001606 select DM_GPIO
1607 select DM_I2C
1608 select DM_MMC
Michal Simek84f3dec2018-07-23 15:55:13 +02001609 select DM_PWM
1610 select DM_REGULATOR
Simon Glass94106272016-06-12 23:30:14 -06001611 select DM_SERIAL
1612 select DM_SPI
1613 select DM_SPI_FLASH
MengDongyangf0bf5de2016-08-24 12:02:18 +08001614 select DM_USB if USB
Philipp Tomsichb6f395c2017-10-10 16:21:03 +02001615 select ENABLE_ARM_SOC_BOOT0_HOOK
Michal Simek84f3dec2018-07-23 15:55:13 +02001616 select OF_CONTROL
Adam Ford4e96ff82018-04-15 13:51:26 -04001617 select SPI
Michal Simek84f3dec2018-07-23 15:55:13 +02001618 select SPL_DM if SPL
Michal Simek84f3dec2018-07-23 15:55:13 +02001619 select SYS_MALLOC_F
1620 select SYS_THUMB_BUILD if !ARM64
1621 imply ADC
Michal Simek2e7c8192018-07-23 15:55:14 +02001622 imply CMD_DM
Kever Yang2563ee82019-03-29 09:08:58 +08001623 imply DEBUG_UART_BOARD_INIT
Masahiro Yamada9afc6c52018-04-25 18:47:52 +09001624 imply DISTRO_DEFAULTS
Tom Rinid8532af2017-06-02 11:03:50 -04001625 imply FAT_WRITE
Philipp Tomsich2fa7b7e2017-09-20 13:50:13 +02001626 imply SARADC_ROCKCHIP
Michal Simek84f3dec2018-07-23 15:55:13 +02001627 imply SPL_SYSRESET
Thomas Hebb1bda4322019-11-15 08:48:57 -08001628 imply SPL_SYS_MALLOC_SIMPLE
Kever Yang4a3448c2018-04-19 11:37:09 +08001629 imply SYS_NS16550
Michal Simek84f3dec2018-07-23 15:55:13 +02001630 imply TPL_SYSRESET
1631 imply USB_FUNCTION_FASTBOOT
Simon Glass2cffe662015-08-30 16:55:38 -06001632
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001633config TARGET_THUNDERX_88XX
1634 bool "Support ThunderX 88xx"
Marek Vasut09ab8ad2016-06-01 02:33:53 +02001635 select ARM64
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001636 select OF_CONTROL
Alexander Graf633ef892018-01-25 12:05:52 +01001637 select PL01X_SERIAL
Michal Simek84f3dec2018-07-23 15:55:13 +02001638 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001639
maxims@google.comf57bd002017-01-18 13:44:55 -08001640config ARCH_ASPEED
1641 bool "Support Aspeed SoCs"
maxims@google.comf57bd002017-01-18 13:44:55 -08001642 select DM
Michal Simek84f3dec2018-07-23 15:55:13 +02001643 select OF_CONTROL
Michal Simek2e7c8192018-07-23 15:55:14 +02001644 imply CMD_DM
maxims@google.comf57bd002017-01-18 13:44:55 -08001645
liu hao1c4a2c42019-10-31 07:51:08 +00001646config TARGET_DURIAN
1647 bool "Support Phytium Durian Platform"
1648 select ARM64
1649 help
1650 Support for durian platform.
1651 It has 2GB Sdram, uart and pcie.
1652
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001653endchoice
1654
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001655config ARCH_SUPPORT_TFABOOT
1656 bool
1657
1658config TFABOOT
1659 bool "Support for booting from TF-A"
1660 depends on ARCH_SUPPORT_TFABOOT
1661 default n
1662 help
1663 Enabling this will make a U-Boot binary that is capable of being
Robert P. J. Day3a8d4e12019-12-25 06:34:07 -05001664 booted via TF-A (Trusted Firmware for Cortex-A).
AKASHI Takahirofb83f752019-07-03 10:44:39 +09001665
Andrew F. Davisd3fe9172018-02-14 11:53:37 -06001666config TI_SECURE_DEVICE
1667 bool "HS Device Type Support"
Andrew F. Davis2ed41072019-04-12 12:54:45 -04001668 depends on ARCH_KEYSTONE || ARCH_OMAP2PLUS || ARCH_K3
Andrew F. Davisd3fe9172018-02-14 11:53:37 -06001669 help
1670 If a high secure (HS) device type is being used, this config
1671 must be set. This option impacts various aspects of the
1672 build system (to create signed boot images that can be
1673 authenticated) and the code. See the doc/README.ti-secure
1674 file for further details.
1675
Tom Rinib2f88a32019-03-19 07:14:37 -04001676if AM43XX || AM33XX || OMAP54XX || ARCH_KEYSTONE
1677config ISW_ENTRY_ADDR
1678 hex "Address in memory or XIP address of bootloader entry point"
1679 default 0x402F4000 if AM43XX
1680 default 0x402F0400 if AM33XX
1681 default 0x40301350 if OMAP54XX
1682 help
1683 After any reset, the boot ROM searches the boot media for a valid
1684 boot image. For non-XIP devices, the ROM then copies the image into
1685 internal memory. For all boot modes, after the ROM processes the
1686 boot image it eventually computes the entry point address depending
1687 on the device type (secure/non-secure), boot media (xip/non-xip) and
1688 image headers.
1689endif
1690
maxims@google.comf57bd002017-01-18 13:44:55 -08001691source "arch/arm/mach-aspeed/Kconfig"
1692
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +09001693source "arch/arm/mach-at91/Kconfig"
1694
Masahiro Yamadaed22cc72015-03-19 19:42:56 +09001695source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +09001696
Thomas Fitzsimmons919646d2018-06-08 17:59:45 -04001697source "arch/arm/mach-bcmstb/Kconfig"
1698
Masahiro Yamadaed22cc72015-03-19 19:42:56 +09001699source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -07001700
Thomas Abraham74f84862015-08-03 17:58:00 +05301701source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +09001702
Masahiro Yamada95ec48b2015-02-20 17:04:08 +09001703source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +09001704
Masahiro Yamadacad44162015-04-21 21:59:36 +09001705source "arch/arm/mach-integrator/Kconfig"
1706
Lokesh Vutla9bdec002018-08-27 15:57:08 +05301707source "arch/arm/mach-k3/Kconfig"
1708
Masahiro Yamadaf058b792015-02-20 17:04:11 +09001709source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +09001710
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +09001711source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +09001712
Vladimir Zapolskiy31d0e962018-09-17 21:43:03 +03001713source "arch/arm/cpu/arm926ejs/lpc32xx/Kconfig"
1714
Stefan Roese383e0c12015-08-25 13:18:38 +02001715source "arch/arm/mach-mvebu/Kconfig"
1716
York Sun149eb332016-09-26 08:09:27 -07001717source "arch/arm/cpu/armv7/ls102xa/Kconfig"
1718
Fabio Estevam52b2f452017-11-03 13:40:08 -02001719source "arch/arm/mach-imx/mx2/Kconfig"
1720
Magnus Liljac74f70f2018-05-11 14:06:54 +02001721source "arch/arm/mach-imx/mx3/Kconfig"
1722
Peng Fan66294882018-01-10 13:20:19 +08001723source "arch/arm/mach-imx/mx5/Kconfig"
1724
1725source "arch/arm/mach-imx/mx6/Kconfig"
Peng Fan2c7b1702017-02-22 16:21:39 +08001726
Stefano Babic33731bc2017-06-29 10:16:06 +02001727source "arch/arm/mach-imx/mx7/Kconfig"
Adrian Alonso98810772015-09-03 11:49:28 -05001728
Peng Fan66294882018-01-10 13:20:19 +08001729source "arch/arm/mach-imx/mx7ulp/Kconfig"
Boris BREZILLON51e82662015-03-04 13:13:03 +01001730
Peng Fan6bae1c72018-10-18 14:28:08 +02001731source "arch/arm/mach-imx/imx8/Kconfig"
1732
Peng Fan39945c12018-11-20 10:19:25 +00001733source "arch/arm/mach-imx/imx8m/Kconfig"
Andrej Rosano1ac4bca2015-04-08 18:56:29 +02001734
Stefan Agner081ea1f2018-02-06 09:44:34 +01001735source "arch/arm/mach-imx/mxs/Kconfig"
1736
Tom Rini28eec372016-11-07 21:34:54 -05001737source "arch/arm/mach-omap2/Kconfig"
Madan Srinivaseba13cd2016-05-19 19:10:43 -05001738
York Sunbad49842016-09-26 08:09:24 -07001739source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
1740
Masahiro Yamada22537642015-02-20 17:04:09 +09001741source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +09001742
Manivannan Sadhasivam474a5df2018-06-14 23:38:31 +05301743source "arch/arm/mach-owl/Kconfig"
1744
Nobuhiro Iwamatsuc91ef682015-10-09 16:40:09 +09001745source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadac9c54e22014-08-31 07:10:57 +09001746
Beniamino Galvanid1037e42016-05-08 08:30:16 +02001747source "arch/arm/mach-meson/Kconfig"
1748
developerf4a079c2018-11-15 10:07:52 +08001749source "arch/arm/mach-mediatek/Kconfig"
1750
Tuomas Tynkkynen28cac522017-09-19 23:18:07 +03001751source "arch/arm/mach-qemu/Kconfig"
1752
Simon Glass2cffe662015-08-30 16:55:38 -06001753source "arch/arm/mach-rockchip/Kconfig"
1754
Minkyu Kang56b820a2015-11-20 15:24:57 +09001755source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -06001756
Mateusz Kulikowski2507d822016-03-31 23:12:32 +02001757source "arch/arm/mach-snapdragon/Kconfig"
1758
Masahiro Yamada144a3e02015-04-21 20:38:20 +09001759source "arch/arm/mach-socfpga/Kconfig"
1760
Patrice Chotard5b428242017-02-21 13:37:04 +01001761source "arch/arm/mach-sti/Kconfig"
1762
Vikas Manocha95c89192016-01-15 17:49:06 -08001763source "arch/arm/mach-stm32/Kconfig"
1764
Patrick Delaunay85b53972018-03-12 10:46:10 +01001765source "arch/arm/mach-stm32mp/Kconfig"
1766
Masahiro Yamada4976a222017-04-28 19:42:18 +09001767source "arch/arm/mach-sunxi/Kconfig"
1768
Masahiro Yamadaed1632a2015-02-20 17:04:04 +09001769source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +09001770
Masahiro Yamadaf8563982015-02-27 02:26:42 +09001771source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +09001772
Stefan Agnerd53c0a42017-03-13 18:41:36 -07001773source "arch/arm/cpu/armv7/vf610/Kconfig"
1774
Masahiro Yamada43246cc2015-03-16 16:43:22 +09001775source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +09001776
Michal Simek7f60b232019-01-17 08:22:43 +01001777source "arch/arm/mach-zynqmp/Kconfig"
1778
Michal Simek4b066a12018-08-22 14:55:27 +02001779source "arch/arm/mach-versal/Kconfig"
1780
Michal Simekb513bcd2018-04-12 17:39:46 +02001781source "arch/arm/mach-zynqmp-r5/Kconfig"
1782
Hans de Goede85437352014-11-14 09:34:30 +01001783source "arch/arm/cpu/armv7/Kconfig"
1784
Linus Walleij74771392015-03-09 10:53:21 +01001785source "arch/arm/cpu/armv8/Kconfig"
1786
Stefano Babic33731bc2017-06-29 10:16:06 +02001787source "arch/arm/mach-imx/Kconfig"
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +01001788
Heiko Schocherf1163962016-06-07 08:31:25 +02001789source "board/bosch/shc/Kconfig"
Sjoerd Simonsf93564c2019-02-25 15:33:00 +00001790source "board/bosch/guardian/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001791source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001792source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001793source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001794source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001795source "board/armltd/vexpress/Kconfig"
1796source "board/armltd/vexpress64/Kconfig"
Steve Rae45f2c702016-06-02 15:10:56 -07001797source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001798source "board/broadcom/bcm28155_ap/Kconfig"
Philippe Reynes2d299182019-01-31 18:57:36 +01001799source "board/broadcom/bcm963158/Kconfig"
Philippe Reynes697f15e2018-10-11 18:31:58 +02001800source "board/broadcom/bcm968580xref/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -08001801source "board/broadcom/bcmcygnus/Kconfig"
1802source "board/broadcom/bcmnsp/Kconfig"
Jon Masond59b5862017-03-17 12:12:14 -04001803source "board/broadcom/bcmns2/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001804source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001805source "board/cirrus/edb93xx/Kconfig"
Felix Brack1ba8c9e2018-01-23 18:27:22 +01001806source "board/eets/pdu001/Kconfig"
Bin Meng53290422018-10-15 02:21:18 -07001807source "board/emulation/qemu-arm/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301808source "board/freescale/ls2080a/Kconfig"
1809source "board/freescale/ls2080aqds/Kconfig"
1810source "board/freescale/ls2080ardb/Kconfig"
Ashish Kumar227b4bc2017-08-31 16:12:54 +05301811source "board/freescale/ls1088a/Kconfig"
Yuantian Tang92f18ff2019-04-10 16:43:34 +08001812source "board/freescale/ls1028a/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +08001813source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +08001814source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +08001815source "board/freescale/ls1021atwr/Kconfig"
Jianchao Wange5332ba2019-07-19 00:30:01 +03001816source "board/freescale/ls1021atsn/Kconfig"
Feng Li39e112d2016-11-03 14:15:17 +08001817source "board/freescale/ls1021aiot/Kconfig"
Shaohui Xie085ac1c2016-09-07 17:56:14 +08001818source "board/freescale/ls1046aqds/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +08001819source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hud2396512016-09-07 18:47:28 +08001820source "board/freescale/ls1046ardb/Kconfig"
Vabhav Sharma51641912019-06-06 12:35:28 +00001821source "board/freescale/ls1046afrwy/Kconfig"
Prabhakar Kushwaha55432502016-06-03 18:41:34 +05301822source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +05301823source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +05301824source "board/freescale/ls1012afrdm/Kconfig"
Priyanka Jainfd45ca02018-11-28 13:04:27 +00001825source "board/freescale/lx2160a/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001826source "board/freescale/mx35pdk/Kconfig"
Eddy Petrișor5178dc12016-06-05 03:43:00 +03001827source "board/freescale/s32v234evb/Kconfig"
Marcin Niestroj20315d22017-01-25 09:53:08 +01001828source "board/grinn/chiliboard/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001829source "board/gumstix/pepper/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -04001830source "board/hisilicon/hikey/Kconfig"
Manivannan Sadhasivamcf33f922019-08-02 20:40:09 +05301831source "board/hisilicon/hikey960/Kconfig"
Jorge Ramirez-Ortizf5b38422017-06-26 15:52:49 +02001832source "board/hisilicon/poplar/Kconfig"
Ladislav Michl10bdc712017-04-01 17:17:16 +02001833source "board/isee/igep003x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001834source "board/phytec/pcm051/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001835source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001836source "board/spear/spear300/Kconfig"
1837source "board/spear/spear310/Kconfig"
1838source "board/spear/spear320/Kconfig"
1839source "board/spear/spear600/Kconfig"
1840source "board/spear/x600/Kconfig"
Vikas Manocha33913c52014-11-18 10:42:22 -08001841source "board/st/stv0991/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +02001842source "board/tcl/sl50/Kconfig"
Manivannan Sadhasivam604ecc82018-06-14 23:38:32 +05301843source "board/ucRobotics/bubblegum_96/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -08001844source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001845source "board/toradex/colibri_pxa270/Kconfig"
Parthiban Nallathambi5e9147d2019-04-18 00:04:09 +02001846source "board/variscite/dart_6ul/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +02001847source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001848source "board/woodburn/Kconfig"
Luca Ceresolib0172c32018-06-22 12:40:16 +02001849source "board/xilinx/Kconfig"
Siva Durga Prasad Paladugue4603522018-06-26 15:02:19 +05301850source "board/xilinx/zynq/Kconfig"
Siva Durga Prasad Paladugub1acb652018-02-28 13:26:53 +05301851source "board/xilinx/zynqmp/Kconfig"
liu hao1c4a2c42019-10-31 07:51:08 +00001852source "board/phytium/durian/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001853
Masahiro Yamadadf00e522014-09-01 11:06:34 +09001854source "arch/arm/Kconfig.debug"
1855
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001856endmenu
Philipp Tomsich2d6a0cc2017-08-03 23:23:55 +02001857
1858config SPL_LDSCRIPT
Michal Simekf751ff52018-07-23 15:55:12 +02001859 default "arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds" if (ARCH_MX23 || ARCH_MX28) && !SPL_FRAMEWORK
1860 default "arch/arm/cpu/arm1136/u-boot-spl.lds" if CPU_ARM1136
Philipp Tomsich2d6a0cc2017-08-03 23:23:55 +02001861 default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64
1862
1863