Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* linux/drivers/char/watchdog/s3c2410_wdt.c |
| 2 | * |
| 3 | * Copyright (c) 2004 Simtec Electronics |
| 4 | * Ben Dooks <ben@simtec.co.uk> |
| 5 | * |
| 6 | * S3C2410 Watchdog Timer Support |
| 7 | * |
| 8 | * Based on, softdog.c by Alan Cox, |
Alan Cox | 29fa058 | 2008-10-27 15:17:56 +0000 | [diff] [blame] | 9 | * (c) Copyright 1996 Alan Cox <alan@lxorguk.ukuu.org.uk> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | * |
| 11 | * This program is free software; you can redistribute it and/or modify |
| 12 | * it under the terms of the GNU General Public License as published by |
| 13 | * the Free Software Foundation; either version 2 of the License, or |
| 14 | * (at your option) any later version. |
| 15 | * |
| 16 | * This program is distributed in the hope that it will be useful, |
| 17 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 18 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 19 | * GNU General Public License for more details. |
| 20 | * |
| 21 | * You should have received a copy of the GNU General Public License |
| 22 | * along with this program; if not, write to the Free Software |
| 23 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | */ |
| 25 | |
| 26 | #include <linux/module.h> |
| 27 | #include <linux/moduleparam.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 28 | #include <linux/types.h> |
| 29 | #include <linux/timer.h> |
| 30 | #include <linux/miscdevice.h> |
| 31 | #include <linux/watchdog.h> |
| 32 | #include <linux/fs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <linux/init.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 34 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | #include <linux/interrupt.h> |
Russell King | f8ce254 | 2006-01-07 16:15:52 +0000 | [diff] [blame] | 36 | #include <linux/clk.h> |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 37 | #include <linux/uaccess.h> |
| 38 | #include <linux/io.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 39 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 40 | #include <mach/map.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Ben Dooks | b430708 | 2007-07-24 13:28:01 +0100 | [diff] [blame] | 42 | #undef S3C_VA_WATCHDOG |
| 43 | #define S3C_VA_WATCHDOG (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | |
Ben Dooks | 180ee70 | 2008-10-30 10:14:32 +0000 | [diff] [blame] | 45 | #include <plat/regs-watchdog.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | #define PFX "s3c2410-wdt: " |
| 48 | |
| 49 | #define CONFIG_S3C2410_WATCHDOG_ATBOOT (0) |
| 50 | #define CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME (15) |
| 51 | |
Ben Dooks | 25ff378 | 2006-09-06 12:24:35 +0100 | [diff] [blame] | 52 | static int nowayout = WATCHDOG_NOWAYOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | static int tmr_margin = CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME; |
| 54 | static int tmr_atboot = CONFIG_S3C2410_WATCHDOG_ATBOOT; |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 55 | static int soft_noboot; |
| 56 | static int debug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 57 | |
| 58 | module_param(tmr_margin, int, 0); |
| 59 | module_param(tmr_atboot, int, 0); |
| 60 | module_param(nowayout, int, 0); |
| 61 | module_param(soft_noboot, int, 0); |
| 62 | module_param(debug, int, 0); |
| 63 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 64 | MODULE_PARM_DESC(tmr_margin, "Watchdog tmr_margin in seconds. default=" |
| 65 | __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME) ")"); |
| 66 | MODULE_PARM_DESC(tmr_atboot, |
| 67 | "Watchdog is started at boot time if set to 1, default=" |
| 68 | __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_ATBOOT)); |
| 69 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" |
| 70 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | MODULE_PARM_DESC(soft_noboot, "Watchdog action, set to 1 to ignore reboots, 0 to reboot (default depends on ONLY_TESTING)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 72 | MODULE_PARM_DESC(debug, "Watchdog debug, set to >1 for debug, (default 0)"); |
| 73 | |
| 74 | |
| 75 | typedef enum close_state { |
| 76 | CLOSE_STATE_NOT, |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 77 | CLOSE_STATE_ALLOW = 0x4021 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | } close_state_t; |
| 79 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 80 | static unsigned long open_lock; |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 81 | static struct device *wdt_dev; /* platform device attached to */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 82 | static struct resource *wdt_mem; |
| 83 | static struct resource *wdt_irq; |
| 84 | static struct clk *wdt_clock; |
| 85 | static void __iomem *wdt_base; |
| 86 | static unsigned int wdt_count; |
| 87 | static close_state_t allow_close; |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 88 | static DEFINE_SPINLOCK(wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | /* watchdog control routines */ |
| 91 | |
| 92 | #define DBG(msg...) do { \ |
| 93 | if (debug) \ |
| 94 | printk(KERN_INFO msg); \ |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 95 | } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 96 | |
| 97 | /* functions */ |
| 98 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 99 | static void s3c2410wdt_keepalive(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | { |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 101 | spin_lock(&wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | writel(wdt_count, wdt_base + S3C2410_WTCNT); |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 103 | spin_unlock(&wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 104 | } |
| 105 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 106 | static void __s3c2410wdt_stop(void) |
| 107 | { |
| 108 | unsigned long wtcon; |
| 109 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | wtcon = readl(wdt_base + S3C2410_WTCON); |
| 111 | wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN); |
| 112 | writel(wtcon, wdt_base + S3C2410_WTCON); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 113 | } |
| 114 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 115 | static void s3c2410wdt_stop(void) |
| 116 | { |
| 117 | spin_lock(&wdt_lock); |
| 118 | __s3c2410wdt_stop(); |
| 119 | spin_unlock(&wdt_lock); |
| 120 | } |
| 121 | |
| 122 | static void s3c2410wdt_start(void) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | { |
| 124 | unsigned long wtcon; |
| 125 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 126 | spin_lock(&wdt_lock); |
| 127 | |
| 128 | __s3c2410wdt_stop(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | |
| 130 | wtcon = readl(wdt_base + S3C2410_WTCON); |
| 131 | wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128; |
| 132 | |
| 133 | if (soft_noboot) { |
| 134 | wtcon |= S3C2410_WTCON_INTEN; |
| 135 | wtcon &= ~S3C2410_WTCON_RSTEN; |
| 136 | } else { |
| 137 | wtcon &= ~S3C2410_WTCON_INTEN; |
| 138 | wtcon |= S3C2410_WTCON_RSTEN; |
| 139 | } |
| 140 | |
| 141 | DBG("%s: wdt_count=0x%08x, wtcon=%08lx\n", |
Harvey Harrison | fa9363c | 2008-03-05 18:24:58 -0800 | [diff] [blame] | 142 | __func__, wdt_count, wtcon); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 143 | |
| 144 | writel(wdt_count, wdt_base + S3C2410_WTDAT); |
| 145 | writel(wdt_count, wdt_base + S3C2410_WTCNT); |
| 146 | writel(wtcon, wdt_base + S3C2410_WTCON); |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 147 | spin_unlock(&wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 148 | } |
| 149 | |
| 150 | static int s3c2410wdt_set_heartbeat(int timeout) |
| 151 | { |
| 152 | unsigned int freq = clk_get_rate(wdt_clock); |
| 153 | unsigned int count; |
| 154 | unsigned int divisor = 1; |
| 155 | unsigned long wtcon; |
| 156 | |
| 157 | if (timeout < 1) |
| 158 | return -EINVAL; |
| 159 | |
| 160 | freq /= 128; |
| 161 | count = timeout * freq; |
| 162 | |
| 163 | DBG("%s: count=%d, timeout=%d, freq=%d\n", |
Harvey Harrison | fa9363c | 2008-03-05 18:24:58 -0800 | [diff] [blame] | 164 | __func__, count, timeout, freq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | |
| 166 | /* if the count is bigger than the watchdog register, |
| 167 | then work out what we need to do (and if) we can |
| 168 | actually make this value |
| 169 | */ |
| 170 | |
| 171 | if (count >= 0x10000) { |
| 172 | for (divisor = 1; divisor <= 0x100; divisor++) { |
| 173 | if ((count / divisor) < 0x10000) |
| 174 | break; |
| 175 | } |
| 176 | |
| 177 | if ((count / divisor) >= 0x10000) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 178 | dev_err(wdt_dev, "timeout %d too big\n", timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | return -EINVAL; |
| 180 | } |
| 181 | } |
| 182 | |
| 183 | tmr_margin = timeout; |
| 184 | |
| 185 | DBG("%s: timeout=%d, divisor=%d, count=%d (%08x)\n", |
Harvey Harrison | fa9363c | 2008-03-05 18:24:58 -0800 | [diff] [blame] | 186 | __func__, timeout, divisor, count, count/divisor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 187 | |
| 188 | count /= divisor; |
| 189 | wdt_count = count; |
| 190 | |
| 191 | /* update the pre-scaler */ |
| 192 | wtcon = readl(wdt_base + S3C2410_WTCON); |
| 193 | wtcon &= ~S3C2410_WTCON_PRESCALE_MASK; |
| 194 | wtcon |= S3C2410_WTCON_PRESCALE(divisor-1); |
| 195 | |
| 196 | writel(count, wdt_base + S3C2410_WTDAT); |
| 197 | writel(wtcon, wdt_base + S3C2410_WTCON); |
| 198 | |
| 199 | return 0; |
| 200 | } |
| 201 | |
| 202 | /* |
| 203 | * /dev/watchdog handling |
| 204 | */ |
| 205 | |
| 206 | static int s3c2410wdt_open(struct inode *inode, struct file *file) |
| 207 | { |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 208 | if (test_and_set_bit(0, &open_lock)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | return -EBUSY; |
| 210 | |
Ben Dooks | 25ff378 | 2006-09-06 12:24:35 +0100 | [diff] [blame] | 211 | if (nowayout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 212 | __module_get(THIS_MODULE); |
Ben Dooks | 25ff378 | 2006-09-06 12:24:35 +0100 | [diff] [blame] | 213 | |
| 214 | allow_close = CLOSE_STATE_NOT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 215 | |
| 216 | /* start the timer */ |
| 217 | s3c2410wdt_start(); |
| 218 | return nonseekable_open(inode, file); |
| 219 | } |
| 220 | |
| 221 | static int s3c2410wdt_release(struct inode *inode, struct file *file) |
| 222 | { |
| 223 | /* |
| 224 | * Shut off the timer. |
| 225 | * Lock it in if it's a module and we set nowayout |
| 226 | */ |
Ben Dooks | 25ff378 | 2006-09-06 12:24:35 +0100 | [diff] [blame] | 227 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 228 | if (allow_close == CLOSE_STATE_ALLOW) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 229 | s3c2410wdt_stop(); |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 230 | else { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 231 | dev_err(wdt_dev, "Unexpected close, not stopping watchdog\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | s3c2410wdt_keepalive(); |
| 233 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | allow_close = CLOSE_STATE_NOT; |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 235 | clear_bit(0, &open_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | return 0; |
| 237 | } |
| 238 | |
| 239 | static ssize_t s3c2410wdt_write(struct file *file, const char __user *data, |
| 240 | size_t len, loff_t *ppos) |
| 241 | { |
| 242 | /* |
| 243 | * Refresh the timer. |
| 244 | */ |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 245 | if (len) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 246 | if (!nowayout) { |
| 247 | size_t i; |
| 248 | |
| 249 | /* In case it was set long ago */ |
| 250 | allow_close = CLOSE_STATE_NOT; |
| 251 | |
| 252 | for (i = 0; i != len; i++) { |
| 253 | char c; |
| 254 | |
| 255 | if (get_user(c, data + i)) |
| 256 | return -EFAULT; |
| 257 | if (c == 'V') |
| 258 | allow_close = CLOSE_STATE_ALLOW; |
| 259 | } |
| 260 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | s3c2410wdt_keepalive(); |
| 262 | } |
| 263 | return len; |
| 264 | } |
| 265 | |
| 266 | #define OPTIONS WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE |
| 267 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 268 | static const struct watchdog_info s3c2410_wdt_ident = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 269 | .options = OPTIONS, |
| 270 | .firmware_version = 0, |
| 271 | .identity = "S3C2410 Watchdog", |
| 272 | }; |
| 273 | |
| 274 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 275 | static long s3c2410wdt_ioctl(struct file *file, unsigned int cmd, |
| 276 | unsigned long arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 277 | { |
| 278 | void __user *argp = (void __user *)arg; |
| 279 | int __user *p = argp; |
| 280 | int new_margin; |
| 281 | |
| 282 | switch (cmd) { |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 283 | case WDIOC_GETSUPPORT: |
| 284 | return copy_to_user(argp, &s3c2410_wdt_ident, |
| 285 | sizeof(s3c2410_wdt_ident)) ? -EFAULT : 0; |
| 286 | case WDIOC_GETSTATUS: |
| 287 | case WDIOC_GETBOOTSTATUS: |
| 288 | return put_user(0, p); |
| 289 | case WDIOC_KEEPALIVE: |
| 290 | s3c2410wdt_keepalive(); |
| 291 | return 0; |
| 292 | case WDIOC_SETTIMEOUT: |
| 293 | if (get_user(new_margin, p)) |
| 294 | return -EFAULT; |
| 295 | if (s3c2410wdt_set_heartbeat(new_margin)) |
| 296 | return -EINVAL; |
| 297 | s3c2410wdt_keepalive(); |
| 298 | return put_user(tmr_margin, p); |
| 299 | case WDIOC_GETTIMEOUT: |
| 300 | return put_user(tmr_margin, p); |
Wim Van Sebroeck | 0c06090 | 2008-07-18 11:41:17 +0000 | [diff] [blame] | 301 | default: |
| 302 | return -ENOTTY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | } |
| 304 | } |
| 305 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | /* kernel interface */ |
| 307 | |
Arjan van de Ven | 62322d2 | 2006-07-03 00:24:21 -0700 | [diff] [blame] | 308 | static const struct file_operations s3c2410wdt_fops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 309 | .owner = THIS_MODULE, |
| 310 | .llseek = no_llseek, |
| 311 | .write = s3c2410wdt_write, |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 312 | .unlocked_ioctl = s3c2410wdt_ioctl, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 313 | .open = s3c2410wdt_open, |
| 314 | .release = s3c2410wdt_release, |
| 315 | }; |
| 316 | |
| 317 | static struct miscdevice s3c2410wdt_miscdev = { |
| 318 | .minor = WATCHDOG_MINOR, |
| 319 | .name = "watchdog", |
| 320 | .fops = &s3c2410wdt_fops, |
| 321 | }; |
| 322 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | /* interrupt handler code */ |
| 324 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 325 | static irqreturn_t s3c2410wdt_irq(int irqno, void *param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 326 | { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 327 | dev_info(wdt_dev, "watchdog timer expired (irq)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | |
| 329 | s3c2410wdt_keepalive(); |
| 330 | return IRQ_HANDLED; |
| 331 | } |
| 332 | /* device interface */ |
| 333 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 334 | static int s3c2410wdt_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 336 | struct resource *res; |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 337 | struct device *dev; |
Ben Dooks | 46b814d | 2007-06-14 12:08:54 +0100 | [diff] [blame] | 338 | unsigned int wtcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 339 | int started = 0; |
| 340 | int ret; |
| 341 | int size; |
| 342 | |
Harvey Harrison | fa9363c | 2008-03-05 18:24:58 -0800 | [diff] [blame] | 343 | DBG("%s: probe=%p\n", __func__, pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 344 | |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 345 | dev = &pdev->dev; |
| 346 | wdt_dev = &pdev->dev; |
| 347 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | /* get the memory region for the watchdog timer */ |
| 349 | |
| 350 | res = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 351 | if (res == NULL) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 352 | dev_err(dev, "no memory resource specified\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | return -ENOENT; |
| 354 | } |
| 355 | |
Ben Dooks | 0e65fb2 | 2008-06-22 22:36:51 +0100 | [diff] [blame] | 356 | size = (res->end - res->start) + 1; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | wdt_mem = request_mem_region(res->start, size, pdev->name); |
| 358 | if (wdt_mem == NULL) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 359 | dev_err(dev, "failed to get memory region\n"); |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 360 | ret = -ENOENT; |
| 361 | goto err_req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | } |
| 363 | |
| 364 | wdt_base = ioremap(res->start, size); |
Ben Dooks | b4253f8 | 2008-06-22 22:36:49 +0100 | [diff] [blame] | 365 | if (wdt_base == NULL) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 366 | dev_err(dev, "failed to ioremap() region\n"); |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 367 | ret = -EINVAL; |
| 368 | goto err_req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | } |
| 370 | |
| 371 | DBG("probe: mapped wdt_base=%p\n", wdt_base); |
| 372 | |
Arnaud Patard | 62be0741 | 2007-05-05 15:53:15 +0200 | [diff] [blame] | 373 | wdt_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
| 374 | if (wdt_irq == NULL) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 375 | dev_err(dev, "no irq resource specified\n"); |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 376 | ret = -ENOENT; |
| 377 | goto err_map; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | } |
| 379 | |
Arnaud Patard | 62be0741 | 2007-05-05 15:53:15 +0200 | [diff] [blame] | 380 | ret = request_irq(wdt_irq->start, s3c2410wdt_irq, 0, pdev->name, pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 381 | if (ret != 0) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 382 | dev_err(dev, "failed to install irq (%d)\n", ret); |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 383 | goto err_map; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | } |
| 385 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 386 | wdt_clock = clk_get(&pdev->dev, "watchdog"); |
Akinobu Mita | 9cd4461 | 2006-12-19 17:51:44 +0900 | [diff] [blame] | 387 | if (IS_ERR(wdt_clock)) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 388 | dev_err(dev, "failed to find watchdog clock source\n"); |
Akinobu Mita | 9cd4461 | 2006-12-19 17:51:44 +0900 | [diff] [blame] | 389 | ret = PTR_ERR(wdt_clock); |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 390 | goto err_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | } |
| 392 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 393 | clk_enable(wdt_clock); |
| 394 | |
| 395 | /* see if we can actually set the requested timer margin, and if |
| 396 | * not, try the default value */ |
| 397 | |
| 398 | if (s3c2410wdt_set_heartbeat(tmr_margin)) { |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 399 | started = s3c2410wdt_set_heartbeat( |
| 400 | CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 401 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 402 | if (started == 0) |
| 403 | dev_info(dev, |
| 404 | "tmr_margin value out of range, default %d used\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME); |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 406 | else |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 407 | dev_info(dev, "default timer value is out of range, cannot start\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | } |
| 409 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 410 | ret = misc_register(&s3c2410wdt_miscdev); |
| 411 | if (ret) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 412 | dev_err(dev, "cannot register miscdev on minor=%d (%d)\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 413 | WATCHDOG_MINOR, ret); |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 414 | goto err_clk; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | } |
| 416 | |
| 417 | if (tmr_atboot && started == 0) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 418 | dev_info(dev, "starting watchdog timer\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 419 | s3c2410wdt_start(); |
Ben Dooks | 655516c | 2006-04-19 23:02:56 +0100 | [diff] [blame] | 420 | } else if (!tmr_atboot) { |
| 421 | /* if we're not enabling the watchdog, then ensure it is |
| 422 | * disabled if it has been left running from the bootloader |
| 423 | * or other source */ |
| 424 | |
| 425 | s3c2410wdt_stop(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 426 | } |
| 427 | |
Ben Dooks | 46b814d | 2007-06-14 12:08:54 +0100 | [diff] [blame] | 428 | /* print out a statement of readiness */ |
| 429 | |
| 430 | wtcon = readl(wdt_base + S3C2410_WTCON); |
| 431 | |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 432 | dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled\n", |
Ben Dooks | 46b814d | 2007-06-14 12:08:54 +0100 | [diff] [blame] | 433 | (wtcon & S3C2410_WTCON_ENABLE) ? "" : "in", |
| 434 | (wtcon & S3C2410_WTCON_RSTEN) ? "" : "dis", |
| 435 | (wtcon & S3C2410_WTCON_INTEN) ? "" : "en"); |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 436 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 437 | return 0; |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 438 | |
| 439 | err_clk: |
| 440 | clk_disable(wdt_clock); |
| 441 | clk_put(wdt_clock); |
| 442 | |
| 443 | err_irq: |
| 444 | free_irq(wdt_irq->start, pdev); |
| 445 | |
| 446 | err_map: |
| 447 | iounmap(wdt_base); |
| 448 | |
| 449 | err_req: |
| 450 | release_resource(wdt_mem); |
| 451 | kfree(wdt_mem); |
| 452 | |
| 453 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | } |
| 455 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 456 | static int s3c2410wdt_remove(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | { |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 458 | release_resource(wdt_mem); |
| 459 | kfree(wdt_mem); |
| 460 | wdt_mem = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 462 | free_irq(wdt_irq->start, dev); |
| 463 | wdt_irq = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 464 | |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 465 | clk_disable(wdt_clock); |
| 466 | clk_put(wdt_clock); |
| 467 | wdt_clock = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
Amol Lad | e34477e | 2006-10-06 13:41:12 -0700 | [diff] [blame] | 469 | iounmap(wdt_base); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 470 | misc_deregister(&s3c2410wdt_miscdev); |
| 471 | return 0; |
| 472 | } |
| 473 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 474 | static void s3c2410wdt_shutdown(struct platform_device *dev) |
Ben Dooks | 94f1e9f | 2005-08-17 09:04:52 +0200 | [diff] [blame] | 475 | { |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 476 | s3c2410wdt_stop(); |
Ben Dooks | 94f1e9f | 2005-08-17 09:04:52 +0200 | [diff] [blame] | 477 | } |
| 478 | |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 479 | #ifdef CONFIG_PM |
| 480 | |
| 481 | static unsigned long wtcon_save; |
| 482 | static unsigned long wtdat_save; |
| 483 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 484 | static int s3c2410wdt_suspend(struct platform_device *dev, pm_message_t state) |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 485 | { |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 486 | /* Save watchdog state, and turn it off. */ |
| 487 | wtcon_save = readl(wdt_base + S3C2410_WTCON); |
| 488 | wtdat_save = readl(wdt_base + S3C2410_WTDAT); |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 489 | |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 490 | /* Note that WTCNT doesn't need to be saved. */ |
| 491 | s3c2410wdt_stop(); |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 492 | |
| 493 | return 0; |
| 494 | } |
| 495 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 496 | static int s3c2410wdt_resume(struct platform_device *dev) |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 497 | { |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 498 | /* Restore watchdog state. */ |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 499 | |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 500 | writel(wtdat_save, wdt_base + S3C2410_WTDAT); |
| 501 | writel(wtdat_save, wdt_base + S3C2410_WTCNT); /* Reset count */ |
| 502 | writel(wtcon_save, wdt_base + S3C2410_WTCON); |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 503 | |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 504 | printk(KERN_INFO PFX "watchdog %sabled\n", |
| 505 | (wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis"); |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 506 | |
| 507 | return 0; |
| 508 | } |
| 509 | |
| 510 | #else |
| 511 | #define s3c2410wdt_suspend NULL |
| 512 | #define s3c2410wdt_resume NULL |
| 513 | #endif /* CONFIG_PM */ |
| 514 | |
| 515 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 516 | static struct platform_driver s3c2410wdt_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | .probe = s3c2410wdt_probe, |
| 518 | .remove = s3c2410wdt_remove, |
Ben Dooks | 94f1e9f | 2005-08-17 09:04:52 +0200 | [diff] [blame] | 519 | .shutdown = s3c2410wdt_shutdown, |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 520 | .suspend = s3c2410wdt_suspend, |
| 521 | .resume = s3c2410wdt_resume, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 522 | .driver = { |
| 523 | .owner = THIS_MODULE, |
| 524 | .name = "s3c2410-wdt", |
| 525 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 526 | }; |
| 527 | |
| 528 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 529 | static char banner[] __initdata = |
| 530 | KERN_INFO "S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | |
| 532 | static int __init watchdog_init(void) |
| 533 | { |
| 534 | printk(banner); |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 535 | return platform_driver_register(&s3c2410wdt_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 536 | } |
| 537 | |
| 538 | static void __exit watchdog_exit(void) |
| 539 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 540 | platform_driver_unregister(&s3c2410wdt_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | module_init(watchdog_init); |
| 544 | module_exit(watchdog_exit); |
| 545 | |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 546 | MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, " |
| 547 | "Dimitry Andric <dimitry.andric@tomtom.com>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 548 | MODULE_DESCRIPTION("S3C2410 Watchdog Device Driver"); |
| 549 | MODULE_LICENSE("GPL"); |
| 550 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); |
Kay Sievers | f37d193 | 2008-04-10 21:29:23 -0700 | [diff] [blame] | 551 | MODULE_ALIAS("platform:s3c2410-wdt"); |