blob: 1f596792485daeec7af326d2ce73a7b37b59cb5e [file] [log] [blame]
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001menu "ARM architecture"
2 depends on ARM
3
4config SYS_ARCH
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09005 default "arm"
6
Masahiro Yamada0d46c342014-09-14 03:01:51 +09007config ARM64
8 bool
Masahiro Yamada653e9fe2016-07-25 19:56:03 +09009 select PHYS_64BIT
Tom Rini84f9b612016-08-22 08:22:17 -040010 select SYS_CACHE_SHIFT_6
Masahiro Yamada0d46c342014-09-14 03:01:51 +090011
Lokesh Vutlaf94277d2016-03-24 16:02:00 +053012config DMA_ADDR_T_64BIT
13 bool
14 default y if ARM64
15
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010016config HAS_VBAR
Tom Rinibca01962016-08-22 08:22:18 -040017 bool
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010018
Albert ARIBAUDa3823222015-10-23 18:06:40 +020019config HAS_THUMB2
Tom Rinibca01962016-08-22 08:22:18 -040020 bool
Albert ARIBAUDa3823222015-10-23 18:06:40 +020021
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010022config CPU_ARM720T
Tom Rinibca01962016-08-22 08:22:18 -040023 bool
Tom Rini84f9b612016-08-22 08:22:17 -040024 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010025
26config CPU_ARM920T
Tom Rinibca01962016-08-22 08:22:18 -040027 bool
Tom Rini84f9b612016-08-22 08:22:17 -040028 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010029
30config CPU_ARM926EJS
Tom Rinibca01962016-08-22 08:22:18 -040031 bool
Tom Rini84f9b612016-08-22 08:22:17 -040032 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010033
34config CPU_ARM946ES
Tom Rinibca01962016-08-22 08:22:18 -040035 bool
Tom Rini84f9b612016-08-22 08:22:17 -040036 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010037
38config CPU_ARM1136
Tom Rinibca01962016-08-22 08:22:18 -040039 bool
Tom Rini84f9b612016-08-22 08:22:17 -040040 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010041
42config CPU_ARM1176
Tom Rinibca01962016-08-22 08:22:18 -040043 bool
44 select HAS_VBAR
Tom Rini84f9b612016-08-22 08:22:17 -040045 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010046
47config CPU_V7
Tom Rinibca01962016-08-22 08:22:18 -040048 bool
49 select HAS_VBAR
50 select HAS_THUMB2
Tom Rini84f9b612016-08-22 08:22:17 -040051 select SYS_CACHE_SHIFT_6
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010052
rev13@wp.plb3b57e82015-03-01 12:44:39 +010053config CPU_V7M
54 bool
Tom Rinibca01962016-08-22 08:22:18 -040055 select HAS_THUMB2
Tom Rini84f9b612016-08-22 08:22:17 -040056 select SYS_CACHE_SHIFT_5
rev13@wp.plb3b57e82015-03-01 12:44:39 +010057
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010058config CPU_PXA
Tom Rinibca01962016-08-22 08:22:18 -040059 bool
Tom Rini84f9b612016-08-22 08:22:17 -040060 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010061
62config CPU_SA1100
Tom Rinibca01962016-08-22 08:22:18 -040063 bool
Tom Rini84f9b612016-08-22 08:22:17 -040064 select SYS_CACHE_SHIFT_5
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010065
66config SYS_CPU
Tom Rinibca01962016-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 Yamadadade3b02014-11-06 11:39:27 +090077 default "armv8" if ARM64
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +010078
Marek Vasutb06c9542016-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 Rini84f9b612016-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 Walleij800d6fd2015-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 Fan10ddab42015-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 Przywara48321ba2016-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 Estevam988f5052016-12-15 19:30:40 -0200129config USE_ARCH_MEMCPY
130 bool "Use an assembly optimized implementation of memcpy"
Tom Rini443b5162017-01-12 13:16:02 -0500131 default y
Masahiro Yamadae55f1462016-12-19 19:31:02 +0900132 depends on !ARM64
Fabio Estevam988f5052016-12-15 19:30:40 -0200133 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
Tom Rini443b5162017-01-12 13:16:02 -0500138config SPL_USE_ARCH_MEMCPY
139 bool "Use an assembly optimized implementation of memcpy"
140 default y if USE_ARCH_MEMCPY
141 depends on !ARM64
142 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
Fabio Estevam988f5052016-12-15 19:30:40 -0200147config USE_ARCH_MEMSET
148 bool "Use an assembly optimized implementation of memset"
Tom Rini443b5162017-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 Yamadae55f1462016-12-19 19:31:02 +0900159 depends on !ARM64
Fabio Estevam988f5052016-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 Rini5c02a1f2016-11-07 21:34:53 -0500165config ARCH_OMAP2
166 bool
167 select CPU_V7
168 select SUPPORT_SPL
169
Alison Wang73818d52016-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 Yamadad3ae6782014-07-30 14:08:14 +0900176choice
177 prompt "Target select"
Simon Glassdfd904a2015-08-30 19:19:30 -0600178 default TARGET_HIKEY
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900179
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900180config ARCH_AT91
181 bool "Atmel AT91"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900182
183config TARGET_EDB93XX
184 bool "Support edb93xx"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100185 select CPU_ARM920T
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900186
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900187config TARGET_ASPENITE
188 bool "Support aspenite"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100189 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900190
191config TARGET_GPLUGD
192 bool "Support gplugd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100193 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900194
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900195config ARCH_DAVINCI
196 bool "TI DaVinci"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100197 select CPU_ARM926EJS
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900198 help
199 Support for TI's DaVinci platform.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900200
Masahiro Yamadad7570852014-08-31 07:10:59 +0900201config KIRKWOOD
202 bool "Marvell Kirkwood"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100203 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900204
Stefan Roese383e0c12015-08-25 13:18:38 +0200205config ARCH_MVEBU
Stefan Roesecb410332016-05-25 08:13:45 +0200206 bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)"
Stefan Roese096de4f2015-09-01 11:27:52 +0200207 select OF_CONTROL
208 select OF_SEPARATE
209 select DM
Stefan Roese05b38c12015-11-19 07:46:15 +0100210 select DM_ETH
Stefan Roese7f9f8e32015-09-02 08:41:41 +0200211 select DM_SERIAL
Stefan Roese49e7d772015-11-20 13:51:57 +0100212 select DM_SPI
213 select DM_SPI_FLASH
Stefan Roese9b1e2312014-10-22 12:13:19 +0200214
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900215config TARGET_DEVKIT3250
216 bool "Support devkit3250"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100217 select CPU_ARM926EJS
Vladimir Zapolskiy89f86a22015-07-18 01:47:11 +0300218 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900219
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +0200220config TARGET_WORK_92105
221 bool "Support work_92105"
222 select CPU_ARM926EJS
223 select SUPPORT_SPL
224
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900225config TARGET_MX25PDK
226 bool "Support mx25pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100227 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900228
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900229config TARGET_ZMX25
230 bool "Support zmx25"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100231 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900232
233config TARGET_APF27
234 bool "Support apf27"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100235 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900236 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900237
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900238config TARGET_APX4DEVKIT
239 bool "Support apx4devkit"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100240 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900241 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900242
243config TARGET_XFI3
244 bool "Support xfi3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100245 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900246 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900247
248config TARGET_M28EVK
249 bool "Support m28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100250 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900251 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900252
253config TARGET_MX23EVK
254 bool "Support mx23evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100255 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900256 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900257
258config TARGET_MX28EVK
259 bool "Support mx28evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100260 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900261 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900262
263config TARGET_MX23_OLINUXINO
264 bool "Support mx23_olinuxino"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100265 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900266 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900267
268config TARGET_BG0900
269 bool "Support bg0900"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100270 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900271 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900272
273config TARGET_SANSA_FUZE_PLUS
274 bool "Support sansa_fuze_plus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100275 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900276 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900277
278config TARGET_SC_SPS_1
279 bool "Support sc_sps_1"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100280 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900281 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900282
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900283config ORION5X
284 bool "Marvell Orion"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100285 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900286
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900287config TARGET_SPEAR300
288 bool "Support spear300"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100289 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900290
291config TARGET_SPEAR310
292 bool "Support spear310"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100293 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900294
295config TARGET_SPEAR320
296 bool "Support spear320"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100297 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900298
299config TARGET_SPEAR600
300 bool "Support spear600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100301 select CPU_ARM926EJS
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900302
Vikas Manocha33913c52014-11-18 10:42:22 -0800303config TARGET_STV0991
304 bool "Support stv0991"
305 select CPU_V7
Masahiro Yamada0906a822015-03-31 12:48:01 +0900306 select DM
307 select DM_SERIAL
Vikas Manocha8cc062f2015-07-02 18:29:41 -0700308 select DM_SPI
309 select DM_SPI_FLASH
310 select SPI_FLASH
Vikas Manocha33913c52014-11-18 10:42:22 -0800311
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900312config TARGET_X600
313 bool "Support x600"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100314 select CPU_ARM926EJS
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900315 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900316
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900317config TARGET_IMX31_PHYCORE
Tom Rini969dc222017-01-22 19:43:09 -0500318 bool "Support imx31_phycore_eet"
319 select CPU_ARM1136
320
321config TARGET_IMX31_PHYCORE_EET
322 bool "Support imx31_phycore_eet"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100323 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900324
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900325config TARGET_MX31ADS
326 bool "Support mx31ads"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100327 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900328
329config TARGET_MX31PDK
330 bool "Support mx31pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100331 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900332 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900333
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900334config TARGET_WOODBURN
335 bool "Support woodburn"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100336 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900337
338config TARGET_WOODBURN_SD
339 bool "Support woodburn_sd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100340 select CPU_ARM1136
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900341 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900342
343config TARGET_FLEA3
344 bool "Support flea3"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100345 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900346
347config TARGET_MX35PDK
348 bool "Support mx35pdk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100349 select CPU_ARM1136
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900350
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900351config ARCH_BCM283X
352 bool "Broadcom BCM283X family"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900353 select DM
354 select DM_SERIAL
355 select DM_GPIO
Fabian Vogtf9e3ed52016-09-26 14:26:51 +0200356 select OF_CONTROL
Stephen Warrendc7ea682015-02-16 12:16:15 -0700357
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900358config TARGET_VEXPRESS_CA15_TC2
359 bool "Support vexpress_ca15_tc2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100360 select CPU_V7
Hans de Goede85437352014-11-14 09:34:30 +0100361 select CPU_V7_HAS_NONSEC
362 select CPU_V7_HAS_VIRT
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900363
364config TARGET_VEXPRESS_CA5X2
365 bool "Support vexpress_ca5x2"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100366 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900367
368config TARGET_VEXPRESS_CA9X4
369 bool "Support vexpress_ca9x4"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100370 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900371
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +0200372config TARGET_BRXRE1
373 bool "Support BRXRE1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500374 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900375
Hannes Schmelzer20ccb432016-06-22 12:36:13 +0200376config TARGET_BRPPT1
377 bool "Support BRPPT1"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500378 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900379
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900380config TARGET_DRACO
381 bool "Support draco"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500382 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200383 select DM
384 select DM_SERIAL
385 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900386
Heiko Schocher9ba67f22015-06-15 14:57:15 +0200387config TARGET_THUBAN
388 bool "Support thuban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500389 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200390 select DM
391 select DM_SERIAL
392 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900393
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200394config TARGET_RASTABAN
395 bool "Support rastaban"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500396 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200397 select DM
398 select DM_SERIAL
399 select DM_GPIO
Heiko Schocherb7a6d142015-06-15 14:56:41 +0200400
Heiko Schochercbec11a2016-06-07 08:55:45 +0200401config TARGET_ETAMIN
Tom Rinibca01962016-08-22 08:22:18 -0400402 bool "Support etamin"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500403 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200404 select DM
405 select DM_SERIAL
406 select DM_GPIO
Heiko Schochercbec11a2016-06-07 08:55:45 +0200407
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900408config TARGET_PXM2
409 bool "Support pxm2"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500410 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200411 select DM
412 select DM_SERIAL
413 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900414
415config TARGET_RUT
416 bool "Support rut"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500417 select ARCH_OMAP2
Heiko Schocher107ef972016-06-13 15:16:01 +0200418 select DM
419 select DM_SERIAL
420 select DM_GPIO
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900421
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900422config TARGET_TI814X_EVM
423 bool "Support ti814x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500424 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900425
426config TARGET_TI816X_EVM
427 bool "Support ti816x_evm"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500428 select ARCH_OMAP2
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900429
Steve Rae45f2c702016-06-02 15:10:56 -0700430config TARGET_BCM23550_W1D
431 bool "Support bcm23550_w1d"
432 select CPU_V7
433
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900434config TARGET_BCM28155_AP
435 bool "Support bcm28155_ap"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100436 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900437
Steve Rae1c5f31c2014-11-11 11:32:18 -0800438config TARGET_BCMCYGNUS
439 bool "Support bcmcygnus"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100440 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700441
Steve Rae1c5f31c2014-11-11 11:32:18 -0800442config TARGET_BCMNSP
443 bool "Support bcmnsp"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100444 select CPU_V7
Steve Rae729da8b2014-08-11 13:58:26 -0700445
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900446config ARCH_EXYNOS
447 bool "Samsung EXYNOS"
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900448 select DM
Simon Glass7bbb7d92016-11-23 06:34:40 -0700449 select DM_I2C
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900450 select DM_SPI_FLASH
451 select DM_SERIAL
452 select DM_SPI
453 select DM_GPIO
Simon Glassaa8484f2015-10-18 21:17:17 -0600454 select DM_KEYBOARD
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900455
Simon Glass96aa0722014-10-07 22:01:50 -0600456config ARCH_S5PC1XX
457 bool "Samsung S5PC1XX"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100458 select CPU_V7
Masahiro Yamada5ef5ccc2015-03-31 12:47:53 +0900459 select DM
460 select DM_SERIAL
461 select DM_GPIO
Simon Glassc6aa9702016-11-23 06:34:41 -0700462 select DM_I2C
Simon Glass96aa0722014-10-07 22:01:50 -0600463
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900464config ARCH_HIGHBANK
465 bool "Calxeda Highbank"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100466 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900467
Masahiro Yamadacad44162015-04-21 21:59:36 +0900468config ARCH_INTEGRATOR
469 bool "ARM Ltd. Integrator family"
Linus Walleij616d9a02015-07-27 11:22:48 +0200470 select DM
471 select DM_SERIAL
Masahiro Yamadacad44162015-04-21 21:59:36 +0900472
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900473config ARCH_KEYSTONE
474 bool "TI Keystone"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100475 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900476 select SUPPORT_SPL
Tom Rini393a4ce2016-03-16 09:19:43 -0400477 select CMD_POWEROFF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900478
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200479config ARCH_MESON
480 bool "Amlogic Meson"
481 help
482 Support for the Meson SoC family developed by Amlogic Inc.,
483 targeted at media players and tablet computers. We currently
484 support the S905 (GXBaby) 64-bit SoC.
485
Adrian Alonso98810772015-09-03 11:49:28 -0500486config ARCH_MX7
487 bool "Freescale MX7"
488 select CPU_V7
York Sun92c36e22016-12-28 08:43:30 -0800489 select SYS_FSL_HAS_SEC if SECURE_BOOT
490 select SYS_FSL_SEC_COMPAT_4
York Sunfa4199422016-12-28 08:43:31 -0800491 select SYS_FSL_SEC_LE
Adrian Alonso98810772015-09-03 11:49:28 -0500492
Boris BREZILLON51e82662015-03-04 13:13:03 +0100493config ARCH_MX6
494 bool "Freescale MX6"
495 select CPU_V7
York Sun92c36e22016-12-28 08:43:30 -0800496 select SYS_FSL_HAS_SEC if SECURE_BOOT
497 select SYS_FSL_SEC_COMPAT_4
York Sunfa4199422016-12-28 08:43:31 -0800498 select SYS_FSL_SEC_LE
Boris BREZILLON51e82662015-03-04 13:13:03 +0100499
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200500config ARCH_MX5
501 bool "Freescale MX5"
502 select CPU_V7
503
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900504config TARGET_M53EVK
505 bool "Support m53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100506 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900507 select SUPPORT_SPL
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900508
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900509config TARGET_MX51EVK
510 bool "Support mx51evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100511 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900512
513config TARGET_MX53ARD
514 bool "Support mx53ard"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100515 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900516
517config TARGET_MX53EVK
518 bool "Support mx53evk"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100519 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900520
521config TARGET_MX53LOCO
522 bool "Support mx53loco"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100523 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900524
525config TARGET_MX53SMD
526 bool "Support mx53smd"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100527 select CPU_V7
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900528
Masahiro Yamadadd678432014-08-31 07:11:02 +0900529config OMAP34XX
530 bool "OMAP34XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500531 select ARCH_OMAP2
Tom Rinib631c9d2016-07-27 22:29:41 -0400532 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900533
Masahiro Yamadad7f47082014-08-31 07:11:03 +0900534config OMAP44XX
535 bool "OMAP44XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500536 select ARCH_OMAP2
Tom Rinib631c9d2016-07-27 22:29:41 -0400537 select USE_TINY_PRINTF
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900538
Masahiro Yamada420b8162014-08-31 07:11:04 +0900539config OMAP54XX
540 bool "OMAP54XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500541 select ARCH_OMAP2
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500542
543config AM43XX
544 bool "AM43XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500545 select ARCH_OMAP2
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500546 help
547 Support for AM43xx SOC from Texas Instruments.
548 The AM43xx high performance SOC features a Cortex-A9
549 ARM core, a quad core PRU-ICSS for industrial Ethernet
550 protocols, dual camera support, optional 3D graphics
551 and an optional customer programmable secure boot.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900552
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500553config AM33XX
554 bool "AM33XX SoC"
Tom Rini5c02a1f2016-11-07 21:34:53 -0500555 select ARCH_OMAP2
Andrew F. Davis817bbee2016-08-30 14:06:20 -0500556 help
557 Support for AM335x SOC from Texas Instruments.
558 The AM335x high performance SOC features a Cortex-A8
559 ARM core, a dual core PRU-ICSS for industrial Ethernet
560 protocols, optional 3D graphics and an optional customer
561 programmable secure boot.
562
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900563config ARCH_RMOBILE
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900564 bool "Renesas ARM SoCs"
Nobuhiro Iwamatsu7c112732015-10-10 05:58:28 +0900565 select DM
566 select DM_SERIAL
Nikita Kiryanovf5cab0f2014-09-07 18:59:29 +0300567
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300568config TARGET_S32V234EVB
569 bool "Support s32v234evb"
570 select ARM64
York Sun097e3602016-12-28 08:43:42 -0800571 select SYS_FSL_ERRATUM_ESDHC111
Eddy Petrișor5178dc12016-06-05 03:43:00 +0300572
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200573config ARCH_SNAPDRAGON
574 bool "Qualcomm Snapdragon SoCs"
575 select ARM64
576 select DM
577 select DM_GPIO
578 select DM_SERIAL
579 select SPMI
580 select OF_CONTROL
581 select OF_SEPARATE
582
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900583config ARCH_SOCFPGA
584 bool "Altera SOCFPGA family"
Marek Vasut69295472014-12-30 18:16:08 +0100585 select CPU_V7
586 select SUPPORT_SPL
Marek Vasutf44fb6f2015-08-19 23:23:52 +0200587 select OF_CONTROL
588 select SPL_OF_CONTROL
Masahiro Yamadae2005542015-03-31 12:47:59 +0900589 select DM
590 select DM_SPI_FLASH
591 select DM_SPI
Marek Vasutbcd861b2016-11-16 17:20:23 +0100592 select ENABLE_ARM_SOC_BOOT0_HOOK
Marek Vasut69295472014-12-30 18:16:08 +0100593
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300594config TARGET_CM_T43
595 bool "Support cm_t43"
Tom Rini28eec372016-11-07 21:34:54 -0500596 select ARCH_OMAP2
Nikita Kiryanov2b7487c2015-07-30 23:56:23 +0300597
Ian Campbelld8e69e02014-10-24 21:20:44 +0100598config ARCH_SUNXI
599 bool "Support sunxi (Allwinner) SoCs"
Hans de Goedec9511672016-04-03 09:41:44 +0200600 select CMD_GPIO
Hans de Goede2c526402016-05-15 13:51:58 +0200601 select CMD_MMC if MMC
Yann E. MORINe28217d2016-10-31 22:33:40 +0100602 select CMD_USB if DISTRO_DEFAULTS
Hans de Goede03914882015-04-15 20:46:48 +0200603 select DM
Tom Rini10e87172015-06-30 16:51:15 -0400604 select DM_ETH
Hans de Goedec8d43472015-12-21 20:22:00 +0100605 select DM_GPIO
606 select DM_KEYBOARD
Tom Rini10e87172015-06-30 16:51:15 -0400607 select DM_SERIAL
Yann E. MORINe28217d2016-10-31 22:33:40 +0100608 select DM_USB if DISTRO_DEFAULTS
Hans de Goede48a234a2016-03-22 22:51:52 +0100609 select OF_BOARD_SETUP
Hans de Goede03914882015-04-15 20:46:48 +0200610 select OF_CONTROL
611 select OF_SEPARATE
Alexander Graf0099be02016-03-29 17:29:07 +0200612 select SPL_STACK_R if SUPPORT_SPL
613 select SPL_SYS_MALLOC_SIMPLE if SUPPORT_SPL
Hans de Goede9cce88a2015-12-10 11:10:17 +0100614 select SYS_NS16550
Yann E. MORINe28217d2016-10-31 22:33:40 +0100615 select USB if DISTRO_DEFAULTS
616 select USB_STORAGE if DISTRO_DEFAULTS
617 select USB_KEYBOARD if DISTRO_DEFAULTS
Hans de Goede42a31822016-06-10 12:19:40 +0200618 select USE_TINY_PRINTF
Chen-Yu Tsai848c2632014-10-22 16:47:44 +0800619
Sebastien Bourdelinf012f662016-11-08 12:18:07 -0500620config TARGET_TS4600
621 bool "Support TS4600"
622 select CPU_ARM926EJS
623 select SUPPORT_SPL
624
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400625config TARGET_TS4800
626 bool "Support TS4800"
627 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800628 select SYS_FSL_ERRATUM_ESDHC_A001
Lucile Quiriona84f6f92015-06-30 17:17:47 -0400629
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900630config TARGET_VF610TWR
631 bool "Support vf610twr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100632 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800633 select SYS_FSL_ERRATUM_ESDHC111
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900634
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530635config TARGET_COLIBRI_VF
636 bool "Support Colibri VF50/61"
637 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800638 select SYS_FSL_ERRATUM_ESDHC111
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +0530639
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200640config TARGET_PCM052
641 bool "Support pcm-052"
642 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800643 select SYS_FSL_ERRATUM_ESDHC111
644 select SYS_FSL_ERRATUM_ESDHC135
645 select SYS_FSL_ERRATUM_ESDHC_A001
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +0200646
Albert ARIBAUD \(3ADEV\)ddef3b62016-09-26 09:08:08 +0200647config TARGET_BK4R1
648 bool "Support BK4r1"
649 select CPU_V7
York Sun097e3602016-12-28 08:43:42 -0800650 select SYS_FSL_ERRATUM_ESDHC111
651 select SYS_FSL_ERRATUM_ESDHC135
652 select SYS_FSL_ERRATUM_ESDHC_A001
Albert ARIBAUD \(3ADEV\)ddef3b62016-09-26 09:08:08 +0200653
Masahiro Yamada8204bd12015-03-16 16:43:24 +0900654config ARCH_ZYNQ
Masahiro Yamadaa3cd8982014-08-31 07:10:55 +0900655 bool "Xilinx Zynq Platform"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100656 select CPU_V7
Masahiro Yamada6e0971b2014-10-20 17:45:56 +0900657 select SUPPORT_SPL
Jagan Tekif522bf52015-06-29 14:17:32 +0530658 select OF_CONTROL
Michal Simek6dae8492016-01-13 14:32:43 +0100659 select SPL_OF_CONTROL if SPL
Masahiro Yamada2df07d42015-03-31 12:47:55 +0900660 select DM
Michal Simek250e05e2015-11-30 14:14:56 +0100661 select DM_ETH
Siva Durga Prasad Paladugud6d00822016-03-10 16:27:39 +0530662 select DM_GPIO
Michal Simek6dae8492016-01-13 14:32:43 +0100663 select SPL_DM if SPL
Michal Simek9ecd2682015-11-30 16:13:03 +0100664 select DM_MMC
Simon Glass4cc87fb2016-07-05 17:10:15 -0600665 select DM_MMC_OPS
Jagan Teki0bd03a52015-06-27 00:51:32 +0530666 select DM_SPI
Simon Glass23d9b622015-10-17 19:41:27 -0600667 select DM_SERIAL
Jagan Teki0bd03a52015-06-27 00:51:32 +0530668 select DM_SPI_FLASH
Michal Simek6dae8492016-01-13 14:32:43 +0100669 select SPL_SEPARATE_BSS if SPL
Simon Glass476e63f2016-07-05 17:10:14 -0600670 select DM_USB if USB
Simon Glass4cc87fb2016-07-05 17:10:15 -0600671 select BLK
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900672
Siva Durga Prasad Paladugu650fb402015-06-10 15:50:57 +0530673config ARCH_ZYNQMP
Michal Simek04b7e622015-01-15 10:01:51 +0100674 bool "Support Xilinx ZynqMP Platform"
675 select ARM64
Michal Simek25b83712015-10-17 19:41:25 -0600676 select DM
677 select OF_CONTROL
678 select DM_SERIAL
Michal Simek72536fd2015-11-20 13:17:22 +0100679 select SUPPORT_SPL
Michal Simek6f88c702016-07-14 15:07:54 +0200680 select CLK
681 select SPL_CLK
Simon Glass476e63f2016-07-05 17:10:14 -0600682 select DM_USB if USB
Michal Simek04b7e622015-01-15 10:01:51 +0100683
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900684config TEGRA
685 bool "NVIDIA Tegra"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900686
Linus Walleij800d6fd2015-01-23 11:50:53 +0100687config TARGET_VEXPRESS64_AEMV8A
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900688 bool "Support vexpress_aemv8a"
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900689 select ARM64
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900690
Linus Walleij800d6fd2015-01-23 11:50:53 +0100691config TARGET_VEXPRESS64_BASE_FVP
692 bool "Support Versatile Express ARMv8a FVP BASE model"
693 select ARM64
694 select SEMIHOSTING
695
Ryan Harkinb6b96652015-10-09 17:18:02 +0100696config TARGET_VEXPRESS64_BASE_FVP_DRAM
697 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM"
698 select ARM64
699 help
700 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides
701 the default config to allow the user to load the images directly into
702 DRAM using model parameters rather than by using semi-hosting to load
703 the files from the host filesystem.
704
Linus Walleijc5822502015-01-23 14:41:10 +0100705config TARGET_VEXPRESS64_JUNO
706 bool "Support Versatile Express Juno Development Platform"
707 select ARM64
708
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530709config TARGET_LS2080A_EMU
710 bool "Support ls2080a_emu"
York Sun4dd8c612016-10-04 14:31:48 -0700711 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900712 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100713 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530714 help
715 Support for Freescale LS2080A_EMU platform
716 The LS2080A Development System (EMULATOR) is a pre silicon
717 development platform that supports the QorIQ LS2080A
718 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900719
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530720config TARGET_LS2080A_SIMU
721 bool "Support ls2080a_simu"
York Sun4dd8c612016-10-04 14:31:48 -0700722 select ARCH_LS2080A
Masahiro Yamada0d46c342014-09-14 03:01:51 +0900723 select ARM64
Linus Walleij74771392015-03-09 10:53:21 +0100724 select ARMV8_MULTIENTRY
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530725 help
726 Support for Freescale LS2080A_SIMU platform
727 The LS2080A Development System (QDS) is a pre silicon
728 development platform that supports the QorIQ LS2080A
729 Layerscape Architecture processor.
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900730
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530731config TARGET_LS2080AQDS
732 bool "Support ls2080aqds"
York Sun4dd8c612016-10-04 14:31:48 -0700733 select ARCH_LS2080A
York Sun03017032015-03-20 19:28:23 -0700734 select ARM64
735 select ARMV8_MULTIENTRY
Scott Wood8e728cd2015-03-24 13:25:02 -0700736 select SUPPORT_SPL
York Sun03017032015-03-20 19:28:23 -0700737 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530738 Support for Freescale LS2080AQDS platform
739 The LS2080A Development System (QDS) is a high-performance
740 development platform that supports the QorIQ LS2080A
York Sun03017032015-03-20 19:28:23 -0700741 Layerscape Architecture processor.
742
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530743config TARGET_LS2080ARDB
744 bool "Support ls2080ardb"
York Sun4dd8c612016-10-04 14:31:48 -0700745 select ARCH_LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700746 select ARM64
747 select ARMV8_MULTIENTRY
Scott Wood212b8d82015-03-24 13:25:03 -0700748 select SUPPORT_SPL
York Sune12abcb2015-03-20 19:28:24 -0700749 help
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +0530750 Support for Freescale LS2080ARDB platform.
751 The LS2080A Reference design board (RDB) is a high-performance
752 development platform that supports the QorIQ LS2080A
York Sune12abcb2015-03-20 19:28:24 -0700753 Layerscape Architecture processor.
754
Peter Griffin31f327e2015-07-30 18:55:23 +0100755config TARGET_HIKEY
756 bool "Support HiKey 96boards Consumer Edition Platform"
757 select ARM64
Peter Griffinff9302f2015-09-10 21:55:16 +0100758 select DM
759 select DM_GPIO
Peter Griffin0382c642015-09-10 21:55:17 +0100760 select DM_SERIAL
Peter Griffinc97c37a2016-04-20 17:13:59 +0100761 select OF_CONTROL
Peter Griffin31f327e2015-07-30 18:55:23 +0100762 help
763 Support for HiKey 96boards platform. It features a HI6220
764 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM.
765
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530766config TARGET_LS1012AQDS
767 bool "Support ls1012aqds"
York Sunb3d71642016-09-26 08:09:26 -0700768 select ARCH_LS1012A
Prabhakar Kushwaha55432502016-06-03 18:41:34 +0530769 select ARM64
770 help
771 Support for Freescale LS1012AQDS platform.
772 The LS1012A Development System (QDS) is a high-performance
773 development platform that supports the QorIQ LS1012A
774 Layerscape Architecture processor.
775
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530776config TARGET_LS1012ARDB
777 bool "Support ls1012ardb"
York Sunb3d71642016-09-26 08:09:26 -0700778 select ARCH_LS1012A
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +0530779 select ARM64
780 help
781 Support for Freescale LS1012ARDB platform.
782 The LS1012A Reference design board (RDB) is a high-performance
783 development platform that supports the QorIQ LS1012A
784 Layerscape Architecture processor.
785
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530786config TARGET_LS1012AFRDM
787 bool "Support ls1012afrdm"
York Sunb3d71642016-09-26 08:09:26 -0700788 select ARCH_LS1012A
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +0530789 select ARM64
790 help
791 Support for Freescale LS1012AFRDM platform.
792 The LS1012A Freedom board (FRDM) is a high-performance
793 development platform that supports the QorIQ LS1012A
794 Layerscape Architecture processor.
795
Wang Huanf0ce7d62014-09-05 13:52:44 +0800796config TARGET_LS1021AQDS
Alison Wang6ea8ad42014-12-03 16:18:09 +0800797 bool "Support ls1021aqds"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100798 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800799 select CPU_V7_HAS_NONSEC
800 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800801 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700802 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900803 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700804 select LS1_DEEP_SLEEP
York Sund297d392016-12-28 08:43:40 -0800805 select SYS_FSL_DDR
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900806
Wang Huanddf89f92014-09-05 13:52:45 +0800807config TARGET_LS1021ATWR
Alison Wang6ea8ad42014-12-03 16:18:09 +0800808 bool "Support ls1021atwr"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100809 select CPU_V7
Hongbo Zhange80fccf2016-09-21 18:31:04 +0800810 select CPU_V7_HAS_NONSEC
811 select CPU_V7_HAS_VIRT
Alison Wang024e6b12014-12-03 15:00:45 +0800812 select SUPPORT_SPL
York Sun149eb332016-09-26 08:09:27 -0700813 select ARCH_LS1021A
Masahiro Yamadad5415b22016-08-30 16:22:22 +0900814 select ARCH_SUPPORT_PSCI
York Sun4de7e932016-09-26 08:09:29 -0700815 select LS1_DEEP_SLEEP
Wang Huanddf89f92014-09-05 13:52:45 +0800816
Feng Li39e112d2016-11-03 14:15:17 +0800817config TARGET_LS1021AIOT
818 bool "Support ls1021aiot"
819 select CPU_V7
820 select CPU_V7_HAS_NONSEC
821 select CPU_V7_HAS_VIRT
822 select SUPPORT_SPL
823 select ARCH_LS1021A
824 select ARCH_SUPPORT_PSCI
825 help
826 Support for Freescale LS1021AIOT platform.
827 The LS1021A Freescale board (IOT) is a high-performance
828 development platform that supports the QorIQ LS1021A
829 Layerscape Architecture processor.
830
Shaohui Xiedd335672015-11-11 17:58:37 +0800831config TARGET_LS1043AQDS
832 bool "Support ls1043aqds"
York Sun149eb332016-09-26 08:09:27 -0700833 select ARCH_LS1043A
Shaohui Xiedd335672015-11-11 17:58:37 +0800834 select ARM64
835 select ARMV8_MULTIENTRY
836 select SUPPORT_SPL
837 help
838 Support for Freescale LS1043AQDS platform.
839
Mingkai Hueee86ff2015-10-26 19:47:52 +0800840config TARGET_LS1043ARDB
841 bool "Support ls1043ardb"
York Sun149eb332016-09-26 08:09:27 -0700842 select ARCH_LS1043A
Mingkai Hueee86ff2015-10-26 19:47:52 +0800843 select ARM64
Hou Zhiqiangc7098fa2015-10-26 19:47:57 +0800844 select ARMV8_MULTIENTRY
Gong Qianyu8168a0f2015-10-26 19:47:53 +0800845 select SUPPORT_SPL
Mingkai Hueee86ff2015-10-26 19:47:52 +0800846 help
847 Support for Freescale LS1043ARDB platform.
848
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800849config TARGET_LS1046AQDS
850 bool "Support ls1046aqds"
York Sunbad49842016-09-26 08:09:24 -0700851 select ARCH_LS1046A
Shaohui Xie085ac1c2016-09-07 17:56:14 +0800852 select ARM64
853 select ARMV8_MULTIENTRY
854 select SUPPORT_SPL
855 select DM_SPI_FLASH if DM_SPI
856 help
857 Support for Freescale LS1046AQDS platform.
858 The LS1046A Development System (QDS) is a high-performance
859 development platform that supports the QorIQ LS1046A
860 Layerscape Architecture processor.
861
Mingkai Hud2396512016-09-07 18:47:28 +0800862config TARGET_LS1046ARDB
863 bool "Support ls1046ardb"
York Sunbad49842016-09-26 08:09:24 -0700864 select ARCH_LS1046A
Mingkai Hud2396512016-09-07 18:47:28 +0800865 select ARM64
866 select ARMV8_MULTIENTRY
867 select SUPPORT_SPL
868 select DM_SPI_FLASH if DM_SPI
Hou Zhiqiang67b6d0a2016-12-09 16:09:01 +0800869 select POWER_MC34VR500
Mingkai Hud2396512016-09-07 18:47:28 +0800870 help
871 Support for Freescale LS1046ARDB platform.
872 The LS1046A Reference Design Board (RDB) is a high-performance
873 development platform that supports the QorIQ LS1046A
874 Layerscape Architecture processor.
875
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900876config TARGET_H2200
877 bool "Support h2200"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100878 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900879
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -0700880config TARGET_ZIPITZ2
881 bool "Support zipitz2"
882 select CPU_PXA
883
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900884config TARGET_COLIBRI_PXA270
885 bool "Support colibri_pxa270"
Georges Savoundararadj3bae15f2014-10-28 23:16:09 +0100886 select CPU_PXA
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900887
Masahiro Yamada82069432014-10-03 19:21:07 +0900888config ARCH_UNIPHIER
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900889 bool "Socionext UniPhier SoCs"
Masahiro Yamadae4dfb052016-02-02 21:11:32 +0900890 select CLK_UNIPHIER
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900891 select DM
Masahiro Yamada5f128922016-02-16 17:03:50 +0900892 select DM_GPIO
Masahiro Yamada85eb8262015-03-31 12:47:54 +0900893 select DM_I2C
Masahiro Yamada867453e2016-02-18 19:52:49 +0900894 select DM_MMC
Masahiro Yamada2aa4b5b2016-10-08 13:25:31 +0900895 select DM_RESET
Masahiro Yamada694adf12016-09-14 01:05:59 +0900896 select DM_SERIAL
Masahiro Yamada5021b8a2016-09-14 01:06:00 +0900897 select DM_USB
Masahiro Yamada694adf12016-09-14 01:05:59 +0900898 select OF_CONTROL
899 select OF_LIBFDT
Masahiro Yamada0c977252016-09-17 03:33:01 +0900900 select PINCTRL
Masahiro Yamadadabee242017-01-21 18:05:22 +0900901 select SPL_DM if SPL
902 select SPL_LIBCOMMON_SUPPORT if SPL
903 select SPL_LIBGENERIC_SUPPORT if SPL
904 select SPL_OF_CONTROL if SPL
905 select SPL_PINCTRL if SPL
Masahiro Yamada694adf12016-09-14 01:05:59 +0900906 select SUPPORT_SPL
Masahiro Yamada563ee4c2015-05-29 17:30:01 +0900907 help
908 Support for UniPhier SoC family developed by Socionext Inc.
909 (formerly, System LSI Business Division of Panasonic Corporation)
Masahiro Yamada82069432014-10-03 19:21:07 +0900910
Vikas Manocha95c89192016-01-15 17:49:06 -0800911config STM32
912 bool "Support STM32"
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100913 select CPU_V7M
Kamil Lulko75d48a62015-12-01 09:08:19 +0100914 select DM
915 select DM_SERIAL
rev13@wp.pl6b5e5a92015-03-01 12:44:42 +0100916
Simon Glass2cffe662015-08-30 16:55:38 -0600917config ARCH_ROCKCHIP
918 bool "Support Rockchip SoCs"
Simon Glass2cffe662015-08-30 16:55:38 -0600919 select OF_CONTROL
Simon Glass94106272016-06-12 23:30:14 -0600920 select BLK
Simon Glass2cffe662015-08-30 16:55:38 -0600921 select DM
Kever Yang0d3d7832016-07-19 21:16:59 +0800922 select SPL_DM if SPL
Simon Glass94106272016-06-12 23:30:14 -0600923 select SYS_MALLOC_F
Kever Yang0d3d7832016-07-19 21:16:59 +0800924 select SPL_SYS_MALLOC_SIMPLE if SPL
Simon Glass94106272016-06-12 23:30:14 -0600925 select DM_GPIO
926 select DM_I2C
927 select DM_MMC
Simon Glassfaeef3b2016-06-12 23:30:24 -0600928 select DM_MMC_OPS
Simon Glass94106272016-06-12 23:30:14 -0600929 select DM_SERIAL
930 select DM_SPI
931 select DM_SPI_FLASH
MengDongyangf0bf5de2016-08-24 12:02:18 +0800932 select DM_USB if USB
Kever Yangb8594e22016-09-23 15:57:21 +0800933 select DM_PWM
934 select DM_REGULATOR
Simon Glass2cffe662015-08-30 16:55:38 -0600935
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700936config TARGET_THUNDERX_88XX
937 bool "Support ThunderX 88xx"
Marek Vasut09ab8ad2016-06-01 02:33:53 +0200938 select ARM64
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700939 select OF_CONTROL
Tom Rini84f9b612016-08-22 08:22:17 -0400940 select SYS_CACHE_SHIFT_7
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -0700941
Masahiro Yamadad3ae6782014-07-30 14:08:14 +0900942endchoice
943
Masahiro Yamadaaf908ee2015-02-20 17:04:01 +0900944source "arch/arm/mach-at91/Kconfig"
945
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900946source "arch/arm/mach-bcm283x/Kconfig"
Masahiro Yamadae604ef92014-08-31 07:11:01 +0900947
Masahiro Yamadaed22cc72015-03-19 19:42:56 +0900948source "arch/arm/mach-davinci/Kconfig"
Simon Glass13fc6a22015-02-05 21:41:39 -0700949
Thomas Abraham74f84862015-08-03 17:58:00 +0530950source "arch/arm/mach-exynos/Kconfig"
Masahiro Yamadac54550b2014-08-31 07:11:00 +0900951
Masahiro Yamada95ec48b2015-02-20 17:04:08 +0900952source "arch/arm/mach-highbank/Kconfig"
Masahiro Yamada52ece9c2014-08-31 07:11:07 +0900953
Masahiro Yamadacad44162015-04-21 21:59:36 +0900954source "arch/arm/mach-integrator/Kconfig"
955
Masahiro Yamadaf058b792015-02-20 17:04:11 +0900956source "arch/arm/mach-keystone/Kconfig"
Masahiro Yamada32013fb2014-08-31 07:11:05 +0900957
Masahiro Yamada5e5e23a2015-02-20 17:04:06 +0900958source "arch/arm/mach-kirkwood/Kconfig"
Masahiro Yamadad7570852014-08-31 07:10:59 +0900959
Marcin Niestrojba6f1502016-12-07 16:46:32 +0100960source "arch/arm/mach-litesom/Kconfig"
961
Stefan Roese383e0c12015-08-25 13:18:38 +0200962source "arch/arm/mach-mvebu/Kconfig"
963
York Sun149eb332016-09-26 08:09:27 -0700964source "arch/arm/cpu/armv7/ls102xa/Kconfig"
965
Adrian Alonso98810772015-09-03 11:49:28 -0500966source "arch/arm/cpu/armv7/mx7/Kconfig"
967
Boris BREZILLON51e82662015-03-04 13:13:03 +0100968source "arch/arm/cpu/armv7/mx6/Kconfig"
969
Andrej Rosano1ac4bca2015-04-08 18:56:29 +0200970source "arch/arm/cpu/armv7/mx5/Kconfig"
971
Tom Rini28eec372016-11-07 21:34:54 -0500972source "arch/arm/mach-omap2/Kconfig"
Madan Srinivaseba13cd2016-05-19 19:10:43 -0500973
York Sunbad49842016-09-26 08:09:24 -0700974source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig"
975
Masahiro Yamada22537642015-02-20 17:04:09 +0900976source "arch/arm/mach-orion5x/Kconfig"
Masahiro Yamada04ffbc12014-08-31 07:11:06 +0900977
Nobuhiro Iwamatsuc91ef682015-10-09 16:40:09 +0900978source "arch/arm/mach-rmobile/Kconfig"
Masahiro Yamadac9c54e22014-08-31 07:10:57 +0900979
Beniamino Galvanid1037e42016-05-08 08:30:16 +0200980source "arch/arm/mach-meson/Kconfig"
981
Simon Glass2cffe662015-08-30 16:55:38 -0600982source "arch/arm/mach-rockchip/Kconfig"
983
Minkyu Kang56b820a2015-11-20 15:24:57 +0900984source "arch/arm/mach-s5pc1xx/Kconfig"
Simon Glass96aa0722014-10-07 22:01:50 -0600985
Mateusz Kulikowski2507d822016-03-31 23:12:32 +0200986source "arch/arm/mach-snapdragon/Kconfig"
987
Masahiro Yamada144a3e02015-04-21 20:38:20 +0900988source "arch/arm/mach-socfpga/Kconfig"
989
Vikas Manocha95c89192016-01-15 17:49:06 -0800990source "arch/arm/mach-stm32/Kconfig"
991
Masahiro Yamadaed1632a2015-02-20 17:04:04 +0900992source "arch/arm/mach-tegra/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900993
Masahiro Yamadaf8563982015-02-27 02:26:42 +0900994source "arch/arm/mach-uniphier/Kconfig"
Masahiro Yamada82069432014-10-03 19:21:07 +0900995
Masahiro Yamada43246cc2015-03-16 16:43:22 +0900996source "arch/arm/mach-zynq/Kconfig"
Masahiro Yamada73a5b1a2014-08-31 07:10:56 +0900997
Hans de Goede85437352014-11-14 09:34:30 +0100998source "arch/arm/cpu/armv7/Kconfig"
999
Siva Durga Prasad Paladugu4095bc22015-06-10 15:50:56 +05301000source "arch/arm/cpu/armv8/zynqmp/Kconfig"
1001
Linus Walleij74771392015-03-09 10:53:21 +01001002source "arch/arm/cpu/armv8/Kconfig"
1003
Boris BREZILLON6b9b9a02015-03-04 13:13:04 +01001004source "arch/arm/imx-common/Kconfig"
1005
Heiko Schocherf1163962016-06-07 08:31:25 +02001006source "board/bosch/shc/Kconfig"
Hannes Schmelzer46dc5cb2016-06-22 12:36:14 +02001007source "board/BuR/brxre1/Kconfig"
Hannes Schmelzer20ccb432016-06-22 12:36:13 +02001008source "board/BuR/brppt1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001009source "board/CarMediaLab/flea3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001010source "board/Marvell/aspenite/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001011source "board/Marvell/gplugd/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001012source "board/armadeus/apf27/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001013source "board/armltd/vexpress/Kconfig"
1014source "board/armltd/vexpress64/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001015source "board/bluegiga/apx4devkit/Kconfig"
Steve Rae45f2c702016-06-02 15:10:56 -07001016source "board/broadcom/bcm23550_w1d/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001017source "board/broadcom/bcm28155_ap/Kconfig"
Steve Rae1c5f31c2014-11-11 11:32:18 -08001018source "board/broadcom/bcmcygnus/Kconfig"
1019source "board/broadcom/bcmnsp/Kconfig"
Sergey Temerkhanov69f7a032015-10-14 09:55:50 -07001020source "board/cavium/thunderx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001021source "board/cirrus/edb93xx/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001022source "board/compulab/cm_t335/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -04001023source "board/compulab/cm_t43/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001024source "board/creative/xfi3/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001025source "board/denx/m28evk/Kconfig"
1026source "board/denx/m53evk/Kconfig"
Prabhakar Kushwaha122bcfd2015-11-09 16:42:07 +05301027source "board/freescale/ls2080a/Kconfig"
1028source "board/freescale/ls2080aqds/Kconfig"
1029source "board/freescale/ls2080ardb/Kconfig"
Wang Huanf0ce7d62014-09-05 13:52:44 +08001030source "board/freescale/ls1021aqds/Kconfig"
Shaohui Xiedd335672015-11-11 17:58:37 +08001031source "board/freescale/ls1043aqds/Kconfig"
Wang Huanddf89f92014-09-05 13:52:45 +08001032source "board/freescale/ls1021atwr/Kconfig"
Feng Li39e112d2016-11-03 14:15:17 +08001033source "board/freescale/ls1021aiot/Kconfig"
Shaohui Xie085ac1c2016-09-07 17:56:14 +08001034source "board/freescale/ls1046aqds/Kconfig"
Mingkai Hueee86ff2015-10-26 19:47:52 +08001035source "board/freescale/ls1043ardb/Kconfig"
Mingkai Hud2396512016-09-07 18:47:28 +08001036source "board/freescale/ls1046ardb/Kconfig"
Prabhakar Kushwaha55432502016-06-03 18:41:34 +05301037source "board/freescale/ls1012aqds/Kconfig"
Prabhakar Kushwahaa315c662016-06-03 18:41:35 +05301038source "board/freescale/ls1012ardb/Kconfig"
Prabhakar Kushwaha9e7ee7b2016-06-03 18:41:36 +05301039source "board/freescale/ls1012afrdm/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001040source "board/freescale/mx23evk/Kconfig"
1041source "board/freescale/mx25pdk/Kconfig"
1042source "board/freescale/mx28evk/Kconfig"
1043source "board/freescale/mx31ads/Kconfig"
1044source "board/freescale/mx31pdk/Kconfig"
1045source "board/freescale/mx35pdk/Kconfig"
1046source "board/freescale/mx51evk/Kconfig"
1047source "board/freescale/mx53ard/Kconfig"
1048source "board/freescale/mx53evk/Kconfig"
1049source "board/freescale/mx53loco/Kconfig"
1050source "board/freescale/mx53smd/Kconfig"
Eddy Petrișor5178dc12016-06-05 03:43:00 +03001051source "board/freescale/s32v234evb/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001052source "board/freescale/vf610twr/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001053source "board/gumstix/pepper/Kconfig"
1054source "board/h2200/Kconfig"
Tom Rinibdf4f182015-09-02 15:32:20 -04001055source "board/hisilicon/hikey/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001056source "board/imx31_phycore/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001057source "board/isee/igep0033/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001058source "board/olimex/mx23_olinuxino/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001059source "board/phytec/pcm051/Kconfig"
Albert ARIBAUD \(3ADEV\)26ffbef2015-09-21 22:43:39 +02001060source "board/phytec/pcm052/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001061source "board/ppcag/bg0900/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001062source "board/sandisk/sansa_fuze_plus/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001063source "board/schulercontrol/sc_sps_1/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001064source "board/siemens/draco/Kconfig"
1065source "board/siemens/pxm2/Kconfig"
1066source "board/siemens/rut/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001067source "board/silica/pengwyn/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001068source "board/spear/spear300/Kconfig"
1069source "board/spear/spear310/Kconfig"
1070source "board/spear/spear320/Kconfig"
1071source "board/spear/spear600/Kconfig"
1072source "board/spear/x600/Kconfig"
Vikas Manocha33913c52014-11-18 10:42:22 -08001073source "board/st/stv0991/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001074source "board/sunxi/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001075source "board/syteco/zmx25/Kconfig"
Enric Balletbò i Serra9d89b082015-09-07 07:43:20 +02001076source "board/tcl/sl50/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001077source "board/ti/am335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001078source "board/ti/am43xx/Kconfig"
Gilles Gameiroebd46d12015-02-10 01:36:01 -08001079source "board/birdland/bav335x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001080source "board/ti/ti814x/Kconfig"
1081source "board/ti/ti816x/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001082source "board/timll/devkit3250/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001083source "board/toradex/colibri_pxa270/Kconfig"
Sanchayan Maitycc4d78f2015-04-15 16:24:26 +05301084source "board/toradex/colibri_vf/Kconfig"
Sebastien Bourdelinf012f662016-11-08 12:18:07 -05001085source "board/technologic/ts4600/Kconfig"
Lucile Quiriona84f6f92015-06-30 17:17:47 -04001086source "board/technologic/ts4800/Kconfig"
Yegor Yefremovfa8b71b2015-05-29 19:27:29 +02001087source "board/vscom/baltos/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001088source "board/woodburn/Kconfig"
Albert ARIBAUD \(3ADEV\)ee69a392015-03-31 11:40:51 +02001089source "board/work-microwave/work_92105/Kconfig"
Vasily Khoruzhicka2cbff02016-03-20 18:37:00 -07001090source "board/zipitz2/Kconfig"
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001091
Masahiro Yamadadf00e522014-09-01 11:06:34 +09001092source "arch/arm/Kconfig.debug"
1093
Masahiro Yamadad3ae6782014-07-30 14:08:14 +09001094endmenu