Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 1 | menu "x86 architecture" |
| 2 | depends on X86 |
| 3 | |
| 4 | config SYS_ARCH |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 5 | default "x86" |
| 6 | |
Masahiro Yamada | 45ccec8 | 2014-10-24 01:30:43 +0900 | [diff] [blame] | 7 | config USE_PRIVATE_LIBGCC |
| 8 | default y |
| 9 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 10 | choice |
| 11 | prompt "Target select" |
| 12 | |
| 13 | config TARGET_COREBOOT |
| 14 | bool "Support coreboot" |
Simon Glass | 8ef0757 | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 15 | help |
| 16 | This target is used for running U-Boot on top of Coreboot. In |
| 17 | this case Coreboot does the early inititalisation, and U-Boot |
| 18 | takes over once the RAM, video and CPU are fully running. |
| 19 | U-Boot is loaded as a fallback payload from Coreboot, in |
| 20 | Coreboot terminology. This method was used for the Chromebook |
| 21 | Pixel when launched. |
| 22 | |
| 23 | config TARGET_CHROMEBOOK_LINK |
| 24 | bool "Support Chromebook link" |
| 25 | help |
| 26 | This is the Chromebook Pixel released in 2013. It uses an Intel |
| 27 | i5 Ivybridge which is a die-shrink of Sandybridge, with 4GB of |
| 28 | SDRAM. It has a Panther Point platform controller hub, PCIe |
| 29 | WiFi and Bluetooth. It also includes a 720p webcam, USB SD |
| 30 | reader, microphone and speakers, display port and 32GB SATA |
| 31 | solid state drive. There is a Chrome OS EC connected on LPC, |
| 32 | and it provides a 2560x1700 high resolution touch-enabled LCD |
| 33 | display. |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 34 | |
Bin Meng | 58f542d | 2014-12-17 15:50:40 +0800 | [diff] [blame] | 35 | config TARGET_CROWNBAY |
| 36 | bool "Support Intel Crown Bay CRB" |
| 37 | help |
| 38 | This is the Intel Crown Bay Customer Reference Board. It contains |
| 39 | the Intel Atom Processor E6xx populated on the COM Express module |
| 40 | with 1GB DDR2 soldered down memory and a carrier board with the |
| 41 | Intel Platform Controller Hub EG20T, other system components and |
| 42 | peripheral connectors for PCIe/SATA/USB/LAN/SD/UART/Audio/LVDS. |
| 43 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 44 | endchoice |
| 45 | |
Simon Glass | 70a09c6 | 2014-11-12 22:42:10 -0700 | [diff] [blame] | 46 | config RAMBASE |
| 47 | hex |
| 48 | default 0x100000 |
| 49 | |
Simon Glass | 70a09c6 | 2014-11-12 22:42:10 -0700 | [diff] [blame] | 50 | config XIP_ROM_SIZE |
| 51 | hex |
Bin Meng | 7698d36 | 2015-01-06 22:14:16 +0800 | [diff] [blame] | 52 | depends on X86_RESET_VECTOR |
Simon Glass | bbd43d6 | 2015-01-01 16:17:54 -0700 | [diff] [blame] | 53 | default ROM_SIZE |
Simon Glass | 70a09c6 | 2014-11-12 22:42:10 -0700 | [diff] [blame] | 54 | |
| 55 | config CPU_ADDR_BITS |
| 56 | int |
| 57 | default 36 |
| 58 | |
Simon Glass | 65dd74a | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 59 | config HPET_ADDRESS |
| 60 | hex |
| 61 | default 0xfed00000 if !HPET_ADDRESS_OVERRIDE |
| 62 | |
| 63 | config SMM_TSEG |
| 64 | bool |
| 65 | default n |
| 66 | |
| 67 | config SMM_TSEG_SIZE |
| 68 | hex |
| 69 | |
Bin Meng | 8cb20cc | 2015-01-06 22:14:15 +0800 | [diff] [blame] | 70 | config X86_RESET_VECTOR |
| 71 | bool |
| 72 | default n |
| 73 | |
| 74 | config SYS_X86_START16 |
| 75 | hex |
| 76 | depends on X86_RESET_VECTOR |
| 77 | default 0xfffff800 |
| 78 | |
Bin Meng | 64542f4 | 2014-12-12 21:05:19 +0800 | [diff] [blame] | 79 | config BOARD_ROMSIZE_KB_512 |
| 80 | bool |
| 81 | config BOARD_ROMSIZE_KB_1024 |
| 82 | bool |
| 83 | config BOARD_ROMSIZE_KB_2048 |
| 84 | bool |
| 85 | config BOARD_ROMSIZE_KB_4096 |
| 86 | bool |
| 87 | config BOARD_ROMSIZE_KB_8192 |
| 88 | bool |
| 89 | config BOARD_ROMSIZE_KB_16384 |
| 90 | bool |
| 91 | |
| 92 | choice |
| 93 | prompt "ROM chip size" |
Bin Meng | 7698d36 | 2015-01-06 22:14:16 +0800 | [diff] [blame] | 94 | depends on X86_RESET_VECTOR |
Bin Meng | 64542f4 | 2014-12-12 21:05:19 +0800 | [diff] [blame] | 95 | default UBOOT_ROMSIZE_KB_512 if BOARD_ROMSIZE_KB_512 |
| 96 | default UBOOT_ROMSIZE_KB_1024 if BOARD_ROMSIZE_KB_1024 |
| 97 | default UBOOT_ROMSIZE_KB_2048 if BOARD_ROMSIZE_KB_2048 |
| 98 | default UBOOT_ROMSIZE_KB_4096 if BOARD_ROMSIZE_KB_4096 |
| 99 | default UBOOT_ROMSIZE_KB_8192 if BOARD_ROMSIZE_KB_8192 |
| 100 | default UBOOT_ROMSIZE_KB_16384 if BOARD_ROMSIZE_KB_16384 |
| 101 | help |
| 102 | Select the size of the ROM chip you intend to flash U-Boot on. |
| 103 | |
| 104 | The build system will take care of creating a u-boot.rom file |
| 105 | of the matching size. |
| 106 | |
| 107 | config UBOOT_ROMSIZE_KB_512 |
| 108 | bool "512 KB" |
| 109 | help |
| 110 | Choose this option if you have a 512 KB ROM chip. |
| 111 | |
| 112 | config UBOOT_ROMSIZE_KB_1024 |
| 113 | bool "1024 KB (1 MB)" |
| 114 | help |
| 115 | Choose this option if you have a 1024 KB (1 MB) ROM chip. |
| 116 | |
| 117 | config UBOOT_ROMSIZE_KB_2048 |
| 118 | bool "2048 KB (2 MB)" |
| 119 | help |
| 120 | Choose this option if you have a 2048 KB (2 MB) ROM chip. |
| 121 | |
| 122 | config UBOOT_ROMSIZE_KB_4096 |
| 123 | bool "4096 KB (4 MB)" |
| 124 | help |
| 125 | Choose this option if you have a 4096 KB (4 MB) ROM chip. |
| 126 | |
| 127 | config UBOOT_ROMSIZE_KB_8192 |
| 128 | bool "8192 KB (8 MB)" |
| 129 | help |
| 130 | Choose this option if you have a 8192 KB (8 MB) ROM chip. |
| 131 | |
| 132 | config UBOOT_ROMSIZE_KB_16384 |
| 133 | bool "16384 KB (16 MB)" |
| 134 | help |
| 135 | Choose this option if you have a 16384 KB (16 MB) ROM chip. |
| 136 | |
| 137 | endchoice |
| 138 | |
| 139 | # Map the config names to an integer (KB). |
| 140 | config UBOOT_ROMSIZE_KB |
| 141 | int |
| 142 | default 512 if UBOOT_ROMSIZE_KB_512 |
| 143 | default 1024 if UBOOT_ROMSIZE_KB_1024 |
| 144 | default 2048 if UBOOT_ROMSIZE_KB_2048 |
| 145 | default 4096 if UBOOT_ROMSIZE_KB_4096 |
| 146 | default 8192 if UBOOT_ROMSIZE_KB_8192 |
| 147 | default 16384 if UBOOT_ROMSIZE_KB_16384 |
| 148 | |
| 149 | # Map the config names to a hex value (bytes). |
Simon Glass | fce7b27 | 2014-11-12 22:42:08 -0700 | [diff] [blame] | 150 | config ROM_SIZE |
| 151 | hex |
Bin Meng | 64542f4 | 2014-12-12 21:05:19 +0800 | [diff] [blame] | 152 | default 0x80000 if UBOOT_ROMSIZE_KB_512 |
| 153 | default 0x100000 if UBOOT_ROMSIZE_KB_1024 |
| 154 | default 0x200000 if UBOOT_ROMSIZE_KB_2048 |
| 155 | default 0x400000 if UBOOT_ROMSIZE_KB_4096 |
| 156 | default 0x800000 if UBOOT_ROMSIZE_KB_8192 |
| 157 | default 0xc00000 if UBOOT_ROMSIZE_KB_12288 |
| 158 | default 0x1000000 if UBOOT_ROMSIZE_KB_16384 |
Simon Glass | fce7b27 | 2014-11-12 22:42:08 -0700 | [diff] [blame] | 159 | |
| 160 | config HAVE_INTEL_ME |
| 161 | bool "Platform requires Intel Management Engine" |
| 162 | help |
| 163 | Newer higher-end devices have an Intel Management Engine (ME) |
| 164 | which is a very large binary blob (typically 1.5MB) which is |
| 165 | required for the platform to work. This enforces a particular |
| 166 | SPI flash format. You will need to supply the me.bin file in |
| 167 | your board directory. |
| 168 | |
Simon Glass | 65dd74a | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 169 | config X86_RAMTEST |
| 170 | bool "Perform a simple RAM test after SDRAM initialisation" |
| 171 | help |
| 172 | If there is something wrong with SDRAM then the platform will |
| 173 | often crash within U-Boot or the kernel. This option enables a |
| 174 | very simple RAM test that quickly checks whether the SDRAM seems |
| 175 | to work correctly. It is not exhaustive but can save time by |
| 176 | detecting obvious failures. |
| 177 | |
Simon Glass | 22465fc | 2014-11-14 20:56:30 -0700 | [diff] [blame] | 178 | config MARK_GRAPHICS_MEM_WRCOMB |
| 179 | bool "Mark graphics memory as write-combining." |
| 180 | default n |
| 181 | help |
| 182 | The graphics performance may increase if the graphics |
| 183 | memory is set as write-combining cache type. This option |
| 184 | enables marking the graphics memory as write-combining. |
| 185 | |
| 186 | menu "Display" |
| 187 | |
| 188 | config FRAMEBUFFER_SET_VESA_MODE |
| 189 | prompt "Set framebuffer graphics resolution" |
| 190 | bool |
| 191 | help |
| 192 | Set VESA/native framebuffer mode (needed for bootsplash and graphical framebuffer console) |
| 193 | |
| 194 | choice |
| 195 | prompt "framebuffer graphics resolution" |
| 196 | default FRAMEBUFFER_VESA_MODE_117 |
| 197 | depends on FRAMEBUFFER_SET_VESA_MODE |
| 198 | help |
| 199 | This option sets the resolution used for the coreboot framebuffer (and |
| 200 | bootsplash screen). |
| 201 | |
| 202 | config FRAMEBUFFER_VESA_MODE_100 |
| 203 | bool "640x400 256-color" |
| 204 | |
| 205 | config FRAMEBUFFER_VESA_MODE_101 |
| 206 | bool "640x480 256-color" |
| 207 | |
| 208 | config FRAMEBUFFER_VESA_MODE_102 |
| 209 | bool "800x600 16-color" |
| 210 | |
| 211 | config FRAMEBUFFER_VESA_MODE_103 |
| 212 | bool "800x600 256-color" |
| 213 | |
| 214 | config FRAMEBUFFER_VESA_MODE_104 |
| 215 | bool "1024x768 16-color" |
| 216 | |
| 217 | config FRAMEBUFFER_VESA_MODE_105 |
| 218 | bool "1024x7686 256-color" |
| 219 | |
| 220 | config FRAMEBUFFER_VESA_MODE_106 |
| 221 | bool "1280x1024 16-color" |
| 222 | |
| 223 | config FRAMEBUFFER_VESA_MODE_107 |
| 224 | bool "1280x1024 256-color" |
| 225 | |
| 226 | config FRAMEBUFFER_VESA_MODE_108 |
| 227 | bool "80x60 text" |
| 228 | |
| 229 | config FRAMEBUFFER_VESA_MODE_109 |
| 230 | bool "132x25 text" |
| 231 | |
| 232 | config FRAMEBUFFER_VESA_MODE_10A |
| 233 | bool "132x43 text" |
| 234 | |
| 235 | config FRAMEBUFFER_VESA_MODE_10B |
| 236 | bool "132x50 text" |
| 237 | |
| 238 | config FRAMEBUFFER_VESA_MODE_10C |
| 239 | bool "132x60 text" |
| 240 | |
| 241 | config FRAMEBUFFER_VESA_MODE_10D |
| 242 | bool "320x200 32k-color (1:5:5:5)" |
| 243 | |
| 244 | config FRAMEBUFFER_VESA_MODE_10E |
| 245 | bool "320x200 64k-color (5:6:5)" |
| 246 | |
| 247 | config FRAMEBUFFER_VESA_MODE_10F |
| 248 | bool "320x200 16.8M-color (8:8:8)" |
| 249 | |
| 250 | config FRAMEBUFFER_VESA_MODE_110 |
| 251 | bool "640x480 32k-color (1:5:5:5)" |
| 252 | |
| 253 | config FRAMEBUFFER_VESA_MODE_111 |
| 254 | bool "640x480 64k-color (5:6:5)" |
| 255 | |
| 256 | config FRAMEBUFFER_VESA_MODE_112 |
| 257 | bool "640x480 16.8M-color (8:8:8)" |
| 258 | |
| 259 | config FRAMEBUFFER_VESA_MODE_113 |
| 260 | bool "800x600 32k-color (1:5:5:5)" |
| 261 | |
| 262 | config FRAMEBUFFER_VESA_MODE_114 |
| 263 | bool "800x600 64k-color (5:6:5)" |
| 264 | |
| 265 | config FRAMEBUFFER_VESA_MODE_115 |
| 266 | bool "800x600 16.8M-color (8:8:8)" |
| 267 | |
| 268 | config FRAMEBUFFER_VESA_MODE_116 |
| 269 | bool "1024x768 32k-color (1:5:5:5)" |
| 270 | |
| 271 | config FRAMEBUFFER_VESA_MODE_117 |
| 272 | bool "1024x768 64k-color (5:6:5)" |
| 273 | |
| 274 | config FRAMEBUFFER_VESA_MODE_118 |
| 275 | bool "1024x768 16.8M-color (8:8:8)" |
| 276 | |
| 277 | config FRAMEBUFFER_VESA_MODE_119 |
| 278 | bool "1280x1024 32k-color (1:5:5:5)" |
| 279 | |
| 280 | config FRAMEBUFFER_VESA_MODE_11A |
| 281 | bool "1280x1024 64k-color (5:6:5)" |
| 282 | |
| 283 | config FRAMEBUFFER_VESA_MODE_11B |
| 284 | bool "1280x1024 16.8M-color (8:8:8)" |
| 285 | |
| 286 | config FRAMEBUFFER_VESA_MODE_USER |
| 287 | bool "Manually select VESA mode" |
| 288 | |
| 289 | endchoice |
| 290 | |
| 291 | # Map the config names to an integer (KB). |
| 292 | config FRAMEBUFFER_VESA_MODE |
| 293 | prompt "VESA mode" if FRAMEBUFFER_VESA_MODE_USER |
| 294 | hex |
| 295 | default 0x100 if FRAMEBUFFER_VESA_MODE_100 |
| 296 | default 0x101 if FRAMEBUFFER_VESA_MODE_101 |
| 297 | default 0x102 if FRAMEBUFFER_VESA_MODE_102 |
| 298 | default 0x103 if FRAMEBUFFER_VESA_MODE_103 |
| 299 | default 0x104 if FRAMEBUFFER_VESA_MODE_104 |
| 300 | default 0x105 if FRAMEBUFFER_VESA_MODE_105 |
| 301 | default 0x106 if FRAMEBUFFER_VESA_MODE_106 |
| 302 | default 0x107 if FRAMEBUFFER_VESA_MODE_107 |
| 303 | default 0x108 if FRAMEBUFFER_VESA_MODE_108 |
| 304 | default 0x109 if FRAMEBUFFER_VESA_MODE_109 |
| 305 | default 0x10A if FRAMEBUFFER_VESA_MODE_10A |
| 306 | default 0x10B if FRAMEBUFFER_VESA_MODE_10B |
| 307 | default 0x10C if FRAMEBUFFER_VESA_MODE_10C |
| 308 | default 0x10D if FRAMEBUFFER_VESA_MODE_10D |
| 309 | default 0x10E if FRAMEBUFFER_VESA_MODE_10E |
| 310 | default 0x10F if FRAMEBUFFER_VESA_MODE_10F |
| 311 | default 0x110 if FRAMEBUFFER_VESA_MODE_110 |
| 312 | default 0x111 if FRAMEBUFFER_VESA_MODE_111 |
| 313 | default 0x112 if FRAMEBUFFER_VESA_MODE_112 |
| 314 | default 0x113 if FRAMEBUFFER_VESA_MODE_113 |
| 315 | default 0x114 if FRAMEBUFFER_VESA_MODE_114 |
| 316 | default 0x115 if FRAMEBUFFER_VESA_MODE_115 |
| 317 | default 0x116 if FRAMEBUFFER_VESA_MODE_116 |
| 318 | default 0x117 if FRAMEBUFFER_VESA_MODE_117 |
| 319 | default 0x118 if FRAMEBUFFER_VESA_MODE_118 |
| 320 | default 0x119 if FRAMEBUFFER_VESA_MODE_119 |
| 321 | default 0x11A if FRAMEBUFFER_VESA_MODE_11A |
| 322 | default 0x11B if FRAMEBUFFER_VESA_MODE_11B |
| 323 | default 0x117 if FRAMEBUFFER_VESA_MODE_USER |
| 324 | |
| 325 | endmenu |
| 326 | |
Bin Meng | 3ba6a0f | 2015-01-06 22:14:14 +0800 | [diff] [blame] | 327 | config TSC_CALIBRATION_BYPASS |
| 328 | bool "Bypass Time-Stamp Counter (TSC) calibration" |
| 329 | default n |
| 330 | help |
| 331 | By default U-Boot automatically calibrates Time-Stamp Counter (TSC) |
| 332 | running frequency via Model-Specific Register (MSR) and Programmable |
| 333 | Interval Timer (PIT). If the calibration does not work on your board, |
| 334 | select this option and provide a hardcoded TSC running frequency with |
| 335 | CONFIG_TSC_FREQ_IN_MHZ below. |
| 336 | |
| 337 | Normally this option should be turned on in a simulation environment |
| 338 | like qemu. |
| 339 | |
| 340 | config TSC_FREQ_IN_MHZ |
| 341 | int "Time-Stamp Counter (TSC) running frequency in MHz" |
| 342 | depends on TSC_CALIBRATION_BYPASS |
| 343 | default 1000 |
| 344 | help |
| 345 | The running frequency in MHz of Time-Stamp Counter (TSC). |
| 346 | |
Bin Meng | 9d74f03 | 2015-01-06 22:14:18 +0800 | [diff] [blame^] | 347 | source "arch/x86/cpu/coreboot/Kconfig" |
| 348 | |
Simon Glass | 8ef0757 | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 349 | source "arch/x86/cpu/ivybridge/Kconfig" |
| 350 | |
Bin Meng | 58f542d | 2014-12-17 15:50:40 +0800 | [diff] [blame] | 351 | source "arch/x86/cpu/queensbay/Kconfig" |
| 352 | |
Simon Glass | fe5b9b4 | 2014-11-12 22:42:29 -0700 | [diff] [blame] | 353 | source "board/coreboot/coreboot/Kconfig" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 354 | |
Simon Glass | 8ef0757 | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 355 | source "board/google/chromebook_link/Kconfig" |
| 356 | |
Bin Meng | 58f542d | 2014-12-17 15:50:40 +0800 | [diff] [blame] | 357 | source "board/intel/crownbay/Kconfig" |
| 358 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 359 | endmenu |