summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-07-12 01:29:46 +0300
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-07-13 13:18:43 +0000
commitd1c1c9a76e929ea61c023adbcbb550d077d08e01 (patch)
tree8e4132b426d98ca20be0feba8e1f31829f2431d0
parentd4e140dae7fb102c24ecd3165ce540c0b9b93dd0 (diff)
downloadcoreboot-d1c1c9a76e929ea61c023adbcbb550d077d08e01.tar.gz
coreboot-d1c1c9a76e929ea61c023adbcbb550d077d08e01.tar.bz2
coreboot-d1c1c9a76e929ea61c023adbcbb550d077d08e01.zip
drivers/elog: Fix ELOG_GSMI dependency
SMM_TSEG is a qualifier between TSEG and ASEG only, while HAVE_SMI_HANDLER currently tells if SMM will be installed. Move rest of the file under same 'if ELOG' block. Change-Id: I620d3ce5aa9632d862d6480922144f002cf6423b Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/34195 Reviewed-by: Furquan Shaikh <furquan@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
-rw-r--r--src/drivers/elog/Kconfig9
1 files changed, 4 insertions, 5 deletions
diff --git a/src/drivers/elog/Kconfig b/src/drivers/elog/Kconfig
index da8a5fa220b5..4a66e788bb9c 100644
--- a/src/drivers/elog/Kconfig
+++ b/src/drivers/elog/Kconfig
@@ -42,10 +42,8 @@ config ELOG_PRERAM
help
This option will enable event logging from the preram stage.
-endif
-
config ELOG_GSMI
- depends on ELOG && SMM_TSEG
+ depends on HAVE_SMI_HANDLER
bool "SMI interface to write and clear event log"
select SPI_FLASH_SMM if BOOT_DEVICE_SPI_FLASH_RW_NOMMAP
default n
@@ -55,7 +53,6 @@ config ELOG_GSMI
kernel reset/shutdown messages to the event log.
config ELOG_BOOT_COUNT
- depends on ELOG
bool "Maintain a monotonic boot number in CMOS"
default n
help
@@ -64,9 +61,11 @@ config ELOG_BOOT_COUNT
counter will be logged as part of the System Boot event.
config ELOG_BOOT_COUNT_CMOS_OFFSET
- depends on ELOG && ELOG_BOOT_COUNT && !USE_OPTION_TABLE
+ depends on ELOG_BOOT_COUNT && !USE_OPTION_TABLE
int "Offset in CMOS to store the boot count"
default 0
help
This value must be greater than 16 bytes so as not to interfere
with the standard RTC region. Requires 8 bytes.
+
+endif