// SPDX-License-Identifier: GPL-2.0 /* * Watchdog driver * Copyright (C) 2019 frank */ #include #include #include #include static const int wdt_timeout_map[] = { [1] = 0x1, /* 1s */ [2] = 0x2, /* 2s */ [3] = 0x3, /* 3s */ [4] = 0x4, /* 4s */ [5] = 0x5, /* 5s */ [6] = 0x6, /* 6s */ [8] = 0x7, /* 8s */ [10] = 0x8, /* 10s */ [12] = 0x9, /* 12s */ [14] = 0xA, /* 14s */ [16] = 0xB, /* 16s */ }; void hw_watchdog_disable(void) { struct sunxi_wdog *wdt = (struct sunxi_wdog *)WATCH_BASE; unsigned int wtmode; wtmode = readl(&wdt->mode); wtmode &= ~WDT_MODE_EN; writel(wtmode, &wdt->mode); } static void watchdog_reset(int timeout) { struct sunxi_wdog *wdt = (struct sunxi_wdog *)WATCH_BASE; unsigned int wtmode; hw_watchdog_disable(); if (wdt_timeout_map[timeout] == 0) timeout++; wtmode = wdt_timeout_map[timeout] << 4 | WDT_MODE_EN; writel(WDT_CFG_RESET, &wdt->cfg); writel(wtmode, &wdt->mode); writel(WDT_CTRL_KEY | WDT_CTRL_RESTART, &wdt->ctl); } void hw_watchdog_reset(void) { /* open wdog only when normal boot*/ if (get_boot_work_mode()) return; watchdog_reset(WDOG_TIMEOUT); }