2020-04-04 18:51:11 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2015-07-31 11:10:46 +02:00
|
|
|
|
2019-03-03 07:01:05 +01:00
|
|
|
#include <device/mmio.h>
|
2015-07-31 11:10:46 +02:00
|
|
|
#include <console/console.h>
|
|
|
|
#include <soc/wdt.h>
|
2016-03-24 00:08:11 +01:00
|
|
|
#include <vendorcode/google/chromeos/chromeos.h>
|
2015-07-31 11:10:46 +02:00
|
|
|
|
2021-09-27 07:06:53 +02:00
|
|
|
__weak void mtk_wdt_clr_status(uint32_t wdt_sta) { /* do nothing */ }
|
|
|
|
|
2015-07-31 11:10:46 +02:00
|
|
|
int mtk_wdt_init(void)
|
|
|
|
{
|
|
|
|
uint32_t wdt_sta;
|
|
|
|
|
2021-04-22 07:34:04 +02:00
|
|
|
/* Writing mode register will clear status register */
|
2018-06-12 08:10:09 +02:00
|
|
|
wdt_sta = read32(&mtk_wdt->wdt_status);
|
2015-07-31 11:10:46 +02:00
|
|
|
|
2021-09-27 07:06:53 +02:00
|
|
|
mtk_wdt_clr_status(wdt_sta);
|
2021-04-22 07:34:04 +02:00
|
|
|
|
2015-07-31 11:10:46 +02:00
|
|
|
printk(BIOS_INFO, "WDT: Last reset was ");
|
2016-03-24 00:08:11 +01:00
|
|
|
if (wdt_sta & MTK_WDT_STA_HW_RST) {
|
2015-07-31 11:10:46 +02:00
|
|
|
printk(BIOS_INFO, "hardware watchdog\n");
|
2016-03-24 00:08:11 +01:00
|
|
|
mark_watchdog_tombstone();
|
2021-08-25 14:01:33 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* We trigger secondary reset by triggering WDT hardware to send signal to EC.
|
|
|
|
* We do not use do_board_reset() to send signal to EC
|
|
|
|
* which is controlled by software driver.
|
|
|
|
*/
|
|
|
|
write32(&mtk_wdt->wdt_mode, MTK_WDT_MODE_EXTEN | MTK_WDT_MODE_KEY);
|
|
|
|
write32(&mtk_wdt->wdt_swrst, MTK_WDT_SWRST_KEY);
|
2016-03-24 00:08:11 +01:00
|
|
|
} else if (wdt_sta & MTK_WDT_STA_SW_RST)
|
2015-07-31 11:10:46 +02:00
|
|
|
printk(BIOS_INFO, "normal software reboot\n");
|
|
|
|
else if (wdt_sta & MTK_WDT_STA_SPM_RST)
|
|
|
|
printk(BIOS_INFO, "SPM reboot\n");
|
|
|
|
else if (!wdt_sta)
|
|
|
|
printk(BIOS_INFO, "cold boot\n");
|
|
|
|
else
|
|
|
|
printk(BIOS_INFO, "unexpected reset type: %#.8x\n", wdt_sta);
|
|
|
|
|
|
|
|
/* Config watchdog reboot mode:
|
|
|
|
* Clearing bits:
|
|
|
|
* DUAL_MODE & IRQ: trigger reset instead of irq then reset.
|
|
|
|
* EXT_POL: select watchdog output signal as active low.
|
|
|
|
* ENABLE: disable watchdog on initialization.
|
|
|
|
* Setting bit EXTEN to enable watchdog output.
|
|
|
|
*/
|
2019-12-03 07:03:27 +01:00
|
|
|
clrsetbits32(&mtk_wdt->wdt_mode,
|
|
|
|
MTK_WDT_MODE_DUAL_MODE | MTK_WDT_MODE_IRQ |
|
|
|
|
MTK_WDT_MODE_EXT_POL | MTK_WDT_MODE_ENABLE,
|
|
|
|
MTK_WDT_MODE_EXTEN | MTK_WDT_MODE_KEY);
|
2015-07-31 11:10:46 +02:00
|
|
|
|
|
|
|
return wdt_sta;
|
|
|
|
}
|