blob: f2713851aaabeb65cc6d8257ae9d0da3367909fb [file] [log] [blame]
Komal Shah7768a132006-09-29 01:59:18 -07001/*
Felipe Balbi28171422008-09-20 04:14:01 +03002 * omap_wdt.c
Komal Shah7768a132006-09-29 01:59:18 -07003 *
Felipe Balbi28171422008-09-20 04:14:01 +03004 * Watchdog driver for the TI OMAP 16xx & 24xx/34xx 32KHz (non-secure) watchdog
Komal Shah7768a132006-09-29 01:59:18 -07005 *
6 * Author: MontaVista Software, Inc.
7 * <gdavis@mvista.com> or <source@mvista.com>
8 *
9 * 2003 (c) MontaVista Software, Inc. This file is licensed under the
10 * terms of the GNU General Public License version 2. This program is
11 * licensed "as is" without any warranty of any kind, whether express
12 * or implied.
13 *
14 * History:
15 *
16 * 20030527: George G. Davis <gdavis@mvista.com>
17 * Initially based on linux-2.4.19-rmk7-pxa1/drivers/char/sa1100_wdt.c
18 * (c) Copyright 2000 Oleg Drokin <green@crimea.edu>
Alan Cox29fa0582008-10-27 15:17:56 +000019 * Based on SoftDog driver by Alan Cox <alan@lxorguk.ukuu.org.uk>
Komal Shah7768a132006-09-29 01:59:18 -070020 *
21 * Copyright (c) 2004 Texas Instruments.
22 * 1. Modified to support OMAP1610 32-KHz watchdog timer
23 * 2. Ported to 2.6 kernel
24 *
25 * Copyright (c) 2005 David Brownell
26 * Use the driver model and standard identifiers; handle bigger timeouts.
27 */
28
29#include <linux/module.h>
Komal Shah7768a132006-09-29 01:59:18 -070030#include <linux/types.h>
31#include <linux/kernel.h>
32#include <linux/fs.h>
33#include <linux/mm.h>
34#include <linux/miscdevice.h>
35#include <linux/watchdog.h>
36#include <linux/reboot.h>
Komal Shah7768a132006-09-29 01:59:18 -070037#include <linux/init.h>
38#include <linux/err.h>
39#include <linux/platform_device.h>
40#include <linux/moduleparam.h>
41#include <linux/clk.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070042#include <linux/bitops.h>
Wim Van Sebroeck089ab072008-07-15 11:46:11 +000043#include <linux/io.h>
Alan Cox12b9df72008-05-19 14:07:32 +010044#include <linux/uaccess.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010045#include <mach/hardware.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010046#include <mach/prcm.h>
Komal Shah7768a132006-09-29 01:59:18 -070047
48#include "omap_wdt.h"
49
Felipe Balbi28171422008-09-20 04:14:01 +030050static struct platform_device *omap_wdt_dev;
51
Komal Shah7768a132006-09-29 01:59:18 -070052static unsigned timer_margin;
53module_param(timer_margin, uint, 0);
54MODULE_PARM_DESC(timer_margin, "initial watchdog timeout (in seconds)");
55
Komal Shah7768a132006-09-29 01:59:18 -070056static unsigned int wdt_trgr_pattern = 0x1234;
Alan Cox12b9df72008-05-19 14:07:32 +010057static spinlock_t wdt_lock;
Komal Shah7768a132006-09-29 01:59:18 -070058
Felipe Balbi28171422008-09-20 04:14:01 +030059struct omap_wdt_dev {
60 void __iomem *base; /* physical */
61 struct device *dev;
62 int omap_wdt_users;
Russell King39a80c72009-01-19 20:44:33 +000063 struct clk *ick;
64 struct clk *fck;
Felipe Balbi28171422008-09-20 04:14:01 +030065 struct resource *mem;
66 struct miscdevice omap_wdt_miscdev;
67};
68
69static void omap_wdt_ping(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -070070{
Felipe Balbi28171422008-09-20 04:14:01 +030071 void __iomem *base = wdev->base;
Felipe Balbib3112182008-09-20 04:14:03 +030072
Komal Shah7768a132006-09-29 01:59:18 -070073 /* wait for posted write to complete */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030074 while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x08)
Komal Shah7768a132006-09-29 01:59:18 -070075 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +030076
Komal Shah7768a132006-09-29 01:59:18 -070077 wdt_trgr_pattern = ~wdt_trgr_pattern;
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030078 __raw_writel(wdt_trgr_pattern, (base + OMAP_WATCHDOG_TGR));
Felipe Balbib3112182008-09-20 04:14:03 +030079
Komal Shah7768a132006-09-29 01:59:18 -070080 /* wait for posted write to complete */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030081 while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x08)
Komal Shah7768a132006-09-29 01:59:18 -070082 cpu_relax();
83 /* reloaded WCRR from WLDR */
84}
85
Felipe Balbi28171422008-09-20 04:14:01 +030086static void omap_wdt_enable(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -070087{
Felipe Balbib3112182008-09-20 04:14:03 +030088 void __iomem *base = wdev->base;
89
Komal Shah7768a132006-09-29 01:59:18 -070090 /* Sequence to enable the watchdog */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030091 __raw_writel(0xBBBB, base + OMAP_WATCHDOG_SPR);
92 while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -070093 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +030094
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030095 __raw_writel(0x4444, base + OMAP_WATCHDOG_SPR);
96 while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -070097 cpu_relax();
98}
99
Felipe Balbi28171422008-09-20 04:14:01 +0300100static void omap_wdt_disable(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -0700101{
Felipe Balbib3112182008-09-20 04:14:03 +0300102 void __iomem *base = wdev->base;
103
Komal Shah7768a132006-09-29 01:59:18 -0700104 /* sequence required to disable watchdog */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300105 __raw_writel(0xAAAA, base + OMAP_WATCHDOG_SPR); /* TIMER_MODE */
106 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -0700107 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +0300108
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300109 __raw_writel(0x5555, base + OMAP_WATCHDOG_SPR); /* TIMER_MODE */
110 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -0700111 cpu_relax();
112}
113
114static void omap_wdt_adjust_timeout(unsigned new_timeout)
115{
116 if (new_timeout < TIMER_MARGIN_MIN)
117 new_timeout = TIMER_MARGIN_DEFAULT;
118 if (new_timeout > TIMER_MARGIN_MAX)
119 new_timeout = TIMER_MARGIN_MAX;
120 timer_margin = new_timeout;
121}
122
Felipe Balbi28171422008-09-20 04:14:01 +0300123static void omap_wdt_set_timeout(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -0700124{
125 u32 pre_margin = GET_WLDR_VAL(timer_margin);
Felipe Balbib3112182008-09-20 04:14:03 +0300126 void __iomem *base = wdev->base;
Komal Shah7768a132006-09-29 01:59:18 -0700127
128 /* just count up at 32 KHz */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300129 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x04)
Komal Shah7768a132006-09-29 01:59:18 -0700130 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +0300131
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300132 __raw_writel(pre_margin, base + OMAP_WATCHDOG_LDR);
133 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x04)
Komal Shah7768a132006-09-29 01:59:18 -0700134 cpu_relax();
135}
136
137/*
138 * Allow only one task to hold it open
139 */
Komal Shah7768a132006-09-29 01:59:18 -0700140static int omap_wdt_open(struct inode *inode, struct file *file)
141{
Felipe Balbib3112182008-09-20 04:14:03 +0300142 struct omap_wdt_dev *wdev = platform_get_drvdata(omap_wdt_dev);
143 void __iomem *base = wdev->base;
144
Felipe Balbi28171422008-09-20 04:14:01 +0300145 if (test_and_set_bit(1, (unsigned long *)&(wdev->omap_wdt_users)))
Komal Shah7768a132006-09-29 01:59:18 -0700146 return -EBUSY;
147
Russell King4c5e1942009-01-23 12:48:37 +0000148 clk_enable(wdev->ick); /* Enable the interface clock */
Russell King39a80c72009-01-19 20:44:33 +0000149 clk_enable(wdev->fck); /* Enable the functional clock */
Komal Shah7768a132006-09-29 01:59:18 -0700150
151 /* initialize prescaler */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300152 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x01)
Komal Shah7768a132006-09-29 01:59:18 -0700153 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +0300154
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300155 __raw_writel((1 << 5) | (PTV << 2), base + OMAP_WATCHDOG_CNTRL);
156 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x01)
Komal Shah7768a132006-09-29 01:59:18 -0700157 cpu_relax();
158
Felipe Balbi28171422008-09-20 04:14:01 +0300159 file->private_data = (void *) wdev;
160
161 omap_wdt_set_timeout(wdev);
162 omap_wdt_enable(wdev);
Felipe Balbib3112182008-09-20 04:14:03 +0300163
Wim Van Sebroeckec9505a2007-07-20 20:41:37 +0000164 return nonseekable_open(inode, file);
Komal Shah7768a132006-09-29 01:59:18 -0700165}
166
167static int omap_wdt_release(struct inode *inode, struct file *file)
168{
Felipe Balbib3112182008-09-20 04:14:03 +0300169 struct omap_wdt_dev *wdev = file->private_data;
170
Komal Shah7768a132006-09-29 01:59:18 -0700171 /*
172 * Shut off the timer unless NOWAYOUT is defined.
173 */
174#ifndef CONFIG_WATCHDOG_NOWAYOUT
Komal Shah7768a132006-09-29 01:59:18 -0700175
Felipe Balbi28171422008-09-20 04:14:01 +0300176 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700177
Russell King4c5e1942009-01-23 12:48:37 +0000178 clk_disable(wdev->ick);
Russell King39a80c72009-01-19 20:44:33 +0000179 clk_disable(wdev->fck);
Komal Shah7768a132006-09-29 01:59:18 -0700180#else
181 printk(KERN_CRIT "omap_wdt: Unexpected close, not stopping!\n");
182#endif
Felipe Balbi28171422008-09-20 04:14:01 +0300183 wdev->omap_wdt_users = 0;
Felipe Balbib3112182008-09-20 04:14:03 +0300184
Komal Shah7768a132006-09-29 01:59:18 -0700185 return 0;
186}
187
Alan Cox12b9df72008-05-19 14:07:32 +0100188static ssize_t omap_wdt_write(struct file *file, const char __user *data,
Komal Shah7768a132006-09-29 01:59:18 -0700189 size_t len, loff_t *ppos)
190{
Felipe Balbib3112182008-09-20 04:14:03 +0300191 struct omap_wdt_dev *wdev = file->private_data;
192
Komal Shah7768a132006-09-29 01:59:18 -0700193 /* Refresh LOAD_TIME. */
Alan Cox12b9df72008-05-19 14:07:32 +0100194 if (len) {
195 spin_lock(&wdt_lock);
Felipe Balbi28171422008-09-20 04:14:01 +0300196 omap_wdt_ping(wdev);
Alan Cox12b9df72008-05-19 14:07:32 +0100197 spin_unlock(&wdt_lock);
198 }
Komal Shah7768a132006-09-29 01:59:18 -0700199 return len;
200}
201
Alan Cox12b9df72008-05-19 14:07:32 +0100202static long omap_wdt_ioctl(struct file *file, unsigned int cmd,
203 unsigned long arg)
Komal Shah7768a132006-09-29 01:59:18 -0700204{
Felipe Balbi28171422008-09-20 04:14:01 +0300205 struct omap_wdt_dev *wdev;
Komal Shah7768a132006-09-29 01:59:18 -0700206 int new_margin;
Alan Cox12b9df72008-05-19 14:07:32 +0100207 static const struct watchdog_info ident = {
Komal Shah7768a132006-09-29 01:59:18 -0700208 .identity = "OMAP Watchdog",
209 .options = WDIOF_SETTIMEOUT,
210 .firmware_version = 0,
211 };
Felipe Balbib3112182008-09-20 04:14:03 +0300212
Felipe Balbi28171422008-09-20 04:14:01 +0300213 wdev = file->private_data;
Komal Shah7768a132006-09-29 01:59:18 -0700214
215 switch (cmd) {
Komal Shah7768a132006-09-29 01:59:18 -0700216 case WDIOC_GETSUPPORT:
217 return copy_to_user((struct watchdog_info __user *)arg, &ident,
218 sizeof(ident));
219 case WDIOC_GETSTATUS:
220 return put_user(0, (int __user *)arg);
221 case WDIOC_GETBOOTSTATUS:
222 if (cpu_is_omap16xx())
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300223 return put_user(__raw_readw(ARM_SYSST),
Komal Shah7768a132006-09-29 01:59:18 -0700224 (int __user *)arg);
225 if (cpu_is_omap24xx())
226 return put_user(omap_prcm_get_reset_sources(),
227 (int __user *)arg);
228 case WDIOC_KEEPALIVE:
Alan Cox12b9df72008-05-19 14:07:32 +0100229 spin_lock(&wdt_lock);
Felipe Balbi28171422008-09-20 04:14:01 +0300230 omap_wdt_ping(wdev);
Alan Cox12b9df72008-05-19 14:07:32 +0100231 spin_unlock(&wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -0700232 return 0;
233 case WDIOC_SETTIMEOUT:
234 if (get_user(new_margin, (int __user *)arg))
235 return -EFAULT;
236 omap_wdt_adjust_timeout(new_margin);
237
Alan Cox12b9df72008-05-19 14:07:32 +0100238 spin_lock(&wdt_lock);
Felipe Balbi28171422008-09-20 04:14:01 +0300239 omap_wdt_disable(wdev);
240 omap_wdt_set_timeout(wdev);
241 omap_wdt_enable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700242
Felipe Balbi28171422008-09-20 04:14:01 +0300243 omap_wdt_ping(wdev);
Alan Cox12b9df72008-05-19 14:07:32 +0100244 spin_unlock(&wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -0700245 /* Fall */
246 case WDIOC_GETTIMEOUT:
247 return put_user(timer_margin, (int __user *)arg);
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000248 default:
249 return -ENOTTY;
Komal Shah7768a132006-09-29 01:59:18 -0700250 }
251}
252
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800253static const struct file_operations omap_wdt_fops = {
Komal Shah7768a132006-09-29 01:59:18 -0700254 .owner = THIS_MODULE,
255 .write = omap_wdt_write,
Alan Cox12b9df72008-05-19 14:07:32 +0100256 .unlocked_ioctl = omap_wdt_ioctl,
Komal Shah7768a132006-09-29 01:59:18 -0700257 .open = omap_wdt_open,
258 .release = omap_wdt_release,
259};
260
Uwe Kleine-König0e3912c2009-03-28 00:26:56 +0100261static int __devinit omap_wdt_probe(struct platform_device *pdev)
Komal Shah7768a132006-09-29 01:59:18 -0700262{
263 struct resource *res, *mem;
Felipe Balbi28171422008-09-20 04:14:01 +0300264 struct omap_wdt_dev *wdev;
Felipe Balbib3112182008-09-20 04:14:03 +0300265 int ret;
Komal Shah7768a132006-09-29 01:59:18 -0700266
267 /* reserve static register mappings */
268 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Felipe Balbib3112182008-09-20 04:14:03 +0300269 if (!res) {
270 ret = -ENOENT;
271 goto err_get_resource;
272 }
Komal Shah7768a132006-09-29 01:59:18 -0700273
Felipe Balbib3112182008-09-20 04:14:03 +0300274 if (omap_wdt_dev) {
275 ret = -EBUSY;
276 goto err_busy;
277 }
Felipe Balbi28171422008-09-20 04:14:01 +0300278
Komal Shah7768a132006-09-29 01:59:18 -0700279 mem = request_mem_region(res->start, res->end - res->start + 1,
280 pdev->name);
Felipe Balbib3112182008-09-20 04:14:03 +0300281 if (!mem) {
282 ret = -EBUSY;
283 goto err_busy;
284 }
Komal Shah7768a132006-09-29 01:59:18 -0700285
Felipe Balbi28171422008-09-20 04:14:01 +0300286 wdev = kzalloc(sizeof(struct omap_wdt_dev), GFP_KERNEL);
287 if (!wdev) {
288 ret = -ENOMEM;
Felipe Balbib3112182008-09-20 04:14:03 +0300289 goto err_kzalloc;
Felipe Balbi28171422008-09-20 04:14:01 +0300290 }
Felipe Balbib3112182008-09-20 04:14:03 +0300291
Felipe Balbi28171422008-09-20 04:14:01 +0300292 wdev->omap_wdt_users = 0;
293 wdev->mem = mem;
Komal Shah7768a132006-09-29 01:59:18 -0700294
Russell King4c5e1942009-01-23 12:48:37 +0000295 wdev->ick = clk_get(&pdev->dev, "ick");
296 if (IS_ERR(wdev->ick)) {
297 ret = PTR_ERR(wdev->ick);
298 wdev->ick = NULL;
299 goto err_clk;
Komal Shah7768a132006-09-29 01:59:18 -0700300 }
Russell King39a80c72009-01-19 20:44:33 +0000301 wdev->fck = clk_get(&pdev->dev, "fck");
302 if (IS_ERR(wdev->fck)) {
303 ret = PTR_ERR(wdev->fck);
304 wdev->fck = NULL;
305 goto err_clk;
306 }
Komal Shah7768a132006-09-29 01:59:18 -0700307
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300308 wdev->base = ioremap(res->start, res->end - res->start + 1);
309 if (!wdev->base) {
310 ret = -ENOMEM;
Felipe Balbib3112182008-09-20 04:14:03 +0300311 goto err_ioremap;
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300312 }
313
Felipe Balbi28171422008-09-20 04:14:01 +0300314 platform_set_drvdata(pdev, wdev);
315
316 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700317 omap_wdt_adjust_timeout(timer_margin);
318
Felipe Balbi28171422008-09-20 04:14:01 +0300319 wdev->omap_wdt_miscdev.parent = &pdev->dev;
320 wdev->omap_wdt_miscdev.minor = WATCHDOG_MINOR;
321 wdev->omap_wdt_miscdev.name = "watchdog";
322 wdev->omap_wdt_miscdev.fops = &omap_wdt_fops;
323
324 ret = misc_register(&(wdev->omap_wdt_miscdev));
Komal Shah7768a132006-09-29 01:59:18 -0700325 if (ret)
Felipe Balbib3112182008-09-20 04:14:03 +0300326 goto err_misc;
Komal Shah7768a132006-09-29 01:59:18 -0700327
Felipe Balbi28171422008-09-20 04:14:01 +0300328 pr_info("OMAP Watchdog Timer Rev 0x%02x: initial timeout %d sec\n",
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300329 __raw_readl(wdev->base + OMAP_WATCHDOG_REV) & 0xFF,
Felipe Balbi28171422008-09-20 04:14:01 +0300330 timer_margin);
Komal Shah7768a132006-09-29 01:59:18 -0700331
332 /* autogate OCP interface clock */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300333 __raw_writel(0x01, wdev->base + OMAP_WATCHDOG_SYS_CONFIG);
Felipe Balbi28171422008-09-20 04:14:01 +0300334
335 omap_wdt_dev = pdev;
336
Komal Shah7768a132006-09-29 01:59:18 -0700337 return 0;
338
Felipe Balbib3112182008-09-20 04:14:03 +0300339err_misc:
340 platform_set_drvdata(pdev, NULL);
341 iounmap(wdev->base);
342
343err_ioremap:
344 wdev->base = NULL;
345
346err_clk:
Russell King39a80c72009-01-19 20:44:33 +0000347 if (wdev->ick)
348 clk_put(wdev->ick);
349 if (wdev->fck)
350 clk_put(wdev->fck);
Felipe Balbib3112182008-09-20 04:14:03 +0300351 kfree(wdev);
352
353err_kzalloc:
354 release_mem_region(res->start, res->end - res->start + 1);
355
356err_busy:
357err_get_resource:
358
Komal Shah7768a132006-09-29 01:59:18 -0700359 return ret;
360}
361
362static void omap_wdt_shutdown(struct platform_device *pdev)
363{
Felipe Balbib3112182008-09-20 04:14:03 +0300364 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbi28171422008-09-20 04:14:01 +0300365
366 if (wdev->omap_wdt_users)
367 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700368}
369
Uwe Kleine-König0e3912c2009-03-28 00:26:56 +0100370static int __devexit omap_wdt_remove(struct platform_device *pdev)
Komal Shah7768a132006-09-29 01:59:18 -0700371{
Felipe Balbib3112182008-09-20 04:14:03 +0300372 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbi28171422008-09-20 04:14:01 +0300373 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
374
375 if (!res)
376 return -ENOENT;
377
378 misc_deregister(&(wdev->omap_wdt_miscdev));
379 release_mem_region(res->start, res->end - res->start + 1);
380 platform_set_drvdata(pdev, NULL);
Felipe Balbib3112182008-09-20 04:14:03 +0300381
Russell King4c5e1942009-01-23 12:48:37 +0000382 clk_put(wdev->ick);
Russell King39a80c72009-01-19 20:44:33 +0000383 clk_put(wdev->fck);
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300384 iounmap(wdev->base);
385
Felipe Balbi28171422008-09-20 04:14:01 +0300386 kfree(wdev);
387 omap_wdt_dev = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300388
Komal Shah7768a132006-09-29 01:59:18 -0700389 return 0;
390}
391
392#ifdef CONFIG_PM
393
394/* REVISIT ... not clear this is the best way to handle system suspend; and
395 * it's very inappropriate for selective device suspend (e.g. suspending this
396 * through sysfs rather than by stopping the watchdog daemon). Also, this
397 * may not play well enough with NOWAYOUT...
398 */
399
400static int omap_wdt_suspend(struct platform_device *pdev, pm_message_t state)
401{
Felipe Balbib3112182008-09-20 04:14:03 +0300402 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
403
Felipe Balbi28171422008-09-20 04:14:01 +0300404 if (wdev->omap_wdt_users)
405 omap_wdt_disable(wdev);
Felipe Balbib3112182008-09-20 04:14:03 +0300406
Komal Shah7768a132006-09-29 01:59:18 -0700407 return 0;
408}
409
410static int omap_wdt_resume(struct platform_device *pdev)
411{
Felipe Balbib3112182008-09-20 04:14:03 +0300412 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
413
Felipe Balbi28171422008-09-20 04:14:01 +0300414 if (wdev->omap_wdt_users) {
415 omap_wdt_enable(wdev);
416 omap_wdt_ping(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700417 }
Felipe Balbib3112182008-09-20 04:14:03 +0300418
Komal Shah7768a132006-09-29 01:59:18 -0700419 return 0;
420}
421
422#else
423#define omap_wdt_suspend NULL
424#define omap_wdt_resume NULL
425#endif
426
427static struct platform_driver omap_wdt_driver = {
428 .probe = omap_wdt_probe,
Uwe Kleine-König0e3912c2009-03-28 00:26:56 +0100429 .remove = __devexit_p(omap_wdt_remove),
Komal Shah7768a132006-09-29 01:59:18 -0700430 .shutdown = omap_wdt_shutdown,
431 .suspend = omap_wdt_suspend,
432 .resume = omap_wdt_resume,
433 .driver = {
434 .owner = THIS_MODULE,
435 .name = "omap_wdt",
436 },
437};
438
439static int __init omap_wdt_init(void)
440{
Alan Cox12b9df72008-05-19 14:07:32 +0100441 spin_lock_init(&wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -0700442 return platform_driver_register(&omap_wdt_driver);
443}
444
445static void __exit omap_wdt_exit(void)
446{
447 platform_driver_unregister(&omap_wdt_driver);
448}
449
450module_init(omap_wdt_init);
451module_exit(omap_wdt_exit);
452
453MODULE_AUTHOR("George G. Davis");
454MODULE_LICENSE("GPL");
455MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
Kay Sieversf37d1932008-04-10 21:29:23 -0700456MODULE_ALIAS("platform:omap_wdt");