2 * This program is free software; you can redistribute it and/or modify it
3 * under the terms of the GNU General Public License version 2 as published
4 * by the Free Software Foundation.
6 * Copyright (C) 2010 John Crispin <john@phrozen.org>
7 * Copyright (C) 2017 Hauke Mehrtens <hauke@hauke-m.de>
8 * Based on EP93xx wdt driver
11 #include <linux/module.h>
12 #include <linux/bitops.h>
13 #include <linux/watchdog.h>
14 #include <linux/of_platform.h>
15 #include <linux/uaccess.h>
16 #include <linux/clk.h>
18 #include <linux/regmap.h>
19 #include <linux/mfd/syscon.h>
21 #include <lantiq_soc.h>
23 #define LTQ_XRX_RCU_RST_STAT 0x0014
24 #define LTQ_XRX_RCU_RST_STAT_WDT BIT(31)
26 /* CPU0 Reset Source Register */
27 #define LTQ_FALCON_SYS1_CPU0RS 0x0060
28 /* reset cause mask */
29 #define LTQ_FALCON_SYS1_CPU0RS_MASK 0x0007
30 #define LTQ_FALCON_SYS1_CPU0RS_WDT 0x02
33 * Section 3.4 of the datasheet
34 * The password sequence protects the WDT control register from unintended
35 * write actions, which might cause malfunction of the WDT.
37 * essentially the following two magic passwords need to be written to allow
38 * IO access to the WDT core
40 #define LTQ_WDT_CR_PW1 0x00BE0000
41 #define LTQ_WDT_CR_PW2 0x00DC0000
43 #define LTQ_WDT_CR 0x0 /* watchdog control register */
44 #define LTQ_WDT_CR_GEN BIT(31) /* enable bit */
45 /* Pre-warning limit set to 1/16 of max WDT period */
46 #define LTQ_WDT_CR_PWL (0x3 << 26)
47 /* set clock divider to 0x40000 */
48 #define LTQ_WDT_CR_CLKDIV (0x3 << 24)
49 #define LTQ_WDT_CR_PW_MASK GENMASK(23, 16) /* Password field */
50 #define LTQ_WDT_CR_MAX_TIMEOUT ((1 << 16) - 1) /* The reload field is 16 bit */
51 #define LTQ_WDT_SR 0x8 /* watchdog status register */
52 #define LTQ_WDT_SR_EN BIT(31) /* Enable */
53 #define LTQ_WDT_SR_VALUE_MASK GENMASK(15, 0) /* Timer value */
55 #define LTQ_WDT_DIVIDER 0x40000
57 static bool nowayout
= WATCHDOG_NOWAYOUT
;
60 int (*bootstatus_get
)(struct device
*dev
);
64 struct watchdog_device wdt
;
65 void __iomem
*membase
;
66 unsigned long clk_rate
;
69 static u32
ltq_wdt_r32(struct ltq_wdt_priv
*priv
, u32 offset
)
71 return __raw_readl(priv
->membase
+ offset
);
74 static void ltq_wdt_w32(struct ltq_wdt_priv
*priv
, u32 val
, u32 offset
)
76 __raw_writel(val
, priv
->membase
+ offset
);
79 static void ltq_wdt_mask(struct ltq_wdt_priv
*priv
, u32 clear
, u32 set
,
82 u32 val
= ltq_wdt_r32(priv
, offset
);
86 ltq_wdt_w32(priv
, val
, offset
);
89 static struct ltq_wdt_priv
*ltq_wdt_get_priv(struct watchdog_device
*wdt
)
91 return container_of(wdt
, struct ltq_wdt_priv
, wdt
);
94 static struct watchdog_info ltq_wdt_info
= {
95 .options
= WDIOF_MAGICCLOSE
| WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
|
97 .identity
= "ltq_wdt",
100 static int ltq_wdt_start(struct watchdog_device
*wdt
)
102 struct ltq_wdt_priv
*priv
= ltq_wdt_get_priv(wdt
);
105 timeout
= wdt
->timeout
* priv
->clk_rate
;
107 ltq_wdt_mask(priv
, LTQ_WDT_CR_PW_MASK
, LTQ_WDT_CR_PW1
, LTQ_WDT_CR
);
108 /* write the second magic plus the configuration and new timeout */
109 ltq_wdt_mask(priv
, LTQ_WDT_CR_PW_MASK
| LTQ_WDT_CR_MAX_TIMEOUT
,
110 LTQ_WDT_CR_GEN
| LTQ_WDT_CR_PWL
| LTQ_WDT_CR_CLKDIV
|
111 LTQ_WDT_CR_PW2
| timeout
,
117 static int ltq_wdt_stop(struct watchdog_device
*wdt
)
119 struct ltq_wdt_priv
*priv
= ltq_wdt_get_priv(wdt
);
121 ltq_wdt_mask(priv
, LTQ_WDT_CR_PW_MASK
, LTQ_WDT_CR_PW1
, LTQ_WDT_CR
);
122 ltq_wdt_mask(priv
, LTQ_WDT_CR_GEN
| LTQ_WDT_CR_PW_MASK
,
123 LTQ_WDT_CR_PW2
, LTQ_WDT_CR
);
128 static int ltq_wdt_ping(struct watchdog_device
*wdt
)
130 struct ltq_wdt_priv
*priv
= ltq_wdt_get_priv(wdt
);
133 timeout
= wdt
->timeout
* priv
->clk_rate
;
135 ltq_wdt_mask(priv
, LTQ_WDT_CR_PW_MASK
, LTQ_WDT_CR_PW1
, LTQ_WDT_CR
);
136 /* write the second magic plus the configuration and new timeout */
137 ltq_wdt_mask(priv
, LTQ_WDT_CR_PW_MASK
| LTQ_WDT_CR_MAX_TIMEOUT
,
138 LTQ_WDT_CR_PW2
| timeout
, LTQ_WDT_CR
);
143 static unsigned int ltq_wdt_get_timeleft(struct watchdog_device
*wdt
)
145 struct ltq_wdt_priv
*priv
= ltq_wdt_get_priv(wdt
);
148 timeout
= ltq_wdt_r32(priv
, LTQ_WDT_SR
) & LTQ_WDT_SR_VALUE_MASK
;
149 return do_div(timeout
, priv
->clk_rate
);
152 static const struct watchdog_ops ltq_wdt_ops
= {
153 .owner
= THIS_MODULE
,
154 .start
= ltq_wdt_start
,
155 .stop
= ltq_wdt_stop
,
156 .ping
= ltq_wdt_ping
,
157 .get_timeleft
= ltq_wdt_get_timeleft
,
160 static int ltq_wdt_xrx_bootstatus_get(struct device
*dev
)
162 struct regmap
*rcu_regmap
;
166 rcu_regmap
= syscon_regmap_lookup_by_phandle(dev
->of_node
, "regmap");
167 if (IS_ERR(rcu_regmap
))
168 return PTR_ERR(rcu_regmap
);
170 err
= regmap_read(rcu_regmap
, LTQ_XRX_RCU_RST_STAT
, &val
);
174 if (val
& LTQ_XRX_RCU_RST_STAT_WDT
)
175 return WDIOF_CARDRESET
;
180 static int ltq_wdt_falcon_bootstatus_get(struct device
*dev
)
182 struct regmap
*rcu_regmap
;
186 rcu_regmap
= syscon_regmap_lookup_by_phandle(dev
->of_node
,
188 if (IS_ERR(rcu_regmap
))
189 return PTR_ERR(rcu_regmap
);
191 err
= regmap_read(rcu_regmap
, LTQ_FALCON_SYS1_CPU0RS
, &val
);
195 if ((val
& LTQ_FALCON_SYS1_CPU0RS_MASK
) == LTQ_FALCON_SYS1_CPU0RS_WDT
)
196 return WDIOF_CARDRESET
;
201 static int ltq_wdt_probe(struct platform_device
*pdev
)
203 struct device
*dev
= &pdev
->dev
;
204 struct ltq_wdt_priv
*priv
;
205 struct watchdog_device
*wdt
;
206 struct resource
*res
;
208 const struct ltq_wdt_hw
*ltq_wdt_hw
;
212 priv
= devm_kzalloc(dev
, sizeof(*priv
), GFP_KERNEL
);
216 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
217 priv
->membase
= devm_ioremap_resource(dev
, res
);
218 if (IS_ERR(priv
->membase
))
219 return PTR_ERR(priv
->membase
);
221 /* we do not need to enable the clock as it is always running */
223 priv
->clk_rate
= clk_get_rate(clk
) / LTQ_WDT_DIVIDER
;
224 if (!priv
->clk_rate
) {
225 dev_err(dev
, "clock rate less than divider %i\n",
231 wdt
->info
= <q_wdt_info
;
232 wdt
->ops
= <q_wdt_ops
;
233 wdt
->min_timeout
= 1;
234 wdt
->max_timeout
= LTQ_WDT_CR_MAX_TIMEOUT
/ priv
->clk_rate
;
235 wdt
->timeout
= wdt
->max_timeout
;
238 ltq_wdt_hw
= of_device_get_match_data(dev
);
239 if (ltq_wdt_hw
&& ltq_wdt_hw
->bootstatus_get
) {
240 ret
= ltq_wdt_hw
->bootstatus_get(dev
);
242 wdt
->bootstatus
= ret
;
245 watchdog_set_nowayout(wdt
, nowayout
);
246 watchdog_init_timeout(wdt
, 0, dev
);
248 status
= ltq_wdt_r32(priv
, LTQ_WDT_SR
);
249 if (status
& LTQ_WDT_SR_EN
) {
251 * If the watchdog is already running overwrite it with our
252 * new settings. Stop is not needed as the start call will
253 * replace all settings anyway.
256 set_bit(WDOG_HW_RUNNING
, &wdt
->status
);
259 return devm_watchdog_register_device(dev
, wdt
);
262 static const struct ltq_wdt_hw ltq_wdt_xrx100
= {
263 .bootstatus_get
= ltq_wdt_xrx_bootstatus_get
,
266 static const struct ltq_wdt_hw ltq_wdt_falcon
= {
267 .bootstatus_get
= ltq_wdt_falcon_bootstatus_get
,
270 static const struct of_device_id ltq_wdt_match
[] = {
271 { .compatible
= "lantiq,wdt", .data
= NULL
},
272 { .compatible
= "lantiq,xrx100-wdt", .data
= <q_wdt_xrx100
},
273 { .compatible
= "lantiq,falcon-wdt", .data
= <q_wdt_falcon
},
276 MODULE_DEVICE_TABLE(of
, ltq_wdt_match
);
278 static struct platform_driver ltq_wdt_driver
= {
279 .probe
= ltq_wdt_probe
,
282 .of_match_table
= ltq_wdt_match
,
286 module_platform_driver(ltq_wdt_driver
);
288 module_param(nowayout
, bool, 0);
289 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started");
290 MODULE_AUTHOR("John Crispin <john@phrozen.org>");
291 MODULE_DESCRIPTION("Lantiq SoC Watchdog");
292 MODULE_LICENSE("GPL");