Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1 | menu "ARM architecture" |
| 2 | depends on ARM |
| 3 | |
| 4 | config SYS_ARCH |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 5 | default "arm" |
| 6 | |
Masahiro Yamada | 016a954 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 7 | config ARM64 |
| 8 | bool |
Masahiro Yamada | bb6b142 | 2016-07-25 19:56:03 +0900 | [diff] [blame] | 9 | select PHYS_64BIT |
Tom Rini | 067716b | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 10 | select SYS_CACHE_SHIFT_6 |
Masahiro Yamada | 016a954 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 11 | |
Stephen Warren | 49e9387 | 2017-11-02 18:11:27 -0600 | [diff] [blame] | 12 | if ARM64 |
| 13 | config POSITION_INDEPENDENT |
| 14 | bool "Generate position-independent pre-relocation code" |
| 15 | help |
| 16 | U-Boot expects to be linked to a specific hard-coded address, and to |
| 17 | be loaded to and run from that address. This option lifts that |
| 18 | restriction, thus allowing the code to be loaded to and executed |
| 19 | from almost any address. This logic relies on the relocation |
| 20 | information that is embedded into the binary to support U-Boot |
| 21 | relocating itself to the top-of-RAM later during execution. |
Stephen Warren | e6c9044 | 2017-12-19 18:30:36 -0700 | [diff] [blame] | 22 | |
| 23 | config SYS_INIT_SP_BSS_OFFSET |
| 24 | int |
| 25 | help |
| 26 | U-Boot typically uses a hard-coded value for the stack pointer |
| 27 | before relocation. Define this option to instead calculate the |
| 28 | initial SP at run-time. This is useful to avoid hard-coding addresses |
| 29 | into U-Boot, so that can be loaded and executed at arbitrary |
| 30 | addresses and thus avoid using arbitrary addresses at runtime. This |
| 31 | option's value is the offset added to &_bss_start in order to |
| 32 | calculate the stack pointer. This offset should be large enough so |
| 33 | that the early malloc region, global data (gd), and early stack usage |
| 34 | do not overlap any appended DTB. |
Stephen Warren | 8163faf | 2018-01-03 14:31:51 -0700 | [diff] [blame] | 35 | |
| 36 | config LINUX_KERNEL_IMAGE_HEADER |
| 37 | bool |
| 38 | help |
| 39 | Place a Linux kernel image header at the start of the U-Boot binary. |
| 40 | The format of the header is described in the Linux kernel source at |
| 41 | Documentation/arm64/booting.txt. This feature is useful since the |
| 42 | image header reports the amount of memory (BSS and similar) that |
| 43 | U-Boot needs to use, but which isn't part of the binary. |
| 44 | |
| 45 | if LINUX_KERNEL_IMAGE_HEADER |
| 46 | config LNX_KRNL_IMG_TEXT_OFFSET_BASE |
| 47 | hex |
| 48 | help |
| 49 | The value subtracted from CONFIG_SYS_TEXT_BASE to calculate the |
| 50 | TEXT_OFFSET value written in to the Linux kernel image header. |
| 51 | endif |
Stephen Warren | 49e9387 | 2017-11-02 18:11:27 -0600 | [diff] [blame] | 52 | endif |
| 53 | |
| 54 | config STATIC_RELA |
| 55 | bool |
| 56 | default y if ARM64 && !POSITION_INDEPENDENT |
| 57 | |
Lokesh Vutla | 37217f0 | 2016-03-24 16:02:00 +0530 | [diff] [blame] | 58 | config DMA_ADDR_T_64BIT |
| 59 | bool |
| 60 | default y if ARM64 |
| 61 | |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 62 | config HAS_VBAR |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 63 | bool |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 64 | |
Albert ARIBAUD | 62e9207 | 2015-10-23 18:06:40 +0200 | [diff] [blame] | 65 | config HAS_THUMB2 |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 66 | bool |
Albert ARIBAUD | 62e9207 | 2015-10-23 18:06:40 +0200 | [diff] [blame] | 67 | |
Phil Edworthy | 111a6af | 2017-06-01 07:33:28 +0100 | [diff] [blame] | 68 | # Used for compatibility with asm files copied from the kernel |
| 69 | config ARM_ASM_UNIFIED |
| 70 | bool |
| 71 | default y |
| 72 | |
| 73 | # Used for compatibility with asm files copied from the kernel |
| 74 | config THUMB2_KERNEL |
| 75 | bool |
| 76 | |
Lokesh Vutla | f4bcd76 | 2018-04-26 18:21:28 +0530 | [diff] [blame] | 77 | config SYS_ARM_CACHE_CP15 |
| 78 | bool "CP15 based cache enabling support" |
| 79 | help |
| 80 | Select this if your processor suports enabling caches by using |
| 81 | CP15 registers. |
| 82 | |
Lokesh Vutla | 7240b80 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 83 | config SYS_ARM_MMU |
| 84 | bool "MMU-based Paged Memory Management Support" |
Lokesh Vutla | f4bcd76 | 2018-04-26 18:21:28 +0530 | [diff] [blame] | 85 | select SYS_ARM_CACHE_CP15 |
Lokesh Vutla | 7240b80 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 86 | help |
| 87 | Select if you want MMU-based virtualised addressing space |
| 88 | support by paged memory management. |
| 89 | |
Lokesh Vutla | f2ef204 | 2018-04-26 18:21:30 +0530 | [diff] [blame] | 90 | config SYS_ARM_MPU |
| 91 | bool 'Use the ARM v7 PMSA Compliant MPU' |
| 92 | help |
| 93 | Some ARM systems without an MMU have instead a Memory Protection |
| 94 | Unit (MPU) that defines the type and permissions for regions of |
| 95 | memory. |
| 96 | If your CPU has an MPU then you should choose 'y' here unless you |
| 97 | know that you do not want to use the MPU. |
| 98 | |
Tom Rini | 8dda2e2 | 2017-03-07 07:13:42 -0500 | [diff] [blame] | 99 | # If set, the workarounds for these ARM errata are applied early during U-Boot |
| 100 | # startup. Note that in general these options force the workarounds to be |
| 101 | # applied; no CPU-type/version detection exists, unlike the similar options in |
| 102 | # the Linux kernel. Do not set these options unless they apply! Also note that |
| 103 | # the following can be machine specific errata. These do have ability to |
| 104 | # provide rudimentary version and machine specific checks, but expect no |
| 105 | # product checks: |
| 106 | # CONFIG_ARM_ERRATA_430973 |
| 107 | # CONFIG_ARM_ERRATA_454179 |
| 108 | # CONFIG_ARM_ERRATA_621766 |
| 109 | # CONFIG_ARM_ERRATA_798870 |
| 110 | # CONFIG_ARM_ERRATA_801819 |
Nishanth Menon | 7b37a9c | 2018-06-12 15:24:08 -0500 | [diff] [blame] | 111 | # CONFIG_ARM_CORTEX_A8_CVE_2017_5715 |
Nishanth Menon | c2ca3fd | 2018-06-12 15:24:09 -0500 | [diff] [blame] | 112 | # CONFIG_ARM_CORTEX_A15_CVE_2017_5715 |
Nishanth Menon | 7b37a9c | 2018-06-12 15:24:08 -0500 | [diff] [blame] | 113 | |
Tom Rini | 8dda2e2 | 2017-03-07 07:13:42 -0500 | [diff] [blame] | 114 | config ARM_ERRATA_430973 |
| 115 | bool |
| 116 | |
| 117 | config ARM_ERRATA_454179 |
| 118 | bool |
| 119 | |
| 120 | config ARM_ERRATA_621766 |
| 121 | bool |
| 122 | |
| 123 | config ARM_ERRATA_716044 |
| 124 | bool |
| 125 | |
Siarhei Siamashka | 19a75b8 | 2017-03-06 03:16:53 +0200 | [diff] [blame] | 126 | config ARM_ERRATA_725233 |
| 127 | bool |
| 128 | |
Tom Rini | 8dda2e2 | 2017-03-07 07:13:42 -0500 | [diff] [blame] | 129 | config ARM_ERRATA_742230 |
| 130 | bool |
| 131 | |
| 132 | config ARM_ERRATA_743622 |
| 133 | bool |
| 134 | |
| 135 | config ARM_ERRATA_751472 |
| 136 | bool |
| 137 | |
| 138 | config ARM_ERRATA_761320 |
| 139 | bool |
| 140 | |
| 141 | config ARM_ERRATA_773022 |
| 142 | bool |
| 143 | |
| 144 | config ARM_ERRATA_774769 |
| 145 | bool |
| 146 | |
| 147 | config ARM_ERRATA_794072 |
| 148 | bool |
| 149 | |
| 150 | config ARM_ERRATA_798870 |
| 151 | bool |
| 152 | |
| 153 | config ARM_ERRATA_801819 |
| 154 | bool |
| 155 | |
| 156 | config ARM_ERRATA_826974 |
| 157 | bool |
| 158 | |
| 159 | config ARM_ERRATA_828024 |
| 160 | bool |
| 161 | |
| 162 | config ARM_ERRATA_829520 |
| 163 | bool |
| 164 | |
| 165 | config ARM_ERRATA_833069 |
| 166 | bool |
| 167 | |
| 168 | config ARM_ERRATA_833471 |
| 169 | bool |
| 170 | |
Peng Fan | 11d9431 | 2017-08-08 13:34:52 +0800 | [diff] [blame] | 171 | config ARM_ERRATA_845369 |
Michal Simek | 6e7bdde | 2018-07-23 15:55:12 +0200 | [diff] [blame] | 172 | bool |
Peng Fan | 11d9431 | 2017-08-08 13:34:52 +0800 | [diff] [blame] | 173 | |
Nisal Menuka | 8776350 | 2017-04-26 16:18:01 -0500 | [diff] [blame] | 174 | config ARM_ERRATA_852421 |
| 175 | bool |
| 176 | |
| 177 | config ARM_ERRATA_852423 |
| 178 | bool |
| 179 | |
Alison Wang | ab0ab54 | 2017-12-28 13:00:55 +0800 | [diff] [blame] | 180 | config ARM_ERRATA_855873 |
| 181 | bool |
| 182 | |
Nishanth Menon | 7b37a9c | 2018-06-12 15:24:08 -0500 | [diff] [blame] | 183 | config ARM_CORTEX_A8_CVE_2017_5715 |
| 184 | bool |
| 185 | |
Nishanth Menon | c2ca3fd | 2018-06-12 15:24:09 -0500 | [diff] [blame] | 186 | config ARM_CORTEX_A15_CVE_2017_5715 |
| 187 | bool |
| 188 | |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 189 | config CPU_ARM720T |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 190 | bool |
Tom Rini | 067716b | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 191 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | 7240b80 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 192 | imply SYS_ARM_MMU |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 193 | |
| 194 | config CPU_ARM920T |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 195 | bool |
Tom Rini | 067716b | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 196 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | 7240b80 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 197 | imply SYS_ARM_MMU |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 198 | |
| 199 | config CPU_ARM926EJS |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 200 | bool |
Tom Rini | 067716b | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 201 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | 7240b80 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 202 | imply SYS_ARM_MMU |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 203 | |
| 204 | config CPU_ARM946ES |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 205 | bool |
Tom Rini | 067716b | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 206 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | 7240b80 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 207 | imply SYS_ARM_MMU |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 208 | |
| 209 | config CPU_ARM1136 |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 210 | bool |
Tom Rini | 067716b | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 211 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | 7240b80 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 212 | imply SYS_ARM_MMU |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 213 | |
| 214 | config CPU_ARM1176 |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 215 | bool |
| 216 | select HAS_VBAR |
Tom Rini | 067716b | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 217 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | 7240b80 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 218 | imply SYS_ARM_MMU |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 219 | |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 220 | config CPU_V7A |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 221 | bool |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 222 | select HAS_THUMB2 |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 223 | select HAS_VBAR |
Tom Rini | 067716b | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 224 | select SYS_CACHE_SHIFT_6 |
Lokesh Vutla | 7240b80 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 225 | imply SYS_ARM_MMU |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 226 | |
rev13@wp.pl | 12d8a72 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 227 | config CPU_V7M |
| 228 | bool |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 229 | select HAS_THUMB2 |
Lokesh Vutla | f2ef204 | 2018-04-26 18:21:30 +0530 | [diff] [blame] | 230 | select SYS_ARM_MPU |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 231 | select SYS_CACHE_SHIFT_5 |
Tom Rini | ea37f0b | 2018-05-07 20:46:52 -0400 | [diff] [blame] | 232 | select SYS_THUMB_BUILD |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 233 | select THUMB2_KERNEL |
rev13@wp.pl | 12d8a72 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 234 | |
Michal Simek | 4bbd6b1 | 2018-04-26 18:21:29 +0530 | [diff] [blame] | 235 | config CPU_V7R |
| 236 | bool |
| 237 | select HAS_THUMB2 |
Lokesh Vutla | f2ef204 | 2018-04-26 18:21:30 +0530 | [diff] [blame] | 238 | select SYS_ARM_CACHE_CP15 |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 239 | select SYS_ARM_MPU |
| 240 | select SYS_CACHE_SHIFT_6 |
Michal Simek | 4bbd6b1 | 2018-04-26 18:21:29 +0530 | [diff] [blame] | 241 | |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 242 | config CPU_PXA |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 243 | bool |
Tom Rini | 067716b | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 244 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | 7240b80 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 245 | imply SYS_ARM_MMU |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 246 | |
| 247 | config CPU_SA1100 |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 248 | bool |
Tom Rini | 067716b | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 249 | select SYS_CACHE_SHIFT_5 |
Lokesh Vutla | 7240b80 | 2018-04-26 18:21:27 +0530 | [diff] [blame] | 250 | imply SYS_ARM_MMU |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 251 | |
| 252 | config SYS_CPU |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 253 | default "arm720t" if CPU_ARM720T |
| 254 | default "arm920t" if CPU_ARM920T |
| 255 | default "arm926ejs" if CPU_ARM926EJS |
| 256 | default "arm946es" if CPU_ARM946ES |
| 257 | default "arm1136" if CPU_ARM1136 |
| 258 | default "arm1176" if CPU_ARM1176 |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 259 | default "armv7" if CPU_V7A |
Michal Simek | 4bbd6b1 | 2018-04-26 18:21:29 +0530 | [diff] [blame] | 260 | default "armv7" if CPU_V7R |
Tom Rini | e009bfa | 2016-08-22 08:22:18 -0400 | [diff] [blame] | 261 | default "armv7m" if CPU_V7M |
| 262 | default "pxa" if CPU_PXA |
| 263 | default "sa1100" if CPU_SA1100 |
Masahiro Yamada | 01541ee | 2014-11-06 11:39:27 +0900 | [diff] [blame] | 264 | default "armv8" if ARM64 |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 265 | |
Marek Vasut | 66020a6 | 2016-05-26 18:01:36 +0200 | [diff] [blame] | 266 | config SYS_ARM_ARCH |
| 267 | int |
| 268 | default 4 if CPU_ARM720T |
| 269 | default 4 if CPU_ARM920T |
| 270 | default 5 if CPU_ARM926EJS |
| 271 | default 5 if CPU_ARM946ES |
| 272 | default 6 if CPU_ARM1136 |
| 273 | default 6 if CPU_ARM1176 |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 274 | default 7 if CPU_V7A |
Marek Vasut | 66020a6 | 2016-05-26 18:01:36 +0200 | [diff] [blame] | 275 | default 7 if CPU_V7M |
Michal Simek | 4bbd6b1 | 2018-04-26 18:21:29 +0530 | [diff] [blame] | 276 | default 7 if CPU_V7R |
Marek Vasut | 66020a6 | 2016-05-26 18:01:36 +0200 | [diff] [blame] | 277 | default 5 if CPU_PXA |
| 278 | default 4 if CPU_SA1100 |
| 279 | default 8 if ARM64 |
| 280 | |
Tom Rini | 067716b | 2016-08-22 08:22:17 -0400 | [diff] [blame] | 281 | config SYS_CACHE_SHIFT_5 |
| 282 | bool |
| 283 | |
| 284 | config SYS_CACHE_SHIFT_6 |
| 285 | bool |
| 286 | |
| 287 | config SYS_CACHE_SHIFT_7 |
| 288 | bool |
| 289 | |
| 290 | config SYS_CACHELINE_SIZE |
| 291 | int |
| 292 | default 128 if SYS_CACHE_SHIFT_7 |
| 293 | default 64 if SYS_CACHE_SHIFT_6 |
| 294 | default 32 if SYS_CACHE_SHIFT_5 |
| 295 | |
Andre Przywara | 7842b6a | 2018-04-12 04:24:46 +0300 | [diff] [blame] | 296 | config SYS_ARCH_TIMER |
| 297 | bool "ARM Generic Timer support" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 298 | depends on CPU_V7A || ARM64 |
Andre Przywara | 7842b6a | 2018-04-12 04:24:46 +0300 | [diff] [blame] | 299 | default y if ARM64 |
| 300 | help |
| 301 | The ARM Generic Timer (aka arch-timer) provides an architected |
| 302 | interface to a timer source on an SoC. |
| 303 | It is mandantory for ARMv8 implementation and widely available |
| 304 | on ARMv7 systems. |
| 305 | |
Masahiro Yamada | c54bcf6 | 2017-04-14 11:10:23 +0900 | [diff] [blame] | 306 | config ARM_SMCCC |
| 307 | bool "Support for ARM SMC Calling Convention (SMCCC)" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 308 | depends on CPU_V7A || ARM64 |
Masahiro Yamada | 573a381 | 2017-04-14 11:10:24 +0900 | [diff] [blame] | 309 | select ARM_PSCI_FW |
Masahiro Yamada | c54bcf6 | 2017-04-14 11:10:23 +0900 | [diff] [blame] | 310 | help |
| 311 | Say Y here if you want to enable ARM SMC Calling Convention. |
| 312 | This should be enabled if U-Boot needs to communicate with system |
| 313 | firmware (for example, PSCI) according to SMCCC. |
| 314 | |
Linus Walleij | f91afc4 | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 315 | config SEMIHOSTING |
| 316 | bool "support boot from semihosting" |
| 317 | help |
| 318 | In emulated environments, semihosting is a way for |
| 319 | the hosted environment to call out to the emulator to |
| 320 | retrieve files from the host machine. |
| 321 | |
Tom Rini | 3a64940 | 2017-03-18 09:01:44 -0400 | [diff] [blame] | 322 | config SYS_THUMB_BUILD |
| 323 | bool "Build U-Boot using the Thumb instruction set" |
| 324 | depends on !ARM64 |
| 325 | help |
| 326 | Use this flag to build U-Boot using the Thumb instruction set for |
| 327 | ARM architectures. Thumb instruction set provides better code |
| 328 | density. For ARM architectures that support Thumb2 this flag will |
| 329 | result in Thumb2 code generated by GCC. |
| 330 | |
| 331 | config SPL_SYS_THUMB_BUILD |
| 332 | bool "Build SPL using the Thumb instruction set" |
| 333 | default y if SYS_THUMB_BUILD |
| 334 | depends on !ARM64 |
| 335 | help |
| 336 | Use this flag to build SPL using the Thumb instruction set for |
| 337 | ARM architectures. Thumb instruction set provides better code |
| 338 | density. For ARM architectures that support Thumb2 this flag will |
| 339 | result in Thumb2 code generated by GCC. |
| 340 | |
Peng Fan | f3e9bec | 2015-08-19 15:48:57 +0800 | [diff] [blame] | 341 | config SYS_L2CACHE_OFF |
| 342 | bool "L2cache off" |
| 343 | help |
| 344 | If SoC does not support L2CACHE or one do not want to enable |
| 345 | L2CACHE, choose this option. |
| 346 | |
Andre Przywara | cdaa633 | 2016-05-31 10:45:06 -0700 | [diff] [blame] | 347 | config ENABLE_ARM_SOC_BOOT0_HOOK |
| 348 | bool "prepare BOOT0 header" |
| 349 | help |
| 350 | If the SoC's BOOT0 requires a header area filled with (magic) |
Simon Goldschmidt | 7d531e8 | 2018-02-13 13:18:00 +0100 | [diff] [blame] | 351 | values, then choose this option, and create a file included as |
| 352 | <asm/arch/boot0.h> which contains the required assembler code. |
Andre Przywara | cdaa633 | 2016-05-31 10:45:06 -0700 | [diff] [blame] | 353 | |
Andre Przywara | 85db583 | 2017-02-16 01:20:21 +0000 | [diff] [blame] | 354 | config ARM_CORTEX_CPU_IS_UP |
| 355 | bool |
| 356 | default n |
| 357 | |
Fabio Estevam | be72591 | 2016-12-15 19:30:40 -0200 | [diff] [blame] | 358 | config USE_ARCH_MEMCPY |
| 359 | bool "Use an assembly optimized implementation of memcpy" |
Tom Rini | 40d5534 | 2017-01-12 13:16:02 -0500 | [diff] [blame] | 360 | default y |
| 361 | depends on !ARM64 |
| 362 | help |
| 363 | Enable the generation of an optimized version of memcpy. |
| 364 | Such implementation may be faster under some conditions |
| 365 | but may increase the binary size. |
| 366 | |
| 367 | config SPL_USE_ARCH_MEMCPY |
Andy Yan | f8136e6 | 2017-06-28 16:27:37 +0800 | [diff] [blame] | 368 | bool "Use an assembly optimized implementation of memcpy for SPL" |
Tom Rini | 40d5534 | 2017-01-12 13:16:02 -0500 | [diff] [blame] | 369 | default y if USE_ARCH_MEMCPY |
Masahiro Yamada | 085be48 | 2016-12-19 19:31:02 +0900 | [diff] [blame] | 370 | depends on !ARM64 |
Fabio Estevam | be72591 | 2016-12-15 19:30:40 -0200 | [diff] [blame] | 371 | help |
| 372 | Enable the generation of an optimized version of memcpy. |
| 373 | Such implementation may be faster under some conditions |
| 374 | but may increase the binary size. |
| 375 | |
| 376 | config USE_ARCH_MEMSET |
| 377 | bool "Use an assembly optimized implementation of memset" |
Tom Rini | 40d5534 | 2017-01-12 13:16:02 -0500 | [diff] [blame] | 378 | default y |
| 379 | depends on !ARM64 |
| 380 | help |
| 381 | Enable the generation of an optimized version of memset. |
| 382 | Such implementation may be faster under some conditions |
| 383 | but may increase the binary size. |
| 384 | |
| 385 | config SPL_USE_ARCH_MEMSET |
Andy Yan | f8136e6 | 2017-06-28 16:27:37 +0800 | [diff] [blame] | 386 | bool "Use an assembly optimized implementation of memset for SPL" |
Tom Rini | 40d5534 | 2017-01-12 13:16:02 -0500 | [diff] [blame] | 387 | default y if USE_ARCH_MEMSET |
Masahiro Yamada | 085be48 | 2016-12-19 19:31:02 +0900 | [diff] [blame] | 388 | depends on !ARM64 |
Fabio Estevam | be72591 | 2016-12-15 19:30:40 -0200 | [diff] [blame] | 389 | help |
| 390 | Enable the generation of an optimized version of memset. |
| 391 | Such implementation may be faster under some conditions |
| 392 | but may increase the binary size. |
| 393 | |
Alison Wang | ec6617c | 2016-11-10 10:49:03 +0800 | [diff] [blame] | 394 | config ARM64_SUPPORT_AARCH32 |
| 395 | bool "ARM64 system support AArch32 execution state" |
| 396 | default y if ARM64 && !TARGET_THUNDERX_88XX |
| 397 | help |
| 398 | This ARM64 system supports AArch32 execution state. |
| 399 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 400 | choice |
| 401 | prompt "Target select" |
Simon Glass | b928e65 | 2015-08-30 19:19:30 -0600 | [diff] [blame] | 402 | default TARGET_HIKEY |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 403 | |
Masahiro Yamada | 4614b89 | 2015-02-20 17:04:01 +0900 | [diff] [blame] | 404 | config ARCH_AT91 |
| 405 | bool "Atmel AT91" |
Tom Rini | f58e946 | 2018-05-10 07:15:52 -0400 | [diff] [blame] | 406 | select SPL_BOARD_INIT if SPL && !TARGET_SMARTWEB |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 407 | |
| 408 | config TARGET_EDB93XX |
| 409 | bool "Support edb93xx" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 410 | select CPU_ARM920T |
Alexander Graf | 884f901 | 2018-01-25 12:05:50 +0100 | [diff] [blame] | 411 | select PL010_SERIAL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 412 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 413 | config TARGET_ASPENITE |
| 414 | bool "Support aspenite" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 415 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 416 | |
| 417 | config TARGET_GPLUGD |
| 418 | bool "Support gplugd" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 419 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 420 | |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 421 | config ARCH_DAVINCI |
| 422 | bool "TI DaVinci" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 423 | select CPU_ARM926EJS |
Simon Glass | 15dc63d | 2017-08-04 16:34:43 -0600 | [diff] [blame] | 424 | imply CMD_SAVES |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 425 | help |
| 426 | Support for TI's DaVinci platform. |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 427 | |
Masahiro Yamada | 47539e2 | 2014-08-31 07:10:59 +0900 | [diff] [blame] | 428 | config KIRKWOOD |
| 429 | bool "Marvell Kirkwood" |
Simon Glass | 4585601 | 2017-01-23 13:31:21 -0700 | [diff] [blame] | 430 | select ARCH_MISC_INIT |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 431 | select BOARD_EARLY_INIT_F |
| 432 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 433 | |
Stefan Roese | c3d8914 | 2015-08-25 13:18:38 +0200 | [diff] [blame] | 434 | config ARCH_MVEBU |
Stefan Roese | 21b29fc | 2016-05-25 08:13:45 +0200 | [diff] [blame] | 435 | bool "Marvell MVEBU family (Armada XP/375/38x/3700/7K/8K)" |
Stefan Roese | 9cffb23 | 2015-09-01 11:27:52 +0200 | [diff] [blame] | 436 | select DM |
Stefan Roese | e3b9c98 | 2015-11-19 07:46:15 +0100 | [diff] [blame] | 437 | select DM_ETH |
Stefan Roese | 1d51ea1 | 2015-09-02 08:41:41 +0200 | [diff] [blame] | 438 | select DM_SERIAL |
Stefan Roese | 09a54c0 | 2015-11-20 13:51:57 +0100 | [diff] [blame] | 439 | select DM_SPI |
| 440 | select DM_SPI_FLASH |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 441 | select OF_CONTROL |
| 442 | select OF_SEPARATE |
Adam Ford | f1b1f77 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 443 | select SPI |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 444 | imply CMD_DM |
Stefan Roese | a488483 | 2014-10-22 12:13:19 +0200 | [diff] [blame] | 445 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 446 | config TARGET_APF27 |
| 447 | bool "Support apf27" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 448 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 449 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 450 | |
Masahiro Yamada | 22f2be7 | 2014-08-31 07:11:06 +0900 | [diff] [blame] | 451 | config ORION5X |
| 452 | bool "Marvell Orion" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 453 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 454 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 455 | config TARGET_SPEAR300 |
| 456 | bool "Support spear300" |
Simon Glass | a5d6754 | 2017-01-23 13:31:20 -0700 | [diff] [blame] | 457 | select BOARD_EARLY_INIT_F |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 458 | select CPU_ARM926EJS |
Alexander Graf | d10fc50 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 459 | select PL011_SERIAL |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 460 | imply CMD_SAVES |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 461 | |
| 462 | config TARGET_SPEAR310 |
| 463 | bool "Support spear310" |
Simon Glass | a5d6754 | 2017-01-23 13:31:20 -0700 | [diff] [blame] | 464 | select BOARD_EARLY_INIT_F |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 465 | select CPU_ARM926EJS |
Alexander Graf | d10fc50 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 466 | select PL011_SERIAL |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 467 | imply CMD_SAVES |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 468 | |
| 469 | config TARGET_SPEAR320 |
| 470 | bool "Support spear320" |
Simon Glass | a5d6754 | 2017-01-23 13:31:20 -0700 | [diff] [blame] | 471 | select BOARD_EARLY_INIT_F |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 472 | select CPU_ARM926EJS |
Alexander Graf | d10fc50 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 473 | select PL011_SERIAL |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 474 | imply CMD_SAVES |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 475 | |
| 476 | config TARGET_SPEAR600 |
| 477 | bool "Support spear600" |
Simon Glass | a5d6754 | 2017-01-23 13:31:20 -0700 | [diff] [blame] | 478 | select BOARD_EARLY_INIT_F |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 479 | select CPU_ARM926EJS |
Alexander Graf | d10fc50 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 480 | select PL011_SERIAL |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 481 | imply CMD_SAVES |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 482 | |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 483 | config TARGET_STV0991 |
| 484 | bool "Support stv0991" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 485 | select CPU_V7A |
Masahiro Yamada | cac0ca7 | 2015-03-31 12:48:01 +0900 | [diff] [blame] | 486 | select DM |
| 487 | select DM_SERIAL |
Vikas Manocha | e67abca | 2015-07-02 18:29:41 -0700 | [diff] [blame] | 488 | select DM_SPI |
| 489 | select DM_SPI_FLASH |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 490 | select PL01X_SERIAL |
Adam Ford | f1b1f77 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 491 | select SPI |
Vikas Manocha | e67abca | 2015-07-02 18:29:41 -0700 | [diff] [blame] | 492 | select SPI_FLASH |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 493 | imply CMD_DM |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 494 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 495 | config TARGET_X600 |
| 496 | bool "Support x600" |
Tom Rini | e5ec481 | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 497 | select BOARD_LATE_INIT |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 498 | select CPU_ARM926EJS |
Alexander Graf | d10fc50 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 499 | select PL011_SERIAL |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 500 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 501 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 502 | config TARGET_WOODBURN |
| 503 | bool "Support woodburn" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 504 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 505 | |
| 506 | config TARGET_WOODBURN_SD |
| 507 | bool "Support woodburn_sd" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 508 | select CPU_ARM1136 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 509 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 510 | |
| 511 | config TARGET_FLEA3 |
| 512 | bool "Support flea3" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 513 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 514 | |
| 515 | config TARGET_MX35PDK |
| 516 | bool "Support mx35pdk" |
Tom Rini | e5ec481 | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 517 | select BOARD_LATE_INIT |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 518 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 519 | |
Masahiro Yamada | ddf6bd4 | 2015-03-19 19:42:56 +0900 | [diff] [blame] | 520 | config ARCH_BCM283X |
| 521 | bool "Broadcom BCM283X family" |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 522 | select DM |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 523 | select DM_GPIO |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 524 | select DM_SERIAL |
Fabian Vogt | 7670909 | 2016-09-26 14:26:51 +0200 | [diff] [blame] | 525 | select OF_CONTROL |
Alexander Graf | cf2c778 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 526 | select PL01X_SERIAL |
Alexander Graf | ae5326a | 2018-01-29 13:57:20 +0100 | [diff] [blame] | 527 | select SERIAL_SEARCH_ALL |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 528 | imply CMD_DM |
Tom Rini | 91d27a1 | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 529 | imply FAT_WRITE |
Stephen Warren | 4641429 | 2015-02-16 12:16:15 -0700 | [diff] [blame] | 530 | |
Philippe Reynes | 40b59b0 | 2018-10-11 18:31:58 +0200 | [diff] [blame] | 531 | config ARCH_BCM6858 |
| 532 | bool "Broadcom BCM6858 family" |
| 533 | select DM |
| 534 | select OF_CONTROL |
| 535 | imply CMD_DM |
| 536 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 537 | config TARGET_VEXPRESS_CA15_TC2 |
| 538 | bool "Support vexpress_ca15_tc2" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 539 | select CPU_V7A |
Hans de Goede | ea624e1 | 2014-11-14 09:34:30 +0100 | [diff] [blame] | 540 | select CPU_V7_HAS_NONSEC |
| 541 | select CPU_V7_HAS_VIRT |
Alexander Graf | d10fc50 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 542 | select PL011_SERIAL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 543 | |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 544 | config ARCH_BCMSTB |
| 545 | bool "Broadcom BCM7XXX family" |
| 546 | select CPU_V7A |
| 547 | select DM |
| 548 | select OF_CONTROL |
| 549 | select OF_PRIOR_STAGE |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 550 | imply CMD_DM |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 551 | help |
| 552 | This enables support for Broadcom ARM-based set-top box |
| 553 | chipsets, including the 7445 family of chips. |
| 554 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 555 | config TARGET_VEXPRESS_CA5X2 |
| 556 | bool "Support vexpress_ca5x2" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 557 | select CPU_V7A |
Alexander Graf | d10fc50 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 558 | select PL011_SERIAL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 559 | |
| 560 | config TARGET_VEXPRESS_CA9X4 |
| 561 | bool "Support vexpress_ca9x4" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 562 | select CPU_V7A |
Alexander Graf | d10fc50 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 563 | select PL011_SERIAL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 564 | |
Steve Rae | 43486e4 | 2016-06-02 15:10:56 -0700 | [diff] [blame] | 565 | config TARGET_BCM23550_W1D |
| 566 | bool "Support bcm23550_w1d" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 567 | select CPU_V7A |
Daniel Thompson | 221a949 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 568 | imply CRC32_VERIFY |
Tom Rini | 91d27a1 | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 569 | imply FAT_WRITE |
Steve Rae | 43486e4 | 2016-06-02 15:10:56 -0700 | [diff] [blame] | 570 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 571 | config TARGET_BCM28155_AP |
| 572 | bool "Support bcm28155_ap" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 573 | select CPU_V7A |
Daniel Thompson | 221a949 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 574 | imply CRC32_VERIFY |
Tom Rini | 91d27a1 | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 575 | imply FAT_WRITE |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 576 | |
Steve Rae | abb1678 | 2014-11-11 11:32:18 -0800 | [diff] [blame] | 577 | config TARGET_BCMCYGNUS |
| 578 | bool "Support bcmcygnus" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 579 | select CPU_V7A |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 580 | imply BCM_SF2_ETH |
| 581 | imply BCM_SF2_ETH_GMAC |
Simon Glass | 551c393 | 2017-05-17 03:25:25 -0600 | [diff] [blame] | 582 | imply CMD_HASH |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 583 | imply CRC32_VERIFY |
Tom Rini | 91d27a1 | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 584 | imply FAT_WRITE |
Daniel Thompson | 221a949 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 585 | imply HASH_VERIFY |
Suji Velupillai | c89782d | 2017-07-10 14:05:41 -0700 | [diff] [blame] | 586 | imply NETDEVICES |
Steve Rae | 9dec527 | 2014-08-11 13:58:26 -0700 | [diff] [blame] | 587 | |
Steve Rae | abb1678 | 2014-11-11 11:32:18 -0800 | [diff] [blame] | 588 | config TARGET_BCMNSP |
| 589 | bool "Support bcmnsp" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 590 | select CPU_V7A |
Steve Rae | 9dec527 | 2014-08-11 13:58:26 -0700 | [diff] [blame] | 591 | |
Jon Mason | 274bced | 2017-03-17 12:12:14 -0400 | [diff] [blame] | 592 | config TARGET_BCMNS2 |
| 593 | bool "Support Broadcom Northstar2" |
| 594 | select ARM64 |
| 595 | help |
| 596 | Support for Broadcom Northstar 2 SoCs. NS2 is a quad-core 64-bit |
| 597 | ARMv8 Cortex-A57 processors targeting a broad range of networking |
| 598 | applications |
| 599 | |
Masahiro Yamada | 72df68c | 2014-08-31 07:11:00 +0900 | [diff] [blame] | 600 | config ARCH_EXYNOS |
| 601 | bool "Samsung EXYNOS" |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 602 | select DM |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 603 | select DM_GPIO |
Simon Glass | fc47cf9 | 2016-11-23 06:34:40 -0700 | [diff] [blame] | 604 | select DM_I2C |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 605 | select DM_KEYBOARD |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 606 | select DM_SERIAL |
| 607 | select DM_SPI |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 608 | select DM_SPI_FLASH |
Adam Ford | f1b1f77 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 609 | select SPI |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 610 | imply CMD_DM |
Tom Rini | 91d27a1 | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 611 | imply FAT_WRITE |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 612 | |
Simon Glass | 311757b | 2014-10-07 22:01:50 -0600 | [diff] [blame] | 613 | config ARCH_S5PC1XX |
| 614 | bool "Samsung S5PC1XX" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 615 | select CPU_V7A |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 616 | select DM |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 617 | select DM_GPIO |
Simon Glass | 08848e9 | 2016-11-23 06:34:41 -0700 | [diff] [blame] | 618 | select DM_I2C |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 619 | select DM_SERIAL |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 620 | imply CMD_DM |
Simon Glass | 311757b | 2014-10-07 22:01:50 -0600 | [diff] [blame] | 621 | |
Masahiro Yamada | ef2b694 | 2014-08-31 07:11:07 +0900 | [diff] [blame] | 622 | config ARCH_HIGHBANK |
| 623 | bool "Calxeda Highbank" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 624 | select CPU_V7A |
Alexander Graf | d10fc50 | 2018-01-25 12:05:51 +0100 | [diff] [blame] | 625 | select PL011_SERIAL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 626 | |
Masahiro Yamada | 5cbbd9b | 2015-04-21 21:59:36 +0900 | [diff] [blame] | 627 | config ARCH_INTEGRATOR |
| 628 | bool "ARM Ltd. Integrator family" |
Linus Walleij | 3f394e7 | 2015-07-27 11:22:48 +0200 | [diff] [blame] | 629 | select DM |
| 630 | select DM_SERIAL |
Alexander Graf | cf2c778 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 631 | select PL01X_SERIAL |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 632 | imply CMD_DM |
Masahiro Yamada | 5cbbd9b | 2015-04-21 21:59:36 +0900 | [diff] [blame] | 633 | |
Masahiro Yamada | c338f09 | 2014-08-31 07:11:05 +0900 | [diff] [blame] | 634 | config ARCH_KEYSTONE |
| 635 | bool "TI Keystone" |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 636 | select CMD_POWEROFF |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 637 | select CPU_V7A |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 638 | select SUPPORT_SPL |
Andre Przywara | 7842b6a | 2018-04-12 04:24:46 +0300 | [diff] [blame] | 639 | select SYS_ARCH_TIMER |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 640 | select SYS_THUMB_BUILD |
Tom Rini | d56b4b1 | 2017-07-22 18:36:16 -0400 | [diff] [blame] | 641 | imply CMD_MTDPARTS |
Simon Glass | 15dc63d | 2017-08-04 16:34:43 -0600 | [diff] [blame] | 642 | imply CMD_SAVES |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 643 | imply FIT |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 644 | |
Lokesh Vutla | 586bde9 | 2018-08-27 15:57:08 +0530 | [diff] [blame] | 645 | config ARCH_K3 |
| 646 | bool "Texas Instruments' K3 Architecture" |
| 647 | select SPL |
| 648 | select SUPPORT_SPL |
| 649 | select FIT |
| 650 | |
Masahiro Yamada | a93fbf4a | 2017-04-25 13:10:11 +0900 | [diff] [blame] | 651 | config ARCH_OMAP2PLUS |
| 652 | bool "TI OMAP2+" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 653 | select CPU_V7A |
Ley Foon Tan | 0680f1b | 2017-05-03 17:13:32 +0800 | [diff] [blame] | 654 | select SPL_BOARD_INIT if SPL |
Tom Rini | ff6c312 | 2017-09-17 11:44:49 -0400 | [diff] [blame] | 655 | select SPL_STACK_R if SPL |
Masahiro Yamada | a93fbf4a | 2017-04-25 13:10:11 +0900 | [diff] [blame] | 656 | select SUPPORT_SPL |
| 657 | imply FIT |
| 658 | |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 659 | config ARCH_MESON |
| 660 | bool "Amlogic Meson" |
Masahiro Yamada | 7325f6c | 2018-04-25 18:47:52 +0900 | [diff] [blame] | 661 | imply DISTRO_DEFAULTS |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 662 | help |
| 663 | Support for the Meson SoC family developed by Amlogic Inc., |
| 664 | targeted at media players and tablet computers. We currently |
| 665 | support the S905 (GXBaby) 64-bit SoC. |
| 666 | |
Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 667 | config ARCH_MEDIATEK |
| 668 | bool "MediaTek SoCs" |
| 669 | select BINMAN |
| 670 | select DM |
| 671 | select OF_CONTROL |
| 672 | select SPL_DM if SPL |
| 673 | select SPL_LIBCOMMON_SUPPORT if SPL |
| 674 | select SPL_LIBGENERIC_SUPPORT if SPL |
| 675 | select SPL_OF_CONTROL if SPL |
| 676 | select SUPPORT_SPL |
| 677 | help |
| 678 | Support for the MediaTek SoCs family developed by MediaTek Inc. |
| 679 | Please refer to doc/README.mediatek for more information. |
| 680 | |
Vladimir Zapolskiy | ee54dfe | 2018-09-17 21:43:03 +0300 | [diff] [blame] | 681 | config ARCH_LPC32XX |
| 682 | bool "NXP LPC32xx platform" |
| 683 | select CPU_ARM926EJS |
| 684 | select DM |
| 685 | select DM_GPIO |
| 686 | select DM_SERIAL |
| 687 | select SPL_DM if SPL |
| 688 | select SUPPORT_SPL |
| 689 | imply CMD_DM |
| 690 | |
Peng Fan | b2b8b9b | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 691 | config ARCH_IMX8 |
| 692 | bool "NXP i.MX8 platform" |
| 693 | select ARM64 |
| 694 | select DM |
| 695 | select OF_CONTROL |
| 696 | |
Peng Fan | 7a7391f | 2018-01-10 13:20:19 +0800 | [diff] [blame] | 697 | config ARCH_MX8M |
| 698 | bool "NXP i.MX8M platform" |
| 699 | select ARM64 |
| 700 | select DM |
| 701 | select SUPPORT_SPL |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 702 | imply CMD_DM |
Peng Fan | 7a7391f | 2018-01-10 13:20:19 +0800 | [diff] [blame] | 703 | |
Stefan Agner | c5343d4 | 2018-02-06 09:44:34 +0100 | [diff] [blame] | 704 | config ARCH_MX23 |
| 705 | bool "NXP i.MX23 family" |
| 706 | select CPU_ARM926EJS |
| 707 | select PL011_SERIAL |
| 708 | select SUPPORT_SPL |
| 709 | |
Fabio Estevam | 07df697 | 2017-11-03 13:40:08 -0200 | [diff] [blame] | 710 | config ARCH_MX25 |
| 711 | bool "NXP MX25" |
| 712 | select CPU_ARM926EJS |
Adam Ford | 8bbff6a | 2018-02-04 09:32:43 -0600 | [diff] [blame] | 713 | imply MXC_GPIO |
Fabio Estevam | 07df697 | 2017-11-03 13:40:08 -0200 | [diff] [blame] | 714 | |
Stefan Agner | 25c5b4e | 2018-02-06 09:44:35 +0100 | [diff] [blame] | 715 | config ARCH_MX28 |
| 716 | bool "NXP i.MX28 family" |
| 717 | select CPU_ARM926EJS |
| 718 | select PL011_SERIAL |
| 719 | select SUPPORT_SPL |
| 720 | |
Magnus Lilja | 3159ec6 | 2018-05-11 14:06:54 +0200 | [diff] [blame] | 721 | config ARCH_MX31 |
| 722 | bool "NXP i.MX31 family" |
| 723 | select CPU_ARM1136 |
| 724 | |
Peng Fan | e90a08d | 2017-02-22 16:21:39 +0800 | [diff] [blame] | 725 | config ARCH_MX7ULP |
Michal Simek | 6e7bdde | 2018-07-23 15:55:12 +0200 | [diff] [blame] | 726 | bool "NXP MX7ULP" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 727 | select CPU_V7A |
Peng Fan | e90a08d | 2017-02-22 16:21:39 +0800 | [diff] [blame] | 728 | select ROM_UNIFIED_SECTIONS |
Adam Ford | 8bbff6a | 2018-02-04 09:32:43 -0600 | [diff] [blame] | 729 | imply MXC_GPIO |
Peng Fan | e90a08d | 2017-02-22 16:21:39 +0800 | [diff] [blame] | 730 | |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 731 | config ARCH_MX7 |
| 732 | bool "Freescale MX7" |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 733 | select ARCH_MISC_INIT |
| 734 | select BOARD_EARLY_INIT_F |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 735 | select CPU_V7A |
York Sun | 2c2e2c9 | 2016-12-28 08:43:30 -0800 | [diff] [blame] | 736 | select SYS_FSL_HAS_SEC if SECURE_BOOT |
| 737 | select SYS_FSL_SEC_COMPAT_4 |
York Sun | 90b8038 | 2016-12-28 08:43:31 -0800 | [diff] [blame] | 738 | select SYS_FSL_SEC_LE |
Adam Ford | 8bbff6a | 2018-02-04 09:32:43 -0600 | [diff] [blame] | 739 | imply MXC_GPIO |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 740 | |
Boris BREZILLON | 89ebc82 | 2015-03-04 13:13:03 +0100 | [diff] [blame] | 741 | config ARCH_MX6 |
| 742 | bool "Freescale MX6" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 743 | select CPU_V7A |
York Sun | 2c2e2c9 | 2016-12-28 08:43:30 -0800 | [diff] [blame] | 744 | select SYS_FSL_HAS_SEC if SECURE_BOOT |
| 745 | select SYS_FSL_SEC_COMPAT_4 |
York Sun | 90b8038 | 2016-12-28 08:43:31 -0800 | [diff] [blame] | 746 | select SYS_FSL_SEC_LE |
Tom Rini | 3a64940 | 2017-03-18 09:01:44 -0400 | [diff] [blame] | 747 | select SYS_THUMB_BUILD if SPL |
Adam Ford | 8bbff6a | 2018-02-04 09:32:43 -0600 | [diff] [blame] | 748 | imply MXC_GPIO |
Boris BREZILLON | 89ebc82 | 2015-03-04 13:13:03 +0100 | [diff] [blame] | 749 | |
Philipp Tomsich | b529993 | 2017-08-03 23:23:55 +0200 | [diff] [blame] | 750 | if ARCH_MX6 |
| 751 | config SPL_LDSCRIPT |
Michal Simek | 6e7bdde | 2018-07-23 15:55:12 +0200 | [diff] [blame] | 752 | default "arch/arm/mach-omap2/u-boot-spl.lds" |
Philipp Tomsich | b529993 | 2017-08-03 23:23:55 +0200 | [diff] [blame] | 753 | endif |
| 754 | |
Andrej Rosano | 424ee3d | 2015-04-08 18:56:29 +0200 | [diff] [blame] | 755 | config ARCH_MX5 |
| 756 | bool "Freescale MX5" |
Simon Glass | a5d6754 | 2017-01-23 13:31:20 -0700 | [diff] [blame] | 757 | select BOARD_EARLY_INIT_F |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 758 | select CPU_V7A |
Adam Ford | 8bbff6a | 2018-02-04 09:32:43 -0600 | [diff] [blame] | 759 | imply MXC_GPIO |
Andrej Rosano | 424ee3d | 2015-04-08 18:56:29 +0200 | [diff] [blame] | 760 | |
Manivannan Sadhasivam | 97775d2 | 2018-06-14 23:38:31 +0530 | [diff] [blame] | 761 | config ARCH_OWL |
| 762 | bool "Actions Semi OWL SoCs" |
| 763 | select ARM64 |
| 764 | select DM |
| 765 | select DM_SERIAL |
| 766 | select OF_CONTROL |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 767 | imply CMD_DM |
Manivannan Sadhasivam | 97775d2 | 2018-06-14 23:38:31 +0530 | [diff] [blame] | 768 | |
Tuomas Tynkkynen | 32f1182 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 769 | config ARCH_QEMU |
| 770 | bool "QEMU Virtual Platform" |
Tuomas Tynkkynen | 32f1182 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 771 | select DM |
| 772 | select DM_SERIAL |
| 773 | select OF_CONTROL |
Alexander Graf | cf2c778 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 774 | select PL01X_SERIAL |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 775 | imply CMD_DM |
AKASHI Takahiro | a47c1b5 | 2018-09-14 17:06:54 +0900 | [diff] [blame] | 776 | imply DM_RTC |
| 777 | imply RTC_PL031 |
Tuomas Tynkkynen | 32f1182 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 778 | |
Nobuhiro Iwamatsu | 1cc95f6 | 2015-10-10 05:58:28 +0900 | [diff] [blame] | 779 | config ARCH_RMOBILE |
Masahiro Yamada | f40b989 | 2014-08-31 07:10:57 +0900 | [diff] [blame] | 780 | bool "Renesas ARM SoCs" |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 781 | select BOARD_EARLY_INIT_F |
Nobuhiro Iwamatsu | 1cc95f6 | 2015-10-10 05:58:28 +0900 | [diff] [blame] | 782 | select DM |
| 783 | select DM_SERIAL |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 784 | imply CMD_DM |
Tom Rini | 91d27a1 | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 785 | imply FAT_WRITE |
Tom Rini | 3a64940 | 2017-03-18 09:01:44 -0400 | [diff] [blame] | 786 | imply SYS_THUMB_BUILD |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 787 | |
Eddy Petrișor | 9702ec0 | 2016-06-05 03:43:00 +0300 | [diff] [blame] | 788 | config TARGET_S32V234EVB |
| 789 | bool "Support s32v234evb" |
| 790 | select ARM64 |
York Sun | c01e4a1 | 2016-12-28 08:43:42 -0800 | [diff] [blame] | 791 | select SYS_FSL_ERRATUM_ESDHC111 |
Eddy Petrișor | 9702ec0 | 2016-06-05 03:43:00 +0300 | [diff] [blame] | 792 | |
Mateusz Kulikowski | 0859213 | 2016-03-31 23:12:32 +0200 | [diff] [blame] | 793 | config ARCH_SNAPDRAGON |
| 794 | bool "Qualcomm Snapdragon SoCs" |
| 795 | select ARM64 |
| 796 | select DM |
| 797 | select DM_GPIO |
| 798 | select DM_SERIAL |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 799 | select MSM_SMEM |
Mateusz Kulikowski | 0859213 | 2016-03-31 23:12:32 +0200 | [diff] [blame] | 800 | select OF_CONTROL |
| 801 | select OF_SEPARATE |
Ramon Fried | 654dd4a | 2018-07-02 02:57:56 +0300 | [diff] [blame] | 802 | select SMEM |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 803 | select SPMI |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 804 | imply CMD_DM |
Mateusz Kulikowski | 0859213 | 2016-03-31 23:12:32 +0200 | [diff] [blame] | 805 | |
Masahiro Yamada | 7865f4b | 2015-04-21 20:38:20 +0900 | [diff] [blame] | 806 | config ARCH_SOCFPGA |
| 807 | bool "Altera SOCFPGA family" |
Simon Glass | a421192 | 2017-01-23 13:31:19 -0700 | [diff] [blame] | 808 | select ARCH_EARLY_INIT_R |
Marek Vasut | d6a61da | 2018-08-13 20:06:46 +0200 | [diff] [blame] | 809 | select ARCH_MISC_INIT if !TARGET_SOCFPGA_ARRIA10 |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 810 | select ARM64 if TARGET_SOCFPGA_STRATIX10 |
Ley Foon Tan | a684729 | 2018-05-24 00:17:32 +0800 | [diff] [blame] | 811 | select CPU_V7A if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10 |
Marek Vasut | 48befc0 | 2018-05-11 22:25:59 +0200 | [diff] [blame] | 812 | select DM |
Marek Vasut | 7317275 | 2018-05-11 22:26:35 +0200 | [diff] [blame] | 813 | select DM_SERIAL |
Ley Foon Tan | a684729 | 2018-05-24 00:17:32 +0800 | [diff] [blame] | 814 | select ENABLE_ARM_SOC_BOOT0_HOOK if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10 |
Marek Vasut | 48befc0 | 2018-05-11 22:25:59 +0200 | [diff] [blame] | 815 | select OF_CONTROL |
Ley Foon Tan | 00057ee | 2018-07-13 13:40:23 +0800 | [diff] [blame] | 816 | select SPL_DM_RESET if DM_RESET |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 817 | select SPL_DM_SERIAL |
Marek Vasut | 48befc0 | 2018-05-11 22:25:59 +0200 | [diff] [blame] | 818 | select SPL_LIBCOMMON_SUPPORT |
| 819 | select SPL_LIBDISK_SUPPORT |
| 820 | select SPL_LIBGENERIC_SUPPORT |
| 821 | select SPL_MMC_SUPPORT if DM_MMC |
| 822 | select SPL_NAND_SUPPORT if SPL_NAND_DENALI |
| 823 | select SPL_OF_CONTROL |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 824 | select SPL_SEPARATE_BSS if TARGET_SOCFPGA_STRATIX10 |
Marek Vasut | 48befc0 | 2018-05-11 22:25:59 +0200 | [diff] [blame] | 825 | select SPL_SERIAL_SUPPORT |
| 826 | select SPL_SPI_FLASH_SUPPORT if SPL_SPI_SUPPORT |
| 827 | select SPL_SPI_SUPPORT if DM_SPI |
| 828 | select SPL_WATCHDOG_SUPPORT |
| 829 | select SUPPORT_SPL |
Marek Vasut | 7317275 | 2018-05-11 22:26:35 +0200 | [diff] [blame] | 830 | select SYS_NS16550 |
Ley Foon Tan | a684729 | 2018-05-24 00:17:32 +0800 | [diff] [blame] | 831 | select SYS_THUMB_BUILD if TARGET_SOCFPGA_GEN5 || TARGET_SOCFPGA_ARRIA10 |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 832 | imply CMD_DM |
Tom Rini | d56b4b1 | 2017-07-22 18:36:16 -0400 | [diff] [blame] | 833 | imply CMD_MTDPARTS |
Daniel Thompson | 221a949 | 2017-05-19 17:26:58 +0100 | [diff] [blame] | 834 | imply CRC32_VERIFY |
Simon Goldschmidt | fef4a54 | 2018-02-13 06:34:14 +0100 | [diff] [blame] | 835 | imply DM_SPI |
| 836 | imply DM_SPI_FLASH |
Tom Rini | 91d27a1 | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 837 | imply FAT_WRITE |
Simon Goldschmidt | fef4a54 | 2018-02-13 06:34:14 +0100 | [diff] [blame] | 838 | imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION |
Simon Goldschmidt | f48db4e | 2018-10-30 20:21:49 +0100 | [diff] [blame] | 839 | imply SYS_MMCSD_RAW_MODE_U_BOOT_USE_PARTITION_TYPE |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 840 | |
Ian Campbell | 2c7e3b9 | 2014-10-24 21:20:44 +0100 | [diff] [blame] | 841 | config ARCH_SUNXI |
| 842 | bool "Support sunxi (Allwinner) SoCs" |
Masahiro Yamada | d6a0c78 | 2017-10-17 13:42:44 +0900 | [diff] [blame] | 843 | select BINMAN |
Hans de Goede | 88bb800 | 2016-04-03 09:41:44 +0200 | [diff] [blame] | 844 | select CMD_GPIO |
Hans de Goede | 0878a8a | 2016-05-15 13:51:58 +0200 | [diff] [blame] | 845 | select CMD_MMC if MMC |
Yann E. MORIN | 2997ee5 | 2016-10-31 22:33:40 +0100 | [diff] [blame] | 846 | select CMD_USB if DISTRO_DEFAULTS |
Hans de Goede | b6006ba | 2015-04-15 20:46:48 +0200 | [diff] [blame] | 847 | select DM |
Tom Rini | 4536882 | 2015-06-30 16:51:15 -0400 | [diff] [blame] | 848 | select DM_ETH |
Hans de Goede | 211d57a | 2015-12-21 20:22:00 +0100 | [diff] [blame] | 849 | select DM_GPIO |
| 850 | select DM_KEYBOARD |
Tom Rini | 4536882 | 2015-06-30 16:51:15 -0400 | [diff] [blame] | 851 | select DM_SERIAL |
Yann E. MORIN | 2997ee5 | 2016-10-31 22:33:40 +0100 | [diff] [blame] | 852 | select DM_USB if DISTRO_DEFAULTS |
Hans de Goede | d75111a | 2016-03-22 22:51:52 +0100 | [diff] [blame] | 853 | select OF_BOARD_SETUP |
Hans de Goede | b6006ba | 2015-04-15 20:46:48 +0200 | [diff] [blame] | 854 | select OF_CONTROL |
| 855 | select OF_SEPARATE |
Tom Rini | 6f6b7cf | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 856 | select SPECIFY_CONSOLE_INDEX |
Tom Rini | ab43de8 | 2017-06-21 07:54:46 -0400 | [diff] [blame] | 857 | select SPL_STACK_R if SPL |
| 858 | select SPL_SYS_MALLOC_SIMPLE if SPL |
Tom Rini | 3a64940 | 2017-03-18 09:01:44 -0400 | [diff] [blame] | 859 | select SPL_SYS_THUMB_BUILD if !ARM64 |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 860 | select SYS_NS16550 |
Maxime Ripard | ce2e44d | 2017-10-19 11:49:29 +0200 | [diff] [blame] | 861 | select SYS_THUMB_BUILD if !ARM64 |
Yann E. MORIN | 2997ee5 | 2016-10-31 22:33:40 +0100 | [diff] [blame] | 862 | select USB if DISTRO_DEFAULTS |
Yann E. MORIN | 2997ee5 | 2016-10-31 22:33:40 +0100 | [diff] [blame] | 863 | select USB_KEYBOARD if DISTRO_DEFAULTS |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 864 | select USB_STORAGE if DISTRO_DEFAULTS |
Hans de Goede | 8c7d229 | 2016-06-10 12:19:40 +0200 | [diff] [blame] | 865 | select USE_TINY_PRINTF |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 866 | imply CMD_DM |
Maxime Ripard | a12fb0e | 2017-08-24 11:54:03 +0200 | [diff] [blame] | 867 | imply CMD_GPT |
Masahiro Yamada | c6cca10 | 2018-07-09 15:12:37 +0900 | [diff] [blame] | 868 | imply CMD_UBI if NAND |
Masahiro Yamada | 7325f6c | 2018-04-25 18:47:52 +0900 | [diff] [blame] | 869 | imply DISTRO_DEFAULTS |
Tom Rini | 91d27a1 | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 870 | imply FAT_WRITE |
Marek Vasut | 2f13cf3 | 2018-10-10 18:27:35 +0200 | [diff] [blame] | 871 | imply FIT |
Andre Heider | eff264d | 2018-01-16 09:44:22 +0100 | [diff] [blame] | 872 | imply OF_LIBFDT_OVERLAY |
Masahiro Yamada | af83a60 | 2017-04-28 19:42:19 +0900 | [diff] [blame] | 873 | imply PRE_CONSOLE_BUFFER |
| 874 | imply SPL_GPIO_SUPPORT |
| 875 | imply SPL_LIBCOMMON_SUPPORT |
| 876 | imply SPL_LIBDISK_SUPPORT |
| 877 | imply SPL_LIBGENERIC_SUPPORT |
Masahiro Yamada | 4aa2ba3 | 2017-05-09 20:31:39 +0900 | [diff] [blame] | 878 | imply SPL_MMC_SUPPORT if MMC |
Masahiro Yamada | af83a60 | 2017-04-28 19:42:19 +0900 | [diff] [blame] | 879 | imply SPL_POWER_SUPPORT |
| 880 | imply SPL_SERIAL_SUPPORT |
Maxime Ripard | 654b02b | 2017-09-07 10:46:24 +0200 | [diff] [blame] | 881 | imply USB_GADGET |
Chen-Yu Tsai | 8ebe4f4 | 2014-10-22 16:47:44 +0800 | [diff] [blame] | 882 | |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 883 | config ARCH_VERSAL |
| 884 | bool "Support Xilinx Versal Platform" |
| 885 | select ARM64 |
| 886 | select CLK |
| 887 | select DM |
| 888 | select DM_SERIAL |
| 889 | select OF_CONTROL |
| 890 | |
Stefan Agner | 7966b43 | 2017-03-13 18:41:36 -0700 | [diff] [blame] | 891 | config ARCH_VF610 |
| 892 | bool "Freescale Vybrid" |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 893 | select CPU_V7A |
York Sun | c01e4a1 | 2016-12-28 08:43:42 -0800 | [diff] [blame] | 894 | select SYS_FSL_ERRATUM_ESDHC111 |
Tom Rini | d56b4b1 | 2017-07-22 18:36:16 -0400 | [diff] [blame] | 895 | imply CMD_MTDPARTS |
Adam Ford | 5bbc265 | 2017-08-07 17:37:18 -0400 | [diff] [blame] | 896 | imply NAND |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 897 | |
Masahiro Yamada | 5ca269a | 2015-03-16 16:43:24 +0900 | [diff] [blame] | 898 | config ARCH_ZYNQ |
Michal Simek | b8d4497 | 2017-11-23 08:25:41 +0100 | [diff] [blame] | 899 | bool "Xilinx Zynq based platform" |
Michal Simek | e6cc3b2 | 2018-02-21 17:04:28 +0100 | [diff] [blame] | 900 | select BOARD_EARLY_INIT_F if WDT |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 901 | select CLK |
| 902 | select CLK_ZYNQ |
| 903 | select CPU_V7A |
Masahiro Yamada | 8981f05 | 2015-03-31 12:47:55 +0900 | [diff] [blame] | 904 | select DM |
Michal Simek | c4a142f | 2018-01-09 14:49:28 +0100 | [diff] [blame] | 905 | select DM_ETH if NET |
Michal Simek | c4a142f | 2018-01-09 14:49:28 +0100 | [diff] [blame] | 906 | select DM_MMC if MMC |
Simon Glass | 42800ff | 2015-10-17 19:41:27 -0600 | [diff] [blame] | 907 | select DM_SERIAL |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 908 | select DM_SPI |
Jagan Teki | 9f7a450 | 2015-06-27 00:51:32 +0530 | [diff] [blame] | 909 | select DM_SPI_FLASH |
Simon Glass | dec49e8 | 2016-07-05 17:10:14 -0600 | [diff] [blame] | 910 | select DM_USB if USB |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 911 | select OF_CONTROL |
Adam Ford | f1b1f77 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 912 | select SPI |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 913 | select SPL_BOARD_INIT if SPL |
| 914 | select SPL_CLK if SPL |
| 915 | select SPL_DM if SPL |
| 916 | select SPL_OF_CONTROL if SPL |
| 917 | select SPL_SEPARATE_BSS if SPL |
| 918 | select SUPPORT_SPL |
Michal Simek | 4aba5fb | 2018-01-17 10:56:22 -0300 | [diff] [blame] | 919 | imply ARCH_EARLY_INIT_R |
Michal Simek | 8eb55e1 | 2018-08-20 08:24:14 +0200 | [diff] [blame] | 920 | imply BOARD_LATE_INIT |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 921 | imply CMD_CLK |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 922 | imply CMD_DM |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 923 | imply CMD_SPL |
| 924 | imply FAT_WRITE |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 925 | |
Michal Simek | 1d6c54e | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 926 | config ARCH_ZYNQMP_R5 |
| 927 | bool "Xilinx ZynqMP R5 based platform" |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 928 | select CLK |
Michal Simek | 1d6c54e | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 929 | select CPU_V7R |
Michal Simek | 1d6c54e | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 930 | select DM |
| 931 | select DM_SERIAL |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 932 | select OF_CONTROL |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 933 | imply CMD_DM |
Michal Simek | 1d6c54e | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 934 | |
Siva Durga Prasad Paladugu | 0b54a9d | 2015-06-10 15:50:57 +0530 | [diff] [blame] | 935 | config ARCH_ZYNQMP |
Michal Simek | b8d4497 | 2017-11-23 08:25:41 +0100 | [diff] [blame] | 936 | bool "Xilinx ZynqMP based platform" |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 937 | select ARM64 |
Michal Simek | 1f29738 | 2016-07-14 15:07:54 +0200 | [diff] [blame] | 938 | select CLK |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 939 | select DM |
| 940 | select DM_SERIAL |
| 941 | select DM_USB if USB |
| 942 | select OF_CONTROL |
Ley Foon Tan | 0680f1b | 2017-05-03 17:13:32 +0800 | [diff] [blame] | 943 | select SPL_BOARD_INIT if SPL |
Michal Simek | 2f03968 | 2017-12-01 15:13:36 +0100 | [diff] [blame] | 944 | select SPL_CLK if SPL |
Michal Simek | 850e779 | 2018-11-23 09:01:44 +0100 | [diff] [blame] | 945 | select SPL_SEPARATE_BSS if SPL |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 946 | select SUPPORT_SPL |
Michal Simek | 8eb55e1 | 2018-08-20 08:24:14 +0200 | [diff] [blame] | 947 | imply BOARD_LATE_INIT |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 948 | imply CMD_DM |
Tom Rini | 91d27a1 | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 949 | imply FAT_WRITE |
Michal Simek | 22270ca03 | 2018-10-04 14:26:13 +0200 | [diff] [blame] | 950 | imply MP |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 951 | |
Masahiro Yamada | ddd960e | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 952 | config TEGRA |
| 953 | bool "NVIDIA Tegra" |
Masahiro Yamada | 7325f6c | 2018-04-25 18:47:52 +0900 | [diff] [blame] | 954 | imply DISTRO_DEFAULTS |
Tom Rini | 91d27a1 | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 955 | imply FAT_WRITE |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 956 | |
Linus Walleij | f91afc4 | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 957 | config TARGET_VEXPRESS64_AEMV8A |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 958 | bool "Support vexpress_aemv8a" |
Masahiro Yamada | 016a954 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 959 | select ARM64 |
Alexander Graf | cf2c778 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 960 | select PL01X_SERIAL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 961 | |
Linus Walleij | f91afc4 | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 962 | config TARGET_VEXPRESS64_BASE_FVP |
| 963 | bool "Support Versatile Express ARMv8a FVP BASE model" |
| 964 | select ARM64 |
Alexander Graf | cf2c778 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 965 | select PL01X_SERIAL |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 966 | select SEMIHOSTING |
Linus Walleij | f91afc4 | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 967 | |
Ryan Harkin | fc04b92 | 2015-10-09 17:18:02 +0100 | [diff] [blame] | 968 | config TARGET_VEXPRESS64_BASE_FVP_DRAM |
| 969 | bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM" |
| 970 | select ARM64 |
Alexander Graf | cf2c778 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 971 | select PL01X_SERIAL |
Ryan Harkin | fc04b92 | 2015-10-09 17:18:02 +0100 | [diff] [blame] | 972 | help |
| 973 | This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides |
| 974 | the default config to allow the user to load the images directly into |
| 975 | DRAM using model parameters rather than by using semi-hosting to load |
| 976 | the files from the host filesystem. |
| 977 | |
Linus Walleij | ffc1037 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 978 | config TARGET_VEXPRESS64_JUNO |
| 979 | bool "Support Versatile Express Juno Development Platform" |
| 980 | select ARM64 |
Alexander Graf | cf2c778 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 981 | select PL01X_SERIAL |
Linus Walleij | ffc1037 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 982 | |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 983 | config TARGET_LS2080A_EMU |
| 984 | bool "Support ls2080a_emu" |
York Sun | fb2bf8c | 2016-10-04 14:31:48 -0700 | [diff] [blame] | 985 | select ARCH_LS2080A |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 986 | select ARCH_MISC_INIT |
Masahiro Yamada | 016a954 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 987 | select ARM64 |
Linus Walleij | 23b5877 | 2015-03-09 10:53:21 +0100 | [diff] [blame] | 988 | select ARMV8_MULTIENTRY |
York Sun | 7288c2c | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 989 | help |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 990 | Support for Freescale LS2080A_EMU platform |
| 991 | The LS2080A Development System (EMULATOR) is a pre silicon |
| 992 | development platform that supports the QorIQ LS2080A |
York Sun | 7288c2c | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 993 | Layerscape Architecture processor. |
| 994 | |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 995 | config TARGET_LS2080A_SIMU |
| 996 | bool "Support ls2080a_simu" |
York Sun | fb2bf8c | 2016-10-04 14:31:48 -0700 | [diff] [blame] | 997 | select ARCH_LS2080A |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 998 | select ARCH_MISC_INIT |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 999 | select ARM64 |
| 1000 | select ARMV8_MULTIENTRY |
| 1001 | help |
| 1002 | Support for Freescale LS2080A_SIMU platform |
| 1003 | The LS2080A Development System (QDS) is a pre silicon |
| 1004 | development platform that supports the QorIQ LS2080A |
| 1005 | Layerscape Architecture processor. |
| 1006 | |
Ashish Kumar | 7769776 | 2017-08-31 16:12:55 +0530 | [diff] [blame] | 1007 | config TARGET_LS1088AQDS |
| 1008 | bool "Support ls1088aqds" |
| 1009 | select ARCH_LS1088A |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1010 | select ARCH_MISC_INIT |
Ashish Kumar | 7769776 | 2017-08-31 16:12:55 +0530 | [diff] [blame] | 1011 | select ARM64 |
| 1012 | select ARMV8_MULTIENTRY |
Ashish Kumar | 7769776 | 2017-08-31 16:12:55 +0530 | [diff] [blame] | 1013 | select BOARD_LATE_INIT |
Ashish Kumar | 91fded6 | 2017-11-06 13:18:44 +0530 | [diff] [blame] | 1014 | select SUPPORT_SPL |
Ashish Kumar | 7769776 | 2017-08-31 16:12:55 +0530 | [diff] [blame] | 1015 | help |
| 1016 | Support for NXP LS1088AQDS platform |
| 1017 | The LS1088A Development System (QDS) is a high-performance |
| 1018 | development platform that supports the QorIQ LS1088A |
| 1019 | Layerscape Architecture processor. |
| 1020 | |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 1021 | config TARGET_LS2080AQDS |
| 1022 | bool "Support ls2080aqds" |
York Sun | fb2bf8c | 2016-10-04 14:31:48 -0700 | [diff] [blame] | 1023 | select ARCH_LS2080A |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1024 | select ARCH_MISC_INIT |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 1025 | select ARM64 |
| 1026 | select ARMV8_MULTIENTRY |
Tom Rini | e5ec481 | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1027 | select BOARD_LATE_INIT |
Scott Wood | 32eda7c | 2015-03-24 13:25:03 -0700 | [diff] [blame] | 1028 | select SUPPORT_SPL |
Simon Glass | fedb428 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1029 | imply SCSI |
Tuomas Tynkkynen | 9fd95ef | 2017-12-08 15:36:19 +0200 | [diff] [blame] | 1030 | imply SCSI_AHCI |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 1031 | help |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 1032 | Support for Freescale LS2080AQDS platform |
| 1033 | The LS2080A Development System (QDS) is a high-performance |
| 1034 | development platform that supports the QorIQ LS2080A |
| 1035 | Layerscape Architecture processor. |
| 1036 | |
| 1037 | config TARGET_LS2080ARDB |
| 1038 | bool "Support ls2080ardb" |
York Sun | fb2bf8c | 2016-10-04 14:31:48 -0700 | [diff] [blame] | 1039 | select ARCH_LS2080A |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1040 | select ARCH_MISC_INIT |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 1041 | select ARM64 |
| 1042 | select ARMV8_MULTIENTRY |
Tom Rini | e5ec481 | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1043 | select BOARD_LATE_INIT |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 1044 | select SUPPORT_SPL |
Simon Glass | fedb428 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1045 | imply SCSI |
Tuomas Tynkkynen | 9fd95ef | 2017-12-08 15:36:19 +0200 | [diff] [blame] | 1046 | imply SCSI_AHCI |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 1047 | help |
| 1048 | Support for Freescale LS2080ARDB platform. |
| 1049 | The LS2080A Reference design board (RDB) is a high-performance |
| 1050 | development platform that supports the QorIQ LS2080A |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 1051 | Layerscape Architecture processor. |
| 1052 | |
Priyanka Jain | 3049a58 | 2017-04-27 15:08:07 +0530 | [diff] [blame] | 1053 | config TARGET_LS2081ARDB |
| 1054 | bool "Support ls2081ardb" |
| 1055 | select ARCH_LS2080A |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1056 | select ARCH_MISC_INIT |
Priyanka Jain | 3049a58 | 2017-04-27 15:08:07 +0530 | [diff] [blame] | 1057 | select ARM64 |
| 1058 | select ARMV8_MULTIENTRY |
| 1059 | select BOARD_LATE_INIT |
| 1060 | select SUPPORT_SPL |
Priyanka Jain | 3049a58 | 2017-04-27 15:08:07 +0530 | [diff] [blame] | 1061 | help |
| 1062 | Support for Freescale LS2081ARDB platform. |
| 1063 | The LS2081A Reference design board (RDB) is a high-performance |
| 1064 | development platform that supports the QorIQ LS2081A/LS2041A |
| 1065 | Layerscape Architecture processor. |
| 1066 | |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 1067 | config TARGET_HIKEY |
| 1068 | bool "Support HiKey 96boards Consumer Edition Platform" |
| 1069 | select ARM64 |
Peter Griffin | efd7b60 | 2015-09-10 21:55:16 +0100 | [diff] [blame] | 1070 | select DM |
| 1071 | select DM_GPIO |
Peter Griffin | 9c71bcd | 2015-09-10 21:55:17 +0100 | [diff] [blame] | 1072 | select DM_SERIAL |
Peter Griffin | cd593ed | 2016-04-20 17:13:59 +0100 | [diff] [blame] | 1073 | select OF_CONTROL |
Alexander Graf | cf2c778 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 1074 | select PL01X_SERIAL |
Tom Rini | 6f6b7cf | 2018-03-06 19:02:27 -0500 | [diff] [blame] | 1075 | select SPECIFY_CONSOLE_INDEX |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1076 | imply CMD_DM |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 1077 | help |
| 1078 | Support for HiKey 96boards platform. It features a HI6220 |
| 1079 | SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM. |
| 1080 | |
Jorge Ramirez-Ortiz | d754254 | 2017-06-26 15:52:49 +0200 | [diff] [blame] | 1081 | config TARGET_POPLAR |
| 1082 | bool "Support Poplar 96boards Enterprise Edition Platform" |
| 1083 | select ARM64 |
| 1084 | select DM |
Jorge Ramirez-Ortiz | d754254 | 2017-06-26 15:52:49 +0200 | [diff] [blame] | 1085 | select DM_SERIAL |
| 1086 | select DM_USB |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1087 | select OF_CONTROL |
Alexander Graf | cf2c778 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 1088 | select PL01X_SERIAL |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1089 | imply CMD_DM |
Jorge Ramirez-Ortiz | d754254 | 2017-06-26 15:52:49 +0200 | [diff] [blame] | 1090 | help |
| 1091 | Support for Poplar 96boards EE platform. It features a HI3798cv200 |
| 1092 | SoC, with 4xA53 CPU, 1GB RAM and the high performance Mali T720 GPU |
| 1093 | making it capable of running any commercial set-top solution based on |
| 1094 | Linux or Android. |
| 1095 | |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 1096 | config TARGET_LS1012AQDS |
| 1097 | bool "Support ls1012aqds" |
York Sun | 9533acf | 2016-09-26 08:09:26 -0700 | [diff] [blame] | 1098 | select ARCH_LS1012A |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 1099 | select ARM64 |
Tom Rini | e5ec481 | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1100 | select BOARD_LATE_INIT |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 1101 | help |
| 1102 | Support for Freescale LS1012AQDS platform. |
| 1103 | The LS1012A Development System (QDS) is a high-performance |
| 1104 | development platform that supports the QorIQ LS1012A |
| 1105 | Layerscape Architecture processor. |
| 1106 | |
Prabhakar Kushwaha | 3b6e389 | 2016-06-03 18:41:35 +0530 | [diff] [blame] | 1107 | config TARGET_LS1012ARDB |
| 1108 | bool "Support ls1012ardb" |
York Sun | 9533acf | 2016-09-26 08:09:26 -0700 | [diff] [blame] | 1109 | select ARCH_LS1012A |
Prabhakar Kushwaha | 3b6e389 | 2016-06-03 18:41:35 +0530 | [diff] [blame] | 1110 | select ARM64 |
Tom Rini | e5ec481 | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1111 | select BOARD_LATE_INIT |
Simon Glass | fedb428 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1112 | imply SCSI |
Tuomas Tynkkynen | 9fd95ef | 2017-12-08 15:36:19 +0200 | [diff] [blame] | 1113 | imply SCSI_AHCI |
Prabhakar Kushwaha | 3b6e389 | 2016-06-03 18:41:35 +0530 | [diff] [blame] | 1114 | help |
| 1115 | Support for Freescale LS1012ARDB platform. |
| 1116 | The LS1012A Reference design board (RDB) is a high-performance |
| 1117 | development platform that supports the QorIQ LS1012A |
| 1118 | Layerscape Architecture processor. |
| 1119 | |
Bhaskar Upadhaya | b0ce187 | 2018-01-11 20:03:31 +0530 | [diff] [blame] | 1120 | config TARGET_LS1012A2G5RDB |
| 1121 | bool "Support ls1012a2g5rdb" |
| 1122 | select ARCH_LS1012A |
| 1123 | select ARM64 |
| 1124 | select BOARD_LATE_INIT |
| 1125 | imply SCSI |
| 1126 | help |
| 1127 | Support for Freescale LS1012A2G5RDB platform. |
| 1128 | The LS1012A 2G5 Reference design board (RDB) is a high-performance |
| 1129 | development platform that supports the QorIQ LS1012A |
| 1130 | Layerscape Architecture processor. |
| 1131 | |
Bhaskar Upadhaya | 9629ccd | 2018-05-23 11:03:30 +0530 | [diff] [blame] | 1132 | config TARGET_LS1012AFRWY |
| 1133 | bool "Support ls1012afrwy" |
| 1134 | select ARCH_LS1012A |
| 1135 | select ARM64 |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1136 | select BOARD_LATE_INIT |
Bhaskar Upadhaya | 9629ccd | 2018-05-23 11:03:30 +0530 | [diff] [blame] | 1137 | imply SCSI |
| 1138 | imply SCSI_AHCI |
| 1139 | help |
| 1140 | Support for Freescale LS1012AFRWY platform. |
| 1141 | The LS1012A FRWY board (FRWY) is a high-performance |
| 1142 | development platform that supports the QorIQ LS1012A |
| 1143 | Layerscape Architecture processor. |
| 1144 | |
Prabhakar Kushwaha | ff78aa2 | 2016-06-03 18:41:36 +0530 | [diff] [blame] | 1145 | config TARGET_LS1012AFRDM |
| 1146 | bool "Support ls1012afrdm" |
York Sun | 9533acf | 2016-09-26 08:09:26 -0700 | [diff] [blame] | 1147 | select ARCH_LS1012A |
Prabhakar Kushwaha | ff78aa2 | 2016-06-03 18:41:36 +0530 | [diff] [blame] | 1148 | select ARM64 |
| 1149 | help |
| 1150 | Support for Freescale LS1012AFRDM platform. |
| 1151 | The LS1012A Freedom board (FRDM) is a high-performance |
| 1152 | development platform that supports the QorIQ LS1012A |
| 1153 | Layerscape Architecture processor. |
| 1154 | |
Ashish Kumar | e84a324 | 2017-08-31 16:12:54 +0530 | [diff] [blame] | 1155 | config TARGET_LS1088ARDB |
| 1156 | bool "Support ls1088ardb" |
| 1157 | select ARCH_LS1088A |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1158 | select ARCH_MISC_INIT |
Ashish Kumar | e84a324 | 2017-08-31 16:12:54 +0530 | [diff] [blame] | 1159 | select ARM64 |
| 1160 | select ARMV8_MULTIENTRY |
Ashish Kumar | e84a324 | 2017-08-31 16:12:54 +0530 | [diff] [blame] | 1161 | select BOARD_LATE_INIT |
Ashish Kumar | 099f409 | 2017-11-06 13:18:43 +0530 | [diff] [blame] | 1162 | select SUPPORT_SPL |
Ashish Kumar | e84a324 | 2017-08-31 16:12:54 +0530 | [diff] [blame] | 1163 | help |
| 1164 | Support for NXP LS1088ARDB platform. |
| 1165 | The LS1088A Reference design board (RDB) is a high-performance |
| 1166 | development platform that supports the QorIQ LS1088A |
| 1167 | Layerscape Architecture processor. |
| 1168 | |
Wang Huan | 550e3dc | 2014-09-05 13:52:44 +0800 | [diff] [blame] | 1169 | config TARGET_LS1021AQDS |
Alison Wang | 0de1570 | 2014-12-03 16:18:09 +0800 | [diff] [blame] | 1170 | bool "Support ls1021aqds" |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1171 | select ARCH_LS1021A |
| 1172 | select ARCH_SUPPORT_PSCI |
| 1173 | select BOARD_EARLY_INIT_F |
Tom Rini | e5ec481 | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1174 | select BOARD_LATE_INIT |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 1175 | select CPU_V7A |
Hongbo Zhang | adee1d4 | 2016-09-21 18:31:04 +0800 | [diff] [blame] | 1176 | select CPU_V7_HAS_NONSEC |
| 1177 | select CPU_V7_HAS_VIRT |
York Sun | 5e8bd7e | 2016-09-26 08:09:29 -0700 | [diff] [blame] | 1178 | select LS1_DEEP_SLEEP |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1179 | select SUPPORT_SPL |
York Sun | d26e34c | 2016-12-28 08:43:40 -0800 | [diff] [blame] | 1180 | select SYS_FSL_DDR |
Simon Glass | fedb428 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1181 | imply SCSI |
Masahiro Yamada | 217f92b | 2016-08-30 16:22:22 +0900 | [diff] [blame] | 1182 | |
Wang Huan | c8a7d9d | 2014-09-05 13:52:45 +0800 | [diff] [blame] | 1183 | config TARGET_LS1021ATWR |
Alison Wang | 0de1570 | 2014-12-03 16:18:09 +0800 | [diff] [blame] | 1184 | bool "Support ls1021atwr" |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1185 | select ARCH_LS1021A |
| 1186 | select ARCH_SUPPORT_PSCI |
| 1187 | select BOARD_EARLY_INIT_F |
Tom Rini | e5ec481 | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1188 | select BOARD_LATE_INIT |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 1189 | select CPU_V7A |
Hongbo Zhang | adee1d4 | 2016-09-21 18:31:04 +0800 | [diff] [blame] | 1190 | select CPU_V7_HAS_NONSEC |
| 1191 | select CPU_V7_HAS_VIRT |
York Sun | 5e8bd7e | 2016-09-26 08:09:29 -0700 | [diff] [blame] | 1192 | select LS1_DEEP_SLEEP |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1193 | select SUPPORT_SPL |
Simon Glass | fedb428 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1194 | imply SCSI |
Wang Huan | c8a7d9d | 2014-09-05 13:52:45 +0800 | [diff] [blame] | 1195 | |
Feng Li | 20c700f | 2016-11-03 14:15:17 +0800 | [diff] [blame] | 1196 | config TARGET_LS1021AIOT |
| 1197 | bool "Support ls1021aiot" |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1198 | select ARCH_LS1021A |
| 1199 | select ARCH_SUPPORT_PSCI |
Tom Rini | e5ec481 | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1200 | select BOARD_LATE_INIT |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 1201 | select CPU_V7A |
Feng Li | 20c700f | 2016-11-03 14:15:17 +0800 | [diff] [blame] | 1202 | select CPU_V7_HAS_NONSEC |
| 1203 | select CPU_V7_HAS_VIRT |
| 1204 | select SUPPORT_SPL |
Simon Glass | fedb428 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1205 | imply SCSI |
Feng Li | 20c700f | 2016-11-03 14:15:17 +0800 | [diff] [blame] | 1206 | help |
| 1207 | Support for Freescale LS1021AIOT platform. |
| 1208 | The LS1021A Freescale board (IOT) is a high-performance |
| 1209 | development platform that supports the QorIQ LS1021A |
| 1210 | Layerscape Architecture processor. |
| 1211 | |
Shaohui Xie | 02b5d2e | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 1212 | config TARGET_LS1043AQDS |
| 1213 | bool "Support ls1043aqds" |
York Sun | 0a37cf8 | 2016-09-26 08:09:27 -0700 | [diff] [blame] | 1214 | select ARCH_LS1043A |
Shaohui Xie | 02b5d2e | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 1215 | select ARM64 |
| 1216 | select ARMV8_MULTIENTRY |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1217 | select BOARD_EARLY_INIT_F |
Tom Rini | e5ec481 | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1218 | select BOARD_LATE_INIT |
Shaohui Xie | 02b5d2e | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 1219 | select SUPPORT_SPL |
Simon Glass | fedb428 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1220 | imply SCSI |
Shaohui Xie | 02b5d2e | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 1221 | help |
| 1222 | Support for Freescale LS1043AQDS platform. |
| 1223 | |
Mingkai Hu | f3a8e2b | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 1224 | config TARGET_LS1043ARDB |
| 1225 | bool "Support ls1043ardb" |
York Sun | 0a37cf8 | 2016-09-26 08:09:27 -0700 | [diff] [blame] | 1226 | select ARCH_LS1043A |
Mingkai Hu | f3a8e2b | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 1227 | select ARM64 |
Hou Zhiqiang | 831c068 | 2015-10-26 19:47:57 +0800 | [diff] [blame] | 1228 | select ARMV8_MULTIENTRY |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1229 | select BOARD_EARLY_INIT_F |
Tom Rini | e5ec481 | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1230 | select BOARD_LATE_INIT |
Gong Qianyu | 3ad4472 | 2015-10-26 19:47:53 +0800 | [diff] [blame] | 1231 | select SUPPORT_SPL |
Simon Glass | fedb428 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1232 | imply SCSI |
Mingkai Hu | f3a8e2b | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 1233 | help |
| 1234 | Support for Freescale LS1043ARDB platform. |
| 1235 | |
Shaohui Xie | 126fe70 | 2016-09-07 17:56:14 +0800 | [diff] [blame] | 1236 | config TARGET_LS1046AQDS |
| 1237 | bool "Support ls1046aqds" |
York Sun | da28e58 | 2016-09-26 08:09:24 -0700 | [diff] [blame] | 1238 | select ARCH_LS1046A |
Shaohui Xie | 126fe70 | 2016-09-07 17:56:14 +0800 | [diff] [blame] | 1239 | select ARM64 |
| 1240 | select ARMV8_MULTIENTRY |
Simon Glass | a5d6754 | 2017-01-23 13:31:20 -0700 | [diff] [blame] | 1241 | select BOARD_EARLY_INIT_F |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1242 | select BOARD_LATE_INIT |
| 1243 | select DM_SPI_FLASH if DM_SPI |
| 1244 | select SUPPORT_SPL |
Simon Glass | fedb428 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1245 | imply SCSI |
Shaohui Xie | 126fe70 | 2016-09-07 17:56:14 +0800 | [diff] [blame] | 1246 | help |
| 1247 | Support for Freescale LS1046AQDS platform. |
| 1248 | The LS1046A Development System (QDS) is a high-performance |
| 1249 | development platform that supports the QorIQ LS1046A |
| 1250 | Layerscape Architecture processor. |
| 1251 | |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 1252 | config TARGET_LS1046ARDB |
| 1253 | bool "Support ls1046ardb" |
York Sun | da28e58 | 2016-09-26 08:09:24 -0700 | [diff] [blame] | 1254 | select ARCH_LS1046A |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 1255 | select ARM64 |
| 1256 | select ARMV8_MULTIENTRY |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1257 | select BOARD_EARLY_INIT_F |
Tom Rini | e5ec481 | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1258 | select BOARD_LATE_INIT |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 1259 | select DM_SPI_FLASH if DM_SPI |
Hou Zhiqiang | dccef2e | 2016-12-09 16:09:01 +0800 | [diff] [blame] | 1260 | select POWER_MC34VR500 |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1261 | select SUPPORT_SPL |
Simon Glass | fedb428 | 2017-06-14 21:28:21 -0600 | [diff] [blame] | 1262 | imply SCSI |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 1263 | help |
| 1264 | Support for Freescale LS1046ARDB platform. |
| 1265 | The LS1046A Reference Design Board (RDB) is a high-performance |
| 1266 | development platform that supports the QorIQ LS1046A |
| 1267 | Layerscape Architecture processor. |
| 1268 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1269 | config TARGET_H2200 |
| 1270 | bool "Support h2200" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 1271 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1272 | |
Vasily Khoruzhick | f19eb15 | 2016-03-20 18:37:00 -0700 | [diff] [blame] | 1273 | config TARGET_ZIPITZ2 |
| 1274 | bool "Support zipitz2" |
| 1275 | select CPU_PXA |
| 1276 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1277 | config TARGET_COLIBRI_PXA270 |
| 1278 | bool "Support colibri_pxa270" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 1279 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1280 | |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 1281 | config ARCH_UNIPHIER |
Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 1282 | bool "Socionext UniPhier SoCs" |
Tom Rini | e5ec481 | 2017-01-22 19:43:11 -0500 | [diff] [blame] | 1283 | select BOARD_LATE_INIT |
Masahiro Yamada | 4e81995 | 2015-03-31 12:47:54 +0900 | [diff] [blame] | 1284 | select DM |
Masahiro Yamada | b800cbd | 2016-02-16 17:03:50 +0900 | [diff] [blame] | 1285 | select DM_GPIO |
Masahiro Yamada | 4e81995 | 2015-03-31 12:47:54 +0900 | [diff] [blame] | 1286 | select DM_I2C |
Masahiro Yamada | 4aceb3f | 2016-02-18 19:52:49 +0900 | [diff] [blame] | 1287 | select DM_MMC |
Masahiro Yamada | 4fb96c4 | 2016-10-08 13:25:31 +0900 | [diff] [blame] | 1288 | select DM_RESET |
Masahiro Yamada | b5550e4 | 2016-09-14 01:05:59 +0900 | [diff] [blame] | 1289 | select DM_SERIAL |
Masahiro Yamada | 47a79f6 | 2016-09-14 01:06:00 +0900 | [diff] [blame] | 1290 | select DM_USB |
Masahiro Yamada | 65fce76 | 2018-07-19 16:28:25 +0900 | [diff] [blame] | 1291 | select OF_BOARD_SETUP |
Masahiro Yamada | b5550e4 | 2016-09-14 01:05:59 +0900 | [diff] [blame] | 1292 | select OF_CONTROL |
| 1293 | select OF_LIBFDT |
Masahiro Yamada | 27350c9 | 2016-09-17 03:33:01 +0900 | [diff] [blame] | 1294 | select PINCTRL |
Ley Foon Tan | 0680f1b | 2017-05-03 17:13:32 +0800 | [diff] [blame] | 1295 | select SPL_BOARD_INIT if SPL |
Masahiro Yamada | 561ca64 | 2017-01-21 18:05:22 +0900 | [diff] [blame] | 1296 | select SPL_DM if SPL |
| 1297 | select SPL_LIBCOMMON_SUPPORT if SPL |
| 1298 | select SPL_LIBGENERIC_SUPPORT if SPL |
| 1299 | select SPL_OF_CONTROL if SPL |
| 1300 | select SPL_PINCTRL if SPL |
Masahiro Yamada | b5550e4 | 2016-09-14 01:05:59 +0900 | [diff] [blame] | 1301 | select SUPPORT_SPL |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1302 | imply CMD_DM |
Masahiro Yamada | 7ef5b1e | 2018-07-20 21:47:18 +0900 | [diff] [blame] | 1303 | imply DISTRO_DEFAULTS |
Tom Rini | 91d27a1 | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 1304 | imply FAT_WRITE |
Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 1305 | help |
| 1306 | Support for UniPhier SoC family developed by Socionext Inc. |
| 1307 | (formerly, System LSI Business Division of Panasonic Corporation) |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 1308 | |
Vikas Manocha | 0a61ee8 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 1309 | config STM32 |
Patrick Delaunay | 2514c2d | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1310 | bool "Support STMicroelectronics STM32 MCU with cortex M" |
rev13@wp.pl | ed09a55 | 2015-03-01 12:44:42 +0100 | [diff] [blame] | 1311 | select CPU_V7M |
Kamil Lulko | 6656241 | 2015-12-01 09:08:19 +0100 | [diff] [blame] | 1312 | select DM |
| 1313 | select DM_SERIAL |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1314 | imply CMD_DM |
rev13@wp.pl | ed09a55 | 2015-03-01 12:44:42 +0100 | [diff] [blame] | 1315 | |
Patrice Chotard | 94e9a4e | 2017-02-21 13:37:04 +0100 | [diff] [blame] | 1316 | config ARCH_STI |
| 1317 | bool "Support STMicrolectronics SoCs" |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1318 | select BLK |
Lokesh Vutla | acf1500 | 2018-04-26 18:21:26 +0530 | [diff] [blame] | 1319 | select CPU_V7A |
Patrice Chotard | 214a17e | 2017-02-21 13:37:07 +0100 | [diff] [blame] | 1320 | select DM |
Patrice Chotard | eee20f8 | 2017-02-21 13:37:09 +0100 | [diff] [blame] | 1321 | select DM_MMC |
Patrice Chotard | 584861f | 2017-03-22 10:54:03 +0100 | [diff] [blame] | 1322 | select DM_RESET |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1323 | select DM_SERIAL |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1324 | imply CMD_DM |
Patrice Chotard | 94e9a4e | 2017-02-21 13:37:04 +0100 | [diff] [blame] | 1325 | help |
| 1326 | Support for STMicroelectronics STiH407/10 SoC family. |
| 1327 | This SoC is used on Linaro 96Board STiH410-B2260 |
| 1328 | |
Patrick Delaunay | 2514c2d | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1329 | config ARCH_STM32MP |
| 1330 | bool "Support STMicroelectronics STM32MP Socs with cortex A" |
Patrick Delaunay | 08772f6 | 2018-03-20 10:54:53 +0100 | [diff] [blame] | 1331 | select ARCH_MISC_INIT |
Patrick Delaunay | 2514c2d | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1332 | select BOARD_LATE_INIT |
| 1333 | select CLK |
| 1334 | select DM |
| 1335 | select DM_GPIO |
| 1336 | select DM_RESET |
| 1337 | select DM_SERIAL |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1338 | select MISC |
Patrick Delaunay | 2514c2d | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1339 | select OF_CONTROL |
| 1340 | select OF_LIBFDT |
| 1341 | select PINCTRL |
| 1342 | select REGMAP |
| 1343 | select SUPPORT_SPL |
| 1344 | select SYSCON |
Patrick Delaunay | 86634a9 | 2018-03-20 14:15:06 +0100 | [diff] [blame] | 1345 | select SYSRESET |
Patrick Delaunay | 2514c2d | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1346 | select SYS_THUMB_BUILD |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1347 | imply CMD_DM |
Patrick Delaunay | 2514c2d | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1348 | help |
| 1349 | Support for STM32MP SoC family developed by STMicroelectronics, |
| 1350 | MPUs based on ARM cortex A core |
| 1351 | U-BOOT is running in DDR and SPL support is the unsecure First Stage |
| 1352 | BootLoader (FSBL) |
| 1353 | |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 1354 | config ARCH_ROCKCHIP |
| 1355 | bool "Support Rockchip SoCs" |
Simon Glass | aa15038 | 2016-06-12 23:30:14 -0600 | [diff] [blame] | 1356 | select BLK |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 1357 | select DM |
Simon Glass | aa15038 | 2016-06-12 23:30:14 -0600 | [diff] [blame] | 1358 | select DM_GPIO |
| 1359 | select DM_I2C |
| 1360 | select DM_MMC |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1361 | select DM_PWM |
| 1362 | select DM_REGULATOR |
Simon Glass | aa15038 | 2016-06-12 23:30:14 -0600 | [diff] [blame] | 1363 | select DM_SERIAL |
| 1364 | select DM_SPI |
| 1365 | select DM_SPI_FLASH |
MengDongyang | 892742d | 2016-08-24 12:02:18 +0800 | [diff] [blame] | 1366 | select DM_USB if USB |
Philipp Tomsich | 14ad6eb | 2017-10-10 16:21:03 +0200 | [diff] [blame] | 1367 | select ENABLE_ARM_SOC_BOOT0_HOOK |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1368 | select OF_CONTROL |
Adam Ford | f1b1f77 | 2018-04-15 13:51:26 -0400 | [diff] [blame] | 1369 | select SPI |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1370 | select SPL_DM if SPL |
| 1371 | select SPL_SYS_MALLOC_SIMPLE if SPL |
| 1372 | select SYS_MALLOC_F |
| 1373 | select SYS_THUMB_BUILD if !ARM64 |
| 1374 | imply ADC |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1375 | imply CMD_DM |
Masahiro Yamada | 7325f6c | 2018-04-25 18:47:52 +0900 | [diff] [blame] | 1376 | imply DISTRO_DEFAULTS |
Tom Rini | 91d27a1 | 2017-06-02 11:03:50 -0400 | [diff] [blame] | 1377 | imply FAT_WRITE |
Philipp Tomsich | 8e8bccc | 2017-09-20 13:50:13 +0200 | [diff] [blame] | 1378 | imply SARADC_ROCKCHIP |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1379 | imply SPL_SYSRESET |
Kever Yang | c3c0331 | 2018-04-19 11:37:09 +0800 | [diff] [blame] | 1380 | imply SYS_NS16550 |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1381 | imply TPL_SYSRESET |
| 1382 | imply USB_FUNCTION_FASTBOOT |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 1383 | |
Sergey Temerkhanov | 746f985 | 2015-10-14 09:55:50 -0700 | [diff] [blame] | 1384 | config TARGET_THUNDERX_88XX |
| 1385 | bool "Support ThunderX 88xx" |
Marek Vasut | b4ba169 | 2016-06-01 02:33:53 +0200 | [diff] [blame] | 1386 | select ARM64 |
Sergey Temerkhanov | 746f985 | 2015-10-14 09:55:50 -0700 | [diff] [blame] | 1387 | select OF_CONTROL |
Alexander Graf | cf2c778 | 2018-01-25 12:05:52 +0100 | [diff] [blame] | 1388 | select PL01X_SERIAL |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1389 | select SYS_CACHE_SHIFT_7 |
Sergey Temerkhanov | 746f985 | 2015-10-14 09:55:50 -0700 | [diff] [blame] | 1390 | |
maxims@google.com | 4697abe | 2017-01-18 13:44:55 -0800 | [diff] [blame] | 1391 | config ARCH_ASPEED |
| 1392 | bool "Support Aspeed SoCs" |
maxims@google.com | 4697abe | 2017-01-18 13:44:55 -0800 | [diff] [blame] | 1393 | select DM |
Michal Simek | 5ed063d | 2018-07-23 15:55:13 +0200 | [diff] [blame] | 1394 | select OF_CONTROL |
Michal Simek | 08a00cb | 2018-07-23 15:55:14 +0200 | [diff] [blame] | 1395 | imply CMD_DM |
maxims@google.com | 4697abe | 2017-01-18 13:44:55 -0800 | [diff] [blame] | 1396 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1397 | endchoice |
| 1398 | |
Andrew F. Davis | 5fbed8f | 2018-02-14 11:53:37 -0600 | [diff] [blame] | 1399 | config TI_SECURE_DEVICE |
| 1400 | bool "HS Device Type Support" |
| 1401 | depends on ARCH_KEYSTONE || ARCH_OMAP2PLUS |
| 1402 | help |
| 1403 | If a high secure (HS) device type is being used, this config |
| 1404 | must be set. This option impacts various aspects of the |
| 1405 | build system (to create signed boot images that can be |
| 1406 | authenticated) and the code. See the doc/README.ti-secure |
| 1407 | file for further details. |
| 1408 | |
maxims@google.com | 4697abe | 2017-01-18 13:44:55 -0800 | [diff] [blame] | 1409 | source "arch/arm/mach-aspeed/Kconfig" |
| 1410 | |
Masahiro Yamada | 4614b89 | 2015-02-20 17:04:01 +0900 | [diff] [blame] | 1411 | source "arch/arm/mach-at91/Kconfig" |
| 1412 | |
Masahiro Yamada | ddf6bd4 | 2015-03-19 19:42:56 +0900 | [diff] [blame] | 1413 | source "arch/arm/mach-bcm283x/Kconfig" |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 1414 | |
Thomas Fitzsimmons | 894c3ad | 2018-06-08 17:59:45 -0400 | [diff] [blame] | 1415 | source "arch/arm/mach-bcmstb/Kconfig" |
| 1416 | |
Masahiro Yamada | ddf6bd4 | 2015-03-19 19:42:56 +0900 | [diff] [blame] | 1417 | source "arch/arm/mach-davinci/Kconfig" |
Simon Glass | 34e609c | 2015-02-05 21:41:39 -0700 | [diff] [blame] | 1418 | |
Thomas Abraham | 77b55e8 | 2015-08-03 17:58:00 +0530 | [diff] [blame] | 1419 | source "arch/arm/mach-exynos/Kconfig" |
Masahiro Yamada | 72df68c | 2014-08-31 07:11:00 +0900 | [diff] [blame] | 1420 | |
Masahiro Yamada | 72a8ff4 | 2015-02-20 17:04:08 +0900 | [diff] [blame] | 1421 | source "arch/arm/mach-highbank/Kconfig" |
Masahiro Yamada | ef2b694 | 2014-08-31 07:11:07 +0900 | [diff] [blame] | 1422 | |
Masahiro Yamada | 5cbbd9b | 2015-04-21 21:59:36 +0900 | [diff] [blame] | 1423 | source "arch/arm/mach-integrator/Kconfig" |
| 1424 | |
Lokesh Vutla | 586bde9 | 2018-08-27 15:57:08 +0530 | [diff] [blame] | 1425 | source "arch/arm/mach-k3/Kconfig" |
| 1426 | |
Masahiro Yamada | 39a7234 | 2015-02-20 17:04:11 +0900 | [diff] [blame] | 1427 | source "arch/arm/mach-keystone/Kconfig" |
Masahiro Yamada | c338f09 | 2014-08-31 07:11:05 +0900 | [diff] [blame] | 1428 | |
Masahiro Yamada | 56f86e3 | 2015-02-20 17:04:06 +0900 | [diff] [blame] | 1429 | source "arch/arm/mach-kirkwood/Kconfig" |
Masahiro Yamada | 47539e2 | 2014-08-31 07:10:59 +0900 | [diff] [blame] | 1430 | |
Vladimir Zapolskiy | ee54dfe | 2018-09-17 21:43:03 +0300 | [diff] [blame] | 1431 | source "arch/arm/cpu/arm926ejs/lpc32xx/Kconfig" |
| 1432 | |
Stefan Roese | c3d8914 | 2015-08-25 13:18:38 +0200 | [diff] [blame] | 1433 | source "arch/arm/mach-mvebu/Kconfig" |
| 1434 | |
York Sun | 0a37cf8 | 2016-09-26 08:09:27 -0700 | [diff] [blame] | 1435 | source "arch/arm/cpu/armv7/ls102xa/Kconfig" |
| 1436 | |
Fabio Estevam | 07df697 | 2017-11-03 13:40:08 -0200 | [diff] [blame] | 1437 | source "arch/arm/mach-imx/mx2/Kconfig" |
| 1438 | |
Magnus Lilja | 3159ec6 | 2018-05-11 14:06:54 +0200 | [diff] [blame] | 1439 | source "arch/arm/mach-imx/mx3/Kconfig" |
| 1440 | |
Peng Fan | 7a7391f | 2018-01-10 13:20:19 +0800 | [diff] [blame] | 1441 | source "arch/arm/mach-imx/mx5/Kconfig" |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 1442 | |
Stefano Babic | 552a848 | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 1443 | source "arch/arm/mach-imx/mx6/Kconfig" |
Boris BREZILLON | 89ebc82 | 2015-03-04 13:13:03 +0100 | [diff] [blame] | 1444 | |
Peng Fan | 7a7391f | 2018-01-10 13:20:19 +0800 | [diff] [blame] | 1445 | source "arch/arm/mach-imx/mx7/Kconfig" |
| 1446 | |
| 1447 | source "arch/arm/mach-imx/mx7ulp/Kconfig" |
| 1448 | |
Peng Fan | b2b8b9b | 2018-10-18 14:28:08 +0200 | [diff] [blame] | 1449 | source "arch/arm/mach-imx/imx8/Kconfig" |
| 1450 | |
Peng Fan | 7a7391f | 2018-01-10 13:20:19 +0800 | [diff] [blame] | 1451 | source "arch/arm/mach-imx/mx8m/Kconfig" |
Andrej Rosano | 424ee3d | 2015-04-08 18:56:29 +0200 | [diff] [blame] | 1452 | |
Stefan Agner | c5343d4 | 2018-02-06 09:44:34 +0100 | [diff] [blame] | 1453 | source "arch/arm/mach-imx/mxs/Kconfig" |
| 1454 | |
Tom Rini | 983e370 | 2016-11-07 21:34:54 -0500 | [diff] [blame] | 1455 | source "arch/arm/mach-omap2/Kconfig" |
Madan Srinivas | 6384726 | 2016-05-19 19:10:43 -0500 | [diff] [blame] | 1456 | |
York Sun | da28e58 | 2016-09-26 08:09:24 -0700 | [diff] [blame] | 1457 | source "arch/arm/cpu/armv8/fsl-layerscape/Kconfig" |
| 1458 | |
Masahiro Yamada | 3e93b4e | 2015-02-20 17:04:09 +0900 | [diff] [blame] | 1459 | source "arch/arm/mach-orion5x/Kconfig" |
Masahiro Yamada | 22f2be7 | 2014-08-31 07:11:06 +0900 | [diff] [blame] | 1460 | |
Manivannan Sadhasivam | 97775d2 | 2018-06-14 23:38:31 +0530 | [diff] [blame] | 1461 | source "arch/arm/mach-owl/Kconfig" |
| 1462 | |
Nobuhiro Iwamatsu | badbb63 | 2015-10-09 16:40:09 +0900 | [diff] [blame] | 1463 | source "arch/arm/mach-rmobile/Kconfig" |
Masahiro Yamada | f40b989 | 2014-08-31 07:10:57 +0900 | [diff] [blame] | 1464 | |
Beniamino Galvani | bfcef28 | 2016-05-08 08:30:16 +0200 | [diff] [blame] | 1465 | source "arch/arm/mach-meson/Kconfig" |
| 1466 | |
Ryder Lee | cbd2fba | 2018-11-15 10:07:52 +0800 | [diff] [blame] | 1467 | source "arch/arm/mach-mediatek/Kconfig" |
| 1468 | |
Tuomas Tynkkynen | 32f1182 | 2017-09-19 23:18:07 +0300 | [diff] [blame] | 1469 | source "arch/arm/mach-qemu/Kconfig" |
| 1470 | |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 1471 | source "arch/arm/mach-rockchip/Kconfig" |
| 1472 | |
Minkyu Kang | 225f5ee | 2015-11-20 15:24:57 +0900 | [diff] [blame] | 1473 | source "arch/arm/mach-s5pc1xx/Kconfig" |
Simon Glass | 311757b | 2014-10-07 22:01:50 -0600 | [diff] [blame] | 1474 | |
Mateusz Kulikowski | 0859213 | 2016-03-31 23:12:32 +0200 | [diff] [blame] | 1475 | source "arch/arm/mach-snapdragon/Kconfig" |
| 1476 | |
Masahiro Yamada | 7865f4b | 2015-04-21 20:38:20 +0900 | [diff] [blame] | 1477 | source "arch/arm/mach-socfpga/Kconfig" |
| 1478 | |
Patrice Chotard | 94e9a4e | 2017-02-21 13:37:04 +0100 | [diff] [blame] | 1479 | source "arch/arm/mach-sti/Kconfig" |
| 1480 | |
Vikas Manocha | 0a61ee8 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 1481 | source "arch/arm/mach-stm32/Kconfig" |
| 1482 | |
Patrick Delaunay | 2514c2d | 2018-03-12 10:46:10 +0100 | [diff] [blame] | 1483 | source "arch/arm/mach-stm32mp/Kconfig" |
| 1484 | |
Masahiro Yamada | 3abfd88 | 2017-04-28 19:42:18 +0900 | [diff] [blame] | 1485 | source "arch/arm/mach-sunxi/Kconfig" |
| 1486 | |
Masahiro Yamada | 09f455d | 2015-02-20 17:04:04 +0900 | [diff] [blame] | 1487 | source "arch/arm/mach-tegra/Kconfig" |
Masahiro Yamada | ddd960e | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 1488 | |
Masahiro Yamada | 4c42557 | 2015-02-27 02:26:42 +0900 | [diff] [blame] | 1489 | source "arch/arm/mach-uniphier/Kconfig" |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 1490 | |
Stefan Agner | 7966b43 | 2017-03-13 18:41:36 -0700 | [diff] [blame] | 1491 | source "arch/arm/cpu/armv7/vf610/Kconfig" |
| 1492 | |
Masahiro Yamada | 0107f24 | 2015-03-16 16:43:22 +0900 | [diff] [blame] | 1493 | source "arch/arm/mach-zynq/Kconfig" |
Masahiro Yamada | ddd960e | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 1494 | |
Michal Simek | ec48b6c | 2018-08-22 14:55:27 +0200 | [diff] [blame] | 1495 | source "arch/arm/mach-versal/Kconfig" |
| 1496 | |
Michal Simek | 1d6c54e | 2018-04-12 17:39:46 +0200 | [diff] [blame] | 1497 | source "arch/arm/mach-zynqmp-r5/Kconfig" |
| 1498 | |
Hans de Goede | ea624e1 | 2014-11-14 09:34:30 +0100 | [diff] [blame] | 1499 | source "arch/arm/cpu/armv7/Kconfig" |
| 1500 | |
Siva Durga Prasad Paladugu | 7558000 | 2015-06-10 15:50:56 +0530 | [diff] [blame] | 1501 | source "arch/arm/cpu/armv8/zynqmp/Kconfig" |
| 1502 | |
Linus Walleij | 23b5877 | 2015-03-09 10:53:21 +0100 | [diff] [blame] | 1503 | source "arch/arm/cpu/armv8/Kconfig" |
| 1504 | |
Stefano Babic | 552a848 | 2017-06-29 10:16:06 +0200 | [diff] [blame] | 1505 | source "arch/arm/mach-imx/Kconfig" |
Boris BREZILLON | a05a604 | 2015-03-04 13:13:04 +0100 | [diff] [blame] | 1506 | |
Heiko Schocher | d8ccbe9 | 2016-06-07 08:31:25 +0200 | [diff] [blame] | 1507 | source "board/bosch/shc/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1508 | source "board/CarMediaLab/flea3/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1509 | source "board/Marvell/aspenite/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1510 | source "board/Marvell/gplugd/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1511 | source "board/armadeus/apf27/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1512 | source "board/armltd/vexpress/Kconfig" |
| 1513 | source "board/armltd/vexpress64/Kconfig" |
Steve Rae | 43486e4 | 2016-06-02 15:10:56 -0700 | [diff] [blame] | 1514 | source "board/broadcom/bcm23550_w1d/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1515 | source "board/broadcom/bcm28155_ap/Kconfig" |
Philippe Reynes | 40b59b0 | 2018-10-11 18:31:58 +0200 | [diff] [blame] | 1516 | source "board/broadcom/bcm968580xref/Kconfig" |
Steve Rae | abb1678 | 2014-11-11 11:32:18 -0800 | [diff] [blame] | 1517 | source "board/broadcom/bcmcygnus/Kconfig" |
| 1518 | source "board/broadcom/bcmnsp/Kconfig" |
Jon Mason | 274bced | 2017-03-17 12:12:14 -0400 | [diff] [blame] | 1519 | source "board/broadcom/bcmns2/Kconfig" |
Sergey Temerkhanov | 746f985 | 2015-10-14 09:55:50 -0700 | [diff] [blame] | 1520 | source "board/cavium/thunderx/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1521 | source "board/cirrus/edb93xx/Kconfig" |
Felix Brack | 85ab045 | 2018-01-23 18:27:22 +0100 | [diff] [blame] | 1522 | source "board/eets/pdu001/Kconfig" |
Bin Meng | 6f33276 | 2018-10-15 02:21:18 -0700 | [diff] [blame] | 1523 | source "board/emulation/qemu-arm/Kconfig" |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 1524 | source "board/freescale/ls2080a/Kconfig" |
| 1525 | source "board/freescale/ls2080aqds/Kconfig" |
| 1526 | source "board/freescale/ls2080ardb/Kconfig" |
Ashish Kumar | e84a324 | 2017-08-31 16:12:54 +0530 | [diff] [blame] | 1527 | source "board/freescale/ls1088a/Kconfig" |
Wang Huan | 550e3dc | 2014-09-05 13:52:44 +0800 | [diff] [blame] | 1528 | source "board/freescale/ls1021aqds/Kconfig" |
Shaohui Xie | 02b5d2e | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 1529 | source "board/freescale/ls1043aqds/Kconfig" |
Wang Huan | c8a7d9d | 2014-09-05 13:52:45 +0800 | [diff] [blame] | 1530 | source "board/freescale/ls1021atwr/Kconfig" |
Feng Li | 20c700f | 2016-11-03 14:15:17 +0800 | [diff] [blame] | 1531 | source "board/freescale/ls1021aiot/Kconfig" |
Shaohui Xie | 126fe70 | 2016-09-07 17:56:14 +0800 | [diff] [blame] | 1532 | source "board/freescale/ls1046aqds/Kconfig" |
Mingkai Hu | f3a8e2b | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 1533 | source "board/freescale/ls1043ardb/Kconfig" |
Mingkai Hu | dd02936 | 2016-09-07 18:47:28 +0800 | [diff] [blame] | 1534 | source "board/freescale/ls1046ardb/Kconfig" |
Prabhakar Kushwaha | 9d044fc | 2016-06-03 18:41:34 +0530 | [diff] [blame] | 1535 | source "board/freescale/ls1012aqds/Kconfig" |
Prabhakar Kushwaha | 3b6e389 | 2016-06-03 18:41:35 +0530 | [diff] [blame] | 1536 | source "board/freescale/ls1012ardb/Kconfig" |
Prabhakar Kushwaha | ff78aa2 | 2016-06-03 18:41:36 +0530 | [diff] [blame] | 1537 | source "board/freescale/ls1012afrdm/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1538 | source "board/freescale/mx35pdk/Kconfig" |
Eddy Petrișor | 9702ec0 | 2016-06-05 03:43:00 +0300 | [diff] [blame] | 1539 | source "board/freescale/s32v234evb/Kconfig" |
Marcin Niestroj | ab38bf6 | 2017-01-25 09:53:08 +0100 | [diff] [blame] | 1540 | source "board/grinn/chiliboard/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1541 | source "board/gumstix/pepper/Kconfig" |
| 1542 | source "board/h2200/Kconfig" |
Tom Rini | 345243e | 2015-09-02 15:32:20 -0400 | [diff] [blame] | 1543 | source "board/hisilicon/hikey/Kconfig" |
Jorge Ramirez-Ortiz | d754254 | 2017-06-26 15:52:49 +0200 | [diff] [blame] | 1544 | source "board/hisilicon/poplar/Kconfig" |
Ladislav Michl | a96c08f | 2017-04-01 17:17:16 +0200 | [diff] [blame] | 1545 | source "board/isee/igep003x/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1546 | source "board/phytec/pcm051/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1547 | source "board/silica/pengwyn/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1548 | source "board/spear/spear300/Kconfig" |
| 1549 | source "board/spear/spear310/Kconfig" |
| 1550 | source "board/spear/spear320/Kconfig" |
| 1551 | source "board/spear/spear600/Kconfig" |
| 1552 | source "board/spear/x600/Kconfig" |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 1553 | source "board/st/stv0991/Kconfig" |
Enric Balletbò i Serra | 9d1b298 | 2015-09-07 07:43:20 +0200 | [diff] [blame] | 1554 | source "board/tcl/sl50/Kconfig" |
Manivannan Sadhasivam | eba6589 | 2018-06-14 23:38:32 +0530 | [diff] [blame] | 1555 | source "board/ucRobotics/bubblegum_96/Kconfig" |
Gilles Gameiro | a2bc432 | 2015-02-10 01:36:01 -0800 | [diff] [blame] | 1556 | source "board/birdland/bav335x/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1557 | source "board/toradex/colibri_pxa270/Kconfig" |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 1558 | source "board/vscom/baltos/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1559 | source "board/woodburn/Kconfig" |
Luca Ceresoli | 6da4f67 | 2018-06-22 12:40:16 +0200 | [diff] [blame] | 1560 | source "board/xilinx/Kconfig" |
Siva Durga Prasad Paladugu | 37e3a36 | 2018-06-26 15:02:19 +0530 | [diff] [blame] | 1561 | source "board/xilinx/zynq/Kconfig" |
Siva Durga Prasad Paladugu | c436bf9 | 2018-02-28 13:26:53 +0530 | [diff] [blame] | 1562 | source "board/xilinx/zynqmp/Kconfig" |
Vasily Khoruzhick | f19eb15 | 2016-03-20 18:37:00 -0700 | [diff] [blame] | 1563 | source "board/zipitz2/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1564 | |
Masahiro Yamada | 51b17d4 | 2014-09-01 11:06:34 +0900 | [diff] [blame] | 1565 | source "arch/arm/Kconfig.debug" |
| 1566 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1567 | endmenu |
Philipp Tomsich | b529993 | 2017-08-03 23:23:55 +0200 | [diff] [blame] | 1568 | |
| 1569 | config SPL_LDSCRIPT |
Michal Simek | 6e7bdde | 2018-07-23 15:55:12 +0200 | [diff] [blame] | 1570 | default "arch/arm/cpu/arm926ejs/mxs/u-boot-spl.lds" if (ARCH_MX23 || ARCH_MX28) && !SPL_FRAMEWORK |
| 1571 | default "arch/arm/cpu/arm1136/u-boot-spl.lds" if CPU_ARM1136 |
Philipp Tomsich | b529993 | 2017-08-03 23:23:55 +0200 | [diff] [blame] | 1572 | default "arch/arm/cpu/armv8/u-boot-spl.lds" if ARM64 |
| 1573 | |
| 1574 | |