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> |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 30 | #include <linux/miscdevice.h> /* for MODULE_ALIAS_MISCDEV */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #include <linux/watchdog.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | #include <linux/init.h> |
Russell King | d052d1b | 2005-10-29 19:07:23 +0100 | [diff] [blame] | 33 | #include <linux/platform_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | #include <linux/interrupt.h> |
Russell King | f8ce254 | 2006-01-07 16:15:52 +0000 | [diff] [blame] | 35 | #include <linux/clk.h> |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 36 | #include <linux/uaccess.h> |
| 37 | #include <linux/io.h> |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 38 | #include <linux/cpufreq.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 39 | #include <linux/slab.h> |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 40 | #include <linux/err.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 42 | #include <mach/map.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | |
Ben Dooks | b430708 | 2007-07-24 13:28:01 +0100 | [diff] [blame] | 44 | #undef S3C_VA_WATCHDOG |
| 45 | #define S3C_VA_WATCHDOG (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
Ben Dooks | 180ee70 | 2008-10-30 10:14:32 +0000 | [diff] [blame] | 47 | #include <plat/regs-watchdog.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 48 | |
| 49 | #define PFX "s3c2410-wdt: " |
| 50 | |
| 51 | #define CONFIG_S3C2410_WATCHDOG_ATBOOT (0) |
| 52 | #define CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME (15) |
| 53 | |
Ben Dooks | 25ff378 | 2006-09-06 12:24:35 +0100 | [diff] [blame] | 54 | static int nowayout = WATCHDOG_NOWAYOUT; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | static int tmr_margin = CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME; |
| 56 | static int tmr_atboot = CONFIG_S3C2410_WATCHDOG_ATBOOT; |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 57 | static int soft_noboot; |
| 58 | static int debug; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 59 | |
| 60 | module_param(tmr_margin, int, 0); |
| 61 | module_param(tmr_atboot, int, 0); |
| 62 | module_param(nowayout, int, 0); |
| 63 | module_param(soft_noboot, int, 0); |
| 64 | module_param(debug, int, 0); |
| 65 | |
Randy Dunlap | 76550d3 | 2010-05-01 09:46:15 -0700 | [diff] [blame] | 66 | MODULE_PARM_DESC(tmr_margin, "Watchdog tmr_margin in seconds. (default=" |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 67 | __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME) ")"); |
| 68 | MODULE_PARM_DESC(tmr_atboot, |
| 69 | "Watchdog is started at boot time if set to 1, default=" |
| 70 | __MODULE_STRING(CONFIG_S3C2410_WATCHDOG_ATBOOT)); |
| 71 | MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started (default=" |
| 72 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
Wim Van Sebroeck | a77dba7 | 2009-04-14 20:20:07 +0000 | [diff] [blame] | 73 | MODULE_PARM_DESC(soft_noboot, "Watchdog action, set to 1 to ignore reboots, " |
Randy Dunlap | 76550d3 | 2010-05-01 09:46:15 -0700 | [diff] [blame] | 74 | "0 to reboot (default 0)"); |
| 75 | MODULE_PARM_DESC(debug, "Watchdog debug, set to >1 for debug (default 0)"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 76 | |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 77 | static struct device *wdt_dev; /* platform device attached to */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 78 | static struct resource *wdt_mem; |
| 79 | static struct resource *wdt_irq; |
| 80 | static struct clk *wdt_clock; |
| 81 | static void __iomem *wdt_base; |
| 82 | static unsigned int wdt_count; |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 83 | static DEFINE_SPINLOCK(wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 84 | |
| 85 | /* watchdog control routines */ |
| 86 | |
| 87 | #define DBG(msg...) do { \ |
| 88 | if (debug) \ |
| 89 | printk(KERN_INFO msg); \ |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 90 | } while (0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | |
| 92 | /* functions */ |
| 93 | |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 94 | static int s3c2410wdt_keepalive(struct watchdog_device *wdd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 95 | { |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 96 | spin_lock(&wdt_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | writel(wdt_count, wdt_base + S3C2410_WTCNT); |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 98 | spin_unlock(&wdt_lock); |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 99 | |
| 100 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | } |
| 102 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 103 | static void __s3c2410wdt_stop(void) |
| 104 | { |
| 105 | unsigned long wtcon; |
| 106 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | wtcon = readl(wdt_base + S3C2410_WTCON); |
| 108 | wtcon &= ~(S3C2410_WTCON_ENABLE | S3C2410_WTCON_RSTEN); |
| 109 | writel(wtcon, wdt_base + S3C2410_WTCON); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 110 | } |
| 111 | |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 112 | static int s3c2410wdt_stop(struct watchdog_device *wdd) |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 113 | { |
| 114 | spin_lock(&wdt_lock); |
| 115 | __s3c2410wdt_stop(); |
| 116 | spin_unlock(&wdt_lock); |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 117 | |
| 118 | return 0; |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 119 | } |
| 120 | |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 121 | static int s3c2410wdt_start(struct watchdog_device *wdd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 122 | { |
| 123 | unsigned long wtcon; |
| 124 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 125 | spin_lock(&wdt_lock); |
| 126 | |
| 127 | __s3c2410wdt_stop(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | |
| 129 | wtcon = readl(wdt_base + S3C2410_WTCON); |
| 130 | wtcon |= S3C2410_WTCON_ENABLE | S3C2410_WTCON_DIV128; |
| 131 | |
| 132 | if (soft_noboot) { |
| 133 | wtcon |= S3C2410_WTCON_INTEN; |
| 134 | wtcon &= ~S3C2410_WTCON_RSTEN; |
| 135 | } else { |
| 136 | wtcon &= ~S3C2410_WTCON_INTEN; |
| 137 | wtcon |= S3C2410_WTCON_RSTEN; |
| 138 | } |
| 139 | |
| 140 | DBG("%s: wdt_count=0x%08x, wtcon=%08lx\n", |
Harvey Harrison | fa9363c | 2008-03-05 18:24:58 -0800 | [diff] [blame] | 141 | __func__, wdt_count, wtcon); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | writel(wdt_count, wdt_base + S3C2410_WTDAT); |
| 144 | writel(wdt_count, wdt_base + S3C2410_WTCNT); |
| 145 | writel(wtcon, wdt_base + S3C2410_WTCON); |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 146 | spin_unlock(&wdt_lock); |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 147 | |
| 148 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 149 | } |
| 150 | |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 151 | static inline int s3c2410wdt_is_running(void) |
| 152 | { |
| 153 | return readl(wdt_base + S3C2410_WTCON) & S3C2410_WTCON_ENABLE; |
| 154 | } |
| 155 | |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 156 | static int s3c2410wdt_set_heartbeat(struct watchdog_device *wdd, unsigned timeout) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 157 | { |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 158 | unsigned long freq = clk_get_rate(wdt_clock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | unsigned int count; |
| 160 | unsigned int divisor = 1; |
| 161 | unsigned long wtcon; |
| 162 | |
| 163 | if (timeout < 1) |
| 164 | return -EINVAL; |
| 165 | |
| 166 | freq /= 128; |
| 167 | count = timeout * freq; |
| 168 | |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 169 | DBG("%s: count=%d, timeout=%d, freq=%lu\n", |
Harvey Harrison | fa9363c | 2008-03-05 18:24:58 -0800 | [diff] [blame] | 170 | __func__, count, timeout, freq); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
| 172 | /* if the count is bigger than the watchdog register, |
| 173 | then work out what we need to do (and if) we can |
| 174 | actually make this value |
| 175 | */ |
| 176 | |
| 177 | if (count >= 0x10000) { |
| 178 | for (divisor = 1; divisor <= 0x100; divisor++) { |
| 179 | if ((count / divisor) < 0x10000) |
| 180 | break; |
| 181 | } |
| 182 | |
| 183 | if ((count / divisor) >= 0x10000) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 184 | dev_err(wdt_dev, "timeout %d too big\n", timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | return -EINVAL; |
| 186 | } |
| 187 | } |
| 188 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 189 | DBG("%s: timeout=%d, divisor=%d, count=%d (%08x)\n", |
Harvey Harrison | fa9363c | 2008-03-05 18:24:58 -0800 | [diff] [blame] | 190 | __func__, timeout, divisor, count, count/divisor); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 191 | |
| 192 | count /= divisor; |
| 193 | wdt_count = count; |
| 194 | |
| 195 | /* update the pre-scaler */ |
| 196 | wtcon = readl(wdt_base + S3C2410_WTCON); |
| 197 | wtcon &= ~S3C2410_WTCON_PRESCALE_MASK; |
| 198 | wtcon |= S3C2410_WTCON_PRESCALE(divisor-1); |
| 199 | |
| 200 | writel(count, wdt_base + S3C2410_WTDAT); |
| 201 | writel(wtcon, wdt_base + S3C2410_WTCON); |
| 202 | |
| 203 | return 0; |
| 204 | } |
| 205 | |
Wim Van Sebroeck | a77dba7 | 2009-04-14 20:20:07 +0000 | [diff] [blame] | 206 | #define OPTIONS (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 208 | static const struct watchdog_info s3c2410_wdt_ident = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 209 | .options = OPTIONS, |
| 210 | .firmware_version = 0, |
| 211 | .identity = "S3C2410 Watchdog", |
| 212 | }; |
| 213 | |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 214 | static struct watchdog_ops s3c2410wdt_ops = { |
| 215 | .owner = THIS_MODULE, |
| 216 | .start = s3c2410wdt_start, |
| 217 | .stop = s3c2410wdt_stop, |
| 218 | .ping = s3c2410wdt_keepalive, |
| 219 | .set_timeout = s3c2410wdt_set_heartbeat, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 220 | }; |
| 221 | |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 222 | static struct watchdog_device s3c2410_wdd = { |
| 223 | .info = &s3c2410_wdt_ident, |
| 224 | .ops = &s3c2410wdt_ops, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | }; |
| 226 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | /* interrupt handler code */ |
| 228 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 229 | static irqreturn_t s3c2410wdt_irq(int irqno, void *param) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 231 | dev_info(wdt_dev, "watchdog timer expired (irq)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 232 | |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 233 | s3c2410wdt_keepalive(&s3c2410_wdd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 234 | return IRQ_HANDLED; |
| 235 | } |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 236 | |
| 237 | |
| 238 | #ifdef CONFIG_CPU_FREQ |
| 239 | |
| 240 | static int s3c2410wdt_cpufreq_transition(struct notifier_block *nb, |
| 241 | unsigned long val, void *data) |
| 242 | { |
| 243 | int ret; |
| 244 | |
| 245 | if (!s3c2410wdt_is_running()) |
| 246 | goto done; |
| 247 | |
| 248 | if (val == CPUFREQ_PRECHANGE) { |
| 249 | /* To ensure that over the change we don't cause the |
| 250 | * watchdog to trigger, we perform an keep-alive if |
| 251 | * the watchdog is running. |
| 252 | */ |
| 253 | |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 254 | s3c2410wdt_keepalive(&s3c2410_wdd); |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 255 | } else if (val == CPUFREQ_POSTCHANGE) { |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 256 | s3c2410wdt_stop(&s3c2410_wdd); |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 257 | |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 258 | ret = s3c2410wdt_set_heartbeat(&s3c2410_wdd, s3c2410_wdd.timeout); |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 259 | |
| 260 | if (ret >= 0) |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 261 | s3c2410wdt_start(&s3c2410_wdd); |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 262 | else |
| 263 | goto err; |
| 264 | } |
| 265 | |
| 266 | done: |
| 267 | return 0; |
| 268 | |
| 269 | err: |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 270 | dev_err(wdt_dev, "cannot set new value for timeout %d\n", |
| 271 | s3c2410_wdd.timeout); |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 272 | return ret; |
| 273 | } |
| 274 | |
| 275 | static struct notifier_block s3c2410wdt_cpufreq_transition_nb = { |
| 276 | .notifier_call = s3c2410wdt_cpufreq_transition, |
| 277 | }; |
| 278 | |
| 279 | static inline int s3c2410wdt_cpufreq_register(void) |
| 280 | { |
| 281 | return cpufreq_register_notifier(&s3c2410wdt_cpufreq_transition_nb, |
| 282 | CPUFREQ_TRANSITION_NOTIFIER); |
| 283 | } |
| 284 | |
| 285 | static inline void s3c2410wdt_cpufreq_deregister(void) |
| 286 | { |
| 287 | cpufreq_unregister_notifier(&s3c2410wdt_cpufreq_transition_nb, |
| 288 | CPUFREQ_TRANSITION_NOTIFIER); |
| 289 | } |
| 290 | |
| 291 | #else |
| 292 | static inline int s3c2410wdt_cpufreq_register(void) |
| 293 | { |
| 294 | return 0; |
| 295 | } |
| 296 | |
| 297 | static inline void s3c2410wdt_cpufreq_deregister(void) |
| 298 | { |
| 299 | } |
| 300 | #endif |
| 301 | |
Wim Van Sebroeck | a77dba7 | 2009-04-14 20:20:07 +0000 | [diff] [blame] | 302 | static int __devinit s3c2410wdt_probe(struct platform_device *pdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 304 | struct device *dev; |
Ben Dooks | 46b814d | 2007-06-14 12:08:54 +0100 | [diff] [blame] | 305 | unsigned int wtcon; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | int started = 0; |
| 307 | int ret; |
| 308 | int size; |
| 309 | |
Harvey Harrison | fa9363c | 2008-03-05 18:24:58 -0800 | [diff] [blame] | 310 | DBG("%s: probe=%p\n", __func__, pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 311 | |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 312 | dev = &pdev->dev; |
| 313 | wdt_dev = &pdev->dev; |
| 314 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | /* get the memory region for the watchdog timer */ |
| 316 | |
Julia Lawall | f72401e | 2011-02-26 17:34:38 +0100 | [diff] [blame] | 317 | wdt_mem = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 318 | if (wdt_mem == NULL) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 319 | dev_err(dev, "no memory resource specified\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 320 | return -ENOENT; |
| 321 | } |
| 322 | |
Julia Lawall | f72401e | 2011-02-26 17:34:38 +0100 | [diff] [blame] | 323 | size = resource_size(wdt_mem); |
| 324 | if (!request_mem_region(wdt_mem->start, size, pdev->name)) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 325 | dev_err(dev, "failed to get memory region\n"); |
Banajit Goswami | 100fb76 | 2010-05-20 11:58:25 +0100 | [diff] [blame] | 326 | return -EBUSY; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 327 | } |
| 328 | |
Julia Lawall | f72401e | 2011-02-26 17:34:38 +0100 | [diff] [blame] | 329 | wdt_base = ioremap(wdt_mem->start, size); |
Ben Dooks | b4253f8 | 2008-06-22 22:36:49 +0100 | [diff] [blame] | 330 | if (wdt_base == NULL) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 331 | dev_err(dev, "failed to ioremap() region\n"); |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 332 | ret = -EINVAL; |
| 333 | goto err_req; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 334 | } |
| 335 | |
| 336 | DBG("probe: mapped wdt_base=%p\n", wdt_base); |
| 337 | |
Arnaud Patard | 62be0741 | 2007-05-05 15:53:15 +0200 | [diff] [blame] | 338 | wdt_irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0); |
| 339 | if (wdt_irq == NULL) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 340 | dev_err(dev, "no irq resource specified\n"); |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 341 | ret = -ENOENT; |
| 342 | goto err_map; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 343 | } |
| 344 | |
Arnaud Patard | 62be0741 | 2007-05-05 15:53:15 +0200 | [diff] [blame] | 345 | ret = request_irq(wdt_irq->start, s3c2410wdt_irq, 0, pdev->name, pdev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 346 | if (ret != 0) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 347 | dev_err(dev, "failed to install irq (%d)\n", ret); |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 348 | goto err_map; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | } |
| 350 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 351 | wdt_clock = clk_get(&pdev->dev, "watchdog"); |
Akinobu Mita | 9cd4461 | 2006-12-19 17:51:44 +0900 | [diff] [blame] | 352 | if (IS_ERR(wdt_clock)) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 353 | dev_err(dev, "failed to find watchdog clock source\n"); |
Akinobu Mita | 9cd4461 | 2006-12-19 17:51:44 +0900 | [diff] [blame] | 354 | ret = PTR_ERR(wdt_clock); |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 355 | goto err_irq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | } |
| 357 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | clk_enable(wdt_clock); |
| 359 | |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 360 | if (s3c2410wdt_cpufreq_register() < 0) { |
| 361 | printk(KERN_ERR PFX "failed to register cpufreq\n"); |
| 362 | goto err_clk; |
| 363 | } |
| 364 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 365 | /* see if we can actually set the requested timer margin, and if |
| 366 | * not, try the default value */ |
| 367 | |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 368 | if (s3c2410wdt_set_heartbeat(&s3c2410_wdd, tmr_margin)) { |
| 369 | started = s3c2410wdt_set_heartbeat(&s3c2410_wdd, |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 370 | CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 372 | if (started == 0) |
| 373 | dev_info(dev, |
| 374 | "tmr_margin value out of range, default %d used\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 375 | CONFIG_S3C2410_WATCHDOG_DEFAULT_TIME); |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 376 | else |
Wim Van Sebroeck | a77dba7 | 2009-04-14 20:20:07 +0000 | [diff] [blame] | 377 | dev_info(dev, "default timer value is out of range, " |
| 378 | "cannot start\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | } |
| 380 | |
Wim Van Sebroeck | ff0b3cd | 2011-11-29 16:24:16 +0100 | [diff] [blame] | 381 | watchdog_set_nowayout(&s3c2410_wdd, nowayout); |
| 382 | |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 383 | ret = watchdog_register_device(&s3c2410_wdd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 384 | if (ret) { |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 385 | dev_err(dev, "cannot register watchdog (%d)\n", ret); |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 386 | goto err_cpufreq; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 387 | } |
| 388 | |
| 389 | if (tmr_atboot && started == 0) { |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 390 | dev_info(dev, "starting watchdog timer\n"); |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 391 | s3c2410wdt_start(&s3c2410_wdd); |
Ben Dooks | 655516c | 2006-04-19 23:02:56 +0100 | [diff] [blame] | 392 | } else if (!tmr_atboot) { |
| 393 | /* if we're not enabling the watchdog, then ensure it is |
| 394 | * disabled if it has been left running from the bootloader |
| 395 | * or other source */ |
| 396 | |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 397 | s3c2410wdt_stop(&s3c2410_wdd); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | } |
| 399 | |
Ben Dooks | 46b814d | 2007-06-14 12:08:54 +0100 | [diff] [blame] | 400 | /* print out a statement of readiness */ |
| 401 | |
| 402 | wtcon = readl(wdt_base + S3C2410_WTCON); |
| 403 | |
Ben Dooks | e8ef92b | 2007-06-14 12:08:55 +0100 | [diff] [blame] | 404 | dev_info(dev, "watchdog %sactive, reset %sabled, irq %sabled\n", |
Ben Dooks | 46b814d | 2007-06-14 12:08:54 +0100 | [diff] [blame] | 405 | (wtcon & S3C2410_WTCON_ENABLE) ? "" : "in", |
Dmitry Artamonow | 20403e8 | 2011-11-16 12:46:13 +0400 | [diff] [blame] | 406 | (wtcon & S3C2410_WTCON_RSTEN) ? "en" : "dis", |
| 407 | (wtcon & S3C2410_WTCON_INTEN) ? "en" : "dis"); |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 408 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 409 | return 0; |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 410 | |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 411 | err_cpufreq: |
| 412 | s3c2410wdt_cpufreq_deregister(); |
| 413 | |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 414 | err_clk: |
| 415 | clk_disable(wdt_clock); |
| 416 | clk_put(wdt_clock); |
| 417 | |
| 418 | err_irq: |
| 419 | free_irq(wdt_irq->start, pdev); |
| 420 | |
| 421 | err_map: |
| 422 | iounmap(wdt_base); |
| 423 | |
| 424 | err_req: |
Julia Lawall | f72401e | 2011-02-26 17:34:38 +0100 | [diff] [blame] | 425 | release_mem_region(wdt_mem->start, size); |
| 426 | wdt_mem = NULL; |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 427 | |
| 428 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 429 | } |
| 430 | |
Wim Van Sebroeck | a77dba7 | 2009-04-14 20:20:07 +0000 | [diff] [blame] | 431 | static int __devexit s3c2410wdt_remove(struct platform_device *dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | { |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 433 | watchdog_unregister_device(&s3c2410_wdd); |
Wim Van Sebroeck | 9a37256 | 2010-05-21 08:11:42 +0000 | [diff] [blame] | 434 | |
Ben Dooks | e02f838 | 2009-10-30 00:30:25 +0000 | [diff] [blame] | 435 | s3c2410wdt_cpufreq_deregister(); |
| 436 | |
Ben Dooks | 0b6dd8a | 2006-12-18 10:31:32 +0000 | [diff] [blame] | 437 | clk_disable(wdt_clock); |
| 438 | clk_put(wdt_clock); |
| 439 | wdt_clock = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 440 | |
Wim Van Sebroeck | 9a37256 | 2010-05-21 08:11:42 +0000 | [diff] [blame] | 441 | free_irq(wdt_irq->start, dev); |
| 442 | wdt_irq = NULL; |
| 443 | |
Amol Lad | e34477e | 2006-10-06 13:41:12 -0700 | [diff] [blame] | 444 | iounmap(wdt_base); |
Wim Van Sebroeck | 9a37256 | 2010-05-21 08:11:42 +0000 | [diff] [blame] | 445 | |
Julia Lawall | f72401e | 2011-02-26 17:34:38 +0100 | [diff] [blame] | 446 | release_mem_region(wdt_mem->start, resource_size(wdt_mem)); |
Wim Van Sebroeck | 9a37256 | 2010-05-21 08:11:42 +0000 | [diff] [blame] | 447 | wdt_mem = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | return 0; |
| 449 | } |
| 450 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 451 | static void s3c2410wdt_shutdown(struct platform_device *dev) |
Ben Dooks | 94f1e9f | 2005-08-17 09:04:52 +0200 | [diff] [blame] | 452 | { |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 453 | s3c2410wdt_stop(&s3c2410_wdd); |
Ben Dooks | 94f1e9f | 2005-08-17 09:04:52 +0200 | [diff] [blame] | 454 | } |
| 455 | |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 456 | #ifdef CONFIG_PM |
| 457 | |
| 458 | static unsigned long wtcon_save; |
| 459 | static unsigned long wtdat_save; |
| 460 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 461 | static int s3c2410wdt_suspend(struct platform_device *dev, pm_message_t state) |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 462 | { |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 463 | /* Save watchdog state, and turn it off. */ |
| 464 | wtcon_save = readl(wdt_base + S3C2410_WTCON); |
| 465 | wtdat_save = readl(wdt_base + S3C2410_WTDAT); |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 466 | |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 467 | /* Note that WTCNT doesn't need to be saved. */ |
Wolfram Sang | 25dc46e | 2011-09-26 15:40:14 +0200 | [diff] [blame] | 468 | s3c2410wdt_stop(&s3c2410_wdd); |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 469 | |
| 470 | return 0; |
| 471 | } |
| 472 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 473 | static int s3c2410wdt_resume(struct platform_device *dev) |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 474 | { |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 475 | /* Restore watchdog state. */ |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 476 | |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 477 | writel(wtdat_save, wdt_base + S3C2410_WTDAT); |
| 478 | writel(wtdat_save, wdt_base + S3C2410_WTCNT); /* Reset count */ |
| 479 | writel(wtcon_save, wdt_base + S3C2410_WTCON); |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 480 | |
Russell King | 9480e30 | 2005-10-28 09:52:56 -0700 | [diff] [blame] | 481 | printk(KERN_INFO PFX "watchdog %sabled\n", |
| 482 | (wtcon_save & S3C2410_WTCON_ENABLE) ? "en" : "dis"); |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 483 | |
| 484 | return 0; |
| 485 | } |
| 486 | |
| 487 | #else |
| 488 | #define s3c2410wdt_suspend NULL |
| 489 | #define s3c2410wdt_resume NULL |
| 490 | #endif /* CONFIG_PM */ |
| 491 | |
Thomas Abraham | 9487a9c | 2011-06-22 15:24:32 +0530 | [diff] [blame] | 492 | #ifdef CONFIG_OF |
| 493 | static const struct of_device_id s3c2410_wdt_match[] = { |
| 494 | { .compatible = "samsung,s3c2410-wdt" }, |
| 495 | {}, |
| 496 | }; |
| 497 | MODULE_DEVICE_TABLE(of, s3c2410_wdt_match); |
| 498 | #else |
| 499 | #define s3c2410_wdt_match NULL |
| 500 | #endif |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 501 | |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 502 | static struct platform_driver s3c2410wdt_driver = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 503 | .probe = s3c2410wdt_probe, |
Wim Van Sebroeck | a77dba7 | 2009-04-14 20:20:07 +0000 | [diff] [blame] | 504 | .remove = __devexit_p(s3c2410wdt_remove), |
Ben Dooks | 94f1e9f | 2005-08-17 09:04:52 +0200 | [diff] [blame] | 505 | .shutdown = s3c2410wdt_shutdown, |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 506 | .suspend = s3c2410wdt_suspend, |
| 507 | .resume = s3c2410wdt_resume, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 508 | .driver = { |
| 509 | .owner = THIS_MODULE, |
| 510 | .name = "s3c2410-wdt", |
Thomas Abraham | 9487a9c | 2011-06-22 15:24:32 +0530 | [diff] [blame] | 511 | .of_match_table = s3c2410_wdt_match, |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 512 | }, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 513 | }; |
| 514 | |
| 515 | |
Alan Cox | 41dc8b7 | 2008-08-04 17:54:46 +0100 | [diff] [blame] | 516 | static char banner[] __initdata = |
| 517 | KERN_INFO "S3C2410 Watchdog Timer, (c) 2004 Simtec Electronics\n"; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 518 | |
| 519 | static int __init watchdog_init(void) |
| 520 | { |
| 521 | printk(banner); |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 522 | return platform_driver_register(&s3c2410wdt_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | } |
| 524 | |
| 525 | static void __exit watchdog_exit(void) |
| 526 | { |
Russell King | 3ae5eae | 2005-11-09 22:32:44 +0000 | [diff] [blame] | 527 | platform_driver_unregister(&s3c2410wdt_driver); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | } |
| 529 | |
| 530 | module_init(watchdog_init); |
| 531 | module_exit(watchdog_exit); |
| 532 | |
Ben Dooks | af4bb82 | 2005-08-17 09:03:23 +0200 | [diff] [blame] | 533 | MODULE_AUTHOR("Ben Dooks <ben@simtec.co.uk>, " |
| 534 | "Dimitry Andric <dimitry.andric@tomtom.com>"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | MODULE_DESCRIPTION("S3C2410 Watchdog Device Driver"); |
| 536 | MODULE_LICENSE("GPL"); |
| 537 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); |
Kay Sievers | f37d193 | 2008-04-10 21:29:23 -0700 | [diff] [blame] | 538 | MODULE_ALIAS("platform:s3c2410-wdt"); |