1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (c) 2004 Simtec Electronics
6 * S3C2410 Watchdog Timer Support
8 * Based on, softdog.c by Alan Cox,
12 #include <linux/module.h>
13 #include <linux/moduleparam.h>
14 #include <linux/types.h>
15 #include <linux/timer.h>
16 #include <linux/watchdog.h>
17 #include <linux/platform_device.h>
18 #include <linux/interrupt.h>
19 #include <linux/clk.h>
20 #include <linux/uaccess.h>
22 #include <linux/cpufreq.h>
23 #include <linux/slab.h>
24 #include <linux/err.h>
26 #include <linux/of_device.h>
27 #include <linux/mfd/syscon.h>
28 #include <linux/regmap.h>
29 #include <linux/delay.h>
31 #define S3C2410_WTCON 0x00
32 #define S3C2410_WTDAT 0x04
33 #define S3C2410_WTCNT 0x08
34 #define S3C2410_WTCLRINT 0x0c
36 #define S3C2410_WTCNT_MAXCNT 0xffff
38 #define S3C2410_WTCON_RSTEN (1 << 0)
39 #define S3C2410_WTCON_INTEN (1 << 2)
40 #define S3C2410_WTCON_ENABLE (1 << 5)
42 #define S3C2410_WTCON_DIV16 (0 << 3)
43 #define S3C2410_WTCON_DIV32 (1 << 3)
44 #define S3C2410_WTCON_DIV64 (2 << 3)
45 #define S3C2410_WTCON_DIV128 (3 << 3)
47 #define S3C2410_WTCON_MAXDIV 0x80
49 #define S3C2410_WTCON_PRESCALE(x) ((x) << 8)
50 #define S3C2410_WTCON_PRESCALE_MASK (0xff << 8)
51 #define S3C2410_WTCON_PRESCALE_MAX 0xff
53 #define S3C2410_WATCHDOG_ATBOOT (0)
54 #define S3C2410_WATCHDOG_DEFAULT_TIME (15)
56 #define EXYNOS5_RST_STAT_REG_OFFSET 0x0404
57 #define EXYNOS5_WDT_DISABLE_REG_OFFSET 0x0408
58 #define EXYNOS5_WDT_MASK_RESET_REG_OFFSET 0x040c
59 #define EXYNOS850_CLUSTER0_NONCPU_OUT 0x1220
60 #define EXYNOS850_CLUSTER0_NONCPU_INT_EN 0x1244
61 #define EXYNOS850_CLUSTER1_NONCPU_OUT 0x1620
62 #define EXYNOS850_CLUSTER1_NONCPU_INT_EN 0x1644
63 #define EXYNOSAUTOV9_CLUSTER1_NONCPU_OUT 0x1520
64 #define EXYNOSAUTOV9_CLUSTER1_NONCPU_INT_EN 0x1544
66 #define EXYNOS850_CLUSTER0_WDTRESET_BIT 24
67 #define EXYNOS850_CLUSTER1_WDTRESET_BIT 23
68 #define EXYNOSAUTOV9_CLUSTER0_WDTRESET_BIT 25
69 #define EXYNOSAUTOV9_CLUSTER1_WDTRESET_BIT 24
72 * DOC: Quirk flags for different Samsung watchdog IP-cores
74 * This driver supports multiple Samsung SoCs, each of which might have
75 * different set of registers and features supported. As watchdog block
76 * sometimes requires modifying PMU registers for proper functioning, register
77 * differences in both watchdog and PMU IP-cores should be accounted for. Quirk
78 * flags described below serve the purpose of telling the driver about mentioned
79 * SoC traits, and can be specified in driver data for each particular supported
82 * %QUIRK_HAS_WTCLRINT_REG: Watchdog block has WTCLRINT register. It's used to
83 * clear the interrupt once the interrupt service routine is complete. It's
84 * write-only, writing any values to this register clears the interrupt, but
85 * reading is not permitted.
87 * %QUIRK_HAS_PMU_MASK_RESET: PMU block has the register for disabling/enabling
88 * WDT reset request. On old SoCs it's usually called MASK_WDT_RESET_REQUEST,
89 * new SoCs have CLUSTERx_NONCPU_INT_EN register, which 'mask_bit' value is
90 * inverted compared to the former one.
92 * %QUIRK_HAS_PMU_RST_STAT: PMU block has RST_STAT (reset status) register,
93 * which contains bits indicating the reason for most recent CPU reset. If
94 * present, driver will use this register to check if previous reboot was due to
95 * watchdog timer reset.
97 * %QUIRK_HAS_PMU_AUTO_DISABLE: PMU block has AUTOMATIC_WDT_RESET_DISABLE
98 * register. If 'mask_bit' bit is set, PMU will disable WDT reset when
99 * corresponding processor is in reset state.
101 * %QUIRK_HAS_PMU_CNT_EN: PMU block has some register (e.g. CLUSTERx_NONCPU_OUT)
102 * with "watchdog counter enable" bit. That bit should be set to make watchdog
105 #define QUIRK_HAS_WTCLRINT_REG (1 << 0)
106 #define QUIRK_HAS_PMU_MASK_RESET (1 << 1)
107 #define QUIRK_HAS_PMU_RST_STAT (1 << 2)
108 #define QUIRK_HAS_PMU_AUTO_DISABLE (1 << 3)
109 #define QUIRK_HAS_PMU_CNT_EN (1 << 4)
111 /* These quirks require that we have a PMU register map */
112 #define QUIRKS_HAVE_PMUREG \
113 (QUIRK_HAS_PMU_MASK_RESET | QUIRK_HAS_PMU_RST_STAT | \
114 QUIRK_HAS_PMU_AUTO_DISABLE | QUIRK_HAS_PMU_CNT_EN)
116 static bool nowayout = WATCHDOG_NOWAYOUT;
117 static int tmr_margin;
118 static int tmr_atboot = S3C2410_WATCHDOG_ATBOOT;
119 static int soft_noboot;
121 module_param(tmr_margin, int, 0);
122 module_param(tmr_atboot, int, 0);
123 module_param(nowayout, bool, 0);
124 module_param(soft_noboot, int, 0);
126 MODULE_PARM_DESC(tmr_margin, "Watchdog tmr_margin in seconds. (default="
127 __MODULE_STRING(S3C2410_WATCHDOG_DEFAULT_TIME) ")");
128 MODULE_PARM_DESC(tmr_atboot,
129 "Watchdog is started at boot time if set to 1, default="
130 __MODULE_STRING(S3C2410_WATCHDOG_ATBOOT));
131 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
132 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
133 MODULE_PARM_DESC(soft_noboot, "Watchdog action, set to 1 to ignore reboots, 0 to reboot (default 0)");
136 * struct s3c2410_wdt_variant - Per-variant config data
138 * @disable_reg: Offset in pmureg for the register that disables the watchdog
139 * timer reset functionality.
140 * @mask_reset_reg: Offset in pmureg for the register that masks the watchdog
141 * timer reset functionality.
142 * @mask_reset_inv: If set, mask_reset_reg value will have inverted meaning.
143 * @mask_bit: Bit number for the watchdog timer in the disable register and the
144 * mask reset register.
145 * @rst_stat_reg: Offset in pmureg for the register that has the reset status.
146 * @rst_stat_bit: Bit number in the rst_stat register indicating a watchdog
148 * @cnt_en_reg: Offset in pmureg for the register that enables WDT counter.
149 * @cnt_en_bit: Bit number for "watchdog counter enable" in cnt_en register.
150 * @quirks: A bitfield of quirks.
153 struct s3c2410_wdt_variant {
167 struct clk *bus_clk; /* for register interface (PCLK) */
168 struct clk *src_clk; /* for WDT counter */
169 void __iomem *reg_base;
172 unsigned long wtcon_save;
173 unsigned long wtdat_save;
174 struct watchdog_device wdt_device;
175 struct notifier_block freq_transition;
176 const struct s3c2410_wdt_variant *drv_data;
177 struct regmap *pmureg;
180 static const struct s3c2410_wdt_variant drv_data_s3c2410 = {
185 static const struct s3c2410_wdt_variant drv_data_s3c6410 = {
186 .quirks = QUIRK_HAS_WTCLRINT_REG,
189 static const struct s3c2410_wdt_variant drv_data_exynos5250 = {
190 .disable_reg = EXYNOS5_WDT_DISABLE_REG_OFFSET,
191 .mask_reset_reg = EXYNOS5_WDT_MASK_RESET_REG_OFFSET,
193 .rst_stat_reg = EXYNOS5_RST_STAT_REG_OFFSET,
195 .quirks = QUIRK_HAS_WTCLRINT_REG | QUIRK_HAS_PMU_MASK_RESET | \
196 QUIRK_HAS_PMU_RST_STAT | QUIRK_HAS_PMU_AUTO_DISABLE,
199 static const struct s3c2410_wdt_variant drv_data_exynos5420 = {
200 .disable_reg = EXYNOS5_WDT_DISABLE_REG_OFFSET,
201 .mask_reset_reg = EXYNOS5_WDT_MASK_RESET_REG_OFFSET,
203 .rst_stat_reg = EXYNOS5_RST_STAT_REG_OFFSET,
205 .quirks = QUIRK_HAS_WTCLRINT_REG | QUIRK_HAS_PMU_MASK_RESET | \
206 QUIRK_HAS_PMU_RST_STAT | QUIRK_HAS_PMU_AUTO_DISABLE,
209 static const struct s3c2410_wdt_variant drv_data_exynos7 = {
210 .disable_reg = EXYNOS5_WDT_DISABLE_REG_OFFSET,
211 .mask_reset_reg = EXYNOS5_WDT_MASK_RESET_REG_OFFSET,
213 .rst_stat_reg = EXYNOS5_RST_STAT_REG_OFFSET,
214 .rst_stat_bit = 23, /* A57 WDTRESET */
215 .quirks = QUIRK_HAS_WTCLRINT_REG | QUIRK_HAS_PMU_MASK_RESET | \
216 QUIRK_HAS_PMU_RST_STAT | QUIRK_HAS_PMU_AUTO_DISABLE,
219 static const struct s3c2410_wdt_variant drv_data_exynos850_cl0 = {
220 .mask_reset_reg = EXYNOS850_CLUSTER0_NONCPU_INT_EN,
222 .mask_reset_inv = true,
223 .rst_stat_reg = EXYNOS5_RST_STAT_REG_OFFSET,
224 .rst_stat_bit = EXYNOS850_CLUSTER0_WDTRESET_BIT,
225 .cnt_en_reg = EXYNOS850_CLUSTER0_NONCPU_OUT,
227 .quirks = QUIRK_HAS_WTCLRINT_REG | QUIRK_HAS_PMU_MASK_RESET | \
228 QUIRK_HAS_PMU_RST_STAT | QUIRK_HAS_PMU_CNT_EN,
231 static const struct s3c2410_wdt_variant drv_data_exynos850_cl1 = {
232 .mask_reset_reg = EXYNOS850_CLUSTER1_NONCPU_INT_EN,
234 .mask_reset_inv = true,
235 .rst_stat_reg = EXYNOS5_RST_STAT_REG_OFFSET,
236 .rst_stat_bit = EXYNOS850_CLUSTER1_WDTRESET_BIT,
237 .cnt_en_reg = EXYNOS850_CLUSTER1_NONCPU_OUT,
239 .quirks = QUIRK_HAS_WTCLRINT_REG | QUIRK_HAS_PMU_MASK_RESET | \
240 QUIRK_HAS_PMU_RST_STAT | QUIRK_HAS_PMU_CNT_EN,
243 static const struct s3c2410_wdt_variant drv_data_exynosautov9_cl0 = {
244 .mask_reset_reg = EXYNOS850_CLUSTER0_NONCPU_INT_EN,
246 .mask_reset_inv = true,
247 .rst_stat_reg = EXYNOS5_RST_STAT_REG_OFFSET,
248 .rst_stat_bit = EXYNOSAUTOV9_CLUSTER0_WDTRESET_BIT,
249 .cnt_en_reg = EXYNOS850_CLUSTER0_NONCPU_OUT,
251 .quirks = QUIRK_HAS_WTCLRINT_REG | QUIRK_HAS_PMU_MASK_RESET |
252 QUIRK_HAS_PMU_RST_STAT | QUIRK_HAS_PMU_CNT_EN,
255 static const struct s3c2410_wdt_variant drv_data_exynosautov9_cl1 = {
256 .mask_reset_reg = EXYNOSAUTOV9_CLUSTER1_NONCPU_INT_EN,
258 .mask_reset_inv = true,
259 .rst_stat_reg = EXYNOS5_RST_STAT_REG_OFFSET,
260 .rst_stat_bit = EXYNOSAUTOV9_CLUSTER1_WDTRESET_BIT,
261 .cnt_en_reg = EXYNOSAUTOV9_CLUSTER1_NONCPU_OUT,
263 .quirks = QUIRK_HAS_WTCLRINT_REG | QUIRK_HAS_PMU_MASK_RESET |
264 QUIRK_HAS_PMU_RST_STAT | QUIRK_HAS_PMU_CNT_EN,
267 static const struct of_device_id s3c2410_wdt_match[] = {
268 { .compatible = "samsung,s3c2410-wdt",
269 .data = &drv_data_s3c2410 },
270 { .compatible = "samsung,s3c6410-wdt",
271 .data = &drv_data_s3c6410 },
272 { .compatible = "samsung,exynos5250-wdt",
273 .data = &drv_data_exynos5250 },
274 { .compatible = "samsung,exynos5420-wdt",
275 .data = &drv_data_exynos5420 },
276 { .compatible = "samsung,exynos7-wdt",
277 .data = &drv_data_exynos7 },
278 { .compatible = "samsung,exynos850-wdt",
279 .data = &drv_data_exynos850_cl0 },
280 { .compatible = "samsung,exynosautov9-wdt",
281 .data = &drv_data_exynosautov9_cl0 },
284 MODULE_DEVICE_TABLE(of, s3c2410_wdt_match);
287 static const struct platform_device_id s3c2410_wdt_ids[] = {
289 .name = "s3c2410-wdt",
290 .driver_data = (unsigned long)&drv_data_s3c2410,
294 MODULE_DEVICE_TABLE(platform, s3c2410_wdt_ids);
298 static inline unsigned long s3c2410wdt_get_freq(struct s3c2410_wdt *wdt)
300 return clk_get_rate(wdt->src_clk ? wdt->src_clk : wdt->bus_clk);
303 static inline unsigned int s3c2410wdt_max_timeout(struct s3c2410_wdt *wdt)
305 const unsigned long freq = s3c2410wdt_get_freq(wdt);
307 return S3C2410_WTCNT_MAXCNT / (freq / (S3C2410_WTCON_PRESCALE_MAX + 1)
308 / S3C2410_WTCON_MAXDIV);
311 static inline struct s3c2410_wdt *freq_to_wdt(struct notifier_block *nb)
313 return container_of(nb, struct s3c2410_wdt, freq_transition);
316 static int s3c2410wdt_disable_wdt_reset(struct s3c2410_wdt *wdt, bool mask)
318 const u32 mask_val = BIT(wdt->drv_data->mask_bit);
319 const u32 val = mask ? mask_val : 0;
322 ret = regmap_update_bits(wdt->pmureg, wdt->drv_data->disable_reg,
325 dev_err(wdt->dev, "failed to update reg(%d)\n", ret);
330 static int s3c2410wdt_mask_wdt_reset(struct s3c2410_wdt *wdt, bool mask)
332 const u32 mask_val = BIT(wdt->drv_data->mask_bit);
333 const bool val_inv = wdt->drv_data->mask_reset_inv;
334 const u32 val = (mask ^ val_inv) ? mask_val : 0;
337 ret = regmap_update_bits(wdt->pmureg, wdt->drv_data->mask_reset_reg,
340 dev_err(wdt->dev, "failed to update reg(%d)\n", ret);
345 static int s3c2410wdt_enable_counter(struct s3c2410_wdt *wdt, bool en)
347 const u32 mask_val = BIT(wdt->drv_data->cnt_en_bit);
348 const u32 val = en ? mask_val : 0;
351 ret = regmap_update_bits(wdt->pmureg, wdt->drv_data->cnt_en_reg,
354 dev_err(wdt->dev, "failed to update reg(%d)\n", ret);
359 static int s3c2410wdt_enable(struct s3c2410_wdt *wdt, bool en)
363 if (wdt->drv_data->quirks & QUIRK_HAS_PMU_AUTO_DISABLE) {
364 ret = s3c2410wdt_disable_wdt_reset(wdt, !en);
369 if (wdt->drv_data->quirks & QUIRK_HAS_PMU_MASK_RESET) {
370 ret = s3c2410wdt_mask_wdt_reset(wdt, !en);
375 if (wdt->drv_data->quirks & QUIRK_HAS_PMU_CNT_EN) {
376 ret = s3c2410wdt_enable_counter(wdt, en);
384 static int s3c2410wdt_keepalive(struct watchdog_device *wdd)
386 struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
388 spin_lock(&wdt->lock);
389 writel(wdt->count, wdt->reg_base + S3C2410_WTCNT);
390 spin_unlock(&wdt->lock);
395 static void __s3c2410wdt_stop(struct s3c2410_wdt *wdt)
399 wtcon = readl(wdt->reg_base + S3C2410_WTCON);
400 wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN);
401 writel(wtcon, wdt->reg_base + S3C2410_WTCON);
404 static int s3c2410wdt_stop(struct watchdog_device *wdd)
406 struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
408 spin_lock(&wdt->lock);
409 __s3c2410wdt_stop(wdt);
410 spin_unlock(&wdt->lock);
415 static int s3c2410wdt_start(struct watchdog_device *wdd)
418 struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
420 spin_lock(&wdt->lock);
422 __s3c2410wdt_stop(wdt);
424 wtcon = readl(wdt->reg_base + S3C2410_WTCON);
425 wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128;
428 wtcon |= S3C2410_WTCON_INTEN;
429 wtcon &= ~S3C2410_WTCON_RSTEN;
431 wtcon &= ~S3C2410_WTCON_INTEN;
432 wtcon |= S3C2410_WTCON_RSTEN;
435 dev_dbg(wdt->dev, "Starting watchdog: count=0x%08x, wtcon=%08lx\n",
438 writel(wdt->count, wdt->reg_base + S3C2410_WTDAT);
439 writel(wdt->count, wdt->reg_base + S3C2410_WTCNT);
440 writel(wtcon, wdt->reg_base + S3C2410_WTCON);
441 spin_unlock(&wdt->lock);
446 static inline int s3c2410wdt_is_running(struct s3c2410_wdt *wdt)
448 return readl(wdt->reg_base + S3C2410_WTCON) & S3C2410_WTCON_ENABLE;
451 static int s3c2410wdt_set_heartbeat(struct watchdog_device *wdd,
452 unsigned int timeout)
454 struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
455 unsigned long freq = s3c2410wdt_get_freq(wdt);
457 unsigned int divisor = 1;
463 freq = DIV_ROUND_UP(freq, 128);
464 count = timeout * freq;
466 dev_dbg(wdt->dev, "Heartbeat: count=%d, timeout=%d, freq=%lu\n",
467 count, timeout, freq);
469 /* if the count is bigger than the watchdog register,
470 then work out what we need to do (and if) we can
471 actually make this value
474 if (count >= 0x10000) {
475 divisor = DIV_ROUND_UP(count, 0xffff);
477 if (divisor > 0x100) {
478 dev_err(wdt->dev, "timeout %d too big\n", timeout);
483 dev_dbg(wdt->dev, "Heartbeat: timeout=%d, divisor=%d, count=%d (%08x)\n",
484 timeout, divisor, count, DIV_ROUND_UP(count, divisor));
486 count = DIV_ROUND_UP(count, divisor);
489 /* update the pre-scaler */
490 wtcon = readl(wdt->reg_base + S3C2410_WTCON);
491 wtcon &= ~S3C2410_WTCON_PRESCALE_MASK;
492 wtcon |= S3C2410_WTCON_PRESCALE(divisor-1);
494 writel(count, wdt->reg_base + S3C2410_WTDAT);
495 writel(wtcon, wdt->reg_base + S3C2410_WTCON);
497 wdd->timeout = (count * divisor) / freq;
502 static int s3c2410wdt_restart(struct watchdog_device *wdd, unsigned long action,
505 struct s3c2410_wdt *wdt = watchdog_get_drvdata(wdd);
506 void __iomem *wdt_base = wdt->reg_base;
508 /* disable watchdog, to be safe */
509 writel(0, wdt_base + S3C2410_WTCON);
511 /* put initial values into count and data */
512 writel(0x80, wdt_base + S3C2410_WTCNT);
513 writel(0x80, wdt_base + S3C2410_WTDAT);
515 /* set the watchdog to go and reset... */
516 writel(S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV16 |
517 S3C2410_WTCON_RSTEN | S3C2410_WTCON_PRESCALE(0x20),
518 wdt_base + S3C2410_WTCON);
520 /* wait for reset to assert... */
526 #define OPTIONS (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE)
528 static const struct watchdog_info s3c2410_wdt_ident = {
530 .firmware_version = 0,
531 .identity = "S3C2410 Watchdog",
534 static const struct watchdog_ops s3c2410wdt_ops = {
535 .owner = THIS_MODULE,
536 .start = s3c2410wdt_start,
537 .stop = s3c2410wdt_stop,
538 .ping = s3c2410wdt_keepalive,
539 .set_timeout = s3c2410wdt_set_heartbeat,
540 .restart = s3c2410wdt_restart,
543 static const struct watchdog_device s3c2410_wdd = {
544 .info = &s3c2410_wdt_ident,
545 .ops = &s3c2410wdt_ops,
546 .timeout = S3C2410_WATCHDOG_DEFAULT_TIME,
549 /* interrupt handler code */
551 static irqreturn_t s3c2410wdt_irq(int irqno, void *param)
553 struct s3c2410_wdt *wdt = platform_get_drvdata(param);
555 dev_info(wdt->dev, "watchdog timer expired (irq)\n");
557 s3c2410wdt_keepalive(&wdt->wdt_device);
559 if (wdt->drv_data->quirks & QUIRK_HAS_WTCLRINT_REG)
560 writel(0x1, wdt->reg_base + S3C2410_WTCLRINT);
565 #ifdef CONFIG_ARM_S3C24XX_CPUFREQ
567 static int s3c2410wdt_cpufreq_transition(struct notifier_block *nb,
568 unsigned long val, void *data)
571 struct s3c2410_wdt *wdt = freq_to_wdt(nb);
573 if (!s3c2410wdt_is_running(wdt))
576 if (val == CPUFREQ_PRECHANGE) {
577 /* To ensure that over the change we don't cause the
578 * watchdog to trigger, we perform an keep-alive if
579 * the watchdog is running.
582 s3c2410wdt_keepalive(&wdt->wdt_device);
583 } else if (val == CPUFREQ_POSTCHANGE) {
584 s3c2410wdt_stop(&wdt->wdt_device);
586 ret = s3c2410wdt_set_heartbeat(&wdt->wdt_device,
587 wdt->wdt_device.timeout);
590 s3c2410wdt_start(&wdt->wdt_device);
599 dev_err(wdt->dev, "cannot set new value for timeout %d\n",
600 wdt->wdt_device.timeout);
604 static inline int s3c2410wdt_cpufreq_register(struct s3c2410_wdt *wdt)
606 wdt->freq_transition.notifier_call = s3c2410wdt_cpufreq_transition;
608 return cpufreq_register_notifier(&wdt->freq_transition,
609 CPUFREQ_TRANSITION_NOTIFIER);
612 static inline void s3c2410wdt_cpufreq_deregister(struct s3c2410_wdt *wdt)
614 wdt->freq_transition.notifier_call = s3c2410wdt_cpufreq_transition;
616 cpufreq_unregister_notifier(&wdt->freq_transition,
617 CPUFREQ_TRANSITION_NOTIFIER);
622 static inline int s3c2410wdt_cpufreq_register(struct s3c2410_wdt *wdt)
627 static inline void s3c2410wdt_cpufreq_deregister(struct s3c2410_wdt *wdt)
632 static inline unsigned int s3c2410wdt_get_bootstatus(struct s3c2410_wdt *wdt)
634 unsigned int rst_stat;
637 if (!(wdt->drv_data->quirks & QUIRK_HAS_PMU_RST_STAT))
640 ret = regmap_read(wdt->pmureg, wdt->drv_data->rst_stat_reg, &rst_stat);
642 dev_warn(wdt->dev, "Couldn't get RST_STAT register\n");
643 else if (rst_stat & BIT(wdt->drv_data->rst_stat_bit))
644 return WDIOF_CARDRESET;
649 static inline const struct s3c2410_wdt_variant *
650 s3c2410_get_wdt_drv_data(struct platform_device *pdev)
652 const struct s3c2410_wdt_variant *variant;
653 struct device *dev = &pdev->dev;
655 variant = of_device_get_match_data(dev);
657 /* Device matched by platform_device_id */
658 variant = (struct s3c2410_wdt_variant *)
659 platform_get_device_id(pdev)->driver_data;
663 /* Choose Exynos850/ExynosAutov9 driver data w.r.t. cluster index */
664 if (variant == &drv_data_exynos850_cl0 ||
665 variant == &drv_data_exynosautov9_cl0) {
669 err = of_property_read_u32(dev->of_node,
670 "samsung,cluster-index", &index);
672 dev_err(dev, "failed to get cluster index\n");
680 return (variant == &drv_data_exynos850_cl0) ?
681 &drv_data_exynos850_cl1 :
682 &drv_data_exynosautov9_cl1;
684 dev_err(dev, "wrong cluster index: %u\n", index);
693 static int s3c2410wdt_probe(struct platform_device *pdev)
695 struct device *dev = &pdev->dev;
696 struct s3c2410_wdt *wdt;
701 wdt = devm_kzalloc(dev, sizeof(*wdt), GFP_KERNEL);
706 spin_lock_init(&wdt->lock);
707 wdt->wdt_device = s3c2410_wdd;
709 wdt->drv_data = s3c2410_get_wdt_drv_data(pdev);
713 if (wdt->drv_data->quirks & QUIRKS_HAVE_PMUREG) {
714 wdt->pmureg = syscon_regmap_lookup_by_phandle(dev->of_node,
715 "samsung,syscon-phandle");
716 if (IS_ERR(wdt->pmureg)) {
717 dev_err(dev, "syscon regmap lookup failed.\n");
718 return PTR_ERR(wdt->pmureg);
722 wdt_irq = platform_get_irq(pdev, 0);
726 /* get the memory region for the watchdog timer */
727 wdt->reg_base = devm_platform_ioremap_resource(pdev, 0);
728 if (IS_ERR(wdt->reg_base))
729 return PTR_ERR(wdt->reg_base);
731 wdt->bus_clk = devm_clk_get(dev, "watchdog");
732 if (IS_ERR(wdt->bus_clk)) {
733 dev_err(dev, "failed to find bus clock\n");
734 return PTR_ERR(wdt->bus_clk);
737 ret = clk_prepare_enable(wdt->bus_clk);
739 dev_err(dev, "failed to enable bus clock\n");
744 * "watchdog_src" clock is optional; if it's not present -- just skip it
745 * and use "watchdog" clock as both bus and source clock.
747 wdt->src_clk = devm_clk_get_optional(dev, "watchdog_src");
748 if (IS_ERR(wdt->src_clk)) {
749 dev_err_probe(dev, PTR_ERR(wdt->src_clk),
750 "failed to get source clock\n");
751 ret = PTR_ERR(wdt->src_clk);
755 ret = clk_prepare_enable(wdt->src_clk);
757 dev_err(dev, "failed to enable source clock\n");
761 wdt->wdt_device.min_timeout = 1;
762 wdt->wdt_device.max_timeout = s3c2410wdt_max_timeout(wdt);
764 ret = s3c2410wdt_cpufreq_register(wdt);
766 dev_err(dev, "failed to register cpufreq\n");
770 watchdog_set_drvdata(&wdt->wdt_device, wdt);
772 /* see if we can actually set the requested timer margin, and if
773 * not, try the default value */
775 watchdog_init_timeout(&wdt->wdt_device, tmr_margin, dev);
776 ret = s3c2410wdt_set_heartbeat(&wdt->wdt_device,
777 wdt->wdt_device.timeout);
779 ret = s3c2410wdt_set_heartbeat(&wdt->wdt_device,
780 S3C2410_WATCHDOG_DEFAULT_TIME);
782 dev_warn(dev, "tmr_margin value out of range, default %d used\n",
783 S3C2410_WATCHDOG_DEFAULT_TIME);
785 dev_err(dev, "failed to use default timeout\n");
790 ret = devm_request_irq(dev, wdt_irq, s3c2410wdt_irq, 0,
793 dev_err(dev, "failed to install irq (%d)\n", ret);
797 watchdog_set_nowayout(&wdt->wdt_device, nowayout);
798 watchdog_set_restart_priority(&wdt->wdt_device, 128);
800 wdt->wdt_device.bootstatus = s3c2410wdt_get_bootstatus(wdt);
801 wdt->wdt_device.parent = dev;
804 * If "tmr_atboot" param is non-zero, start the watchdog right now. Also
805 * set WDOG_HW_RUNNING bit, so that watchdog core can kick the watchdog.
807 * If we're not enabling the watchdog, then ensure it is disabled if it
808 * has been left running from the bootloader or other source.
811 dev_info(dev, "starting watchdog timer\n");
812 s3c2410wdt_start(&wdt->wdt_device);
813 set_bit(WDOG_HW_RUNNING, &wdt->wdt_device.status);
815 s3c2410wdt_stop(&wdt->wdt_device);
818 ret = watchdog_register_device(&wdt->wdt_device);
822 ret = s3c2410wdt_enable(wdt, true);
826 platform_set_drvdata(pdev, wdt);
828 /* print out a statement of readiness */
830 wtcon = readl(wdt->reg_base + S3C2410_WTCON);
832 dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled\n",
833 (wtcon & S3C2410_WTCON_ENABLE) ? "" : "in",
834 (wtcon & S3C2410_WTCON_RSTEN) ? "en" : "dis",
835 (wtcon & S3C2410_WTCON_INTEN) ? "en" : "dis");
840 watchdog_unregister_device(&wdt->wdt_device);
843 s3c2410wdt_cpufreq_deregister(wdt);
846 clk_disable_unprepare(wdt->src_clk);
849 clk_disable_unprepare(wdt->bus_clk);
854 static int s3c2410wdt_remove(struct platform_device *dev)
857 struct s3c2410_wdt *wdt = platform_get_drvdata(dev);
859 ret = s3c2410wdt_enable(wdt, false);
863 watchdog_unregister_device(&wdt->wdt_device);
865 s3c2410wdt_cpufreq_deregister(wdt);
867 clk_disable_unprepare(wdt->src_clk);
868 clk_disable_unprepare(wdt->bus_clk);
873 static void s3c2410wdt_shutdown(struct platform_device *dev)
875 struct s3c2410_wdt *wdt = platform_get_drvdata(dev);
877 s3c2410wdt_enable(wdt, false);
878 s3c2410wdt_stop(&wdt->wdt_device);
881 static int s3c2410wdt_suspend(struct device *dev)
884 struct s3c2410_wdt *wdt = dev_get_drvdata(dev);
886 /* Save watchdog state, and turn it off. */
887 wdt->wtcon_save = readl(wdt->reg_base + S3C2410_WTCON);
888 wdt->wtdat_save = readl(wdt->reg_base + S3C2410_WTDAT);
890 ret = s3c2410wdt_enable(wdt, false);
894 /* Note that WTCNT doesn't need to be saved. */
895 s3c2410wdt_stop(&wdt->wdt_device);
900 static int s3c2410wdt_resume(struct device *dev)
903 struct s3c2410_wdt *wdt = dev_get_drvdata(dev);
905 /* Restore watchdog state. */
906 writel(wdt->wtdat_save, wdt->reg_base + S3C2410_WTDAT);
907 writel(wdt->wtdat_save, wdt->reg_base + S3C2410_WTCNT);/* Reset count */
908 writel(wdt->wtcon_save, wdt->reg_base + S3C2410_WTCON);
910 ret = s3c2410wdt_enable(wdt, true);
914 dev_info(dev, "watchdog %sabled\n",
915 (wdt->wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis");
920 static DEFINE_SIMPLE_DEV_PM_OPS(s3c2410wdt_pm_ops,
921 s3c2410wdt_suspend, s3c2410wdt_resume);
923 static struct platform_driver s3c2410wdt_driver = {
924 .probe = s3c2410wdt_probe,
925 .remove = s3c2410wdt_remove,
926 .shutdown = s3c2410wdt_shutdown,
927 .id_table = s3c2410_wdt_ids,
929 .name = "s3c2410-wdt",
930 .pm = pm_sleep_ptr(&s3c2410wdt_pm_ops),
931 .of_match_table = of_match_ptr(s3c2410_wdt_match),
935 module_platform_driver(s3c2410wdt_driver);
938 MODULE_DESCRIPTION("S3C2410 Watchdog Device Driver");
939 MODULE_LICENSE("GPL");