blob: 1d1de919d6157860e165c0178721d247b7a5a64c [file] [log] [blame]
Vitaly Wool9325fa32006-06-26 19:31:49 +04001/*
2 * drivers/char/watchdog/pnx4008_wdt.c
3 *
4 * Watchdog driver for PNX4008 board
5 *
6 * Authors: Dmitry Chigirev <source@mvista.com>,
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +00007 * Vitaly Wool <vitalywool@gmail.com>
Vitaly Wool9325fa32006-06-26 19:31:49 +04008 * Based on sa1100 driver,
9 * Copyright (C) 2000 Oleg Drokin <green@crimea.edu>
10 *
11 * 2005-2006 (c) MontaVista Software, Inc. This file is licensed under
12 * the terms of the GNU General Public License version 2. This program
13 * is licensed "as is" without any warranty of any kind, whether express
14 * or implied.
15 */
16
Vitaly Wool9325fa32006-06-26 19:31:49 +040017#include <linux/module.h>
18#include <linux/moduleparam.h>
19#include <linux/types.h>
20#include <linux/kernel.h>
21#include <linux/fs.h>
22#include <linux/miscdevice.h>
23#include <linux/watchdog.h>
24#include <linux/init.h>
25#include <linux/bitops.h>
26#include <linux/ioport.h>
27#include <linux/device.h>
28#include <linux/platform_device.h>
29#include <linux/clk.h>
Wim Van Sebroeck99d28532006-09-10 12:48:15 +020030#include <linux/spinlock.h>
Alan Cox84ca9952008-05-19 14:07:48 +010031#include <linux/uaccess.h>
32#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090033#include <linux/slab.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010034#include <mach/hardware.h>
Vitaly Wool9325fa32006-06-26 19:31:49 +040035
36#define MODULE_NAME "PNX4008-WDT: "
37
38/* WatchDog Timer - Chapter 23 Page 207 */
39
40#define DEFAULT_HEARTBEAT 19
41#define MAX_HEARTBEAT 60
42
43/* Watchdog timer register set definition */
44#define WDTIM_INT(p) ((p) + 0x0)
45#define WDTIM_CTRL(p) ((p) + 0x4)
46#define WDTIM_COUNTER(p) ((p) + 0x8)
47#define WDTIM_MCTRL(p) ((p) + 0xC)
48#define WDTIM_MATCH0(p) ((p) + 0x10)
49#define WDTIM_EMR(p) ((p) + 0x14)
50#define WDTIM_PULSE(p) ((p) + 0x18)
51#define WDTIM_RES(p) ((p) + 0x1C)
52
53/* WDTIM_INT bit definitions */
54#define MATCH_INT 1
55
56/* WDTIM_CTRL bit definitions */
57#define COUNT_ENAB 1
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +000058#define RESET_COUNT (1 << 1)
59#define DEBUG_EN (1 << 2)
Vitaly Wool9325fa32006-06-26 19:31:49 +040060
61/* WDTIM_MCTRL bit definitions */
62#define MR0_INT 1
63#undef RESET_COUNT0
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +000064#define RESET_COUNT0 (1 << 2)
65#define STOP_COUNT0 (1 << 2)
66#define M_RES1 (1 << 3)
67#define M_RES2 (1 << 4)
68#define RESFRC1 (1 << 5)
69#define RESFRC2 (1 << 6)
Vitaly Wool9325fa32006-06-26 19:31:49 +040070
71/* WDTIM_EMR bit definitions */
72#define EXT_MATCH0 1
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +000073#define MATCH_OUTPUT_HIGH (2 << 4) /*a MATCH_CTRL setting */
Vitaly Wool9325fa32006-06-26 19:31:49 +040074
75/* WDTIM_RES bit definitions */
76#define WDOG_RESET 1 /* read only */
77
78#define WDOG_COUNTER_RATE 13000000 /*the counter clock is 13 MHz fixed */
79
Wim Van Sebroeck28981722006-07-03 09:03:47 +020080static int nowayout = WATCHDOG_NOWAYOUT;
Vitaly Wool9325fa32006-06-26 19:31:49 +040081static int heartbeat = DEFAULT_HEARTBEAT;
82
Alexey Dobriyanc7dfd0c2007-11-01 16:27:08 -070083static DEFINE_SPINLOCK(io_lock);
Vitaly Wool9325fa32006-06-26 19:31:49 +040084static unsigned long wdt_status;
85#define WDT_IN_USE 0
86#define WDT_OK_TO_CLOSE 1
Vitaly Wool9325fa32006-06-26 19:31:49 +040087
88static unsigned long boot_status;
89
Vitaly Wool9325fa32006-06-26 19:31:49 +040090static void __iomem *wdt_base;
91struct clk *wdt_clk;
92
93static void wdt_enable(void)
94{
Wim Van Sebroeck99d28532006-09-10 12:48:15 +020095 spin_lock(&io_lock);
96
Vitaly Wool9325fa32006-06-26 19:31:49 +040097 /* stop counter, initiate counter reset */
Wolfram Sang7cbc3532012-02-02 18:48:09 +010098 writel(RESET_COUNT, WDTIM_CTRL(wdt_base));
Vitaly Wool9325fa32006-06-26 19:31:49 +040099 /*wait for reset to complete. 100% guarantee event */
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100100 while (readl(WDTIM_COUNTER(wdt_base)))
Vitaly Wool65a64ec2006-09-11 14:42:39 +0400101 cpu_relax();
Vitaly Wool9325fa32006-06-26 19:31:49 +0400102 /* internal and external reset, stop after that */
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100103 writel(M_RES2 | STOP_COUNT0 | RESET_COUNT0, WDTIM_MCTRL(wdt_base));
Vitaly Wool9325fa32006-06-26 19:31:49 +0400104 /* configure match output */
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100105 writel(MATCH_OUTPUT_HIGH, WDTIM_EMR(wdt_base));
Vitaly Wool9325fa32006-06-26 19:31:49 +0400106 /* clear interrupt, just in case */
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100107 writel(MATCH_INT, WDTIM_INT(wdt_base));
Vitaly Wool9325fa32006-06-26 19:31:49 +0400108 /* the longest pulse period 65541/(13*10^6) seconds ~ 5 ms. */
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100109 writel(0xFFFF, WDTIM_PULSE(wdt_base));
110 writel(heartbeat * WDOG_COUNTER_RATE, WDTIM_MATCH0(wdt_base));
Vitaly Wool9325fa32006-06-26 19:31:49 +0400111 /*enable counter, stop when debugger active */
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100112 writel(COUNT_ENAB | DEBUG_EN, WDTIM_CTRL(wdt_base));
Wim Van Sebroeck99d28532006-09-10 12:48:15 +0200113
114 spin_unlock(&io_lock);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400115}
116
117static void wdt_disable(void)
118{
Wim Van Sebroeck99d28532006-09-10 12:48:15 +0200119 spin_lock(&io_lock);
120
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100121 writel(0, WDTIM_CTRL(wdt_base)); /*stop counter */
Wim Van Sebroeck99d28532006-09-10 12:48:15 +0200122
123 spin_unlock(&io_lock);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400124}
125
126static int pnx4008_wdt_open(struct inode *inode, struct file *file)
127{
Russell King24fd1ed2009-11-20 13:04:14 +0000128 int ret;
129
Vitaly Wool9325fa32006-06-26 19:31:49 +0400130 if (test_and_set_bit(WDT_IN_USE, &wdt_status))
131 return -EBUSY;
132
133 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
134
Russell King24fd1ed2009-11-20 13:04:14 +0000135 ret = clk_enable(wdt_clk);
136 if (ret) {
137 clear_bit(WDT_IN_USE, &wdt_status);
138 return ret;
139 }
140
Vitaly Wool9325fa32006-06-26 19:31:49 +0400141 wdt_enable();
142
143 return nonseekable_open(inode, file);
144}
145
Alan Cox84ca9952008-05-19 14:07:48 +0100146static ssize_t pnx4008_wdt_write(struct file *file, const char *data,
147 size_t len, loff_t *ppos)
Vitaly Wool9325fa32006-06-26 19:31:49 +0400148{
Vitaly Wool9325fa32006-06-26 19:31:49 +0400149 if (len) {
150 if (!nowayout) {
151 size_t i;
152
153 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
154
155 for (i = 0; i != len; i++) {
156 char c;
157
158 if (get_user(c, data + i))
159 return -EFAULT;
160 if (c == 'V')
161 set_bit(WDT_OK_TO_CLOSE, &wdt_status);
162 }
163 }
164 wdt_enable();
165 }
166
167 return len;
168}
169
Alan Cox84ca9952008-05-19 14:07:48 +0100170static const struct watchdog_info ident = {
Vitaly Wool9325fa32006-06-26 19:31:49 +0400171 .options = WDIOF_CARDRESET | WDIOF_MAGICCLOSE |
172 WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
173 .identity = "PNX4008 Watchdog",
174};
175
Wim Van Sebroeck7275fc82008-09-18 12:26:15 +0000176static long pnx4008_wdt_ioctl(struct file *file, unsigned int cmd,
177 unsigned long arg)
Vitaly Wool9325fa32006-06-26 19:31:49 +0400178{
Wim Van Sebroeckf3118962006-09-13 21:27:29 +0200179 int ret = -ENOTTY;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400180 int time;
181
182 switch (cmd) {
183 case WDIOC_GETSUPPORT:
184 ret = copy_to_user((struct watchdog_info *)arg, &ident,
185 sizeof(ident)) ? -EFAULT : 0;
186 break;
187
188 case WDIOC_GETSTATUS:
189 ret = put_user(0, (int *)arg);
190 break;
191
192 case WDIOC_GETBOOTSTATUS:
193 ret = put_user(boot_status, (int *)arg);
194 break;
195
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000196 case WDIOC_KEEPALIVE:
197 wdt_enable();
198 ret = 0;
199 break;
200
Vitaly Wool9325fa32006-06-26 19:31:49 +0400201 case WDIOC_SETTIMEOUT:
202 ret = get_user(time, (int *)arg);
203 if (ret)
204 break;
205
206 if (time <= 0 || time > MAX_HEARTBEAT) {
207 ret = -EINVAL;
208 break;
209 }
210
211 heartbeat = time;
212 wdt_enable();
213 /* Fall through */
214
215 case WDIOC_GETTIMEOUT:
216 ret = put_user(heartbeat, (int *)arg);
217 break;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400218 }
219 return ret;
220}
221
222static int pnx4008_wdt_release(struct inode *inode, struct file *file)
223{
224 if (!test_bit(WDT_OK_TO_CLOSE, &wdt_status))
Masanari Iidab1785df2012-01-20 23:56:19 +0900225 printk(KERN_WARNING "WATCHDOG: Device closed unexpectedly\n");
Vitaly Wool9325fa32006-06-26 19:31:49 +0400226
227 wdt_disable();
Russell King24fd1ed2009-11-20 13:04:14 +0000228 clk_disable(wdt_clk);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400229 clear_bit(WDT_IN_USE, &wdt_status);
230 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
231
232 return 0;
233}
234
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800235static const struct file_operations pnx4008_wdt_fops = {
Vitaly Wool9325fa32006-06-26 19:31:49 +0400236 .owner = THIS_MODULE,
237 .llseek = no_llseek,
238 .write = pnx4008_wdt_write,
Alan Cox84ca9952008-05-19 14:07:48 +0100239 .unlocked_ioctl = pnx4008_wdt_ioctl,
Vitaly Wool9325fa32006-06-26 19:31:49 +0400240 .open = pnx4008_wdt_open,
241 .release = pnx4008_wdt_release,
242};
243
244static struct miscdevice pnx4008_wdt_miscdev = {
245 .minor = WATCHDOG_MINOR,
246 .name = "watchdog",
247 .fops = &pnx4008_wdt_fops,
248};
249
Wim Van Sebroeckb6bf2912009-04-14 20:30:55 +0000250static int __devinit pnx4008_wdt_probe(struct platform_device *pdev)
Vitaly Wool9325fa32006-06-26 19:31:49 +0400251{
Wolfram Sang19f505f2012-02-02 18:48:08 +0100252 struct resource *r;
253 int ret = 0;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400254
255 if (heartbeat < 1 || heartbeat > MAX_HEARTBEAT)
256 heartbeat = DEFAULT_HEARTBEAT;
257
Wolfram Sang19f505f2012-02-02 18:48:08 +0100258 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
259 wdt_base = devm_request_and_ioremap(&pdev->dev, r);
260 if (!wdt_base)
261 return -EADDRINUSE;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400262
Russell King9bb787f2009-11-20 13:07:28 +0000263 wdt_clk = clk_get(&pdev->dev, NULL);
Wolfram Sang19f505f2012-02-02 18:48:08 +0100264 if (IS_ERR(wdt_clk))
265 return PTR_ERR(wdt_clk);
Russell King24fd1ed2009-11-20 13:04:14 +0000266
267 ret = clk_enable(wdt_clk);
Wolfram Sang19f505f2012-02-02 18:48:08 +0100268 if (ret)
Russell King24fd1ed2009-11-20 13:04:14 +0000269 goto out;
Wolfram Sang19f505f2012-02-02 18:48:08 +0100270
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100271 boot_status = (readl(WDTIM_RES(wdt_base)) & WDOG_RESET) ?
272 WDIOF_CARDRESET : 0;
Wolfram Sang19f505f2012-02-02 18:48:08 +0100273 wdt_disable(); /*disable for now */
274 clk_disable(wdt_clk);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400275
276 ret = misc_register(&pnx4008_wdt_miscdev);
277 if (ret < 0) {
Wolfram Sang19f505f2012-02-02 18:48:08 +0100278 dev_err(&pdev->dev, "cannot register misc device\n");
279 goto out;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400280 }
281
Wolfram Sang19f505f2012-02-02 18:48:08 +0100282 dev_info(&pdev->dev, "PNX4008 Watchdog Timer: heartbeat %d sec\n",
283 heartbeat);
284
285 return 0;
286
Vitaly Wool9325fa32006-06-26 19:31:49 +0400287out:
Wolfram Sang19f505f2012-02-02 18:48:08 +0100288 clk_put(wdt_clk);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400289 return ret;
290}
291
Wim Van Sebroeckb6bf2912009-04-14 20:30:55 +0000292static int __devexit pnx4008_wdt_remove(struct platform_device *pdev)
Vitaly Wool9325fa32006-06-26 19:31:49 +0400293{
Wim Van Sebroeckf6764492006-07-30 20:06:07 +0200294 misc_deregister(&pnx4008_wdt_miscdev);
Russell King24fd1ed2009-11-20 13:04:14 +0000295
296 clk_disable(wdt_clk);
297 clk_put(wdt_clk);
298
Vitaly Wool9325fa32006-06-26 19:31:49 +0400299 return 0;
300}
301
302static struct platform_driver platform_wdt_driver = {
303 .driver = {
Russell King1508c992009-11-20 13:07:57 +0000304 .name = "pnx4008-watchdog",
Kay Sieversf37d1932008-04-10 21:29:23 -0700305 .owner = THIS_MODULE,
Vitaly Wool9325fa32006-06-26 19:31:49 +0400306 },
307 .probe = pnx4008_wdt_probe,
Wim Van Sebroeckb6bf2912009-04-14 20:30:55 +0000308 .remove = __devexit_p(pnx4008_wdt_remove),
Vitaly Wool9325fa32006-06-26 19:31:49 +0400309};
310
Axel Linb8ec6112011-11-29 13:56:27 +0800311module_platform_driver(platform_wdt_driver);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400312
313MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
314MODULE_DESCRIPTION("PNX4008 Watchdog Driver");
315
316module_param(heartbeat, int, 0);
317MODULE_PARM_DESC(heartbeat,
318 "Watchdog heartbeat period in seconds from 1 to "
319 __MODULE_STRING(MAX_HEARTBEAT) ", default "
320 __MODULE_STRING(DEFAULT_HEARTBEAT));
321
322module_param(nowayout, int, 0);
323MODULE_PARM_DESC(nowayout,
324 "Set to 1 to keep watchdog running after device release");
325
326MODULE_LICENSE("GPL");
327MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
Russell King1508c992009-11-20 13:07:57 +0000328MODULE_ALIAS("platform:pnx4008-watchdog");