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