blob: 7022e2af847e5740c379bba5b22afad82a693324 [file] [log] [blame]
Masahiro Yamadadd840582014-07-30 14:08:14 +09001menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
Masahiro Yamadadd840582014-07-30 14:08:14 +09005 default "arm"
6
Masahiro Yamada016a9542014-09-14 03:01:51 +09007config ARM64
8 bool
Masahiro Yamadabb6b1422016-07-25 19:56:03 +09009 select PHYS_64BIT
Tom Rini067716b2016-08-22 08:22:17 -040010 select SYS_CACHE_SHIFT_6
Masahiro Yamada016a9542014-09-14 03:01:51 +090011
Lokesh Vutla37217f02016-03-24 16:02:00 +053012config DMA_ADDR_T_64BIT
13 bool
14 default y if ARM64
15
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010016config HAS_VBAR
Tom Rinie009bfa2016-08-22 08:22:18 -040017 bool
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010018
Albert ARIBAUD62e92072015-10-23 18:06:40 +020019config HAS_THUMB2
Tom Rinie009bfa2016-08-22 08:22:18 -040020 bool
Albert ARIBAUD62e92072015-10-23 18:06:40 +020021
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010022config CPU_ARM720T
Tom Rinie009bfa2016-08-22 08:22:18 -040023 bool
Tom Rini067716b2016-08-22 08:22:17 -040024 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010025
26config CPU_ARM920T
Tom Rinie009bfa2016-08-22 08:22:18 -040027 bool
Tom Rini067716b2016-08-22 08:22:17 -040028 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010029
30config CPU_ARM926EJS
Tom Rinie009bfa2016-08-22 08:22:18 -040031 bool
Tom Rini067716b2016-08-22 08:22:17 -040032 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010033
34config CPU_ARM946ES
Tom Rinie009bfa2016-08-22 08:22:18 -040035 bool
Tom Rini067716b2016-08-22 08:22:17 -040036 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010037
38config CPU_ARM1136
Tom Rinie009bfa2016-08-22 08:22:18 -040039 bool
Tom Rini067716b2016-08-22 08:22:17 -040040 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010041
42config CPU_ARM1176
Tom Rinie009bfa2016-08-22 08:22:18 -040043 bool
44 select HAS_VBAR
Tom Rini067716b2016-08-22 08:22:17 -040045 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010046
47config CPU_V7
Tom Rinie009bfa2016-08-22 08:22:18 -040048 bool
49 select HAS_VBAR
50 select HAS_THUMB2
Tom Rini067716b2016-08-22 08:22:17 -040051 select SYS_CACHE_SHIFT_6
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010052
rev13@wp.pl12d8a722015-03-01 12:44:39 +010053config CPU_V7M
54 bool
Tom Rinie009bfa2016-08-22 08:22:18 -040055 select HAS_THUMB2
Tom Rini067716b2016-08-22 08:22:17 -040056 select SYS_CACHE_SHIFT_5
rev13@wp.pl12d8a722015-03-01 12:44:39 +010057
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010058config CPU_PXA
Tom Rinie009bfa2016-08-22 08:22:18 -040059 bool
Tom Rini067716b2016-08-22 08:22:17 -040060 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010061
62config CPU_SA1100
Tom Rinie009bfa2016-08-22 08:22:18 -040063 bool
Tom Rini067716b2016-08-22 08:22:17 -040064 select SYS_CACHE_SHIFT_5
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010065
66config SYS_CPU
Tom Rinie009bfa2016-08-22 08:22:18 -040067 default "arm720t" if CPU_ARM720T
68 default "arm920t" if CPU_ARM920T
69 default "arm926ejs" if CPU_ARM926EJS
70 default "arm946es" if CPU_ARM946ES
71 default "arm1136" if CPU_ARM1136
72 default "arm1176" if CPU_ARM1176
73 default "armv7" if CPU_V7
74 default "armv7m" if CPU_V7M
75 default "pxa" if CPU_PXA
76 default "sa1100" if CPU_SA1100
Masahiro Yamada01541ee2014-11-06 11:39:27 +090077 default "armv8" if ARM64
Georges Savoundararadj2e07c242014-10-28 23:16:09 +010078
Marek Vasut66020a62016-05-26 18:01:36 +020079config SYS_ARM_ARCH
80 int
81 default 4 if CPU_ARM720T
82 default 4 if CPU_ARM920T
83 default 5 if CPU_ARM926EJS
84 default 5 if CPU_ARM946ES
85 default 6 if CPU_ARM1136
86 default 6 if CPU_ARM1176
87 default 7 if CPU_V7
88 default 7 if CPU_V7M
89 default 5 if CPU_PXA
90 default 4 if CPU_SA1100
91 default 8 if ARM64
92
Tom Rini067716b2016-08-22 08:22:17 -040093config SYS_CACHE_SHIFT_5
94 bool
95
96config SYS_CACHE_SHIFT_6
97 bool
98
99config SYS_CACHE_SHIFT_7
100 bool
101
102config SYS_CACHELINE_SIZE
103 int
104 default 128 if SYS_CACHE_SHIFT_7
105 default 64 if SYS_CACHE_SHIFT_6
106 default 32 if SYS_CACHE_SHIFT_5
107
Linus Walleijf91afc42015-01-23 11:50:53 +0100108config SEMIHOSTING
109 bool "support boot from semihosting"
110 help
111 In emulated environments, semihosting is a way for
112 the hosted environment to call out to the emulator to
113 retrieve files from the host machine.
114
Peng Fanf3e9bec2015-08-19 15:48:57 +0800115config SYS_L2CACHE_OFF
116 bool "L2cache off"
117 help
118 If SoC does not support L2CACHE or one do not want to enable
119 L2CACHE, choose this option.
120
Andre Przywaracdaa6332016-05-31 10:45:06 -0700121config ENABLE_ARM_SOC_BOOT0_HOOK
122 bool "prepare BOOT0 header"
123 help
124 If the SoC's BOOT0 requires a header area filled with (magic)
125 values, then choose this option, and create a define called
126 ARM_SOC_BOOT0_HOOK which contains the required assembler
127 preprocessor code.
128
Fabio Estevambe725912016-12-15 19:30:40 -0200129config USE_ARCH_MEMCPY
130 bool "Use an assembly optimized implementation of memcpy"
Tom Rini40d55342017-01-12 13:16:02 -0500131 default y
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
138config SPL_USE_ARCH_MEMCPY
139 bool "Use an assembly optimized implementation of memcpy"
140 default y if USE_ARCH_MEMCPY
Masahiro Yamada085be482016-12-19 19:31:02 +0900141 depends on !ARM64
Fabio Estevambe725912016-12-15 19:30:40 -0200142 help
143 Enable the generation of an optimized version of memcpy.
144 Such implementation may be faster under some conditions
145 but may increase the binary size.
146
147config USE_ARCH_MEMSET
148 bool "Use an assembly optimized implementation of memset"
Tom Rini40d55342017-01-12 13:16:02 -0500149 default y
150 depends on !ARM64
151 help
152 Enable the generation of an optimized version of memset.
153 Such implementation may be faster under some conditions
154 but may increase the binary size.
155
156config SPL_USE_ARCH_MEMSET
157 bool "Use an assembly optimized implementation of memset"
158 default y if USE_ARCH_MEMSET
Masahiro Yamada085be482016-12-19 19:31:02 +0900159 depends on !ARM64
Fabio Estevambe725912016-12-15 19:30:40 -0200160 help
161 Enable the generation of an optimized version of memset.
162 Such implementation may be faster under some conditions
163 but may increase the binary size.
164
Tom Rini272686e2016-11-07 21:34:53 -0500165config ARCH_OMAP2
166 bool
167 select CPU_V7
168 select SUPPORT_SPL
169
Alison Wangec6617c2016-11-10 10:49:03 +0800170config ARM64_SUPPORT_AARCH32
171 bool "ARM64 system support AArch32 execution state"
172 default y if ARM64 && !TARGET_THUNDERX_88XX
173 help
174 This ARM64 system supports AArch32 execution state.
175
Masahiro Yamadadd840582014-07-30 14:08:14 +0900176choice
177 prompt "Target select"
Simon Glassb928e652015-08-30 19:19:30 -0600178 default TARGET_HIKEY
Masahiro Yamadadd840582014-07-30 14:08:14 +0900179
Masahiro Yamada4614b892015-02-20 17:04:01 +0900180config ARCH_AT91
181 bool "Atmel AT91"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900182
183config TARGET_EDB93XX
184 bool "Support edb93xx"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100185 select CPU_ARM920T
Masahiro Yamadadd840582014-07-30 14:08:14 +0900186
Masahiro Yamadadd840582014-07-30 14:08:14 +0900187config TARGET_ASPENITE
188 bool "Support aspenite"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100189 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900190
191config TARGET_GPLUGD
192 bool "Support gplugd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100193 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900194
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900195config ARCH_DAVINCI
196 bool "TI DaVinci"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100197 select CPU_ARM926EJS
Masahiro Yamada3491ba62014-08-31 07:11:01 +0900198 help
199 Support for TI's DaVinci platform.
Masahiro Yamadadd840582014-07-30 14:08:14 +0900200
Masahiro Yamada47539e22014-08-31 07:10:59 +0900201config KIRKWOOD
202 bool "Marvell Kirkwood"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100203 select CPU_ARM926EJS
Simon Glassa5d67542017-01-23 13:31:20 -0700204 select BOARD_EARLY_INIT_F
Simon Glass45856012017-01-23 13:31:21 -0700205 select ARCH_MISC_INIT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900206
Stefan Roesec3d89142015-08-25 13:18:38 +0200207config ARCH_MVEBU
Stefan Roese21b29fc2016-05-25 08:13:45 +0200208 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese9cffb232015-09-01 11:27:52 +0200209 select OF_CONTROL
210 select OF_SEPARATE
211 select DM
Stefan Roesee3b9c982015-11-19 07:46:15 +0100212 select DM_ETH
Stefan Roese1d51ea12015-09-02 08:41:41 +0200213 select DM_SERIAL
Stefan Roese09a54c02015-11-20 13:51:57 +0100214 select DM_SPI
215 select DM_SPI_FLASH
Stefan Roesea4884832014-10-22 12:13:19 +0200216
Masahiro Yamadadd840582014-07-30 14:08:14 +0900217config TARGET_DEVKIT3250
218 bool "Support devkit3250"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100219 select CPU_ARM926EJS
Vladimir Zapolskiye9b3ce32015-07-18 01:47:11 +0300220 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900221
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +0200222config TARGET_WORK_92105
223 bool "Support work_92105"
224 select CPU_ARM926EJS
225 select SUPPORT_SPL
226
Masahiro Yamadadd840582014-07-30 14:08:14 +0900227config TARGET_MX25PDK
228 bool "Support mx25pdk"
Tom Rinie5ec4812017-01-22 19:43:11 -0500229 select BOARD_LATE_INIT
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100230 select CPU_ARM926EJS
Simon Glassa5d67542017-01-23 13:31:20 -0700231 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900232
Masahiro Yamadadd840582014-07-30 14:08:14 +0900233config TARGET_ZMX25
234 bool "Support zmx25"
Tom Rinie5ec4812017-01-22 19:43:11 -0500235 select BOARD_LATE_INIT
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100236 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900237
238config TARGET_APF27
239 bool "Support apf27"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100240 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900241 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900242
Masahiro Yamadadd840582014-07-30 14:08:14 +0900243config TARGET_APX4DEVKIT
244 bool "Support apx4devkit"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100245 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900246 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900247
248config TARGET_XFI3
249 bool "Support xfi3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100250 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900251 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900252
253config TARGET_M28EVK
254 bool "Support m28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100255 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900256 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900257
258config TARGET_MX23EVK
259 bool "Support mx23evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100260 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900261 select SUPPORT_SPL
Simon Glassa5d67542017-01-23 13:31:20 -0700262 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900263
264config TARGET_MX28EVK
265 bool "Support mx28evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100266 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900267 select SUPPORT_SPL
Simon Glassa5d67542017-01-23 13:31:20 -0700268 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900269
270config TARGET_MX23_OLINUXINO
271 bool "Support mx23_olinuxino"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100272 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900273 select SUPPORT_SPL
Simon Glassa5d67542017-01-23 13:31:20 -0700274 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900275
276config TARGET_BG0900
277 bool "Support bg0900"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100278 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900279 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900280
281config TARGET_SANSA_FUZE_PLUS
282 bool "Support sansa_fuze_plus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100283 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900284 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900285
286config TARGET_SC_SPS_1
287 bool "Support sc_sps_1"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100288 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900289 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900290
Masahiro Yamada22f2be72014-08-31 07:11:06 +0900291config ORION5X
292 bool "Marvell Orion"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100293 select CPU_ARM926EJS
Masahiro Yamadadd840582014-07-30 14:08:14 +0900294
Masahiro Yamadadd840582014-07-30 14:08:14 +0900295config TARGET_SPEAR300
296 bool "Support spear300"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100297 select CPU_ARM926EJS
Simon Glassa5d67542017-01-23 13:31:20 -0700298 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900299
300config TARGET_SPEAR310
301 bool "Support spear310"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100302 select CPU_ARM926EJS
Simon Glassa5d67542017-01-23 13:31:20 -0700303 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900304
305config TARGET_SPEAR320
306 bool "Support spear320"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100307 select CPU_ARM926EJS
Simon Glassa5d67542017-01-23 13:31:20 -0700308 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900309
310config TARGET_SPEAR600
311 bool "Support spear600"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100312 select CPU_ARM926EJS
Simon Glassa5d67542017-01-23 13:31:20 -0700313 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900314
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800315config TARGET_STV0991
316 bool "Support stv0991"
317 select CPU_V7
Masahiro Yamadacac0ca72015-03-31 12:48:01 +0900318 select DM
319 select DM_SERIAL
Vikas Manochae67abca2015-07-02 18:29:41 -0700320 select DM_SPI
321 select DM_SPI_FLASH
322 select SPI_FLASH
Vikas Manocha9fa32b12014-11-18 10:42:22 -0800323
Masahiro Yamadadd840582014-07-30 14:08:14 +0900324config TARGET_X600
325 bool "Support x600"
Tom Rinie5ec4812017-01-22 19:43:11 -0500326 select BOARD_LATE_INIT
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100327 select CPU_ARM926EJS
Masahiro Yamada02627352014-10-20 17:45:56 +0900328 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900329
Masahiro Yamadadd840582014-07-30 14:08:14 +0900330config TARGET_IMX31_PHYCORE
Tom Rinif4282682017-01-22 19:43:09 -0500331 bool "Support imx31_phycore_eet"
332 select CPU_ARM1136
Simon Glassa5d67542017-01-23 13:31:20 -0700333 select BOARD_EARLY_INIT_F
Tom Rinif4282682017-01-22 19:43:09 -0500334
335config TARGET_IMX31_PHYCORE_EET
336 bool "Support imx31_phycore_eet"
Tom Rinie5ec4812017-01-22 19:43:11 -0500337 select BOARD_LATE_INIT
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100338 select CPU_ARM1136
Simon Glassa5d67542017-01-23 13:31:20 -0700339 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900340
Masahiro Yamadadd840582014-07-30 14:08:14 +0900341config TARGET_MX31ADS
342 bool "Support mx31ads"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100343 select CPU_ARM1136
Simon Glassa5d67542017-01-23 13:31:20 -0700344 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900345
346config TARGET_MX31PDK
347 bool "Support mx31pdk"
Tom Rinie5ec4812017-01-22 19:43:11 -0500348 select BOARD_LATE_INIT
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100349 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900350 select SUPPORT_SPL
Simon Glassa5d67542017-01-23 13:31:20 -0700351 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900352
Masahiro Yamadadd840582014-07-30 14:08:14 +0900353config TARGET_WOODBURN
354 bool "Support woodburn"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100355 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900356
357config TARGET_WOODBURN_SD
358 bool "Support woodburn_sd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100359 select CPU_ARM1136
Masahiro Yamada02627352014-10-20 17:45:56 +0900360 select SUPPORT_SPL
Masahiro Yamadadd840582014-07-30 14:08:14 +0900361
362config TARGET_FLEA3
363 bool "Support flea3"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100364 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900365
366config TARGET_MX35PDK
367 bool "Support mx35pdk"
Tom Rinie5ec4812017-01-22 19:43:11 -0500368 select BOARD_LATE_INIT
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100369 select CPU_ARM1136
Masahiro Yamadadd840582014-07-30 14:08:14 +0900370
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +0900371config ARCH_BCM283X
372 bool "Broadcom BCM283X family"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900373 select DM
374 select DM_SERIAL
375 select DM_GPIO
Fabian Vogt76709092016-09-26 14:26:51 +0200376 select OF_CONTROL
Stephen Warren46414292015-02-16 12:16:15 -0700377
Masahiro Yamadadd840582014-07-30 14:08:14 +0900378config TARGET_VEXPRESS_CA15_TC2
379 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100380 select CPU_V7
Hans de Goedeea624e12014-11-14 09:34:30 +0100381 select CPU_V7_HAS_NONSEC
382 select CPU_V7_HAS_VIRT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900383
384config TARGET_VEXPRESS_CA5X2
385 bool "Support vexpress_ca5x2"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100386 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900387
388config TARGET_VEXPRESS_CA9X4
389 bool "Support vexpress_ca9x4"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100390 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900391
Hannes Schmelzera4d79992016-06-22 12:36:14 +0200392config TARGET_BRXRE1
393 bool "Support BRXRE1"
Tom Rini272686e2016-11-07 21:34:53 -0500394 select ARCH_OMAP2
Tom Rinie5ec4812017-01-22 19:43:11 -0500395 select BOARD_LATE_INIT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900396
Hannes Schmelzer2290fe02016-06-22 12:36:13 +0200397config TARGET_BRPPT1
398 bool "Support BRPPT1"
Tom Rini272686e2016-11-07 21:34:53 -0500399 select ARCH_OMAP2
Tom Rinie5ec4812017-01-22 19:43:11 -0500400 select BOARD_LATE_INIT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900401
Masahiro Yamadadd840582014-07-30 14:08:14 +0900402config TARGET_DRACO
403 bool "Support draco"
Tom Rini272686e2016-11-07 21:34:53 -0500404 select ARCH_OMAP2
Tom Rinie5ec4812017-01-22 19:43:11 -0500405 select BOARD_LATE_INIT
Heiko Schocher71423432016-06-13 15:16:01 +0200406 select DM
407 select DM_SERIAL
408 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900409
Heiko Schocher8c65a2f2015-06-15 14:57:15 +0200410config TARGET_THUBAN
411 bool "Support thuban"
Tom Rini272686e2016-11-07 21:34:53 -0500412 select ARCH_OMAP2
Tom Rinie5ec4812017-01-22 19:43:11 -0500413 select BOARD_LATE_INIT
Heiko Schocher71423432016-06-13 15:16:01 +0200414 select DM
415 select DM_SERIAL
416 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900417
Heiko Schocher578056c2015-06-15 14:56:41 +0200418config TARGET_RASTABAN
419 bool "Support rastaban"
Tom Rini272686e2016-11-07 21:34:53 -0500420 select ARCH_OMAP2
Tom Rinie5ec4812017-01-22 19:43:11 -0500421 select BOARD_LATE_INIT
Heiko Schocher71423432016-06-13 15:16:01 +0200422 select DM
423 select DM_SERIAL
424 select DM_GPIO
Heiko Schocher578056c2015-06-15 14:56:41 +0200425
Heiko Schocher6b3943f2016-06-07 08:55:45 +0200426config TARGET_ETAMIN
Tom Rinie009bfa2016-08-22 08:22:18 -0400427 bool "Support etamin"
Tom Rini272686e2016-11-07 21:34:53 -0500428 select ARCH_OMAP2
Tom Rinie5ec4812017-01-22 19:43:11 -0500429 select BOARD_LATE_INIT
Heiko Schocher71423432016-06-13 15:16:01 +0200430 select DM
431 select DM_SERIAL
432 select DM_GPIO
Heiko Schocher6b3943f2016-06-07 08:55:45 +0200433
Masahiro Yamadadd840582014-07-30 14:08:14 +0900434config TARGET_PXM2
435 bool "Support pxm2"
Tom Rini272686e2016-11-07 21:34:53 -0500436 select ARCH_OMAP2
Tom Rinie5ec4812017-01-22 19:43:11 -0500437 select BOARD_LATE_INIT
Heiko Schocher71423432016-06-13 15:16:01 +0200438 select DM
439 select DM_SERIAL
440 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900441
442config TARGET_RUT
443 bool "Support rut"
Tom Rini272686e2016-11-07 21:34:53 -0500444 select ARCH_OMAP2
Tom Rinie5ec4812017-01-22 19:43:11 -0500445 select BOARD_LATE_INIT
Heiko Schocher71423432016-06-13 15:16:01 +0200446 select DM
447 select DM_SERIAL
448 select DM_GPIO
Masahiro Yamadadd840582014-07-30 14:08:14 +0900449
Masahiro Yamadadd840582014-07-30 14:08:14 +0900450config TARGET_TI814X_EVM
451 bool "Support ti814x_evm"
Tom Rini272686e2016-11-07 21:34:53 -0500452 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900453
454config TARGET_TI816X_EVM
455 bool "Support ti816x_evm"
Tom Rini272686e2016-11-07 21:34:53 -0500456 select ARCH_OMAP2
Masahiro Yamadadd840582014-07-30 14:08:14 +0900457
Steve Rae43486e42016-06-02 15:10:56 -0700458config TARGET_BCM23550_W1D
459 bool "Support bcm23550_w1d"
460 select CPU_V7
461
Masahiro Yamadadd840582014-07-30 14:08:14 +0900462config TARGET_BCM28155_AP
463 bool "Support bcm28155_ap"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100464 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900465
Steve Raeabb16782014-11-11 11:32:18 -0800466config TARGET_BCMCYGNUS
467 bool "Support bcmcygnus"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100468 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700469
Steve Raeabb16782014-11-11 11:32:18 -0800470config TARGET_BCMNSP
471 bool "Support bcmnsp"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100472 select CPU_V7
Steve Rae9dec5272014-08-11 13:58:26 -0700473
Masahiro Yamada72df68c2014-08-31 07:11:00 +0900474config ARCH_EXYNOS
475 bool "Samsung EXYNOS"
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900476 select DM
Simon Glassfc47cf92016-11-23 06:34:40 -0700477 select DM_I2C
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900478 select DM_SPI_FLASH
479 select DM_SERIAL
480 select DM_SPI
481 select DM_GPIO
Simon Glass1fa4bfd2015-10-18 21:17:17 -0600482 select DM_KEYBOARD
Masahiro Yamadadd840582014-07-30 14:08:14 +0900483
Simon Glass311757b2014-10-07 22:01:50 -0600484config ARCH_S5PC1XX
485 bool "Samsung S5PC1XX"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100486 select CPU_V7
Masahiro Yamada58d423b2015-03-31 12:47:53 +0900487 select DM
488 select DM_SERIAL
489 select DM_GPIO
Simon Glass08848e92016-11-23 06:34:41 -0700490 select DM_I2C
Simon Glass311757b2014-10-07 22:01:50 -0600491
Masahiro Yamadaef2b6942014-08-31 07:11:07 +0900492config ARCH_HIGHBANK
493 bool "Calxeda Highbank"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100494 select CPU_V7
Masahiro Yamadadd840582014-07-30 14:08:14 +0900495
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900496config ARCH_INTEGRATOR
497 bool "ARM Ltd. Integrator family"
Linus Walleij3f394e72015-07-27 11:22:48 +0200498 select DM
499 select DM_SERIAL
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +0900500
Masahiro Yamadac338f092014-08-31 07:11:05 +0900501config ARCH_KEYSTONE
502 bool "TI Keystone"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100503 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900504 select SUPPORT_SPL
Tom Rini534bc702016-03-16 09:19:43 -0400505 select CMD_POWEROFF
Masahiro Yamadadd840582014-07-30 14:08:14 +0900506
Beniamino Galvanibfcef282016-05-08 08:30:16 +0200507config ARCH_MESON
508 bool "Amlogic Meson"
509 help
510 Support for the Meson SoC family developed by Amlogic Inc.,
511 targeted at media players and tablet computers. We currently
512 support the S905 (GXBaby) 64-bit SoC.
513
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500514config ARCH_MX7
515 bool "Freescale MX7"
516 select CPU_V7
York Sun2c2e2c92016-12-28 08:43:30 -0800517 select SYS_FSL_HAS_SEC if SECURE_BOOT
518 select SYS_FSL_SEC_COMPAT_4
York Sun90b80382016-12-28 08:43:31 -0800519 select SYS_FSL_SEC_LE
Simon Glassa5d67542017-01-23 13:31:20 -0700520 select BOARD_EARLY_INIT_F
Simon Glass45856012017-01-23 13:31:21 -0700521 select ARCH_MISC_INIT
Adrian Alonso1a8150d2015-09-03 11:49:28 -0500522
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100523config ARCH_MX6
524 bool "Freescale MX6"
525 select CPU_V7
York Sun2c2e2c92016-12-28 08:43:30 -0800526 select SYS_FSL_HAS_SEC if SECURE_BOOT
527 select SYS_FSL_SEC_COMPAT_4
York Sun90b80382016-12-28 08:43:31 -0800528 select SYS_FSL_SEC_LE
Boris BREZILLON89ebc822015-03-04 13:13:03 +0100529
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200530config ARCH_MX5
531 bool "Freescale MX5"
532 select CPU_V7
Simon Glassa5d67542017-01-23 13:31:20 -0700533 select BOARD_EARLY_INIT_F
Andrej Rosano424ee3d2015-04-08 18:56:29 +0200534
Masahiro Yamadadd840582014-07-30 14:08:14 +0900535config TARGET_M53EVK
536 bool "Support m53evk"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100537 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900538 select SUPPORT_SPL
Simon Glassa5d67542017-01-23 13:31:20 -0700539 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900540
Masahiro Yamadadd840582014-07-30 14:08:14 +0900541config TARGET_MX51EVK
542 bool "Support mx51evk"
Tom Rinie5ec4812017-01-22 19:43:11 -0500543 select BOARD_LATE_INIT
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100544 select CPU_V7
Simon Glassa5d67542017-01-23 13:31:20 -0700545 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900546
547config TARGET_MX53ARD
548 bool "Support mx53ard"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100549 select CPU_V7
Simon Glassa5d67542017-01-23 13:31:20 -0700550 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900551
552config TARGET_MX53EVK
553 bool "Support mx53evk"
Tom Rinie5ec4812017-01-22 19:43:11 -0500554 select BOARD_LATE_INIT
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100555 select CPU_V7
Simon Glassa5d67542017-01-23 13:31:20 -0700556 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900557
558config TARGET_MX53LOCO
559 bool "Support mx53loco"
Tom Rinie5ec4812017-01-22 19:43:11 -0500560 select BOARD_LATE_INIT
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100561 select CPU_V7
Simon Glassa5d67542017-01-23 13:31:20 -0700562 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900563
564config TARGET_MX53SMD
565 bool "Support mx53smd"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100566 select CPU_V7
Simon Glassa5d67542017-01-23 13:31:20 -0700567 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900568
Masahiro Yamada3cfbcb52014-08-31 07:11:02 +0900569config OMAP34XX
570 bool "OMAP34XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500571 select ARCH_OMAP2
Tom Rini7d106242016-07-27 22:29:41 -0400572 select USE_TINY_PRINTF
Tom Rini7551dcf2017-03-03 15:33:32 -0500573 imply SPL_EXT_SUPPORT
574 imply SPL_FAT_SUPPORT
575 imply SPL_GPIO_SUPPORT
576 imply SPL_I2C_SUPPORT
577 imply SPL_LIBCOMMON_SUPPORT
578 imply SPL_LIBDISK_SUPPORT
579 imply SPL_LIBGENERIC_SUPPORT
580 imply SPL_MMC_SUPPORT
581 imply SPL_NAND_SUPPORT
582 imply SPL_POWER_SUPPORT
583 imply SPL_SERIAL_SUPPORT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900584
Masahiro Yamadad08215a2014-08-31 07:11:03 +0900585config OMAP44XX
586 bool "OMAP44XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500587 select ARCH_OMAP2
Tom Rini7d106242016-07-27 22:29:41 -0400588 select USE_TINY_PRINTF
Tom Rini0f12f102017-03-03 15:33:33 -0500589 imply SPL_DISPLAY_PRINT
590 imply SPL_EXT_SUPPORT
591 imply SPL_FAT_SUPPORT
592 imply SPL_GPIO_SUPPORT
593 imply SPL_I2C_SUPPORT
594 imply SPL_LIBCOMMON_SUPPORT
595 imply SPL_LIBDISK_SUPPORT
596 imply SPL_LIBGENERIC_SUPPORT
597 imply SPL_MMC_SUPPORT
598 imply SPL_NAND_SUPPORT
599 imply SPL_POWER_SUPPORT
600 imply SPL_SERIAL_SUPPORT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900601
Masahiro Yamada6c5431a2014-08-31 07:11:04 +0900602config OMAP54XX
603 bool "OMAP54XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500604 select ARCH_OMAP2
Tom Rini9d4f7a32017-03-03 15:33:31 -0500605 imply SPL_DISPLAY_PRINT
606 imply SPL_ENV_SUPPORT
607 imply SPL_EXT_SUPPORT
608 imply SPL_FAT_SUPPORT
609 imply SPL_GPIO_SUPPORT
610 imply SPL_I2C_SUPPORT
611 imply SPL_LIBCOMMON_SUPPORT
612 imply SPL_LIBDISK_SUPPORT
613 imply SPL_LIBGENERIC_SUPPORT
614 imply SPL_MMC_SUPPORT
615 imply SPL_NAND_SUPPORT
616 imply SPL_POWER_SUPPORT
617 imply SPL_SERIAL_SUPPORT
Masahiro Yamadadd840582014-07-30 14:08:14 +0900618
Madan Srinivas63847262016-05-19 19:10:43 -0500619config AM43XX
620 bool "AM43XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500621 select ARCH_OMAP2
Madan Srinivas63847262016-05-19 19:10:43 -0500622 help
623 Support for AM43xx SOC from Texas Instruments.
624 The AM43xx high performance SOC features a Cortex-A9
625 ARM core, a quad core PRU-ICSS for industrial Ethernet
626 protocols, dual camera support, optional 3D graphics
627 and an optional customer programmable secure boot.
628
Andrew F. Davisb39a9ad2016-08-30 14:06:20 -0500629config AM33XX
630 bool "AM33XX SoC"
Tom Rini272686e2016-11-07 21:34:53 -0500631 select ARCH_OMAP2
Andrew F. Davisb39a9ad2016-08-30 14:06:20 -0500632 help
633 Support for AM335x SOC from Texas Instruments.
634 The AM335x high performance SOC features a Cortex-A8
635 ARM core, a dual core PRU-ICSS for industrial Ethernet
636 protocols, optional 3D graphics and an optional customer
637 programmable secure boot.
638
Nobuhiro Iwamatsu1cc95f62015-10-10 05:58:28 +0900639config ARCH_RMOBILE
Masahiro Yamadaf40b9892014-08-31 07:10:57 +0900640 bool "Renesas ARM SoCs"
Nobuhiro Iwamatsu1cc95f62015-10-10 05:58:28 +0900641 select DM
642 select DM_SERIAL
Simon Glassa5d67542017-01-23 13:31:20 -0700643 select BOARD_EARLY_INIT_F
Masahiro Yamadadd840582014-07-30 14:08:14 +0900644
Eddy Petrișor9702ec02016-06-05 03:43:00 +0300645config TARGET_S32V234EVB
646 bool "Support s32v234evb"
647 select ARM64
York Sunc01e4a12016-12-28 08:43:42 -0800648 select SYS_FSL_ERRATUM_ESDHC111
Eddy Petrișor9702ec02016-06-05 03:43:00 +0300649
Mateusz Kulikowski08592132016-03-31 23:12:32 +0200650config ARCH_SNAPDRAGON
651 bool "Qualcomm Snapdragon SoCs"
652 select ARM64
653 select DM
654 select DM_GPIO
655 select DM_SERIAL
656 select SPMI
657 select OF_CONTROL
658 select OF_SEPARATE
659
Masahiro Yamada7865f4b2015-04-21 20:38:20 +0900660config ARCH_SOCFPGA
661 bool "Altera SOCFPGA family"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100662 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900663 select SUPPORT_SPL
Marek Vasutdfd3dff2015-08-19 23:23:52 +0200664 select OF_CONTROL
665 select SPL_OF_CONTROL
Masahiro Yamada1d9aa3e2015-03-31 12:47:59 +0900666 select DM
667 select DM_SPI_FLASH
668 select DM_SPI
Marek Vasutbeee6a32016-11-16 17:20:23 +0100669 select ENABLE_ARM_SOC_BOOT0_HOOK
Simon Glassa4211922017-01-23 13:31:19 -0700670 select ARCH_EARLY_INIT_R
Simon Glass45856012017-01-23 13:31:21 -0700671 select ARCH_MISC_INIT
Dalon Westergreen949123e2017-02-10 17:15:35 -0800672 select SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION
Masahiro Yamadadd840582014-07-30 14:08:14 +0900673
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300674config TARGET_CM_T43
675 bool "Support cm_t43"
Tom Rini983e3702016-11-07 21:34:54 -0500676 select ARCH_OMAP2
Nikita Kiryanov8883dda2015-07-30 23:56:23 +0300677
Ian Campbell2c7e3b92014-10-24 21:20:44 +0100678config ARCH_SUNXI
679 bool "Support sunxi (Allwinner) SoCs"
Hans de Goede88bb8002016-04-03 09:41:44 +0200680 select CMD_GPIO
Hans de Goede0878a8a2016-05-15 13:51:58 +0200681 select CMD_MMC if MMC
Yann E. MORIN2997ee52016-10-31 22:33:40 +0100682 select CMD_USB if DISTRO_DEFAULTS
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200683 select DM
Tom Rini45368822015-06-30 16:51:15 -0400684 select DM_ETH
Hans de Goede211d57a2015-12-21 20:22:00 +0100685 select DM_GPIO
686 select DM_KEYBOARD
Tom Rini45368822015-06-30 16:51:15 -0400687 select DM_SERIAL
Yann E. MORIN2997ee52016-10-31 22:33:40 +0100688 select DM_USB if DISTRO_DEFAULTS
Hans de Goeded75111a2016-03-22 22:51:52 +0100689 select OF_BOARD_SETUP
Hans de Goedeb6006ba2015-04-15 20:46:48 +0200690 select OF_CONTROL
691 select OF_SEPARATE
Alexander Graf8434f032016-03-29 17:29:07 +0200692 select SPL_STACK_R if SUPPORT_SPL
693 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede6edf6a22015-12-10 11:10:17 +0100694 select SYS_NS16550
Yann E. MORIN2997ee52016-10-31 22:33:40 +0100695 select USB if DISTRO_DEFAULTS
696 select USB_STORAGE if DISTRO_DEFAULTS
697 select USB_KEYBOARD if DISTRO_DEFAULTS
Hans de Goede8c7d2292016-06-10 12:19:40 +0200698 select USE_TINY_PRINTF
Chen-Yu Tsai8ebe4f42014-10-22 16:47:44 +0800699
Sebastien Bourdelind9e268e2016-11-08 12:18:07 -0500700config TARGET_TS4600
701 bool "Support TS4600"
702 select CPU_ARM926EJS
703 select SUPPORT_SPL
704
Lucile Quirion9ee16892015-06-30 17:17:47 -0400705config TARGET_TS4800
706 bool "Support TS4800"
707 select CPU_V7
York Sunc01e4a12016-12-28 08:43:42 -0800708 select SYS_FSL_ERRATUM_ESDHC_A001
Lucile Quirion9ee16892015-06-30 17:17:47 -0400709
Masahiro Yamadadd840582014-07-30 14:08:14 +0900710config TARGET_VF610TWR
711 bool "Support vf610twr"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100712 select CPU_V7
York Sunc01e4a12016-12-28 08:43:42 -0800713 select SYS_FSL_ERRATUM_ESDHC111
Masahiro Yamadadd840582014-07-30 14:08:14 +0900714
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530715config TARGET_COLIBRI_VF
716 bool "Support Colibri VF50/61"
Tom Rinie5ec4812017-01-22 19:43:11 -0500717 select BOARD_LATE_INIT
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530718 select CPU_V7
York Sunc01e4a12016-12-28 08:43:42 -0800719 select SYS_FSL_ERRATUM_ESDHC111
Sanchayan Maitye7b860f2015-04-15 16:24:26 +0530720
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200721config TARGET_PCM052
722 bool "Support pcm-052"
723 select CPU_V7
York Sunc01e4a12016-12-28 08:43:42 -0800724 select SYS_FSL_ERRATUM_ESDHC111
725 select SYS_FSL_ERRATUM_ESDHC135
726 select SYS_FSL_ERRATUM_ESDHC_A001
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +0200727
Albert ARIBAUD \(3ADEV\)27192d12016-09-26 09:08:08 +0200728config TARGET_BK4R1
729 bool "Support BK4r1"
730 select CPU_V7
York Sunc01e4a12016-12-28 08:43:42 -0800731 select SYS_FSL_ERRATUM_ESDHC111
732 select SYS_FSL_ERRATUM_ESDHC135
733 select SYS_FSL_ERRATUM_ESDHC_A001
Albert ARIBAUD \(3ADEV\)27192d12016-09-26 09:08:08 +0200734
Masahiro Yamada5ca269a2015-03-16 16:43:24 +0900735config ARCH_ZYNQ
Masahiro Yamada44dcb402014-08-31 07:10:55 +0900736 bool "Xilinx Zynq Platform"
Tom Rinie5ec4812017-01-22 19:43:11 -0500737 select BOARD_LATE_INIT
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100738 select CPU_V7
Masahiro Yamada02627352014-10-20 17:45:56 +0900739 select SUPPORT_SPL
Jagan Tekid065cfd2015-06-29 14:17:32 +0530740 select OF_CONTROL
Michal Simekeb04ab32016-01-13 14:32:43 +0100741 select SPL_OF_CONTROL if SPL
Masahiro Yamada8981f052015-03-31 12:47:55 +0900742 select DM
Michal Simek6889ca72015-11-30 14:14:56 +0100743 select DM_ETH
Siva Durga Prasad Paladugu2978ae22016-03-10 16:27:39 +0530744 select DM_GPIO
Michal Simekeb04ab32016-01-13 14:32:43 +0100745 select SPL_DM if SPL
Michal Simekd9ae52c2015-11-30 16:13:03 +0100746 select DM_MMC
Simon Glass329a4492016-07-05 17:10:15 -0600747 select DM_MMC_OPS
Jagan Teki9f7a4502015-06-27 00:51:32 +0530748 select DM_SPI
Simon Glass42800ff2015-10-17 19:41:27 -0600749 select DM_SERIAL
Jagan Teki9f7a4502015-06-27 00:51:32 +0530750 select DM_SPI_FLASH
Michal Simekeb04ab32016-01-13 14:32:43 +0100751 select SPL_SEPARATE_BSS if SPL
Simon Glassdec49e82016-07-05 17:10:14 -0600752 select DM_USB if USB
Simon Glass329a4492016-07-05 17:10:15 -0600753 select BLK
Masahiro Yamadadd840582014-07-30 14:08:14 +0900754
Siva Durga Prasad Paladugu0b54a9d2015-06-10 15:50:57 +0530755config ARCH_ZYNQMP
Michal Simek84c72042015-01-15 10:01:51 +0100756 bool "Support Xilinx ZynqMP Platform"
757 select ARM64
Tom Rinie5ec4812017-01-22 19:43:11 -0500758 select BOARD_LATE_INIT
Michal Simekc2490bf2015-10-17 19:41:25 -0600759 select DM
760 select OF_CONTROL
761 select DM_SERIAL
Michal Simeke6a9ed02015-11-20 13:17:22 +0100762 select SUPPORT_SPL
Michal Simek1f297382016-07-14 15:07:54 +0200763 select CLK
764 select SPL_CLK
Simon Glassdec49e82016-07-05 17:10:14 -0600765 select DM_USB if USB
Michal Simek84c72042015-01-15 10:01:51 +0100766
Masahiro Yamadaddd960e2014-08-31 07:10:56 +0900767config TEGRA
768 bool "NVIDIA Tegra"
Masahiro Yamadadd840582014-07-30 14:08:14 +0900769
Linus Walleijf91afc42015-01-23 11:50:53 +0100770config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadadd840582014-07-30 14:08:14 +0900771 bool "Support vexpress_aemv8a"
Masahiro Yamada016a9542014-09-14 03:01:51 +0900772 select ARM64
Masahiro Yamadadd840582014-07-30 14:08:14 +0900773
Linus Walleijf91afc42015-01-23 11:50:53 +0100774config TARGET_VEXPRESS64_BASE_FVP
775 bool "Support Versatile Express ARMv8a FVP BASE model"
776 select ARM64
777 select SEMIHOSTING
778
Ryan Harkinfc04b922015-10-09 17:18:02 +0100779config TARGET_VEXPRESS64_BASE_FVP_DRAM
780 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
781 select ARM64
782 help
783 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
784 the default config to allow the user to load the images directly into
785 DRAM using model parameters rather than by using semi-hosting to load
786 the files from the host filesystem.
787
Linus Walleijffc10372015-01-23 14:41:10 +0100788config TARGET_VEXPRESS64_JUNO
789 bool "Support Versatile Express Juno Development Platform"
790 select ARM64
791
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530792config TARGET_LS2080A_EMU
793 bool "Support ls2080a_emu"
York Sunfb2bf8c2016-10-04 14:31:48 -0700794 select ARCH_LS2080A
Masahiro Yamada016a9542014-09-14 03:01:51 +0900795 select ARM64
Linus Walleij23b58772015-03-09 10:53:21 +0100796 select ARMV8_MULTIENTRY
Simon Glass45856012017-01-23 13:31:21 -0700797 select ARCH_MISC_INIT
York Sun7288c2c2015-03-20 19:28:23 -0700798 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530799 Support for Freescale LS2080A_EMU platform
800 The LS2080A Development System (EMULATOR) is a pre silicon
801 development platform that supports the QorIQ LS2080A
York Sun7288c2c2015-03-20 19:28:23 -0700802 Layerscape Architecture processor.
803
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530804config TARGET_LS2080A_SIMU
805 bool "Support ls2080a_simu"
York Sunfb2bf8c2016-10-04 14:31:48 -0700806 select ARCH_LS2080A
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530807 select ARM64
808 select ARMV8_MULTIENTRY
Simon Glass45856012017-01-23 13:31:21 -0700809 select ARCH_MISC_INIT
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530810 help
811 Support for Freescale LS2080A_SIMU platform
812 The LS2080A Development System (QDS) is a pre silicon
813 development platform that supports the QorIQ LS2080A
814 Layerscape Architecture processor.
815
816config TARGET_LS2080AQDS
817 bool "Support ls2080aqds"
York Sunfb2bf8c2016-10-04 14:31:48 -0700818 select ARCH_LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700819 select ARM64
820 select ARMV8_MULTIENTRY
Tom Rinie5ec4812017-01-22 19:43:11 -0500821 select BOARD_LATE_INIT
Scott Wood32eda7c2015-03-24 13:25:03 -0700822 select SUPPORT_SPL
Simon Glass45856012017-01-23 13:31:21 -0700823 select ARCH_MISC_INIT
York Sune2b65ea2015-03-20 19:28:24 -0700824 help
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530825 Support for Freescale LS2080AQDS platform
826 The LS2080A Development System (QDS) is a high-performance
827 development platform that supports the QorIQ LS2080A
828 Layerscape Architecture processor.
829
830config TARGET_LS2080ARDB
831 bool "Support ls2080ardb"
York Sunfb2bf8c2016-10-04 14:31:48 -0700832 select ARCH_LS2080A
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530833 select ARM64
834 select ARMV8_MULTIENTRY
Tom Rinie5ec4812017-01-22 19:43:11 -0500835 select BOARD_LATE_INIT
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530836 select SUPPORT_SPL
Simon Glass45856012017-01-23 13:31:21 -0700837 select ARCH_MISC_INIT
Prabhakar Kushwaha44937212015-11-09 16:42:07 +0530838 help
839 Support for Freescale LS2080ARDB platform.
840 The LS2080A Reference design board (RDB) is a high-performance
841 development platform that supports the QorIQ LS2080A
York Sune2b65ea2015-03-20 19:28:24 -0700842 Layerscape Architecture processor.
843
Peter Griffin11ac2362015-07-30 18:55:23 +0100844config TARGET_HIKEY
845 bool "Support HiKey 96boards Consumer Edition Platform"
846 select ARM64
Peter Griffinefd7b602015-09-10 21:55:16 +0100847 select DM
848 select DM_GPIO
Peter Griffin9c71bcd2015-09-10 21:55:17 +0100849 select DM_SERIAL
Peter Griffincd593ed2016-04-20 17:13:59 +0100850 select OF_CONTROL
Peter Griffin11ac2362015-07-30 18:55:23 +0100851 help
852 Support for HiKey 96boards platform. It features a HI6220
853 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
854
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530855config TARGET_LS1012AQDS
856 bool "Support ls1012aqds"
York Sun9533acf2016-09-26 08:09:26 -0700857 select ARCH_LS1012A
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530858 select ARM64
Tom Rinie5ec4812017-01-22 19:43:11 -0500859 select BOARD_LATE_INIT
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +0530860 help
861 Support for Freescale LS1012AQDS platform.
862 The LS1012A Development System (QDS) is a high-performance
863 development platform that supports the QorIQ LS1012A
864 Layerscape Architecture processor.
865
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530866config TARGET_LS1012ARDB
867 bool "Support ls1012ardb"
York Sun9533acf2016-09-26 08:09:26 -0700868 select ARCH_LS1012A
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530869 select ARM64
Tom Rinie5ec4812017-01-22 19:43:11 -0500870 select BOARD_LATE_INIT
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +0530871 help
872 Support for Freescale LS1012ARDB platform.
873 The LS1012A Reference design board (RDB) is a high-performance
874 development platform that supports the QorIQ LS1012A
875 Layerscape Architecture processor.
876
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530877config TARGET_LS1012AFRDM
878 bool "Support ls1012afrdm"
York Sun9533acf2016-09-26 08:09:26 -0700879 select ARCH_LS1012A
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +0530880 select ARM64
881 help
882 Support for Freescale LS1012AFRDM platform.
883 The LS1012A Freedom board (FRDM) is a high-performance
884 development platform that supports the QorIQ LS1012A
885 Layerscape Architecture processor.
886
Wang Huan550e3dc2014-09-05 13:52:44 +0800887config TARGET_LS1021AQDS
Alison Wang0de15702014-12-03 16:18:09 +0800888 bool "Support ls1021aqds"
Tom Rinie5ec4812017-01-22 19:43:11 -0500889 select BOARD_LATE_INIT
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100890 select CPU_V7
Hongbo Zhangadee1d42016-09-21 18:31:04 +0800891 select CPU_V7_HAS_NONSEC
892 select CPU_V7_HAS_VIRT
Alison Wang50f0c662014-12-03 15:00:45 +0800893 select SUPPORT_SPL
York Sun0a37cf82016-09-26 08:09:27 -0700894 select ARCH_LS1021A
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900895 select ARCH_SUPPORT_PSCI
York Sun5e8bd7e2016-09-26 08:09:29 -0700896 select LS1_DEEP_SLEEP
York Sund26e34c2016-12-28 08:43:40 -0800897 select SYS_FSL_DDR
Simon Glassa5d67542017-01-23 13:31:20 -0700898 select BOARD_EARLY_INIT_F
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900899
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800900config TARGET_LS1021ATWR
Alison Wang0de15702014-12-03 16:18:09 +0800901 bool "Support ls1021atwr"
Tom Rinie5ec4812017-01-22 19:43:11 -0500902 select BOARD_LATE_INIT
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100903 select CPU_V7
Hongbo Zhangadee1d42016-09-21 18:31:04 +0800904 select CPU_V7_HAS_NONSEC
905 select CPU_V7_HAS_VIRT
Alison Wang50f0c662014-12-03 15:00:45 +0800906 select SUPPORT_SPL
York Sun0a37cf82016-09-26 08:09:27 -0700907 select ARCH_LS1021A
Masahiro Yamada217f92b2016-08-30 16:22:22 +0900908 select ARCH_SUPPORT_PSCI
York Sun5e8bd7e2016-09-26 08:09:29 -0700909 select LS1_DEEP_SLEEP
Simon Glassa5d67542017-01-23 13:31:20 -0700910 select BOARD_EARLY_INIT_F
Wang Huanc8a7d9d2014-09-05 13:52:45 +0800911
Feng Li20c700f2016-11-03 14:15:17 +0800912config TARGET_LS1021AIOT
913 bool "Support ls1021aiot"
Tom Rinie5ec4812017-01-22 19:43:11 -0500914 select BOARD_LATE_INIT
Feng Li20c700f2016-11-03 14:15:17 +0800915 select CPU_V7
916 select CPU_V7_HAS_NONSEC
917 select CPU_V7_HAS_VIRT
918 select SUPPORT_SPL
919 select ARCH_LS1021A
920 select ARCH_SUPPORT_PSCI
921 help
922 Support for Freescale LS1021AIOT platform.
923 The LS1021A Freescale board (IOT) is a high-performance
924 development platform that supports the QorIQ LS1021A
925 Layerscape Architecture processor.
926
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800927config TARGET_LS1043AQDS
928 bool "Support ls1043aqds"
York Sun0a37cf82016-09-26 08:09:27 -0700929 select ARCH_LS1043A
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800930 select ARM64
931 select ARMV8_MULTIENTRY
Tom Rinie5ec4812017-01-22 19:43:11 -0500932 select BOARD_LATE_INIT
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800933 select SUPPORT_SPL
Simon Glassa5d67542017-01-23 13:31:20 -0700934 select BOARD_EARLY_INIT_F
Shaohui Xie02b5d2e2015-11-11 17:58:37 +0800935 help
936 Support for Freescale LS1043AQDS platform.
937
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800938config TARGET_LS1043ARDB
939 bool "Support ls1043ardb"
York Sun0a37cf82016-09-26 08:09:27 -0700940 select ARCH_LS1043A
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800941 select ARM64
Hou Zhiqiang831c0682015-10-26 19:47:57 +0800942 select ARMV8_MULTIENTRY
Tom Rinie5ec4812017-01-22 19:43:11 -0500943 select BOARD_LATE_INIT
Gong Qianyu3ad44722015-10-26 19:47:53 +0800944 select SUPPORT_SPL
Simon Glassa5d67542017-01-23 13:31:20 -0700945 select BOARD_EARLY_INIT_F
Mingkai Huf3a8e2b2015-10-26 19:47:52 +0800946 help
947 Support for Freescale LS1043ARDB platform.
948
Shaohui Xie126fe702016-09-07 17:56:14 +0800949config TARGET_LS1046AQDS
950 bool "Support ls1046aqds"
York Sunda28e582016-09-26 08:09:24 -0700951 select ARCH_LS1046A
Shaohui Xie126fe702016-09-07 17:56:14 +0800952 select ARM64
953 select ARMV8_MULTIENTRY
Tom Rinie5ec4812017-01-22 19:43:11 -0500954 select BOARD_LATE_INIT
Shaohui Xie126fe702016-09-07 17:56:14 +0800955 select SUPPORT_SPL
956 select DM_SPI_FLASH if DM_SPI
Simon Glassa5d67542017-01-23 13:31:20 -0700957 select BOARD_EARLY_INIT_F
Shaohui Xie126fe702016-09-07 17:56:14 +0800958 help
959 Support for Freescale LS1046AQDS platform.
960 The LS1046A Development System (QDS) is a high-performance
961 development platform that supports the QorIQ LS1046A
962 Layerscape Architecture processor.
963
Mingkai Hudd029362016-09-07 18:47:28 +0800964config TARGET_LS1046ARDB
965 bool "Support ls1046ardb"
York Sunda28e582016-09-26 08:09:24 -0700966 select ARCH_LS1046A
Mingkai Hudd029362016-09-07 18:47:28 +0800967 select ARM64
968 select ARMV8_MULTIENTRY
Tom Rinie5ec4812017-01-22 19:43:11 -0500969 select BOARD_LATE_INIT
Mingkai Hudd029362016-09-07 18:47:28 +0800970 select SUPPORT_SPL
971 select DM_SPI_FLASH if DM_SPI
Hou Zhiqiangdccef2e2016-12-09 16:09:01 +0800972 select POWER_MC34VR500
Simon Glassa5d67542017-01-23 13:31:20 -0700973 select BOARD_EARLY_INIT_F
Mingkai Hudd029362016-09-07 18:47:28 +0800974 help
975 Support for Freescale LS1046ARDB platform.
976 The LS1046A Reference Design Board (RDB) is a high-performance
977 development platform that supports the QorIQ LS1046A
978 Layerscape Architecture processor.
979
Masahiro Yamadadd840582014-07-30 14:08:14 +0900980config TARGET_H2200
981 bool "Support h2200"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100982 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900983
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -0700984config TARGET_ZIPITZ2
985 bool "Support zipitz2"
986 select CPU_PXA
987
Masahiro Yamadadd840582014-07-30 14:08:14 +0900988config TARGET_COLIBRI_PXA270
989 bool "Support colibri_pxa270"
Georges Savoundararadj2e07c242014-10-28 23:16:09 +0100990 select CPU_PXA
Masahiro Yamadadd840582014-07-30 14:08:14 +0900991
Masahiro Yamada66cba042014-10-03 19:21:07 +0900992config ARCH_UNIPHIER
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +0900993 bool "Socionext UniPhier SoCs"
Tom Rinie5ec4812017-01-22 19:43:11 -0500994 select BOARD_LATE_INIT
Masahiro Yamada48264d92016-02-02 21:11:32 +0900995 select CLK_UNIPHIER
Masahiro Yamada4e819952015-03-31 12:47:54 +0900996 select DM
Masahiro Yamadab800cbd2016-02-16 17:03:50 +0900997 select DM_GPIO
Masahiro Yamada4e819952015-03-31 12:47:54 +0900998 select DM_I2C
Masahiro Yamada4aceb3f2016-02-18 19:52:49 +0900999 select DM_MMC
Masahiro Yamada4fb96c42016-10-08 13:25:31 +09001000 select DM_RESET
Masahiro Yamadab5550e42016-09-14 01:05:59 +09001001 select DM_SERIAL
Masahiro Yamada47a79f62016-09-14 01:06:00 +09001002 select DM_USB
Masahiro Yamadab5550e42016-09-14 01:05:59 +09001003 select OF_CONTROL
1004 select OF_LIBFDT
Masahiro Yamada27350c92016-09-17 03:33:01 +09001005 select PINCTRL
Masahiro Yamada561ca642017-01-21 18:05:22 +09001006 select SPL_DM if SPL
1007 select SPL_LIBCOMMON_SUPPORT if SPL
1008 select SPL_LIBGENERIC_SUPPORT if SPL
1009 select SPL_OF_CONTROL if SPL
1010 select SPL_PINCTRL if SPL
Masahiro Yamadab5550e42016-09-14 01:05:59 +09001011 select SUPPORT_SPL
Masahiro Yamadab6ef3a32015-05-29 17:30:01 +09001012 help
1013 Support for UniPhier SoC family developed by Socionext Inc.
1014 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada66cba042014-10-03 19:21:07 +09001015
Vikas Manocha0a61ee82016-01-15 17:49:06 -08001016config STM32
1017 bool "Support STM32"
rev13@wp.pled09a552015-03-01 12:44:42 +01001018 select CPU_V7M
Kamil Lulko66562412015-12-01 09:08:19 +01001019 select DM
1020 select DM_SERIAL
rev13@wp.pled09a552015-03-01 12:44:42 +01001021
Simon Glass2444dae2015-08-30 16:55:38 -06001022config ARCH_ROCKCHIP
1023 bool "Support Rockchip SoCs"
Simon Glass2444dae2015-08-30 16:55:38 -06001024 select OF_CONTROL
Simon Glassaa150382016-06-12 23:30:14 -06001025 select BLK
Simon Glass2444dae2015-08-30 16:55:38 -06001026 select DM
Kever Yanga381bcf2016-07-19 21:16:59 +08001027 select SPL_DM if SPL
Simon Glassaa150382016-06-12 23:30:14 -06001028 select SYS_MALLOC_F
Kever Yanga381bcf2016-07-19 21:16:59 +08001029 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glassaa150382016-06-12 23:30:14 -06001030 select DM_GPIO
1031 select DM_I2C
1032 select DM_MMC
Simon Glass42b37d82016-06-12 23:30:24 -06001033 select DM_MMC_OPS
Simon Glassaa150382016-06-12 23:30:14 -06001034 select DM_SERIAL
1035 select DM_SPI
1036 select DM_SPI_FLASH
MengDongyang892742d2016-08-24 12:02:18 +08001037 select DM_USB if USB
Kever Yang8d29e3a2016-09-23 15:57:21 +08001038 select DM_PWM
1039 select DM_REGULATOR
Simon Glass2444dae2015-08-30 16:55:38 -06001040
Sergey Temerkhanov746f9852015-10-14 09:55:50 -07001041config TARGET_THUNDERX_88XX
1042 bool "Support ThunderX 88xx"
Marek Vasutb4ba1692016-06-01 02:33:53 +02001043 select ARM64
Sergey Temerkhanov746f9852015-10-14 09:55:50 -07001044 select OF_CONTROL
Tom Rini067716b2016-08-22 08:22:17 -04001045 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov746f9852015-10-14 09:55:50 -07001046
maxims@google.com4697abe2017-01-18 13:44:55 -08001047config ARCH_ASPEED
1048 bool "Support Aspeed SoCs"
1049 select OF_CONTROL
1050 select DM
1051
Masahiro Yamadadd840582014-07-30 14:08:14 +09001052endchoice
1053
maxims@google.com4697abe2017-01-18 13:44:55 -08001054source "arch/arm/mach-aspeed/Kconfig"
1055
Masahiro Yamada4614b892015-02-20 17:04:01 +09001056source "arch/arm/mach-at91/Kconfig"
1057
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +09001058source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamada3491ba62014-08-31 07:11:01 +09001059
Masahiro Yamadaddf6bd42015-03-19 19:42:56 +09001060source "arch/arm/mach-davinci/Kconfig"
Simon Glass34e609c2015-02-05 21:41:39 -07001061
Thomas Abraham77b55e82015-08-03 17:58:00 +05301062source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamada72df68c2014-08-31 07:11:00 +09001063
Masahiro Yamada72a8ff42015-02-20 17:04:08 +09001064source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamadaef2b6942014-08-31 07:11:07 +09001065
Masahiro Yamada5cbbd9b2015-04-21 21:59:36 +09001066source "arch/arm/mach-integrator/Kconfig"
1067
Masahiro Yamada39a72342015-02-20 17:04:11 +09001068source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamadac338f092014-08-31 07:11:05 +09001069
Masahiro Yamada56f86e32015-02-20 17:04:06 +09001070source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamada47539e22014-08-31 07:10:59 +09001071
Stefan Roesec3d89142015-08-25 13:18:38 +02001072source "arch/arm/mach-mvebu/Kconfig"
1073
York Sun0a37cf82016-09-26 08:09:27 -07001074source "arch/arm/cpu/armv7/ls102xa/Kconfig"
1075
Adrian Alonso1a8150d2015-09-03 11:49:28 -05001076source "arch/arm/cpu/armv7/mx7/Kconfig"
1077
Boris BREZILLON89ebc822015-03-04 13:13:03 +01001078source "arch/arm/cpu/armv7/mx6/Kconfig"
1079
Andrej Rosano424ee3d2015-04-08 18:56:29 +02001080source "arch/arm/cpu/armv7/mx5/Kconfig"
1081
Tom Rini983e3702016-11-07 21:34:54 -05001082source "arch/arm/mach-omap2/Kconfig"
Madan Srinivas63847262016-05-19 19:10:43 -05001083
York Sunda28e582016-09-26 08:09:24 -07001084source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
1085
Masahiro Yamada3e93b4e2015-02-20 17:04:09 +09001086source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada22f2be72014-08-31 07:11:06 +09001087
Nobuhiro Iwamatsubadbb632015-10-09 16:40:09 +09001088source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadaf40b9892014-08-31 07:10:57 +09001089
Beniamino Galvanibfcef282016-05-08 08:30:16 +02001090source "arch/arm/mach-meson/Kconfig"
1091
Simon Glass2444dae2015-08-30 16:55:38 -06001092source "arch/arm/mach-rockchip/Kconfig"
1093
Minkyu Kang225f5ee2015-11-20 15:24:57 +09001094source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass311757b2014-10-07 22:01:50 -06001095
Mateusz Kulikowski08592132016-03-31 23:12:32 +02001096source "arch/arm/mach-snapdragon/Kconfig"
1097
Masahiro Yamada7865f4b2015-04-21 20:38:20 +09001098source "arch/arm/mach-socfpga/Kconfig"
1099
Vikas Manocha0a61ee82016-01-15 17:49:06 -08001100source "arch/arm/mach-stm32/Kconfig"
1101
Masahiro Yamada09f455d2015-02-20 17:04:04 +09001102source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +09001103
Masahiro Yamada4c425572015-02-27 02:26:42 +09001104source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada66cba042014-10-03 19:21:07 +09001105
Masahiro Yamada0107f242015-03-16 16:43:22 +09001106source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamadaddd960e2014-08-31 07:10:56 +09001107
Hans de Goedeea624e12014-11-14 09:34:30 +01001108source "arch/arm/cpu/armv7/Kconfig"
1109
Siva Durga Prasad Paladugu75580002015-06-10 15:50:56 +05301110source "arch/arm/cpu/armv8/zynqmp/Kconfig"
1111
Linus Walleij23b58772015-03-09 10:53:21 +01001112source "arch/arm/cpu/armv8/Kconfig"
1113
Boris BREZILLONa05a6042015-03-04 13:13:04 +01001114source "arch/arm/imx-common/Kconfig"
1115
Heiko Schocherd8ccbe92016-06-07 08:31:25 +02001116source "board/bosch/shc/Kconfig"
Hannes Schmelzera4d79992016-06-22 12:36:14 +02001117source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer2290fe02016-06-22 12:36:13 +02001118source "board/BuR/brppt1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001119source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001120source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001121source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001122source "board/armadeus/apf27/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001123source "board/armltd/vexpress/Kconfig"
1124source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001125source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae43486e42016-06-02 15:10:56 -07001126source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001127source "board/broadcom/bcm28155_ap/Kconfig"
Steve Raeabb16782014-11-11 11:32:18 -08001128source "board/broadcom/bcmcygnus/Kconfig"
1129source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov746f9852015-10-14 09:55:50 -07001130source "board/cavium/thunderx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001131source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001132source "board/compulab/cm_t335/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -04001133source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001134source "board/creative/xfi3/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001135source "board/denx/m28evk/Kconfig"
1136source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha44937212015-11-09 16:42:07 +05301137source "board/freescale/ls2080a/Kconfig"
1138source "board/freescale/ls2080aqds/Kconfig"
1139source "board/freescale/ls2080ardb/Kconfig"
Wang Huan550e3dc2014-09-05 13:52:44 +08001140source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xie02b5d2e2015-11-11 17:58:37 +08001141source "board/freescale/ls1043aqds/Kconfig"
Wang Huanc8a7d9d2014-09-05 13:52:45 +08001142source "board/freescale/ls1021atwr/Kconfig"
Feng Li20c700f2016-11-03 14:15:17 +08001143source "board/freescale/ls1021aiot/Kconfig"
Shaohui Xie126fe702016-09-07 17:56:14 +08001144source "board/freescale/ls1046aqds/Kconfig"
Mingkai Huf3a8e2b2015-10-26 19:47:52 +08001145source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hudd029362016-09-07 18:47:28 +08001146source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha9d044fc2016-06-03 18:41:34 +05301147source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwaha3b6e3892016-06-03 18:41:35 +05301148source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwahaff78aa22016-06-03 18:41:36 +05301149source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001150source "board/freescale/mx23evk/Kconfig"
1151source "board/freescale/mx25pdk/Kconfig"
1152source "board/freescale/mx28evk/Kconfig"
1153source "board/freescale/mx31ads/Kconfig"
1154source "board/freescale/mx31pdk/Kconfig"
1155source "board/freescale/mx35pdk/Kconfig"
1156source "board/freescale/mx51evk/Kconfig"
1157source "board/freescale/mx53ard/Kconfig"
1158source "board/freescale/mx53evk/Kconfig"
1159source "board/freescale/mx53loco/Kconfig"
1160source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor9702ec02016-06-05 03:43:00 +03001161source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001162source "board/freescale/vf610twr/Kconfig"
Marcin Niestrojab38bf62017-01-25 09:53:08 +01001163source "board/grinn/chiliboard/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001164source "board/gumstix/pepper/Kconfig"
1165source "board/h2200/Kconfig"
Tom Rini345243e2015-09-02 15:32:20 -04001166source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001167source "board/imx31_phycore/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001168source "board/isee/igep0033/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001169source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001170source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)931a1d22015-09-21 22:43:39 +02001171source "board/phytec/pcm052/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001172source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001173source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001174source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001175source "board/siemens/draco/Kconfig"
1176source "board/siemens/pxm2/Kconfig"
1177source "board/siemens/rut/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001178source "board/silica/pengwyn/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001179source "board/spear/spear300/Kconfig"
1180source "board/spear/spear310/Kconfig"
1181source "board/spear/spear320/Kconfig"
1182source "board/spear/spear600/Kconfig"
1183source "board/spear/x600/Kconfig"
Vikas Manocha9fa32b12014-11-18 10:42:22 -08001184source "board/st/stv0991/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001185source "board/sunxi/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001186source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d1b2982015-09-07 07:43:20 +02001187source "board/tcl/sl50/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001188source "board/ti/am335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001189source "board/ti/am43xx/Kconfig"
Gilles Gameiroa2bc4322015-02-10 01:36:01 -08001190source "board/birdland/bav335x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001191source "board/ti/ti814x/Kconfig"
1192source "board/ti/ti816x/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001193source "board/timll/devkit3250/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001194source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitye7b860f2015-04-15 16:24:26 +05301195source "board/toradex/colibri_vf/Kconfig"
Sebastien Bourdelind9e268e2016-11-08 12:18:07 -05001196source "board/technologic/ts4600/Kconfig"
Lucile Quirion9ee16892015-06-30 17:17:47 -04001197source "board/technologic/ts4800/Kconfig"
Yegor Yefremov6ce89322015-05-29 19:27:29 +02001198source "board/vscom/baltos/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001199source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)412ae532015-03-31 11:40:51 +02001200source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhickf19eb152016-03-20 18:37:00 -07001201source "board/zipitz2/Kconfig"
Masahiro Yamadadd840582014-07-30 14:08:14 +09001202
Masahiro Yamada51b17d42014-09-01 11:06:34 +09001203source "arch/arm/Kconfig.debug"
1204
Masahiro Yamadadd840582014-07-30 14:08:14 +09001205endmenu