There's nothing intel-specific about the current mrc_cache support. It's logic manages saving non-volatile areas into the boot media. Therefore, expose it to the rest of the system for any and all to use. BUG=b:69614064 Change-Id: I3b331c82a102f88912a3e10507a70207fb20aecc Signed-off-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: https://review.coreboot.org/22901 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Furquan Shaikh <furquan@google.com>
76 lines
1.5 KiB
Plaintext
76 lines
1.5 KiB
Plaintext
config SOC_INTEL_COMMON
|
|
bool
|
|
help
|
|
common code for Intel SOCs
|
|
|
|
if SOC_INTEL_COMMON
|
|
|
|
comment "Intel SoC Common Code"
|
|
source "src/soc/intel/common/block/Kconfig"
|
|
|
|
config DISPLAY_MTRRS
|
|
bool "MTRRs: Display the MTRR settings"
|
|
default n
|
|
|
|
config DISPLAY_SMM_MEMORY_MAP
|
|
bool "SMM: Display the SMM memory map"
|
|
default n
|
|
|
|
config SOC_INTEL_COMMON_RESET
|
|
bool
|
|
default n
|
|
|
|
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 SOC_INTEL_COMMON_LPSS_CLOCK_MHZ
|
|
int
|
|
help
|
|
The clock speed that the controllers in LPSS(GSPI, I2C) are running
|
|
at, in MHz. No default is set here as this is an SOC-specific value
|
|
and must be provided by the SOC.
|
|
|
|
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_GFX_OPREGION
|
|
bool
|
|
default n
|
|
|
|
config SOC_INTEL_COMMON_SMI
|
|
bool
|
|
default n
|
|
|
|
config SOC_INTEL_COMMON_ACPI
|
|
bool
|
|
default n
|
|
|
|
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
|