]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/watchdog/qcom-wdt.c
Merge tag 'hwmon-for-v5.9-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/groec...
[mirror_ubuntu-hirsute-kernel.git] / drivers / watchdog / qcom-wdt.c
CommitLineData
97fb5e8d 1// SPDX-License-Identifier: GPL-2.0-only
1094ebe9 2/* Copyright (c) 2014, The Linux Foundation. All rights reserved.
1094ebe9 3 */
36375491 4#include <linux/bits.h>
1094ebe9 5#include <linux/clk.h>
05e487d9 6#include <linux/delay.h>
36375491 7#include <linux/interrupt.h>
1094ebe9
JC
8#include <linux/io.h>
9#include <linux/kernel.h>
10#include <linux/module.h>
11#include <linux/of.h>
12#include <linux/platform_device.h>
13#include <linux/watchdog.h>
f0d9d0f4 14#include <linux/of_device.h>
1094ebe9 15
f0d9d0f4
MM
16enum wdt_reg {
17 WDT_RST,
18 WDT_EN,
19 WDT_STS,
10073a20 20 WDT_BARK_TIME,
f0d9d0f4
MM
21 WDT_BITE_TIME,
22};
23
36375491
JRO
24#define QCOM_WDT_ENABLE BIT(0)
25#define QCOM_WDT_ENABLE_IRQ BIT(1)
26
f0d9d0f4
MM
27static const u32 reg_offset_data_apcs_tmr[] = {
28 [WDT_RST] = 0x38,
29 [WDT_EN] = 0x40,
30 [WDT_STS] = 0x44,
10073a20 31 [WDT_BARK_TIME] = 0x4C,
f0d9d0f4
MM
32 [WDT_BITE_TIME] = 0x5C,
33};
34
35static const u32 reg_offset_data_kpss[] = {
36 [WDT_RST] = 0x4,
37 [WDT_EN] = 0x8,
38 [WDT_STS] = 0xC,
10073a20 39 [WDT_BARK_TIME] = 0x10,
f0d9d0f4
MM
40 [WDT_BITE_TIME] = 0x14,
41};
1094ebe9 42
000de541
AS
43struct qcom_wdt_match_data {
44 const u32 *offset;
45 bool pretimeout;
46};
47
1094ebe9
JC
48struct qcom_wdt {
49 struct watchdog_device wdd;
1094ebe9
JC
50 unsigned long rate;
51 void __iomem *base;
f0d9d0f4 52 const u32 *layout;
1094ebe9
JC
53};
54
f0d9d0f4
MM
55static void __iomem *wdt_addr(struct qcom_wdt *wdt, enum wdt_reg reg)
56{
57 return wdt->base + wdt->layout[reg];
58}
59
1094ebe9
JC
60static inline
61struct qcom_wdt *to_qcom_wdt(struct watchdog_device *wdd)
62{
63 return container_of(wdd, struct qcom_wdt, wdd);
64}
65
36375491
JRO
66static inline int qcom_get_enable(struct watchdog_device *wdd)
67{
68 int enable = QCOM_WDT_ENABLE;
69
70 if (wdd->pretimeout)
71 enable |= QCOM_WDT_ENABLE_IRQ;
72
73 return enable;
74}
75
76static irqreturn_t qcom_wdt_isr(int irq, void *arg)
77{
78 struct watchdog_device *wdd = arg;
79
80 watchdog_notify_pretimeout(wdd);
81
82 return IRQ_HANDLED;
83}
84
1094ebe9
JC
85static int qcom_wdt_start(struct watchdog_device *wdd)
86{
87 struct qcom_wdt *wdt = to_qcom_wdt(wdd);
36375491 88 unsigned int bark = wdd->timeout - wdd->pretimeout;
1094ebe9 89
f0d9d0f4
MM
90 writel(0, wdt_addr(wdt, WDT_EN));
91 writel(1, wdt_addr(wdt, WDT_RST));
36375491 92 writel(bark * wdt->rate, wdt_addr(wdt, WDT_BARK_TIME));
f0d9d0f4 93 writel(wdd->timeout * wdt->rate, wdt_addr(wdt, WDT_BITE_TIME));
36375491 94 writel(qcom_get_enable(wdd), wdt_addr(wdt, WDT_EN));
1094ebe9
JC
95 return 0;
96}
97
98static int qcom_wdt_stop(struct watchdog_device *wdd)
99{
100 struct qcom_wdt *wdt = to_qcom_wdt(wdd);
101
f0d9d0f4 102 writel(0, wdt_addr(wdt, WDT_EN));
1094ebe9
JC
103 return 0;
104}
105
106static int qcom_wdt_ping(struct watchdog_device *wdd)
107{
108 struct qcom_wdt *wdt = to_qcom_wdt(wdd);
109
f0d9d0f4 110 writel(1, wdt_addr(wdt, WDT_RST));
1094ebe9
JC
111 return 0;
112}
113
114static int qcom_wdt_set_timeout(struct watchdog_device *wdd,
115 unsigned int timeout)
116{
117 wdd->timeout = timeout;
118 return qcom_wdt_start(wdd);
119}
120
36375491
JRO
121static int qcom_wdt_set_pretimeout(struct watchdog_device *wdd,
122 unsigned int timeout)
123{
124 wdd->pretimeout = timeout;
125 return qcom_wdt_start(wdd);
126}
127
4d8b229d
GR
128static int qcom_wdt_restart(struct watchdog_device *wdd, unsigned long action,
129 void *data)
05e487d9 130{
80969a68 131 struct qcom_wdt *wdt = to_qcom_wdt(wdd);
05e487d9
JC
132 u32 timeout;
133
134 /*
135 * Trigger watchdog bite:
136 * Setup BITE_TIME to be 128ms, and enable WDT.
137 */
138 timeout = 128 * wdt->rate / 1000;
139
f0d9d0f4
MM
140 writel(0, wdt_addr(wdt, WDT_EN));
141 writel(1, wdt_addr(wdt, WDT_RST));
10073a20 142 writel(timeout, wdt_addr(wdt, WDT_BARK_TIME));
f0d9d0f4 143 writel(timeout, wdt_addr(wdt, WDT_BITE_TIME));
36375491 144 writel(QCOM_WDT_ENABLE, wdt_addr(wdt, WDT_EN));
05e487d9
JC
145
146 /*
147 * Actually make sure the above sequence hits hardware before sleeping.
148 */
149 wmb();
150
151 msleep(150);
80969a68 152 return 0;
05e487d9
JC
153}
154
80969a68
DR
155static const struct watchdog_ops qcom_wdt_ops = {
156 .start = qcom_wdt_start,
157 .stop = qcom_wdt_stop,
158 .ping = qcom_wdt_ping,
159 .set_timeout = qcom_wdt_set_timeout,
36375491 160 .set_pretimeout = qcom_wdt_set_pretimeout,
80969a68
DR
161 .restart = qcom_wdt_restart,
162 .owner = THIS_MODULE,
163};
164
165static const struct watchdog_info qcom_wdt_info = {
166 .options = WDIOF_KEEPALIVEPING
167 | WDIOF_MAGICCLOSE
b6ef36d2
GR
168 | WDIOF_SETTIMEOUT
169 | WDIOF_CARDRESET,
80969a68
DR
170 .identity = KBUILD_MODNAME,
171};
172
36375491
JRO
173static const struct watchdog_info qcom_wdt_pt_info = {
174 .options = WDIOF_KEEPALIVEPING
175 | WDIOF_MAGICCLOSE
176 | WDIOF_SETTIMEOUT
177 | WDIOF_PRETIMEOUT
178 | WDIOF_CARDRESET,
179 .identity = KBUILD_MODNAME,
180};
181
bba07e6e
GR
182static void qcom_clk_disable_unprepare(void *data)
183{
184 clk_disable_unprepare(data);
185}
186
000de541
AS
187static const struct qcom_wdt_match_data match_data_apcs_tmr = {
188 .offset = reg_offset_data_apcs_tmr,
189 .pretimeout = false,
190};
191
192static const struct qcom_wdt_match_data match_data_kpss = {
193 .offset = reg_offset_data_kpss,
194 .pretimeout = true,
195};
196
1094ebe9
JC
197static int qcom_wdt_probe(struct platform_device *pdev)
198{
bba07e6e 199 struct device *dev = &pdev->dev;
1094ebe9
JC
200 struct qcom_wdt *wdt;
201 struct resource *res;
bba07e6e 202 struct device_node *np = dev->of_node;
000de541 203 const struct qcom_wdt_match_data *data;
0dfd582e 204 u32 percpu_offset;
36375491 205 int irq, ret;
52a14214 206 struct clk *clk;
1094ebe9 207
000de541
AS
208 data = of_device_get_match_data(dev);
209 if (!data) {
bba07e6e 210 dev_err(dev, "Unsupported QCOM WDT module\n");
f0d9d0f4
MM
211 return -ENODEV;
212 }
213
bba07e6e 214 wdt = devm_kzalloc(dev, sizeof(*wdt), GFP_KERNEL);
1094ebe9
JC
215 if (!wdt)
216 return -ENOMEM;
217
218 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
15210ad1
FE
219 if (!res)
220 return -ENOMEM;
0dfd582e
MO
221
222 /* We use CPU0's DGT for the watchdog */
223 if (of_property_read_u32(np, "cpu-offset", &percpu_offset))
224 percpu_offset = 0;
225
226 res->start += percpu_offset;
227 res->end += percpu_offset;
228
bba07e6e 229 wdt->base = devm_ioremap_resource(dev, res);
1094ebe9
JC
230 if (IS_ERR(wdt->base))
231 return PTR_ERR(wdt->base);
232
52a14214
JRO
233 clk = devm_clk_get(dev, NULL);
234 if (IS_ERR(clk)) {
bba07e6e 235 dev_err(dev, "failed to get input clock\n");
52a14214 236 return PTR_ERR(clk);
1094ebe9
JC
237 }
238
52a14214 239 ret = clk_prepare_enable(clk);
1094ebe9 240 if (ret) {
bba07e6e 241 dev_err(dev, "failed to setup clock\n");
1094ebe9
JC
242 return ret;
243 }
52a14214 244 ret = devm_add_action_or_reset(dev, qcom_clk_disable_unprepare, clk);
bba07e6e
GR
245 if (ret)
246 return ret;
1094ebe9
JC
247
248 /*
249 * We use the clock rate to calculate the max timeout, so ensure it's
250 * not zero to avoid a divide-by-zero exception.
251 *
252 * WATCHDOG_CORE assumes units of seconds, if the WDT is clocked such
253 * that it would bite before a second elapses it's usefulness is
254 * limited. Bail if this is the case.
255 */
52a14214 256 wdt->rate = clk_get_rate(clk);
1094ebe9
JC
257 if (wdt->rate == 0 ||
258 wdt->rate > 0x10000000U) {
bba07e6e
GR
259 dev_err(dev, "invalid clock rate\n");
260 return -EINVAL;
1094ebe9
JC
261 }
262
36375491 263 /* check if there is pretimeout support */
e0b4f4e0 264 irq = platform_get_irq_optional(pdev, 0);
000de541 265 if (data->pretimeout && irq > 0) {
cc9cc794 266 ret = devm_request_irq(dev, irq, qcom_wdt_isr, 0,
36375491
JRO
267 "wdt_bark", &wdt->wdd);
268 if (ret)
269 return ret;
270
271 wdt->wdd.info = &qcom_wdt_pt_info;
272 wdt->wdd.pretimeout = 1;
273 } else {
274 if (irq == -EPROBE_DEFER)
275 return -EPROBE_DEFER;
276
277 wdt->wdd.info = &qcom_wdt_info;
278 }
279
1094ebe9
JC
280 wdt->wdd.ops = &qcom_wdt_ops;
281 wdt->wdd.min_timeout = 1;
282 wdt->wdd.max_timeout = 0x10000000U / wdt->rate;
bba07e6e 283 wdt->wdd.parent = dev;
000de541 284 wdt->layout = data->offset;
1094ebe9 285
f06f35c6 286 if (readl(wdt_addr(wdt, WDT_STS)) & 1)
b6ef36d2
GR
287 wdt->wdd.bootstatus = WDIOF_CARDRESET;
288
1094ebe9
JC
289 /*
290 * If 'timeout-sec' unspecified in devicetree, assume a 30 second
291 * default, unless the max timeout is less than 30 seconds, then use
292 * the max instead.
293 */
294 wdt->wdd.timeout = min(wdt->wdd.max_timeout, 30U);
bba07e6e 295 watchdog_init_timeout(&wdt->wdd, 0, dev);
1094ebe9 296
bba07e6e 297 ret = devm_watchdog_register_device(dev, &wdt->wdd);
ccbf872a 298 if (ret)
bba07e6e 299 return ret;
1094ebe9
JC
300
301 platform_set_drvdata(pdev, wdt);
302 return 0;
1094ebe9
JC
303}
304
671cdde3
SPR
305static int __maybe_unused qcom_wdt_suspend(struct device *dev)
306{
307 struct qcom_wdt *wdt = dev_get_drvdata(dev);
308
309 if (watchdog_active(&wdt->wdd))
310 qcom_wdt_stop(&wdt->wdd);
311
312 return 0;
313}
314
315static int __maybe_unused qcom_wdt_resume(struct device *dev)
316{
317 struct qcom_wdt *wdt = dev_get_drvdata(dev);
318
319 if (watchdog_active(&wdt->wdd))
320 qcom_wdt_start(&wdt->wdd);
321
322 return 0;
323}
324
325static SIMPLE_DEV_PM_OPS(qcom_wdt_pm_ops, qcom_wdt_suspend, qcom_wdt_resume);
326
1094ebe9 327static const struct of_device_id qcom_wdt_of_table[] = {
000de541
AS
328 { .compatible = "qcom,kpss-timer", .data = &match_data_apcs_tmr },
329 { .compatible = "qcom,scss-timer", .data = &match_data_apcs_tmr },
330 { .compatible = "qcom,kpss-wdt", .data = &match_data_kpss },
1094ebe9
JC
331 { },
332};
333MODULE_DEVICE_TABLE(of, qcom_wdt_of_table);
334
335static struct platform_driver qcom_watchdog_driver = {
336 .probe = qcom_wdt_probe,
1094ebe9
JC
337 .driver = {
338 .name = KBUILD_MODNAME,
339 .of_match_table = qcom_wdt_of_table,
671cdde3 340 .pm = &qcom_wdt_pm_ops,
1094ebe9
JC
341 },
342};
343module_platform_driver(qcom_watchdog_driver);
344
345MODULE_DESCRIPTION("QCOM KPSS Watchdog Driver");
346MODULE_LICENSE("GPL v2");