blob: 1a4c699762e642258d66d689c37a7d1fd63f6d0f [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 King39a80c72009-01-19 20:44:33 +0000148 if (wdev->ick)
149 clk_enable(wdev->ick); /* Enable the interface clock */
150 clk_enable(wdev->fck); /* Enable the functional clock */
Komal Shah7768a132006-09-29 01:59:18 -0700151
152 /* initialize prescaler */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300153 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x01)
Komal Shah7768a132006-09-29 01:59:18 -0700154 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +0300155
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300156 __raw_writel((1 << 5) | (PTV << 2), base + OMAP_WATCHDOG_CNTRL);
157 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x01)
Komal Shah7768a132006-09-29 01:59:18 -0700158 cpu_relax();
159
Felipe Balbi28171422008-09-20 04:14:01 +0300160 file->private_data = (void *) wdev;
161
162 omap_wdt_set_timeout(wdev);
163 omap_wdt_enable(wdev);
Felipe Balbib3112182008-09-20 04:14:03 +0300164
Wim Van Sebroeckec9505a2007-07-20 20:41:37 +0000165 return nonseekable_open(inode, file);
Komal Shah7768a132006-09-29 01:59:18 -0700166}
167
168static int omap_wdt_release(struct inode *inode, struct file *file)
169{
Felipe Balbib3112182008-09-20 04:14:03 +0300170 struct omap_wdt_dev *wdev = file->private_data;
171
Komal Shah7768a132006-09-29 01:59:18 -0700172 /*
173 * Shut off the timer unless NOWAYOUT is defined.
174 */
175#ifndef CONFIG_WATCHDOG_NOWAYOUT
Komal Shah7768a132006-09-29 01:59:18 -0700176
Felipe Balbi28171422008-09-20 04:14:01 +0300177 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700178
Russell King39a80c72009-01-19 20:44:33 +0000179 if (wdev->ick)
180 clk_disable(wdev->ick);
181 clk_disable(wdev->fck);
Komal Shah7768a132006-09-29 01:59:18 -0700182#else
183 printk(KERN_CRIT "omap_wdt: Unexpected close, not stopping!\n");
184#endif
Felipe Balbi28171422008-09-20 04:14:01 +0300185 wdev->omap_wdt_users = 0;
Felipe Balbib3112182008-09-20 04:14:03 +0300186
Komal Shah7768a132006-09-29 01:59:18 -0700187 return 0;
188}
189
Alan Cox12b9df72008-05-19 14:07:32 +0100190static ssize_t omap_wdt_write(struct file *file, const char __user *data,
Komal Shah7768a132006-09-29 01:59:18 -0700191 size_t len, loff_t *ppos)
192{
Felipe Balbib3112182008-09-20 04:14:03 +0300193 struct omap_wdt_dev *wdev = file->private_data;
194
Komal Shah7768a132006-09-29 01:59:18 -0700195 /* Refresh LOAD_TIME. */
Alan Cox12b9df72008-05-19 14:07:32 +0100196 if (len) {
197 spin_lock(&wdt_lock);
Felipe Balbi28171422008-09-20 04:14:01 +0300198 omap_wdt_ping(wdev);
Alan Cox12b9df72008-05-19 14:07:32 +0100199 spin_unlock(&wdt_lock);
200 }
Komal Shah7768a132006-09-29 01:59:18 -0700201 return len;
202}
203
Alan Cox12b9df72008-05-19 14:07:32 +0100204static long omap_wdt_ioctl(struct file *file, unsigned int cmd,
205 unsigned long arg)
Komal Shah7768a132006-09-29 01:59:18 -0700206{
Felipe Balbi28171422008-09-20 04:14:01 +0300207 struct omap_wdt_dev *wdev;
Komal Shah7768a132006-09-29 01:59:18 -0700208 int new_margin;
Alan Cox12b9df72008-05-19 14:07:32 +0100209 static const struct watchdog_info ident = {
Komal Shah7768a132006-09-29 01:59:18 -0700210 .identity = "OMAP Watchdog",
211 .options = WDIOF_SETTIMEOUT,
212 .firmware_version = 0,
213 };
Felipe Balbib3112182008-09-20 04:14:03 +0300214
Felipe Balbi28171422008-09-20 04:14:01 +0300215 wdev = file->private_data;
Komal Shah7768a132006-09-29 01:59:18 -0700216
217 switch (cmd) {
Komal Shah7768a132006-09-29 01:59:18 -0700218 case WDIOC_GETSUPPORT:
219 return copy_to_user((struct watchdog_info __user *)arg, &ident,
220 sizeof(ident));
221 case WDIOC_GETSTATUS:
222 return put_user(0, (int __user *)arg);
223 case WDIOC_GETBOOTSTATUS:
224 if (cpu_is_omap16xx())
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300225 return put_user(__raw_readw(ARM_SYSST),
Komal Shah7768a132006-09-29 01:59:18 -0700226 (int __user *)arg);
227 if (cpu_is_omap24xx())
228 return put_user(omap_prcm_get_reset_sources(),
229 (int __user *)arg);
230 case WDIOC_KEEPALIVE:
Alan Cox12b9df72008-05-19 14:07:32 +0100231 spin_lock(&wdt_lock);
Felipe Balbi28171422008-09-20 04:14:01 +0300232 omap_wdt_ping(wdev);
Alan Cox12b9df72008-05-19 14:07:32 +0100233 spin_unlock(&wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -0700234 return 0;
235 case WDIOC_SETTIMEOUT:
236 if (get_user(new_margin, (int __user *)arg))
237 return -EFAULT;
238 omap_wdt_adjust_timeout(new_margin);
239
Alan Cox12b9df72008-05-19 14:07:32 +0100240 spin_lock(&wdt_lock);
Felipe Balbi28171422008-09-20 04:14:01 +0300241 omap_wdt_disable(wdev);
242 omap_wdt_set_timeout(wdev);
243 omap_wdt_enable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700244
Felipe Balbi28171422008-09-20 04:14:01 +0300245 omap_wdt_ping(wdev);
Alan Cox12b9df72008-05-19 14:07:32 +0100246 spin_unlock(&wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -0700247 /* Fall */
248 case WDIOC_GETTIMEOUT:
249 return put_user(timer_margin, (int __user *)arg);
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000250 default:
251 return -ENOTTY;
Komal Shah7768a132006-09-29 01:59:18 -0700252 }
253}
254
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800255static const struct file_operations omap_wdt_fops = {
Komal Shah7768a132006-09-29 01:59:18 -0700256 .owner = THIS_MODULE,
257 .write = omap_wdt_write,
Alan Cox12b9df72008-05-19 14:07:32 +0100258 .unlocked_ioctl = omap_wdt_ioctl,
Komal Shah7768a132006-09-29 01:59:18 -0700259 .open = omap_wdt_open,
260 .release = omap_wdt_release,
261};
262
Komal Shah7768a132006-09-29 01:59:18 -0700263static int __init omap_wdt_probe(struct platform_device *pdev)
264{
265 struct resource *res, *mem;
Felipe Balbi28171422008-09-20 04:14:01 +0300266 struct omap_wdt_dev *wdev;
Felipe Balbib3112182008-09-20 04:14:03 +0300267 int ret;
Komal Shah7768a132006-09-29 01:59:18 -0700268
269 /* reserve static register mappings */
270 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Felipe Balbib3112182008-09-20 04:14:03 +0300271 if (!res) {
272 ret = -ENOENT;
273 goto err_get_resource;
274 }
Komal Shah7768a132006-09-29 01:59:18 -0700275
Felipe Balbib3112182008-09-20 04:14:03 +0300276 if (omap_wdt_dev) {
277 ret = -EBUSY;
278 goto err_busy;
279 }
Felipe Balbi28171422008-09-20 04:14:01 +0300280
Komal Shah7768a132006-09-29 01:59:18 -0700281 mem = request_mem_region(res->start, res->end - res->start + 1,
282 pdev->name);
Felipe Balbib3112182008-09-20 04:14:03 +0300283 if (!mem) {
284 ret = -EBUSY;
285 goto err_busy;
286 }
Komal Shah7768a132006-09-29 01:59:18 -0700287
Felipe Balbi28171422008-09-20 04:14:01 +0300288 wdev = kzalloc(sizeof(struct omap_wdt_dev), GFP_KERNEL);
289 if (!wdev) {
290 ret = -ENOMEM;
Felipe Balbib3112182008-09-20 04:14:03 +0300291 goto err_kzalloc;
Felipe Balbi28171422008-09-20 04:14:01 +0300292 }
Felipe Balbib3112182008-09-20 04:14:03 +0300293
Felipe Balbi28171422008-09-20 04:14:01 +0300294 wdev->omap_wdt_users = 0;
295 wdev->mem = mem;
Komal Shah7768a132006-09-29 01:59:18 -0700296
Russell King39a80c72009-01-19 20:44:33 +0000297 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
298 wdev->ick = clk_get(&pdev->dev, "ick");
299 if (IS_ERR(wdev->ick)) {
300 ret = PTR_ERR(wdev->ick);
301 wdev->ick = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300302 goto err_clk;
Komal Shah7768a132006-09-29 01:59:18 -0700303 }
304 }
Russell King39a80c72009-01-19 20:44:33 +0000305 wdev->fck = clk_get(&pdev->dev, "fck");
306 if (IS_ERR(wdev->fck)) {
307 ret = PTR_ERR(wdev->fck);
308 wdev->fck = NULL;
309 goto err_clk;
310 }
Komal Shah7768a132006-09-29 01:59:18 -0700311
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300312 wdev->base = ioremap(res->start, res->end - res->start + 1);
313 if (!wdev->base) {
314 ret = -ENOMEM;
Felipe Balbib3112182008-09-20 04:14:03 +0300315 goto err_ioremap;
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300316 }
317
Felipe Balbi28171422008-09-20 04:14:01 +0300318 platform_set_drvdata(pdev, wdev);
319
320 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700321 omap_wdt_adjust_timeout(timer_margin);
322
Felipe Balbi28171422008-09-20 04:14:01 +0300323 wdev->omap_wdt_miscdev.parent = &pdev->dev;
324 wdev->omap_wdt_miscdev.minor = WATCHDOG_MINOR;
325 wdev->omap_wdt_miscdev.name = "watchdog";
326 wdev->omap_wdt_miscdev.fops = &omap_wdt_fops;
327
328 ret = misc_register(&(wdev->omap_wdt_miscdev));
Komal Shah7768a132006-09-29 01:59:18 -0700329 if (ret)
Felipe Balbib3112182008-09-20 04:14:03 +0300330 goto err_misc;
Komal Shah7768a132006-09-29 01:59:18 -0700331
Felipe Balbi28171422008-09-20 04:14:01 +0300332 pr_info("OMAP Watchdog Timer Rev 0x%02x: initial timeout %d sec\n",
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300333 __raw_readl(wdev->base + OMAP_WATCHDOG_REV) & 0xFF,
Felipe Balbi28171422008-09-20 04:14:01 +0300334 timer_margin);
Komal Shah7768a132006-09-29 01:59:18 -0700335
336 /* autogate OCP interface clock */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300337 __raw_writel(0x01, wdev->base + OMAP_WATCHDOG_SYS_CONFIG);
Felipe Balbi28171422008-09-20 04:14:01 +0300338
339 omap_wdt_dev = pdev;
340
Komal Shah7768a132006-09-29 01:59:18 -0700341 return 0;
342
Felipe Balbib3112182008-09-20 04:14:03 +0300343err_misc:
344 platform_set_drvdata(pdev, NULL);
345 iounmap(wdev->base);
346
347err_ioremap:
348 wdev->base = NULL;
349
350err_clk:
Russell King39a80c72009-01-19 20:44:33 +0000351 if (wdev->ick)
352 clk_put(wdev->ick);
353 if (wdev->fck)
354 clk_put(wdev->fck);
Felipe Balbib3112182008-09-20 04:14:03 +0300355 kfree(wdev);
356
357err_kzalloc:
358 release_mem_region(res->start, res->end - res->start + 1);
359
360err_busy:
361err_get_resource:
362
Komal Shah7768a132006-09-29 01:59:18 -0700363 return ret;
364}
365
366static void omap_wdt_shutdown(struct platform_device *pdev)
367{
Felipe Balbib3112182008-09-20 04:14:03 +0300368 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbi28171422008-09-20 04:14:01 +0300369
370 if (wdev->omap_wdt_users)
371 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700372}
373
374static int omap_wdt_remove(struct platform_device *pdev)
375{
Felipe Balbib3112182008-09-20 04:14:03 +0300376 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbi28171422008-09-20 04:14:01 +0300377 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
378
379 if (!res)
380 return -ENOENT;
381
382 misc_deregister(&(wdev->omap_wdt_miscdev));
383 release_mem_region(res->start, res->end - res->start + 1);
384 platform_set_drvdata(pdev, NULL);
Felipe Balbib3112182008-09-20 04:14:03 +0300385
Russell King39a80c72009-01-19 20:44:33 +0000386 if (wdev->ick) {
387 clk_put(wdev->ick);
Felipe Balbi28171422008-09-20 04:14:01 +0300388 }
Felipe Balbib3112182008-09-20 04:14:03 +0300389
Russell King39a80c72009-01-19 20:44:33 +0000390 clk_put(wdev->fck);
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300391 iounmap(wdev->base);
392
Felipe Balbi28171422008-09-20 04:14:01 +0300393 kfree(wdev);
394 omap_wdt_dev = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300395
Komal Shah7768a132006-09-29 01:59:18 -0700396 return 0;
397}
398
399#ifdef CONFIG_PM
400
401/* REVISIT ... not clear this is the best way to handle system suspend; and
402 * it's very inappropriate for selective device suspend (e.g. suspending this
403 * through sysfs rather than by stopping the watchdog daemon). Also, this
404 * may not play well enough with NOWAYOUT...
405 */
406
407static int omap_wdt_suspend(struct platform_device *pdev, pm_message_t state)
408{
Felipe Balbib3112182008-09-20 04:14:03 +0300409 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
410
Felipe Balbi28171422008-09-20 04:14:01 +0300411 if (wdev->omap_wdt_users)
412 omap_wdt_disable(wdev);
Felipe Balbib3112182008-09-20 04:14:03 +0300413
Komal Shah7768a132006-09-29 01:59:18 -0700414 return 0;
415}
416
417static int omap_wdt_resume(struct platform_device *pdev)
418{
Felipe Balbib3112182008-09-20 04:14:03 +0300419 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
420
Felipe Balbi28171422008-09-20 04:14:01 +0300421 if (wdev->omap_wdt_users) {
422 omap_wdt_enable(wdev);
423 omap_wdt_ping(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700424 }
Felipe Balbib3112182008-09-20 04:14:03 +0300425
Komal Shah7768a132006-09-29 01:59:18 -0700426 return 0;
427}
428
429#else
430#define omap_wdt_suspend NULL
431#define omap_wdt_resume NULL
432#endif
433
434static struct platform_driver omap_wdt_driver = {
435 .probe = omap_wdt_probe,
436 .remove = omap_wdt_remove,
437 .shutdown = omap_wdt_shutdown,
438 .suspend = omap_wdt_suspend,
439 .resume = omap_wdt_resume,
440 .driver = {
441 .owner = THIS_MODULE,
442 .name = "omap_wdt",
443 },
444};
445
446static int __init omap_wdt_init(void)
447{
Alan Cox12b9df72008-05-19 14:07:32 +0100448 spin_lock_init(&wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -0700449 return platform_driver_register(&omap_wdt_driver);
450}
451
452static void __exit omap_wdt_exit(void)
453{
454 platform_driver_unregister(&omap_wdt_driver);
455}
456
457module_init(omap_wdt_init);
458module_exit(omap_wdt_exit);
459
460MODULE_AUTHOR("George G. Davis");
461MODULE_LICENSE("GPL");
462MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
Kay Sieversf37d1932008-04-10 21:29:23 -0700463MODULE_ALIAS("platform:omap_wdt");