2 * GE watchdog userspace interface
4 * Author: Martyn Welch <martyn.welch@ge.com>
6 * Copyright 2008 GE Intelligent Platforms Embedded Systems, Inc.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
13 * Based on: mv64x60_wdt.c (MV64X60 watchdog userspace interface)
14 * Author: James Chapman <jchapman@katalix.com>
18 * This driver does not provide support for the hardwares capability of sending
19 * an interrupt at a programmable threshold.
21 * This driver currently can only support 1 watchdog - there are 2 in the
22 * hardware that this driver supports. Thus one could be configured as a
23 * process-based watchdog (via /dev/watchdog), the second (using the interrupt
24 * capabilities) a kernel-based watchdog.
27 #include <linux/kernel.h>
28 #include <linux/compiler.h>
29 #include <linux/init.h>
30 #include <linux/module.h>
31 #include <linux/miscdevice.h>
32 #include <linux/watchdog.h>
35 #include <linux/of_platform.h>
37 #include <linux/uaccess.h>
39 #include <sysdev/fsl_soc.h>
42 * The watchdog configuration register contains a pair of 2-bit fields,
43 * 1. a reload field, bits 27-26, which triggers a reload of
44 * the countdown register, and
45 * 2. an enable field, bits 25-24, which toggles between
46 * enabling and disabling the watchdog timer.
47 * Bit 31 is a read-only field which indicates whether the
48 * watchdog timer is currently enabled.
50 * The low 24 bits contain the timer reload value.
52 #define GEF_WDC_ENABLE_SHIFT 24
53 #define GEF_WDC_SERVICE_SHIFT 26
54 #define GEF_WDC_ENABLED_SHIFT 31
56 #define GEF_WDC_ENABLED_TRUE 1
57 #define GEF_WDC_ENABLED_FALSE 0
60 #define GEF_WDOG_FLAG_OPENED 0
62 static unsigned long wdt_flags
;
63 static int wdt_status
;
64 static void __iomem
*gef_wdt_regs
;
65 static int gef_wdt_timeout
;
66 static int gef_wdt_count
;
67 static unsigned int bus_clk
;
68 static char expect_close
;
69 static DEFINE_SPINLOCK(gef_wdt_spinlock
);
71 static int nowayout
= WATCHDOG_NOWAYOUT
;
72 module_param(nowayout
, int, 0);
73 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started (default="
74 __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
77 static int gef_wdt_toggle_wdc(int enabled_predicate
, int field_shift
)
83 spin_lock(&gef_wdt_spinlock
);
84 data
= ioread32be(gef_wdt_regs
);
85 enabled
= (data
>> GEF_WDC_ENABLED_SHIFT
) & 1;
87 /* only toggle the requested field if enabled state matches predicate */
88 if ((enabled
^ enabled_predicate
) == 0) {
89 /* We write a 1, then a 2 -- to the appropriate field */
90 data
= (1 << field_shift
) | gef_wdt_count
;
91 iowrite32be(data
, gef_wdt_regs
);
93 data
= (2 << field_shift
) | gef_wdt_count
;
94 iowrite32be(data
, gef_wdt_regs
);
97 spin_unlock(&gef_wdt_spinlock
);
102 static void gef_wdt_service(void)
104 gef_wdt_toggle_wdc(GEF_WDC_ENABLED_TRUE
,
105 GEF_WDC_SERVICE_SHIFT
);
108 static void gef_wdt_handler_enable(void)
110 if (gef_wdt_toggle_wdc(GEF_WDC_ENABLED_FALSE
,
111 GEF_WDC_ENABLE_SHIFT
)) {
113 printk(KERN_NOTICE
"gef_wdt: watchdog activated\n");
117 static void gef_wdt_handler_disable(void)
119 if (gef_wdt_toggle_wdc(GEF_WDC_ENABLED_TRUE
,
120 GEF_WDC_ENABLE_SHIFT
))
121 printk(KERN_NOTICE
"gef_wdt: watchdog deactivated\n");
124 static void gef_wdt_set_timeout(unsigned int timeout
)
126 /* maximum bus cycle count is 0xFFFFFFFF */
127 if (timeout
> 0xFFFFFFFF / bus_clk
)
128 timeout
= 0xFFFFFFFF / bus_clk
;
130 /* Register only holds upper 24 bits, bit shifted into lower 24 */
131 gef_wdt_count
= (timeout
* bus_clk
) >> 8;
132 gef_wdt_timeout
= timeout
;
136 static ssize_t
gef_wdt_write(struct file
*file
, const char __user
*data
,
137 size_t len
, loff_t
*ppos
)
145 for (i
= 0; i
!= len
; i
++) {
147 if (get_user(c
, data
+ i
))
159 static long gef_wdt_ioctl(struct file
*file
, unsigned int cmd
,
164 void __user
*argp
= (void __user
*)arg
;
165 static const struct watchdog_info info
= {
166 .options
= WDIOF_SETTIMEOUT
| WDIOF_MAGICCLOSE
|
168 .firmware_version
= 0,
169 .identity
= "GE watchdog",
173 case WDIOC_GETSUPPORT
:
174 if (copy_to_user(argp
, &info
, sizeof(info
)))
178 case WDIOC_GETSTATUS
:
179 case WDIOC_GETBOOTSTATUS
:
180 if (put_user(wdt_status
, (int __user
*)argp
))
182 wdt_status
&= ~WDIOF_KEEPALIVEPING
;
185 case WDIOC_SETOPTIONS
:
186 if (get_user(options
, (int __user
*)argp
))
189 if (options
& WDIOS_DISABLECARD
)
190 gef_wdt_handler_disable();
192 if (options
& WDIOS_ENABLECARD
)
193 gef_wdt_handler_enable();
196 case WDIOC_KEEPALIVE
:
198 wdt_status
|= WDIOF_KEEPALIVEPING
;
201 case WDIOC_SETTIMEOUT
:
202 if (get_user(timeout
, (int __user
*)argp
))
204 gef_wdt_set_timeout(timeout
);
207 case WDIOC_GETTIMEOUT
:
208 if (put_user(gef_wdt_timeout
, (int __user
*)argp
))
219 static int gef_wdt_open(struct inode
*inode
, struct file
*file
)
221 if (test_and_set_bit(GEF_WDOG_FLAG_OPENED
, &wdt_flags
))
225 __module_get(THIS_MODULE
);
227 gef_wdt_handler_enable();
229 return nonseekable_open(inode
, file
);
232 static int gef_wdt_release(struct inode
*inode
, struct file
*file
)
234 if (expect_close
== 42)
235 gef_wdt_handler_disable();
238 "gef_wdt: unexpected close, not stopping timer!\n");
243 clear_bit(GEF_WDOG_FLAG_OPENED
, &wdt_flags
);
248 static const struct file_operations gef_wdt_fops
= {
249 .owner
= THIS_MODULE
,
251 .write
= gef_wdt_write
,
252 .unlocked_ioctl
= gef_wdt_ioctl
,
253 .open
= gef_wdt_open
,
254 .release
= gef_wdt_release
,
257 static struct miscdevice gef_wdt_miscdev
= {
258 .minor
= WATCHDOG_MINOR
,
260 .fops
= &gef_wdt_fops
,
264 static int __devinit
gef_wdt_probe(struct platform_device
*dev
,
265 const struct of_device_id
*match
)
270 bus_clk
= 133; /* in MHz */
272 freq
= fsl_get_sys_freq();
276 /* Map devices registers into memory */
277 gef_wdt_regs
= of_iomap(dev
->dev
.of_node
, 0);
278 if (gef_wdt_regs
== NULL
)
281 gef_wdt_set_timeout(timeout
);
283 gef_wdt_handler_disable(); /* in case timer was already running */
285 return misc_register(&gef_wdt_miscdev
);
288 static int __devexit
gef_wdt_remove(struct platform_device
*dev
)
290 misc_deregister(&gef_wdt_miscdev
);
292 gef_wdt_handler_disable();
294 iounmap(gef_wdt_regs
);
299 static const struct of_device_id gef_wdt_ids
[] = {
301 .compatible
= "gef,fpga-wdt",
306 static struct of_platform_driver gef_wdt_driver
= {
309 .owner
= THIS_MODULE
,
310 .of_match_table
= gef_wdt_ids
,
312 .probe
= gef_wdt_probe
,
315 static int __init
gef_wdt_init(void)
317 printk(KERN_INFO
"GE watchdog driver\n");
318 return of_register_platform_driver(&gef_wdt_driver
);
321 static void __exit
gef_wdt_exit(void)
323 of_unregister_platform_driver(&gef_wdt_driver
);
326 module_init(gef_wdt_init
);
327 module_exit(gef_wdt_exit
);
329 MODULE_AUTHOR("Martyn Welch <martyn.welch@ge.com>");
330 MODULE_DESCRIPTION("GE watchdog driver");
331 MODULE_LICENSE("GPL");
332 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);
333 MODULE_ALIAS("platform: gef_wdt");