Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 1 | /* |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 2 | * omap_wdt.c |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 3 | * |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 4 | * Watchdog driver for the TI OMAP 16xx & 24xx/34xx 32KHz (non-secure) watchdog |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 5 | * |
| 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 Cox | 29fa058 | 2008-10-27 15:17:56 +0000 | [diff] [blame] | 19 | * Based on SoftDog driver by Alan Cox <alan@lxorguk.ukuu.org.uk> |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 20 | * |
| 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 Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 29 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 30 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 31 | #include <linux/module.h> |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 32 | #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 Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 39 | #include <linux/init.h> |
| 40 | #include <linux/err.h> |
| 41 | #include <linux/platform_device.h> |
| 42 | #include <linux/moduleparam.h> |
Jiri Slaby | 1977f03 | 2007-10-18 23:40:25 -0700 | [diff] [blame] | 43 | #include <linux/bitops.h> |
Wim Van Sebroeck | 089ab07 | 2008-07-15 11:46:11 +0000 | [diff] [blame] | 44 | #include <linux/io.h> |
Alan Cox | 12b9df7 | 2008-05-19 14:07:32 +0100 | [diff] [blame] | 45 | #include <linux/uaccess.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 46 | #include <linux/slab.h> |
Varadarajan, Charulatha | 7ec5ad0 | 2010-09-23 20:02:43 +0530 | [diff] [blame] | 47 | #include <linux/pm_runtime.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 48 | #include <mach/hardware.h> |
Tony Lindgren | ce491cf | 2009-10-20 09:40:47 -0700 | [diff] [blame] | 49 | #include <plat/prcm.h> |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 50 | |
| 51 | #include "omap_wdt.h" |
| 52 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 53 | static struct platform_device *omap_wdt_dev; |
| 54 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 55 | static unsigned timer_margin; |
| 56 | module_param(timer_margin, uint, 0); |
| 57 | MODULE_PARM_DESC(timer_margin, "initial watchdog timeout (in seconds)"); |
| 58 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 59 | static unsigned int wdt_trgr_pattern = 0x1234; |
Axel Lin | 1334f32 | 2011-11-29 13:54:01 +0800 | [diff] [blame] | 60 | static DEFINE_SPINLOCK(wdt_lock); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 61 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 62 | struct omap_wdt_dev { |
| 63 | void __iomem *base; /* physical */ |
| 64 | struct device *dev; |
| 65 | int omap_wdt_users; |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 66 | struct resource *mem; |
| 67 | struct miscdevice omap_wdt_miscdev; |
| 68 | }; |
| 69 | |
| 70 | static void omap_wdt_ping(struct omap_wdt_dev *wdev) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 71 | { |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 72 | void __iomem *base = wdev->base; |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 73 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 74 | /* wait for posted write to complete */ |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 75 | while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x08) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 76 | cpu_relax(); |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 77 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 78 | wdt_trgr_pattern = ~wdt_trgr_pattern; |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 79 | __raw_writel(wdt_trgr_pattern, (base + OMAP_WATCHDOG_TGR)); |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 80 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 81 | /* wait for posted write to complete */ |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 82 | while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x08) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 83 | cpu_relax(); |
| 84 | /* reloaded WCRR from WLDR */ |
| 85 | } |
| 86 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 87 | static void omap_wdt_enable(struct omap_wdt_dev *wdev) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 88 | { |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 89 | void __iomem *base = wdev->base; |
| 90 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 91 | /* Sequence to enable the watchdog */ |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 92 | __raw_writel(0xBBBB, base + OMAP_WATCHDOG_SPR); |
| 93 | while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x10) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 94 | cpu_relax(); |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 95 | |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 96 | __raw_writel(0x4444, base + OMAP_WATCHDOG_SPR); |
| 97 | while ((__raw_readl(base + OMAP_WATCHDOG_WPS)) & 0x10) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 98 | cpu_relax(); |
| 99 | } |
| 100 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 101 | static void omap_wdt_disable(struct omap_wdt_dev *wdev) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 102 | { |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 103 | void __iomem *base = wdev->base; |
| 104 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 105 | /* sequence required to disable watchdog */ |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 106 | __raw_writel(0xAAAA, base + OMAP_WATCHDOG_SPR); /* TIMER_MODE */ |
| 107 | while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x10) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 108 | cpu_relax(); |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 109 | |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 110 | __raw_writel(0x5555, base + OMAP_WATCHDOG_SPR); /* TIMER_MODE */ |
| 111 | while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x10) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 112 | cpu_relax(); |
| 113 | } |
| 114 | |
| 115 | static 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 Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 124 | static void omap_wdt_set_timeout(struct omap_wdt_dev *wdev) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 125 | { |
| 126 | u32 pre_margin = GET_WLDR_VAL(timer_margin); |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 127 | void __iomem *base = wdev->base; |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 128 | |
| 129 | /* just count up at 32 KHz */ |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 130 | while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x04) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 131 | cpu_relax(); |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 132 | |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 133 | __raw_writel(pre_margin, base + OMAP_WATCHDOG_LDR); |
| 134 | while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x04) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 135 | cpu_relax(); |
| 136 | } |
| 137 | |
| 138 | /* |
| 139 | * Allow only one task to hold it open |
| 140 | */ |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 141 | static int omap_wdt_open(struct inode *inode, struct file *file) |
| 142 | { |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 143 | struct omap_wdt_dev *wdev = platform_get_drvdata(omap_wdt_dev); |
| 144 | void __iomem *base = wdev->base; |
| 145 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 146 | if (test_and_set_bit(1, (unsigned long *)&(wdev->omap_wdt_users))) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 147 | return -EBUSY; |
| 148 | |
Varadarajan, Charulatha | 7ec5ad0 | 2010-09-23 20:02:43 +0530 | [diff] [blame] | 149 | pm_runtime_get_sync(wdev->dev); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 150 | |
| 151 | /* initialize prescaler */ |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 152 | while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x01) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 153 | cpu_relax(); |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 154 | |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 155 | __raw_writel((1 << 5) | (PTV << 2), base + OMAP_WATCHDOG_CNTRL); |
| 156 | while (__raw_readl(base + OMAP_WATCHDOG_WPS) & 0x01) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 157 | cpu_relax(); |
| 158 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 159 | file->private_data = (void *) wdev; |
| 160 | |
| 161 | omap_wdt_set_timeout(wdev); |
Ulrik Bech Hald | 789cd47 | 2009-06-12 16:18:32 -0500 | [diff] [blame] | 162 | omap_wdt_ping(wdev); /* trigger loading of new timeout value */ |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 163 | omap_wdt_enable(wdev); |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 164 | |
Wim Van Sebroeck | ec9505a | 2007-07-20 20:41:37 +0000 | [diff] [blame] | 165 | return nonseekable_open(inode, file); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 166 | } |
| 167 | |
| 168 | static int omap_wdt_release(struct inode *inode, struct file *file) |
| 169 | { |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 170 | struct omap_wdt_dev *wdev = file->private_data; |
| 171 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 172 | /* |
| 173 | * Shut off the timer unless NOWAYOUT is defined. |
| 174 | */ |
| 175 | #ifndef CONFIG_WATCHDOG_NOWAYOUT |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 176 | omap_wdt_disable(wdev); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 177 | |
Varadarajan, Charulatha | 7ec5ad0 | 2010-09-23 20:02:43 +0530 | [diff] [blame] | 178 | pm_runtime_put_sync(wdev->dev); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 179 | #else |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 180 | pr_crit("Unexpected close, not stopping!\n"); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 181 | #endif |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 182 | wdev->omap_wdt_users = 0; |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 183 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 184 | return 0; |
| 185 | } |
| 186 | |
Alan Cox | 12b9df7 | 2008-05-19 14:07:32 +0100 | [diff] [blame] | 187 | static ssize_t omap_wdt_write(struct file *file, const char __user *data, |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 188 | size_t len, loff_t *ppos) |
| 189 | { |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 190 | struct omap_wdt_dev *wdev = file->private_data; |
| 191 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 192 | /* Refresh LOAD_TIME. */ |
Alan Cox | 12b9df7 | 2008-05-19 14:07:32 +0100 | [diff] [blame] | 193 | if (len) { |
| 194 | spin_lock(&wdt_lock); |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 195 | omap_wdt_ping(wdev); |
Alan Cox | 12b9df7 | 2008-05-19 14:07:32 +0100 | [diff] [blame] | 196 | spin_unlock(&wdt_lock); |
| 197 | } |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 198 | return len; |
| 199 | } |
| 200 | |
Alan Cox | 12b9df7 | 2008-05-19 14:07:32 +0100 | [diff] [blame] | 201 | static long omap_wdt_ioctl(struct file *file, unsigned int cmd, |
| 202 | unsigned long arg) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 203 | { |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 204 | struct omap_wdt_dev *wdev; |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 205 | int new_margin; |
Alan Cox | 12b9df7 | 2008-05-19 14:07:32 +0100 | [diff] [blame] | 206 | static const struct watchdog_info ident = { |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 207 | .identity = "OMAP Watchdog", |
| 208 | .options = WDIOF_SETTIMEOUT, |
| 209 | .firmware_version = 0, |
| 210 | }; |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 211 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 212 | wdev = file->private_data; |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 213 | |
| 214 | switch (cmd) { |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 215 | 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 Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 222 | return put_user(__raw_readw(ARM_SYSST), |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 223 | (int __user *)arg); |
| 224 | if (cpu_is_omap24xx()) |
| 225 | return put_user(omap_prcm_get_reset_sources(), |
| 226 | (int __user *)arg); |
Shubhrajyoti D | e2bf7c4 | 2012-01-04 19:45:28 +0530 | [diff] [blame] | 227 | return put_user(0, (int __user *)arg); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 228 | case WDIOC_KEEPALIVE: |
Alan Cox | 12b9df7 | 2008-05-19 14:07:32 +0100 | [diff] [blame] | 229 | spin_lock(&wdt_lock); |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 230 | omap_wdt_ping(wdev); |
Alan Cox | 12b9df7 | 2008-05-19 14:07:32 +0100 | [diff] [blame] | 231 | spin_unlock(&wdt_lock); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 232 | 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 Cox | 12b9df7 | 2008-05-19 14:07:32 +0100 | [diff] [blame] | 238 | spin_lock(&wdt_lock); |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 239 | omap_wdt_disable(wdev); |
| 240 | omap_wdt_set_timeout(wdev); |
| 241 | omap_wdt_enable(wdev); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 242 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 243 | omap_wdt_ping(wdev); |
Alan Cox | 12b9df7 | 2008-05-19 14:07:32 +0100 | [diff] [blame] | 244 | spin_unlock(&wdt_lock); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 245 | /* Fall */ |
| 246 | case WDIOC_GETTIMEOUT: |
| 247 | return put_user(timer_margin, (int __user *)arg); |
Wim Van Sebroeck | 0c06090 | 2008-07-18 11:41:17 +0000 | [diff] [blame] | 248 | default: |
| 249 | return -ENOTTY; |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 250 | } |
| 251 | } |
| 252 | |
Arjan van de Ven | 2b8693c | 2007-02-12 00:55:32 -0800 | [diff] [blame] | 253 | static const struct file_operations omap_wdt_fops = { |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 254 | .owner = THIS_MODULE, |
| 255 | .write = omap_wdt_write, |
Alan Cox | 12b9df7 | 2008-05-19 14:07:32 +0100 | [diff] [blame] | 256 | .unlocked_ioctl = omap_wdt_ioctl, |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 257 | .open = omap_wdt_open, |
| 258 | .release = omap_wdt_release, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 259 | .llseek = no_llseek, |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 260 | }; |
| 261 | |
Uwe Kleine-König | 0e3912c | 2009-03-28 00:26:56 +0100 | [diff] [blame] | 262 | static int __devinit omap_wdt_probe(struct platform_device *pdev) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 263 | { |
| 264 | struct resource *res, *mem; |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 265 | struct omap_wdt_dev *wdev; |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 266 | int ret; |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 267 | |
| 268 | /* reserve static register mappings */ |
| 269 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 270 | if (!res) { |
| 271 | ret = -ENOENT; |
| 272 | goto err_get_resource; |
| 273 | } |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 274 | |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 275 | if (omap_wdt_dev) { |
| 276 | ret = -EBUSY; |
| 277 | goto err_busy; |
| 278 | } |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 279 | |
H Hartley Sweeten | b782a56 | 2009-12-04 12:24:04 -0500 | [diff] [blame] | 280 | mem = request_mem_region(res->start, resource_size(res), pdev->name); |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 281 | if (!mem) { |
| 282 | ret = -EBUSY; |
| 283 | goto err_busy; |
| 284 | } |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 285 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 286 | wdev = kzalloc(sizeof(struct omap_wdt_dev), GFP_KERNEL); |
| 287 | if (!wdev) { |
| 288 | ret = -ENOMEM; |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 289 | goto err_kzalloc; |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 290 | } |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 291 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 292 | wdev->omap_wdt_users = 0; |
| 293 | wdev->mem = mem; |
Varadarajan, Charulatha | 7ec5ad0 | 2010-09-23 20:02:43 +0530 | [diff] [blame] | 294 | wdev->dev = &pdev->dev; |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 295 | |
H Hartley Sweeten | b782a56 | 2009-12-04 12:24:04 -0500 | [diff] [blame] | 296 | wdev->base = ioremap(res->start, resource_size(res)); |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 297 | if (!wdev->base) { |
| 298 | ret = -ENOMEM; |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 299 | goto err_ioremap; |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 300 | } |
| 301 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 302 | platform_set_drvdata(pdev, wdev); |
| 303 | |
Varadarajan, Charulatha | 7ec5ad0 | 2010-09-23 20:02:43 +0530 | [diff] [blame] | 304 | pm_runtime_enable(wdev->dev); |
| 305 | pm_runtime_get_sync(wdev->dev); |
Ulrik Bech Hald | 789cd47 | 2009-06-12 16:18:32 -0500 | [diff] [blame] | 306 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 307 | omap_wdt_disable(wdev); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 308 | omap_wdt_adjust_timeout(timer_margin); |
| 309 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 310 | 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 Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 316 | if (ret) |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 317 | goto err_misc; |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 318 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 319 | pr_info("OMAP Watchdog Timer Rev 0x%02x: initial timeout %d sec\n", |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 320 | __raw_readl(wdev->base + OMAP_WATCHDOG_REV) & 0xFF, |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 321 | timer_margin); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 322 | |
Varadarajan, Charulatha | 7ec5ad0 | 2010-09-23 20:02:43 +0530 | [diff] [blame] | 323 | pm_runtime_put_sync(wdev->dev); |
Ulrik Bech Hald | 789cd47 | 2009-06-12 16:18:32 -0500 | [diff] [blame] | 324 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 325 | omap_wdt_dev = pdev; |
| 326 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 327 | return 0; |
| 328 | |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 329 | err_misc: |
Shubhrajyoti D | 12c583d | 2012-01-11 19:50:18 +0530 | [diff] [blame] | 330 | pm_runtime_disable(wdev->dev); |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 331 | platform_set_drvdata(pdev, NULL); |
| 332 | iounmap(wdev->base); |
| 333 | |
| 334 | err_ioremap: |
| 335 | wdev->base = NULL; |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 336 | kfree(wdev); |
| 337 | |
| 338 | err_kzalloc: |
H Hartley Sweeten | b782a56 | 2009-12-04 12:24:04 -0500 | [diff] [blame] | 339 | release_mem_region(res->start, resource_size(res)); |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 340 | |
| 341 | err_busy: |
| 342 | err_get_resource: |
| 343 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 344 | return ret; |
| 345 | } |
| 346 | |
| 347 | static void omap_wdt_shutdown(struct platform_device *pdev) |
| 348 | { |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 349 | struct omap_wdt_dev *wdev = platform_get_drvdata(pdev); |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 350 | |
Paul Walmsley | 0503add | 2011-03-10 22:40:05 -0700 | [diff] [blame] | 351 | if (wdev->omap_wdt_users) { |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 352 | omap_wdt_disable(wdev); |
Paul Walmsley | 0503add | 2011-03-10 22:40:05 -0700 | [diff] [blame] | 353 | pm_runtime_put_sync(wdev->dev); |
| 354 | } |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Uwe Kleine-König | 0e3912c | 2009-03-28 00:26:56 +0100 | [diff] [blame] | 357 | static int __devexit omap_wdt_remove(struct platform_device *pdev) |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 358 | { |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 359 | struct omap_wdt_dev *wdev = platform_get_drvdata(pdev); |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 360 | struct resource *res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 361 | |
Shubhrajyoti D | 12c583d | 2012-01-11 19:50:18 +0530 | [diff] [blame] | 362 | pm_runtime_disable(wdev->dev); |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 363 | if (!res) |
| 364 | return -ENOENT; |
| 365 | |
| 366 | misc_deregister(&(wdev->omap_wdt_miscdev)); |
H Hartley Sweeten | b782a56 | 2009-12-04 12:24:04 -0500 | [diff] [blame] | 367 | release_mem_region(res->start, resource_size(res)); |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 368 | platform_set_drvdata(pdev, NULL); |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 369 | |
Felipe Balbi | 9f69e3b | 2008-09-20 04:14:02 +0300 | [diff] [blame] | 370 | iounmap(wdev->base); |
| 371 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 372 | kfree(wdev); |
| 373 | omap_wdt_dev = NULL; |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 374 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 375 | 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 | |
| 386 | static int omap_wdt_suspend(struct platform_device *pdev, pm_message_t state) |
| 387 | { |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 388 | struct omap_wdt_dev *wdev = platform_get_drvdata(pdev); |
| 389 | |
Paul Walmsley | 0503add | 2011-03-10 22:40:05 -0700 | [diff] [blame] | 390 | if (wdev->omap_wdt_users) { |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 391 | omap_wdt_disable(wdev); |
Paul Walmsley | 0503add | 2011-03-10 22:40:05 -0700 | [diff] [blame] | 392 | pm_runtime_put_sync(wdev->dev); |
| 393 | } |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 394 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 395 | return 0; |
| 396 | } |
| 397 | |
| 398 | static int omap_wdt_resume(struct platform_device *pdev) |
| 399 | { |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 400 | struct omap_wdt_dev *wdev = platform_get_drvdata(pdev); |
| 401 | |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 402 | if (wdev->omap_wdt_users) { |
Paul Walmsley | 0503add | 2011-03-10 22:40:05 -0700 | [diff] [blame] | 403 | pm_runtime_get_sync(wdev->dev); |
Felipe Balbi | 2817142 | 2008-09-20 04:14:01 +0300 | [diff] [blame] | 404 | omap_wdt_enable(wdev); |
| 405 | omap_wdt_ping(wdev); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 406 | } |
Felipe Balbi | b311218 | 2008-09-20 04:14:03 +0300 | [diff] [blame] | 407 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 408 | return 0; |
| 409 | } |
| 410 | |
| 411 | #else |
| 412 | #define omap_wdt_suspend NULL |
| 413 | #define omap_wdt_resume NULL |
| 414 | #endif |
| 415 | |
Xiao Jiang | e6ca04e | 2012-06-01 12:44:16 +0800 | [diff] [blame] | 416 | static const struct of_device_id omap_wdt_of_match[] = { |
| 417 | { .compatible = "ti,omap3-wdt", }, |
| 418 | {}, |
| 419 | }; |
| 420 | MODULE_DEVICE_TABLE(of, omap_wdt_of_match); |
| 421 | |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 422 | static struct platform_driver omap_wdt_driver = { |
| 423 | .probe = omap_wdt_probe, |
Uwe Kleine-König | 0e3912c | 2009-03-28 00:26:56 +0100 | [diff] [blame] | 424 | .remove = __devexit_p(omap_wdt_remove), |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 425 | .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 Jiang | e6ca04e | 2012-06-01 12:44:16 +0800 | [diff] [blame] | 431 | .of_match_table = omap_wdt_of_match, |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 432 | }, |
| 433 | }; |
| 434 | |
Axel Lin | b8ec611 | 2011-11-29 13:56:27 +0800 | [diff] [blame] | 435 | module_platform_driver(omap_wdt_driver); |
Komal Shah | 7768a13 | 2006-09-29 01:59:18 -0700 | [diff] [blame] | 436 | |
| 437 | MODULE_AUTHOR("George G. Davis"); |
| 438 | MODULE_LICENSE("GPL"); |
| 439 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); |
Kay Sievers | f37d193 | 2008-04-10 21:29:23 -0700 | [diff] [blame] | 440 | MODULE_ALIAS("platform:omap_wdt"); |