blob: a1c18d26e1d186c62034197c70a275e16a38bf4c [file] [log] [blame]
Masahiro Yamadadd840582014-07-30 14:08:14 +09001menu "x86 architecture"
2 depends on X86
3
4config SYS_ARCH
Masahiro Yamadadd840582014-07-30 14:08:14 +09005 default "x86"
6
Masahiro Yamadadd840582014-07-30 14:08:14 +09007choice
Simon Glassa66ad672017-01-16 07:03:43 -07008 prompt "Run U-Boot in 32/64-bit mode"
9 default X86_RUN_32BIT
10 help
11 U-Boot can be built as a 32-bit binary which runs in 32-bit mode
12 even on 64-bit machines. In this case SPL is not used, and U-Boot
13 runs directly from the reset vector (via 16-bit start-up).
14
15 Alternatively it can be run as a 64-bit binary, thus requiring a
16 64-bit machine. In this case SPL runs in 32-bit mode (via 16-bit
17 start-up) then jumps to U-Boot in 64-bit mode.
18
19 For now, 32-bit mode is recommended, as 64-bit is still
20 experimental and is missing a lot of features.
21
22config X86_RUN_32BIT
23 bool "32-bit"
24 help
25 Build U-Boot as a 32-bit binary with no SPL. This is the currently
26 supported normal setup. U-Boot will stay in 32-bit mode even on
27 64-bit machines. When booting a 64-bit kernel, U-Boot will switch
28 to 64-bit just before starting the kernel. Only the bottom 4GB of
29 memory can be accessed through normal means, although
30 arch_phys_memset() can be used for basic access to other memory.
31
32config X86_RUN_64BIT
33 bool "64-bit"
34 select X86_64
35 select SUPPORT_SPL
36 select SPL
37 select SPL_SEPARATE_BSS
38 help
39 Build U-Boot as a 64-bit binary with a 32-bit SPL. This is
40 experimental and many features are missing. U-Boot SPL starts up,
41 runs through the 16-bit and 32-bit init, then switches to 64-bit
42 mode and jumps to U-Boot proper.
43
44endchoice
45
46config X86_64
47 bool
48
49config SPL_X86_64
50 bool
51 depends on SPL
52
53choice
Bin Meng65c4ac02015-04-27 23:22:24 +080054 prompt "Mainboard vendor"
Bin Meng99a309f2015-05-07 21:34:09 +080055 default VENDOR_EMULATION
Masahiro Yamadadd840582014-07-30 14:08:14 +090056
George McCollister215099a2016-06-21 12:07:33 -050057config VENDOR_ADVANTECH
58 bool "advantech"
59
Stefan Roese82ceba22016-03-16 08:48:21 +010060config VENDOR_CONGATEC
61 bool "congatec"
62
Bin Meng65c4ac02015-04-27 23:22:24 +080063config VENDOR_COREBOOT
64 bool "coreboot"
Simon Glass8ef07572014-11-12 22:42:07 -070065
Stefan Roeseb1ad6c62016-08-15 13:50:49 +020066config VENDOR_DFI
67 bool "dfi"
68
Ben Stoltz3dcdd172015-08-04 12:33:46 -060069config VENDOR_EFI
70 bool "efi"
71
Bin Menga65b25d2015-05-07 21:34:08 +080072config VENDOR_EMULATION
73 bool "emulation"
74
Bin Meng65c4ac02015-04-27 23:22:24 +080075config VENDOR_GOOGLE
76 bool "Google"
Masahiro Yamadadd840582014-07-30 14:08:14 +090077
Bin Meng65c4ac02015-04-27 23:22:24 +080078config VENDOR_INTEL
79 bool "Intel"
Bin Mengef46bea2015-02-02 22:35:29 +080080
Masahiro Yamadadd840582014-07-30 14:08:14 +090081endchoice
82
Andy Shevchenko7a96fd82017-02-17 16:48:58 +030083# subarchitectures-specific options below
84config INTEL_MID
85 bool "Intel MID platform support"
Felipe Balbibb416462017-04-01 16:21:33 +030086 select REGMAP
87 select SYSCON
Andy Shevchenko7a96fd82017-02-17 16:48:58 +030088 help
89 Select to build a U-Boot capable of supporting Intel MID
90 (Mobile Internet Device) platform systems which do not have
91 the PCI legacy interfaces.
92
93 If you are building for a PC class system say N here.
94
95 Intel MID platforms are based on an Intel processor and
96 chipset which consume less power than most of the x86
97 derivatives.
98
Bin Meng65c4ac02015-04-27 23:22:24 +080099# board-specific options below
George McCollister215099a2016-06-21 12:07:33 -0500100source "board/advantech/Kconfig"
Stefan Roese82ceba22016-03-16 08:48:21 +0100101source "board/congatec/Kconfig"
Bin Meng65c4ac02015-04-27 23:22:24 +0800102source "board/coreboot/Kconfig"
Stefan Roeseb1ad6c62016-08-15 13:50:49 +0200103source "board/dfi/Kconfig"
Ben Stoltz3e9aa322015-08-04 12:33:47 -0600104source "board/efi/Kconfig"
Bin Menga65b25d2015-05-07 21:34:08 +0800105source "board/emulation/Kconfig"
Bin Meng65c4ac02015-04-27 23:22:24 +0800106source "board/google/Kconfig"
107source "board/intel/Kconfig"
108
Bin Meng029194a2015-04-27 23:22:25 +0800109# platform-specific options below
110source "arch/x86/cpu/baytrail/Kconfig"
Bin Mengde9ac9a2017-08-15 22:41:58 -0700111source "arch/x86/cpu/braswell/Kconfig"
Simon Glass2f3f4772016-03-11 22:07:18 -0700112source "arch/x86/cpu/broadwell/Kconfig"
Bin Meng029194a2015-04-27 23:22:25 +0800113source "arch/x86/cpu/coreboot/Kconfig"
114source "arch/x86/cpu/ivybridge/Kconfig"
Bin Meng4f1dacd2018-06-12 08:36:16 -0700115source "arch/x86/cpu/efi/Kconfig"
Bin Menga65b25d2015-05-07 21:34:08 +0800116source "arch/x86/cpu/qemu/Kconfig"
Bin Meng029194a2015-04-27 23:22:25 +0800117source "arch/x86/cpu/quark/Kconfig"
118source "arch/x86/cpu/queensbay/Kconfig"
Felipe Balbie71de542017-07-06 14:41:52 +0300119source "arch/x86/cpu/tangier/Kconfig"
Bin Meng029194a2015-04-27 23:22:25 +0800120
121# architecture-specific options below
122
Simon Glassa2196392016-05-01 11:35:52 -0600123config AHCI
124 default y
125
Simon Glassb724bd72015-02-11 16:32:59 -0700126config SYS_MALLOC_F_LEN
127 default 0x800
128
Simon Glass70a09c62014-11-12 22:42:10 -0700129config RAMBASE
130 hex
131 default 0x100000
132
Simon Glass70a09c62014-11-12 22:42:10 -0700133config XIP_ROM_SIZE
134 hex
Bin Meng7698d362015-01-06 22:14:16 +0800135 depends on X86_RESET_VECTOR
Simon Glassbbd43d62015-01-01 16:17:54 -0700136 default ROM_SIZE
Simon Glass70a09c62014-11-12 22:42:10 -0700137
138config CPU_ADDR_BITS
139 int
140 default 36
141
Simon Glass65dd74a2014-11-12 22:42:28 -0700142config HPET_ADDRESS
143 hex
144 default 0xfed00000 if !HPET_ADDRESS_OVERRIDE
145
146config SMM_TSEG
147 bool
148 default n
149
150config SMM_TSEG_SIZE
151 hex
152
Bin Meng8cb20cc2015-01-06 22:14:15 +0800153config X86_RESET_VECTOR
154 bool
155 default n
Masahiro Yamadad6a0c782017-10-17 13:42:44 +0900156 select BINMAN
Bin Meng8cb20cc2015-01-06 22:14:15 +0800157
Simon Glass13f1dc62017-01-16 07:03:44 -0700158# The following options control where the 16-bit and 32-bit init lies
159# If SPL is enabled then it normally holds this init code, and U-Boot proper
160# is normally a 64-bit build.
161#
162# The 16-bit init refers to the reset vector and the small amount of code to
163# get the processor into 32-bit mode. It may be in SPL or in U-Boot proper,
164# or missing altogether if U-Boot is started from EFI or coreboot.
165#
166# The 32-bit init refers to processor init, running binary blobs including
167# FSP, setting up interrupts and anything else that needs to be done in
168# 32-bit code. It is normally in the same place as 16-bit init if that is
169# enabled (i.e. they are both in SPL, or both in U-Boot proper).
170config X86_16BIT_INIT
171 bool
172 depends on X86_RESET_VECTOR
173 default y if X86_RESET_VECTOR && !SPL
174 help
175 This is enabled when 16-bit init is in U-Boot proper
176
177config SPL_X86_16BIT_INIT
178 bool
179 depends on X86_RESET_VECTOR
180 default y if X86_RESET_VECTOR && SPL
181 help
182 This is enabled when 16-bit init is in SPL
183
184config X86_32BIT_INIT
185 bool
186 depends on X86_RESET_VECTOR
187 default y if X86_RESET_VECTOR && !SPL
188 help
189 This is enabled when 32-bit init is in U-Boot proper
190
191config SPL_X86_32BIT_INIT
192 bool
193 depends on X86_RESET_VECTOR
194 default y if X86_RESET_VECTOR && SPL
195 help
196 This is enabled when 32-bit init is in SPL
197
Bin Meng343fb992015-06-07 11:33:12 +0800198config RESET_SEG_START
199 hex
200 depends on X86_RESET_VECTOR
201 default 0xffff0000
202
203config RESET_SEG_SIZE
204 hex
205 depends on X86_RESET_VECTOR
206 default 0x10000
207
208config RESET_VEC_LOC
209 hex
210 depends on X86_RESET_VECTOR
211 default 0xfffffff0
212
Bin Meng8cb20cc2015-01-06 22:14:15 +0800213config SYS_X86_START16
214 hex
215 depends on X86_RESET_VECTOR
216 default 0xfffff800
217
Andy Shevchenko446d4e02017-02-05 16:52:00 +0300218config X86_LOAD_FROM_32_BIT
219 bool "Boot from a 32-bit program"
220 help
221 Define this to boot U-Boot from a 32-bit program which sets
222 the GDT differently. This can be used to boot directly from
223 any stage of coreboot, for example, bypassing the normal
224 payload-loading feature.
225
Bin Meng64542f42014-12-12 21:05:19 +0800226config BOARD_ROMSIZE_KB_512
227 bool
228config BOARD_ROMSIZE_KB_1024
229 bool
230config BOARD_ROMSIZE_KB_2048
231 bool
232config BOARD_ROMSIZE_KB_4096
233 bool
234config BOARD_ROMSIZE_KB_8192
235 bool
236config BOARD_ROMSIZE_KB_16384
237 bool
238
239choice
240 prompt "ROM chip size"
Bin Meng7698d362015-01-06 22:14:16 +0800241 depends on X86_RESET_VECTOR
Bin Meng64542f42014-12-12 21:05:19 +0800242 default UBOOT_ROMSIZE_KB_512 if BOARD_ROMSIZE_KB_512
243 default UBOOT_ROMSIZE_KB_1024 if BOARD_ROMSIZE_KB_1024
244 default UBOOT_ROMSIZE_KB_2048 if BOARD_ROMSIZE_KB_2048
245 default UBOOT_ROMSIZE_KB_4096 if BOARD_ROMSIZE_KB_4096
246 default UBOOT_ROMSIZE_KB_8192 if BOARD_ROMSIZE_KB_8192
247 default UBOOT_ROMSIZE_KB_16384 if BOARD_ROMSIZE_KB_16384
248 help
249 Select the size of the ROM chip you intend to flash U-Boot on.
250
251 The build system will take care of creating a u-boot.rom file
252 of the matching size.
253
254config UBOOT_ROMSIZE_KB_512
255 bool "512 KB"
256 help
257 Choose this option if you have a 512 KB ROM chip.
258
259config UBOOT_ROMSIZE_KB_1024
260 bool "1024 KB (1 MB)"
261 help
262 Choose this option if you have a 1024 KB (1 MB) ROM chip.
263
264config UBOOT_ROMSIZE_KB_2048
265 bool "2048 KB (2 MB)"
266 help
267 Choose this option if you have a 2048 KB (2 MB) ROM chip.
268
269config UBOOT_ROMSIZE_KB_4096
270 bool "4096 KB (4 MB)"
271 help
272 Choose this option if you have a 4096 KB (4 MB) ROM chip.
273
274config UBOOT_ROMSIZE_KB_8192
275 bool "8192 KB (8 MB)"
276 help
277 Choose this option if you have a 8192 KB (8 MB) ROM chip.
278
279config UBOOT_ROMSIZE_KB_16384
280 bool "16384 KB (16 MB)"
281 help
282 Choose this option if you have a 16384 KB (16 MB) ROM chip.
283
284endchoice
285
286# Map the config names to an integer (KB).
287config UBOOT_ROMSIZE_KB
288 int
289 default 512 if UBOOT_ROMSIZE_KB_512
290 default 1024 if UBOOT_ROMSIZE_KB_1024
291 default 2048 if UBOOT_ROMSIZE_KB_2048
292 default 4096 if UBOOT_ROMSIZE_KB_4096
293 default 8192 if UBOOT_ROMSIZE_KB_8192
294 default 16384 if UBOOT_ROMSIZE_KB_16384
295
296# Map the config names to a hex value (bytes).
Simon Glassfce7b272014-11-12 22:42:08 -0700297config ROM_SIZE
298 hex
Bin Meng64542f42014-12-12 21:05:19 +0800299 default 0x80000 if UBOOT_ROMSIZE_KB_512
300 default 0x100000 if UBOOT_ROMSIZE_KB_1024
301 default 0x200000 if UBOOT_ROMSIZE_KB_2048
302 default 0x400000 if UBOOT_ROMSIZE_KB_4096
303 default 0x800000 if UBOOT_ROMSIZE_KB_8192
304 default 0xc00000 if UBOOT_ROMSIZE_KB_12288
305 default 0x1000000 if UBOOT_ROMSIZE_KB_16384
Simon Glassfce7b272014-11-12 22:42:08 -0700306
307config HAVE_INTEL_ME
308 bool "Platform requires Intel Management Engine"
309 help
310 Newer higher-end devices have an Intel Management Engine (ME)
311 which is a very large binary blob (typically 1.5MB) which is
312 required for the platform to work. This enforces a particular
313 SPI flash format. You will need to supply the me.bin file in
314 your board directory.
315
Simon Glass65dd74a2014-11-12 22:42:28 -0700316config X86_RAMTEST
317 bool "Perform a simple RAM test after SDRAM initialisation"
318 help
319 If there is something wrong with SDRAM then the platform will
320 often crash within U-Boot or the kernel. This option enables a
321 very simple RAM test that quickly checks whether the SDRAM seems
322 to work correctly. It is not exhaustive but can save time by
323 detecting obvious failures.
324
Stefan Roese3dc0f842017-03-30 12:58:10 +0200325config FLASH_DESCRIPTOR_FILE
326 string "Flash descriptor binary filename"
327 depends on HAVE_INTEL_ME
328 default "descriptor.bin"
329 help
330 The filename of the file to use as flash descriptor in the
331 board directory.
332
333config INTEL_ME_FILE
334 string "Intel Management Engine binary filename"
335 depends on HAVE_INTEL_ME
336 default "me.bin"
337 help
338 The filename of the file to use as Intel Management Engine in the
339 board directory.
340
Simon Glass8ce24cd2015-01-27 22:13:41 -0700341config HAVE_FSP
342 bool "Add an Firmware Support Package binary"
Simon Glasse49ccea2015-08-04 12:34:00 -0600343 depends on !EFI
Simon Glass8ce24cd2015-01-27 22:13:41 -0700344 help
345 Select this option to add an Firmware Support Package binary to
346 the resulting U-Boot image. It is a binary blob which U-Boot uses
347 to set up SDRAM and other chipset specific initialization.
348
349 Note: Without this binary U-Boot will not be able to set up its
350 SDRAM so will not boot.
351
352config FSP_FILE
353 string "Firmware Support Package binary filename"
354 depends on HAVE_FSP
355 default "fsp.bin"
356 help
357 The filename of the file to use as Firmware Support Package binary
358 in the board directory.
359
360config FSP_ADDR
361 hex "Firmware Support Package binary location"
362 depends on HAVE_FSP
363 default 0xfffc0000
364 help
365 FSP is not Position Independent Code (PIC) and the whole FSP has to
366 be rebased if it is placed at a location which is different from the
367 perferred base address specified during the FSP build. Use Intel's
368 Binary Configuration Tool (BCT) to do the rebase.
369
370 The default base address of 0xfffc0000 indicates that the binary must
371 be located at offset 0xc0000 from the beginning of a 1MB flash device.
372
373config FSP_TEMP_RAM_ADDR
374 hex
Bin Mengd04e30b2015-06-01 21:07:23 +0800375 depends on HAVE_FSP
Simon Glass8ce24cd2015-01-27 22:13:41 -0700376 default 0x2000000
377 help
Bin Meng48aa6c22015-08-20 06:40:20 -0700378 Stack top address which is used in fsp_init() after DRAM is ready and
Simon Glass8ce24cd2015-01-27 22:13:41 -0700379 CAR is disabled.
380
Bin Meng57b10f52015-08-20 06:40:19 -0700381config FSP_SYS_MALLOC_F_LEN
382 hex
383 depends on HAVE_FSP
384 default 0x100000
385 help
386 Additional size of malloc() pool before relocation.
387
Bin Meng3340f2c2015-12-10 22:03:01 -0800388config FSP_USE_UPD
389 bool
390 depends on HAVE_FSP
391 default y
392 help
393 Most FSPs use UPD data region for some FSP customization. But there
394 are still some FSPs that might not even have UPD. For such FSPs,
395 override this to n in their platform Kconfig files.
396
Bin Mengdc5be502016-02-17 00:16:23 -0800397config FSP_BROKEN_HOB
398 bool
399 depends on HAVE_FSP
400 help
401 Indicate some buggy FSPs that does not report memory used by FSP
402 itself as reserved in the resource descriptor HOB. Select this to
403 tell U-Boot to do some additional work to ensure U-Boot relocation
404 do not overwrite the important boot service data which is used by
405 FSP, otherwise the subsequent call to fsp_notify() will fail.
406
Bin Menge2d76e92015-10-11 21:37:35 -0700407config ENABLE_MRC_CACHE
408 bool "Enable MRC cache"
409 depends on !EFI && !SYS_COREBOOT
410 help
411 Enable this feature to cause MRC data to be cached in NV storage
412 to be used for speeding up boot time on future reboots and/or
413 power cycles.
414
Bin Meng5c60a3a2016-05-22 01:45:27 -0700415 For platforms that use Intel FSP for the memory initialization,
416 please check FSP output HOB via U-Boot command 'fsp hob' to see
417 if there is FSP_NON_VOLATILE_STORAGE_HOB_GUID (asm/fsp/fsp_hob.h).
418 If such GUID does not exist, MRC cache is not avaiable on such
419 platform (eg: Intel Queensbay), which means selecting this option
420 here does not make any difference.
421
Simon Glassf7d35bc2016-03-11 22:07:08 -0700422config HAVE_MRC
423 bool "Add a System Agent binary"
424 depends on !HAVE_FSP
425 help
426 Select this option to add a System Agent binary to
427 the resulting U-Boot image. MRC stands for Memory Reference Code.
428 It is a binary blob which U-Boot uses to set up SDRAM.
429
430 Note: Without this binary U-Boot will not be able to set up its
431 SDRAM so will not boot.
432
433config CACHE_MRC_BIN
434 bool
435 depends on HAVE_MRC
436 default n
437 help
438 Enable caching for the memory reference code binary. This uses an
439 MTRR (memory type range register) to turn on caching for the section
440 of SPI flash that contains the memory reference code. This makes
441 SDRAM init run faster.
442
443config CACHE_MRC_SIZE_KB
444 int
445 depends on HAVE_MRC
446 default 512
447 help
448 Sets the size of the cached area for the memory reference code.
449 This ends at the end of SPI flash (address 0xffffffff) and is
450 measured in KB. Typically this is set to 512, providing for 0.5MB
451 of cached space.
452
453config DCACHE_RAM_BASE
454 hex
455 depends on HAVE_MRC
456 help
457 Sets the base of the data cache area in memory space. This is the
458 start address of the cache-as-RAM (CAR) area and the address varies
459 depending on the CPU. Once CAR is set up, read/write memory becomes
460 available at this address and can be used temporarily until SDRAM
461 is working.
462
463config DCACHE_RAM_SIZE
464 hex
465 depends on HAVE_MRC
466 default 0x40000
467 help
468 Sets the total size of the data cache area in memory space. This
469 sets the size of the cache-as-RAM (CAR) area. Note that much of the
470 CAR space is required by the MRC. The CAR space available to U-Boot
471 is normally at the start and typically extends to 1/4 or 1/2 of the
472 available size.
473
474config DCACHE_RAM_MRC_VAR_SIZE
475 hex
476 depends on HAVE_MRC
477 help
478 This is the amount of CAR (Cache as RAM) reserved for use by the
479 memory reference code. This depends on the implementation of the
480 memory reference code and must be set correctly or the board will
481 not boot.
482
Simon Glass0adf8d32016-03-11 22:07:16 -0700483config HAVE_REFCODE
484 bool "Add a Reference Code binary"
485 help
486 Select this option to add a Reference Code binary to the resulting
487 U-Boot image. This is an Intel binary blob that handles system
488 initialisation, in this case the PCH and System Agent.
489
490 Note: Without this binary (on platforms that need it such as
491 broadwell) U-Boot will be missing some critical setup steps.
492 Various peripherals may fail to work.
493
Simon Glass45b5a372015-04-29 22:25:59 -0600494config SMP
495 bool "Enable Symmetric Multiprocessing"
496 default n
497 help
498 Enable use of more than one CPU in U-Boot and the Operating System
499 when loaded. Each CPU will be started up and information can be
500 obtained using the 'cpu' command. If this option is disabled, then
501 only one CPU will be enabled regardless of the number of CPUs
502 available.
503
Bin Meng4c713222015-06-12 14:52:23 +0800504config MAX_CPUS
505 int "Maximum number of CPUs permitted"
506 depends on SMP
507 default 4
508 help
509 When using multi-CPU chips it is possible for U-Boot to start up
510 more than one CPU. The stack memory used by all of these CPUs is
511 pre-allocated so at present U-Boot wants to know the maximum
512 number of CPUs that may be present. Set this to at least as high
513 as the number of CPUs in your system (it uses about 4KB of RAM for
514 each CPU).
515
Simon Glass45b5a372015-04-29 22:25:59 -0600516config AP_STACK_SIZE
517 hex
Bin Meng063374d2015-06-12 14:52:22 +0800518 depends on SMP
Simon Glass45b5a372015-04-29 22:25:59 -0600519 default 0x1000
520 help
521 Each additional CPU started by U-Boot requires its own stack. This
522 option sets the stack size used by each CPU and directly affects
523 the memory used by this initialisation process. Typically 4KB is
524 enough space.
525
Bin Meng2ddb1a12017-08-17 01:10:42 -0700526config CPU_INTEL_TURBO_NOT_PACKAGE_SCOPED
527 bool
528 help
529 This option indicates that the turbo mode setting is not package
530 scoped. i.e. turbo_enable() needs to be called on not just the
531 bootstrap processor (BSP).
532
Bin Meng786a08e2015-07-06 16:31:33 +0800533config HAVE_VGA_BIOS
534 bool "Add a VGA BIOS image"
535 help
536 Select this option if you have a VGA BIOS image that you would
537 like to add to your ROM.
538
539config VGA_BIOS_FILE
540 string "VGA BIOS image filename"
541 depends on HAVE_VGA_BIOS
542 default "vga.bin"
543 help
544 The filename of the VGA BIOS image in the board directory.
545
546config VGA_BIOS_ADDR
547 hex "VGA BIOS image location"
548 depends on HAVE_VGA_BIOS
549 default 0xfff90000
550 help
551 The location of VGA BIOS image in the SPI flash. For example, base
552 address of 0xfff90000 indicates that the image will be put at offset
553 0x90000 from the beginning of a 1MB flash device.
554
Bin Mengae3ca122017-08-15 22:41:53 -0700555config HAVE_VBT
556 bool "Add a Video BIOS Table (VBT) image"
557 depends on HAVE_FSP
558 help
559 Select this option if you have a Video BIOS Table (VBT) image that
560 you would like to add to your ROM. This is normally required if you
561 are using an Intel FSP firmware that is complaint with spec 1.1 or
562 later to initialize the integrated graphics device (IGD).
563
564 Video BIOS Table, or VBT, provides platform and board specific
565 configuration information to the driver that is not discoverable
566 or available through other means. By other means the most used
567 method here is to read EDID table from the attached monitor, over
568 Display Data Channel (DDC) using two pin I2C serial interface. VBT
569 configuration is related to display hardware and is available via
570 the ACPI OpRegion or, on older systems, in the PCI ROM (Option ROM).
571
572config VBT_FILE
573 string "Video BIOS Table (VBT) image filename"
574 depends on HAVE_VBT
575 default "vbt.bin"
576 help
577 The filename of the file to use as Video BIOS Table (VBT) image
578 in the board directory.
579
580config VBT_ADDR
581 hex "Video BIOS Table (VBT) image location"
582 depends on HAVE_VBT
583 default 0xfff90000
584 help
585 The location of Video BIOS Table (VBT) image in the SPI flash. For
586 example, base address of 0xfff90000 indicates that the image will
587 be put at offset 0x90000 from the beginning of a 1MB flash device.
588
Bin Meng5df91f12017-08-15 22:41:56 -0700589config VIDEO_FSP
590 bool "Enable FSP framebuffer driver support"
591 depends on HAVE_VBT && DM_VIDEO
592 help
593 Turn on this option to enable a framebuffer driver when U-Boot is
594 using Video BIOS Table (VBT) image for FSP firmware to initialize
595 the integrated graphics device.
596
Andy Shevchenkoc3df28f2017-07-28 20:02:15 +0300597config ROM_TABLE_ADDR
598 hex
599 default 0xf0000
600 help
601 All x86 tables happen to like the address range from 0x0f0000
602 to 0x100000. We use 0xf0000 as the starting address to store
603 those tables, including PIRQ routing table, Multi-Processor
604 table and ACPI table.
605
606config ROM_TABLE_SIZE
607 hex
608 default 0x10000
609
Bin Mengb5b6b012015-04-24 18:10:05 +0800610menu "System tables"
Bin Meng8744bef2015-08-13 00:29:13 -0700611 depends on !EFI && !SYS_COREBOOT
Bin Mengb5b6b012015-04-24 18:10:05 +0800612
613config GENERATE_PIRQ_TABLE
614 bool "Generate a PIRQ table"
615 default n
616 help
617 Generate a PIRQ routing table for this board. The PIRQ routing table
618 is generated by U-Boot in the system memory from 0xf0000 to 0xfffff
619 at every 16-byte boundary with a PCI IRQ routing signature ("$PIR").
620 It specifies the interrupt router information as well how all the PCI
621 devices' interrupt pins are wired to PIRQs.
622
Simon Glass6388e352015-04-28 20:25:10 -0600623config GENERATE_SFI_TABLE
624 bool "Generate a SFI (Simple Firmware Interface) table"
625 help
626 The Simple Firmware Interface (SFI) provides a lightweight method
627 for platform firmware to pass information to the operating system
628 via static tables in memory. Kernel SFI support is required to
629 boot on SFI-only platforms. If you have ACPI tables then these are
630 used instead.
631
632 U-Boot writes this table in write_sfi_table() just before booting
633 the OS.
634
635 For more information, see http://simplefirmware.org
636
Bin Meng07545d82015-06-23 12:18:52 +0800637config GENERATE_MP_TABLE
638 bool "Generate an MP (Multi-Processor) table"
639 default n
640 help
641 Generate an MP (Multi-Processor) table for this board. The MP table
642 provides a way for the operating system to support for symmetric
643 multiprocessing as well as symmetric I/O interrupt handling with
644 the local APIC and I/O APIC.
645
Saket Sinha867bcb62015-08-22 12:20:55 +0530646config GENERATE_ACPI_TABLE
647 bool "Generate an ACPI (Advanced Configuration and Power Interface) table"
648 default n
Miao Yanfcf5c042016-05-22 19:37:14 -0700649 select QFW if QEMU
Saket Sinha867bcb62015-08-22 12:20:55 +0530650 help
651 The Advanced Configuration and Power Interface (ACPI) specification
652 provides an open standard for device configuration and management
653 by the operating system. It defines platform-independent interfaces
654 for configuration and power management monitoring.
655
Bin Mengb5b6b012015-04-24 18:10:05 +0800656endmenu
657
Bin Meng4372c112017-04-21 07:24:28 -0700658config HAVE_ACPI_RESUME
659 bool "Enable ACPI S3 resume"
Bin Mengaa9c5952017-10-18 18:20:55 -0700660 select ENABLE_MRC_CACHE
Bin Meng4372c112017-04-21 07:24:28 -0700661 help
662 Select this to enable ACPI S3 resume. S3 is an ACPI-defined sleeping
663 state where all system context is lost except system memory. U-Boot
664 is responsible for restoring the machine state as it was before sleep.
665 It needs restore the memory controller, without overwriting memory
666 which is not marked as reserved. For the peripherals which lose their
667 registers, U-Boot needs to write the original value. When everything
668 is done, U-Boot needs to find out the wakeup vector provided by OSes
669 and jump there.
670
Bin Meng68769eb2017-04-21 07:24:46 -0700671config S3_VGA_ROM_RUN
672 bool "Re-run VGA option ROMs on S3 resume"
673 depends on HAVE_ACPI_RESUME
Bin Meng68769eb2017-04-21 07:24:46 -0700674 help
675 Execute VGA option ROMs in U-Boot when resuming from S3. Normally
676 this is needed when graphics console is being used in the kernel.
677
678 Turning it off can reduce some resume time, but be aware that your
679 graphics console won't work without VGA options ROMs. Set it to N
680 if your kernel is only on a serial console.
681
Bin Meng7d0d2ef2017-04-21 07:24:34 -0700682config STACK_SIZE
683 hex
684 depends on HAVE_ACPI_RESUME
685 default 0x1000
686 help
687 Estimated U-Boot's runtime stack size that needs to be reserved
688 during an ACPI S3 resume.
689
Bin Mengb5b6b012015-04-24 18:10:05 +0800690config MAX_PIRQ_LINKS
691 int
692 default 8
693 help
694 This variable specifies the number of PIRQ interrupt links which are
695 routable. On most older chipsets, this is 4, PIRQA through PIRQD.
696 Some newer chipsets offer more than four links, commonly up to PIRQH.
697
698config IRQ_SLOT_COUNT
699 int
700 default 128
701 help
702 U-Boot can support up to 254 IRQ slot info in the PIRQ routing table
703 which in turns forms a table of exact 4KiB. The default value 128
704 should be enough for most boards. If this does not fit your board,
705 change it according to your needs.
706
Simon Glass2d934e52015-01-27 22:13:33 -0700707config PCIE_ECAM_BASE
708 hex
Bin Mengba877ef2015-02-02 21:25:09 +0800709 default 0xe0000000
Simon Glass2d934e52015-01-27 22:13:33 -0700710 help
711 This is the memory-mapped address of PCI configuration space, which
712 is only available through the Enhanced Configuration Access
713 Mechanism (ECAM) with PCI Express. It can be set up almost
714 anywhere. Before it is set up, it is possible to access PCI
715 configuration space through I/O access, but memory access is more
716 convenient. Using this, PCI can be scanned and configured. This
717 should be set to a region that does not conflict with memory
718 assigned to PCI devices - i.e. the memory and prefetch regions, as
719 passed to pci_set_region().
720
Bin Meng1ed66482015-07-22 01:21:15 -0700721config PCIE_ECAM_SIZE
722 hex
723 default 0x10000000
724 help
725 This is the size of memory-mapped address of PCI configuration space,
726 which is only available through the Enhanced Configuration Access
727 Mechanism (ECAM) with PCI Express. Each bus consumes 1 MiB memory,
728 so a default 0x10000000 size covers all of the 256 buses which is the
729 maximum number of PCI buses as defined by the PCI specification.
730
Bin Meng1eb39a52015-10-22 19:13:31 -0700731config I8259_PIC
732 bool
733 default y
734 help
735 Intel 8259 ISA compatible chipset incorporates two 8259 (master and
736 slave) interrupt controllers. Include this to have U-Boot set up
737 the interrupt correctly.
738
Bin Mengfcfc8a82018-06-10 06:25:01 -0700739config PINCTRL_ICH6
740 bool
741 help
742 Intel ICH6 compatible chipset pinctrl driver. It needs to work
743 together with the ICH6 compatible gpio driver.
744
Bin Meng1eb39a52015-10-22 19:13:31 -0700745config I8254_TIMER
746 bool
747 default y
748 help
749 Intel 8254 timer contains three counters which have fixed uses.
750 Include this to have U-Boot set up the timer correctly.
751
Bin Meng3cf23712016-02-28 23:54:50 -0800752config SEABIOS
753 bool "Support booting SeaBIOS"
754 help
755 SeaBIOS is an open source implementation of a 16-bit X86 BIOS.
756 It can run in an emulator or natively on X86 hardware with the use
757 of coreboot/U-Boot. By turning on this option, U-Boot prepares
758 all the configuration tables that are necessary to boot SeaBIOS.
759
760 Check http://www.seabios.org/SeaBIOS for details.
761
Bin Meng789b6dc2016-05-11 07:44:59 -0700762config HIGH_TABLE_SIZE
763 hex "Size of configuration tables which reside in high memory"
764 default 0x10000
765 depends on SEABIOS
766 help
767 SeaBIOS itself resides in E seg and F seg, where U-Boot puts all
768 configuration tables like PIRQ/MP/ACPI. To avoid conflicts, U-Boot
769 puts a copy of configuration tables in high memory region which
770 is reserved on the stack before relocation. The region size is
771 determined by this option.
772
773 Increse it if the default size does not fit the board's needs.
774 This is most likely due to a large ACPI DSDT table is used.
775
Masahiro Yamadadd840582014-07-30 14:08:14 +0900776endmenu