blob: f29d1edc5badef49f74950330b587d55eba40473 [file] [log] [blame]
Marcus Folkesson8d039d42018-02-10 10:27:01 +01001// SPDX-License-Identifier: GPL-2.0
Linus Walleij01480702009-05-06 15:35:40 +02002/*
3 * coh901327_wdt.c
4 *
5 * Copyright (C) 2008-2009 ST-Ericsson AB
Linus Walleij01480702009-05-06 15:35:40 +02006 * Watchdog driver for the ST-Ericsson AB COH 901 327 IP core
7 * Author: Linus Walleij <linus.walleij@stericsson.com>
8 */
9#include <linux/module.h>
Randy Dunlapac316722018-06-19 22:47:28 -070010#include <linux/mod_devicetable.h>
Linus Walleij01480702009-05-06 15:35:40 +020011#include <linux/types.h>
Linus Walleij01480702009-05-06 15:35:40 +020012#include <linux/watchdog.h>
13#include <linux/interrupt.h>
14#include <linux/pm.h>
15#include <linux/platform_device.h>
16#include <linux/io.h>
17#include <linux/bitops.h>
Linus Walleij01480702009-05-06 15:35:40 +020018#include <linux/clk.h>
Linus Walleij5973bee2009-07-21 00:40:46 +020019#include <linux/delay.h>
Linus Walleij15b25702012-03-16 09:14:12 +010020#include <linux/err.h>
Linus Walleij01480702009-05-06 15:35:40 +020021
22#define DRV_NAME "WDOG COH 901 327"
23
24/*
25 * COH 901 327 register definitions
26 */
27
28/* WDOG_FEED Register 32bit (-/W) */
29#define U300_WDOG_FR 0x00
30#define U300_WDOG_FR_FEED_RESTART_TIMER 0xFEEDU
31/* WDOG_TIMEOUT Register 32bit (R/W) */
32#define U300_WDOG_TR 0x04
33#define U300_WDOG_TR_TIMEOUT_MASK 0x7FFFU
34/* WDOG_DISABLE1 Register 32bit (-/W) */
35#define U300_WDOG_D1R 0x08
36#define U300_WDOG_D1R_DISABLE1_DISABLE_TIMER 0x2BADU
37/* WDOG_DISABLE2 Register 32bit (R/W) */
38#define U300_WDOG_D2R 0x0C
39#define U300_WDOG_D2R_DISABLE2_DISABLE_TIMER 0xCAFEU
40#define U300_WDOG_D2R_DISABLE_STATUS_DISABLED 0xDABEU
41#define U300_WDOG_D2R_DISABLE_STATUS_ENABLED 0x0000U
42/* WDOG_STATUS Register 32bit (R/W) */
43#define U300_WDOG_SR 0x10
44#define U300_WDOG_SR_STATUS_TIMED_OUT 0xCFE8U
45#define U300_WDOG_SR_STATUS_NORMAL 0x0000U
46#define U300_WDOG_SR_RESET_STATUS_RESET 0xE8B4U
47/* WDOG_COUNT Register 32bit (R/-) */
48#define U300_WDOG_CR 0x14
49#define U300_WDOG_CR_VALID_IND 0x8000U
50#define U300_WDOG_CR_VALID_STABLE 0x0000U
51#define U300_WDOG_CR_COUNT_VALUE_MASK 0x7FFFU
52/* WDOG_JTAGOVR Register 32bit (R/W) */
53#define U300_WDOG_JOR 0x18
54#define U300_WDOG_JOR_JTAG_MODE_IND 0x0002U
55#define U300_WDOG_JOR_JTAG_WATCHDOG_ENABLE 0x0001U
56/* WDOG_RESTART Register 32bit (-/W) */
57#define U300_WDOG_RR 0x1C
58#define U300_WDOG_RR_RESTART_VALUE_RESUME 0xACEDU
59/* WDOG_IRQ_EVENT Register 32bit (R/W) */
60#define U300_WDOG_IER 0x20
61#define U300_WDOG_IER_WILL_BARK_IRQ_EVENT_IND 0x0001U
62#define U300_WDOG_IER_WILL_BARK_IRQ_ACK_ENABLE 0x0001U
63/* WDOG_IRQ_MASK Register 32bit (R/W) */
64#define U300_WDOG_IMR 0x24
65#define U300_WDOG_IMR_WILL_BARK_IRQ_ENABLE 0x0001U
66/* WDOG_IRQ_FORCE Register 32bit (R/W) */
67#define U300_WDOG_IFR 0x28
68#define U300_WDOG_IFR_WILL_BARK_IRQ_FORCE_ENABLE 0x0001U
69
70/* Default timeout in seconds = 1 minute */
Marcus Folkesson321390d2018-02-11 21:08:47 +010071#define U300_WDOG_DEFAULT_TIMEOUT 60
72
73static unsigned int margin;
Linus Walleij01480702009-05-06 15:35:40 +020074static int irq;
75static void __iomem *virtbase;
Linus Walleij01480702009-05-06 15:35:40 +020076static struct device *parent;
77
Linus Walleij01480702009-05-06 15:35:40 +020078static struct clk *clk;
79
80/*
81 * Enabling and disabling functions.
82 */
83static void coh901327_enable(u16 timeout)
84{
85 u16 val;
Linus Walleij5973bee2009-07-21 00:40:46 +020086 unsigned long freq;
87 unsigned long delay_ns;
Linus Walleij01480702009-05-06 15:35:40 +020088
Linus Walleij01480702009-05-06 15:35:40 +020089 /* Restart timer if it is disabled */
90 val = readw(virtbase + U300_WDOG_D2R);
91 if (val == U300_WDOG_D2R_DISABLE_STATUS_DISABLED)
92 writew(U300_WDOG_RR_RESTART_VALUE_RESUME,
93 virtbase + U300_WDOG_RR);
94 /* Acknowledge any pending interrupt so it doesn't just fire off */
95 writew(U300_WDOG_IER_WILL_BARK_IRQ_ACK_ENABLE,
96 virtbase + U300_WDOG_IER);
Linus Walleij5973bee2009-07-21 00:40:46 +020097 /*
98 * The interrupt is cleared in the 32 kHz clock domain.
99 * Wait 3 32 kHz cycles for it to take effect
100 */
101 freq = clk_get_rate(clk);
Linus Walleij0ecc3bf2009-08-10 00:04:35 +0200102 delay_ns = DIV_ROUND_UP(1000000000, freq); /* Freq to ns and round up */
Linus Walleij5973bee2009-07-21 00:40:46 +0200103 delay_ns = 3 * delay_ns; /* Wait 3 cycles */
104 ndelay(delay_ns);
Linus Walleij01480702009-05-06 15:35:40 +0200105 /* Enable the watchdog interrupt */
106 writew(U300_WDOG_IMR_WILL_BARK_IRQ_ENABLE, virtbase + U300_WDOG_IMR);
107 /* Activate the watchdog timer */
108 writew(timeout, virtbase + U300_WDOG_TR);
109 /* Start the watchdog timer */
110 writew(U300_WDOG_FR_FEED_RESTART_TIMER, virtbase + U300_WDOG_FR);
111 /*
112 * Extra read so that this change propagate in the watchdog.
113 */
114 (void) readw(virtbase + U300_WDOG_CR);
115 val = readw(virtbase + U300_WDOG_D2R);
Linus Walleij01480702009-05-06 15:35:40 +0200116 if (val != U300_WDOG_D2R_DISABLE_STATUS_ENABLED)
117 dev_err(parent,
118 "%s(): watchdog not enabled! D2R value %04x\n",
119 __func__, val);
120}
121
122static void coh901327_disable(void)
123{
124 u16 val;
125
Linus Walleij01480702009-05-06 15:35:40 +0200126 /* Disable the watchdog interrupt if it is active */
127 writew(0x0000U, virtbase + U300_WDOG_IMR);
128 /* If the watchdog is currently enabled, attempt to disable it */
129 val = readw(virtbase + U300_WDOG_D2R);
130 if (val != U300_WDOG_D2R_DISABLE_STATUS_DISABLED) {
131 writew(U300_WDOG_D1R_DISABLE1_DISABLE_TIMER,
132 virtbase + U300_WDOG_D1R);
133 writew(U300_WDOG_D2R_DISABLE2_DISABLE_TIMER,
134 virtbase + U300_WDOG_D2R);
135 /* Write this twice (else problems occur) */
136 writew(U300_WDOG_D2R_DISABLE2_DISABLE_TIMER,
137 virtbase + U300_WDOG_D2R);
138 }
139 val = readw(virtbase + U300_WDOG_D2R);
Linus Walleij01480702009-05-06 15:35:40 +0200140 if (val != U300_WDOG_D2R_DISABLE_STATUS_DISABLED)
141 dev_err(parent,
142 "%s(): watchdog not disabled! D2R value %04x\n",
143 __func__, val);
144}
145
Linus Walleij15b25702012-03-16 09:14:12 +0100146static int coh901327_start(struct watchdog_device *wdt_dev)
Linus Walleij01480702009-05-06 15:35:40 +0200147{
Wim Van Sebroeckdddbc6a2012-03-22 20:42:16 +0100148 coh901327_enable(wdt_dev->timeout * 100);
Linus Walleij15b25702012-03-16 09:14:12 +0100149 return 0;
Linus Walleij01480702009-05-06 15:35:40 +0200150}
151
Linus Walleij15b25702012-03-16 09:14:12 +0100152static int coh901327_stop(struct watchdog_device *wdt_dev)
153{
154 coh901327_disable();
155 return 0;
156}
157
158static int coh901327_ping(struct watchdog_device *wdd)
Linus Walleij01480702009-05-06 15:35:40 +0200159{
Linus Walleij01480702009-05-06 15:35:40 +0200160 /* Feed the watchdog */
161 writew(U300_WDOG_FR_FEED_RESTART_TIMER,
162 virtbase + U300_WDOG_FR);
Linus Walleij15b25702012-03-16 09:14:12 +0100163 return 0;
Linus Walleij01480702009-05-06 15:35:40 +0200164}
165
Linus Walleij15b25702012-03-16 09:14:12 +0100166static int coh901327_settimeout(struct watchdog_device *wdt_dev,
167 unsigned int time)
Linus Walleij01480702009-05-06 15:35:40 +0200168{
Wim Van Sebroeckdddbc6a2012-03-22 20:42:16 +0100169 wdt_dev->timeout = time;
Linus Walleij01480702009-05-06 15:35:40 +0200170 /* Set new timeout value */
Wim Van Sebroeckdddbc6a2012-03-22 20:42:16 +0100171 writew(time * 100, virtbase + U300_WDOG_TR);
Linus Walleij01480702009-05-06 15:35:40 +0200172 /* Feed the dog */
173 writew(U300_WDOG_FR_FEED_RESTART_TIMER,
174 virtbase + U300_WDOG_FR);
Linus Walleij01480702009-05-06 15:35:40 +0200175 return 0;
176}
177
Linus Walleij15b25702012-03-16 09:14:12 +0100178static unsigned int coh901327_gettimeleft(struct watchdog_device *wdt_dev)
179{
180 u16 val;
181
Linus Walleij15b25702012-03-16 09:14:12 +0100182 /* Read repeatedly until the value is stable! */
183 val = readw(virtbase + U300_WDOG_CR);
184 while (val & U300_WDOG_CR_VALID_IND)
185 val = readw(virtbase + U300_WDOG_CR);
186 val &= U300_WDOG_CR_COUNT_VALUE_MASK;
Linus Walleij15b25702012-03-16 09:14:12 +0100187 if (val != 0)
188 val /= 100;
189
190 return val;
191}
192
Linus Walleij01480702009-05-06 15:35:40 +0200193/*
194 * This interrupt occurs 10 ms before the watchdog WILL bark.
195 */
196static irqreturn_t coh901327_interrupt(int irq, void *data)
197{
198 u16 val;
199
200 /*
201 * Ack IRQ? If this occurs we're FUBAR anyway, so
202 * just acknowledge, disable the interrupt and await the imminent end.
203 * If you at some point need a host of callbacks to be called
204 * when the system is about to watchdog-reset, add them here!
205 *
206 * NOTE: on future versions of this IP-block, it will be possible
207 * to prevent a watchdog reset by feeding the watchdog at this
208 * point.
209 */
Linus Walleij01480702009-05-06 15:35:40 +0200210 val = readw(virtbase + U300_WDOG_IER);
211 if (val == U300_WDOG_IER_WILL_BARK_IRQ_EVENT_IND)
212 writew(U300_WDOG_IER_WILL_BARK_IRQ_ACK_ENABLE,
213 virtbase + U300_WDOG_IER);
214 writew(0x0000U, virtbase + U300_WDOG_IMR);
Linus Walleij01480702009-05-06 15:35:40 +0200215 dev_crit(parent, "watchdog is barking!\n");
216 return IRQ_HANDLED;
217}
218
Linus Walleij15b25702012-03-16 09:14:12 +0100219static const struct watchdog_info coh901327_ident = {
220 .options = WDIOF_CARDRESET | WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
221 .identity = DRV_NAME,
Linus Walleij01480702009-05-06 15:35:40 +0200222};
223
Gustavo A. R. Silva9215fc72017-07-07 19:33:30 -0500224static const struct watchdog_ops coh901327_ops = {
Linus Walleij15b25702012-03-16 09:14:12 +0100225 .owner = THIS_MODULE,
226 .start = coh901327_start,
227 .stop = coh901327_stop,
228 .ping = coh901327_ping,
229 .set_timeout = coh901327_settimeout,
230 .get_timeleft = coh901327_gettimeleft,
231};
232
233static struct watchdog_device coh901327_wdt = {
234 .info = &coh901327_ident,
235 .ops = &coh901327_ops,
236 /*
Wim Van Sebroeckdddbc6a2012-03-22 20:42:16 +0100237 * Max timeout is 327 since the 10ms
Linus Walleij15b25702012-03-16 09:14:12 +0100238 * timeout register is max
239 * 0x7FFF = 327670ms ~= 327s.
240 */
Marcus Folkesson321390d2018-02-11 21:08:47 +0100241 .min_timeout = 1,
Linus Walleij15b25702012-03-16 09:14:12 +0100242 .max_timeout = 327,
Marcus Folkesson321390d2018-02-11 21:08:47 +0100243 .timeout = U300_WDOG_DEFAULT_TIMEOUT,
Linus Walleij01480702009-05-06 15:35:40 +0200244};
245
246static int __exit coh901327_remove(struct platform_device *pdev)
247{
Linus Walleij15b25702012-03-16 09:14:12 +0100248 watchdog_unregister_device(&coh901327_wdt);
Linus Walleij01480702009-05-06 15:35:40 +0200249 coh901327_disable();
250 free_irq(irq, pdev);
Guenter Roeck14da8d42017-01-03 03:03:27 -0800251 clk_disable_unprepare(clk);
Linus Walleij01480702009-05-06 15:35:40 +0200252 clk_put(clk);
Linus Walleij01480702009-05-06 15:35:40 +0200253 return 0;
254}
255
Linus Walleij01480702009-05-06 15:35:40 +0200256static int __init coh901327_probe(struct platform_device *pdev)
257{
Guenter Roeck9e143752017-01-03 19:21:37 -0800258 struct device *dev = &pdev->dev;
Linus Walleij01480702009-05-06 15:35:40 +0200259 int ret;
260 u16 val;
261 struct resource *res;
262
Guenter Roeck9e143752017-01-03 19:21:37 -0800263 parent = dev;
Linus Walleij01480702009-05-06 15:35:40 +0200264
Guenter Roeck30c65b222017-01-03 03:10:30 -0800265 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Guenter Roeck9e143752017-01-03 19:21:37 -0800266 virtbase = devm_ioremap_resource(dev, res);
Guenter Roeck30c65b222017-01-03 03:10:30 -0800267 if (IS_ERR(virtbase))
268 return PTR_ERR(virtbase);
Linus Walleij01480702009-05-06 15:35:40 +0200269
Guenter Roeck9e143752017-01-03 19:21:37 -0800270 clk = clk_get(dev, NULL);
Linus Walleij01480702009-05-06 15:35:40 +0200271 if (IS_ERR(clk)) {
272 ret = PTR_ERR(clk);
Guenter Roeck9e143752017-01-03 19:21:37 -0800273 dev_err(dev, "could not get clock\n");
Guenter Roeck30c65b222017-01-03 03:10:30 -0800274 return ret;
Linus Walleij01480702009-05-06 15:35:40 +0200275 }
Linus Walleijc362cb52012-06-12 19:19:01 +0200276 ret = clk_prepare_enable(clk);
Linus Walleij01480702009-05-06 15:35:40 +0200277 if (ret) {
Guenter Roeck9e143752017-01-03 19:21:37 -0800278 dev_err(dev, "could not prepare and enable clock\n");
Linus Walleij01480702009-05-06 15:35:40 +0200279 goto out_no_clk_enable;
280 }
281
282 val = readw(virtbase + U300_WDOG_SR);
283 switch (val) {
284 case U300_WDOG_SR_STATUS_TIMED_OUT:
Guenter Roeck9e143752017-01-03 19:21:37 -0800285 dev_info(dev, "watchdog timed out since last chip reset!\n");
Linus Walleij15b25702012-03-16 09:14:12 +0100286 coh901327_wdt.bootstatus |= WDIOF_CARDRESET;
Linus Walleij01480702009-05-06 15:35:40 +0200287 /* Status will be cleared below */
288 break;
289 case U300_WDOG_SR_STATUS_NORMAL:
Guenter Roeck9e143752017-01-03 19:21:37 -0800290 dev_info(dev, "in normal status, no timeouts have occurred.\n");
Linus Walleij01480702009-05-06 15:35:40 +0200291 break;
292 default:
Guenter Roeck9e143752017-01-03 19:21:37 -0800293 dev_info(dev, "contains an illegal status code (%08x)\n", val);
Linus Walleij01480702009-05-06 15:35:40 +0200294 break;
295 }
296
297 val = readw(virtbase + U300_WDOG_D2R);
298 switch (val) {
299 case U300_WDOG_D2R_DISABLE_STATUS_DISABLED:
Guenter Roeck9e143752017-01-03 19:21:37 -0800300 dev_info(dev, "currently disabled.\n");
Linus Walleij01480702009-05-06 15:35:40 +0200301 break;
302 case U300_WDOG_D2R_DISABLE_STATUS_ENABLED:
Guenter Roeck9e143752017-01-03 19:21:37 -0800303 dev_info(dev, "currently enabled! (disabling it now)\n");
Linus Walleij01480702009-05-06 15:35:40 +0200304 coh901327_disable();
305 break;
306 default:
Guenter Roeck9e143752017-01-03 19:21:37 -0800307 dev_err(dev, "contains an illegal enable/disable code (%08x)\n",
Linus Walleij01480702009-05-06 15:35:40 +0200308 val);
309 break;
310 }
311
312 /* Reset the watchdog */
313 writew(U300_WDOG_SR_RESET_STATUS_RESET, virtbase + U300_WDOG_SR);
314
315 irq = platform_get_irq(pdev, 0);
Yong Zhang86b59122011-09-07 16:10:55 +0800316 if (request_irq(irq, coh901327_interrupt, 0,
Linus Walleij01480702009-05-06 15:35:40 +0200317 DRV_NAME " Bark", pdev)) {
318 ret = -EIO;
319 goto out_no_irq;
320 }
321
Marcus Folkesson321390d2018-02-11 21:08:47 +0100322 watchdog_init_timeout(&coh901327_wdt, margin, dev);
Wim Van Sebroeckdddbc6a2012-03-22 20:42:16 +0100323
Guenter Roeck9e143752017-01-03 19:21:37 -0800324 coh901327_wdt.parent = dev;
Linus Walleij15b25702012-03-16 09:14:12 +0100325 ret = watchdog_register_device(&coh901327_wdt);
Guenter Roeck01372ae2017-01-03 03:22:09 -0800326 if (ret)
Linus Walleij01480702009-05-06 15:35:40 +0200327 goto out_no_wdog;
328
Marcus Folkesson321390d2018-02-11 21:08:47 +0100329 dev_info(dev, "initialized. (timeout=%d sec)\n",
330 coh901327_wdt.timeout);
Linus Walleij01480702009-05-06 15:35:40 +0200331 return 0;
332
333out_no_wdog:
334 free_irq(irq, pdev);
335out_no_irq:
Linus Walleijc362cb52012-06-12 19:19:01 +0200336 clk_disable_unprepare(clk);
Linus Walleij01480702009-05-06 15:35:40 +0200337out_no_clk_enable:
338 clk_put(clk);
Linus Walleij01480702009-05-06 15:35:40 +0200339 return ret;
340}
341
342#ifdef CONFIG_PM
Linus Walleij452190cb2011-10-03 10:52:58 +0200343
344static u16 wdogenablestore;
345static u16 irqmaskstore;
346
Linus Walleij01480702009-05-06 15:35:40 +0200347static int coh901327_suspend(struct platform_device *pdev, pm_message_t state)
348{
349 irqmaskstore = readw(virtbase + U300_WDOG_IMR) & 0x0001U;
350 wdogenablestore = readw(virtbase + U300_WDOG_D2R);
351 /* If watchdog is on, disable it here and now */
352 if (wdogenablestore == U300_WDOG_D2R_DISABLE_STATUS_ENABLED)
353 coh901327_disable();
354 return 0;
355}
356
357static int coh901327_resume(struct platform_device *pdev)
358{
359 /* Restore the watchdog interrupt */
360 writew(irqmaskstore, virtbase + U300_WDOG_IMR);
361 if (wdogenablestore == U300_WDOG_D2R_DISABLE_STATUS_ENABLED) {
362 /* Restart the watchdog timer */
363 writew(U300_WDOG_RR_RESTART_VALUE_RESUME,
364 virtbase + U300_WDOG_RR);
365 writew(U300_WDOG_FR_FEED_RESTART_TIMER,
366 virtbase + U300_WDOG_FR);
367 }
368 return 0;
369}
370#else
371#define coh901327_suspend NULL
372#define coh901327_resume NULL
373#endif
374
375/*
376 * Mistreating the watchdog is the only way to perform a software reset of the
377 * system on EMP platforms. So we implement this and export a symbol for it.
378 */
379void coh901327_watchdog_reset(void)
380{
381 /* Enable even if on JTAG too */
382 writew(U300_WDOG_JOR_JTAG_WATCHDOG_ENABLE,
383 virtbase + U300_WDOG_JOR);
384 /*
385 * Timeout = 5s, we have to wait for the watchdog reset to
386 * actually take place: the watchdog will be reloaded with the
387 * default value immediately, so we HAVE to reboot and get back
388 * into the kernel in 30s, or the device will reboot again!
389 * The boot loader will typically deactivate the watchdog, so we
390 * need time enough for the boot loader to get to the point of
391 * deactivating the watchdog before it is shut down by it.
392 *
393 * NOTE: on future versions of the watchdog, this restriction is
André Goddard Rosaaf901ca2009-11-14 13:09:05 -0200394 * gone: the watchdog will be reloaded with a default value (1 min)
Linus Walleij01480702009-05-06 15:35:40 +0200395 * instead of last value, and you can conveniently set the watchdog
396 * timeout to 10ms (value = 1) without any problems.
397 */
398 coh901327_enable(500);
399 /* Return and await doom */
400}
401
Linus Walleijc83c1992013-04-19 12:56:36 +0200402static const struct of_device_id coh901327_dt_match[] = {
403 { .compatible = "stericsson,coh901327" },
404 {},
405};
406
Linus Walleij01480702009-05-06 15:35:40 +0200407static struct platform_driver coh901327_driver = {
408 .driver = {
Linus Walleij01480702009-05-06 15:35:40 +0200409 .name = "coh901327_wdog",
Linus Walleijc83c1992013-04-19 12:56:36 +0200410 .of_match_table = coh901327_dt_match,
Linus Walleij01480702009-05-06 15:35:40 +0200411 },
412 .remove = __exit_p(coh901327_remove),
413 .suspend = coh901327_suspend,
414 .resume = coh901327_resume,
415};
416
Fabio Porcedda1cb92042013-01-09 12:15:27 +0100417module_platform_driver_probe(coh901327_driver, coh901327_probe);
Linus Walleij01480702009-05-06 15:35:40 +0200418
419MODULE_AUTHOR("Linus Walleij <linus.walleij@stericsson.com>");
420MODULE_DESCRIPTION("COH 901 327 Watchdog");
421
Wim Van Sebroeckdddbc6a2012-03-22 20:42:16 +0100422module_param(margin, uint, 0);
Linus Walleij01480702009-05-06 15:35:40 +0200423MODULE_PARM_DESC(margin, "Watchdog margin in seconds (default 60s)");
424
Marcus Folkesson8d039d42018-02-10 10:27:01 +0100425MODULE_LICENSE("GPL v2");
Linus Walleij15b25702012-03-16 09:14:12 +0100426MODULE_ALIAS("platform:coh901327-watchdog");