1 /* Watchdog timer for machines with the CS5535/CS5536 companion chip
3 * Copyright (C) 2006-2007, Advanced Micro Devices, Inc.
4 * Copyright (C) 2009 Andres Salomon <dilinger@collabora.co.uk>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
14 #include <linux/module.h>
15 #include <linux/moduleparam.h>
16 #include <linux/types.h>
17 #include <linux/miscdevice.h>
18 #include <linux/watchdog.h>
20 #include <linux/platform_device.h>
21 #include <linux/reboot.h>
22 #include <linux/uaccess.h>
24 #include <linux/cs5535.h>
26 #define GEODEWDT_HZ 500
27 #define GEODEWDT_SCALE 6
28 #define GEODEWDT_MAX_SECONDS 131
30 #define WDT_FLAGS_OPEN 1
31 #define WDT_FLAGS_ORPHAN 2
33 #define DRV_NAME "geodewdt"
34 #define WATCHDOG_NAME "Geode GX/LX WDT"
35 #define WATCHDOG_TIMEOUT 60
37 static int timeout
= WATCHDOG_TIMEOUT
;
38 module_param(timeout
, int, 0);
39 MODULE_PARM_DESC(timeout
,
40 "Watchdog timeout in seconds. 1<= timeout <=131, default="
41 __MODULE_STRING(WATCHDOG_TIMEOUT
) ".");
43 static bool nowayout
= WATCHDOG_NOWAYOUT
;
44 module_param(nowayout
, bool, 0);
45 MODULE_PARM_DESC(nowayout
,
46 "Watchdog cannot be stopped once started (default="
47 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
49 static struct platform_device
*geodewdt_platform_device
;
50 static unsigned long wdt_flags
;
51 static struct cs5535_mfgpt_timer
*wdt_timer
;
52 static int safe_close
;
54 static void geodewdt_ping(void)
56 /* Stop the counter */
57 cs5535_mfgpt_write(wdt_timer
, MFGPT_REG_SETUP
, 0);
59 /* Reset the counter */
60 cs5535_mfgpt_write(wdt_timer
, MFGPT_REG_COUNTER
, 0);
62 /* Enable the counter */
63 cs5535_mfgpt_write(wdt_timer
, MFGPT_REG_SETUP
, MFGPT_SETUP_CNTEN
);
66 static void geodewdt_disable(void)
68 cs5535_mfgpt_write(wdt_timer
, MFGPT_REG_SETUP
, 0);
69 cs5535_mfgpt_write(wdt_timer
, MFGPT_REG_COUNTER
, 0);
72 static int geodewdt_set_heartbeat(int val
)
74 if (val
< 1 || val
> GEODEWDT_MAX_SECONDS
)
77 cs5535_mfgpt_write(wdt_timer
, MFGPT_REG_SETUP
, 0);
78 cs5535_mfgpt_write(wdt_timer
, MFGPT_REG_CMP2
, val
* GEODEWDT_HZ
);
79 cs5535_mfgpt_write(wdt_timer
, MFGPT_REG_COUNTER
, 0);
80 cs5535_mfgpt_write(wdt_timer
, MFGPT_REG_SETUP
, MFGPT_SETUP_CNTEN
);
86 static int geodewdt_open(struct inode
*inode
, struct file
*file
)
88 if (test_and_set_bit(WDT_FLAGS_OPEN
, &wdt_flags
))
91 if (!test_and_clear_bit(WDT_FLAGS_ORPHAN
, &wdt_flags
))
92 __module_get(THIS_MODULE
);
95 return nonseekable_open(inode
, file
);
98 static int geodewdt_release(struct inode
*inode
, struct file
*file
)
102 module_put(THIS_MODULE
);
104 pr_crit("Unexpected close - watchdog is not stopping\n");
107 set_bit(WDT_FLAGS_ORPHAN
, &wdt_flags
);
110 clear_bit(WDT_FLAGS_OPEN
, &wdt_flags
);
115 static ssize_t
geodewdt_write(struct file
*file
, const char __user
*data
,
116 size_t len
, loff_t
*ppos
)
123 for (i
= 0; i
!= len
; i
++) {
126 if (get_user(c
, data
+ i
))
139 static long geodewdt_ioctl(struct file
*file
, unsigned int cmd
,
142 void __user
*argp
= (void __user
*)arg
;
143 int __user
*p
= argp
;
146 static const struct watchdog_info ident
= {
147 .options
= WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
149 .firmware_version
= 1,
150 .identity
= WATCHDOG_NAME
,
154 case WDIOC_GETSUPPORT
:
155 return copy_to_user(argp
, &ident
,
156 sizeof(ident
)) ? -EFAULT
: 0;
159 case WDIOC_GETSTATUS
:
160 case WDIOC_GETBOOTSTATUS
:
161 return put_user(0, p
);
163 case WDIOC_SETOPTIONS
:
165 int options
, ret
= -EINVAL
;
167 if (get_user(options
, p
))
170 if (options
& WDIOS_DISABLECARD
) {
175 if (options
& WDIOS_ENABLECARD
) {
182 case WDIOC_KEEPALIVE
:
186 case WDIOC_SETTIMEOUT
:
187 if (get_user(interval
, p
))
190 if (geodewdt_set_heartbeat(interval
))
193 case WDIOC_GETTIMEOUT
:
194 return put_user(timeout
, p
);
203 static const struct file_operations geodewdt_fops
= {
204 .owner
= THIS_MODULE
,
206 .write
= geodewdt_write
,
207 .unlocked_ioctl
= geodewdt_ioctl
,
208 .open
= geodewdt_open
,
209 .release
= geodewdt_release
,
212 static struct miscdevice geodewdt_miscdev
= {
213 .minor
= WATCHDOG_MINOR
,
215 .fops
= &geodewdt_fops
,
218 static int __init
geodewdt_probe(struct platform_device
*dev
)
222 wdt_timer
= cs5535_mfgpt_alloc_timer(MFGPT_TIMER_ANY
, MFGPT_DOMAIN_WORKING
);
224 pr_err("No timers were available\n");
228 /* Set up the timer */
230 cs5535_mfgpt_write(wdt_timer
, MFGPT_REG_SETUP
,
231 GEODEWDT_SCALE
| (3 << 8));
233 /* Set up comparator 2 to reset when the event fires */
234 cs5535_mfgpt_toggle_event(wdt_timer
, MFGPT_CMP2
, MFGPT_EVENT_RESET
, 1);
236 /* Set up the initial timeout */
238 cs5535_mfgpt_write(wdt_timer
, MFGPT_REG_CMP2
,
239 timeout
* GEODEWDT_HZ
);
241 ret
= misc_register(&geodewdt_miscdev
);
246 static int geodewdt_remove(struct platform_device
*dev
)
248 misc_deregister(&geodewdt_miscdev
);
252 static void geodewdt_shutdown(struct platform_device
*dev
)
257 static struct platform_driver geodewdt_driver
= {
258 .remove
= geodewdt_remove
,
259 .shutdown
= geodewdt_shutdown
,
265 static int __init
geodewdt_init(void)
269 geodewdt_platform_device
= platform_device_register_simple(DRV_NAME
,
271 if (IS_ERR(geodewdt_platform_device
))
272 return PTR_ERR(geodewdt_platform_device
);
274 ret
= platform_driver_probe(&geodewdt_driver
, geodewdt_probe
);
280 platform_device_unregister(geodewdt_platform_device
);
284 static void __exit
geodewdt_exit(void)
286 platform_device_unregister(geodewdt_platform_device
);
287 platform_driver_unregister(&geodewdt_driver
);
290 module_init(geodewdt_init
);
291 module_exit(geodewdt_exit
);
293 MODULE_AUTHOR("Advanced Micro Devices, Inc");
294 MODULE_DESCRIPTION("Geode GX/LX Watchdog Driver");
295 MODULE_LICENSE("GPL");