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