2012-07-29 17:42:52 +02:00
|
|
|
config SERIAL_CPU_INIT
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
2009-10-06 22:48:07 +02:00
|
|
|
config UDELAY_IO
|
|
|
|
bool
|
2012-11-16 01:03:27 +01:00
|
|
|
default y if !UDELAY_LAPIC && !UDELAY_TSC && !UDELAY_TIMER2
|
2009-10-06 22:48:07 +02:00
|
|
|
default n
|
|
|
|
|
|
|
|
config UDELAY_LAPIC
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2013-04-30 00:18:49 +02:00
|
|
|
config LAPIC_MONOTONIC_TIMER
|
|
|
|
def_bool n
|
|
|
|
depends on UDELAY_LAPIC
|
|
|
|
select HAVE_MONOTONIC_TIMER
|
|
|
|
help
|
|
|
|
Expose monotonic time using the local apic.
|
|
|
|
|
2012-11-20 11:53:47 +01:00
|
|
|
config UDELAY_LAPIC_FIXED_FSB
|
|
|
|
int
|
|
|
|
|
2009-08-29 05:00:51 +02:00
|
|
|
config UDELAY_TSC
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2011-08-05 00:18:16 +02:00
|
|
|
config UDELAY_TIMER2
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2010-09-08 12:58:02 +02:00
|
|
|
config TSC_CALIBRATE_WITH_IO
|
2009-08-29 05:00:51 +02:00
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
2012-08-07 23:44:51 +02:00
|
|
|
config TSC_SYNC_LFENCE
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
The CPU driver should select this if the CPU needs
|
|
|
|
to execute an lfence instruction in order to synchronize
|
|
|
|
rdtsc. This is true for all modern AMD CPUs.
|
|
|
|
|
|
|
|
config TSC_SYNC_MFENCE
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
The CPU driver should select this if the CPU needs
|
|
|
|
to execute an mfence instruction in order to synchronize
|
|
|
|
rdtsc. This is true for all modern Intel CPUs.
|
|
|
|
|
2009-08-25 14:19:28 +02:00
|
|
|
config XIP_ROM_SIZE
|
2009-08-12 17:00:51 +02:00
|
|
|
hex
|
2012-03-16 21:16:55 +01:00
|
|
|
default ROM_SIZE if ROMCC
|
2010-04-12 11:50:53 +02:00
|
|
|
default 0x10000
|
2010-12-17 00:37:17 +01:00
|
|
|
|
|
|
|
config CPU_ADDR_BITS
|
|
|
|
int
|
|
|
|
default 36
|
|
|
|
|
|
|
|
config LOGICAL_CPUS
|
|
|
|
bool
|
|
|
|
default y
|
|
|
|
|
2011-11-03 00:12:34 +01:00
|
|
|
config CACHE_ROM
|
2013-03-26 18:47:47 +01:00
|
|
|
bool "Allow for caching system ROM."
|
2011-11-03 00:12:34 +01:00
|
|
|
default n
|
2013-03-26 18:47:47 +01:00
|
|
|
help
|
|
|
|
When selected a variable range MTRR is allocated for coreboot and
|
|
|
|
the bootloader enables caching of the system ROM for faster access.
|
2012-01-10 07:11:25 +01:00
|
|
|
|
|
|
|
config SMM_TSEG
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
|
|
|
|
config SMM_TSEG_SIZE
|
|
|
|
hex
|
|
|
|
default 0
|
2013-01-04 00:38:47 +01:00
|
|
|
|
|
|
|
config SMM_MODULES
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
depends on HAVE_SMI_HANDLER
|
|
|
|
select RELOCATABLE_MODULES
|
|
|
|
help
|
|
|
|
If SMM_MODULES is selected then SMM handlers are built as modules.
|
|
|
|
A SMM stub along with a SMM loader/relocator. All the handlers are
|
|
|
|
written in C with stub being the only assembly.
|
|
|
|
|
|
|
|
config SMM_MODULE_HEAP_SIZE
|
|
|
|
hex
|
|
|
|
default 0x4000
|
|
|
|
depends on SMM_MODULES
|
|
|
|
help
|
|
|
|
This option determines the size of the heap within the SMM handler
|
|
|
|
modules.
|
2013-03-20 21:50:59 +01:00
|
|
|
|
|
|
|
config X86_AMD_FIXED_MTRRS
|
|
|
|
bool
|
|
|
|
default n
|
|
|
|
help
|
|
|
|
This option informs the MTRR code to use the RdMem and WrMem fields
|
|
|
|
in the fixed MTRR MSRs.
|