Change-Id: Ifb1a1eff71968f31af9004ff00717f202d3ec29e Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/21117 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Nico Huber <nico.h@gmx.de>
24 lines
692 B
Plaintext
24 lines
692 B
Plaintext
config SOUTHBRIDGE_INTEL_COMMON
|
|
def_bool n
|
|
|
|
config SOUTHBRIDGE_INTEL_COMMON_GPIO
|
|
def_bool n
|
|
|
|
config SOUTHBRIDGE_INTEL_COMMON_SMBUS
|
|
def_bool n
|
|
select HAVE_DEBUG_SMBUS
|
|
|
|
config HAVE_INTEL_CHIPSET_LOCKDOWN
|
|
def_bool n
|
|
|
|
config INTEL_CHIPSET_LOCKDOWN
|
|
depends on HAVE_INTEL_CHIPSET_LOCKDOWN && HAVE_SMI_HANDLER && !CHROMEOS
|
|
#ChromeOS's payload seems to handle finalization on its on.
|
|
bool "Lock down chipset in coreboot"
|
|
default y
|
|
help
|
|
Some registers within host bridge on particular chipsets should be
|
|
locked down on each normal boot path (done by either coreboot or payload)
|
|
and S3 resume (always done by coreboot). Select this to let coreboot
|
|
to do this on normal boot path.
|