1 // SPDX-License-Identifier: GPL-2.0-only
4 * Copyright (C) 2010 John Crispin <john@phrozen.org>
5 * Copyright (C) 2017 Hauke Mehrtens <hauke@hauke-m.de>
6 * Based on EP93xx wdt driver
9 #include <linux/module.h>
10 #include <linux/bitops.h>
11 #include <linux/watchdog.h>
12 #include <linux/of_platform.h>
13 #include <linux/uaccess.h>
14 #include <linux/clk.h>
16 #include <linux/regmap.h>
17 #include <linux/mfd/syscon.h>
19 #include <lantiq_soc.h>
21 #define LTQ_XRX_RCU_RST_STAT 0x0014
22 #define LTQ_XRX_RCU_RST_STAT_WDT BIT(31)
24 /* CPU0 Reset Source Register */
25 #define LTQ_FALCON_SYS1_CPU0RS 0x0060
26 /* reset cause mask */
27 #define LTQ_FALCON_SYS1_CPU0RS_MASK 0x0007
28 #define LTQ_FALCON_SYS1_CPU0RS_WDT 0x02
31 * Section 3.4 of the datasheet
32 * The password sequence protects the WDT control register from unintended
33 * write actions, which might cause malfunction of the WDT.
35 * essentially the following two magic passwords need to be written to allow
36 * IO access to the WDT core
38 #define LTQ_WDT_CR_PW1 0x00BE0000
39 #define LTQ_WDT_CR_PW2 0x00DC0000
41 #define LTQ_WDT_CR 0x0 /* watchdog control register */
42 #define LTQ_WDT_CR_GEN BIT(31) /* enable bit */
43 /* Pre-warning limit set to 1/16 of max WDT period */
44 #define LTQ_WDT_CR_PWL (0x3 << 26)
45 /* set clock divider to 0x40000 */
46 #define LTQ_WDT_CR_CLKDIV (0x3 << 24)
47 #define LTQ_WDT_CR_PW_MASK GENMASK(23, 16) /* Password field */
48 #define LTQ_WDT_CR_MAX_TIMEOUT ((1 << 16) - 1) /* The reload field is 16 bit */
49 #define LTQ_WDT_SR 0x8 /* watchdog status register */
50 #define LTQ_WDT_SR_EN BIT(31) /* Enable */
51 #define LTQ_WDT_SR_VALUE_MASK GENMASK(15, 0) /* Timer value */
53 #define LTQ_WDT_DIVIDER 0x40000
55 static bool nowayout = WATCHDOG_NOWAYOUT;
58 int (*bootstatus_get)(struct device *dev);
62 struct watchdog_device wdt;
63 void __iomem *membase;
64 unsigned long clk_rate;
67 static u32 ltq_wdt_r32(struct ltq_wdt_priv *priv, u32 offset)
69 return __raw_readl(priv->membase + offset);
72 static void ltq_wdt_w32(struct ltq_wdt_priv *priv, u32 val, u32 offset)
74 __raw_writel(val, priv->membase + offset);
77 static void ltq_wdt_mask(struct ltq_wdt_priv *priv, u32 clear, u32 set,
80 u32 val = ltq_wdt_r32(priv, offset);
84 ltq_wdt_w32(priv, val, offset);
87 static struct ltq_wdt_priv *ltq_wdt_get_priv(struct watchdog_device *wdt)
89 return container_of(wdt, struct ltq_wdt_priv, wdt);
92 static struct watchdog_info ltq_wdt_info = {
93 .options = WDIOF_MAGICCLOSE | WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING |
95 .identity = "ltq_wdt",
98 static int ltq_wdt_start(struct watchdog_device *wdt)
100 struct ltq_wdt_priv *priv = ltq_wdt_get_priv(wdt);
103 timeout = wdt->timeout * priv->clk_rate;
105 ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK, LTQ_WDT_CR_PW1, LTQ_WDT_CR);
106 /* write the second magic plus the configuration and new timeout */
107 ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK | LTQ_WDT_CR_MAX_TIMEOUT,
108 LTQ_WDT_CR_GEN | LTQ_WDT_CR_PWL | LTQ_WDT_CR_CLKDIV |
109 LTQ_WDT_CR_PW2 | timeout,
115 static int ltq_wdt_stop(struct watchdog_device *wdt)
117 struct ltq_wdt_priv *priv = ltq_wdt_get_priv(wdt);
119 ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK, LTQ_WDT_CR_PW1, LTQ_WDT_CR);
120 ltq_wdt_mask(priv, LTQ_WDT_CR_GEN | LTQ_WDT_CR_PW_MASK,
121 LTQ_WDT_CR_PW2, LTQ_WDT_CR);
126 static int ltq_wdt_ping(struct watchdog_device *wdt)
128 struct ltq_wdt_priv *priv = ltq_wdt_get_priv(wdt);
131 timeout = wdt->timeout * priv->clk_rate;
133 ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK, LTQ_WDT_CR_PW1, LTQ_WDT_CR);
134 /* write the second magic plus the configuration and new timeout */
135 ltq_wdt_mask(priv, LTQ_WDT_CR_PW_MASK | LTQ_WDT_CR_MAX_TIMEOUT,
136 LTQ_WDT_CR_PW2 | timeout, LTQ_WDT_CR);
141 static unsigned int ltq_wdt_get_timeleft(struct watchdog_device *wdt)
143 struct ltq_wdt_priv *priv = ltq_wdt_get_priv(wdt);
146 timeout = ltq_wdt_r32(priv, LTQ_WDT_SR) & LTQ_WDT_SR_VALUE_MASK;
147 return do_div(timeout, priv->clk_rate);
150 static const struct watchdog_ops ltq_wdt_ops = {
151 .owner = THIS_MODULE,
152 .start = ltq_wdt_start,
153 .stop = ltq_wdt_stop,
154 .ping = ltq_wdt_ping,
155 .get_timeleft = ltq_wdt_get_timeleft,
158 static int ltq_wdt_xrx_bootstatus_get(struct device *dev)
160 struct regmap *rcu_regmap;
164 rcu_regmap = syscon_regmap_lookup_by_phandle(dev->of_node, "regmap");
165 if (IS_ERR(rcu_regmap))
166 return PTR_ERR(rcu_regmap);
168 err = regmap_read(rcu_regmap, LTQ_XRX_RCU_RST_STAT, &val);
172 if (val & LTQ_XRX_RCU_RST_STAT_WDT)
173 return WDIOF_CARDRESET;
178 static int ltq_wdt_falcon_bootstatus_get(struct device *dev)
180 struct regmap *rcu_regmap;
184 rcu_regmap = syscon_regmap_lookup_by_phandle(dev->of_node,
186 if (IS_ERR(rcu_regmap))
187 return PTR_ERR(rcu_regmap);
189 err = regmap_read(rcu_regmap, LTQ_FALCON_SYS1_CPU0RS, &val);
193 if ((val & LTQ_FALCON_SYS1_CPU0RS_MASK) == LTQ_FALCON_SYS1_CPU0RS_WDT)
194 return WDIOF_CARDRESET;
199 static int ltq_wdt_probe(struct platform_device *pdev)
201 struct device *dev = &pdev->dev;
202 struct ltq_wdt_priv *priv;
203 struct watchdog_device *wdt;
205 const struct ltq_wdt_hw *ltq_wdt_hw;
209 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
213 priv->membase = devm_platform_ioremap_resource(pdev, 0);
214 if (IS_ERR(priv->membase))
215 return PTR_ERR(priv->membase);
217 /* we do not need to enable the clock as it is always running */
219 priv->clk_rate = clk_get_rate(clk) / LTQ_WDT_DIVIDER;
220 if (!priv->clk_rate) {
221 dev_err(dev, "clock rate less than divider %i\n",
227 wdt->info = <q_wdt_info;
228 wdt->ops = <q_wdt_ops;
229 wdt->min_timeout = 1;
230 wdt->max_timeout = LTQ_WDT_CR_MAX_TIMEOUT / priv->clk_rate;
231 wdt->timeout = wdt->max_timeout;
234 ltq_wdt_hw = of_device_get_match_data(dev);
235 if (ltq_wdt_hw && ltq_wdt_hw->bootstatus_get) {
236 ret = ltq_wdt_hw->bootstatus_get(dev);
238 wdt->bootstatus = ret;
241 watchdog_set_nowayout(wdt, nowayout);
242 watchdog_init_timeout(wdt, 0, dev);
244 status = ltq_wdt_r32(priv, LTQ_WDT_SR);
245 if (status & LTQ_WDT_SR_EN) {
247 * If the watchdog is already running overwrite it with our
248 * new settings. Stop is not needed as the start call will
249 * replace all settings anyway.
252 set_bit(WDOG_HW_RUNNING, &wdt->status);
255 return devm_watchdog_register_device(dev, wdt);
258 static const struct ltq_wdt_hw ltq_wdt_xrx100 = {
259 .bootstatus_get = ltq_wdt_xrx_bootstatus_get,
262 static const struct ltq_wdt_hw ltq_wdt_falcon = {
263 .bootstatus_get = ltq_wdt_falcon_bootstatus_get,
266 static const struct of_device_id ltq_wdt_match[] = {
267 { .compatible = "lantiq,wdt", .data = NULL },
268 { .compatible = "lantiq,xrx100-wdt", .data = <q_wdt_xrx100 },
269 { .compatible = "lantiq,falcon-wdt", .data = <q_wdt_falcon },
272 MODULE_DEVICE_TABLE(of, ltq_wdt_match);
274 static struct platform_driver ltq_wdt_driver = {
275 .probe = ltq_wdt_probe,
278 .of_match_table = ltq_wdt_match,
282 module_platform_driver(ltq_wdt_driver);
284 module_param(nowayout, bool, 0);
285 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started");
286 MODULE_AUTHOR("John Crispin <john@phrozen.org>");
287 MODULE_DESCRIPTION("Lantiq SoC Watchdog");
288 MODULE_LICENSE("GPL");