summaryrefslogtreecommitdiffstats
path: root/src/soc/mediatek/mt8195
diff options
context:
space:
mode:
authorRex-BC Chen <rex-bc.chen@mediatek.corp-partner.google.com>2021-11-25 17:44:02 +0800
committerFelix Held <felix-coreboot@felixheld.de>2021-11-29 09:47:41 +0000
commitf083d5e5a30cbd846712ac895766d673cf767350 (patch)
tree723a2f18dcfcc892bc07443c036b060a384fcbec /src/soc/mediatek/mt8195
parent3f15581faf31845029eeea2c917ea91ada714a02 (diff)
downloadcoreboot-f083d5e5a30cbd846712ac895766d673cf767350.tar.gz
coreboot-f083d5e5a30cbd846712ac895766d673cf767350.tar.bz2
coreboot-f083d5e5a30cbd846712ac895766d673cf767350.zip
soc/mediatek: move bustracker_init before watchdog resets again
The checking register will be cleared after EC resets, so we move bustracker dump from ramstage to bootblock, before triggering EC reset. TEST=bustracker shows status before watchdog resets BUG=b:207743045 Signed-off-by: Rex-BC Chen <rex-bc.chen@mediatek.com> Change-Id: Ic18dc9742cd9f657a035a374e28371dfc5f04ac3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/59667 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Yu-Ping Wu <yupingso@google.com>
Diffstat (limited to 'src/soc/mediatek/mt8195')
-rw-r--r--src/soc/mediatek/mt8195/Makefile.inc3
-rw-r--r--src/soc/mediatek/mt8195/bootblock.c2
-rw-r--r--src/soc/mediatek/mt8195/soc.c2
3 files changed, 4 insertions, 3 deletions
diff --git a/src/soc/mediatek/mt8195/Makefile.inc b/src/soc/mediatek/mt8195/Makefile.inc
index c6f4226ae353..a7ada280540a 100644
--- a/src/soc/mediatek/mt8195/Makefile.inc
+++ b/src/soc/mediatek/mt8195/Makefile.inc
@@ -7,6 +7,7 @@ bootblock-y += ../common/flash_controller.c
bootblock-y += ../common/gpio.c gpio.c
bootblock-y += ../common/i2c.c i2c.c
bootblock-y += ../common/mmu_operations.c
+bootblock-y += ../common/tracker.c
bootblock-y += ../common/pll.c pll.c
bootblock-$(CONFIG_SPI_FLASH) += ../common/spi.c spi.c
bootblock-y += ../common/timer.c timer.c
@@ -50,7 +51,7 @@ romstage-y += ../common/mt6359p.c mt6359p.c
romstage-y += mt6691.c
romstage-y += mt6360.c
romstage-y += ../common/rtc.c ../common/rtc_osc_init.c ../common/rtc_mt6359p.c
-ramstage-y += ../common/tracker.c
+
ramstage-y += ../common/auxadc.c
ramstage-y += ../common/ddp.c ddp.c
ramstage-y += devapc.c
diff --git a/src/soc/mediatek/mt8195/bootblock.c b/src/soc/mediatek/mt8195/bootblock.c
index 17fd27e53f77..3adf5c17bd1f 100644
--- a/src/soc/mediatek/mt8195/bootblock.c
+++ b/src/soc/mediatek/mt8195/bootblock.c
@@ -4,11 +4,13 @@
#include <soc/eint_event.h>
#include <soc/mmu_operations.h>
#include <soc/pll.h>
+#include <soc/tracker_common.h>
#include <soc/wdt.h>
void bootblock_soc_init(void)
{
mtk_mmu_init();
+ bustracker_init();
mtk_wdt_init();
mt_pll_init();
unmask_eint_event_mask();
diff --git a/src/soc/mediatek/mt8195/soc.c b/src/soc/mediatek/mt8195/soc.c
index 80ca3d9d11ab..d28f66857918 100644
--- a/src/soc/mediatek/mt8195/soc.c
+++ b/src/soc/mediatek/mt8195/soc.c
@@ -10,7 +10,6 @@
#include <soc/mcupm.h>
#include <soc/mmu_operations.h>
#include <soc/sspm.h>
-#include <soc/tracker_common.h>
#include <soc/ufs.h>
#include <symbols.h>
@@ -38,7 +37,6 @@ static void soc_init(struct device *dev)
ufs_disable_refclk();
hdmi_low_power_setting();
- bustracker_init();
}
static struct device_operations soc_ops = {