blob: f5db18dbc0f9e5e9092462142aa805a87239d696 [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
Joe Perches27c766a2012-02-15 15:06:19 -080029#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
30
Komal Shah7768a132006-09-29 01:59:18 -070031#include <linux/module.h>
Komal Shah7768a132006-09-29 01:59:18 -070032#include <linux/types.h>
33#include <linux/kernel.h>
34#include <linux/fs.h>
35#include <linux/mm.h>
36#include <linux/miscdevice.h>
37#include <linux/watchdog.h>
38#include <linux/reboot.h>
Komal Shah7768a132006-09-29 01:59:18 -070039#include <linux/init.h>
40#include <linux/err.h>
41#include <linux/platform_device.h>
42#include <linux/moduleparam.h>
Jiri Slaby1977f032007-10-18 23:40:25 -070043#include <linux/bitops.h>
Wim Van Sebroeck089ab072008-07-15 11:46:11 +000044#include <linux/io.h>
Alan Cox12b9df72008-05-19 14:07:32 +010045#include <linux/uaccess.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090046#include <linux/slab.h>
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +053047#include <linux/pm_runtime.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010048#include <mach/hardware.h>
Tony Lindgrendbc04162012-08-31 10:59:07 -070049#include <plat/cpu.h>
Tony Lindgrence491cf2009-10-20 09:40:47 -070050#include <plat/prcm.h>
Komal Shah7768a132006-09-29 01:59:18 -070051
52#include "omap_wdt.h"
53
Felipe Balbi28171422008-09-20 04:14:01 +030054static struct platform_device *omap_wdt_dev;
55
Komal Shah7768a132006-09-29 01:59:18 -070056static unsigned timer_margin;
57module_param(timer_margin, uint, 0);
58MODULE_PARM_DESC(timer_margin, "initial watchdog timeout (in seconds)");
59
Komal Shah7768a132006-09-29 01:59:18 -070060static unsigned int wdt_trgr_pattern = 0x1234;
Axel Lin1334f322011-11-29 13:54:01 +080061static DEFINE_SPINLOCK(wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -070062
Felipe Balbi28171422008-09-20 04:14:01 +030063struct omap_wdt_dev {
64 void __iomem *base; /* physical */
65 struct device *dev;
66 int omap_wdt_users;
Felipe Balbi28171422008-09-20 04:14:01 +030067 struct resource *mem;
68 struct miscdevice omap_wdt_miscdev;
69};
70
71static void omap_wdt_ping(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -070072{
Felipe Balbi28171422008-09-20 04:14:01 +030073 void __iomem *base = wdev->base;
Felipe Balbib3112182008-09-20 04:14:03 +030074
Komal Shah7768a132006-09-29 01:59:18 -070075 /* wait for posted write to complete */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030076 while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x08)
Komal Shah7768a132006-09-29 01:59:18 -070077 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +030078
Komal Shah7768a132006-09-29 01:59:18 -070079 wdt_trgr_pattern = ~wdt_trgr_pattern;
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030080 __raw_writel(wdt_trgr_pattern, (base + OMAP_WATCHDOG_TGR));
Felipe Balbib3112182008-09-20 04:14:03 +030081
Komal Shah7768a132006-09-29 01:59:18 -070082 /* wait for posted write to complete */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030083 while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x08)
Komal Shah7768a132006-09-29 01:59:18 -070084 cpu_relax();
85 /* reloaded WCRR from WLDR */
86}
87
Felipe Balbi28171422008-09-20 04:14:01 +030088static void omap_wdt_enable(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -070089{
Felipe Balbib3112182008-09-20 04:14:03 +030090 void __iomem *base = wdev->base;
91
Komal Shah7768a132006-09-29 01:59:18 -070092 /* Sequence to enable the watchdog */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030093 __raw_writel(0xBBBB, base + OMAP_WATCHDOG_SPR);
94 while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -070095 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +030096
Felipe Balbi9f69e3b2008-09-20 04:14:02 +030097 __raw_writel(0x4444, base + OMAP_WATCHDOG_SPR);
98 while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -070099 cpu_relax();
100}
101
Felipe Balbi28171422008-09-20 04:14:01 +0300102static void omap_wdt_disable(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -0700103{
Felipe Balbib3112182008-09-20 04:14:03 +0300104 void __iomem *base = wdev->base;
105
Komal Shah7768a132006-09-29 01:59:18 -0700106 /* sequence required to disable watchdog */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300107 __raw_writel(0xAAAA, base + OMAP_WATCHDOG_SPR); /* TIMER_MODE */
108 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -0700109 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +0300110
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300111 __raw_writel(0x5555, base + OMAP_WATCHDOG_SPR); /* TIMER_MODE */
112 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x10)
Komal Shah7768a132006-09-29 01:59:18 -0700113 cpu_relax();
114}
115
116static void omap_wdt_adjust_timeout(unsigned new_timeout)
117{
118 if (new_timeout < TIMER_MARGIN_MIN)
119 new_timeout = TIMER_MARGIN_DEFAULT;
120 if (new_timeout > TIMER_MARGIN_MAX)
121 new_timeout = TIMER_MARGIN_MAX;
122 timer_margin = new_timeout;
123}
124
Felipe Balbi28171422008-09-20 04:14:01 +0300125static void omap_wdt_set_timeout(struct omap_wdt_dev *wdev)
Komal Shah7768a132006-09-29 01:59:18 -0700126{
127 u32 pre_margin = GET_WLDR_VAL(timer_margin);
Felipe Balbib3112182008-09-20 04:14:03 +0300128 void __iomem *base = wdev->base;
Komal Shah7768a132006-09-29 01:59:18 -0700129
130 /* just count up at 32 KHz */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300131 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x04)
Komal Shah7768a132006-09-29 01:59:18 -0700132 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +0300133
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300134 __raw_writel(pre_margin, base + OMAP_WATCHDOG_LDR);
135 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x04)
Komal Shah7768a132006-09-29 01:59:18 -0700136 cpu_relax();
137}
138
139/*
140 * Allow only one task to hold it open
141 */
Komal Shah7768a132006-09-29 01:59:18 -0700142static int omap_wdt_open(struct inode *inode, struct file *file)
143{
Felipe Balbib3112182008-09-20 04:14:03 +0300144 struct omap_wdt_dev *wdev = platform_get_drvdata(omap_wdt_dev);
145 void __iomem *base = wdev->base;
146
Felipe Balbi28171422008-09-20 04:14:01 +0300147 if (test_and_set_bit(1, (unsigned long *)&(wdev->omap_wdt_users)))
Komal Shah7768a132006-09-29 01:59:18 -0700148 return -EBUSY;
149
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +0530150 pm_runtime_get_sync(wdev->dev);
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
Felipe Balbi28171422008-09-20 04:14:01 +0300177 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700178
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +0530179 pm_runtime_put_sync(wdev->dev);
Komal Shah7768a132006-09-29 01:59:18 -0700180#else
Joe Perches27c766a2012-02-15 15:06:19 -0800181 pr_crit("Unexpected close, not stopping!\n");
Komal Shah7768a132006-09-29 01:59:18 -0700182#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:
Tony Lindgrendbc04162012-08-31 10:59:07 -0700222#ifdef CONFIG_ARCH_OMAP1
Komal Shah7768a132006-09-29 01:59:18 -0700223 if (cpu_is_omap16xx())
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300224 return put_user(__raw_readw(ARM_SYSST),
Komal Shah7768a132006-09-29 01:59:18 -0700225 (int __user *)arg);
Tony Lindgrendbc04162012-08-31 10:59:07 -0700226#endif
227#ifdef CONFIG_ARCH_OMAP2PLUS
Komal Shah7768a132006-09-29 01:59:18 -0700228 if (cpu_is_omap24xx())
229 return put_user(omap_prcm_get_reset_sources(),
230 (int __user *)arg);
Tony Lindgrendbc04162012-08-31 10:59:07 -0700231#endif
Shubhrajyoti De2bf7c42012-01-04 19:45:28 +0530232 return put_user(0, (int __user *)arg);
Komal Shah7768a132006-09-29 01:59:18 -0700233 case WDIOC_KEEPALIVE:
Alan Cox12b9df72008-05-19 14:07:32 +0100234 spin_lock(&wdt_lock);
Felipe Balbi28171422008-09-20 04:14:01 +0300235 omap_wdt_ping(wdev);
Alan Cox12b9df72008-05-19 14:07:32 +0100236 spin_unlock(&wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -0700237 return 0;
238 case WDIOC_SETTIMEOUT:
239 if (get_user(new_margin, (int __user *)arg))
240 return -EFAULT;
241 omap_wdt_adjust_timeout(new_margin);
242
Alan Cox12b9df72008-05-19 14:07:32 +0100243 spin_lock(&wdt_lock);
Felipe Balbi28171422008-09-20 04:14:01 +0300244 omap_wdt_disable(wdev);
245 omap_wdt_set_timeout(wdev);
246 omap_wdt_enable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700247
Felipe Balbi28171422008-09-20 04:14:01 +0300248 omap_wdt_ping(wdev);
Alan Cox12b9df72008-05-19 14:07:32 +0100249 spin_unlock(&wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -0700250 /* Fall */
251 case WDIOC_GETTIMEOUT:
252 return put_user(timer_margin, (int __user *)arg);
Wim Van Sebroeck0c06090c2008-07-18 11:41:17 +0000253 default:
254 return -ENOTTY;
Komal Shah7768a132006-09-29 01:59:18 -0700255 }
256}
257
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800258static const struct file_operations omap_wdt_fops = {
Komal Shah7768a132006-09-29 01:59:18 -0700259 .owner = THIS_MODULE,
260 .write = omap_wdt_write,
Alan Cox12b9df72008-05-19 14:07:32 +0100261 .unlocked_ioctl = omap_wdt_ioctl,
Komal Shah7768a132006-09-29 01:59:18 -0700262 .open = omap_wdt_open,
263 .release = omap_wdt_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200264 .llseek = no_llseek,
Komal Shah7768a132006-09-29 01:59:18 -0700265};
266
Uwe Kleine-König0e3912c2009-03-28 00:26:56 +0100267static int __devinit omap_wdt_probe(struct platform_device *pdev)
Komal Shah7768a132006-09-29 01:59:18 -0700268{
269 struct resource *res, *mem;
Felipe Balbi28171422008-09-20 04:14:01 +0300270 struct omap_wdt_dev *wdev;
Felipe Balbib3112182008-09-20 04:14:03 +0300271 int ret;
Komal Shah7768a132006-09-29 01:59:18 -0700272
273 /* reserve static register mappings */
274 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Felipe Balbib3112182008-09-20 04:14:03 +0300275 if (!res) {
276 ret = -ENOENT;
277 goto err_get_resource;
278 }
Komal Shah7768a132006-09-29 01:59:18 -0700279
Felipe Balbib3112182008-09-20 04:14:03 +0300280 if (omap_wdt_dev) {
281 ret = -EBUSY;
282 goto err_busy;
283 }
Felipe Balbi28171422008-09-20 04:14:01 +0300284
H Hartley Sweetenb782a562009-12-04 12:24:04 -0500285 mem = request_mem_region(res->start, resource_size(res), pdev->name);
Felipe Balbib3112182008-09-20 04:14:03 +0300286 if (!mem) {
287 ret = -EBUSY;
288 goto err_busy;
289 }
Komal Shah7768a132006-09-29 01:59:18 -0700290
Felipe Balbi28171422008-09-20 04:14:01 +0300291 wdev = kzalloc(sizeof(struct omap_wdt_dev), GFP_KERNEL);
292 if (!wdev) {
293 ret = -ENOMEM;
Felipe Balbib3112182008-09-20 04:14:03 +0300294 goto err_kzalloc;
Felipe Balbi28171422008-09-20 04:14:01 +0300295 }
Felipe Balbib3112182008-09-20 04:14:03 +0300296
Felipe Balbi28171422008-09-20 04:14:01 +0300297 wdev->omap_wdt_users = 0;
298 wdev->mem = mem;
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +0530299 wdev->dev = &pdev->dev;
Komal Shah7768a132006-09-29 01:59:18 -0700300
H Hartley Sweetenb782a562009-12-04 12:24:04 -0500301 wdev->base = ioremap(res->start, resource_size(res));
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300302 if (!wdev->base) {
303 ret = -ENOMEM;
Felipe Balbib3112182008-09-20 04:14:03 +0300304 goto err_ioremap;
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300305 }
306
Felipe Balbi28171422008-09-20 04:14:01 +0300307 platform_set_drvdata(pdev, wdev);
308
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +0530309 pm_runtime_enable(wdev->dev);
310 pm_runtime_get_sync(wdev->dev);
Ulrik Bech Hald789cd472009-06-12 16:18:32 -0500311
Felipe Balbi28171422008-09-20 04:14:01 +0300312 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700313 omap_wdt_adjust_timeout(timer_margin);
314
Felipe Balbi28171422008-09-20 04:14:01 +0300315 wdev->omap_wdt_miscdev.parent = &pdev->dev;
316 wdev->omap_wdt_miscdev.minor = WATCHDOG_MINOR;
317 wdev->omap_wdt_miscdev.name = "watchdog";
318 wdev->omap_wdt_miscdev.fops = &omap_wdt_fops;
319
320 ret = misc_register(&(wdev->omap_wdt_miscdev));
Komal Shah7768a132006-09-29 01:59:18 -0700321 if (ret)
Felipe Balbib3112182008-09-20 04:14:03 +0300322 goto err_misc;
Komal Shah7768a132006-09-29 01:59:18 -0700323
Felipe Balbi28171422008-09-20 04:14:01 +0300324 pr_info("OMAP Watchdog Timer Rev 0x%02x: initial timeout %d sec\n",
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300325 __raw_readl(wdev->base + OMAP_WATCHDOG_REV) & 0xFF,
Felipe Balbi28171422008-09-20 04:14:01 +0300326 timer_margin);
Komal Shah7768a132006-09-29 01:59:18 -0700327
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +0530328 pm_runtime_put_sync(wdev->dev);
Ulrik Bech Hald789cd472009-06-12 16:18:32 -0500329
Felipe Balbi28171422008-09-20 04:14:01 +0300330 omap_wdt_dev = pdev;
331
Komal Shah7768a132006-09-29 01:59:18 -0700332 return 0;
333
Felipe Balbib3112182008-09-20 04:14:03 +0300334err_misc:
Shubhrajyoti D12c583d2012-01-11 19:50:18 +0530335 pm_runtime_disable(wdev->dev);
Felipe Balbib3112182008-09-20 04:14:03 +0300336 platform_set_drvdata(pdev, NULL);
337 iounmap(wdev->base);
338
339err_ioremap:
340 wdev->base = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300341 kfree(wdev);
342
343err_kzalloc:
H Hartley Sweetenb782a562009-12-04 12:24:04 -0500344 release_mem_region(res->start, resource_size(res));
Felipe Balbib3112182008-09-20 04:14:03 +0300345
346err_busy:
347err_get_resource:
348
Komal Shah7768a132006-09-29 01:59:18 -0700349 return ret;
350}
351
352static void omap_wdt_shutdown(struct platform_device *pdev)
353{
Felipe Balbib3112182008-09-20 04:14:03 +0300354 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbi28171422008-09-20 04:14:01 +0300355
Paul Walmsley0503add2011-03-10 22:40:05 -0700356 if (wdev->omap_wdt_users) {
Felipe Balbi28171422008-09-20 04:14:01 +0300357 omap_wdt_disable(wdev);
Paul Walmsley0503add2011-03-10 22:40:05 -0700358 pm_runtime_put_sync(wdev->dev);
359 }
Komal Shah7768a132006-09-29 01:59:18 -0700360}
361
Uwe Kleine-König0e3912c2009-03-28 00:26:56 +0100362static int __devexit omap_wdt_remove(struct platform_device *pdev)
Komal Shah7768a132006-09-29 01:59:18 -0700363{
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 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
366
Shubhrajyoti D12c583d2012-01-11 19:50:18 +0530367 pm_runtime_disable(wdev->dev);
Felipe Balbi28171422008-09-20 04:14:01 +0300368 if (!res)
369 return -ENOENT;
370
371 misc_deregister(&(wdev->omap_wdt_miscdev));
H Hartley Sweetenb782a562009-12-04 12:24:04 -0500372 release_mem_region(res->start, resource_size(res));
Felipe Balbi28171422008-09-20 04:14:01 +0300373 platform_set_drvdata(pdev, NULL);
Felipe Balbib3112182008-09-20 04:14:03 +0300374
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300375 iounmap(wdev->base);
376
Felipe Balbi28171422008-09-20 04:14:01 +0300377 kfree(wdev);
378 omap_wdt_dev = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300379
Komal Shah7768a132006-09-29 01:59:18 -0700380 return 0;
381}
382
383#ifdef CONFIG_PM
384
385/* REVISIT ... not clear this is the best way to handle system suspend; and
386 * it's very inappropriate for selective device suspend (e.g. suspending this
387 * through sysfs rather than by stopping the watchdog daemon). Also, this
388 * may not play well enough with NOWAYOUT...
389 */
390
391static int omap_wdt_suspend(struct platform_device *pdev, pm_message_t state)
392{
Felipe Balbib3112182008-09-20 04:14:03 +0300393 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
394
Paul Walmsley0503add2011-03-10 22:40:05 -0700395 if (wdev->omap_wdt_users) {
Felipe Balbi28171422008-09-20 04:14:01 +0300396 omap_wdt_disable(wdev);
Paul Walmsley0503add2011-03-10 22:40:05 -0700397 pm_runtime_put_sync(wdev->dev);
398 }
Felipe Balbib3112182008-09-20 04:14:03 +0300399
Komal Shah7768a132006-09-29 01:59:18 -0700400 return 0;
401}
402
403static int omap_wdt_resume(struct platform_device *pdev)
404{
Felipe Balbib3112182008-09-20 04:14:03 +0300405 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
406
Felipe Balbi28171422008-09-20 04:14:01 +0300407 if (wdev->omap_wdt_users) {
Paul Walmsley0503add2011-03-10 22:40:05 -0700408 pm_runtime_get_sync(wdev->dev);
Felipe Balbi28171422008-09-20 04:14:01 +0300409 omap_wdt_enable(wdev);
410 omap_wdt_ping(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700411 }
Felipe Balbib3112182008-09-20 04:14:03 +0300412
Komal Shah7768a132006-09-29 01:59:18 -0700413 return 0;
414}
415
416#else
417#define omap_wdt_suspend NULL
418#define omap_wdt_resume NULL
419#endif
420
Xiao Jiange6ca04e2012-06-01 12:44:16 +0800421static const struct of_device_id omap_wdt_of_match[] = {
422 { .compatible = "ti,omap3-wdt", },
423 {},
424};
425MODULE_DEVICE_TABLE(of, omap_wdt_of_match);
426
Komal Shah7768a132006-09-29 01:59:18 -0700427static 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",
Xiao Jiange6ca04e2012-06-01 12:44:16 +0800436 .of_match_table = omap_wdt_of_match,
Komal Shah7768a132006-09-29 01:59:18 -0700437 },
438};
439
Axel Linb8ec6112011-11-29 13:56:27 +0800440module_platform_driver(omap_wdt_driver);
Komal Shah7768a132006-09-29 01:59:18 -0700441
442MODULE_AUTHOR("George G. Davis");
443MODULE_LICENSE("GPL");
444MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
Kay Sieversf37d1932008-04-10 21:29:23 -0700445MODULE_ALIAS("platform:omap_wdt");