blob: 38fe5488cc963b637c2751710b28150c4534aea1 [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
Joe Perches27c766a2012-02-15 15:06:19 -080017#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
18
Vitaly Wool9325fa32006-06-26 19:31:49 +040019#include <linux/module.h>
20#include <linux/moduleparam.h>
21#include <linux/types.h>
22#include <linux/kernel.h>
23#include <linux/fs.h>
24#include <linux/miscdevice.h>
25#include <linux/watchdog.h>
26#include <linux/init.h>
27#include <linux/bitops.h>
28#include <linux/ioport.h>
29#include <linux/device.h>
30#include <linux/platform_device.h>
31#include <linux/clk.h>
Wim Van Sebroeck99d28532006-09-10 12:48:15 +020032#include <linux/spinlock.h>
Alan Cox84ca9952008-05-19 14:07:48 +010033#include <linux/uaccess.h>
34#include <linux/io.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090035#include <linux/slab.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010036#include <mach/hardware.h>
Vitaly Wool9325fa32006-06-26 19:31:49 +040037
38#define MODULE_NAME "PNX4008-WDT: "
39
40/* WatchDog Timer - Chapter 23 Page 207 */
41
42#define DEFAULT_HEARTBEAT 19
43#define MAX_HEARTBEAT 60
44
45/* Watchdog timer register set definition */
46#define WDTIM_INT(p) ((p) + 0x0)
47#define WDTIM_CTRL(p) ((p) + 0x4)
48#define WDTIM_COUNTER(p) ((p) + 0x8)
49#define WDTIM_MCTRL(p) ((p) + 0xC)
50#define WDTIM_MATCH0(p) ((p) + 0x10)
51#define WDTIM_EMR(p) ((p) + 0x14)
52#define WDTIM_PULSE(p) ((p) + 0x18)
53#define WDTIM_RES(p) ((p) + 0x1C)
54
55/* WDTIM_INT bit definitions */
56#define MATCH_INT 1
57
58/* WDTIM_CTRL bit definitions */
59#define COUNT_ENAB 1
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +000060#define RESET_COUNT (1 << 1)
61#define DEBUG_EN (1 << 2)
Vitaly Wool9325fa32006-06-26 19:31:49 +040062
63/* WDTIM_MCTRL bit definitions */
64#define MR0_INT 1
65#undef RESET_COUNT0
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +000066#define RESET_COUNT0 (1 << 2)
67#define STOP_COUNT0 (1 << 2)
68#define M_RES1 (1 << 3)
69#define M_RES2 (1 << 4)
70#define RESFRC1 (1 << 5)
71#define RESFRC2 (1 << 6)
Vitaly Wool9325fa32006-06-26 19:31:49 +040072
73/* WDTIM_EMR bit definitions */
74#define EXT_MATCH0 1
Wim Van Sebroeck143a2e52009-03-18 08:35:09 +000075#define MATCH_OUTPUT_HIGH (2 << 4) /*a MATCH_CTRL setting */
Vitaly Wool9325fa32006-06-26 19:31:49 +040076
77/* WDTIM_RES bit definitions */
78#define WDOG_RESET 1 /* read only */
79
80#define WDOG_COUNTER_RATE 13000000 /*the counter clock is 13 MHz fixed */
81
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +010082static bool nowayout = WATCHDOG_NOWAYOUT;
Vitaly Wool9325fa32006-06-26 19:31:49 +040083static int heartbeat = DEFAULT_HEARTBEAT;
84
Alexey Dobriyanc7dfd0c2007-11-01 16:27:08 -070085static DEFINE_SPINLOCK(io_lock);
Vitaly Wool9325fa32006-06-26 19:31:49 +040086static unsigned long wdt_status;
87#define WDT_IN_USE 0
88#define WDT_OK_TO_CLOSE 1
Vitaly Wool9325fa32006-06-26 19:31:49 +040089
90static unsigned long boot_status;
91
Vitaly Wool9325fa32006-06-26 19:31:49 +040092static void __iomem *wdt_base;
93struct clk *wdt_clk;
94
95static void wdt_enable(void)
96{
Wim Van Sebroeck99d28532006-09-10 12:48:15 +020097 spin_lock(&io_lock);
98
Vitaly Wool9325fa32006-06-26 19:31:49 +040099 /* stop counter, initiate counter reset */
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100100 writel(RESET_COUNT, WDTIM_CTRL(wdt_base));
Vitaly Wool9325fa32006-06-26 19:31:49 +0400101 /*wait for reset to complete. 100% guarantee event */
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100102 while (readl(WDTIM_COUNTER(wdt_base)))
Vitaly Wool65a64ec2006-09-11 14:42:39 +0400103 cpu_relax();
Vitaly Wool9325fa32006-06-26 19:31:49 +0400104 /* internal and external reset, stop after that */
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100105 writel(M_RES2 | STOP_COUNT0 | RESET_COUNT0, WDTIM_MCTRL(wdt_base));
Vitaly Wool9325fa32006-06-26 19:31:49 +0400106 /* configure match output */
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100107 writel(MATCH_OUTPUT_HIGH, WDTIM_EMR(wdt_base));
Vitaly Wool9325fa32006-06-26 19:31:49 +0400108 /* clear interrupt, just in case */
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100109 writel(MATCH_INT, WDTIM_INT(wdt_base));
Vitaly Wool9325fa32006-06-26 19:31:49 +0400110 /* the longest pulse period 65541/(13*10^6) seconds ~ 5 ms. */
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100111 writel(0xFFFF, WDTIM_PULSE(wdt_base));
112 writel(heartbeat * WDOG_COUNTER_RATE, WDTIM_MATCH0(wdt_base));
Vitaly Wool9325fa32006-06-26 19:31:49 +0400113 /*enable counter, stop when debugger active */
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100114 writel(COUNT_ENAB | DEBUG_EN, WDTIM_CTRL(wdt_base));
Wim Van Sebroeck99d28532006-09-10 12:48:15 +0200115
116 spin_unlock(&io_lock);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400117}
118
119static void wdt_disable(void)
120{
Wim Van Sebroeck99d28532006-09-10 12:48:15 +0200121 spin_lock(&io_lock);
122
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100123 writel(0, WDTIM_CTRL(wdt_base)); /*stop counter */
Wim Van Sebroeck99d28532006-09-10 12:48:15 +0200124
125 spin_unlock(&io_lock);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400126}
127
128static int pnx4008_wdt_open(struct inode *inode, struct file *file)
129{
Russell King24fd1ed2009-11-20 13:04:14 +0000130 int ret;
131
Vitaly Wool9325fa32006-06-26 19:31:49 +0400132 if (test_and_set_bit(WDT_IN_USE, &wdt_status))
133 return -EBUSY;
134
135 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
136
Russell King24fd1ed2009-11-20 13:04:14 +0000137 ret = clk_enable(wdt_clk);
138 if (ret) {
139 clear_bit(WDT_IN_USE, &wdt_status);
140 return ret;
141 }
142
Vitaly Wool9325fa32006-06-26 19:31:49 +0400143 wdt_enable();
144
145 return nonseekable_open(inode, file);
146}
147
Alan Cox84ca9952008-05-19 14:07:48 +0100148static ssize_t pnx4008_wdt_write(struct file *file, const char *data,
149 size_t len, loff_t *ppos)
Vitaly Wool9325fa32006-06-26 19:31:49 +0400150{
Vitaly Wool9325fa32006-06-26 19:31:49 +0400151 if (len) {
152 if (!nowayout) {
153 size_t i;
154
155 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
156
157 for (i = 0; i != len; i++) {
158 char c;
159
160 if (get_user(c, data + i))
161 return -EFAULT;
162 if (c == 'V')
163 set_bit(WDT_OK_TO_CLOSE, &wdt_status);
164 }
165 }
166 wdt_enable();
167 }
168
169 return len;
170}
171
Alan Cox84ca9952008-05-19 14:07:48 +0100172static const struct watchdog_info ident = {
Vitaly Wool9325fa32006-06-26 19:31:49 +0400173 .options = WDIOF_CARDRESET | WDIOF_MAGICCLOSE |
174 WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING,
175 .identity = "PNX4008 Watchdog",
176};
177
Wim Van Sebroeck7275fc82008-09-18 12:26:15 +0000178static long pnx4008_wdt_ioctl(struct file *file, unsigned int cmd,
179 unsigned long arg)
Vitaly Wool9325fa32006-06-26 19:31:49 +0400180{
Wim Van Sebroeckf3118962006-09-13 21:27:29 +0200181 int ret = -ENOTTY;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400182 int time;
183
184 switch (cmd) {
185 case WDIOC_GETSUPPORT:
186 ret = copy_to_user((struct watchdog_info *)arg, &ident,
187 sizeof(ident)) ? -EFAULT : 0;
188 break;
189
190 case WDIOC_GETSTATUS:
191 ret = put_user(0, (int *)arg);
192 break;
193
194 case WDIOC_GETBOOTSTATUS:
195 ret = put_user(boot_status, (int *)arg);
196 break;
197
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000198 case WDIOC_KEEPALIVE:
199 wdt_enable();
200 ret = 0;
201 break;
202
Vitaly Wool9325fa32006-06-26 19:31:49 +0400203 case WDIOC_SETTIMEOUT:
204 ret = get_user(time, (int *)arg);
205 if (ret)
206 break;
207
208 if (time <= 0 || time > MAX_HEARTBEAT) {
209 ret = -EINVAL;
210 break;
211 }
212
213 heartbeat = time;
214 wdt_enable();
215 /* Fall through */
216
217 case WDIOC_GETTIMEOUT:
218 ret = put_user(heartbeat, (int *)arg);
219 break;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400220 }
221 return ret;
222}
223
224static int pnx4008_wdt_release(struct inode *inode, struct file *file)
225{
226 if (!test_bit(WDT_OK_TO_CLOSE, &wdt_status))
Joe Perches27c766a2012-02-15 15:06:19 -0800227 pr_warn("Device closed unexpectedly\n");
Vitaly Wool9325fa32006-06-26 19:31:49 +0400228
229 wdt_disable();
Russell King24fd1ed2009-11-20 13:04:14 +0000230 clk_disable(wdt_clk);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400231 clear_bit(WDT_IN_USE, &wdt_status);
232 clear_bit(WDT_OK_TO_CLOSE, &wdt_status);
233
234 return 0;
235}
236
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800237static const struct file_operations pnx4008_wdt_fops = {
Vitaly Wool9325fa32006-06-26 19:31:49 +0400238 .owner = THIS_MODULE,
239 .llseek = no_llseek,
240 .write = pnx4008_wdt_write,
Alan Cox84ca9952008-05-19 14:07:48 +0100241 .unlocked_ioctl = pnx4008_wdt_ioctl,
Vitaly Wool9325fa32006-06-26 19:31:49 +0400242 .open = pnx4008_wdt_open,
243 .release = pnx4008_wdt_release,
244};
245
246static struct miscdevice pnx4008_wdt_miscdev = {
247 .minor = WATCHDOG_MINOR,
248 .name = "watchdog",
249 .fops = &pnx4008_wdt_fops,
250};
251
Wim Van Sebroeckb6bf2912009-04-14 20:30:55 +0000252static int __devinit pnx4008_wdt_probe(struct platform_device *pdev)
Vitaly Wool9325fa32006-06-26 19:31:49 +0400253{
Wolfram Sang19f505f2012-02-02 18:48:08 +0100254 struct resource *r;
255 int ret = 0;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400256
257 if (heartbeat < 1 || heartbeat > MAX_HEARTBEAT)
258 heartbeat = DEFAULT_HEARTBEAT;
259
Wolfram Sang19f505f2012-02-02 18:48:08 +0100260 r = platform_get_resource(pdev, IORESOURCE_MEM, 0);
261 wdt_base = devm_request_and_ioremap(&pdev->dev, r);
262 if (!wdt_base)
263 return -EADDRINUSE;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400264
Russell King9bb787f2009-11-20 13:07:28 +0000265 wdt_clk = clk_get(&pdev->dev, NULL);
Wolfram Sang19f505f2012-02-02 18:48:08 +0100266 if (IS_ERR(wdt_clk))
267 return PTR_ERR(wdt_clk);
Russell King24fd1ed2009-11-20 13:04:14 +0000268
269 ret = clk_enable(wdt_clk);
Wolfram Sang19f505f2012-02-02 18:48:08 +0100270 if (ret)
Russell King24fd1ed2009-11-20 13:04:14 +0000271 goto out;
Wolfram Sang19f505f2012-02-02 18:48:08 +0100272
Wolfram Sang7cbc3532012-02-02 18:48:09 +0100273 boot_status = (readl(WDTIM_RES(wdt_base)) & WDOG_RESET) ?
274 WDIOF_CARDRESET : 0;
Wolfram Sang19f505f2012-02-02 18:48:08 +0100275 wdt_disable(); /*disable for now */
276 clk_disable(wdt_clk);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400277
278 ret = misc_register(&pnx4008_wdt_miscdev);
279 if (ret < 0) {
Wolfram Sang19f505f2012-02-02 18:48:08 +0100280 dev_err(&pdev->dev, "cannot register misc device\n");
281 goto out;
Vitaly Wool9325fa32006-06-26 19:31:49 +0400282 }
283
Wolfram Sang19f505f2012-02-02 18:48:08 +0100284 dev_info(&pdev->dev, "PNX4008 Watchdog Timer: heartbeat %d sec\n",
285 heartbeat);
286
287 return 0;
288
Vitaly Wool9325fa32006-06-26 19:31:49 +0400289out:
Wolfram Sang19f505f2012-02-02 18:48:08 +0100290 clk_put(wdt_clk);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400291 return ret;
292}
293
Wim Van Sebroeckb6bf2912009-04-14 20:30:55 +0000294static int __devexit pnx4008_wdt_remove(struct platform_device *pdev)
Vitaly Wool9325fa32006-06-26 19:31:49 +0400295{
Wim Van Sebroeckf6764492006-07-30 20:06:07 +0200296 misc_deregister(&pnx4008_wdt_miscdev);
Russell King24fd1ed2009-11-20 13:04:14 +0000297
298 clk_disable(wdt_clk);
299 clk_put(wdt_clk);
300
Vitaly Wool9325fa32006-06-26 19:31:49 +0400301 return 0;
302}
303
304static struct platform_driver platform_wdt_driver = {
305 .driver = {
Russell King1508c992009-11-20 13:07:57 +0000306 .name = "pnx4008-watchdog",
Kay Sieversf37d1932008-04-10 21:29:23 -0700307 .owner = THIS_MODULE,
Vitaly Wool9325fa32006-06-26 19:31:49 +0400308 },
309 .probe = pnx4008_wdt_probe,
Wim Van Sebroeckb6bf2912009-04-14 20:30:55 +0000310 .remove = __devexit_p(pnx4008_wdt_remove),
Vitaly Wool9325fa32006-06-26 19:31:49 +0400311};
312
Axel Linb8ec6112011-11-29 13:56:27 +0800313module_platform_driver(platform_wdt_driver);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400314
315MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>");
316MODULE_DESCRIPTION("PNX4008 Watchdog Driver");
317
318module_param(heartbeat, int, 0);
319MODULE_PARM_DESC(heartbeat,
320 "Watchdog heartbeat period in seconds from 1 to "
321 __MODULE_STRING(MAX_HEARTBEAT) ", default "
322 __MODULE_STRING(DEFAULT_HEARTBEAT));
323
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100324module_param(nowayout, bool, 0);
Vitaly Wool9325fa32006-06-26 19:31:49 +0400325MODULE_PARM_DESC(nowayout,
326 "Set to 1 to keep watchdog running after device release");
327
328MODULE_LICENSE("GPL");
329MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
Russell King1508c992009-11-20 13:07:57 +0000330MODULE_ALIAS("platform:pnx4008-watchdog");