blob: 2f2ce7429f5bb86f18cb3d381ad22f43c57624cb [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;
63 struct clk *armwdt_ck;
64 struct clk *mpu_wdt_ick;
65 struct clk *mpu_wdt_fck;
66 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
149 if (cpu_is_omap16xx())
Felipe Balbi28171422008-09-20 04:14:01 +0300150 clk_enable(wdev->armwdt_ck); /* Enable the clock */
Komal Shah7768a132006-09-29 01:59:18 -0700151
Felipe Balbi28171422008-09-20 04:14:01 +0300152 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
153 clk_enable(wdev->mpu_wdt_ick); /* Enable the interface clock */
154 clk_enable(wdev->mpu_wdt_fck); /* Enable the functional clock */
Komal Shah7768a132006-09-29 01:59:18 -0700155 }
156
157 /* initialize prescaler */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300158 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x01)
Komal Shah7768a132006-09-29 01:59:18 -0700159 cpu_relax();
Felipe Balbib3112182008-09-20 04:14:03 +0300160
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300161 __raw_writel((1 << 5) | (PTV << 2), base + OMAP_WATCHDOG_CNTRL);
162 while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x01)
Komal Shah7768a132006-09-29 01:59:18 -0700163 cpu_relax();
164
Felipe Balbi28171422008-09-20 04:14:01 +0300165 file->private_data = (void *) wdev;
166
167 omap_wdt_set_timeout(wdev);
168 omap_wdt_enable(wdev);
Felipe Balbib3112182008-09-20 04:14:03 +0300169
Wim Van Sebroeckec9505a2007-07-20 20:41:37 +0000170 return nonseekable_open(inode, file);
Komal Shah7768a132006-09-29 01:59:18 -0700171}
172
173static int omap_wdt_release(struct inode *inode, struct file *file)
174{
Felipe Balbib3112182008-09-20 04:14:03 +0300175 struct omap_wdt_dev *wdev = file->private_data;
176
Komal Shah7768a132006-09-29 01:59:18 -0700177 /*
178 * Shut off the timer unless NOWAYOUT is defined.
179 */
180#ifndef CONFIG_WATCHDOG_NOWAYOUT
Komal Shah7768a132006-09-29 01:59:18 -0700181
Felipe Balbi28171422008-09-20 04:14:01 +0300182 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700183
Felipe Balbi28171422008-09-20 04:14:01 +0300184 if (cpu_is_omap16xx())
185 clk_disable(wdev->armwdt_ck); /* Disable the clock */
186
187 if (cpu_is_omap24xx() || cpu_is_omap34xx()) {
188 clk_disable(wdev->mpu_wdt_ick); /* Disable the clock */
189 clk_disable(wdev->mpu_wdt_fck); /* Disable the clock */
Komal Shah7768a132006-09-29 01:59:18 -0700190 }
191#else
192 printk(KERN_CRIT "omap_wdt: Unexpected close, not stopping!\n");
193#endif
Felipe Balbi28171422008-09-20 04:14:01 +0300194 wdev->omap_wdt_users = 0;
Felipe Balbib3112182008-09-20 04:14:03 +0300195
Komal Shah7768a132006-09-29 01:59:18 -0700196 return 0;
197}
198
Alan Cox12b9df72008-05-19 14:07:32 +0100199static ssize_t omap_wdt_write(struct file *file, const char __user *data,
Komal Shah7768a132006-09-29 01:59:18 -0700200 size_t len, loff_t *ppos)
201{
Felipe Balbib3112182008-09-20 04:14:03 +0300202 struct omap_wdt_dev *wdev = file->private_data;
203
Komal Shah7768a132006-09-29 01:59:18 -0700204 /* Refresh LOAD_TIME. */
Alan Cox12b9df72008-05-19 14:07:32 +0100205 if (len) {
206 spin_lock(&wdt_lock);
Felipe Balbi28171422008-09-20 04:14:01 +0300207 omap_wdt_ping(wdev);
Alan Cox12b9df72008-05-19 14:07:32 +0100208 spin_unlock(&wdt_lock);
209 }
Komal Shah7768a132006-09-29 01:59:18 -0700210 return len;
211}
212
Alan Cox12b9df72008-05-19 14:07:32 +0100213static long omap_wdt_ioctl(struct file *file, unsigned int cmd,
214 unsigned long arg)
Komal Shah7768a132006-09-29 01:59:18 -0700215{
Felipe Balbi28171422008-09-20 04:14:01 +0300216 struct omap_wdt_dev *wdev;
Komal Shah7768a132006-09-29 01:59:18 -0700217 int new_margin;
Alan Cox12b9df72008-05-19 14:07:32 +0100218 static const struct watchdog_info ident = {
Komal Shah7768a132006-09-29 01:59:18 -0700219 .identity = "OMAP Watchdog",
220 .options = WDIOF_SETTIMEOUT,
221 .firmware_version = 0,
222 };
Felipe Balbib3112182008-09-20 04:14:03 +0300223
Felipe Balbi28171422008-09-20 04:14:01 +0300224 wdev = file->private_data;
Komal Shah7768a132006-09-29 01:59:18 -0700225
226 switch (cmd) {
Komal Shah7768a132006-09-29 01:59:18 -0700227 case WDIOC_GETSUPPORT:
228 return copy_to_user((struct watchdog_info __user *)arg, &ident,
229 sizeof(ident));
230 case WDIOC_GETSTATUS:
231 return put_user(0, (int __user *)arg);
232 case WDIOC_GETBOOTSTATUS:
233 if (cpu_is_omap16xx())
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300234 return put_user(__raw_readw(ARM_SYSST),
Komal Shah7768a132006-09-29 01:59:18 -0700235 (int __user *)arg);
236 if (cpu_is_omap24xx())
237 return put_user(omap_prcm_get_reset_sources(),
238 (int __user *)arg);
239 case WDIOC_KEEPALIVE:
Alan Cox12b9df72008-05-19 14:07:32 +0100240 spin_lock(&wdt_lock);
Felipe Balbi28171422008-09-20 04:14:01 +0300241 omap_wdt_ping(wdev);
Alan Cox12b9df72008-05-19 14:07:32 +0100242 spin_unlock(&wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -0700243 return 0;
244 case WDIOC_SETTIMEOUT:
245 if (get_user(new_margin, (int __user *)arg))
246 return -EFAULT;
247 omap_wdt_adjust_timeout(new_margin);
248
Alan Cox12b9df72008-05-19 14:07:32 +0100249 spin_lock(&wdt_lock);
Felipe Balbi28171422008-09-20 04:14:01 +0300250 omap_wdt_disable(wdev);
251 omap_wdt_set_timeout(wdev);
252 omap_wdt_enable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700253
Felipe Balbi28171422008-09-20 04:14:01 +0300254 omap_wdt_ping(wdev);
Alan Cox12b9df72008-05-19 14:07:32 +0100255 spin_unlock(&wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -0700256 /* Fall */
257 case WDIOC_GETTIMEOUT:
258 return put_user(timer_margin, (int __user *)arg);
Wim Van Sebroeck0c060902008-07-18 11:41:17 +0000259 default:
260 return -ENOTTY;
Komal Shah7768a132006-09-29 01:59:18 -0700261 }
262}
263
Arjan van de Ven2b8693c2007-02-12 00:55:32 -0800264static const struct file_operations omap_wdt_fops = {
Komal Shah7768a132006-09-29 01:59:18 -0700265 .owner = THIS_MODULE,
266 .write = omap_wdt_write,
Alan Cox12b9df72008-05-19 14:07:32 +0100267 .unlocked_ioctl = omap_wdt_ioctl,
Komal Shah7768a132006-09-29 01:59:18 -0700268 .open = omap_wdt_open,
269 .release = omap_wdt_release,
270};
271
Komal Shah7768a132006-09-29 01:59:18 -0700272static int __init omap_wdt_probe(struct platform_device *pdev)
273{
274 struct resource *res, *mem;
Felipe Balbi28171422008-09-20 04:14:01 +0300275 struct omap_wdt_dev *wdev;
Felipe Balbib3112182008-09-20 04:14:03 +0300276 int ret;
Komal Shah7768a132006-09-29 01:59:18 -0700277
278 /* reserve static register mappings */
279 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
Felipe Balbib3112182008-09-20 04:14:03 +0300280 if (!res) {
281 ret = -ENOENT;
282 goto err_get_resource;
283 }
Komal Shah7768a132006-09-29 01:59:18 -0700284
Felipe Balbib3112182008-09-20 04:14:03 +0300285 if (omap_wdt_dev) {
286 ret = -EBUSY;
287 goto err_busy;
288 }
Felipe Balbi28171422008-09-20 04:14:01 +0300289
Komal Shah7768a132006-09-29 01:59:18 -0700290 mem = request_mem_region(res->start, res->end - res->start + 1,
291 pdev->name);
Felipe Balbib3112182008-09-20 04:14:03 +0300292 if (!mem) {
293 ret = -EBUSY;
294 goto err_busy;
295 }
Komal Shah7768a132006-09-29 01:59:18 -0700296
Felipe Balbi28171422008-09-20 04:14:01 +0300297 wdev = kzalloc(sizeof(struct omap_wdt_dev), GFP_KERNEL);
298 if (!wdev) {
299 ret = -ENOMEM;
Felipe Balbib3112182008-09-20 04:14:03 +0300300 goto err_kzalloc;
Felipe Balbi28171422008-09-20 04:14:01 +0300301 }
Felipe Balbib3112182008-09-20 04:14:03 +0300302
Felipe Balbi28171422008-09-20 04:14:01 +0300303 wdev->omap_wdt_users = 0;
304 wdev->mem = mem;
Komal Shah7768a132006-09-29 01:59:18 -0700305
306 if (cpu_is_omap16xx()) {
Felipe Balbi28171422008-09-20 04:14:01 +0300307 wdev->armwdt_ck = clk_get(&pdev->dev, "armwdt_ck");
308 if (IS_ERR(wdev->armwdt_ck)) {
309 ret = PTR_ERR(wdev->armwdt_ck);
310 wdev->armwdt_ck = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300311 goto err_clk;
Komal Shah7768a132006-09-29 01:59:18 -0700312 }
313 }
314
315 if (cpu_is_omap24xx()) {
Felipe Balbi28171422008-09-20 04:14:01 +0300316 wdev->mpu_wdt_ick = clk_get(&pdev->dev, "mpu_wdt_ick");
317 if (IS_ERR(wdev->mpu_wdt_ick)) {
318 ret = PTR_ERR(wdev->mpu_wdt_ick);
319 wdev->mpu_wdt_ick = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300320 goto err_clk;
Komal Shah7768a132006-09-29 01:59:18 -0700321 }
Felipe Balbi28171422008-09-20 04:14:01 +0300322 wdev->mpu_wdt_fck = clk_get(&pdev->dev, "mpu_wdt_fck");
323 if (IS_ERR(wdev->mpu_wdt_fck)) {
324 ret = PTR_ERR(wdev->mpu_wdt_fck);
325 wdev->mpu_wdt_fck = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300326 goto err_clk;
Komal Shah7768a132006-09-29 01:59:18 -0700327 }
328 }
329
Felipe Balbi28171422008-09-20 04:14:01 +0300330 if (cpu_is_omap34xx()) {
331 wdev->mpu_wdt_ick = clk_get(&pdev->dev, "wdt2_ick");
332 if (IS_ERR(wdev->mpu_wdt_ick)) {
333 ret = PTR_ERR(wdev->mpu_wdt_ick);
334 wdev->mpu_wdt_ick = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300335 goto err_clk;
Felipe Balbi28171422008-09-20 04:14:01 +0300336 }
337 wdev->mpu_wdt_fck = clk_get(&pdev->dev, "wdt2_fck");
338 if (IS_ERR(wdev->mpu_wdt_fck)) {
339 ret = PTR_ERR(wdev->mpu_wdt_fck);
340 wdev->mpu_wdt_fck = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300341 goto err_clk;
Felipe Balbi28171422008-09-20 04:14:01 +0300342 }
343 }
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300344 wdev->base = ioremap(res->start, res->end - res->start + 1);
345 if (!wdev->base) {
346 ret = -ENOMEM;
Felipe Balbib3112182008-09-20 04:14:03 +0300347 goto err_ioremap;
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300348 }
349
Felipe Balbi28171422008-09-20 04:14:01 +0300350 platform_set_drvdata(pdev, wdev);
351
352 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700353 omap_wdt_adjust_timeout(timer_margin);
354
Felipe Balbi28171422008-09-20 04:14:01 +0300355 wdev->omap_wdt_miscdev.parent = &pdev->dev;
356 wdev->omap_wdt_miscdev.minor = WATCHDOG_MINOR;
357 wdev->omap_wdt_miscdev.name = "watchdog";
358 wdev->omap_wdt_miscdev.fops = &omap_wdt_fops;
359
360 ret = misc_register(&(wdev->omap_wdt_miscdev));
Komal Shah7768a132006-09-29 01:59:18 -0700361 if (ret)
Felipe Balbib3112182008-09-20 04:14:03 +0300362 goto err_misc;
Komal Shah7768a132006-09-29 01:59:18 -0700363
Felipe Balbi28171422008-09-20 04:14:01 +0300364 pr_info("OMAP Watchdog Timer Rev 0x%02x: initial timeout %d sec\n",
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300365 __raw_readl(wdev->base + OMAP_WATCHDOG_REV) & 0xFF,
Felipe Balbi28171422008-09-20 04:14:01 +0300366 timer_margin);
Komal Shah7768a132006-09-29 01:59:18 -0700367
368 /* autogate OCP interface clock */
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300369 __raw_writel(0x01, wdev->base + OMAP_WATCHDOG_SYS_CONFIG);
Felipe Balbi28171422008-09-20 04:14:01 +0300370
371 omap_wdt_dev = pdev;
372
Komal Shah7768a132006-09-29 01:59:18 -0700373 return 0;
374
Felipe Balbib3112182008-09-20 04:14:03 +0300375err_misc:
376 platform_set_drvdata(pdev, NULL);
377 iounmap(wdev->base);
378
379err_ioremap:
380 wdev->base = NULL;
381
382err_clk:
383 if (wdev->armwdt_ck)
384 clk_put(wdev->armwdt_ck);
385 if (wdev->mpu_wdt_ick)
386 clk_put(wdev->mpu_wdt_ick);
387 if (wdev->mpu_wdt_fck)
388 clk_put(wdev->mpu_wdt_fck);
389 kfree(wdev);
390
391err_kzalloc:
392 release_mem_region(res->start, res->end - res->start + 1);
393
394err_busy:
395err_get_resource:
396
Komal Shah7768a132006-09-29 01:59:18 -0700397 return ret;
398}
399
400static void omap_wdt_shutdown(struct platform_device *pdev)
401{
Felipe Balbib3112182008-09-20 04:14:03 +0300402 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbi28171422008-09-20 04:14:01 +0300403
404 if (wdev->omap_wdt_users)
405 omap_wdt_disable(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700406}
407
408static int omap_wdt_remove(struct platform_device *pdev)
409{
Felipe Balbib3112182008-09-20 04:14:03 +0300410 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
Felipe Balbi28171422008-09-20 04:14:01 +0300411 struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
412
413 if (!res)
414 return -ENOENT;
415
416 misc_deregister(&(wdev->omap_wdt_miscdev));
417 release_mem_region(res->start, res->end - res->start + 1);
418 platform_set_drvdata(pdev, NULL);
Felipe Balbib3112182008-09-20 04:14:03 +0300419
Felipe Balbi28171422008-09-20 04:14:01 +0300420 if (wdev->armwdt_ck) {
421 clk_put(wdev->armwdt_ck);
422 wdev->armwdt_ck = NULL;
423 }
Felipe Balbib3112182008-09-20 04:14:03 +0300424
Felipe Balbi28171422008-09-20 04:14:01 +0300425 if (wdev->mpu_wdt_ick) {
426 clk_put(wdev->mpu_wdt_ick);
427 wdev->mpu_wdt_ick = NULL;
428 }
Felipe Balbib3112182008-09-20 04:14:03 +0300429
Felipe Balbi28171422008-09-20 04:14:01 +0300430 if (wdev->mpu_wdt_fck) {
431 clk_put(wdev->mpu_wdt_fck);
432 wdev->mpu_wdt_fck = NULL;
433 }
Felipe Balbi9f69e3b2008-09-20 04:14:02 +0300434 iounmap(wdev->base);
435
Felipe Balbi28171422008-09-20 04:14:01 +0300436 kfree(wdev);
437 omap_wdt_dev = NULL;
Felipe Balbib3112182008-09-20 04:14:03 +0300438
Komal Shah7768a132006-09-29 01:59:18 -0700439 return 0;
440}
441
442#ifdef CONFIG_PM
443
444/* REVISIT ... not clear this is the best way to handle system suspend; and
445 * it's very inappropriate for selective device suspend (e.g. suspending this
446 * through sysfs rather than by stopping the watchdog daemon). Also, this
447 * may not play well enough with NOWAYOUT...
448 */
449
450static int omap_wdt_suspend(struct platform_device *pdev, pm_message_t state)
451{
Felipe Balbib3112182008-09-20 04:14:03 +0300452 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
453
Felipe Balbi28171422008-09-20 04:14:01 +0300454 if (wdev->omap_wdt_users)
455 omap_wdt_disable(wdev);
Felipe Balbib3112182008-09-20 04:14:03 +0300456
Komal Shah7768a132006-09-29 01:59:18 -0700457 return 0;
458}
459
460static int omap_wdt_resume(struct platform_device *pdev)
461{
Felipe Balbib3112182008-09-20 04:14:03 +0300462 struct omap_wdt_dev *wdev = platform_get_drvdata(pdev);
463
Felipe Balbi28171422008-09-20 04:14:01 +0300464 if (wdev->omap_wdt_users) {
465 omap_wdt_enable(wdev);
466 omap_wdt_ping(wdev);
Komal Shah7768a132006-09-29 01:59:18 -0700467 }
Felipe Balbib3112182008-09-20 04:14:03 +0300468
Komal Shah7768a132006-09-29 01:59:18 -0700469 return 0;
470}
471
472#else
473#define omap_wdt_suspend NULL
474#define omap_wdt_resume NULL
475#endif
476
477static struct platform_driver omap_wdt_driver = {
478 .probe = omap_wdt_probe,
479 .remove = omap_wdt_remove,
480 .shutdown = omap_wdt_shutdown,
481 .suspend = omap_wdt_suspend,
482 .resume = omap_wdt_resume,
483 .driver = {
484 .owner = THIS_MODULE,
485 .name = "omap_wdt",
486 },
487};
488
489static int __init omap_wdt_init(void)
490{
Alan Cox12b9df72008-05-19 14:07:32 +0100491 spin_lock_init(&wdt_lock);
Komal Shah7768a132006-09-29 01:59:18 -0700492 return platform_driver_register(&omap_wdt_driver);
493}
494
495static void __exit omap_wdt_exit(void)
496{
497 platform_driver_unregister(&omap_wdt_driver);
498}
499
500module_init(omap_wdt_init);
501module_exit(omap_wdt_exit);
502
503MODULE_AUTHOR("George G. Davis");
504MODULE_LICENSE("GPL");
505MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR);
Kay Sieversf37d1932008-04-10 21:29:23 -0700506MODULE_ALIAS("platform:omap_wdt");