1 // SPDX-License-Identifier: GPL-2.0-only
3 * Ralink MT7621/MT7628 built-in hardware watchdog timer
5 * Copyright (C) 2014 John Crispin <john@phrozen.org>
7 * This driver was based on: drivers/watchdog/rt2880_wdt.c
10 #include <linux/clk.h>
11 #include <linux/reset.h>
12 #include <linux/module.h>
13 #include <linux/kernel.h>
14 #include <linux/watchdog.h>
15 #include <linux/moduleparam.h>
16 #include <linux/platform_device.h>
17 #include <linux/mod_devicetable.h>
18 #include <linux/mfd/syscon.h>
19 #include <linux/regmap.h>
21 #define SYSC_RSTSTAT 0x38
22 #define WDT_RST_CAUSE BIT(1)
24 #define RALINK_WDT_TIMEOUT 30
26 #define TIMER_REG_TMRSTAT 0x00
27 #define TIMER_REG_TMR1LOAD 0x24
28 #define TIMER_REG_TMR1CTL 0x20
30 #define TMR1CTL_ENABLE BIT(7)
31 #define TMR1CTL_RESTART BIT(9)
32 #define TMR1CTL_PRESCALE_SHIFT 16
34 struct mt7621_wdt_data {
36 struct reset_control *rst;
38 struct watchdog_device wdt;
41 static bool nowayout = WATCHDOG_NOWAYOUT;
42 module_param(nowayout, bool, 0);
43 MODULE_PARM_DESC(nowayout,
44 "Watchdog cannot be stopped once started (default="
45 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
47 static inline void rt_wdt_w32(void __iomem *base, unsigned int reg, u32 val)
49 iowrite32(val, base + reg);
52 static inline u32 rt_wdt_r32(void __iomem *base, unsigned int reg)
54 return ioread32(base + reg);
57 static int mt7621_wdt_ping(struct watchdog_device *w)
59 struct mt7621_wdt_data *drvdata = watchdog_get_drvdata(w);
61 rt_wdt_w32(drvdata->base, TIMER_REG_TMRSTAT, TMR1CTL_RESTART);
66 static int mt7621_wdt_set_timeout(struct watchdog_device *w, unsigned int t)
68 struct mt7621_wdt_data *drvdata = watchdog_get_drvdata(w);
71 rt_wdt_w32(drvdata->base, TIMER_REG_TMR1LOAD, t * 1000);
77 static int mt7621_wdt_start(struct watchdog_device *w)
79 struct mt7621_wdt_data *drvdata = watchdog_get_drvdata(w);
82 /* set the prescaler to 1ms == 1000us */
83 rt_wdt_w32(drvdata->base, TIMER_REG_TMR1CTL, 1000 << TMR1CTL_PRESCALE_SHIFT);
85 mt7621_wdt_set_timeout(w, w->timeout);
87 t = rt_wdt_r32(drvdata->base, TIMER_REG_TMR1CTL);
89 rt_wdt_w32(drvdata->base, TIMER_REG_TMR1CTL, t);
94 static int mt7621_wdt_stop(struct watchdog_device *w)
96 struct mt7621_wdt_data *drvdata = watchdog_get_drvdata(w);
101 t = rt_wdt_r32(drvdata->base, TIMER_REG_TMR1CTL);
102 t &= ~TMR1CTL_ENABLE;
103 rt_wdt_w32(drvdata->base, TIMER_REG_TMR1CTL, t);
108 static int mt7621_wdt_bootcause(struct mt7621_wdt_data *d)
112 regmap_read(d->sysc, SYSC_RSTSTAT, &val);
113 if (val & WDT_RST_CAUSE)
114 return WDIOF_CARDRESET;
119 static int mt7621_wdt_is_running(struct watchdog_device *w)
121 struct mt7621_wdt_data *drvdata = watchdog_get_drvdata(w);
123 return !!(rt_wdt_r32(drvdata->base, TIMER_REG_TMR1CTL) & TMR1CTL_ENABLE);
126 static const struct watchdog_info mt7621_wdt_info = {
127 .identity = "Mediatek Watchdog",
128 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
131 static const struct watchdog_ops mt7621_wdt_ops = {
132 .owner = THIS_MODULE,
133 .start = mt7621_wdt_start,
134 .stop = mt7621_wdt_stop,
135 .ping = mt7621_wdt_ping,
136 .set_timeout = mt7621_wdt_set_timeout,
139 static int mt7621_wdt_probe(struct platform_device *pdev)
141 struct device_node *np = pdev->dev.of_node;
142 struct device *dev = &pdev->dev;
143 struct watchdog_device *mt7621_wdt;
144 struct mt7621_wdt_data *drvdata;
147 drvdata = devm_kzalloc(dev, sizeof(*drvdata), GFP_KERNEL);
151 drvdata->sysc = syscon_regmap_lookup_by_phandle(np, "mediatek,sysctl");
152 if (IS_ERR(drvdata->sysc)) {
153 drvdata->sysc = syscon_regmap_lookup_by_compatible("mediatek,mt7621-sysc");
154 if (IS_ERR(drvdata->sysc))
155 return PTR_ERR(drvdata->sysc);
158 drvdata->base = devm_platform_ioremap_resource(pdev, 0);
159 if (IS_ERR(drvdata->base))
160 return PTR_ERR(drvdata->base);
162 drvdata->rst = devm_reset_control_get_exclusive(dev, NULL);
163 if (!IS_ERR(drvdata->rst))
164 reset_control_deassert(drvdata->rst);
166 mt7621_wdt = &drvdata->wdt;
167 mt7621_wdt->info = &mt7621_wdt_info;
168 mt7621_wdt->ops = &mt7621_wdt_ops;
169 mt7621_wdt->min_timeout = 1;
170 mt7621_wdt->max_timeout = 0xfffful / 1000;
171 mt7621_wdt->parent = dev;
173 mt7621_wdt->bootstatus = mt7621_wdt_bootcause(drvdata);
175 watchdog_init_timeout(mt7621_wdt, mt7621_wdt->max_timeout, dev);
176 watchdog_set_nowayout(mt7621_wdt, nowayout);
177 watchdog_set_drvdata(mt7621_wdt, drvdata);
179 if (mt7621_wdt_is_running(mt7621_wdt)) {
181 * Make sure to apply timeout from watchdog core, taking
182 * the prescaler of this driver here into account (the
183 * boot loader might be using a different prescaler).
185 * To avoid spurious resets because of different scaling,
186 * we first disable the watchdog, set the new prescaler
187 * and timeout, and then re-enable the watchdog.
189 mt7621_wdt_stop(mt7621_wdt);
190 mt7621_wdt_start(mt7621_wdt);
191 set_bit(WDOG_HW_RUNNING, &mt7621_wdt->status);
194 err = devm_watchdog_register_device(dev, &drvdata->wdt);
198 platform_set_drvdata(pdev, drvdata);
203 static void mt7621_wdt_shutdown(struct platform_device *pdev)
205 struct mt7621_wdt_data *drvdata = platform_get_drvdata(pdev);
207 mt7621_wdt_stop(&drvdata->wdt);
210 static const struct of_device_id mt7621_wdt_match[] = {
211 { .compatible = "mediatek,mt7621-wdt" },
214 MODULE_DEVICE_TABLE(of, mt7621_wdt_match);
216 static struct platform_driver mt7621_wdt_driver = {
217 .probe = mt7621_wdt_probe,
218 .shutdown = mt7621_wdt_shutdown,
220 .name = KBUILD_MODNAME,
221 .of_match_table = mt7621_wdt_match,
225 module_platform_driver(mt7621_wdt_driver);
227 MODULE_DESCRIPTION("MediaTek MT762x hardware watchdog driver");
228 MODULE_AUTHOR("John Crispin <john@phrozen.org");
229 MODULE_LICENSE("GPL v2");