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 | |
Simon Glass | 8156345 | 2015-03-06 13:19:02 -0700 | [diff] [blame] | 10 | config SYS_VSNPRINTF |
| 11 | default y |
| 12 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 13 | choice |
Bin Meng | 65c4ac0 | 2015-04-27 23:22:24 +0800 | [diff] [blame] | 14 | prompt "Mainboard vendor" |
| 15 | default VENDOR_COREBOOT |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 16 | |
Bin Meng | 65c4ac0 | 2015-04-27 23:22:24 +0800 | [diff] [blame] | 17 | config VENDOR_COREBOOT |
| 18 | bool "coreboot" |
Simon Glass | 8ef0757 | 2014-11-12 22:42:07 -0700 | [diff] [blame] | 19 | |
Bin Meng | 65c4ac0 | 2015-04-27 23:22:24 +0800 | [diff] [blame] | 20 | config VENDOR_GOOGLE |
| 21 | bool "Google" |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 22 | |
Bin Meng | 65c4ac0 | 2015-04-27 23:22:24 +0800 | [diff] [blame] | 23 | config VENDOR_INTEL |
| 24 | bool "Intel" |
Bin Meng | ef46bea | 2015-02-02 22:35:29 +0800 | [diff] [blame] | 25 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 26 | endchoice |
| 27 | |
Bin Meng | 65c4ac0 | 2015-04-27 23:22:24 +0800 | [diff] [blame] | 28 | # board-specific options below |
| 29 | source "board/coreboot/Kconfig" |
| 30 | source "board/google/Kconfig" |
| 31 | source "board/intel/Kconfig" |
| 32 | |
Bin Meng | 029194a | 2015-04-27 23:22:25 +0800 | [diff] [blame] | 33 | # platform-specific options below |
| 34 | source "arch/x86/cpu/baytrail/Kconfig" |
| 35 | source "arch/x86/cpu/coreboot/Kconfig" |
| 36 | source "arch/x86/cpu/ivybridge/Kconfig" |
| 37 | source "arch/x86/cpu/quark/Kconfig" |
| 38 | source "arch/x86/cpu/queensbay/Kconfig" |
| 39 | |
| 40 | # architecture-specific options below |
| 41 | |
Simon Glass | b724bd7 | 2015-02-11 16:32:59 -0700 | [diff] [blame] | 42 | config SYS_MALLOC_F_LEN |
| 43 | default 0x800 |
| 44 | |
Simon Glass | 70a09c6 | 2014-11-12 22:42:10 -0700 | [diff] [blame] | 45 | config RAMBASE |
| 46 | hex |
| 47 | default 0x100000 |
| 48 | |
Simon Glass | 70a09c6 | 2014-11-12 22:42:10 -0700 | [diff] [blame] | 49 | config XIP_ROM_SIZE |
| 50 | hex |
Bin Meng | 7698d36 | 2015-01-06 22:14:16 +0800 | [diff] [blame] | 51 | depends on X86_RESET_VECTOR |
Simon Glass | bbd43d6 | 2015-01-01 16:17:54 -0700 | [diff] [blame] | 52 | default ROM_SIZE |
Simon Glass | 70a09c6 | 2014-11-12 22:42:10 -0700 | [diff] [blame] | 53 | |
| 54 | config CPU_ADDR_BITS |
| 55 | int |
| 56 | default 36 |
| 57 | |
Simon Glass | 65dd74a | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 58 | config HPET_ADDRESS |
| 59 | hex |
| 60 | default 0xfed00000 if !HPET_ADDRESS_OVERRIDE |
| 61 | |
| 62 | config SMM_TSEG |
| 63 | bool |
| 64 | default n |
| 65 | |
| 66 | config SMM_TSEG_SIZE |
| 67 | hex |
| 68 | |
Bin Meng | 8cb20cc | 2015-01-06 22:14:15 +0800 | [diff] [blame] | 69 | config X86_RESET_VECTOR |
| 70 | bool |
| 71 | default n |
| 72 | |
| 73 | config SYS_X86_START16 |
| 74 | hex |
| 75 | depends on X86_RESET_VECTOR |
| 76 | default 0xfffff800 |
| 77 | |
Bin Meng | 64542f4 | 2014-12-12 21:05:19 +0800 | [diff] [blame] | 78 | config BOARD_ROMSIZE_KB_512 |
| 79 | bool |
| 80 | config BOARD_ROMSIZE_KB_1024 |
| 81 | bool |
| 82 | config BOARD_ROMSIZE_KB_2048 |
| 83 | bool |
| 84 | config BOARD_ROMSIZE_KB_4096 |
| 85 | bool |
| 86 | config BOARD_ROMSIZE_KB_8192 |
| 87 | bool |
| 88 | config BOARD_ROMSIZE_KB_16384 |
| 89 | bool |
| 90 | |
| 91 | choice |
| 92 | prompt "ROM chip size" |
Bin Meng | 7698d36 | 2015-01-06 22:14:16 +0800 | [diff] [blame] | 93 | depends on X86_RESET_VECTOR |
Bin Meng | 64542f4 | 2014-12-12 21:05:19 +0800 | [diff] [blame] | 94 | default UBOOT_ROMSIZE_KB_512 if BOARD_ROMSIZE_KB_512 |
| 95 | default UBOOT_ROMSIZE_KB_1024 if BOARD_ROMSIZE_KB_1024 |
| 96 | default UBOOT_ROMSIZE_KB_2048 if BOARD_ROMSIZE_KB_2048 |
| 97 | default UBOOT_ROMSIZE_KB_4096 if BOARD_ROMSIZE_KB_4096 |
| 98 | default UBOOT_ROMSIZE_KB_8192 if BOARD_ROMSIZE_KB_8192 |
| 99 | default UBOOT_ROMSIZE_KB_16384 if BOARD_ROMSIZE_KB_16384 |
| 100 | help |
| 101 | Select the size of the ROM chip you intend to flash U-Boot on. |
| 102 | |
| 103 | The build system will take care of creating a u-boot.rom file |
| 104 | of the matching size. |
| 105 | |
| 106 | config UBOOT_ROMSIZE_KB_512 |
| 107 | bool "512 KB" |
| 108 | help |
| 109 | Choose this option if you have a 512 KB ROM chip. |
| 110 | |
| 111 | config UBOOT_ROMSIZE_KB_1024 |
| 112 | bool "1024 KB (1 MB)" |
| 113 | help |
| 114 | Choose this option if you have a 1024 KB (1 MB) ROM chip. |
| 115 | |
| 116 | config UBOOT_ROMSIZE_KB_2048 |
| 117 | bool "2048 KB (2 MB)" |
| 118 | help |
| 119 | Choose this option if you have a 2048 KB (2 MB) ROM chip. |
| 120 | |
| 121 | config UBOOT_ROMSIZE_KB_4096 |
| 122 | bool "4096 KB (4 MB)" |
| 123 | help |
| 124 | Choose this option if you have a 4096 KB (4 MB) ROM chip. |
| 125 | |
| 126 | config UBOOT_ROMSIZE_KB_8192 |
| 127 | bool "8192 KB (8 MB)" |
| 128 | help |
| 129 | Choose this option if you have a 8192 KB (8 MB) ROM chip. |
| 130 | |
| 131 | config UBOOT_ROMSIZE_KB_16384 |
| 132 | bool "16384 KB (16 MB)" |
| 133 | help |
| 134 | Choose this option if you have a 16384 KB (16 MB) ROM chip. |
| 135 | |
| 136 | endchoice |
| 137 | |
| 138 | # Map the config names to an integer (KB). |
| 139 | config UBOOT_ROMSIZE_KB |
| 140 | int |
| 141 | default 512 if UBOOT_ROMSIZE_KB_512 |
| 142 | default 1024 if UBOOT_ROMSIZE_KB_1024 |
| 143 | default 2048 if UBOOT_ROMSIZE_KB_2048 |
| 144 | default 4096 if UBOOT_ROMSIZE_KB_4096 |
| 145 | default 8192 if UBOOT_ROMSIZE_KB_8192 |
| 146 | default 16384 if UBOOT_ROMSIZE_KB_16384 |
| 147 | |
| 148 | # Map the config names to a hex value (bytes). |
Simon Glass | fce7b27 | 2014-11-12 22:42:08 -0700 | [diff] [blame] | 149 | config ROM_SIZE |
| 150 | hex |
Bin Meng | 64542f4 | 2014-12-12 21:05:19 +0800 | [diff] [blame] | 151 | default 0x80000 if UBOOT_ROMSIZE_KB_512 |
| 152 | default 0x100000 if UBOOT_ROMSIZE_KB_1024 |
| 153 | default 0x200000 if UBOOT_ROMSIZE_KB_2048 |
| 154 | default 0x400000 if UBOOT_ROMSIZE_KB_4096 |
| 155 | default 0x800000 if UBOOT_ROMSIZE_KB_8192 |
| 156 | default 0xc00000 if UBOOT_ROMSIZE_KB_12288 |
| 157 | default 0x1000000 if UBOOT_ROMSIZE_KB_16384 |
Simon Glass | fce7b27 | 2014-11-12 22:42:08 -0700 | [diff] [blame] | 158 | |
| 159 | config HAVE_INTEL_ME |
| 160 | bool "Platform requires Intel Management Engine" |
| 161 | help |
| 162 | Newer higher-end devices have an Intel Management Engine (ME) |
| 163 | which is a very large binary blob (typically 1.5MB) which is |
| 164 | required for the platform to work. This enforces a particular |
| 165 | SPI flash format. You will need to supply the me.bin file in |
| 166 | your board directory. |
| 167 | |
Simon Glass | 65dd74a | 2014-11-12 22:42:28 -0700 | [diff] [blame] | 168 | config X86_RAMTEST |
| 169 | bool "Perform a simple RAM test after SDRAM initialisation" |
| 170 | help |
| 171 | If there is something wrong with SDRAM then the platform will |
| 172 | often crash within U-Boot or the kernel. This option enables a |
| 173 | very simple RAM test that quickly checks whether the SDRAM seems |
| 174 | to work correctly. It is not exhaustive but can save time by |
| 175 | detecting obvious failures. |
| 176 | |
Simon Glass | 22465fc | 2014-11-14 20:56:30 -0700 | [diff] [blame] | 177 | config MARK_GRAPHICS_MEM_WRCOMB |
Bin Meng | d99b901 | 2015-04-27 23:22:26 +0800 | [diff] [blame] | 178 | bool "Mark graphics memory as write-combining" |
Simon Glass | 22465fc | 2014-11-14 20:56:30 -0700 | [diff] [blame] | 179 | default n |
| 180 | help |
Bin Meng | d99b901 | 2015-04-27 23:22:26 +0800 | [diff] [blame] | 181 | The graphics performance may increase if the graphics |
| 182 | memory is set as write-combining cache type. This option |
| 183 | enables marking the graphics memory as write-combining. |
Simon Glass | 22465fc | 2014-11-14 20:56:30 -0700 | [diff] [blame] | 184 | |
| 185 | menu "Display" |
| 186 | |
| 187 | config FRAMEBUFFER_SET_VESA_MODE |
| 188 | prompt "Set framebuffer graphics resolution" |
| 189 | bool |
| 190 | help |
| 191 | Set VESA/native framebuffer mode (needed for bootsplash and graphical framebuffer console) |
| 192 | |
| 193 | choice |
| 194 | prompt "framebuffer graphics resolution" |
| 195 | default FRAMEBUFFER_VESA_MODE_117 |
| 196 | depends on FRAMEBUFFER_SET_VESA_MODE |
| 197 | help |
| 198 | This option sets the resolution used for the coreboot framebuffer (and |
| 199 | bootsplash screen). |
| 200 | |
| 201 | config FRAMEBUFFER_VESA_MODE_100 |
| 202 | bool "640x400 256-color" |
| 203 | |
| 204 | config FRAMEBUFFER_VESA_MODE_101 |
| 205 | bool "640x480 256-color" |
| 206 | |
| 207 | config FRAMEBUFFER_VESA_MODE_102 |
| 208 | bool "800x600 16-color" |
| 209 | |
| 210 | config FRAMEBUFFER_VESA_MODE_103 |
| 211 | bool "800x600 256-color" |
| 212 | |
| 213 | config FRAMEBUFFER_VESA_MODE_104 |
| 214 | bool "1024x768 16-color" |
| 215 | |
| 216 | config FRAMEBUFFER_VESA_MODE_105 |
| 217 | bool "1024x7686 256-color" |
| 218 | |
| 219 | config FRAMEBUFFER_VESA_MODE_106 |
| 220 | bool "1280x1024 16-color" |
| 221 | |
| 222 | config FRAMEBUFFER_VESA_MODE_107 |
| 223 | bool "1280x1024 256-color" |
| 224 | |
| 225 | config FRAMEBUFFER_VESA_MODE_108 |
| 226 | bool "80x60 text" |
| 227 | |
| 228 | config FRAMEBUFFER_VESA_MODE_109 |
| 229 | bool "132x25 text" |
| 230 | |
| 231 | config FRAMEBUFFER_VESA_MODE_10A |
| 232 | bool "132x43 text" |
| 233 | |
| 234 | config FRAMEBUFFER_VESA_MODE_10B |
| 235 | bool "132x50 text" |
| 236 | |
| 237 | config FRAMEBUFFER_VESA_MODE_10C |
| 238 | bool "132x60 text" |
| 239 | |
| 240 | config FRAMEBUFFER_VESA_MODE_10D |
| 241 | bool "320x200 32k-color (1:5:5:5)" |
| 242 | |
| 243 | config FRAMEBUFFER_VESA_MODE_10E |
| 244 | bool "320x200 64k-color (5:6:5)" |
| 245 | |
| 246 | config FRAMEBUFFER_VESA_MODE_10F |
| 247 | bool "320x200 16.8M-color (8:8:8)" |
| 248 | |
| 249 | config FRAMEBUFFER_VESA_MODE_110 |
| 250 | bool "640x480 32k-color (1:5:5:5)" |
| 251 | |
| 252 | config FRAMEBUFFER_VESA_MODE_111 |
| 253 | bool "640x480 64k-color (5:6:5)" |
| 254 | |
| 255 | config FRAMEBUFFER_VESA_MODE_112 |
| 256 | bool "640x480 16.8M-color (8:8:8)" |
| 257 | |
| 258 | config FRAMEBUFFER_VESA_MODE_113 |
| 259 | bool "800x600 32k-color (1:5:5:5)" |
| 260 | |
| 261 | config FRAMEBUFFER_VESA_MODE_114 |
| 262 | bool "800x600 64k-color (5:6:5)" |
| 263 | |
| 264 | config FRAMEBUFFER_VESA_MODE_115 |
| 265 | bool "800x600 16.8M-color (8:8:8)" |
| 266 | |
| 267 | config FRAMEBUFFER_VESA_MODE_116 |
| 268 | bool "1024x768 32k-color (1:5:5:5)" |
| 269 | |
| 270 | config FRAMEBUFFER_VESA_MODE_117 |
| 271 | bool "1024x768 64k-color (5:6:5)" |
| 272 | |
| 273 | config FRAMEBUFFER_VESA_MODE_118 |
| 274 | bool "1024x768 16.8M-color (8:8:8)" |
| 275 | |
| 276 | config FRAMEBUFFER_VESA_MODE_119 |
| 277 | bool "1280x1024 32k-color (1:5:5:5)" |
| 278 | |
| 279 | config FRAMEBUFFER_VESA_MODE_11A |
| 280 | bool "1280x1024 64k-color (5:6:5)" |
| 281 | |
| 282 | config FRAMEBUFFER_VESA_MODE_11B |
| 283 | bool "1280x1024 16.8M-color (8:8:8)" |
| 284 | |
| 285 | config FRAMEBUFFER_VESA_MODE_USER |
| 286 | bool "Manually select VESA mode" |
| 287 | |
| 288 | endchoice |
| 289 | |
| 290 | # Map the config names to an integer (KB). |
| 291 | config FRAMEBUFFER_VESA_MODE |
| 292 | prompt "VESA mode" if FRAMEBUFFER_VESA_MODE_USER |
| 293 | hex |
| 294 | default 0x100 if FRAMEBUFFER_VESA_MODE_100 |
| 295 | default 0x101 if FRAMEBUFFER_VESA_MODE_101 |
| 296 | default 0x102 if FRAMEBUFFER_VESA_MODE_102 |
| 297 | default 0x103 if FRAMEBUFFER_VESA_MODE_103 |
| 298 | default 0x104 if FRAMEBUFFER_VESA_MODE_104 |
| 299 | default 0x105 if FRAMEBUFFER_VESA_MODE_105 |
| 300 | default 0x106 if FRAMEBUFFER_VESA_MODE_106 |
| 301 | default 0x107 if FRAMEBUFFER_VESA_MODE_107 |
| 302 | default 0x108 if FRAMEBUFFER_VESA_MODE_108 |
| 303 | default 0x109 if FRAMEBUFFER_VESA_MODE_109 |
| 304 | default 0x10A if FRAMEBUFFER_VESA_MODE_10A |
| 305 | default 0x10B if FRAMEBUFFER_VESA_MODE_10B |
| 306 | default 0x10C if FRAMEBUFFER_VESA_MODE_10C |
| 307 | default 0x10D if FRAMEBUFFER_VESA_MODE_10D |
| 308 | default 0x10E if FRAMEBUFFER_VESA_MODE_10E |
| 309 | default 0x10F if FRAMEBUFFER_VESA_MODE_10F |
| 310 | default 0x110 if FRAMEBUFFER_VESA_MODE_110 |
| 311 | default 0x111 if FRAMEBUFFER_VESA_MODE_111 |
| 312 | default 0x112 if FRAMEBUFFER_VESA_MODE_112 |
| 313 | default 0x113 if FRAMEBUFFER_VESA_MODE_113 |
| 314 | default 0x114 if FRAMEBUFFER_VESA_MODE_114 |
| 315 | default 0x115 if FRAMEBUFFER_VESA_MODE_115 |
| 316 | default 0x116 if FRAMEBUFFER_VESA_MODE_116 |
| 317 | default 0x117 if FRAMEBUFFER_VESA_MODE_117 |
| 318 | default 0x118 if FRAMEBUFFER_VESA_MODE_118 |
| 319 | default 0x119 if FRAMEBUFFER_VESA_MODE_119 |
| 320 | default 0x11A if FRAMEBUFFER_VESA_MODE_11A |
| 321 | default 0x11B if FRAMEBUFFER_VESA_MODE_11B |
| 322 | default 0x117 if FRAMEBUFFER_VESA_MODE_USER |
| 323 | |
| 324 | endmenu |
| 325 | |
Simon Glass | 8ce24cd | 2015-01-27 22:13:41 -0700 | [diff] [blame] | 326 | config HAVE_FSP |
| 327 | bool "Add an Firmware Support Package binary" |
| 328 | help |
| 329 | Select this option to add an Firmware Support Package binary to |
| 330 | the resulting U-Boot image. It is a binary blob which U-Boot uses |
| 331 | to set up SDRAM and other chipset specific initialization. |
| 332 | |
| 333 | Note: Without this binary U-Boot will not be able to set up its |
| 334 | SDRAM so will not boot. |
| 335 | |
| 336 | config FSP_FILE |
| 337 | string "Firmware Support Package binary filename" |
| 338 | depends on HAVE_FSP |
| 339 | default "fsp.bin" |
| 340 | help |
| 341 | The filename of the file to use as Firmware Support Package binary |
| 342 | in the board directory. |
| 343 | |
| 344 | config FSP_ADDR |
| 345 | hex "Firmware Support Package binary location" |
| 346 | depends on HAVE_FSP |
| 347 | default 0xfffc0000 |
| 348 | help |
| 349 | FSP is not Position Independent Code (PIC) and the whole FSP has to |
| 350 | be rebased if it is placed at a location which is different from the |
| 351 | perferred base address specified during the FSP build. Use Intel's |
| 352 | Binary Configuration Tool (BCT) to do the rebase. |
| 353 | |
| 354 | The default base address of 0xfffc0000 indicates that the binary must |
| 355 | be located at offset 0xc0000 from the beginning of a 1MB flash device. |
| 356 | |
| 357 | config FSP_TEMP_RAM_ADDR |
| 358 | hex |
| 359 | default 0x2000000 |
| 360 | help |
| 361 | Stack top address which is used in FspInit after DRAM is ready and |
| 362 | CAR is disabled. |
| 363 | |
Simon Glass | 45b5a37 | 2015-04-29 22:25:59 -0600 | [diff] [blame] | 364 | config MAX_CPUS |
| 365 | int "Maximum number of CPUs permitted" |
| 366 | default 4 |
| 367 | help |
| 368 | When using multi-CPU chips it is possible for U-Boot to start up |
| 369 | more than one CPU. The stack memory used by all of these CPUs is |
| 370 | pre-allocated so at present U-Boot wants to know the maximum |
| 371 | number of CPUs that may be present. Set this to at least as high |
| 372 | as the number of CPUs in your system (it uses about 4KB of RAM for |
| 373 | each CPU). |
| 374 | |
| 375 | config SMP |
| 376 | bool "Enable Symmetric Multiprocessing" |
| 377 | default n |
| 378 | help |
| 379 | Enable use of more than one CPU in U-Boot and the Operating System |
| 380 | when loaded. Each CPU will be started up and information can be |
| 381 | obtained using the 'cpu' command. If this option is disabled, then |
| 382 | only one CPU will be enabled regardless of the number of CPUs |
| 383 | available. |
| 384 | |
| 385 | config AP_STACK_SIZE |
| 386 | hex |
| 387 | default 0x1000 |
| 388 | help |
| 389 | Each additional CPU started by U-Boot requires its own stack. This |
| 390 | option sets the stack size used by each CPU and directly affects |
| 391 | the memory used by this initialisation process. Typically 4KB is |
| 392 | enough space. |
| 393 | |
Bin Meng | f56aeaa | 2015-02-05 23:42:20 +0800 | [diff] [blame] | 394 | config TSC_CALIBRATION_BYPASS |
| 395 | bool "Bypass Time-Stamp Counter (TSC) calibration" |
| 396 | default n |
| 397 | help |
| 398 | By default U-Boot automatically calibrates Time-Stamp Counter (TSC) |
| 399 | running frequency via Model-Specific Register (MSR) and Programmable |
| 400 | Interval Timer (PIT). If the calibration does not work on your board, |
| 401 | select this option and provide a hardcoded TSC running frequency with |
| 402 | CONFIG_TSC_FREQ_IN_MHZ below. |
| 403 | |
| 404 | Normally this option should be turned on in a simulation environment |
| 405 | like qemu. |
| 406 | |
| 407 | config TSC_FREQ_IN_MHZ |
| 408 | int "Time-Stamp Counter (TSC) running frequency in MHz" |
| 409 | depends on TSC_CALIBRATION_BYPASS |
| 410 | default 1000 |
| 411 | help |
| 412 | The running frequency in MHz of Time-Stamp Counter (TSC). |
| 413 | |
Bin Meng | b5b6b01 | 2015-04-24 18:10:05 +0800 | [diff] [blame] | 414 | menu "System tables" |
| 415 | |
| 416 | config GENERATE_PIRQ_TABLE |
| 417 | bool "Generate a PIRQ table" |
| 418 | default n |
| 419 | help |
| 420 | Generate a PIRQ routing table for this board. The PIRQ routing table |
| 421 | is generated by U-Boot in the system memory from 0xf0000 to 0xfffff |
| 422 | at every 16-byte boundary with a PCI IRQ routing signature ("$PIR"). |
| 423 | It specifies the interrupt router information as well how all the PCI |
| 424 | devices' interrupt pins are wired to PIRQs. |
| 425 | |
Simon Glass | 6388e35 | 2015-04-28 20:25:10 -0600 | [diff] [blame] | 426 | config GENERATE_SFI_TABLE |
| 427 | bool "Generate a SFI (Simple Firmware Interface) table" |
| 428 | help |
| 429 | The Simple Firmware Interface (SFI) provides a lightweight method |
| 430 | for platform firmware to pass information to the operating system |
| 431 | via static tables in memory. Kernel SFI support is required to |
| 432 | boot on SFI-only platforms. If you have ACPI tables then these are |
| 433 | used instead. |
| 434 | |
| 435 | U-Boot writes this table in write_sfi_table() just before booting |
| 436 | the OS. |
| 437 | |
| 438 | For more information, see http://simplefirmware.org |
| 439 | |
Bin Meng | b5b6b01 | 2015-04-24 18:10:05 +0800 | [diff] [blame] | 440 | endmenu |
| 441 | |
| 442 | config MAX_PIRQ_LINKS |
| 443 | int |
| 444 | default 8 |
| 445 | help |
| 446 | This variable specifies the number of PIRQ interrupt links which are |
| 447 | routable. On most older chipsets, this is 4, PIRQA through PIRQD. |
| 448 | Some newer chipsets offer more than four links, commonly up to PIRQH. |
| 449 | |
| 450 | config IRQ_SLOT_COUNT |
| 451 | int |
| 452 | default 128 |
| 453 | help |
| 454 | U-Boot can support up to 254 IRQ slot info in the PIRQ routing table |
| 455 | which in turns forms a table of exact 4KiB. The default value 128 |
| 456 | should be enough for most boards. If this does not fit your board, |
| 457 | change it according to your needs. |
| 458 | |
Simon Glass | 2d934e5 | 2015-01-27 22:13:33 -0700 | [diff] [blame] | 459 | config PCIE_ECAM_BASE |
| 460 | hex |
Bin Meng | ba877ef | 2015-02-02 21:25:09 +0800 | [diff] [blame] | 461 | default 0xe0000000 |
Simon Glass | 2d934e5 | 2015-01-27 22:13:33 -0700 | [diff] [blame] | 462 | help |
| 463 | This is the memory-mapped address of PCI configuration space, which |
| 464 | is only available through the Enhanced Configuration Access |
| 465 | Mechanism (ECAM) with PCI Express. It can be set up almost |
| 466 | anywhere. Before it is set up, it is possible to access PCI |
| 467 | configuration space through I/O access, but memory access is more |
| 468 | convenient. Using this, PCI can be scanned and configured. This |
| 469 | should be set to a region that does not conflict with memory |
| 470 | assigned to PCI devices - i.e. the memory and prefetch regions, as |
| 471 | passed to pci_set_region(). |
| 472 | |
Simon Glass | ee2b243 | 2015-03-02 17:04:37 -0700 | [diff] [blame] | 473 | config BOOTSTAGE |
| 474 | default y |
| 475 | |
| 476 | config BOOTSTAGE_REPORT |
| 477 | default y |
| 478 | |
| 479 | config CMD_BOOTSTAGE |
| 480 | default y |
| 481 | |
Masahiro Yamada | dd84058 | 2014-07-30 14:08:14 +0900 | [diff] [blame] | 482 | endmenu |