Initially, I wanted to move only the Kconfig DISPLAY_MTRRS into the "Debug" menu. It turned out, though, that the code looks rather generic. No need to hide it in soc/intel/. To not bloat src/Kconfig up any further, start a new `Kconfig.debug` hierarchy just for debug options. If somebody wants to review the code if it's 100% generic, we could even get rid of HAVE_DISPLAY_MTRRS. Change-Id: Ibd0a64121bd6e4ab5d7fd835f3ac25d3f5011f24 Signed-off-by: Nico Huber <nico.h@gmx.de> Reviewed-on: https://review.coreboot.org/c/29684 Reviewed-by: Patrick Georgi <pgeorgi@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
72 lines
1.5 KiB
Plaintext
72 lines
1.5 KiB
Plaintext
config SOC_INTEL_COMMON
|
|
bool
|
|
select HAVE_DISPLAY_MTRRS
|
|
help
|
|
common code for Intel SOCs
|
|
|
|
if SOC_INTEL_COMMON
|
|
|
|
comment "Intel SoC Common Code"
|
|
source "src/soc/intel/common/block/Kconfig"
|
|
|
|
comment "Intel SoC Common PCH Code"
|
|
source "src/soc/intel/common/pch/Kconfig"
|
|
|
|
comment "Intel SoC Common coreboot stages"
|
|
source "src/soc/intel/common/basecode/Kconfig"
|
|
|
|
config DISPLAY_SMM_MEMORY_MAP
|
|
bool "SMM: Display the SMM memory map"
|
|
default n
|
|
|
|
config SOC_INTEL_COMMON_RESET
|
|
bool
|
|
default n
|
|
select HAVE_CF9_RESET
|
|
|
|
config SOC_INTEL_COMMON_ACPI_WAKE_SOURCE
|
|
bool
|
|
default n
|
|
|
|
config ACPI_CONSOLE
|
|
bool
|
|
default n
|
|
help
|
|
Provide a mechanism for serial console based ACPI debug.
|
|
|
|
config MMA
|
|
bool "Enable MMA (Memory Margin Analysis) support for Intel Core"
|
|
default n
|
|
depends on SOC_INTEL_KABYLAKE || SOC_INTEL_SKYLAKE
|
|
help
|
|
Set this option to y to enable MMA (Memory Margin Analysis) support
|
|
|
|
config MMA_BLOBS_PATH
|
|
string "Path to MMA blobs"
|
|
depends on MMA
|
|
default "3rdparty/blobs/soc/intel/kabylake/mma-blobs" if SOC_INTEL_KABYLAKE
|
|
default "3rdparty/blobs/soc/intel/skylake/mma-blobs" if SOC_INTEL_SKYLAKE
|
|
|
|
config SOC_INTEL_COMMON_ACPI
|
|
bool
|
|
default n
|
|
|
|
config SOC_INTEL_COMMON_ACPI_EC_PTS_WAK
|
|
bool
|
|
default n
|
|
help
|
|
Set this option to have the platform level _PTS/_WAK methods call
|
|
methods provided by the Embedded Controller.
|
|
|
|
config SOC_INTEL_COMMON_NHLT
|
|
bool
|
|
default n
|
|
|
|
config TPM_TIS_ACPI_INTERRUPT
|
|
int
|
|
help
|
|
acpi_get_gpe() is used to provide interrupt status to TPM layer.
|
|
This option specifies the GPE number.
|
|
|
|
endif # SOC_INTEL_COMMON
|