fsl_ddr: Move DDR config options to driver Kconfig
[platform/kernel/u-boot.git] / arch / arm / Kconfig
1 menu "ARM architecture"
2         depends on ARM
3
4 config SYS_ARCH
5         default "arm"
6
7 config ARM64
8         bool
9         select PHYS_64BIT
10         select SYS_CACHE_SHIFT_6
11
12 config DMA_ADDR_T_64BIT
13         bool
14         default y if ARM64
15
16 config HAS_VBAR
17         bool
18
19 config HAS_THUMB2
20         bool
21
22 config CPU_ARM720T
23         bool
24         select SYS_CACHE_SHIFT_5
25
26 config CPU_ARM920T
27         bool
28         select SYS_CACHE_SHIFT_5
29
30 config CPU_ARM926EJS
31         bool
32         select SYS_CACHE_SHIFT_5
33
34 config CPU_ARM946ES
35         bool
36         select SYS_CACHE_SHIFT_5
37
38 config CPU_ARM1136
39         bool
40         select SYS_CACHE_SHIFT_5
41
42 config CPU_ARM1176
43         bool
44         select HAS_VBAR
45         select SYS_CACHE_SHIFT_5
46
47 config CPU_V7
48         bool
49         select HAS_VBAR
50         select HAS_THUMB2
51         select SYS_CACHE_SHIFT_6
52
53 config CPU_V7M
54         bool
55         select HAS_THUMB2
56         select SYS_CACHE_SHIFT_5
57
58 config CPU_PXA
59         bool
60         select SYS_CACHE_SHIFT_5
61
62 config CPU_SA1100
63         bool
64         select SYS_CACHE_SHIFT_5
65
66 config SYS_CPU
67         default "arm720t" if CPU_ARM720T
68         default "arm920t" if CPU_ARM920T
69         default "arm926ejs" if CPU_ARM926EJS
70         default "arm946es" if CPU_ARM946ES
71         default "arm1136" if CPU_ARM1136
72         default "arm1176" if CPU_ARM1176
73         default "armv7" if CPU_V7
74         default "armv7m" if CPU_V7M
75         default "pxa" if CPU_PXA
76         default "sa1100" if CPU_SA1100
77         default "armv8" if ARM64
78
79 config SYS_ARM_ARCH
80         int
81         default 4 if CPU_ARM720T
82         default 4 if CPU_ARM920T
83         default 5 if CPU_ARM926EJS
84         default 5 if CPU_ARM946ES
85         default 6 if CPU_ARM1136
86         default 6 if CPU_ARM1176
87         default 7 if CPU_V7
88         default 7 if CPU_V7M
89         default 5 if CPU_PXA
90         default 4 if CPU_SA1100
91         default 8 if ARM64
92
93 config SYS_CACHE_SHIFT_5
94         bool
95
96 config SYS_CACHE_SHIFT_6
97         bool
98
99 config SYS_CACHE_SHIFT_7
100         bool
101
102 config SYS_CACHELINE_SIZE
103         int
104         default 128 if SYS_CACHE_SHIFT_7
105         default 64 if SYS_CACHE_SHIFT_6
106         default 32 if SYS_CACHE_SHIFT_5
107
108 config SEMIHOSTING
109         bool "support boot from semihosting"
110         help
111           In emulated environments, semihosting is a way for
112           the hosted environment to call out to the emulator to
113           retrieve files from the host machine.
114
115 config SYS_L2CACHE_OFF
116         bool "L2cache off"
117         help
118           If SoC does not support L2CACHE or one do not want to enable
119           L2CACHE, choose this option.
120
121 config ENABLE_ARM_SOC_BOOT0_HOOK
122         bool "prepare BOOT0 header"
123         help
124           If the SoC's BOOT0 requires a header area filled with (magic)
125           values, then choose this option, and create a define called
126           ARM_SOC_BOOT0_HOOK which contains the required assembler
127           preprocessor code.
128
129 config USE_ARCH_MEMCPY
130         bool "Use an assembly optimized implementation of memcpy"
131         default y if CPU_V7
132         depends on !ARM64
133         help
134           Enable the generation of an optimized version of memcpy.
135           Such implementation may be faster under some conditions
136           but may increase the binary size.
137
138 config USE_ARCH_MEMSET
139         bool "Use an assembly optimized implementation of memset"
140         default y if CPU_V7
141         depends on !ARM64
142         help
143           Enable the generation of an optimized version of memset.
144           Such implementation may be faster under some conditions
145           but may increase the binary size.
146
147 config ARCH_OMAP2
148         bool
149         select CPU_V7
150         select SUPPORT_SPL
151
152 config ARM64_SUPPORT_AARCH32
153         bool "ARM64 system support AArch32 execution state"
154         default y if ARM64 && !TARGET_THUNDERX_88XX
155         help
156           This ARM64 system supports AArch32 execution state.
157
158 choice
159         prompt "Target select"
160         default TARGET_HIKEY
161
162 config ARCH_AT91
163         bool "Atmel AT91"
164
165 config TARGET_EDB93XX
166         bool "Support edb93xx"
167         select CPU_ARM920T
168
169 config TARGET_ASPENITE
170         bool "Support aspenite"
171         select CPU_ARM926EJS
172
173 config TARGET_GPLUGD
174         bool "Support gplugd"
175         select CPU_ARM926EJS
176
177 config ARCH_DAVINCI
178         bool "TI DaVinci"
179         select CPU_ARM926EJS
180         help
181           Support for TI's DaVinci platform.
182
183 config KIRKWOOD
184         bool "Marvell Kirkwood"
185         select CPU_ARM926EJS
186
187 config ARCH_MVEBU
188         bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
189         select OF_CONTROL
190         select OF_SEPARATE
191         select DM
192         select DM_ETH
193         select DM_SERIAL
194         select DM_SPI
195         select DM_SPI_FLASH
196
197 config TARGET_DEVKIT3250
198         bool "Support devkit3250"
199         select CPU_ARM926EJS
200         select SUPPORT_SPL
201
202 config TARGET_WORK_92105
203         bool "Support work_92105"
204         select CPU_ARM926EJS
205         select SUPPORT_SPL
206
207 config TARGET_MX25PDK
208         bool "Support mx25pdk"
209         select CPU_ARM926EJS
210
211 config TARGET_ZMX25
212         bool "Support zmx25"
213         select CPU_ARM926EJS
214
215 config TARGET_APF27
216         bool "Support apf27"
217         select CPU_ARM926EJS
218         select SUPPORT_SPL
219
220 config TARGET_APX4DEVKIT
221         bool "Support apx4devkit"
222         select CPU_ARM926EJS
223         select SUPPORT_SPL
224
225 config TARGET_XFI3
226         bool "Support xfi3"
227         select CPU_ARM926EJS
228         select SUPPORT_SPL
229
230 config TARGET_M28EVK
231         bool "Support m28evk"
232         select CPU_ARM926EJS
233         select SUPPORT_SPL
234
235 config TARGET_MX23EVK
236         bool "Support mx23evk"
237         select CPU_ARM926EJS
238         select SUPPORT_SPL
239
240 config TARGET_MX28EVK
241         bool "Support mx28evk"
242         select CPU_ARM926EJS
243         select SUPPORT_SPL
244
245 config TARGET_MX23_OLINUXINO
246         bool "Support mx23_olinuxino"
247         select CPU_ARM926EJS
248         select SUPPORT_SPL
249
250 config TARGET_BG0900
251         bool "Support bg0900"
252         select CPU_ARM926EJS
253         select SUPPORT_SPL
254
255 config TARGET_SANSA_FUZE_PLUS
256         bool "Support sansa_fuze_plus"
257         select CPU_ARM926EJS
258         select SUPPORT_SPL
259
260 config TARGET_SC_SPS_1
261         bool "Support sc_sps_1"
262         select CPU_ARM926EJS
263         select SUPPORT_SPL
264
265 config ORION5X
266         bool "Marvell Orion"
267         select CPU_ARM926EJS
268
269 config TARGET_SPEAR300
270         bool "Support spear300"
271         select CPU_ARM926EJS
272
273 config TARGET_SPEAR310
274         bool "Support spear310"
275         select CPU_ARM926EJS
276
277 config TARGET_SPEAR320
278         bool "Support spear320"
279         select CPU_ARM926EJS
280
281 config TARGET_SPEAR600
282         bool "Support spear600"
283         select CPU_ARM926EJS
284
285 config TARGET_STV0991
286         bool "Support stv0991"
287         select CPU_V7
288         select DM
289         select DM_SERIAL
290         select DM_SPI
291         select DM_SPI_FLASH
292         select SPI_FLASH
293
294 config TARGET_X600
295         bool "Support x600"
296         select CPU_ARM926EJS
297         select SUPPORT_SPL
298
299 config TARGET_IMX31_PHYCORE
300         bool "Support imx31_phycore"
301         select CPU_ARM1136
302
303 config TARGET_MX31ADS
304         bool "Support mx31ads"
305         select CPU_ARM1136
306
307 config TARGET_MX31PDK
308         bool "Support mx31pdk"
309         select CPU_ARM1136
310         select SUPPORT_SPL
311
312 config TARGET_WOODBURN
313         bool "Support woodburn"
314         select CPU_ARM1136
315
316 config TARGET_WOODBURN_SD
317         bool "Support woodburn_sd"
318         select CPU_ARM1136
319         select SUPPORT_SPL
320
321 config TARGET_FLEA3
322         bool "Support flea3"
323         select CPU_ARM1136
324
325 config TARGET_MX35PDK
326         bool "Support mx35pdk"
327         select CPU_ARM1136
328
329 config ARCH_BCM283X
330         bool "Broadcom BCM283X family"
331         select DM
332         select DM_SERIAL
333         select DM_GPIO
334         select OF_CONTROL
335
336 config TARGET_VEXPRESS_CA15_TC2
337         bool "Support vexpress_ca15_tc2"
338         select CPU_V7
339         select CPU_V7_HAS_NONSEC
340         select CPU_V7_HAS_VIRT
341
342 config TARGET_VEXPRESS_CA5X2
343         bool "Support vexpress_ca5x2"
344         select CPU_V7
345
346 config TARGET_VEXPRESS_CA9X4
347         bool "Support vexpress_ca9x4"
348         select CPU_V7
349
350 config TARGET_BRXRE1
351         bool "Support BRXRE1"
352         select ARCH_OMAP2
353
354 config TARGET_BRPPT1
355         bool "Support BRPPT1"
356         select ARCH_OMAP2
357
358 config TARGET_DRACO
359         bool "Support draco"
360         select ARCH_OMAP2
361         select DM
362         select DM_SERIAL
363         select DM_GPIO
364
365 config TARGET_THUBAN
366         bool "Support thuban"
367         select ARCH_OMAP2
368         select DM
369         select DM_SERIAL
370         select DM_GPIO
371
372 config TARGET_RASTABAN
373         bool "Support rastaban"
374         select ARCH_OMAP2
375         select DM
376         select DM_SERIAL
377         select DM_GPIO
378
379 config TARGET_ETAMIN
380         bool "Support etamin"
381         select ARCH_OMAP2
382         select DM
383         select DM_SERIAL
384         select DM_GPIO
385
386 config TARGET_PXM2
387         bool "Support pxm2"
388         select ARCH_OMAP2
389         select DM
390         select DM_SERIAL
391         select DM_GPIO
392
393 config TARGET_RUT
394         bool "Support rut"
395         select ARCH_OMAP2
396         select DM
397         select DM_SERIAL
398         select DM_GPIO
399
400 config TARGET_TI814X_EVM
401         bool "Support ti814x_evm"
402         select ARCH_OMAP2
403
404 config TARGET_TI816X_EVM
405         bool "Support ti816x_evm"
406         select ARCH_OMAP2
407
408 config TARGET_BCM23550_W1D
409         bool "Support bcm23550_w1d"
410         select CPU_V7
411
412 config TARGET_BCM28155_AP
413         bool "Support bcm28155_ap"
414         select CPU_V7
415
416 config TARGET_BCMCYGNUS
417         bool "Support bcmcygnus"
418         select CPU_V7
419
420 config TARGET_BCMNSP
421         bool "Support bcmnsp"
422         select CPU_V7
423
424 config ARCH_EXYNOS
425         bool "Samsung EXYNOS"
426         select DM
427         select DM_I2C
428         select DM_SPI_FLASH
429         select DM_SERIAL
430         select DM_SPI
431         select DM_GPIO
432         select DM_KEYBOARD
433
434 config ARCH_S5PC1XX
435         bool "Samsung S5PC1XX"
436         select CPU_V7
437         select DM
438         select DM_SERIAL
439         select DM_GPIO
440         select DM_I2C
441
442 config ARCH_HIGHBANK
443         bool "Calxeda Highbank"
444         select CPU_V7
445
446 config ARCH_INTEGRATOR
447         bool "ARM Ltd. Integrator family"
448         select DM
449         select DM_SERIAL
450
451 config ARCH_KEYSTONE
452         bool "TI Keystone"
453         select CPU_V7
454         select SUPPORT_SPL
455         select CMD_POWEROFF
456
457 config ARCH_MESON
458         bool "Amlogic Meson"
459         help
460           Support for the Meson SoC family developed by Amlogic Inc.,
461           targeted at media players and tablet computers. We currently
462           support the S905 (GXBaby) 64-bit SoC.
463
464 config ARCH_MX7
465         bool "Freescale MX7"
466         select CPU_V7
467         select SYS_FSL_HAS_SEC if SECURE_BOOT
468         select SYS_FSL_SEC_COMPAT_4
469         select SYS_FSL_SEC_LE
470
471 config ARCH_MX6
472         bool "Freescale MX6"
473         select CPU_V7
474         select SYS_FSL_HAS_SEC if SECURE_BOOT
475         select SYS_FSL_SEC_COMPAT_4
476         select SYS_FSL_SEC_LE
477
478 config ARCH_MX5
479         bool "Freescale MX5"
480         select CPU_V7
481
482 config TARGET_M53EVK
483         bool "Support m53evk"
484         select CPU_V7
485         select SUPPORT_SPL
486
487 config TARGET_MX51EVK
488         bool "Support mx51evk"
489         select CPU_V7
490
491 config TARGET_MX53ARD
492         bool "Support mx53ard"
493         select CPU_V7
494
495 config TARGET_MX53EVK
496         bool "Support mx53evk"
497         select CPU_V7
498
499 config TARGET_MX53LOCO
500         bool "Support mx53loco"
501         select CPU_V7
502
503 config TARGET_MX53SMD
504         bool "Support mx53smd"
505         select CPU_V7
506
507 config OMAP34XX
508         bool "OMAP34XX SoC"
509         select ARCH_OMAP2
510         select USE_TINY_PRINTF
511
512 config OMAP44XX
513         bool "OMAP44XX SoC"
514         select ARCH_OMAP2
515         select USE_TINY_PRINTF
516
517 config OMAP54XX
518         bool "OMAP54XX SoC"
519         select ARCH_OMAP2
520
521 config AM43XX
522         bool "AM43XX SoC"
523         select ARCH_OMAP2
524         help
525           Support for AM43xx SOC from Texas Instruments.
526           The AM43xx high performance SOC features a Cortex-A9
527           ARM core, a quad core PRU-ICSS for industrial Ethernet
528           protocols, dual camera support, optional 3D graphics
529           and an optional customer programmable secure boot.
530
531 config AM33XX
532         bool "AM33XX SoC"
533         select ARCH_OMAP2
534         help
535           Support for AM335x SOC from Texas Instruments.
536           The AM335x high performance SOC features a Cortex-A8
537           ARM core, a dual core PRU-ICSS for industrial Ethernet
538           protocols, optional 3D graphics and an optional customer
539           programmable secure boot.
540
541 config ARCH_RMOBILE
542         bool "Renesas ARM SoCs"
543         select DM
544         select DM_SERIAL
545
546 config TARGET_S32V234EVB
547         bool "Support s32v234evb"
548         select ARM64
549
550 config ARCH_SNAPDRAGON
551         bool "Qualcomm Snapdragon SoCs"
552         select ARM64
553         select DM
554         select DM_GPIO
555         select DM_SERIAL
556         select SPMI
557         select OF_CONTROL
558         select OF_SEPARATE
559
560 config ARCH_SOCFPGA
561         bool "Altera SOCFPGA family"
562         select CPU_V7
563         select SUPPORT_SPL
564         select OF_CONTROL
565         select SPL_OF_CONTROL
566         select DM
567         select DM_SPI_FLASH
568         select DM_SPI
569         select ENABLE_ARM_SOC_BOOT0_HOOK
570
571 config TARGET_CM_T43
572         bool "Support cm_t43"
573         select ARCH_OMAP2
574
575 config ARCH_SUNXI
576         bool "Support sunxi (Allwinner) SoCs"
577         select CMD_GPIO
578         select CMD_MMC if MMC
579         select CMD_USB if DISTRO_DEFAULTS
580         select DM
581         select DM_ETH
582         select DM_GPIO
583         select DM_KEYBOARD
584         select DM_SERIAL
585         select DM_USB if DISTRO_DEFAULTS
586         select OF_BOARD_SETUP
587         select OF_CONTROL
588         select OF_SEPARATE
589         select SPL_STACK_R if SUPPORT_SPL
590         select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
591         select SYS_NS16550
592         select USB if DISTRO_DEFAULTS
593         select USB_STORAGE if DISTRO_DEFAULTS
594         select USB_KEYBOARD if DISTRO_DEFAULTS
595         select USE_TINY_PRINTF
596
597 config TARGET_TS4600
598         bool "Support TS4600"
599         select CPU_ARM926EJS
600         select SUPPORT_SPL
601
602 config TARGET_TS4800
603         bool "Support TS4800"
604         select CPU_V7
605
606 config TARGET_VF610TWR
607         bool "Support vf610twr"
608         select CPU_V7
609
610 config TARGET_COLIBRI_VF
611         bool "Support Colibri VF50/61"
612         select CPU_V7
613
614 config TARGET_PCM052
615         bool "Support pcm-052"
616         select CPU_V7
617
618 config TARGET_BK4R1
619         bool "Support BK4r1"
620         select CPU_V7
621
622 config ARCH_ZYNQ
623         bool "Xilinx Zynq Platform"
624         select CPU_V7
625         select SUPPORT_SPL
626         select OF_CONTROL
627         select SPL_OF_CONTROL if SPL
628         select DM
629         select DM_ETH
630         select DM_GPIO
631         select SPL_DM if SPL
632         select DM_MMC
633         select DM_MMC_OPS
634         select DM_SPI
635         select DM_SERIAL
636         select DM_SPI_FLASH
637         select SPL_SEPARATE_BSS if SPL
638         select DM_USB if USB
639         select BLK
640
641 config ARCH_ZYNQMP
642         bool "Support Xilinx ZynqMP Platform"
643         select ARM64
644         select DM
645         select OF_CONTROL
646         select DM_SERIAL
647         select SUPPORT_SPL
648         select CLK
649         select SPL_CLK
650         select DM_USB if USB
651
652 config TEGRA
653         bool "NVIDIA Tegra"
654
655 config TARGET_VEXPRESS64_AEMV8A
656         bool "Support vexpress_aemv8a"
657         select ARM64
658
659 config TARGET_VEXPRESS64_BASE_FVP
660         bool "Support Versatile Express ARMv8a FVP BASE model"
661         select ARM64
662         select SEMIHOSTING
663
664 config TARGET_VEXPRESS64_BASE_FVP_DRAM
665         bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
666         select ARM64
667         help
668           This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
669           the default config to allow the user to load the images directly into
670           DRAM using model parameters rather than by using semi-hosting to load
671           the files from the host filesystem.
672
673 config TARGET_VEXPRESS64_JUNO
674         bool "Support Versatile Express Juno Development Platform"
675         select ARM64
676
677 config TARGET_LS2080A_EMU
678         bool "Support ls2080a_emu"
679         select ARCH_LS2080A
680         select ARM64
681         select ARMV8_MULTIENTRY
682         help
683           Support for Freescale LS2080A_EMU platform
684           The LS2080A Development System (EMULATOR) is a pre silicon
685           development platform that supports the QorIQ LS2080A
686           Layerscape Architecture processor.
687
688 config TARGET_LS2080A_SIMU
689         bool "Support ls2080a_simu"
690         select ARCH_LS2080A
691         select ARM64
692         select ARMV8_MULTIENTRY
693         help
694           Support for Freescale LS2080A_SIMU platform
695           The LS2080A Development System (QDS) is a pre silicon
696           development platform that supports the QorIQ LS2080A
697           Layerscape Architecture processor.
698
699 config TARGET_LS2080AQDS
700         bool "Support ls2080aqds"
701         select ARCH_LS2080A
702         select ARM64
703         select ARMV8_MULTIENTRY
704         select SUPPORT_SPL
705         help
706           Support for Freescale LS2080AQDS platform
707           The LS2080A Development System (QDS) is a high-performance
708           development platform that supports the QorIQ LS2080A
709           Layerscape Architecture processor.
710
711 config TARGET_LS2080ARDB
712         bool "Support ls2080ardb"
713         select ARCH_LS2080A
714         select ARM64
715         select ARMV8_MULTIENTRY
716         select SUPPORT_SPL
717         help
718           Support for Freescale LS2080ARDB platform.
719           The LS2080A Reference design board (RDB) is a high-performance
720           development platform that supports the QorIQ LS2080A
721           Layerscape Architecture processor.
722
723 config TARGET_HIKEY
724         bool "Support HiKey 96boards Consumer Edition Platform"
725         select ARM64
726         select DM
727         select DM_GPIO
728         select DM_SERIAL
729         select OF_CONTROL
730           help
731           Support for HiKey 96boards platform. It features a HI6220
732           SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
733
734 config TARGET_LS1012AQDS
735         bool "Support ls1012aqds"
736         select ARCH_LS1012A
737         select ARM64
738         help
739           Support for Freescale LS1012AQDS platform.
740           The LS1012A Development System (QDS) is a high-performance
741           development platform that supports the QorIQ LS1012A
742           Layerscape Architecture processor.
743
744 config TARGET_LS1012ARDB
745         bool "Support ls1012ardb"
746         select ARCH_LS1012A
747         select ARM64
748         help
749           Support for Freescale LS1012ARDB platform.
750           The LS1012A Reference design board (RDB) is a high-performance
751           development platform that supports the QorIQ LS1012A
752           Layerscape Architecture processor.
753
754 config TARGET_LS1012AFRDM
755         bool "Support ls1012afrdm"
756         select ARCH_LS1012A
757         select ARM64
758         help
759           Support for Freescale LS1012AFRDM platform.
760           The LS1012A Freedom  board (FRDM) is a high-performance
761           development platform that supports the QorIQ LS1012A
762           Layerscape Architecture processor.
763
764 config TARGET_LS1021AQDS
765         bool "Support ls1021aqds"
766         select CPU_V7
767         select CPU_V7_HAS_NONSEC
768         select CPU_V7_HAS_VIRT
769         select SUPPORT_SPL
770         select ARCH_LS1021A
771         select ARCH_SUPPORT_PSCI
772         select LS1_DEEP_SLEEP
773         select SYS_FSL_DDR
774
775 config TARGET_LS1021ATWR
776         bool "Support ls1021atwr"
777         select CPU_V7
778         select CPU_V7_HAS_NONSEC
779         select CPU_V7_HAS_VIRT
780         select SUPPORT_SPL
781         select ARCH_LS1021A
782         select ARCH_SUPPORT_PSCI
783         select LS1_DEEP_SLEEP
784
785 config TARGET_LS1021AIOT
786         bool "Support ls1021aiot"
787         select CPU_V7
788         select CPU_V7_HAS_NONSEC
789         select CPU_V7_HAS_VIRT
790         select SUPPORT_SPL
791         select ARCH_LS1021A
792         select ARCH_SUPPORT_PSCI
793         help
794           Support for Freescale LS1021AIOT platform.
795           The LS1021A Freescale board (IOT) is a high-performance
796           development platform that supports the QorIQ LS1021A
797           Layerscape Architecture processor.
798
799 config TARGET_LS1043AQDS
800         bool "Support ls1043aqds"
801         select ARCH_LS1043A
802         select ARM64
803         select ARMV8_MULTIENTRY
804         select SUPPORT_SPL
805         help
806           Support for Freescale LS1043AQDS platform.
807
808 config TARGET_LS1043ARDB
809         bool "Support ls1043ardb"
810         select ARCH_LS1043A
811         select ARM64
812         select ARMV8_MULTIENTRY
813         select SUPPORT_SPL
814         help
815           Support for Freescale LS1043ARDB platform.
816
817 config TARGET_LS1046AQDS
818         bool "Support ls1046aqds"
819         select ARCH_LS1046A
820         select ARM64
821         select ARMV8_MULTIENTRY
822         select SUPPORT_SPL
823         select DM_SPI_FLASH if DM_SPI
824         help
825           Support for Freescale LS1046AQDS platform.
826           The LS1046A Development System (QDS) is a high-performance
827           development platform that supports the QorIQ LS1046A
828           Layerscape Architecture processor.
829
830 config TARGET_LS1046ARDB
831         bool "Support ls1046ardb"
832         select ARCH_LS1046A
833         select ARM64
834         select ARMV8_MULTIENTRY
835         select SUPPORT_SPL
836         select DM_SPI_FLASH if DM_SPI
837         help
838           Support for Freescale LS1046ARDB platform.
839           The LS1046A Reference Design Board (RDB) is a high-performance
840           development platform that supports the QorIQ LS1046A
841           Layerscape Architecture processor.
842
843 config TARGET_H2200
844         bool "Support h2200"
845         select CPU_PXA
846
847 config TARGET_ZIPITZ2
848         bool "Support zipitz2"
849         select CPU_PXA
850
851 config TARGET_COLIBRI_PXA270
852         bool "Support colibri_pxa270"
853         select CPU_PXA
854
855 config ARCH_UNIPHIER
856         bool "Socionext UniPhier SoCs"
857         select CLK_UNIPHIER
858         select DM
859         select DM_GPIO
860         select DM_I2C
861         select DM_MMC
862         select DM_RESET
863         select DM_SERIAL
864         select DM_USB
865         select OF_CONTROL
866         select OF_LIBFDT
867         select PINCTRL
868         select SPL
869         select SPL_DM
870         select SPL_LIBCOMMON_SUPPORT
871         select SPL_LIBGENERIC_SUPPORT
872         select SPL_OF_CONTROL
873         select SPL_PINCTRL
874         select SUPPORT_SPL
875         help
876           Support for UniPhier SoC family developed by Socionext Inc.
877           (formerly, System LSI Business Division of Panasonic Corporation)
878
879 config STM32
880         bool "Support STM32"
881         select CPU_V7M
882         select DM
883         select DM_SERIAL
884
885 config ARCH_ROCKCHIP
886         bool "Support Rockchip SoCs"
887         select OF_CONTROL
888         select BLK
889         select DM
890         select SPL_DM if SPL
891         select SYS_MALLOC_F
892         select SPL_SYS_MALLOC_SIMPLE if SPL
893         select DM_GPIO
894         select DM_I2C
895         select DM_MMC
896         select DM_MMC_OPS
897         select DM_SERIAL
898         select DM_SPI
899         select DM_SPI_FLASH
900         select DM_USB if USB
901         select DM_PWM
902         select DM_REGULATOR
903
904 config TARGET_THUNDERX_88XX
905         bool "Support ThunderX 88xx"
906         select ARM64
907         select OF_CONTROL
908         select SYS_CACHE_SHIFT_7
909
910 endchoice
911
912 source "arch/arm/mach-at91/Kconfig"
913
914 source "arch/arm/mach-bcm283x/Kconfig"
915
916 source "arch/arm/mach-davinci/Kconfig"
917
918 source "arch/arm/mach-exynos/Kconfig"
919
920 source "arch/arm/mach-highbank/Kconfig"
921
922 source "arch/arm/mach-integrator/Kconfig"
923
924 source "arch/arm/mach-keystone/Kconfig"
925
926 source "arch/arm/mach-kirkwood/Kconfig"
927
928 source "arch/arm/mach-litesom/Kconfig"
929
930 source "arch/arm/mach-mvebu/Kconfig"
931
932 source "arch/arm/cpu/armv7/ls102xa/Kconfig"
933
934 source "arch/arm/cpu/armv7/mx7/Kconfig"
935
936 source "arch/arm/cpu/armv7/mx6/Kconfig"
937
938 source "arch/arm/cpu/armv7/mx5/Kconfig"
939
940 source "arch/arm/mach-omap2/Kconfig"
941
942 source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
943
944 source "arch/arm/mach-orion5x/Kconfig"
945
946 source "arch/arm/mach-rmobile/Kconfig"
947
948 source "arch/arm/mach-meson/Kconfig"
949
950 source "arch/arm/mach-rockchip/Kconfig"
951
952 source "arch/arm/mach-s5pc1xx/Kconfig"
953
954 source "arch/arm/mach-snapdragon/Kconfig"
955
956 source "arch/arm/mach-socfpga/Kconfig"
957
958 source "arch/arm/mach-stm32/Kconfig"
959
960 source "arch/arm/mach-tegra/Kconfig"
961
962 source "arch/arm/mach-uniphier/Kconfig"
963
964 source "arch/arm/mach-zynq/Kconfig"
965
966 source "arch/arm/cpu/armv7/Kconfig"
967
968 source "arch/arm/cpu/armv8/zynqmp/Kconfig"
969
970 source "arch/arm/cpu/armv8/Kconfig"
971
972 source "arch/arm/imx-common/Kconfig"
973
974 source "board/bosch/shc/Kconfig"
975 source "board/BuR/brxre1/Kconfig"
976 source "board/BuR/brppt1/Kconfig"
977 source "board/CarMediaLab/flea3/Kconfig"
978 source "board/Marvell/aspenite/Kconfig"
979 source "board/Marvell/gplugd/Kconfig"
980 source "board/armadeus/apf27/Kconfig"
981 source "board/armltd/vexpress/Kconfig"
982 source "board/armltd/vexpress64/Kconfig"
983 source "board/bluegiga/apx4devkit/Kconfig"
984 source "board/broadcom/bcm23550_w1d/Kconfig"
985 source "board/broadcom/bcm28155_ap/Kconfig"
986 source "board/broadcom/bcmcygnus/Kconfig"
987 source "board/broadcom/bcmnsp/Kconfig"
988 source "board/cavium/thunderx/Kconfig"
989 source "board/cirrus/edb93xx/Kconfig"
990 source "board/compulab/cm_t335/Kconfig"
991 source "board/compulab/cm_t43/Kconfig"
992 source "board/creative/xfi3/Kconfig"
993 source "board/denx/m28evk/Kconfig"
994 source "board/denx/m53evk/Kconfig"
995 source "board/freescale/ls2080a/Kconfig"
996 source "board/freescale/ls2080aqds/Kconfig"
997 source "board/freescale/ls2080ardb/Kconfig"
998 source "board/freescale/ls1021aqds/Kconfig"
999 source "board/freescale/ls1043aqds/Kconfig"
1000 source "board/freescale/ls1021atwr/Kconfig"
1001 source "board/freescale/ls1021aiot/Kconfig"
1002 source "board/freescale/ls1046aqds/Kconfig"
1003 source "board/freescale/ls1043ardb/Kconfig"
1004 source "board/freescale/ls1046ardb/Kconfig"
1005 source "board/freescale/ls1012aqds/Kconfig"
1006 source "board/freescale/ls1012ardb/Kconfig"
1007 source "board/freescale/ls1012afrdm/Kconfig"
1008 source "board/freescale/mx23evk/Kconfig"
1009 source "board/freescale/mx25pdk/Kconfig"
1010 source "board/freescale/mx28evk/Kconfig"
1011 source "board/freescale/mx31ads/Kconfig"
1012 source "board/freescale/mx31pdk/Kconfig"
1013 source "board/freescale/mx35pdk/Kconfig"
1014 source "board/freescale/mx51evk/Kconfig"
1015 source "board/freescale/mx53ard/Kconfig"
1016 source "board/freescale/mx53evk/Kconfig"
1017 source "board/freescale/mx53loco/Kconfig"
1018 source "board/freescale/mx53smd/Kconfig"
1019 source "board/freescale/s32v234evb/Kconfig"
1020 source "board/freescale/vf610twr/Kconfig"
1021 source "board/gumstix/pepper/Kconfig"
1022 source "board/h2200/Kconfig"
1023 source "board/hisilicon/hikey/Kconfig"
1024 source "board/imx31_phycore/Kconfig"
1025 source "board/isee/igep0033/Kconfig"
1026 source "board/olimex/mx23_olinuxino/Kconfig"
1027 source "board/phytec/pcm051/Kconfig"
1028 source "board/phytec/pcm052/Kconfig"
1029 source "board/ppcag/bg0900/Kconfig"
1030 source "board/sandisk/sansa_fuze_plus/Kconfig"
1031 source "board/schulercontrol/sc_sps_1/Kconfig"
1032 source "board/siemens/draco/Kconfig"
1033 source "board/siemens/pxm2/Kconfig"
1034 source "board/siemens/rut/Kconfig"
1035 source "board/silica/pengwyn/Kconfig"
1036 source "board/spear/spear300/Kconfig"
1037 source "board/spear/spear310/Kconfig"
1038 source "board/spear/spear320/Kconfig"
1039 source "board/spear/spear600/Kconfig"
1040 source "board/spear/x600/Kconfig"
1041 source "board/st/stv0991/Kconfig"
1042 source "board/sunxi/Kconfig"
1043 source "board/syteco/zmx25/Kconfig"
1044 source "board/tcl/sl50/Kconfig"
1045 source "board/ti/am335x/Kconfig"
1046 source "board/ti/am43xx/Kconfig"
1047 source "board/birdland/bav335x/Kconfig"
1048 source "board/ti/ti814x/Kconfig"
1049 source "board/ti/ti816x/Kconfig"
1050 source "board/timll/devkit3250/Kconfig"
1051 source "board/toradex/colibri_pxa270/Kconfig"
1052 source "board/toradex/colibri_vf/Kconfig"
1053 source "board/technologic/ts4600/Kconfig"
1054 source "board/technologic/ts4800/Kconfig"
1055 source "board/vscom/baltos/Kconfig"
1056 source "board/woodburn/Kconfig"
1057 source "board/work-microwave/work_92105/Kconfig"
1058 source "board/zipitz2/Kconfig"
1059
1060 source "arch/arm/Kconfig.debug"
1061
1062 endmenu