blob: 905e60f45eecd818457cfdbefa6e9033b7ee9028 [file] [log] [blame]
John Crispin473cf932013-08-08 11:31:43 +02001/*
2 * Ralink RT288x/RT3xxx/MT76xx built-in hardware watchdog timer
3 *
4 * Copyright (C) 2011 Gabor Juhos <juhosg@openwrt.org>
John Crispinf3519a62016-12-20 19:56:59 +01005 * Copyright (C) 2013 John Crispin <john@phrozen.org>
John Crispin473cf932013-08-08 11:31:43 +02006 *
7 * This driver was based on: drivers/watchdog/softdog.c
8 *
9 * This program is free software; you can redistribute it and/or modify it
10 * under the terms of the GNU General Public License version 2 as published
11 * by the Free Software Foundation.
12 */
13
14#include <linux/clk.h>
15#include <linux/reset.h>
16#include <linux/module.h>
17#include <linux/kernel.h>
18#include <linux/watchdog.h>
John Crispin473cf932013-08-08 11:31:43 +020019#include <linux/moduleparam.h>
20#include <linux/platform_device.h>
NeilBrown3aa8b8b2018-12-30 14:21:52 +110021#include <linux/mod_devicetable.h>
John Crispin473cf932013-08-08 11:31:43 +020022
23#include <asm/mach-ralink/ralink_regs.h>
24
25#define SYSC_RSTSTAT 0x38
26#define WDT_RST_CAUSE BIT(1)
27
28#define RALINK_WDT_TIMEOUT 30
29#define RALINK_WDT_PRESCALE 65536
30
31#define TIMER_REG_TMR1LOAD 0x00
32#define TIMER_REG_TMR1CTL 0x08
33
34#define TMRSTAT_TMR1RST BIT(5)
35
36#define TMR1CTL_ENABLE BIT(7)
37#define TMR1CTL_MODE_SHIFT 4
38#define TMR1CTL_MODE_MASK 0x3
39#define TMR1CTL_MODE_FREE_RUNNING 0x0
40#define TMR1CTL_MODE_PERIODIC 0x1
41#define TMR1CTL_MODE_TIMEOUT 0x2
42#define TMR1CTL_MODE_WDT 0x3
43#define TMR1CTL_PRESCALE_MASK 0xf
44#define TMR1CTL_PRESCALE_65536 0xf
45
46static struct clk *rt288x_wdt_clk;
47static unsigned long rt288x_wdt_freq;
48static void __iomem *rt288x_wdt_base;
John Crispina6f8f812014-10-16 22:01:05 +020049static struct reset_control *rt288x_wdt_reset;
John Crispin473cf932013-08-08 11:31:43 +020050
51static bool nowayout = WATCHDOG_NOWAYOUT;
52module_param(nowayout, bool, 0);
53MODULE_PARM_DESC(nowayout,
54 "Watchdog cannot be stopped once started (default="
55 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
56
57static inline void rt_wdt_w32(unsigned reg, u32 val)
58{
59 iowrite32(val, rt288x_wdt_base + reg);
60}
61
62static inline u32 rt_wdt_r32(unsigned reg)
63{
64 return ioread32(rt288x_wdt_base + reg);
65}
66
67static int rt288x_wdt_ping(struct watchdog_device *w)
68{
69 rt_wdt_w32(TIMER_REG_TMR1LOAD, w->timeout * rt288x_wdt_freq);
70
71 return 0;
72}
73
74static int rt288x_wdt_start(struct watchdog_device *w)
75{
76 u32 t;
77
78 t = rt_wdt_r32(TIMER_REG_TMR1CTL);
79 t &= ~(TMR1CTL_MODE_MASK << TMR1CTL_MODE_SHIFT |
80 TMR1CTL_PRESCALE_MASK);
81 t |= (TMR1CTL_MODE_WDT << TMR1CTL_MODE_SHIFT |
82 TMR1CTL_PRESCALE_65536);
83 rt_wdt_w32(TIMER_REG_TMR1CTL, t);
84
85 rt288x_wdt_ping(w);
86
87 t = rt_wdt_r32(TIMER_REG_TMR1CTL);
88 t |= TMR1CTL_ENABLE;
89 rt_wdt_w32(TIMER_REG_TMR1CTL, t);
90
91 return 0;
92}
93
94static int rt288x_wdt_stop(struct watchdog_device *w)
95{
96 u32 t;
97
98 rt288x_wdt_ping(w);
99
100 t = rt_wdt_r32(TIMER_REG_TMR1CTL);
101 t &= ~TMR1CTL_ENABLE;
102 rt_wdt_w32(TIMER_REG_TMR1CTL, t);
103
104 return 0;
105}
106
107static int rt288x_wdt_set_timeout(struct watchdog_device *w, unsigned int t)
108{
109 w->timeout = t;
110 rt288x_wdt_ping(w);
111
112 return 0;
113}
114
115static int rt288x_wdt_bootcause(void)
116{
117 if (rt_sysc_r32(SYSC_RSTSTAT) & WDT_RST_CAUSE)
118 return WDIOF_CARDRESET;
119
120 return 0;
121}
122
Julia Lawall323edb22017-08-03 23:21:31 +0200123static const struct watchdog_info rt288x_wdt_info = {
John Crispin473cf932013-08-08 11:31:43 +0200124 .identity = "Ralink Watchdog",
125 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
126};
127
Bhumika Goyalb893e342017-01-28 13:11:17 +0530128static const struct watchdog_ops rt288x_wdt_ops = {
John Crispin473cf932013-08-08 11:31:43 +0200129 .owner = THIS_MODULE,
130 .start = rt288x_wdt_start,
131 .stop = rt288x_wdt_stop,
132 .ping = rt288x_wdt_ping,
133 .set_timeout = rt288x_wdt_set_timeout,
134};
135
136static struct watchdog_device rt288x_wdt_dev = {
137 .info = &rt288x_wdt_info,
138 .ops = &rt288x_wdt_ops,
139 .min_timeout = 1,
140};
141
142static int rt288x_wdt_probe(struct platform_device *pdev)
143{
Guenter Roeck570927d2019-04-10 09:28:00 -0700144 struct device *dev = &pdev->dev;
John Crispin473cf932013-08-08 11:31:43 +0200145 int ret;
146
Guenter Roeck0f0a6a22019-04-02 12:01:53 -0700147 rt288x_wdt_base = devm_platform_ioremap_resource(pdev, 0);
John Crispin473cf932013-08-08 11:31:43 +0200148 if (IS_ERR(rt288x_wdt_base))
149 return PTR_ERR(rt288x_wdt_base);
150
Guenter Roeck570927d2019-04-10 09:28:00 -0700151 rt288x_wdt_clk = devm_clk_get(dev, NULL);
John Crispin473cf932013-08-08 11:31:43 +0200152 if (IS_ERR(rt288x_wdt_clk))
153 return PTR_ERR(rt288x_wdt_clk);
154
Guenter Roeck570927d2019-04-10 09:28:00 -0700155 rt288x_wdt_reset = devm_reset_control_get_exclusive(dev, NULL);
John Crispina6f8f812014-10-16 22:01:05 +0200156 if (!IS_ERR(rt288x_wdt_reset))
157 reset_control_deassert(rt288x_wdt_reset);
John Crispin473cf932013-08-08 11:31:43 +0200158
159 rt288x_wdt_freq = clk_get_rate(rt288x_wdt_clk) / RALINK_WDT_PRESCALE;
160
John Crispin473cf932013-08-08 11:31:43 +0200161 rt288x_wdt_dev.bootstatus = rt288x_wdt_bootcause();
John Crispin473cf932013-08-08 11:31:43 +0200162 rt288x_wdt_dev.max_timeout = (0xfffful / rt288x_wdt_freq);
Guenter Roeck570927d2019-04-10 09:28:00 -0700163 rt288x_wdt_dev.parent = dev;
John Crispin473cf932013-08-08 11:31:43 +0200164
John Crispina6f8f812014-10-16 22:01:05 +0200165 watchdog_init_timeout(&rt288x_wdt_dev, rt288x_wdt_dev.max_timeout,
Guenter Roeck570927d2019-04-10 09:28:00 -0700166 dev);
John Crispin473cf932013-08-08 11:31:43 +0200167 watchdog_set_nowayout(&rt288x_wdt_dev, nowayout);
168
Guenter Roeck570927d2019-04-10 09:28:00 -0700169 watchdog_stop_on_reboot(&rt288x_wdt_dev);
170 ret = devm_watchdog_register_device(dev, &rt288x_wdt_dev);
John Crispin473cf932013-08-08 11:31:43 +0200171 if (!ret)
Guenter Roeck570927d2019-04-10 09:28:00 -0700172 dev_info(dev, "Initialized\n");
John Crispin473cf932013-08-08 11:31:43 +0200173
174 return 0;
175}
176
John Crispin473cf932013-08-08 11:31:43 +0200177static const struct of_device_id rt288x_wdt_match[] = {
178 { .compatible = "ralink,rt2880-wdt" },
179 {},
180};
181MODULE_DEVICE_TABLE(of, rt288x_wdt_match);
182
183static struct platform_driver rt288x_wdt_driver = {
184 .probe = rt288x_wdt_probe,
John Crispin473cf932013-08-08 11:31:43 +0200185 .driver = {
186 .name = KBUILD_MODNAME,
John Crispin473cf932013-08-08 11:31:43 +0200187 .of_match_table = rt288x_wdt_match,
188 },
189};
190
191module_platform_driver(rt288x_wdt_driver);
192
193MODULE_DESCRIPTION("MediaTek/Ralink RT288x/RT3xxx hardware watchdog driver");
194MODULE_AUTHOR("Gabor Juhos <juhosg@openwrt.org");
195MODULE_LICENSE("GPL v2");