aboutsummaryrefslogtreecommitdiff
path: root/src/soc/qualcomm/sc7180/watchdog.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/soc/qualcomm/sc7180/watchdog.c')
-rw-r--r--src/soc/qualcomm/sc7180/watchdog.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/soc/qualcomm/sc7180/watchdog.c b/src/soc/qualcomm/sc7180/watchdog.c
new file mode 100644
index 0000000000..954f68aa3d
--- /dev/null
+++ b/src/soc/qualcomm/sc7180/watchdog.c
@@ -0,0 +1,15 @@
+/* SPDX-License-Identifier: GPL-2.0-only */
+
+#include <soc/watchdog.h>
+#include <soc/clock.h>
+#include <console/console.h>
+#include <device/mmio.h>
+#include <vendorcode/google/chromeos/chromeos.h>
+
+void check_wdog(void)
+{
+ uint32_t wdog_sta = read32(&aoss->aoss_cc_reset_status);
+
+ if (wdog_sta & WDOG_RESET_BIT_MASK)
+ mark_watchdog_tombstone();
+}