blob: 81e3d610089439c7f6a168f56c5227781453729f [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>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090045#include <linux/slab.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010046#include <mach/hardware.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070047#include <plat/prcm.h>
Komal Shah7768a132006-09-29 01:59:18 -070048
49#include "omap_wdt.h"
50
Felipe Balbi28171422008-09-20 04:14:01 +030051static struct platform_device *omap_wdt_dev;
52
Komal Shah7768a132006-09-29 01:59:18 -070053static unsigned timer_margin;
54module_param(timer_margin, uint, 0);
55MODULE_PARM_DESC(timer_margin, "initial watchdog timeout (in seconds)");
56
Komal Shah7768a132006-09-29 01:59:18 -070057static unsigned int wdt_trgr_pattern = 0x1234;
Alan Cox12b9df72008-05-19 14:07:32 +010058static spinlock_t wdt_lock;
Komal Shah7768a132006-09-29 01:59:18 -070059
Felipe Balbi28171422008-09-20 04:14:01 +030060struct omap_wdt_dev {
61 void __iomem *base; /* physical */
62 struct device *dev;
63 int omap_wdt_users;
Russell King39a80c72009-01-19 20:44:33 +000064 struct clk *ick;
65 struct clk *fck;
Felipe Balbi28171422008-09-20 04:14:01 +030066 struct resource *mem;
67 struct miscdevice omap_wdt_miscdev;
68};
69
70static void omap_wdt_ping(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -070071{
Felipe Balbi28171422008-09-20 04:14:01 +030072 void __iomem *base = wdev->base;
Felipe Balbib3112182008-09-20 04:14:03 +030073
Komal Shah7768a132006-09-29 01:59:18 -070074 /* wait for posted write to complete */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030075 while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x08)
Komal Shah7768a132006-09-29 01:59:18 -070076 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +030077
Komal Shah7768a132006-09-29 01:59:18 -070078 wdt_trgr_pattern = ~wdt_trgr_pattern;
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030079 __raw_writel(wdt_trgr_pattern, (base + OMAP_WATCHDOG_TGR));
Felipe Balbib3112182008-09-20 04:14:03 +030080
Komal Shah7768a132006-09-29 01:59:18 -070081 /* wait for posted write to complete */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030082 while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x08)
Komal Shah7768a132006-09-29 01:59:18 -070083 cpu_relax();
84 /* reloaded WCRR from WLDR */
85}
86
Felipe Balbi28171422008-09-20 04:14:01 +030087static void omap_wdt_enable(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -070088{
Felipe Balbib3112182008-09-20 04:14:03 +030089 void __iomem *base = wdev->base;
90
Komal Shah7768a132006-09-29 01:59:18 -070091 /* Sequence to enable the watchdog */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030092 __raw_writel(0xBBBB, base + OMAP_WATCHDOG_SPR);
93 while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -070094 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +030095
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030096 __raw_writel(0x4444, base + OMAP_WATCHDOG_SPR);
97 while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -070098 cpu_relax();
99}
100
Felipe Balbi28171422008-09-20 04:14:01 +0300101static void omap_wdt_disable(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -0700102{
Felipe Balbib3112182008-09-20 04:14:03 +0300103 void __iomem *base = wdev->base;
104
Komal Shah7768a132006-09-29 01:59:18 -0700105 /* sequence required to disable watchdog */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300106 __raw_writel(0xAAAA, base + OMAP_WATCHDOG_SPR); /* TIMER_MODE */
107 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -0700108 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +0300109
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300110 __raw_writel(0x5555, base + OMAP_WATCHDOG_SPR); /* TIMER_MODE */
111 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -0700112 cpu_relax();
113}
114
115static void omap_wdt_adjust_timeout(unsigned new_timeout)
116{
117 if (new_timeout < TIMER_MARGIN_MIN)
118 new_timeout = TIMER_MARGIN_DEFAULT;
119 if (new_timeout > TIMER_MARGIN_MAX)
120 new_timeout = TIMER_MARGIN_MAX;
121 timer_margin = new_timeout;
122}
123
Felipe Balbi28171422008-09-20 04:14:01 +0300124static void omap_wdt_set_timeout(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -0700125{
126 u32 pre_margin = GET_WLDR_VAL(timer_margin);
Felipe Balbib3112182008-09-20 04:14:03 +0300127 void __iomem *base = wdev->base;
Komal Shah7768a132006-09-29 01:59:18 -0700128
129 /* just count up at 32 KHz */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300130 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x04)
Komal Shah7768a132006-09-29 01:59:18 -0700131 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +0300132
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300133 __raw_writel(pre_margin, base + OMAP_WATCHDOG_LDR);
134 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x04)
Komal Shah7768a132006-09-29 01:59:18 -0700135 cpu_relax();
136}
137
138/*
139 * Allow only one task to hold it open
140 */
Komal Shah7768a132006-09-29 01:59:18 -0700141static int omap_wdt_open(struct inode *inode, struct file *file)
142{
Felipe Balbib3112182008-09-20 04:14:03 +0300143 struct omap_wdt_dev *wdev = platform_get_drvdata(omap_wdt_dev);
144 void __iomem *base = wdev->base;
145
Felipe Balbi28171422008-09-20 04:14:01 +0300146 if (test_and_set_bit(1, (unsigned long *)&(wdev->omap_wdt_users)))
Komal Shah7768a132006-09-29 01:59:18 -0700147 return -EBUSY;
148
Russell King4c5e1942009-01-23 12:48:37 +0000149 clk_enable(wdev->ick); /* Enable the interface clock */
Russell King39a80c72009-01-19 20:44:33 +0000150 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);
Ulrik Bech Hald789cd472009-06-12 16:18:32 -0500163 omap_wdt_ping(wdev); /* trigger loading of new timeout value */
Felipe Balbi28171422008-09-20 04:14:01 +0300164 omap_wdt_enable(wdev);
Felipe Balbib3112182008-09-20 04:14:03 +0300165
Wim Van Sebroeckec9505a2007-07-20 20:41:37 +0000166 return nonseekable_open(inode, file);
Komal Shah7768a132006-09-29 01:59:18 -0700167}
168
169static int omap_wdt_release(struct inode *inode, struct file *file)
170{
Felipe Balbib3112182008-09-20 04:14:03 +0300171 struct omap_wdt_dev *wdev = file->private_data;
172
Komal Shah7768a132006-09-29 01:59:18 -0700173 /*
174 * Shut off the timer unless NOWAYOUT is defined.
175 */
176#ifndef CONFIG_WATCHDOG_NOWAYOUT
Komal Shah7768a132006-09-29 01:59:18 -0700177
Felipe Balbi28171422008-09-20 04:14:01 +0300178 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700179
Russell King4c5e1942009-01-23 12:48:37 +0000180 clk_disable(wdev->ick);
Russell King39a80c72009-01-19 20:44:33 +0000181 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,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200261 .llseek = no_llseek,
Komal Shah7768a132006-09-29 01:59:18 -0700262};
263
Uwe Kleine-König0e3912c2009-03-28 00:26:56 +0100264static int __devinit omap_wdt_probe(struct platform_device *pdev)
Komal Shah7768a132006-09-29 01:59:18 -0700265{
266 struct resource *res, *mem;
Felipe Balbi28171422008-09-20 04:14:01 +0300267 struct omap_wdt_dev *wdev;
Felipe Balbib3112182008-09-20 04:14:03 +0300268 int ret;
Komal Shah7768a132006-09-29 01:59:18 -0700269
270 /* reserve static register mappings */
271 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Felipe Balbib3112182008-09-20 04:14:03 +0300272 if (!res) {
273 ret = -ENOENT;
274 goto err_get_resource;
275 }
Komal Shah7768a132006-09-29 01:59:18 -0700276
Felipe Balbib3112182008-09-20 04:14:03 +0300277 if (omap_wdt_dev) {
278 ret = -EBUSY;
279 goto err_busy;
280 }
Felipe Balbi28171422008-09-20 04:14:01 +0300281
H Hartley Sweetenb782a562009-12-04 12:24:04 -0500282 mem = request_mem_region(res->start, resource_size(res), 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 King4c5e1942009-01-23 12:48:37 +0000297 wdev->ick = clk_get(&pdev->dev, "ick");
298 if (IS_ERR(wdev->ick)) {
299 ret = PTR_ERR(wdev->ick);
300 wdev->ick = NULL;
301 goto err_clk;
Komal Shah7768a132006-09-29 01:59:18 -0700302 }
Russell King39a80c72009-01-19 20:44:33 +0000303 wdev->fck = clk_get(&pdev->dev, "fck");
304 if (IS_ERR(wdev->fck)) {
305 ret = PTR_ERR(wdev->fck);
306 wdev->fck = NULL;
307 goto err_clk;
308 }
Komal Shah7768a132006-09-29 01:59:18 -0700309
H Hartley Sweetenb782a562009-12-04 12:24:04 -0500310 wdev->base = ioremap(res->start, resource_size(res));
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300311 if (!wdev->base) {
312 ret = -ENOMEM;
Felipe Balbib3112182008-09-20 04:14:03 +0300313 goto err_ioremap;
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300314 }
315
Felipe Balbi28171422008-09-20 04:14:01 +0300316 platform_set_drvdata(pdev, wdev);
317
Ulrik Bech Hald789cd472009-06-12 16:18:32 -0500318 clk_enable(wdev->ick);
319 clk_enable(wdev->fck);
320
Felipe Balbi28171422008-09-20 04:14:01 +0300321 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700322 omap_wdt_adjust_timeout(timer_margin);
323
Felipe Balbi28171422008-09-20 04:14:01 +0300324 wdev->omap_wdt_miscdev.parent = &pdev->dev;
325 wdev->omap_wdt_miscdev.minor = WATCHDOG_MINOR;
326 wdev->omap_wdt_miscdev.name = "watchdog";
327 wdev->omap_wdt_miscdev.fops = &omap_wdt_fops;
328
329 ret = misc_register(&(wdev->omap_wdt_miscdev));
Komal Shah7768a132006-09-29 01:59:18 -0700330 if (ret)
Felipe Balbib3112182008-09-20 04:14:03 +0300331 goto err_misc;
Komal Shah7768a132006-09-29 01:59:18 -0700332
Felipe Balbi28171422008-09-20 04:14:01 +0300333 pr_info("OMAP Watchdog Timer Rev 0x%02x: initial timeout %d sec\n",
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300334 __raw_readl(wdev->base + OMAP_WATCHDOG_REV) & 0xFF,
Felipe Balbi28171422008-09-20 04:14:01 +0300335 timer_margin);
Komal Shah7768a132006-09-29 01:59:18 -0700336
337 /* autogate OCP interface clock */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300338 __raw_writel(0x01, wdev->base + OMAP_WATCHDOG_SYS_CONFIG);
Felipe Balbi28171422008-09-20 04:14:01 +0300339
Ulrik Bech Hald789cd472009-06-12 16:18:32 -0500340 clk_disable(wdev->ick);
341 clk_disable(wdev->fck);
342
Felipe Balbi28171422008-09-20 04:14:01 +0300343 omap_wdt_dev = pdev;
344
Komal Shah7768a132006-09-29 01:59:18 -0700345 return 0;
346
Felipe Balbib3112182008-09-20 04:14:03 +0300347err_misc:
348 platform_set_drvdata(pdev, NULL);
349 iounmap(wdev->base);
350
351err_ioremap:
352 wdev->base = NULL;
353
354err_clk:
Russell King39a80c72009-01-19 20:44:33 +0000355 if (wdev->ick)
356 clk_put(wdev->ick);
357 if (wdev->fck)
358 clk_put(wdev->fck);
Felipe Balbib3112182008-09-20 04:14:03 +0300359 kfree(wdev);
360
361err_kzalloc:
H Hartley Sweetenb782a562009-12-04 12:24:04 -0500362 release_mem_region(res->start, resource_size(res));
Felipe Balbib3112182008-09-20 04:14:03 +0300363
364err_busy:
365err_get_resource:
366
Komal Shah7768a132006-09-29 01:59:18 -0700367 return ret;
368}
369
370static void omap_wdt_shutdown(struct platform_device *pdev)
371{
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
374 if (wdev->omap_wdt_users)
375 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700376}
377
Uwe Kleine-König0e3912c2009-03-28 00:26:56 +0100378static int __devexit omap_wdt_remove(struct platform_device *pdev)
Komal Shah7768a132006-09-29 01:59:18 -0700379{
Felipe Balbib3112182008-09-20 04:14:03 +0300380 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbi28171422008-09-20 04:14:01 +0300381 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
382
383 if (!res)
384 return -ENOENT;
385
386 misc_deregister(&(wdev->omap_wdt_miscdev));
H Hartley Sweetenb782a562009-12-04 12:24:04 -0500387 release_mem_region(res->start, resource_size(res));
Felipe Balbi28171422008-09-20 04:14:01 +0300388 platform_set_drvdata(pdev, NULL);
Felipe Balbib3112182008-09-20 04:14:03 +0300389
Russell King4c5e1942009-01-23 12:48:37 +0000390 clk_put(wdev->ick);
Russell King39a80c72009-01-19 20:44:33 +0000391 clk_put(wdev->fck);
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300392 iounmap(wdev->base);
393
Felipe Balbi28171422008-09-20 04:14:01 +0300394 kfree(wdev);
395 omap_wdt_dev = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300396
Komal Shah7768a132006-09-29 01:59:18 -0700397 return 0;
398}
399
400#ifdef CONFIG_PM
401
402/* REVISIT ... not clear this is the best way to handle system suspend; and
403 * it's very inappropriate for selective device suspend (e.g. suspending this
404 * through sysfs rather than by stopping the watchdog daemon). Also, this
405 * may not play well enough with NOWAYOUT...
406 */
407
408static int omap_wdt_suspend(struct platform_device *pdev, pm_message_t state)
409{
Felipe Balbib3112182008-09-20 04:14:03 +0300410 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
411
Felipe Balbi28171422008-09-20 04:14:01 +0300412 if (wdev->omap_wdt_users)
413 omap_wdt_disable(wdev);
Felipe Balbib3112182008-09-20 04:14:03 +0300414
Komal Shah7768a132006-09-29 01:59:18 -0700415 return 0;
416}
417
418static int omap_wdt_resume(struct platform_device *pdev)
419{
Felipe Balbib3112182008-09-20 04:14:03 +0300420 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
421
Felipe Balbi28171422008-09-20 04:14:01 +0300422 if (wdev->omap_wdt_users) {
423 omap_wdt_enable(wdev);
424 omap_wdt_ping(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700425 }
Felipe Balbib3112182008-09-20 04:14:03 +0300426
Komal Shah7768a132006-09-29 01:59:18 -0700427 return 0;
428}
429
430#else
431#define omap_wdt_suspend NULL
432#define omap_wdt_resume NULL
433#endif
434
435static struct platform_driver omap_wdt_driver = {
436 .probe = omap_wdt_probe,
Uwe Kleine-König0e3912c2009-03-28 00:26:56 +0100437 .remove = __devexit_p(omap_wdt_remove),
Komal Shah7768a132006-09-29 01:59:18 -0700438 .shutdown = omap_wdt_shutdown,
439 .suspend = omap_wdt_suspend,
440 .resume = omap_wdt_resume,
441 .driver = {
442 .owner = THIS_MODULE,
443 .name = "omap_wdt",
444 },
445};
446
447static int __init omap_wdt_init(void)
448{
Alan Cox12b9df72008-05-19 14:07:32 +0100449 spin_lock_init(&wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -0700450 return platform_driver_register(&omap_wdt_driver);
451}
452
453static void __exit omap_wdt_exit(void)
454{
455 platform_driver_unregister(&omap_wdt_driver);
456}
457
458module_init(omap_wdt_init);
459module_exit(omap_wdt_exit);
460
461MODULE_AUTHOR("George G. Davis");
462MODULE_LICENSE("GPL");
463MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
Kay Sieversf37d1932008-04-10 21:29:23 -0700464MODULE_ALIAS("platform:omap_wdt");