blob: 0b699c783d5754d651ae10dd70377c801449388f [file] [log] [blame]
Thomas Gleixner2874c5f2019-05-27 08:55:01 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Andres Salomon9b0fd112009-12-18 13:02:38 -05002/* Watchdog timer for machines with the CS5535/CS5536 companion chip
Jordan Crouse0b360862008-01-21 10:07:00 -07003 *
4 * Copyright (C) 2006-2007, Advanced Micro Devices, Inc.
Andres Salomon9b0fd112009-12-18 13:02:38 -05005 * Copyright (C) 2009 Andres Salomon <dilinger@collabora.co.uk>
Jordan Crouse0b360862008-01-21 10:07:00 -07006 */
7
Joe Perches27c766a2012-02-15 15:06:19 -08008#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
Jordan Crouse0b360862008-01-21 10:07:00 -07009
10#include <linux/module.h>
11#include <linux/moduleparam.h>
12#include <linux/types.h>
13#include <linux/miscdevice.h>
14#include <linux/watchdog.h>
15#include <linux/fs.h>
16#include <linux/platform_device.h>
17#include <linux/reboot.h>
Wim Van Sebroeck089ab072008-07-15 11:46:11 +000018#include <linux/uaccess.h>
Jordan Crouse0b360862008-01-21 10:07:00 -070019
Andres Salomon9b0fd112009-12-18 13:02:38 -050020#include <linux/cs5535.h>
Jordan Crouse0b360862008-01-21 10:07:00 -070021
22#define GEODEWDT_HZ 500
23#define GEODEWDT_SCALE 6
24#define GEODEWDT_MAX_SECONDS 131
25
26#define WDT_FLAGS_OPEN 1
27#define WDT_FLAGS_ORPHAN 2
28
29#define DRV_NAME "geodewdt"
30#define WATCHDOG_NAME "Geode GX/LX WDT"
31#define WATCHDOG_TIMEOUT 60
32
33static int timeout = WATCHDOG_TIMEOUT;
34module_param(timeout, int, 0);
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +000035MODULE_PARM_DESC(timeout,
36 "Watchdog timeout in seconds. 1<= timeout <=131, default="
37 __MODULE_STRING(WATCHDOG_TIMEOUT) ".");
Jordan Crouse0b360862008-01-21 10:07:00 -070038
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010039static bool nowayout = WATCHDOG_NOWAYOUT;
40module_param(nowayout, bool, 0);
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +000041MODULE_PARM_DESC(nowayout,
42 "Watchdog cannot be stopped once started (default="
43 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Jordan Crouse0b360862008-01-21 10:07:00 -070044
45static struct platform_device *geodewdt_platform_device;
46static unsigned long wdt_flags;
Andres Salomon9b0fd112009-12-18 13:02:38 -050047static struct cs5535_mfgpt_timer *wdt_timer;
Jordan Crouse0b360862008-01-21 10:07:00 -070048static int safe_close;
49
50static void geodewdt_ping(void)
51{
52 /* Stop the counter */
Andres Salomon9b0fd112009-12-18 13:02:38 -050053 cs5535_mfgpt_write(wdt_timer, MFGPT_REG_SETUP, 0);
Jordan Crouse0b360862008-01-21 10:07:00 -070054
55 /* Reset the counter */
Andres Salomon9b0fd112009-12-18 13:02:38 -050056 cs5535_mfgpt_write(wdt_timer, MFGPT_REG_COUNTER, 0);
Jordan Crouse0b360862008-01-21 10:07:00 -070057
58 /* Enable the counter */
Andres Salomon9b0fd112009-12-18 13:02:38 -050059 cs5535_mfgpt_write(wdt_timer, MFGPT_REG_SETUP, MFGPT_SETUP_CNTEN);
Jordan Crouse0b360862008-01-21 10:07:00 -070060}
61
62static void geodewdt_disable(void)
63{
Andres Salomon9b0fd112009-12-18 13:02:38 -050064 cs5535_mfgpt_write(wdt_timer, MFGPT_REG_SETUP, 0);
65 cs5535_mfgpt_write(wdt_timer, MFGPT_REG_COUNTER, 0);
Jordan Crouse0b360862008-01-21 10:07:00 -070066}
67
68static int geodewdt_set_heartbeat(int val)
69{
70 if (val < 1 || val > GEODEWDT_MAX_SECONDS)
71 return -EINVAL;
72
Andres Salomon9b0fd112009-12-18 13:02:38 -050073 cs5535_mfgpt_write(wdt_timer, MFGPT_REG_SETUP, 0);
74 cs5535_mfgpt_write(wdt_timer, MFGPT_REG_CMP2, val * GEODEWDT_HZ);
75 cs5535_mfgpt_write(wdt_timer, MFGPT_REG_COUNTER, 0);
76 cs5535_mfgpt_write(wdt_timer, MFGPT_REG_SETUP, MFGPT_SETUP_CNTEN);
Jordan Crouse0b360862008-01-21 10:07:00 -070077
78 timeout = val;
79 return 0;
80}
81
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000082static int geodewdt_open(struct inode *inode, struct file *file)
Jordan Crouse0b360862008-01-21 10:07:00 -070083{
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000084 if (test_and_set_bit(WDT_FLAGS_OPEN, &wdt_flags))
85 return -EBUSY;
Jordan Crouse0b360862008-01-21 10:07:00 -070086
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000087 if (!test_and_clear_bit(WDT_FLAGS_ORPHAN, &wdt_flags))
88 __module_get(THIS_MODULE);
Jordan Crouse0b360862008-01-21 10:07:00 -070089
90 geodewdt_ping();
Kirill Smelkovc5bf68f2019-03-26 23:51:19 +030091 return stream_open(inode, file);
Jordan Crouse0b360862008-01-21 10:07:00 -070092}
93
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000094static int geodewdt_release(struct inode *inode, struct file *file)
Jordan Crouse0b360862008-01-21 10:07:00 -070095{
96 if (safe_close) {
97 geodewdt_disable();
98 module_put(THIS_MODULE);
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000099 } else {
Joe Perches27c766a2012-02-15 15:06:19 -0800100 pr_crit("Unexpected close - watchdog is not stopping\n");
Jordan Crouse0b360862008-01-21 10:07:00 -0700101 geodewdt_ping();
102
103 set_bit(WDT_FLAGS_ORPHAN, &wdt_flags);
104 }
105
106 clear_bit(WDT_FLAGS_OPEN, &wdt_flags);
107 safe_close = 0;
108 return 0;
109}
110
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000111static ssize_t geodewdt_write(struct file *file, const char __user *data,
112 size_t len, loff_t *ppos)
Jordan Crouse0b360862008-01-21 10:07:00 -0700113{
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000114 if (len) {
Jordan Crouse0b360862008-01-21 10:07:00 -0700115 if (!nowayout) {
116 size_t i;
117 safe_close = 0;
118
119 for (i = 0; i != len; i++) {
120 char c;
121
122 if (get_user(c, data + i))
123 return -EFAULT;
124
125 if (c == 'V')
126 safe_close = 1;
127 }
128 }
129
130 geodewdt_ping();
131 }
132 return len;
133}
134
Wim Van Sebroeck7275fc82008-09-18 12:26:15 +0000135static long geodewdt_ioctl(struct file *file, unsigned int cmd,
136 unsigned long arg)
Jordan Crouse0b360862008-01-21 10:07:00 -0700137{
138 void __user *argp = (void __user *)arg;
139 int __user *p = argp;
140 int interval;
141
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000142 static const struct watchdog_info ident = {
Jordan Crouse0b360862008-01-21 10:07:00 -0700143 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING
144 | WDIOF_MAGICCLOSE,
145 .firmware_version = 1,
146 .identity = WATCHDOG_NAME,
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000147 };
Jordan Crouse0b360862008-01-21 10:07:00 -0700148
Wim Van Sebroeck5eb82492008-07-17 18:08:47 +0000149 switch (cmd) {
Jordan Crouse0b360862008-01-21 10:07:00 -0700150 case WDIOC_GETSUPPORT:
151 return copy_to_user(argp, &ident,
152 sizeof(ident)) ? -EFAULT : 0;
Jordan Crouse0b360862008-01-21 10:07:00 -0700153 case WDIOC_GETSTATUS:
154 case WDIOC_GETBOOTSTATUS:
155 return put_user(0, p);
156
Jordan Crouse0b360862008-01-21 10:07:00 -0700157 case WDIOC_SETOPTIONS:
158 {
159 int options, ret = -EINVAL;
160
161 if (get_user(options, p))
162 return -EFAULT;
163
164 if (options & WDIOS_DISABLECARD) {
165 geodewdt_disable();
166 ret = 0;
167 }
168
169 if (options & WDIOS_ENABLECARD) {
170 geodewdt_ping();
171 ret = 0;
172 }
173
174 return ret;
175 }
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000176 case WDIOC_KEEPALIVE:
177 geodewdt_ping();
178 return 0;
179
180 case WDIOC_SETTIMEOUT:
181 if (get_user(interval, p))
182 return -EFAULT;
183
184 if (geodewdt_set_heartbeat(interval))
185 return -EINVAL;
Gustavo A. R. Silvabd490f82020-07-07 12:11:21 -0500186 fallthrough;
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000187 case WDIOC_GETTIMEOUT:
188 return put_user(timeout, p);
189
Jordan Crouse0b360862008-01-21 10:07:00 -0700190 default:
191 return -ENOTTY;
192 }
193
194 return 0;
195}
196
197static const struct file_operations geodewdt_fops = {
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000198 .owner = THIS_MODULE,
199 .llseek = no_llseek,
200 .write = geodewdt_write,
Wim Van Sebroeck7275fc82008-09-18 12:26:15 +0000201 .unlocked_ioctl = geodewdt_ioctl,
Arnd Bergmannb6dfb242019-06-03 14:23:09 +0200202 .compat_ioctl = compat_ptr_ioctl,
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000203 .open = geodewdt_open,
204 .release = geodewdt_release,
Jordan Crouse0b360862008-01-21 10:07:00 -0700205};
206
207static struct miscdevice geodewdt_miscdev = {
208 .minor = WATCHDOG_MINOR,
209 .name = "watchdog",
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000210 .fops = &geodewdt_fops,
Jordan Crouse0b360862008-01-21 10:07:00 -0700211};
212
Jean Delvare78411be2014-03-14 13:16:47 +0100213static int __init geodewdt_probe(struct platform_device *dev)
Jordan Crouse0b360862008-01-21 10:07:00 -0700214{
Andres Salomon9b0fd112009-12-18 13:02:38 -0500215 int ret;
Jordan Crouse0b360862008-01-21 10:07:00 -0700216
Andres Salomon9b0fd112009-12-18 13:02:38 -0500217 wdt_timer = cs5535_mfgpt_alloc_timer(MFGPT_TIMER_ANY, MFGPT_DOMAIN_WORKING);
218 if (!wdt_timer) {
Joe Perches27c766a2012-02-15 15:06:19 -0800219 pr_err("No timers were available\n");
Jordan Crouse0b360862008-01-21 10:07:00 -0700220 return -ENODEV;
221 }
222
Jordan Crouse0b360862008-01-21 10:07:00 -0700223 /* Set up the timer */
224
Andres Salomon9b0fd112009-12-18 13:02:38 -0500225 cs5535_mfgpt_write(wdt_timer, MFGPT_REG_SETUP,
Jordan Crouse0b360862008-01-21 10:07:00 -0700226 GEODEWDT_SCALE | (3 << 8));
227
228 /* Set up comparator 2 to reset when the event fires */
Andres Salomon9b0fd112009-12-18 13:02:38 -0500229 cs5535_mfgpt_toggle_event(wdt_timer, MFGPT_CMP2, MFGPT_EVENT_RESET, 1);
Jordan Crouse0b360862008-01-21 10:07:00 -0700230
231 /* Set up the initial timeout */
232
Andres Salomon9b0fd112009-12-18 13:02:38 -0500233 cs5535_mfgpt_write(wdt_timer, MFGPT_REG_CMP2,
Jordan Crouse0b360862008-01-21 10:07:00 -0700234 timeout * GEODEWDT_HZ);
235
236 ret = misc_register(&geodewdt_miscdev);
237
238 return ret;
239}
240
Bill Pemberton4b12b892012-11-19 13:26:24 -0500241static int geodewdt_remove(struct platform_device *dev)
Jordan Crouse0b360862008-01-21 10:07:00 -0700242{
243 misc_deregister(&geodewdt_miscdev);
244 return 0;
245}
246
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000247static void geodewdt_shutdown(struct platform_device *dev)
Jordan Crouse0b360862008-01-21 10:07:00 -0700248{
249 geodewdt_disable();
250}
251
252static struct platform_driver geodewdt_driver = {
Bill Pemberton82268712012-11-19 13:21:12 -0500253 .remove = geodewdt_remove,
Jordan Crouse0b360862008-01-21 10:07:00 -0700254 .shutdown = geodewdt_shutdown,
255 .driver = {
Jordan Crouse0b360862008-01-21 10:07:00 -0700256 .name = DRV_NAME,
257 },
258};
259
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000260static int __init geodewdt_init(void)
Jordan Crouse0b360862008-01-21 10:07:00 -0700261{
262 int ret;
263
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +0000264 geodewdt_platform_device = platform_device_register_simple(DRV_NAME,
265 -1, NULL, 0);
Jean Delvare78411be2014-03-14 13:16:47 +0100266 if (IS_ERR(geodewdt_platform_device))
267 return PTR_ERR(geodewdt_platform_device);
268
269 ret = platform_driver_probe(&geodewdt_driver, geodewdt_probe);
270 if (ret)
Jordan Crouse0b360862008-01-21 10:07:00 -0700271 goto err;
Jordan Crouse0b360862008-01-21 10:07:00 -0700272
273 return 0;
274err:
Jean Delvare78411be2014-03-14 13:16:47 +0100275 platform_device_unregister(geodewdt_platform_device);
Jordan Crouse0b360862008-01-21 10:07:00 -0700276 return ret;
277}
278
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +0000279static void __exit geodewdt_exit(void)
Jordan Crouse0b360862008-01-21 10:07:00 -0700280{
281 platform_device_unregister(geodewdt_platform_device);
282 platform_driver_unregister(&geodewdt_driver);
283}
284
285module_init(geodewdt_init);
286module_exit(geodewdt_exit);
287
288MODULE_AUTHOR("Advanced Micro Devices, Inc");
289MODULE_DESCRIPTION("Geode GX/LX Watchdog Driver");
290MODULE_LICENSE("GPL");