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