2 * mv64x60_wdt.c - MV64X60 (Marvell Discovery) watchdog userspace interface
4 * Author: James Chapman <jchapman@katalix.com>
6 * Platform-specific setup code should configure the dog to generate
7 * interrupt or reset as required. This code only enables/disables
8 * and services the watchdog.
10 * Derived from mpc8xx_wdt.c, with the following copyright.
12 * 2002 (c) Florian Schirmer <jolt@tuxbox.org> This file is licensed under
13 * the terms of the GNU General Public License version 2. This program
14 * is licensed "as is" without any warranty of any kind, whether express
18 #include <linux/config.h>
20 #include <linux/init.h>
21 #include <linux/kernel.h>
22 #include <linux/miscdevice.h>
23 #include <linux/module.h>
24 #include <linux/watchdog.h>
25 #include <asm/mv64x60.h>
26 #include <asm/uaccess.h>
29 /* MV64x60 WDC (config) register access definitions */
30 #define MV64x60_WDC_CTL1_MASK (3 << 24)
31 #define MV64x60_WDC_CTL1(val) ((val & 3) << 24)
32 #define MV64x60_WDC_CTL2_MASK (3 << 26)
33 #define MV64x60_WDC_CTL2(val) ((val & 3) << 26)
36 #define MV64x60_WDOG_FLAG_OPENED 0
37 #define MV64x60_WDOG_FLAG_ENABLED 1
39 static unsigned long wdt_flags
;
40 static int wdt_status
;
41 static void __iomem
*mv64x60_regs
;
42 static int mv64x60_wdt_timeout
;
44 static void mv64x60_wdt_reg_write(u32 val
)
46 /* Allow write only to CTL1 / CTL2 fields, retaining values in
49 u32 data
= readl(mv64x60_regs
+ MV64x60_WDT_WDC
);
50 data
&= ~(MV64x60_WDC_CTL1_MASK
| MV64x60_WDC_CTL2_MASK
);
52 writel(data
, mv64x60_regs
+ MV64x60_WDT_WDC
);
55 static void mv64x60_wdt_service(void)
57 /* Write 01 followed by 10 to CTL2 */
58 mv64x60_wdt_reg_write(MV64x60_WDC_CTL2(0x01));
59 mv64x60_wdt_reg_write(MV64x60_WDC_CTL2(0x02));
62 static void mv64x60_wdt_handler_disable(void)
64 if (test_and_clear_bit(MV64x60_WDOG_FLAG_ENABLED
, &wdt_flags
)) {
65 /* Write 01 followed by 10 to CTL1 */
66 mv64x60_wdt_reg_write(MV64x60_WDC_CTL1(0x01));
67 mv64x60_wdt_reg_write(MV64x60_WDC_CTL1(0x02));
68 printk(KERN_NOTICE
"mv64x60_wdt: watchdog deactivated\n");
72 static void mv64x60_wdt_handler_enable(void)
74 if (!test_and_set_bit(MV64x60_WDOG_FLAG_ENABLED
, &wdt_flags
)) {
75 /* Write 01 followed by 10 to CTL1 */
76 mv64x60_wdt_reg_write(MV64x60_WDC_CTL1(0x01));
77 mv64x60_wdt_reg_write(MV64x60_WDC_CTL1(0x02));
78 printk(KERN_NOTICE
"mv64x60_wdt: watchdog activated\n");
82 static int mv64x60_wdt_open(struct inode
*inode
, struct file
*file
)
84 if (test_and_set_bit(MV64x60_WDOG_FLAG_OPENED
, &wdt_flags
))
87 mv64x60_wdt_service();
88 mv64x60_wdt_handler_enable();
93 static int mv64x60_wdt_release(struct inode
*inode
, struct file
*file
)
95 mv64x60_wdt_service();
97 #if !defined(CONFIG_WATCHDOG_NOWAYOUT)
98 mv64x60_wdt_handler_disable();
101 clear_bit(MV64x60_WDOG_FLAG_OPENED
, &wdt_flags
);
106 static ssize_t
mv64x60_wdt_write(struct file
*file
, const char *data
,
107 size_t len
, loff_t
* ppos
)
109 if (*ppos
!= file
->f_pos
)
113 mv64x60_wdt_service();
118 static int mv64x60_wdt_ioctl(struct inode
*inode
, struct file
*file
,
119 unsigned int cmd
, unsigned long arg
)
122 static struct watchdog_info info
= {
123 .options
= WDIOF_KEEPALIVEPING
,
124 .firmware_version
= 0,
125 .identity
= "MV64x60 watchdog",
129 case WDIOC_GETSUPPORT
:
130 if (copy_to_user((void *)arg
, &info
, sizeof(info
)))
134 case WDIOC_GETSTATUS
:
135 case WDIOC_GETBOOTSTATUS
:
136 if (put_user(wdt_status
, (int *)arg
))
138 wdt_status
&= ~WDIOF_KEEPALIVEPING
;
144 case WDIOC_SETOPTIONS
:
147 case WDIOC_KEEPALIVE
:
148 mv64x60_wdt_service();
149 wdt_status
|= WDIOF_KEEPALIVEPING
;
152 case WDIOC_SETTIMEOUT
:
155 case WDIOC_GETTIMEOUT
:
156 timeout
= mv64x60_wdt_timeout
* HZ
;
157 if (put_user(timeout
, (int *)arg
))
168 static struct file_operations mv64x60_wdt_fops
= {
169 .owner
= THIS_MODULE
,
171 .write
= mv64x60_wdt_write
,
172 .ioctl
= mv64x60_wdt_ioctl
,
173 .open
= mv64x60_wdt_open
,
174 .release
= mv64x60_wdt_release
,
177 static struct miscdevice mv64x60_wdt_miscdev
= {
178 .minor
= WATCHDOG_MINOR
,
180 .fops
= &mv64x60_wdt_fops
,
183 static int __devinit
mv64x60_wdt_probe(struct device
*dev
)
185 struct platform_device
*pd
= to_platform_device(dev
);
186 struct mv64x60_wdt_pdata
*pdata
= pd
->dev
.platform_data
;
189 mv64x60_wdt_timeout
= 10;
191 mv64x60_wdt_timeout
= pdata
->timeout
;
192 bus_clk
= pdata
->bus_clk
;
195 mv64x60_regs
= mv64x60_get_bridge_vbase();
197 writel((mv64x60_wdt_timeout
* (bus_clk
* 1000000)) >> 8,
198 mv64x60_regs
+ MV64x60_WDT_WDC
);
200 return misc_register(&mv64x60_wdt_miscdev
);
203 static int __devexit
mv64x60_wdt_remove(struct device
*dev
)
205 misc_deregister(&mv64x60_wdt_miscdev
);
207 mv64x60_wdt_service();
208 mv64x60_wdt_handler_disable();
213 static struct device_driver mv64x60_wdt_driver
= {
214 .name
= MV64x60_WDT_NAME
,
215 .bus
= &platform_bus_type
,
216 .probe
= mv64x60_wdt_probe
,
217 .remove
= __devexit_p(mv64x60_wdt_remove
),
220 static struct platform_device
*mv64x60_wdt_dev
;
222 static int __init
mv64x60_wdt_init(void)
226 printk(KERN_INFO
"MV64x60 watchdog driver\n");
228 mv64x60_wdt_dev
= platform_device_register_simple(MV64x60_WDT_NAME
,
230 if (IS_ERR(mv64x60_wdt_dev
)) {
231 ret
= PTR_ERR(mv64x60_wdt_dev
);
235 ret
= driver_register(&mv64x60_wdt_driver
);
240 static void __exit
mv64x60_wdt_exit(void)
242 driver_unregister(&mv64x60_wdt_driver
);
243 platform_device_unregister(mv64x60_wdt_dev
);
246 module_init(mv64x60_wdt_init
);
247 module_exit(mv64x60_wdt_exit
);
249 MODULE_AUTHOR("James Chapman <jchapman@katalix.com>");
250 MODULE_DESCRIPTION("MV64x60 watchdog driver");
251 MODULE_LICENSE("GPL");
252 MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR
);