blob: fceec4f4eb7eec3dd6c3f1443b9e8df1bb7cb334 [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 Lindgrence491cf2009-10-20 09:40:47 -070049#include <plat/prcm.h>
Komal Shah7768a132006-09-29 01:59:18 -070050
51#include "omap_wdt.h"
52
Felipe Balbi28171422008-09-20 04:14:01 +030053static struct platform_device *omap_wdt_dev;
54
Komal Shah7768a132006-09-29 01:59:18 -070055static unsigned timer_margin;
56module_param(timer_margin, uint, 0);
57MODULE_PARM_DESC(timer_margin, "initial watchdog timeout (in seconds)");
58
Komal Shah7768a132006-09-29 01:59:18 -070059static unsigned int wdt_trgr_pattern = 0x1234;
Axel Lin1334f322011-11-29 13:54:01 +080060static DEFINE_SPINLOCK(wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -070061
Felipe Balbi28171422008-09-20 04:14:01 +030062struct omap_wdt_dev {
63 void __iomem *base; /* physical */
64 struct device *dev;
65 int omap_wdt_users;
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
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +0530149 pm_runtime_get_sync(wdev->dev);
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);
Ulrik Bech Hald789cd472009-06-12 16:18:32 -0500162 omap_wdt_ping(wdev); /* trigger loading of new timeout value */
Felipe Balbi28171422008-09-20 04:14:01 +0300163 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
Felipe Balbi28171422008-09-20 04:14:01 +0300176 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700177
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +0530178 pm_runtime_put_sync(wdev->dev);
Komal Shah7768a132006-09-29 01:59:18 -0700179#else
Joe Perches27c766a2012-02-15 15:06:19 -0800180 pr_crit("Unexpected close, not stopping!\n");
Komal Shah7768a132006-09-29 01:59:18 -0700181#endif
Felipe Balbi28171422008-09-20 04:14:01 +0300182 wdev->omap_wdt_users = 0;
Felipe Balbib3112182008-09-20 04:14:03 +0300183
Komal Shah7768a132006-09-29 01:59:18 -0700184 return 0;
185}
186
Alan Cox12b9df72008-05-19 14:07:32 +0100187static ssize_t omap_wdt_write(struct file *file, const char __user *data,
Komal Shah7768a132006-09-29 01:59:18 -0700188 size_t len, loff_t *ppos)
189{
Felipe Balbib3112182008-09-20 04:14:03 +0300190 struct omap_wdt_dev *wdev = file->private_data;
191
Komal Shah7768a132006-09-29 01:59:18 -0700192 /* Refresh LOAD_TIME. */
Alan Cox12b9df72008-05-19 14:07:32 +0100193 if (len) {
194 spin_lock(&wdt_lock);
Felipe Balbi28171422008-09-20 04:14:01 +0300195 omap_wdt_ping(wdev);
Alan Cox12b9df72008-05-19 14:07:32 +0100196 spin_unlock(&wdt_lock);
197 }
Komal Shah7768a132006-09-29 01:59:18 -0700198 return len;
199}
200
Alan Cox12b9df72008-05-19 14:07:32 +0100201static long omap_wdt_ioctl(struct file *file, unsigned int cmd,
202 unsigned long arg)
Komal Shah7768a132006-09-29 01:59:18 -0700203{
Felipe Balbi28171422008-09-20 04:14:01 +0300204 struct omap_wdt_dev *wdev;
Komal Shah7768a132006-09-29 01:59:18 -0700205 int new_margin;
Alan Cox12b9df72008-05-19 14:07:32 +0100206 static const struct watchdog_info ident = {
Komal Shah7768a132006-09-29 01:59:18 -0700207 .identity = "OMAP Watchdog",
208 .options = WDIOF_SETTIMEOUT,
209 .firmware_version = 0,
210 };
Felipe Balbib3112182008-09-20 04:14:03 +0300211
Felipe Balbi28171422008-09-20 04:14:01 +0300212 wdev = file->private_data;
Komal Shah7768a132006-09-29 01:59:18 -0700213
214 switch (cmd) {
Komal Shah7768a132006-09-29 01:59:18 -0700215 case WDIOC_GETSUPPORT:
216 return copy_to_user((struct watchdog_info __user *)arg, &ident,
217 sizeof(ident));
218 case WDIOC_GETSTATUS:
219 return put_user(0, (int __user *)arg);
220 case WDIOC_GETBOOTSTATUS:
221 if (cpu_is_omap16xx())
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300222 return put_user(__raw_readw(ARM_SYSST),
Komal Shah7768a132006-09-29 01:59:18 -0700223 (int __user *)arg);
224 if (cpu_is_omap24xx())
225 return put_user(omap_prcm_get_reset_sources(),
226 (int __user *)arg);
Shubhrajyoti De2bf7c42012-01-04 19:45:28 +0530227 return put_user(0, (int __user *)arg);
Komal Shah7768a132006-09-29 01:59:18 -0700228 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,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200259 .llseek = no_llseek,
Komal Shah7768a132006-09-29 01:59:18 -0700260};
261
Uwe Kleine-König0e3912c2009-03-28 00:26:56 +0100262static int __devinit omap_wdt_probe(struct platform_device *pdev)
Komal Shah7768a132006-09-29 01:59:18 -0700263{
264 struct resource *res, *mem;
Felipe Balbi28171422008-09-20 04:14:01 +0300265 struct omap_wdt_dev *wdev;
Felipe Balbib3112182008-09-20 04:14:03 +0300266 int ret;
Komal Shah7768a132006-09-29 01:59:18 -0700267
268 /* reserve static register mappings */
269 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Felipe Balbib3112182008-09-20 04:14:03 +0300270 if (!res) {
271 ret = -ENOENT;
272 goto err_get_resource;
273 }
Komal Shah7768a132006-09-29 01:59:18 -0700274
Felipe Balbib3112182008-09-20 04:14:03 +0300275 if (omap_wdt_dev) {
276 ret = -EBUSY;
277 goto err_busy;
278 }
Felipe Balbi28171422008-09-20 04:14:01 +0300279
H Hartley Sweetenb782a562009-12-04 12:24:04 -0500280 mem = request_mem_region(res->start, resource_size(res), 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;
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +0530294 wdev->dev = &pdev->dev;
Komal Shah7768a132006-09-29 01:59:18 -0700295
H Hartley Sweetenb782a562009-12-04 12:24:04 -0500296 wdev->base = ioremap(res->start, resource_size(res));
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300297 if (!wdev->base) {
298 ret = -ENOMEM;
Felipe Balbib3112182008-09-20 04:14:03 +0300299 goto err_ioremap;
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300300 }
301
Felipe Balbi28171422008-09-20 04:14:01 +0300302 platform_set_drvdata(pdev, wdev);
303
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +0530304 pm_runtime_enable(wdev->dev);
305 pm_runtime_get_sync(wdev->dev);
Ulrik Bech Hald789cd472009-06-12 16:18:32 -0500306
Felipe Balbi28171422008-09-20 04:14:01 +0300307 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700308 omap_wdt_adjust_timeout(timer_margin);
309
Felipe Balbi28171422008-09-20 04:14:01 +0300310 wdev->omap_wdt_miscdev.parent = &pdev->dev;
311 wdev->omap_wdt_miscdev.minor = WATCHDOG_MINOR;
312 wdev->omap_wdt_miscdev.name = "watchdog";
313 wdev->omap_wdt_miscdev.fops = &omap_wdt_fops;
314
315 ret = misc_register(&(wdev->omap_wdt_miscdev));
Komal Shah7768a132006-09-29 01:59:18 -0700316 if (ret)
Felipe Balbib3112182008-09-20 04:14:03 +0300317 goto err_misc;
Komal Shah7768a132006-09-29 01:59:18 -0700318
Felipe Balbi28171422008-09-20 04:14:01 +0300319 pr_info("OMAP Watchdog Timer Rev 0x%02x: initial timeout %d sec\n",
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300320 __raw_readl(wdev->base + OMAP_WATCHDOG_REV) & 0xFF,
Felipe Balbi28171422008-09-20 04:14:01 +0300321 timer_margin);
Komal Shah7768a132006-09-29 01:59:18 -0700322
Varadarajan, Charulatha7ec5ad02010-09-23 20:02:43 +0530323 pm_runtime_put_sync(wdev->dev);
Ulrik Bech Hald789cd472009-06-12 16:18:32 -0500324
Felipe Balbi28171422008-09-20 04:14:01 +0300325 omap_wdt_dev = pdev;
326
Komal Shah7768a132006-09-29 01:59:18 -0700327 return 0;
328
Felipe Balbib3112182008-09-20 04:14:03 +0300329err_misc:
Shubhrajyoti D12c583d2012-01-11 19:50:18 +0530330 pm_runtime_disable(wdev->dev);
Felipe Balbib3112182008-09-20 04:14:03 +0300331 platform_set_drvdata(pdev, NULL);
332 iounmap(wdev->base);
333
334err_ioremap:
335 wdev->base = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300336 kfree(wdev);
337
338err_kzalloc:
H Hartley Sweetenb782a562009-12-04 12:24:04 -0500339 release_mem_region(res->start, resource_size(res));
Felipe Balbib3112182008-09-20 04:14:03 +0300340
341err_busy:
342err_get_resource:
343
Komal Shah7768a132006-09-29 01:59:18 -0700344 return ret;
345}
346
347static void omap_wdt_shutdown(struct platform_device *pdev)
348{
Felipe Balbib3112182008-09-20 04:14:03 +0300349 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbi28171422008-09-20 04:14:01 +0300350
Paul Walmsley0503add2011-03-10 22:40:05 -0700351 if (wdev->omap_wdt_users) {
Felipe Balbi28171422008-09-20 04:14:01 +0300352 omap_wdt_disable(wdev);
Paul Walmsley0503add2011-03-10 22:40:05 -0700353 pm_runtime_put_sync(wdev->dev);
354 }
Komal Shah7768a132006-09-29 01:59:18 -0700355}
356
Uwe Kleine-König0e3912c2009-03-28 00:26:56 +0100357static int __devexit omap_wdt_remove(struct platform_device *pdev)
Komal Shah7768a132006-09-29 01:59:18 -0700358{
Felipe Balbib3112182008-09-20 04:14:03 +0300359 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbi28171422008-09-20 04:14:01 +0300360 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
361
Shubhrajyoti D12c583d2012-01-11 19:50:18 +0530362 pm_runtime_disable(wdev->dev);
Felipe Balbi28171422008-09-20 04:14:01 +0300363 if (!res)
364 return -ENOENT;
365
366 misc_deregister(&(wdev->omap_wdt_miscdev));
H Hartley Sweetenb782a562009-12-04 12:24:04 -0500367 release_mem_region(res->start, resource_size(res));
Felipe Balbi28171422008-09-20 04:14:01 +0300368 platform_set_drvdata(pdev, NULL);
Felipe Balbib3112182008-09-20 04:14:03 +0300369
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300370 iounmap(wdev->base);
371
Felipe Balbi28171422008-09-20 04:14:01 +0300372 kfree(wdev);
373 omap_wdt_dev = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300374
Komal Shah7768a132006-09-29 01:59:18 -0700375 return 0;
376}
377
378#ifdef CONFIG_PM
379
380/* REVISIT ... not clear this is the best way to handle system suspend; and
381 * it's very inappropriate for selective device suspend (e.g. suspending this
382 * through sysfs rather than by stopping the watchdog daemon). Also, this
383 * may not play well enough with NOWAYOUT...
384 */
385
386static int omap_wdt_suspend(struct platform_device *pdev, pm_message_t state)
387{
Felipe Balbib3112182008-09-20 04:14:03 +0300388 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
389
Paul Walmsley0503add2011-03-10 22:40:05 -0700390 if (wdev->omap_wdt_users) {
Felipe Balbi28171422008-09-20 04:14:01 +0300391 omap_wdt_disable(wdev);
Paul Walmsley0503add2011-03-10 22:40:05 -0700392 pm_runtime_put_sync(wdev->dev);
393 }
Felipe Balbib3112182008-09-20 04:14:03 +0300394
Komal Shah7768a132006-09-29 01:59:18 -0700395 return 0;
396}
397
398static int omap_wdt_resume(struct platform_device *pdev)
399{
Felipe Balbib3112182008-09-20 04:14:03 +0300400 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
401
Felipe Balbi28171422008-09-20 04:14:01 +0300402 if (wdev->omap_wdt_users) {
Paul Walmsley0503add2011-03-10 22:40:05 -0700403 pm_runtime_get_sync(wdev->dev);
Felipe Balbi28171422008-09-20 04:14:01 +0300404 omap_wdt_enable(wdev);
405 omap_wdt_ping(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700406 }
Felipe Balbib3112182008-09-20 04:14:03 +0300407
Komal Shah7768a132006-09-29 01:59:18 -0700408 return 0;
409}
410
411#else
412#define omap_wdt_suspend NULL
413#define omap_wdt_resume NULL
414#endif
415
Xiao Jiange6ca04e2012-06-01 12:44:16 +0800416static const struct of_device_id omap_wdt_of_match[] = {
417 { .compatible = "ti,omap3-wdt", },
418 {},
419};
420MODULE_DEVICE_TABLE(of, omap_wdt_of_match);
421
Komal Shah7768a132006-09-29 01:59:18 -0700422static struct platform_driver omap_wdt_driver = {
423 .probe = omap_wdt_probe,
Uwe Kleine-König0e3912c2009-03-28 00:26:56 +0100424 .remove = __devexit_p(omap_wdt_remove),
Komal Shah7768a132006-09-29 01:59:18 -0700425 .shutdown = omap_wdt_shutdown,
426 .suspend = omap_wdt_suspend,
427 .resume = omap_wdt_resume,
428 .driver = {
429 .owner = THIS_MODULE,
430 .name = "omap_wdt",
Xiao Jiange6ca04e2012-06-01 12:44:16 +0800431 .of_match_table = omap_wdt_of_match,
Komal Shah7768a132006-09-29 01:59:18 -0700432 },
433};
434
Axel Linb8ec6112011-11-29 13:56:27 +0800435module_platform_driver(omap_wdt_driver);
Komal Shah7768a132006-09-29 01:59:18 -0700436
437MODULE_AUTHOR("George G. Davis");
438MODULE_LICENSE("GPL");
439MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
Kay Sieversf37d1932008-04-10 21:29:23 -0700440MODULE_ALIAS("platform:omap_wdt");