blob: 55c5224bf194d00300ac7e3e390ba5e235c62e08 [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 */
98 __raw_writel(RESET_COUNT, WDTIM_CTRL(wdt_base));
99 /*wait for reset to complete. 100% guarantee event */
Vitaly Wool65a64ec2006-09-11 14:42:39 +0400100 while (__raw_readl(WDTIM_COUNTER(wdt_base)))
101 cpu_relax();
Vitaly Wool9325fa32006-06-26 19:31:49 +0400102 /* internal and external reset, stop after that */
103 __raw_writel(M_RES2 | STOP_COUNT0 | RESET_COUNT0,
104 WDTIM_MCTRL(wdt_base));
105 /* configure match output */
106 __raw_writel(MATCH_OUTPUT_HIGH, WDTIM_EMR(wdt_base));
107 /* clear interrupt, just in case */
108 __raw_writel(MATCH_INT, WDTIM_INT(wdt_base));
109 /* the longest pulse period 65541/(13*10^6) seconds ~ 5 ms. */
110 __raw_writel(0xFFFF, WDTIM_PULSE(wdt_base));
111 __raw_writel(heartbeat * WDOG_COUNTER_RATE, WDTIM_MATCH0(wdt_base));
112 /*enable counter, stop when debugger active */
113 __raw_writel(COUNT_ENAB | DEBUG_EN, WDTIM_CTRL(wdt_base));
Wim Van Sebroeck99d28532006-09-10 12:48:15 +0200114
115 spin_unlock(&io_lock);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400116}
117
118static void wdt_disable(void)
119{
Wim Van Sebroeck99d28532006-09-10 12:48:15 +0200120 spin_lock(&io_lock);
121
Vitaly Wool9325fa32006-06-26 19:31:49 +0400122 __raw_writel(0, WDTIM_CTRL(wdt_base)); /*stop counter */
Wim Van Sebroeck99d28532006-09-10 12:48:15 +0200123
124 spin_unlock(&io_lock);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400125}
126
127static int pnx4008_wdt_open(struct inode *inode, struct file *file)
128{
Russell King24fd1ed2009-11-20 13:04:14 +0000129 int ret;
130
Vitaly Wool9325fa32006-06-26 19:31:49 +0400131 if (test_and_set_bit(WDT_IN_USE, &wdt_status))
132 return -EBUSY;
133
134 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
135
Russell King24fd1ed2009-11-20 13:04:14 +0000136 ret = clk_enable(wdt_clk);
137 if (ret) {
138 clear_bit(WDT_IN_USE, &wdt_status);
139 return ret;
140 }
141
Vitaly Wool9325fa32006-06-26 19:31:49 +0400142 wdt_enable();
143
144 return nonseekable_open(inode, file);
145}
146
Alan Cox84ca9952008-05-19 14:07:48 +0100147static ssize_t pnx4008_wdt_write(struct file *file, const char *data,
148 size_t len, loff_t *ppos)
Vitaly Wool9325fa32006-06-26 19:31:49 +0400149{
Vitaly Wool9325fa32006-06-26 19:31:49 +0400150 if (len) {
151 if (!nowayout) {
152 size_t i;
153
154 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
155
156 for (i = 0; i != len; i++) {
157 char c;
158
159 if (get_user(c, data + i))
160 return -EFAULT;
161 if (c == 'V')
162 set_bit(WDT_OK_TO_CLOSE, &wdt_status);
163 }
164 }
165 wdt_enable();
166 }
167
168 return len;
169}
170
Alan Cox84ca9952008-05-19 14:07:48 +0100171static const struct watchdog_info ident = {
Vitaly Wool9325fa32006-06-26 19:31:49 +0400172 .options = WDIOF_CARDRESET | WDIOF_MAGICCLOSE |
173 WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
174 .identity = "PNX4008 Watchdog",
175};
176
Wim Van Sebroeck7275fc82008-09-18 12:26:15 +0000177static long pnx4008_wdt_ioctl(struct file *file, unsigned int cmd,
178 unsigned long arg)
Vitaly Wool9325fa32006-06-26 19:31:49 +0400179{
Wim Van Sebroeckf3118962006-09-13 21:27:29 +0200180 int ret = -ENOTTY;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400181 int time;
182
183 switch (cmd) {
184 case WDIOC_GETSUPPORT:
185 ret = copy_to_user((struct watchdog_info *)arg, &ident,
186 sizeof(ident)) ? -EFAULT : 0;
187 break;
188
189 case WDIOC_GETSTATUS:
190 ret = put_user(0, (int *)arg);
191 break;
192
193 case WDIOC_GETBOOTSTATUS:
194 ret = put_user(boot_status, (int *)arg);
195 break;
196
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000197 case WDIOC_KEEPALIVE:
198 wdt_enable();
199 ret = 0;
200 break;
201
Vitaly Wool9325fa32006-06-26 19:31:49 +0400202 case WDIOC_SETTIMEOUT:
203 ret = get_user(time, (int *)arg);
204 if (ret)
205 break;
206
207 if (time <= 0 || time > MAX_HEARTBEAT) {
208 ret = -EINVAL;
209 break;
210 }
211
212 heartbeat = time;
213 wdt_enable();
214 /* Fall through */
215
216 case WDIOC_GETTIMEOUT:
217 ret = put_user(heartbeat, (int *)arg);
218 break;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400219 }
220 return ret;
221}
222
223static int pnx4008_wdt_release(struct inode *inode, struct file *file)
224{
225 if (!test_bit(WDT_OK_TO_CLOSE, &wdt_status))
Masanari Iidab1785df2012-01-20 23:56:19 +0900226 printk(KERN_WARNING "WATCHDOG: Device closed unexpectedly\n");
Vitaly Wool9325fa32006-06-26 19:31:49 +0400227
228 wdt_disable();
Russell King24fd1ed2009-11-20 13:04:14 +0000229 clk_disable(wdt_clk);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400230 clear_bit(WDT_IN_USE, &wdt_status);
231 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
232
233 return 0;
234}
235
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800236static const struct file_operations pnx4008_wdt_fops = {
Vitaly Wool9325fa32006-06-26 19:31:49 +0400237 .owner = THIS_MODULE,
238 .llseek = no_llseek,
239 .write = pnx4008_wdt_write,
Alan Cox84ca9952008-05-19 14:07:48 +0100240 .unlocked_ioctl = pnx4008_wdt_ioctl,
Vitaly Wool9325fa32006-06-26 19:31:49 +0400241 .open = pnx4008_wdt_open,
242 .release = pnx4008_wdt_release,
243};
244
245static struct miscdevice pnx4008_wdt_miscdev = {
246 .minor = WATCHDOG_MINOR,
247 .name = "watchdog",
248 .fops = &pnx4008_wdt_fops,
249};
250
Wim Van Sebroeckb6bf2912009-04-14 20:30:55 +0000251static int __devinit pnx4008_wdt_probe(struct platform_device *pdev)
Vitaly Wool9325fa32006-06-26 19:31:49 +0400252{
Wolfram Sang19f505f2012-02-02 18:48:08 +0100253 struct resource *r;
254 int ret = 0;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400255
256 if (heartbeat < 1 || heartbeat > MAX_HEARTBEAT)
257 heartbeat = DEFAULT_HEARTBEAT;
258
Wolfram Sang19f505f2012-02-02 18:48:08 +0100259 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
260 wdt_base = devm_request_and_ioremap(&pdev->dev, r);
261 if (!wdt_base)
262 return -EADDRINUSE;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400263
Russell King9bb787f2009-11-20 13:07:28 +0000264 wdt_clk = clk_get(&pdev->dev, NULL);
Wolfram Sang19f505f2012-02-02 18:48:08 +0100265 if (IS_ERR(wdt_clk))
266 return PTR_ERR(wdt_clk);
Russell King24fd1ed2009-11-20 13:04:14 +0000267
268 ret = clk_enable(wdt_clk);
Wolfram Sang19f505f2012-02-02 18:48:08 +0100269 if (ret)
Russell King24fd1ed2009-11-20 13:04:14 +0000270 goto out;
Wolfram Sang19f505f2012-02-02 18:48:08 +0100271
272 boot_status = (__raw_readl(WDTIM_RES(wdt_base)) &
273 WDOG_RESET) ? WDIOF_CARDRESET : 0;
274 wdt_disable(); /*disable for now */
275 clk_disable(wdt_clk);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400276
277 ret = misc_register(&pnx4008_wdt_miscdev);
278 if (ret < 0) {
Wolfram Sang19f505f2012-02-02 18:48:08 +0100279 dev_err(&pdev->dev, "cannot register misc device\n");
280 goto out;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400281 }
282
Wolfram Sang19f505f2012-02-02 18:48:08 +0100283 dev_info(&pdev->dev, "PNX4008 Watchdog Timer: heartbeat %d sec\n",
284 heartbeat);
285
286 return 0;
287
Vitaly Wool9325fa32006-06-26 19:31:49 +0400288out:
Wolfram Sang19f505f2012-02-02 18:48:08 +0100289 clk_put(wdt_clk);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400290 return ret;
291}
292
Wim Van Sebroeckb6bf2912009-04-14 20:30:55 +0000293static int __devexit pnx4008_wdt_remove(struct platform_device *pdev)
Vitaly Wool9325fa32006-06-26 19:31:49 +0400294{
Wim Van Sebroeckf6764492006-07-30 20:06:07 +0200295 misc_deregister(&pnx4008_wdt_miscdev);
Russell King24fd1ed2009-11-20 13:04:14 +0000296
297 clk_disable(wdt_clk);
298 clk_put(wdt_clk);
299
Vitaly Wool9325fa32006-06-26 19:31:49 +0400300 return 0;
301}
302
303static struct platform_driver platform_wdt_driver = {
304 .driver = {
Russell King1508c992009-11-20 13:07:57 +0000305 .name = "pnx4008-watchdog",
Kay Sieversf37d1932008-04-10 21:29:23 -0700306 .owner = THIS_MODULE,
Vitaly Wool9325fa32006-06-26 19:31:49 +0400307 },
308 .probe = pnx4008_wdt_probe,
Wim Van Sebroeckb6bf2912009-04-14 20:30:55 +0000309 .remove = __devexit_p(pnx4008_wdt_remove),
Vitaly Wool9325fa32006-06-26 19:31:49 +0400310};
311
Axel Linb8ec6112011-11-29 13:56:27 +0800312module_platform_driver(platform_wdt_driver);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400313
314MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
315MODULE_DESCRIPTION("PNX4008 Watchdog Driver");
316
317module_param(heartbeat, int, 0);
318MODULE_PARM_DESC(heartbeat,
319 "Watchdog heartbeat period in seconds from 1 to "
320 __MODULE_STRING(MAX_HEARTBEAT) ", default "
321 __MODULE_STRING(DEFAULT_HEARTBEAT));
322
323module_param(nowayout, int, 0);
324MODULE_PARM_DESC(nowayout,
325 "Set to 1 to keep watchdog running after device release");
326
327MODULE_LICENSE("GPL");
328MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
Russell King1508c992009-11-20 13:07:57 +0000329MODULE_ALIAS("platform:pnx4008-watchdog");