1 menu "x86 architecture"
8 prompt "Run U-Boot in 32/64-bit mode"
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).
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.
19 For now, 32-bit mode is recommended, as 64-bit is still
20 experimental and is missing a lot of features.
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.
37 select SPL_SEPARATE_BSS
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.
54 prompt "Mainboard vendor"
55 default VENDOR_EMULATION
57 config VENDOR_ADVANTECH
60 config VENDOR_CONGATEC
63 config VENDOR_COREBOOT
72 config VENDOR_EMULATION
83 # subarchitectures-specific options below
85 bool "Intel MID platform support"
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.
93 If you are building for a PC class system say N here.
95 Intel MID platforms are based on an Intel processor and
96 chipset which consume less power than most of the x86
99 # board-specific options below
100 source "board/advantech/Kconfig"
101 source "board/congatec/Kconfig"
102 source "board/coreboot/Kconfig"
103 source "board/dfi/Kconfig"
104 source "board/efi/Kconfig"
105 source "board/emulation/Kconfig"
106 source "board/google/Kconfig"
107 source "board/intel/Kconfig"
109 # platform-specific options below
110 source "arch/x86/cpu/baytrail/Kconfig"
111 source "arch/x86/cpu/braswell/Kconfig"
112 source "arch/x86/cpu/broadwell/Kconfig"
113 source "arch/x86/cpu/coreboot/Kconfig"
114 source "arch/x86/cpu/ivybridge/Kconfig"
115 source "arch/x86/cpu/efi/Kconfig"
116 source "arch/x86/cpu/qemu/Kconfig"
117 source "arch/x86/cpu/quark/Kconfig"
118 source "arch/x86/cpu/queensbay/Kconfig"
119 source "arch/x86/cpu/tangier/Kconfig"
121 # architecture-specific options below
126 config SYS_MALLOC_F_LEN
135 depends on X86_RESET_VECTOR
144 default 0xfed00000 if !HPET_ADDRESS_OVERRIDE
153 config X86_RESET_VECTOR
158 # 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.
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.
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).
170 config X86_16BIT_INIT
172 depends on X86_RESET_VECTOR
173 default y if X86_RESET_VECTOR && !SPL
175 This is enabled when 16-bit init is in U-Boot proper
177 config SPL_X86_16BIT_INIT
179 depends on X86_RESET_VECTOR
180 default y if X86_RESET_VECTOR && SPL
182 This is enabled when 16-bit init is in SPL
184 config X86_32BIT_INIT
186 depends on X86_RESET_VECTOR
187 default y if X86_RESET_VECTOR && !SPL
189 This is enabled when 32-bit init is in U-Boot proper
191 config SPL_X86_32BIT_INIT
193 depends on X86_RESET_VECTOR
194 default y if X86_RESET_VECTOR && SPL
196 This is enabled when 32-bit init is in SPL
198 config RESET_SEG_START
200 depends on X86_RESET_VECTOR
203 config RESET_SEG_SIZE
205 depends on X86_RESET_VECTOR
210 depends on X86_RESET_VECTOR
213 config SYS_X86_START16
215 depends on X86_RESET_VECTOR
218 config X86_LOAD_FROM_32_BIT
219 bool "Boot from a 32-bit program"
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.
226 config BOARD_ROMSIZE_KB_512
228 config BOARD_ROMSIZE_KB_1024
230 config BOARD_ROMSIZE_KB_2048
232 config BOARD_ROMSIZE_KB_4096
234 config BOARD_ROMSIZE_KB_8192
236 config BOARD_ROMSIZE_KB_16384
240 prompt "ROM chip size"
241 depends on X86_RESET_VECTOR
242 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
249 Select the size of the ROM chip you intend to flash U-Boot on.
251 The build system will take care of creating a u-boot.rom file
252 of the matching size.
254 config UBOOT_ROMSIZE_KB_512
257 Choose this option if you have a 512 KB ROM chip.
259 config UBOOT_ROMSIZE_KB_1024
260 bool "1024 KB (1 MB)"
262 Choose this option if you have a 1024 KB (1 MB) ROM chip.
264 config UBOOT_ROMSIZE_KB_2048
265 bool "2048 KB (2 MB)"
267 Choose this option if you have a 2048 KB (2 MB) ROM chip.
269 config UBOOT_ROMSIZE_KB_4096
270 bool "4096 KB (4 MB)"
272 Choose this option if you have a 4096 KB (4 MB) ROM chip.
274 config UBOOT_ROMSIZE_KB_8192
275 bool "8192 KB (8 MB)"
277 Choose this option if you have a 8192 KB (8 MB) ROM chip.
279 config UBOOT_ROMSIZE_KB_16384
280 bool "16384 KB (16 MB)"
282 Choose this option if you have a 16384 KB (16 MB) ROM chip.
286 # Map the config names to an integer (KB).
287 config UBOOT_ROMSIZE_KB
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
296 # Map the config names to a hex value (bytes).
299 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
308 bool "Platform requires Intel Management Engine"
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.
317 bool "Perform a simple RAM test after SDRAM initialisation"
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.
325 config FLASH_DESCRIPTOR_FILE
326 string "Flash descriptor binary filename"
327 depends on HAVE_INTEL_ME
328 default "descriptor.bin"
330 The filename of the file to use as flash descriptor in the
334 string "Intel Management Engine binary filename"
335 depends on HAVE_INTEL_ME
338 The filename of the file to use as Intel Management Engine in the
342 bool "Add an Firmware Support Package binary"
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.
349 Note: Without this binary U-Boot will not be able to set up its
350 SDRAM so will not boot.
353 string "Firmware Support Package binary filename"
357 The filename of the file to use as Firmware Support Package binary
358 in the board directory.
361 hex "Firmware Support Package binary location"
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.
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.
373 config FSP_TEMP_RAM_ADDR
378 Stack top address which is used in fsp_init() after DRAM is ready and
381 config FSP_SYS_MALLOC_F_LEN
386 Additional size of malloc() pool before relocation.
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.
397 config FSP_BROKEN_HOB
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.
407 config ENABLE_MRC_CACHE
408 bool "Enable MRC cache"
409 depends on !EFI && !SYS_COREBOOT
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
415 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.
423 bool "Add a System Agent binary"
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.
430 Note: Without this binary U-Boot will not be able to set up its
431 SDRAM so will not boot.
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.
443 config CACHE_MRC_SIZE_KB
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
453 config DCACHE_RAM_BASE
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
463 config DCACHE_RAM_SIZE
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
474 config DCACHE_RAM_MRC_VAR_SIZE
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
484 bool "Add a Reference Code binary"
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.
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.
495 bool "Enable Symmetric Multiprocessing"
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
505 int "Maximum number of CPUs permitted"
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
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
526 config CPU_INTEL_TURBO_NOT_PACKAGE_SCOPED
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).
534 bool "Add a VGA BIOS image"
536 Select this option if you have a VGA BIOS image that you would
537 like to add to your ROM.
540 string "VGA BIOS image filename"
541 depends on HAVE_VGA_BIOS
544 The filename of the VGA BIOS image in the board directory.
547 hex "VGA BIOS image location"
548 depends on HAVE_VGA_BIOS
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.
556 bool "Add a Video BIOS Table (VBT) image"
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).
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).
573 string "Video BIOS Table (VBT) image filename"
577 The filename of the file to use as Video BIOS Table (VBT) image
578 in the board directory.
581 hex "Video BIOS Table (VBT) image location"
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.
590 bool "Enable FSP framebuffer driver support"
591 depends on HAVE_VBT && DM_VIDEO
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.
597 config ROM_TABLE_ADDR
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.
606 config ROM_TABLE_SIZE
611 depends on !EFI && !SYS_COREBOOT
613 config GENERATE_PIRQ_TABLE
614 bool "Generate a PIRQ table"
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.
623 config GENERATE_SFI_TABLE
624 bool "Generate a SFI (Simple Firmware Interface) table"
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
632 U-Boot writes this table in write_sfi_table() just before booting
635 For more information, see http://simplefirmware.org
637 config GENERATE_MP_TABLE
638 bool "Generate an MP (Multi-Processor) table"
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.
646 config GENERATE_ACPI_TABLE
647 bool "Generate an ACPI (Advanced Configuration and Power Interface) table"
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.
658 config HAVE_ACPI_RESUME
659 bool "Enable ACPI S3 resume"
660 select ENABLE_MRC_CACHE
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
671 config S3_VGA_ROM_RUN
672 bool "Re-run VGA option ROMs on S3 resume"
673 depends on HAVE_ACPI_RESUME
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.
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.
684 depends on HAVE_ACPI_RESUME
687 Estimated U-Boot's runtime stack size that needs to be reserved
688 during an ACPI S3 resume.
690 config MAX_PIRQ_LINKS
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.
698 config IRQ_SLOT_COUNT
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.
707 config PCIE_ECAM_BASE
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().
721 config PCIE_ECAM_SIZE
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.
732 bool "Enable Intel 8259 compatible interrupt controller"
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.
740 bool "Enable Intel Advanced Programmable Interrupt Controller"
743 The (A)dvanced (P)rogrammable (I)nterrupt (C)ontroller is responsible
744 for catching interrupts and distributing them to one or more CPU
745 cores. In most cases there are some LAPICs (local) for each core and
746 one I/O APIC. This conjunction is found on most modern x86 systems.
751 Intel ICH6 compatible chipset pinctrl driver. It needs to work
752 together with the ICH6 compatible gpio driver.
758 Intel 8254 timer contains three counters which have fixed uses.
759 Include this to have U-Boot set up the timer correctly.
762 bool "Support booting SeaBIOS"
764 SeaBIOS is an open source implementation of a 16-bit X86 BIOS.
765 It can run in an emulator or natively on X86 hardware with the use
766 of coreboot/U-Boot. By turning on this option, U-Boot prepares
767 all the configuration tables that are necessary to boot SeaBIOS.
769 Check http://www.seabios.org/SeaBIOS for details.
771 config HIGH_TABLE_SIZE
772 hex "Size of configuration tables which reside in high memory"
776 SeaBIOS itself resides in E seg and F seg, where U-Boot puts all
777 configuration tables like PIRQ/MP/ACPI. To avoid conflicts, U-Boot
778 puts a copy of configuration tables in high memory region which
779 is reserved on the stack before relocation. The region size is
780 determined by this option.
782 Increse it if the default size does not fit the board's needs.
783 This is most likely due to a large ACPI DSDT table is used.