blob: 734cf2966ecbb143a0d84821a6f2eb473791689e [file] [log] [blame]
Thomas Gleixnera636cd62019-05-19 15:51:34 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Xianglong Duf0fcbdb2013-10-02 08:13:49 +08002/*
3 * Watchdog driver for CSR SiRFprimaII and SiRFatlasVI
4 *
5 * Copyright (c) 2013 Cambridge Silicon Radio Limited, a CSR plc group company.
Xianglong Duf0fcbdb2013-10-02 08:13:49 +08006 */
7
8#include <linux/module.h>
9#include <linux/watchdog.h>
10#include <linux/platform_device.h>
11#include <linux/moduleparam.h>
12#include <linux/of.h>
13#include <linux/io.h>
14#include <linux/uaccess.h>
15
Uwe Kleine-Königb0df38d2013-11-11 21:33:44 +010016#define CLOCK_FREQ 1000000
17
Xianglong Duf0fcbdb2013-10-02 08:13:49 +080018#define SIRFSOC_TIMER_COUNTER_LO 0x0000
19#define SIRFSOC_TIMER_MATCH_0 0x0008
20#define SIRFSOC_TIMER_INT_EN 0x0024
21#define SIRFSOC_TIMER_WATCHDOG_EN 0x0028
22#define SIRFSOC_TIMER_LATCH 0x0030
23#define SIRFSOC_TIMER_LATCHED_LO 0x0034
24
25#define SIRFSOC_TIMER_WDT_INDEX 5
26
27#define SIRFSOC_WDT_MIN_TIMEOUT 30 /* 30 secs */
28#define SIRFSOC_WDT_MAX_TIMEOUT (10 * 60) /* 10 mins */
29#define SIRFSOC_WDT_DEFAULT_TIMEOUT 30 /* 30 secs */
30
Marcus Folkessonf70b1452018-02-11 21:08:43 +010031static unsigned int timeout;
Xianglong Duf0fcbdb2013-10-02 08:13:49 +080032static bool nowayout = WATCHDOG_NOWAYOUT;
33
34module_param(timeout, uint, 0);
35module_param(nowayout, bool, 0);
36
37MODULE_PARM_DESC(timeout, "Default watchdog timeout (in seconds)");
38MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default="
39 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
40
Ben Dooksb99c8772016-06-07 12:53:07 +010041static void __iomem *sirfsoc_wdt_base(struct watchdog_device *wdd)
42{
43 return (void __iomem __force *)watchdog_get_drvdata(wdd);
44}
45
Xianglong Duf0fcbdb2013-10-02 08:13:49 +080046static unsigned int sirfsoc_wdt_gettimeleft(struct watchdog_device *wdd)
47{
48 u32 counter, match;
49 void __iomem *wdt_base;
50 int time_left;
51
Ben Dooksb99c8772016-06-07 12:53:07 +010052 wdt_base = sirfsoc_wdt_base(wdd);
Xianglong Duf0fcbdb2013-10-02 08:13:49 +080053 counter = readl(wdt_base + SIRFSOC_TIMER_COUNTER_LO);
54 match = readl(wdt_base +
55 SIRFSOC_TIMER_MATCH_0 + (SIRFSOC_TIMER_WDT_INDEX << 2));
56
57 time_left = match - counter;
58
Uwe Kleine-Königb0df38d2013-11-11 21:33:44 +010059 return time_left / CLOCK_FREQ;
Xianglong Duf0fcbdb2013-10-02 08:13:49 +080060}
61
62static int sirfsoc_wdt_updatetimeout(struct watchdog_device *wdd)
63{
64 u32 counter, timeout_ticks;
65 void __iomem *wdt_base;
66
Uwe Kleine-Königb0df38d2013-11-11 21:33:44 +010067 timeout_ticks = wdd->timeout * CLOCK_FREQ;
Ben Dooksb99c8772016-06-07 12:53:07 +010068 wdt_base = sirfsoc_wdt_base(wdd);
Xianglong Duf0fcbdb2013-10-02 08:13:49 +080069
70 /* Enable the latch before reading the LATCH_LO register */
71 writel(1, wdt_base + SIRFSOC_TIMER_LATCH);
72
73 /* Set the TO value */
74 counter = readl(wdt_base + SIRFSOC_TIMER_LATCHED_LO);
75
76 counter += timeout_ticks;
77
78 writel(counter, wdt_base +
79 SIRFSOC_TIMER_MATCH_0 + (SIRFSOC_TIMER_WDT_INDEX << 2));
80
81 return 0;
82}
83
84static int sirfsoc_wdt_enable(struct watchdog_device *wdd)
85{
Ben Dooksb99c8772016-06-07 12:53:07 +010086 void __iomem *wdt_base = sirfsoc_wdt_base(wdd);
Xianglong Duf0fcbdb2013-10-02 08:13:49 +080087 sirfsoc_wdt_updatetimeout(wdd);
88
89 /*
90 * NOTE: If interrupt is not enabled
91 * then WD-Reset doesn't get generated at all.
92 */
93 writel(readl(wdt_base + SIRFSOC_TIMER_INT_EN)
94 | (1 << SIRFSOC_TIMER_WDT_INDEX),
95 wdt_base + SIRFSOC_TIMER_INT_EN);
96 writel(1, wdt_base + SIRFSOC_TIMER_WATCHDOG_EN);
97
98 return 0;
99}
100
101static int sirfsoc_wdt_disable(struct watchdog_device *wdd)
102{
Ben Dooksb99c8772016-06-07 12:53:07 +0100103 void __iomem *wdt_base = sirfsoc_wdt_base(wdd);
Xianglong Duf0fcbdb2013-10-02 08:13:49 +0800104
105 writel(0, wdt_base + SIRFSOC_TIMER_WATCHDOG_EN);
106 writel(readl(wdt_base + SIRFSOC_TIMER_INT_EN)
107 & (~(1 << SIRFSOC_TIMER_WDT_INDEX)),
108 wdt_base + SIRFSOC_TIMER_INT_EN);
109
110 return 0;
111}
112
113static int sirfsoc_wdt_settimeout(struct watchdog_device *wdd, unsigned int to)
114{
115 wdd->timeout = to;
116 sirfsoc_wdt_updatetimeout(wdd);
117
118 return 0;
119}
120
121#define OPTIONS (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE)
122
123static const struct watchdog_info sirfsoc_wdt_ident = {
124 .options = OPTIONS,
125 .firmware_version = 0,
126 .identity = "SiRFSOC Watchdog",
127};
128
Bhumika Goyalb893e342017-01-28 13:11:17 +0530129static const struct watchdog_ops sirfsoc_wdt_ops = {
Xianglong Duf0fcbdb2013-10-02 08:13:49 +0800130 .owner = THIS_MODULE,
131 .start = sirfsoc_wdt_enable,
132 .stop = sirfsoc_wdt_disable,
133 .get_timeleft = sirfsoc_wdt_gettimeleft,
134 .ping = sirfsoc_wdt_updatetimeout,
135 .set_timeout = sirfsoc_wdt_settimeout,
136};
137
138static struct watchdog_device sirfsoc_wdd = {
139 .info = &sirfsoc_wdt_ident,
140 .ops = &sirfsoc_wdt_ops,
141 .timeout = SIRFSOC_WDT_DEFAULT_TIMEOUT,
142 .min_timeout = SIRFSOC_WDT_MIN_TIMEOUT,
143 .max_timeout = SIRFSOC_WDT_MAX_TIMEOUT,
144};
145
146static int sirfsoc_wdt_probe(struct platform_device *pdev)
147{
Guenter Roeck72dbc272019-04-09 10:23:55 -0700148 struct device *dev = &pdev->dev;
Xianglong Duf0fcbdb2013-10-02 08:13:49 +0800149 int ret;
150 void __iomem *base;
151
Guenter Roeck0f0a6a22019-04-02 12:01:53 -0700152 base = devm_platform_ioremap_resource(pdev, 0);
Xianglong Duf0fcbdb2013-10-02 08:13:49 +0800153 if (IS_ERR(base))
154 return PTR_ERR(base);
155
Ben Dooksb99c8772016-06-07 12:53:07 +0100156 watchdog_set_drvdata(&sirfsoc_wdd, (__force void *)base);
Xianglong Duf0fcbdb2013-10-02 08:13:49 +0800157
Guenter Roeck72dbc272019-04-09 10:23:55 -0700158 watchdog_init_timeout(&sirfsoc_wdd, timeout, dev);
Xianglong Duf0fcbdb2013-10-02 08:13:49 +0800159 watchdog_set_nowayout(&sirfsoc_wdd, nowayout);
Guenter Roeck72dbc272019-04-09 10:23:55 -0700160 sirfsoc_wdd.parent = dev;
Xianglong Duf0fcbdb2013-10-02 08:13:49 +0800161
Guenter Roeck72dbc272019-04-09 10:23:55 -0700162 watchdog_stop_on_reboot(&sirfsoc_wdd);
163 watchdog_stop_on_unregister(&sirfsoc_wdd);
164 ret = devm_watchdog_register_device(dev, &sirfsoc_wdd);
Xianglong Duf0fcbdb2013-10-02 08:13:49 +0800165 if (ret)
166 return ret;
167
168 platform_set_drvdata(pdev, &sirfsoc_wdd);
169
170 return 0;
171}
172
Xianglong Duf0fcbdb2013-10-02 08:13:49 +0800173#ifdef CONFIG_PM_SLEEP
174static int sirfsoc_wdt_suspend(struct device *dev)
175{
176 return 0;
177}
178
179static int sirfsoc_wdt_resume(struct device *dev)
180{
181 struct watchdog_device *wdd = dev_get_drvdata(dev);
182
183 /*
184 * NOTE: Since timer controller registers settings are saved
185 * and restored back by the timer-prima2.c, so we need not
186 * update WD settings except refreshing timeout.
187 */
188 sirfsoc_wdt_updatetimeout(wdd);
189
190 return 0;
191}
192#endif
193
194static SIMPLE_DEV_PM_OPS(sirfsoc_wdt_pm_ops,
195 sirfsoc_wdt_suspend, sirfsoc_wdt_resume);
196
197static const struct of_device_id sirfsoc_wdt_of_match[] = {
198 { .compatible = "sirf,prima2-tick"},
199 {},
200};
201MODULE_DEVICE_TABLE(of, sirfsoc_wdt_of_match);
202
203static struct platform_driver sirfsoc_wdt_driver = {
204 .driver = {
205 .name = "sirfsoc-wdt",
Xianglong Duf0fcbdb2013-10-02 08:13:49 +0800206 .pm = &sirfsoc_wdt_pm_ops,
Sachin Kamat15edd9e2013-12-21 14:01:13 +0530207 .of_match_table = sirfsoc_wdt_of_match,
Xianglong Duf0fcbdb2013-10-02 08:13:49 +0800208 },
209 .probe = sirfsoc_wdt_probe,
Xianglong Duf0fcbdb2013-10-02 08:13:49 +0800210};
211module_platform_driver(sirfsoc_wdt_driver);
212
213MODULE_DESCRIPTION("SiRF SoC watchdog driver");
214MODULE_AUTHOR("Xianglong Du <Xianglong.Du@csr.com>");
215MODULE_LICENSE("GPL v2");
216MODULE_ALIAS("platform:sirfsoc-wdt");