cpu/x86: Sort some Kconfig options
Change-Id: I25ea327ed151e18ccb5d13626d44925d2a253d08 Signed-off-by: Stefan Reinauer <stefan.reinauer@coreboot.org> Reviewed-on: https://review.coreboot.org/10012 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
0d18791755
commit
9d5e36e839
|
@ -1,7 +1,16 @@
|
||||||
|
# TODO These two options look too similar
|
||||||
config PARALLEL_CPU_INIT
|
config PARALLEL_CPU_INIT
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
|
||||||
|
config PARALLEL_MP
|
||||||
|
def_bool n
|
||||||
|
help
|
||||||
|
This option uses common MP infrastructure for bringing up APs
|
||||||
|
in parallel. It additionally provides a more flexible mechanism
|
||||||
|
for sequencing the steps of bringing up the APs.
|
||||||
|
|
||||||
|
|
||||||
config UDELAY_IO
|
config UDELAY_IO
|
||||||
bool
|
bool
|
||||||
default y if !UDELAY_LAPIC && !UDELAY_TSC && !UDELAY_TIMER2
|
default y if !UDELAY_LAPIC && !UDELAY_TSC && !UDELAY_TIMER2
|
||||||
|
@ -39,11 +48,14 @@ config TSC_MONOTONIC_TIMER
|
||||||
help
|
help
|
||||||
Expose monotonic time using the TSC.
|
Expose monotonic time using the TSC.
|
||||||
|
|
||||||
config UDELAY_TIMER2
|
# This option is used in code but never selected.
|
||||||
|
config TSC_CALIBRATE_WITH_IO
|
||||||
bool
|
bool
|
||||||
|
depends on UDELAY_TSC
|
||||||
default n
|
default n
|
||||||
|
|
||||||
config TSC_CALIBRATE_WITH_IO
|
# This option is used in code but never selected.
|
||||||
|
config UDELAY_TIMER2
|
||||||
bool
|
bool
|
||||||
default n
|
default n
|
||||||
|
|
||||||
|
@ -121,13 +133,6 @@ config PLATFORM_USES_FSP1_0
|
||||||
Selected for Intel processors/platform combinations that use the
|
Selected for Intel processors/platform combinations that use the
|
||||||
Intel Firmware Support Package (FSP) 1.0 for initialization.
|
Intel Firmware Support Package (FSP) 1.0 for initialization.
|
||||||
|
|
||||||
config PARALLEL_MP
|
|
||||||
def_bool n
|
|
||||||
help
|
|
||||||
This option uses common MP infrastructure for bringing up APs
|
|
||||||
in parallel. It additionally provides a more flexible mechanism
|
|
||||||
for sequencing the steps of bringing up the APs.
|
|
||||||
|
|
||||||
config BACKUP_DEFAULT_SMM_REGION
|
config BACKUP_DEFAULT_SMM_REGION
|
||||||
def_bool n
|
def_bool n
|
||||||
help
|
help
|
||||||
|
|
Loading…
Reference in New Issue