Chen-Tsung Hsieh has uploaded this change for review. ( https://review.coreboot.org/c/coreboot/+/57403 )
Change subject: mb/google/cherry: Enable RTC for event log ......................................................................
mb/google/cherry: Enable RTC for event log
BUG=b:199003609 TEST=firmware_EventLog passed on cherry BRANCH=none
Signed-off-by: Chen-Tsung Hsieh chentsung@chromium.org Change-Id: Ia382cd023fcbfdf2c1efeb7b32c0b99feb71effa --- M src/mainboard/google/cherry/Kconfig M src/soc/mediatek/mt8195/Makefile.inc 2 files changed, 3 insertions(+), 0 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/03/57403/1
diff --git a/src/mainboard/google/cherry/Kconfig b/src/mainboard/google/cherry/Kconfig index 09d820c..7157267 100644 --- a/src/mainboard/google/cherry/Kconfig +++ b/src/mainboard/google/cherry/Kconfig @@ -12,6 +12,7 @@
config BOARD_SPECIFIC_OPTIONS def_bool y + select RTC select SOC_MEDIATEK_MT8195 select BOARD_ROMSIZE_KB_8192 select MAINBOARD_HAS_CHROMEOS diff --git a/src/soc/mediatek/mt8195/Makefile.inc b/src/soc/mediatek/mt8195/Makefile.inc index 3439001..d15d476 100644 --- a/src/soc/mediatek/mt8195/Makefile.inc +++ b/src/soc/mediatek/mt8195/Makefile.inc @@ -67,6 +67,8 @@ ramstage-y += ../common/mtcmos.c mtcmos.c ramstage-$(CONFIG_COMMONLIB_STORAGE_MMC) += ../common/msdc.c ramstage-y += ../common/pll.c pll.c +ramstage-y += ../common/pmif.c +ramstage-y += ../common/rtc.c ../common/rtc_mt6359p.c ramstage-$(CONFIG_SPI_FLASH) += ../common/spi.c spi.c ramstage-y += soc.c ramstage-y += ../common/sspm.c