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 |
| 9 | |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 10 | config HAS_VBAR |
| 11 | bool |
| 12 | |
Albert ARIBAUD | 62e9207 | 2015-10-23 18:06:40 +0200 | [diff] [blame] | 13 | config HAS_THUMB2 |
| 14 | bool |
| 15 | |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 16 | config CPU_ARM720T |
| 17 | bool |
| 18 | |
| 19 | config CPU_ARM920T |
| 20 | bool |
| 21 | |
| 22 | config CPU_ARM926EJS |
| 23 | bool |
| 24 | |
| 25 | config CPU_ARM946ES |
| 26 | bool |
| 27 | |
| 28 | config CPU_ARM1136 |
| 29 | bool |
| 30 | |
| 31 | config CPU_ARM1176 |
| 32 | bool |
| 33 | select HAS_VBAR |
| 34 | |
| 35 | config CPU_V7 |
| 36 | bool |
| 37 | select HAS_VBAR |
Albert ARIBAUD | 62e9207 | 2015-10-23 18:06:40 +0200 | [diff] [blame] | 38 | select HAS_THUMB2 |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 39 | |
rev13@wp.pl | 12d8a72 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 40 | config CPU_V7M |
| 41 | bool |
Albert ARIBAUD | 62e9207 | 2015-10-23 18:06:40 +0200 | [diff] [blame] | 42 | select HAS_THUMB2 |
rev13@wp.pl | 12d8a72 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 43 | |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 44 | config CPU_PXA |
| 45 | bool |
| 46 | |
| 47 | config CPU_SA1100 |
| 48 | bool |
| 49 | |
| 50 | config SYS_CPU |
| 51 | default "arm720t" if CPU_ARM720T |
| 52 | default "arm920t" if CPU_ARM920T |
| 53 | default "arm926ejs" if CPU_ARM926EJS |
| 54 | default "arm946es" if CPU_ARM946ES |
| 55 | default "arm1136" if CPU_ARM1136 |
| 56 | default "arm1176" if CPU_ARM1176 |
| 57 | default "armv7" if CPU_V7 |
rev13@wp.pl | 12d8a72 | 2015-03-01 12:44:39 +0100 | [diff] [blame] | 58 | default "armv7m" if CPU_V7M |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 59 | default "pxa" if CPU_PXA |
| 60 | default "sa1100" if CPU_SA1100 |
Masahiro Yamada | 01541ee | 2014-11-06 11:39:27 +0900 | [diff] [blame] | 61 | default "armv8" if ARM64 |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 62 | |
Linus Walleij | f91afc4 | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 63 | config SEMIHOSTING |
| 64 | bool "support boot from semihosting" |
| 65 | help |
| 66 | In emulated environments, semihosting is a way for |
| 67 | the hosted environment to call out to the emulator to |
| 68 | retrieve files from the host machine. |
| 69 | |
Peng Fan | f3e9bec | 2015-08-19 15:48:57 +0800 | [diff] [blame] | 70 | config SYS_L2CACHE_OFF |
| 71 | bool "L2cache off" |
| 72 | help |
| 73 | If SoC does not support L2CACHE or one do not want to enable |
| 74 | L2CACHE, choose this option. |
| 75 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 76 | choice |
| 77 | prompt "Target select" |
Simon Glass | b928e65 | 2015-08-30 19:19:30 -0600 | [diff] [blame] | 78 | default TARGET_HIKEY |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 79 | |
Masahiro Yamada | 4614b89 | 2015-02-20 17:04:01 +0900 | [diff] [blame] | 80 | config ARCH_AT91 |
| 81 | bool "Atmel AT91" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 82 | |
| 83 | config TARGET_EDB93XX |
| 84 | bool "Support edb93xx" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 85 | select CPU_ARM920T |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 86 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 87 | config TARGET_VCMA9 |
| 88 | bool "Support VCMA9" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 89 | select CPU_ARM920T |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 90 | |
| 91 | config TARGET_SMDK2410 |
| 92 | bool "Support smdk2410" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 93 | select CPU_ARM920T |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 94 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 95 | config TARGET_ASPENITE |
| 96 | bool "Support aspenite" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 97 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 98 | |
| 99 | config TARGET_GPLUGD |
| 100 | bool "Support gplugd" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 101 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 102 | |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 103 | config ARCH_DAVINCI |
| 104 | bool "TI DaVinci" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 105 | select CPU_ARM926EJS |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 106 | help |
| 107 | Support for TI's DaVinci platform. |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 108 | |
Masahiro Yamada | 47539e2 | 2014-08-31 07:10:59 +0900 | [diff] [blame] | 109 | config KIRKWOOD |
| 110 | bool "Marvell Kirkwood" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 111 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 112 | |
Stefan Roese | c3d8914 | 2015-08-25 13:18:38 +0200 | [diff] [blame] | 113 | config ARCH_MVEBU |
| 114 | bool "Marvell MVEBU family (Armada XP/38x)" |
Stefan Roese | 2bae75a | 2015-04-25 06:29:56 +0200 | [diff] [blame] | 115 | select CPU_V7 |
| 116 | select SUPPORT_SPL |
Stefan Roese | 9cffb23 | 2015-09-01 11:27:52 +0200 | [diff] [blame] | 117 | select OF_CONTROL |
| 118 | select OF_SEPARATE |
| 119 | select DM |
Stefan Roese | e3b9c98 | 2015-11-19 07:46:15 +0100 | [diff] [blame] | 120 | select DM_ETH |
Stefan Roese | 1d51ea1 | 2015-09-02 08:41:41 +0200 | [diff] [blame] | 121 | select DM_SERIAL |
Stefan Roese | 09a54c0 | 2015-11-20 13:51:57 +0100 | [diff] [blame] | 122 | select DM_SPI |
| 123 | select DM_SPI_FLASH |
Stefan Roese | 6451223 | 2015-11-25 07:37:00 +0100 | [diff] [blame] | 124 | select SPL_DM |
Nathan Rossi | 47c0d79 | 2016-01-08 03:00:47 +1000 | [diff] [blame] | 125 | select SPL_DM_SEQ_ALIAS |
Stefan Roese | 6451223 | 2015-11-25 07:37:00 +0100 | [diff] [blame] | 126 | select SPL_OF_CONTROL |
Stefan Roese | 09a54c0 | 2015-11-20 13:51:57 +0100 | [diff] [blame] | 127 | select SPL_SIMPLE_BUS |
Stefan Roese | a488483 | 2014-10-22 12:13:19 +0200 | [diff] [blame] | 128 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 129 | config TARGET_DEVKIT3250 |
| 130 | bool "Support devkit3250" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 131 | select CPU_ARM926EJS |
Vladimir Zapolskiy | e9b3ce3 | 2015-07-18 01:47:11 +0300 | [diff] [blame] | 132 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 133 | |
Albert ARIBAUD \(3ADEV\) | 412ae53 | 2015-03-31 11:40:51 +0200 | [diff] [blame] | 134 | config TARGET_WORK_92105 |
| 135 | bool "Support work_92105" |
| 136 | select CPU_ARM926EJS |
| 137 | select SUPPORT_SPL |
| 138 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 139 | config TARGET_MX25PDK |
| 140 | bool "Support mx25pdk" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 141 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 142 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 143 | config TARGET_ZMX25 |
| 144 | bool "Support zmx25" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 145 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 146 | |
| 147 | config TARGET_APF27 |
| 148 | bool "Support apf27" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 149 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 150 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 151 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 152 | config TARGET_APX4DEVKIT |
| 153 | bool "Support apx4devkit" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 154 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 155 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 156 | |
| 157 | config TARGET_XFI3 |
| 158 | bool "Support xfi3" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 159 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 160 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 161 | |
| 162 | config TARGET_M28EVK |
| 163 | bool "Support m28evk" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 164 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 165 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 166 | |
| 167 | config TARGET_MX23EVK |
| 168 | bool "Support mx23evk" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 169 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 170 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 171 | |
| 172 | config TARGET_MX28EVK |
| 173 | bool "Support mx28evk" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 174 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 175 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 176 | |
| 177 | config TARGET_MX23_OLINUXINO |
| 178 | bool "Support mx23_olinuxino" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 179 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 180 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 181 | |
| 182 | config TARGET_BG0900 |
| 183 | bool "Support bg0900" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 184 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 185 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 186 | |
| 187 | config TARGET_SANSA_FUZE_PLUS |
| 188 | bool "Support sansa_fuze_plus" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 189 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 190 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 191 | |
| 192 | config TARGET_SC_SPS_1 |
| 193 | bool "Support sc_sps_1" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 194 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 195 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 196 | |
Masahiro Yamada | 22f2be7 | 2014-08-31 07:11:06 +0900 | [diff] [blame] | 197 | config ORION5X |
| 198 | bool "Marvell Orion" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 199 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 200 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 201 | config TARGET_SPEAR300 |
| 202 | bool "Support spear300" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 203 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 204 | |
| 205 | config TARGET_SPEAR310 |
| 206 | bool "Support spear310" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 207 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 208 | |
| 209 | config TARGET_SPEAR320 |
| 210 | bool "Support spear320" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 211 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 212 | |
| 213 | config TARGET_SPEAR600 |
| 214 | bool "Support spear600" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 215 | select CPU_ARM926EJS |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 216 | |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 217 | config TARGET_STV0991 |
| 218 | bool "Support stv0991" |
| 219 | select CPU_V7 |
Masahiro Yamada | cac0ca7 | 2015-03-31 12:48:01 +0900 | [diff] [blame] | 220 | select DM |
| 221 | select DM_SERIAL |
Vikas Manocha | e67abca | 2015-07-02 18:29:41 -0700 | [diff] [blame] | 222 | select DM_SPI |
| 223 | select DM_SPI_FLASH |
| 224 | select SPI_FLASH |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 225 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 226 | config TARGET_X600 |
| 227 | bool "Support x600" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 228 | select CPU_ARM926EJS |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 229 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 230 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 231 | config TARGET_IMX31_PHYCORE |
| 232 | bool "Support imx31_phycore" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 233 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 234 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 235 | config TARGET_MX31ADS |
| 236 | bool "Support mx31ads" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 237 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 238 | |
| 239 | config TARGET_MX31PDK |
| 240 | bool "Support mx31pdk" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 241 | select CPU_ARM1136 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 242 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 243 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 244 | config TARGET_WOODBURN |
| 245 | bool "Support woodburn" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 246 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 247 | |
| 248 | config TARGET_WOODBURN_SD |
| 249 | bool "Support woodburn_sd" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 250 | select CPU_ARM1136 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 251 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 252 | |
| 253 | config TARGET_FLEA3 |
| 254 | bool "Support flea3" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 255 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 256 | |
| 257 | config TARGET_MX35PDK |
| 258 | bool "Support mx35pdk" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 259 | select CPU_ARM1136 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 260 | |
Masahiro Yamada | ddf6bd4 | 2015-03-19 19:42:56 +0900 | [diff] [blame] | 261 | config ARCH_BCM283X |
| 262 | bool "Broadcom BCM283X family" |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 263 | select DM |
| 264 | select DM_SERIAL |
| 265 | select DM_GPIO |
Stephen Warren | 4641429 | 2015-02-16 12:16:15 -0700 | [diff] [blame] | 266 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 267 | config TARGET_VEXPRESS_CA15_TC2 |
| 268 | bool "Support vexpress_ca15_tc2" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 269 | select CPU_V7 |
Hans de Goede | ea624e1 | 2014-11-14 09:34:30 +0100 | [diff] [blame] | 270 | select CPU_V7_HAS_NONSEC |
| 271 | select CPU_V7_HAS_VIRT |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 272 | |
| 273 | config TARGET_VEXPRESS_CA5X2 |
| 274 | bool "Support vexpress_ca5x2" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 275 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 276 | |
| 277 | config TARGET_VEXPRESS_CA9X4 |
| 278 | bool "Support vexpress_ca9x4" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 279 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 280 | |
| 281 | config TARGET_KWB |
| 282 | bool "Support kwb" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 283 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 284 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 285 | |
| 286 | config TARGET_TSERIES |
| 287 | bool "Support tseries" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 288 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 289 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 290 | |
| 291 | config TARGET_CM_T335 |
| 292 | bool "Support cm_t335" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 293 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 294 | select SUPPORT_SPL |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 295 | select DM |
| 296 | select DM_SERIAL |
| 297 | select DM_GPIO |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 298 | |
| 299 | config TARGET_PEPPER |
| 300 | bool "Support pepper" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 301 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 302 | select SUPPORT_SPL |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 303 | select DM |
| 304 | select DM_SERIAL |
| 305 | select DM_GPIO |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 306 | |
| 307 | config TARGET_AM335X_IGEP0033 |
| 308 | bool "Support am335x_igep0033" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 309 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 310 | select SUPPORT_SPL |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 311 | select DM |
| 312 | select DM_SERIAL |
| 313 | select DM_GPIO |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 314 | |
| 315 | config TARGET_PCM051 |
| 316 | bool "Support pcm051" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 317 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 318 | select SUPPORT_SPL |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 319 | select DM |
| 320 | select DM_SERIAL |
| 321 | select DM_GPIO |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 322 | |
| 323 | config TARGET_DRACO |
| 324 | bool "Support draco" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 325 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 326 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 327 | |
Heiko Schocher | 8c65a2f | 2015-06-15 14:57:15 +0200 | [diff] [blame] | 328 | config TARGET_THUBAN |
| 329 | bool "Support thuban" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 330 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 331 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 332 | |
Heiko Schocher | 578056c | 2015-06-15 14:56:41 +0200 | [diff] [blame] | 333 | config TARGET_RASTABAN |
| 334 | bool "Support rastaban" |
| 335 | select CPU_V7 |
| 336 | select SUPPORT_SPL |
| 337 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 338 | config TARGET_PXM2 |
| 339 | bool "Support pxm2" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 340 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 341 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 342 | |
| 343 | config TARGET_RUT |
| 344 | bool "Support rut" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 345 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 346 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 347 | |
| 348 | config TARGET_PENGWYN |
| 349 | bool "Support pengwyn" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 350 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 351 | select SUPPORT_SPL |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 352 | select DM |
| 353 | select DM_SERIAL |
| 354 | select DM_GPIO |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 355 | |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 356 | config TARGET_AM335X_BALTOS |
| 357 | bool "Support am335x_baltos" |
| 358 | select CPU_V7 |
| 359 | select SUPPORT_SPL |
| 360 | select DM |
| 361 | select DM_SERIAL |
| 362 | select DM_GPIO |
| 363 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 364 | config TARGET_AM335X_EVM |
| 365 | bool "Support am335x_evm" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 366 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 367 | select SUPPORT_SPL |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 368 | select DM |
| 369 | select DM_SERIAL |
| 370 | select DM_GPIO |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 371 | |
Enric Balletbò i Serra | 9d1b298 | 2015-09-07 07:43:20 +0200 | [diff] [blame] | 372 | config TARGET_AM335X_SL50 |
| 373 | bool "Support am335x_sl50" |
| 374 | select CPU_V7 |
| 375 | select SUPPORT_SPL |
| 376 | select DM |
| 377 | select DM_SERIAL |
| 378 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 379 | config TARGET_AM43XX_EVM |
| 380 | bool "Support am43xx_evm" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 381 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 382 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 383 | |
Gilles Gameiro | a2bc432 | 2015-02-10 01:36:01 -0800 | [diff] [blame] | 384 | config TARGET_BAV335X |
| 385 | bool "Support bav335x" |
| 386 | select CPU_V7 |
| 387 | select SUPPORT_SPL |
Masahiro Yamada | 93a3538 | 2015-03-31 12:48:00 +0900 | [diff] [blame] | 388 | select DM |
| 389 | select DM_SERIAL |
Gilles Gameiro | a2bc432 | 2015-02-10 01:36:01 -0800 | [diff] [blame] | 390 | help |
| 391 | The BAV335x OEM Network Processor integrates all the functions of an |
| 392 | embedded network computer in a small, easy to use SODIMM module which |
| 393 | incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8 |
| 394 | processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit |
| 395 | ethernet with simple connection to external connectors. |
| 396 | |
| 397 | For more information, visit: http://birdland.com/oem |
| 398 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 399 | config TARGET_TI814X_EVM |
| 400 | bool "Support ti814x_evm" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 401 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 402 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 403 | |
| 404 | config TARGET_TI816X_EVM |
| 405 | bool "Support ti816x_evm" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 406 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 407 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 408 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 409 | config TARGET_BCM28155_AP |
| 410 | bool "Support bcm28155_ap" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 411 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 412 | |
Steve Rae | abb1678 | 2014-11-11 11:32:18 -0800 | [diff] [blame] | 413 | config TARGET_BCMCYGNUS |
| 414 | bool "Support bcmcygnus" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 415 | select CPU_V7 |
Steve Rae | 9dec527 | 2014-08-11 13:58:26 -0700 | [diff] [blame] | 416 | |
Steve Rae | abb1678 | 2014-11-11 11:32:18 -0800 | [diff] [blame] | 417 | config TARGET_BCMNSP |
| 418 | bool "Support bcmnsp" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 419 | select CPU_V7 |
Steve Rae | 9dec527 | 2014-08-11 13:58:26 -0700 | [diff] [blame] | 420 | |
Masahiro Yamada | 72df68c | 2014-08-31 07:11:00 +0900 | [diff] [blame] | 421 | config ARCH_EXYNOS |
| 422 | bool "Samsung EXYNOS" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 423 | select CPU_V7 |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 424 | select DM |
| 425 | select DM_SPI_FLASH |
| 426 | select DM_SERIAL |
| 427 | select DM_SPI |
| 428 | select DM_GPIO |
Simon Glass | 1fa4bfd | 2015-10-18 21:17:17 -0600 | [diff] [blame] | 429 | select DM_KEYBOARD |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 430 | |
Simon Glass | 311757b | 2014-10-07 22:01:50 -0600 | [diff] [blame] | 431 | config ARCH_S5PC1XX |
| 432 | bool "Samsung S5PC1XX" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 433 | select CPU_V7 |
Masahiro Yamada | 58d423b | 2015-03-31 12:47:53 +0900 | [diff] [blame] | 434 | select DM |
| 435 | select DM_SERIAL |
| 436 | select DM_GPIO |
Simon Glass | 311757b | 2014-10-07 22:01:50 -0600 | [diff] [blame] | 437 | |
Masahiro Yamada | ef2b694 | 2014-08-31 07:11:07 +0900 | [diff] [blame] | 438 | config ARCH_HIGHBANK |
| 439 | bool "Calxeda Highbank" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 440 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 441 | |
Masahiro Yamada | 5cbbd9b | 2015-04-21 21:59:36 +0900 | [diff] [blame] | 442 | config ARCH_INTEGRATOR |
| 443 | bool "ARM Ltd. Integrator family" |
Linus Walleij | 3f394e7 | 2015-07-27 11:22:48 +0200 | [diff] [blame] | 444 | select DM |
| 445 | select DM_SERIAL |
Masahiro Yamada | 5cbbd9b | 2015-04-21 21:59:36 +0900 | [diff] [blame] | 446 | |
Masahiro Yamada | c338f09 | 2014-08-31 07:11:05 +0900 | [diff] [blame] | 447 | config ARCH_KEYSTONE |
| 448 | bool "TI Keystone" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 449 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 450 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 451 | |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 452 | config ARCH_MX7 |
| 453 | bool "Freescale MX7" |
| 454 | select CPU_V7 |
| 455 | |
Boris BREZILLON | 89ebc82 | 2015-03-04 13:13:03 +0100 | [diff] [blame] | 456 | config ARCH_MX6 |
| 457 | bool "Freescale MX6" |
| 458 | select CPU_V7 |
| 459 | |
Andrej Rosano | 424ee3d | 2015-04-08 18:56:29 +0200 | [diff] [blame] | 460 | config ARCH_MX5 |
| 461 | bool "Freescale MX5" |
| 462 | select CPU_V7 |
| 463 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 464 | config TARGET_M53EVK |
| 465 | bool "Support m53evk" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 466 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 467 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 468 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 469 | config TARGET_MX51EVK |
| 470 | bool "Support mx51evk" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 471 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 472 | |
| 473 | config TARGET_MX53ARD |
| 474 | bool "Support mx53ard" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 475 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 476 | |
| 477 | config TARGET_MX53EVK |
| 478 | bool "Support mx53evk" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 479 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 480 | |
| 481 | config TARGET_MX53LOCO |
| 482 | bool "Support mx53loco" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 483 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 484 | |
| 485 | config TARGET_MX53SMD |
| 486 | bool "Support mx53smd" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 487 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 488 | |
Masahiro Yamada | 3cfbcb5 | 2014-08-31 07:11:02 +0900 | [diff] [blame] | 489 | config OMAP34XX |
| 490 | bool "OMAP34XX SoC" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 491 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 492 | |
Masahiro Yamada | d08215a | 2014-08-31 07:11:03 +0900 | [diff] [blame] | 493 | config OMAP44XX |
| 494 | bool "OMAP44XX SoC" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 495 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 496 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 497 | |
Masahiro Yamada | 6c5431a | 2014-08-31 07:11:04 +0900 | [diff] [blame] | 498 | config OMAP54XX |
| 499 | bool "OMAP54XX SoC" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 500 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 501 | select SUPPORT_SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 502 | |
Masahiro Yamada | f40b989 | 2014-08-31 07:10:57 +0900 | [diff] [blame] | 503 | config RMOBILE |
| 504 | bool "Renesas ARM SoCs" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 505 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 506 | |
Masahiro Yamada | 7865f4b | 2015-04-21 20:38:20 +0900 | [diff] [blame] | 507 | config ARCH_SOCFPGA |
| 508 | bool "Altera SOCFPGA family" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 509 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 510 | select SUPPORT_SPL |
Marek Vasut | dfd3dff | 2015-08-19 23:23:52 +0200 | [diff] [blame] | 511 | select OF_CONTROL |
| 512 | select SPL_OF_CONTROL |
Masahiro Yamada | 1d9aa3e | 2015-03-31 12:47:59 +0900 | [diff] [blame] | 513 | select DM |
| 514 | select DM_SPI_FLASH |
| 515 | select DM_SPI |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 516 | |
Nikita Kiryanov | 8883dda | 2015-07-30 23:56:23 +0300 | [diff] [blame] | 517 | config TARGET_CM_T43 |
| 518 | bool "Support cm_t43" |
| 519 | select CPU_V7 |
| 520 | select SUPPORT_SPL |
| 521 | |
Ian Campbell | 2c7e3b9 | 2014-10-24 21:20:44 +0100 | [diff] [blame] | 522 | config ARCH_SUNXI |
| 523 | bool "Support sunxi (Allwinner) SoCs" |
Hans de Goede | de1502c | 2015-06-17 20:54:07 +0200 | [diff] [blame] | 524 | select CMD_USB |
Hans de Goede | b6006ba | 2015-04-15 20:46:48 +0200 | [diff] [blame] | 525 | select DM |
Tom Rini | 4536882 | 2015-06-30 16:51:15 -0400 | [diff] [blame] | 526 | select DM_ETH |
Hans de Goede | 211d57a | 2015-12-21 20:22:00 +0100 | [diff] [blame] | 527 | select DM_GPIO |
| 528 | select DM_KEYBOARD |
Tom Rini | 4536882 | 2015-06-30 16:51:15 -0400 | [diff] [blame] | 529 | select DM_SERIAL |
Hans de Goede | 91183ba | 2015-06-17 17:44:58 +0200 | [diff] [blame] | 530 | select DM_USB |
Hans de Goede | b6006ba | 2015-04-15 20:46:48 +0200 | [diff] [blame] | 531 | select OF_CONTROL |
| 532 | select OF_SEPARATE |
Hans de Goede | ff42d10 | 2015-09-13 13:02:48 +0200 | [diff] [blame] | 533 | select SPL_STACK_R if !MACH_SUN9I |
Hans de Goede | 6d0bdfd | 2015-09-13 12:31:24 +0200 | [diff] [blame] | 534 | select SPL_SYS_MALLOC_SIMPLE if !MACH_SUN9I |
Hans de Goede | 6edf6a2 | 2015-12-10 11:10:17 +0100 | [diff] [blame] | 535 | select SYS_NS16550 |
Tom Rini | 4536882 | 2015-06-30 16:51:15 -0400 | [diff] [blame] | 536 | select USB |
Hans de Goede | de1502c | 2015-06-17 20:54:07 +0200 | [diff] [blame] | 537 | select USB_STORAGE |
Hans de Goede | ab27f30 | 2015-08-04 17:04:13 +0200 | [diff] [blame] | 538 | select USB_KEYBOARD |
Chen-Yu Tsai | 8ebe4f4 | 2014-10-22 16:47:44 +0800 | [diff] [blame] | 539 | |
Lucile Quirion | 9ee1689 | 2015-06-30 17:17:47 -0400 | [diff] [blame] | 540 | config TARGET_TS4800 |
| 541 | bool "Support TS4800" |
| 542 | select CPU_V7 |
| 543 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 544 | config TARGET_VF610TWR |
| 545 | bool "Support vf610twr" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 546 | select CPU_V7 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 547 | |
Sanchayan Maity | e7b860f | 2015-04-15 16:24:26 +0530 | [diff] [blame] | 548 | config TARGET_COLIBRI_VF |
| 549 | bool "Support Colibri VF50/61" |
| 550 | select CPU_V7 |
| 551 | |
Albert ARIBAUD \(3ADEV\) | 931a1d2 | 2015-09-21 22:43:39 +0200 | [diff] [blame] | 552 | config TARGET_PCM052 |
| 553 | bool "Support pcm-052" |
| 554 | select CPU_V7 |
| 555 | |
Masahiro Yamada | 5ca269a | 2015-03-16 16:43:24 +0900 | [diff] [blame] | 556 | config ARCH_ZYNQ |
Masahiro Yamada | 44dcb40 | 2014-08-31 07:10:55 +0900 | [diff] [blame] | 557 | bool "Xilinx Zynq Platform" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 558 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 559 | select SUPPORT_SPL |
Jagan Teki | d065cfd | 2015-06-29 14:17:32 +0530 | [diff] [blame] | 560 | select OF_CONTROL |
Michal Simek | eb04ab3 | 2016-01-13 14:32:43 +0100 | [diff] [blame] | 561 | select SPL_OF_CONTROL if SPL |
Masahiro Yamada | 8981f05 | 2015-03-31 12:47:55 +0900 | [diff] [blame] | 562 | select DM |
Michal Simek | 6889ca7 | 2015-11-30 14:14:56 +0100 | [diff] [blame] | 563 | select DM_ETH |
Michal Simek | eb04ab3 | 2016-01-13 14:32:43 +0100 | [diff] [blame] | 564 | select SPL_DM if SPL |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 565 | select DM_MMC |
Jagan Teki | 9f7a450 | 2015-06-27 00:51:32 +0530 | [diff] [blame] | 566 | select DM_SPI |
Simon Glass | 42800ff | 2015-10-17 19:41:27 -0600 | [diff] [blame] | 567 | select DM_SERIAL |
Jagan Teki | 9f7a450 | 2015-06-27 00:51:32 +0530 | [diff] [blame] | 568 | select DM_SPI_FLASH |
Michal Simek | eb04ab3 | 2016-01-13 14:32:43 +0100 | [diff] [blame] | 569 | select SPL_SEPARATE_BSS if SPL |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 570 | |
Siva Durga Prasad Paladugu | 0b54a9d | 2015-06-10 15:50:57 +0530 | [diff] [blame] | 571 | config ARCH_ZYNQMP |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 572 | bool "Support Xilinx ZynqMP Platform" |
| 573 | select ARM64 |
Michal Simek | c2490bf | 2015-10-17 19:41:25 -0600 | [diff] [blame] | 574 | select DM |
| 575 | select OF_CONTROL |
Michal Simek | 6889ca7 | 2015-11-30 14:14:56 +0100 | [diff] [blame] | 576 | select DM_ETH |
Michal Simek | d9ae52c | 2015-11-30 16:13:03 +0100 | [diff] [blame] | 577 | select DM_MMC |
Michal Simek | c2490bf | 2015-10-17 19:41:25 -0600 | [diff] [blame] | 578 | select DM_SERIAL |
Michal Simek | 84c7204 | 2015-01-15 10:01:51 +0100 | [diff] [blame] | 579 | |
Masahiro Yamada | ddd960e | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 580 | config TEGRA |
| 581 | bool "NVIDIA Tegra" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 582 | |
Linus Walleij | f91afc4 | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 583 | config TARGET_VEXPRESS64_AEMV8A |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 584 | bool "Support vexpress_aemv8a" |
Masahiro Yamada | 016a954 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 585 | select ARM64 |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 586 | |
Linus Walleij | f91afc4 | 2015-01-23 11:50:53 +0100 | [diff] [blame] | 587 | config TARGET_VEXPRESS64_BASE_FVP |
| 588 | bool "Support Versatile Express ARMv8a FVP BASE model" |
| 589 | select ARM64 |
| 590 | select SEMIHOSTING |
| 591 | |
Ryan Harkin | fc04b92 | 2015-10-09 17:18:02 +0100 | [diff] [blame] | 592 | config TARGET_VEXPRESS64_BASE_FVP_DRAM |
| 593 | bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM" |
| 594 | select ARM64 |
| 595 | help |
| 596 | This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides |
| 597 | the default config to allow the user to load the images directly into |
| 598 | DRAM using model parameters rather than by using semi-hosting to load |
| 599 | the files from the host filesystem. |
| 600 | |
Linus Walleij | ffc1037 | 2015-01-23 14:41:10 +0100 | [diff] [blame] | 601 | config TARGET_VEXPRESS64_JUNO |
| 602 | bool "Support Versatile Express Juno Development Platform" |
| 603 | select ARM64 |
| 604 | |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 605 | config TARGET_LS2080A_EMU |
| 606 | bool "Support ls2080a_emu" |
Masahiro Yamada | 016a954 | 2014-09-14 03:01:51 +0900 | [diff] [blame] | 607 | select ARM64 |
Linus Walleij | 23b5877 | 2015-03-09 10:53:21 +0100 | [diff] [blame] | 608 | select ARMV8_MULTIENTRY |
York Sun | 7288c2c | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 609 | help |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 610 | Support for Freescale LS2080A_EMU platform |
| 611 | The LS2080A Development System (EMULATOR) is a pre silicon |
| 612 | development platform that supports the QorIQ LS2080A |
York Sun | 7288c2c | 2015-03-20 19:28:23 -0700 | [diff] [blame] | 613 | Layerscape Architecture processor. |
| 614 | |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 615 | config TARGET_LS2080A_SIMU |
| 616 | bool "Support ls2080a_simu" |
| 617 | select ARM64 |
| 618 | select ARMV8_MULTIENTRY |
| 619 | help |
| 620 | Support for Freescale LS2080A_SIMU platform |
| 621 | The LS2080A Development System (QDS) is a pre silicon |
| 622 | development platform that supports the QorIQ LS2080A |
| 623 | Layerscape Architecture processor. |
| 624 | |
| 625 | config TARGET_LS2080AQDS |
| 626 | bool "Support ls2080aqds" |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 627 | select ARM64 |
| 628 | select ARMV8_MULTIENTRY |
Scott Wood | 32eda7c | 2015-03-24 13:25:03 -0700 | [diff] [blame] | 629 | select SUPPORT_SPL |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 630 | help |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 631 | Support for Freescale LS2080AQDS platform |
| 632 | The LS2080A Development System (QDS) is a high-performance |
| 633 | development platform that supports the QorIQ LS2080A |
| 634 | Layerscape Architecture processor. |
| 635 | |
| 636 | config TARGET_LS2080ARDB |
| 637 | bool "Support ls2080ardb" |
| 638 | select ARM64 |
| 639 | select ARMV8_MULTIENTRY |
| 640 | select SUPPORT_SPL |
| 641 | help |
| 642 | Support for Freescale LS2080ARDB platform. |
| 643 | The LS2080A Reference design board (RDB) is a high-performance |
| 644 | development platform that supports the QorIQ LS2080A |
York Sun | e2b65ea | 2015-03-20 19:28:24 -0700 | [diff] [blame] | 645 | Layerscape Architecture processor. |
| 646 | |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 647 | config TARGET_HIKEY |
| 648 | bool "Support HiKey 96boards Consumer Edition Platform" |
| 649 | select ARM64 |
Peter Griffin | efd7b60 | 2015-09-10 21:55:16 +0100 | [diff] [blame] | 650 | select DM |
| 651 | select DM_GPIO |
Peter Griffin | 9c71bcd | 2015-09-10 21:55:17 +0100 | [diff] [blame] | 652 | select DM_SERIAL |
Peter Griffin | 11ac236 | 2015-07-30 18:55:23 +0100 | [diff] [blame] | 653 | help |
| 654 | Support for HiKey 96boards platform. It features a HI6220 |
| 655 | SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM. |
| 656 | |
Wang Huan | 550e3dc | 2014-09-05 13:52:44 +0800 | [diff] [blame] | 657 | config TARGET_LS1021AQDS |
Alison Wang | 0de1570 | 2014-12-03 16:18:09 +0800 | [diff] [blame] | 658 | bool "Support ls1021aqds" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 659 | select CPU_V7 |
Alison Wang | 50f0c66 | 2014-12-03 15:00:45 +0800 | [diff] [blame] | 660 | select SUPPORT_SPL |
Wang Huan | c8a7d9d | 2014-09-05 13:52:45 +0800 | [diff] [blame] | 661 | config TARGET_LS1021ATWR |
Alison Wang | 0de1570 | 2014-12-03 16:18:09 +0800 | [diff] [blame] | 662 | bool "Support ls1021atwr" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 663 | select CPU_V7 |
Alison Wang | 50f0c66 | 2014-12-03 15:00:45 +0800 | [diff] [blame] | 664 | select SUPPORT_SPL |
Wang Huan | c8a7d9d | 2014-09-05 13:52:45 +0800 | [diff] [blame] | 665 | |
Shaohui Xie | 02b5d2e | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 666 | config TARGET_LS1043AQDS |
| 667 | bool "Support ls1043aqds" |
| 668 | select ARM64 |
| 669 | select ARMV8_MULTIENTRY |
| 670 | select SUPPORT_SPL |
| 671 | help |
| 672 | Support for Freescale LS1043AQDS platform. |
| 673 | |
Mingkai Hu | f3a8e2b | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 674 | config TARGET_LS1043ARDB |
| 675 | bool "Support ls1043ardb" |
| 676 | select ARM64 |
Hou Zhiqiang | 831c068 | 2015-10-26 19:47:57 +0800 | [diff] [blame] | 677 | select ARMV8_MULTIENTRY |
Gong Qianyu | 3ad4472 | 2015-10-26 19:47:53 +0800 | [diff] [blame] | 678 | select SUPPORT_SPL |
Mingkai Hu | f3a8e2b | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 679 | help |
| 680 | Support for Freescale LS1043ARDB platform. |
| 681 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 682 | config TARGET_H2200 |
| 683 | bool "Support h2200" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 684 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 685 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 686 | config TARGET_COLIBRI_PXA270 |
| 687 | bool "Support colibri_pxa270" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 688 | select CPU_PXA |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 689 | |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 690 | config ARCH_UNIPHIER |
Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 691 | bool "Socionext UniPhier SoCs" |
Georges Savoundararadj | 2e07c24 | 2014-10-28 23:16:09 +0100 | [diff] [blame] | 692 | select CPU_V7 |
Masahiro Yamada | 0262735 | 2014-10-20 17:45:56 +0900 | [diff] [blame] | 693 | select SUPPORT_SPL |
Masahiro Yamada | 992e874 | 2014-12-18 19:11:03 +0900 | [diff] [blame] | 694 | select SPL |
Masahiro Yamada | d648964 | 2015-02-24 22:26:21 +0900 | [diff] [blame] | 695 | select OF_CONTROL |
Masahiro Yamada | f4e190e | 2015-08-28 20:13:18 +0900 | [diff] [blame] | 696 | select SPL_OF_CONTROL |
Masahiro Yamada | 4e81995 | 2015-03-31 12:47:54 +0900 | [diff] [blame] | 697 | select DM |
Masahiro Yamada | 9271614 | 2015-08-28 20:13:17 +0900 | [diff] [blame] | 698 | select SPL_DM |
Masahiro Yamada | 4e81995 | 2015-03-31 12:47:54 +0900 | [diff] [blame] | 699 | select DM_SERIAL |
| 700 | select DM_I2C |
Masahiro Yamada | b6ef3a3 | 2015-05-29 17:30:01 +0900 | [diff] [blame] | 701 | help |
| 702 | Support for UniPhier SoC family developed by Socionext Inc. |
| 703 | (formerly, System LSI Business Division of Panasonic Corporation) |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 704 | |
Vikas Manocha | 0a61ee8 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 705 | config STM32 |
| 706 | bool "Support STM32" |
rev13@wp.pl | ed09a55 | 2015-03-01 12:44:42 +0100 | [diff] [blame] | 707 | select CPU_V7M |
Kamil Lulko | 6656241 | 2015-12-01 09:08:19 +0100 | [diff] [blame] | 708 | select DM |
| 709 | select DM_SERIAL |
rev13@wp.pl | ed09a55 | 2015-03-01 12:44:42 +0100 | [diff] [blame] | 710 | |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 711 | config ARCH_ROCKCHIP |
| 712 | bool "Support Rockchip SoCs" |
| 713 | select SUPPORT_SPL |
| 714 | select SPL |
| 715 | select OF_CONTROL |
| 716 | select CPU_V7 |
| 717 | select DM |
| 718 | |
Sergey Temerkhanov | 746f985 | 2015-10-14 09:55:50 -0700 | [diff] [blame] | 719 | config TARGET_THUNDERX_88XX |
| 720 | bool "Support ThunderX 88xx" |
| 721 | select OF_CONTROL |
| 722 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 723 | endchoice |
| 724 | |
Masahiro Yamada | 4614b89 | 2015-02-20 17:04:01 +0900 | [diff] [blame] | 725 | source "arch/arm/mach-at91/Kconfig" |
| 726 | |
Masahiro Yamada | ddf6bd4 | 2015-03-19 19:42:56 +0900 | [diff] [blame] | 727 | source "arch/arm/mach-bcm283x/Kconfig" |
Masahiro Yamada | 3491ba6 | 2014-08-31 07:11:01 +0900 | [diff] [blame] | 728 | |
Masahiro Yamada | ddf6bd4 | 2015-03-19 19:42:56 +0900 | [diff] [blame] | 729 | source "arch/arm/mach-davinci/Kconfig" |
Simon Glass | 34e609c | 2015-02-05 21:41:39 -0700 | [diff] [blame] | 730 | |
Thomas Abraham | 77b55e8 | 2015-08-03 17:58:00 +0530 | [diff] [blame] | 731 | source "arch/arm/mach-exynos/Kconfig" |
Masahiro Yamada | 72df68c | 2014-08-31 07:11:00 +0900 | [diff] [blame] | 732 | |
Masahiro Yamada | 72a8ff4 | 2015-02-20 17:04:08 +0900 | [diff] [blame] | 733 | source "arch/arm/mach-highbank/Kconfig" |
Masahiro Yamada | ef2b694 | 2014-08-31 07:11:07 +0900 | [diff] [blame] | 734 | |
Masahiro Yamada | 5cbbd9b | 2015-04-21 21:59:36 +0900 | [diff] [blame] | 735 | source "arch/arm/mach-integrator/Kconfig" |
| 736 | |
Masahiro Yamada | 39a7234 | 2015-02-20 17:04:11 +0900 | [diff] [blame] | 737 | source "arch/arm/mach-keystone/Kconfig" |
Masahiro Yamada | c338f09 | 2014-08-31 07:11:05 +0900 | [diff] [blame] | 738 | |
Masahiro Yamada | 56f86e3 | 2015-02-20 17:04:06 +0900 | [diff] [blame] | 739 | source "arch/arm/mach-kirkwood/Kconfig" |
Masahiro Yamada | 47539e2 | 2014-08-31 07:10:59 +0900 | [diff] [blame] | 740 | |
Stefan Roese | c3d8914 | 2015-08-25 13:18:38 +0200 | [diff] [blame] | 741 | source "arch/arm/mach-mvebu/Kconfig" |
| 742 | |
Adrian Alonso | 1a8150d | 2015-09-03 11:49:28 -0500 | [diff] [blame] | 743 | source "arch/arm/cpu/armv7/mx7/Kconfig" |
| 744 | |
Boris BREZILLON | 89ebc82 | 2015-03-04 13:13:03 +0100 | [diff] [blame] | 745 | source "arch/arm/cpu/armv7/mx6/Kconfig" |
| 746 | |
Andrej Rosano | 424ee3d | 2015-04-08 18:56:29 +0200 | [diff] [blame] | 747 | source "arch/arm/cpu/armv7/mx5/Kconfig" |
| 748 | |
Masahiro Yamada | 3cfbcb5 | 2014-08-31 07:11:02 +0900 | [diff] [blame] | 749 | source "arch/arm/cpu/armv7/omap3/Kconfig" |
| 750 | |
Masahiro Yamada | d08215a | 2014-08-31 07:11:03 +0900 | [diff] [blame] | 751 | source "arch/arm/cpu/armv7/omap4/Kconfig" |
| 752 | |
Masahiro Yamada | 6c5431a | 2014-08-31 07:11:04 +0900 | [diff] [blame] | 753 | source "arch/arm/cpu/armv7/omap5/Kconfig" |
| 754 | |
Masahiro Yamada | 3e93b4e | 2015-02-20 17:04:09 +0900 | [diff] [blame] | 755 | source "arch/arm/mach-orion5x/Kconfig" |
Masahiro Yamada | 22f2be7 | 2014-08-31 07:11:06 +0900 | [diff] [blame] | 756 | |
Masahiro Yamada | f40b989 | 2014-08-31 07:10:57 +0900 | [diff] [blame] | 757 | source "arch/arm/cpu/armv7/rmobile/Kconfig" |
| 758 | |
Simon Glass | 2444dae | 2015-08-30 16:55:38 -0600 | [diff] [blame] | 759 | source "arch/arm/mach-rockchip/Kconfig" |
| 760 | |
Minkyu Kang | 225f5ee | 2015-11-20 15:24:57 +0900 | [diff] [blame] | 761 | source "arch/arm/mach-s5pc1xx/Kconfig" |
Simon Glass | 311757b | 2014-10-07 22:01:50 -0600 | [diff] [blame] | 762 | |
Masahiro Yamada | 7865f4b | 2015-04-21 20:38:20 +0900 | [diff] [blame] | 763 | source "arch/arm/mach-socfpga/Kconfig" |
| 764 | |
Vikas Manocha | 0a61ee8 | 2016-01-15 17:49:06 -0800 | [diff] [blame] | 765 | source "arch/arm/mach-stm32/Kconfig" |
| 766 | |
Masahiro Yamada | 09f455d | 2015-02-20 17:04:04 +0900 | [diff] [blame] | 767 | source "arch/arm/mach-tegra/Kconfig" |
Masahiro Yamada | ddd960e | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 768 | |
Masahiro Yamada | 4c42557 | 2015-02-27 02:26:42 +0900 | [diff] [blame] | 769 | source "arch/arm/mach-uniphier/Kconfig" |
Masahiro Yamada | 66cba04 | 2014-10-03 19:21:07 +0900 | [diff] [blame] | 770 | |
Masahiro Yamada | 0107f24 | 2015-03-16 16:43:22 +0900 | [diff] [blame] | 771 | source "arch/arm/mach-zynq/Kconfig" |
Masahiro Yamada | ddd960e | 2014-08-31 07:10:56 +0900 | [diff] [blame] | 772 | |
Hans de Goede | ea624e1 | 2014-11-14 09:34:30 +0100 | [diff] [blame] | 773 | source "arch/arm/cpu/armv7/Kconfig" |
| 774 | |
Siva Durga Prasad Paladugu | 7558000 | 2015-06-10 15:50:56 +0530 | [diff] [blame] | 775 | source "arch/arm/cpu/armv8/zynqmp/Kconfig" |
| 776 | |
Linus Walleij | 23b5877 | 2015-03-09 10:53:21 +0100 | [diff] [blame] | 777 | source "arch/arm/cpu/armv8/Kconfig" |
| 778 | |
Boris BREZILLON | a05a604 | 2015-03-04 13:13:04 +0100 | [diff] [blame] | 779 | source "arch/arm/imx-common/Kconfig" |
| 780 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 781 | source "board/BuR/kwb/Kconfig" |
| 782 | source "board/BuR/tseries/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 783 | source "board/CarMediaLab/flea3/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 784 | source "board/Marvell/aspenite/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 785 | source "board/Marvell/gplugd/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 786 | source "board/armadeus/apf27/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 787 | source "board/armltd/vexpress/Kconfig" |
| 788 | source "board/armltd/vexpress64/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 789 | source "board/bluegiga/apx4devkit/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 790 | source "board/broadcom/bcm28155_ap/Kconfig" |
Steve Rae | abb1678 | 2014-11-11 11:32:18 -0800 | [diff] [blame] | 791 | source "board/broadcom/bcmcygnus/Kconfig" |
| 792 | source "board/broadcom/bcmnsp/Kconfig" |
Sergey Temerkhanov | 746f985 | 2015-10-14 09:55:50 -0700 | [diff] [blame] | 793 | source "board/cavium/thunderx/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 794 | source "board/cirrus/edb93xx/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 795 | source "board/compulab/cm_t335/Kconfig" |
Tom Rini | 345243e | 2015-09-02 15:32:20 -0400 | [diff] [blame] | 796 | source "board/compulab/cm_t43/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 797 | source "board/creative/xfi3/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 798 | source "board/denx/m28evk/Kconfig" |
| 799 | source "board/denx/m53evk/Kconfig" |
Prabhakar Kushwaha | 4493721 | 2015-11-09 16:42:07 +0530 | [diff] [blame] | 800 | source "board/freescale/ls2080a/Kconfig" |
| 801 | source "board/freescale/ls2080aqds/Kconfig" |
| 802 | source "board/freescale/ls2080ardb/Kconfig" |
Wang Huan | 550e3dc | 2014-09-05 13:52:44 +0800 | [diff] [blame] | 803 | source "board/freescale/ls1021aqds/Kconfig" |
Shaohui Xie | 02b5d2e | 2015-11-11 17:58:37 +0800 | [diff] [blame] | 804 | source "board/freescale/ls1043aqds/Kconfig" |
Wang Huan | c8a7d9d | 2014-09-05 13:52:45 +0800 | [diff] [blame] | 805 | source "board/freescale/ls1021atwr/Kconfig" |
Mingkai Hu | f3a8e2b | 2015-10-26 19:47:52 +0800 | [diff] [blame] | 806 | source "board/freescale/ls1043ardb/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 807 | source "board/freescale/mx23evk/Kconfig" |
| 808 | source "board/freescale/mx25pdk/Kconfig" |
| 809 | source "board/freescale/mx28evk/Kconfig" |
| 810 | source "board/freescale/mx31ads/Kconfig" |
| 811 | source "board/freescale/mx31pdk/Kconfig" |
| 812 | source "board/freescale/mx35pdk/Kconfig" |
| 813 | source "board/freescale/mx51evk/Kconfig" |
| 814 | source "board/freescale/mx53ard/Kconfig" |
| 815 | source "board/freescale/mx53evk/Kconfig" |
| 816 | source "board/freescale/mx53loco/Kconfig" |
| 817 | source "board/freescale/mx53smd/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 818 | source "board/freescale/vf610twr/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 819 | source "board/gumstix/pepper/Kconfig" |
| 820 | source "board/h2200/Kconfig" |
Tom Rini | 345243e | 2015-09-02 15:32:20 -0400 | [diff] [blame] | 821 | source "board/hisilicon/hikey/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 822 | source "board/imx31_phycore/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 823 | source "board/isee/igep0033/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 824 | source "board/mpl/vcma9/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 825 | source "board/olimex/mx23_olinuxino/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 826 | source "board/phytec/pcm051/Kconfig" |
Albert ARIBAUD \(3ADEV\) | 931a1d2 | 2015-09-21 22:43:39 +0200 | [diff] [blame] | 827 | source "board/phytec/pcm052/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 828 | source "board/ppcag/bg0900/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 829 | source "board/samsung/smdk2410/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 830 | source "board/sandisk/sansa_fuze_plus/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 831 | source "board/schulercontrol/sc_sps_1/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 832 | source "board/siemens/draco/Kconfig" |
| 833 | source "board/siemens/pxm2/Kconfig" |
| 834 | source "board/siemens/rut/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 835 | source "board/silica/pengwyn/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 836 | source "board/spear/spear300/Kconfig" |
| 837 | source "board/spear/spear310/Kconfig" |
| 838 | source "board/spear/spear320/Kconfig" |
| 839 | source "board/spear/spear600/Kconfig" |
| 840 | source "board/spear/x600/Kconfig" |
Vikas Manocha | 9fa32b1 | 2014-11-18 10:42:22 -0800 | [diff] [blame] | 841 | source "board/st/stv0991/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 842 | source "board/sunxi/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 843 | source "board/syteco/zmx25/Kconfig" |
Enric Balletbò i Serra | 9d1b298 | 2015-09-07 07:43:20 +0200 | [diff] [blame] | 844 | source "board/tcl/sl50/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 845 | source "board/ti/am335x/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 846 | source "board/ti/am43xx/Kconfig" |
Gilles Gameiro | a2bc432 | 2015-02-10 01:36:01 -0800 | [diff] [blame] | 847 | source "board/birdland/bav335x/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 848 | source "board/ti/ti814x/Kconfig" |
| 849 | source "board/ti/ti816x/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 850 | source "board/timll/devkit3250/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 851 | source "board/toradex/colibri_pxa270/Kconfig" |
Sanchayan Maity | e7b860f | 2015-04-15 16:24:26 +0530 | [diff] [blame] | 852 | source "board/toradex/colibri_vf/Kconfig" |
Lucile Quirion | 9ee1689 | 2015-06-30 17:17:47 -0400 | [diff] [blame] | 853 | source "board/technologic/ts4800/Kconfig" |
Yegor Yefremov | 6ce8932 | 2015-05-29 19:27:29 +0200 | [diff] [blame] | 854 | source "board/vscom/baltos/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 855 | source "board/woodburn/Kconfig" |
Albert ARIBAUD \(3ADEV\) | 412ae53 | 2015-03-31 11:40:51 +0200 | [diff] [blame] | 856 | source "board/work-microwave/work_92105/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 857 | |
Masahiro Yamada | 51b17d4 | 2014-09-01 11:06:34 +0900 | [diff] [blame] | 858 | source "arch/arm/Kconfig.debug" |
| 859 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 860 | endmenu |