1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (C) ST-Ericsson SA 2011-2013
5 * Author: Mathieu Poirier <mathieu.poirier@linaro.org> for ST-Ericsson
6 * Author: Jonas Aaberg <jonas.aberg@stericsson.com> for ST-Ericsson
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/module.h>
12 #include <linux/kernel.h>
13 #include <linux/moduleparam.h>
14 #include <linux/err.h>
15 #include <linux/uaccess.h>
16 #include <linux/watchdog.h>
17 #include <linux/platform_device.h>
19 #include <linux/mfd/dbx500-prcmu.h>
21 #define WATCHDOG_TIMEOUT 600 /* 10 minutes */
23 #define WATCHDOG_MIN 0
24 #define WATCHDOG_MAX28 268435 /* 28 bit resolution in ms == 268435.455 s */
26 static unsigned int timeout
= WATCHDOG_TIMEOUT
;
27 module_param(timeout
, uint
, 0);
28 MODULE_PARM_DESC(timeout
,
29 "Watchdog timeout in seconds. default="
30 __MODULE_STRING(WATCHDOG_TIMEOUT
) ".");
32 static bool nowayout
= WATCHDOG_NOWAYOUT
;
33 module_param(nowayout
, bool, 0);
34 MODULE_PARM_DESC(nowayout
,
35 "Watchdog cannot be stopped once started (default="
36 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
38 static int db8500_wdt_start(struct watchdog_device
*wdd
)
40 return prcmu_enable_a9wdog(PRCMU_WDOG_ALL
);
43 static int db8500_wdt_stop(struct watchdog_device
*wdd
)
45 return prcmu_disable_a9wdog(PRCMU_WDOG_ALL
);
48 static int db8500_wdt_keepalive(struct watchdog_device
*wdd
)
50 return prcmu_kick_a9wdog(PRCMU_WDOG_ALL
);
53 static int db8500_wdt_set_timeout(struct watchdog_device
*wdd
,
57 prcmu_load_a9wdog(PRCMU_WDOG_ALL
, timeout
* 1000);
58 db8500_wdt_start(wdd
);
63 static const struct watchdog_info db8500_wdt_info
= {
64 .options
= WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
| WDIOF_MAGICCLOSE
,
65 .identity
= "DB8500 WDT",
66 .firmware_version
= 1,
69 static const struct watchdog_ops db8500_wdt_ops
= {
71 .start
= db8500_wdt_start
,
72 .stop
= db8500_wdt_stop
,
73 .ping
= db8500_wdt_keepalive
,
74 .set_timeout
= db8500_wdt_set_timeout
,
77 static struct watchdog_device db8500_wdt
= {
78 .info
= &db8500_wdt_info
,
79 .ops
= &db8500_wdt_ops
,
80 .min_timeout
= WATCHDOG_MIN
,
81 .max_timeout
= WATCHDOG_MAX28
,
84 static int db8500_wdt_probe(struct platform_device
*pdev
)
86 struct device
*dev
= &pdev
->dev
;
89 timeout
= 600; /* Default to 10 minutes */
90 db8500_wdt
.parent
= dev
;
91 watchdog_set_nowayout(&db8500_wdt
, nowayout
);
93 /* disable auto off on sleep */
94 prcmu_config_a9wdog(PRCMU_WDOG_CPU1
, false);
96 /* set HW initial value */
97 prcmu_load_a9wdog(PRCMU_WDOG_ALL
, timeout
* 1000);
99 ret
= devm_watchdog_register_device(dev
, &db8500_wdt
);
103 dev_info(dev
, "initialized\n");
108 static int db8500_wdt_suspend(struct platform_device
*pdev
,
111 if (watchdog_active(&db8500_wdt
)) {
112 db8500_wdt_stop(&db8500_wdt
);
113 prcmu_config_a9wdog(PRCMU_WDOG_CPU1
, true);
115 prcmu_load_a9wdog(PRCMU_WDOG_ALL
, timeout
* 1000);
116 db8500_wdt_start(&db8500_wdt
);
121 static int db8500_wdt_resume(struct platform_device
*pdev
)
123 if (watchdog_active(&db8500_wdt
)) {
124 db8500_wdt_stop(&db8500_wdt
);
125 prcmu_config_a9wdog(PRCMU_WDOG_CPU1
, false);
127 prcmu_load_a9wdog(PRCMU_WDOG_ALL
, timeout
* 1000);
128 db8500_wdt_start(&db8500_wdt
);
133 static struct platform_driver db8500_wdt_driver
= {
134 .probe
= db8500_wdt_probe
,
135 .suspend
= pm_ptr(db8500_wdt_suspend
),
136 .resume
= pm_ptr(db8500_wdt_resume
),
138 .name
= "db8500_wdt",
142 module_platform_driver(db8500_wdt_driver
);
144 MODULE_AUTHOR("Jonas Aaberg <jonas.aberg@stericsson.com>");
145 MODULE_DESCRIPTION("DB8500 Watchdog Driver");
146 MODULE_LICENSE("GPL");
147 MODULE_ALIAS("platform:db8500_wdt");