Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 1 | /* |
| 2 | * drivers/char/watchdog/pnx4008_wdt.c |
| 3 | * |
| 4 | * Watchdog driver for PNX4008 board |
| 5 | * |
| 6 | * Authors: Dmitry Chigirev <source@mvista.com>, |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 7 | * Vitaly Wool <vitalywool@gmail.com> |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 8 | * Based on sa1100 driver, |
| 9 | * Copyright (C) 2000 Oleg Drokin <green@crimea.edu> |
| 10 | * |
| 11 | * 2005-2006 (c) MontaVista Software, Inc. This file is licensed under |
| 12 | * the terms of the GNU General Public License version 2. This program |
| 13 | * is licensed "as is" without any warranty of any kind, whether express |
| 14 | * or implied. |
| 15 | */ |
| 16 | |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 17 | #include <linux/module.h> |
| 18 | #include <linux/moduleparam.h> |
| 19 | #include <linux/types.h> |
| 20 | #include <linux/kernel.h> |
| 21 | #include <linux/fs.h> |
| 22 | #include <linux/miscdevice.h> |
| 23 | #include <linux/watchdog.h> |
| 24 | #include <linux/init.h> |
| 25 | #include <linux/bitops.h> |
| 26 | #include <linux/ioport.h> |
| 27 | #include <linux/device.h> |
| 28 | #include <linux/platform_device.h> |
| 29 | #include <linux/clk.h> |
Wim Van Sebroeck | 99d2853 | 2006-09-10 12:48:15 +0200 | [diff] [blame] | 30 | #include <linux/spinlock.h> |
Alan Cox | 84ca995 | 2008-05-19 14:07:48 +0100 | [diff] [blame] | 31 | #include <linux/uaccess.h> |
| 32 | #include <linux/io.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 33 | #include <linux/slab.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 34 | #include <mach/hardware.h> |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 35 | |
| 36 | #define MODULE_NAME "PNX4008-WDT: " |
| 37 | |
| 38 | /* WatchDog Timer - Chapter 23 Page 207 */ |
| 39 | |
| 40 | #define DEFAULT_HEARTBEAT 19 |
| 41 | #define MAX_HEARTBEAT 60 |
| 42 | |
| 43 | /* Watchdog timer register set definition */ |
| 44 | #define WDTIM_INT(p) ((p) + 0x0) |
| 45 | #define WDTIM_CTRL(p) ((p) + 0x4) |
| 46 | #define WDTIM_COUNTER(p) ((p) + 0x8) |
| 47 | #define WDTIM_MCTRL(p) ((p) + 0xC) |
| 48 | #define WDTIM_MATCH0(p) ((p) + 0x10) |
| 49 | #define WDTIM_EMR(p) ((p) + 0x14) |
| 50 | #define WDTIM_PULSE(p) ((p) + 0x18) |
| 51 | #define WDTIM_RES(p) ((p) + 0x1C) |
| 52 | |
| 53 | /* WDTIM_INT bit definitions */ |
| 54 | #define MATCH_INT 1 |
| 55 | |
| 56 | /* WDTIM_CTRL bit definitions */ |
| 57 | #define COUNT_ENAB 1 |
Wim Van Sebroeck | 143a2e5 | 2009-03-18 08:35:09 +0000 | [diff] [blame] | 58 | #define RESET_COUNT (1 << 1) |
| 59 | #define DEBUG_EN (1 << 2) |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 60 | |
| 61 | /* WDTIM_MCTRL bit definitions */ |
| 62 | #define MR0_INT 1 |
| 63 | #undef RESET_COUNT0 |
Wim Van Sebroeck | 143a2e5 | 2009-03-18 08:35:09 +0000 | [diff] [blame] | 64 | #define RESET_COUNT0 (1 << 2) |
| 65 | #define STOP_COUNT0 (1 << 2) |
| 66 | #define M_RES1 (1 << 3) |
| 67 | #define M_RES2 (1 << 4) |
| 68 | #define RESFRC1 (1 << 5) |
| 69 | #define RESFRC2 (1 << 6) |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 70 | |
| 71 | /* WDTIM_EMR bit definitions */ |
| 72 | #define EXT_MATCH0 1 |
Wim Van Sebroeck | 143a2e5 | 2009-03-18 08:35:09 +0000 | [diff] [blame] | 73 | #define MATCH_OUTPUT_HIGH (2 << 4) /*a MATCH_CTRL setting */ |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 74 | |
| 75 | /* WDTIM_RES bit definitions */ |
| 76 | #define WDOG_RESET 1 /* read only */ |
| 77 | |
| 78 | #define WDOG_COUNTER_RATE 13000000 /*the counter clock is 13 MHz fixed */ |
| 79 | |
Wim Van Sebroeck | 2898172 | 2006-07-03 09:03:47 +0200 | [diff] [blame] | 80 | static int nowayout = WATCHDOG_NOWAYOUT; |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 81 | static int heartbeat = DEFAULT_HEARTBEAT; |
| 82 | |
Alexey Dobriyan | c7dfd0c | 2007-11-01 16:27:08 -0700 | [diff] [blame] | 83 | static DEFINE_SPINLOCK(io_lock); |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 84 | static unsigned long wdt_status; |
| 85 | #define WDT_IN_USE 0 |
| 86 | #define WDT_OK_TO_CLOSE 1 |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 87 | |
| 88 | static unsigned long boot_status; |
| 89 | |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 90 | static void __iomem *wdt_base; |
| 91 | struct clk *wdt_clk; |
| 92 | |
| 93 | static void wdt_enable(void) |
| 94 | { |
Wim Van Sebroeck | 99d2853 | 2006-09-10 12:48:15 +0200 | [diff] [blame] | 95 | spin_lock(&io_lock); |
| 96 | |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 97 | /* stop counter, initiate counter reset */ |
| 98 | __raw_writel(RESET_COUNT, WDTIM_CTRL(wdt_base)); |
| 99 | /*wait for reset to complete. 100% guarantee event */ |
Vitaly Wool | 65a64ec | 2006-09-11 14:42:39 +0400 | [diff] [blame] | 100 | while (__raw_readl(WDTIM_COUNTER(wdt_base))) |
| 101 | cpu_relax(); |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 102 | /* internal and external reset, stop after that */ |
| 103 | __raw_writel(M_RES2 | STOP_COUNT0 | RESET_COUNT0, |
| 104 | WDTIM_MCTRL(wdt_base)); |
| 105 | /* configure match output */ |
| 106 | __raw_writel(MATCH_OUTPUT_HIGH, WDTIM_EMR(wdt_base)); |
| 107 | /* clear interrupt, just in case */ |
| 108 | __raw_writel(MATCH_INT, WDTIM_INT(wdt_base)); |
| 109 | /* the longest pulse period 65541/(13*10^6) seconds ~ 5 ms. */ |
| 110 | __raw_writel(0xFFFF, WDTIM_PULSE(wdt_base)); |
| 111 | __raw_writel(heartbeat * WDOG_COUNTER_RATE, WDTIM_MATCH0(wdt_base)); |
| 112 | /*enable counter, stop when debugger active */ |
| 113 | __raw_writel(COUNT_ENAB | DEBUG_EN, WDTIM_CTRL(wdt_base)); |
Wim Van Sebroeck | 99d2853 | 2006-09-10 12:48:15 +0200 | [diff] [blame] | 114 | |
| 115 | spin_unlock(&io_lock); |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | static void wdt_disable(void) |
| 119 | { |
Wim Van Sebroeck | 99d2853 | 2006-09-10 12:48:15 +0200 | [diff] [blame] | 120 | spin_lock(&io_lock); |
| 121 | |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 122 | __raw_writel(0, WDTIM_CTRL(wdt_base)); /*stop counter */ |
Wim Van Sebroeck | 99d2853 | 2006-09-10 12:48:15 +0200 | [diff] [blame] | 123 | |
| 124 | spin_unlock(&io_lock); |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 125 | } |
| 126 | |
| 127 | static int pnx4008_wdt_open(struct inode *inode, struct file *file) |
| 128 | { |
Russell King | 24fd1ed | 2009-11-20 13:04:14 +0000 | [diff] [blame] | 129 | int ret; |
| 130 | |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 131 | if (test_and_set_bit(WDT_IN_USE, &wdt_status)) |
| 132 | return -EBUSY; |
| 133 | |
| 134 | clear_bit(WDT_OK_TO_CLOSE, &wdt_status); |
| 135 | |
Russell King | 24fd1ed | 2009-11-20 13:04:14 +0000 | [diff] [blame] | 136 | ret = clk_enable(wdt_clk); |
| 137 | if (ret) { |
| 138 | clear_bit(WDT_IN_USE, &wdt_status); |
| 139 | return ret; |
| 140 | } |
| 141 | |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 142 | wdt_enable(); |
| 143 | |
| 144 | return nonseekable_open(inode, file); |
| 145 | } |
| 146 | |
Alan Cox | 84ca995 | 2008-05-19 14:07:48 +0100 | [diff] [blame] | 147 | static ssize_t pnx4008_wdt_write(struct file *file, const char *data, |
| 148 | size_t len, loff_t *ppos) |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 149 | { |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 150 | if (len) { |
| 151 | if (!nowayout) { |
| 152 | size_t i; |
| 153 | |
| 154 | clear_bit(WDT_OK_TO_CLOSE, &wdt_status); |
| 155 | |
| 156 | for (i = 0; i != len; i++) { |
| 157 | char c; |
| 158 | |
| 159 | if (get_user(c, data + i)) |
| 160 | return -EFAULT; |
| 161 | if (c == 'V') |
| 162 | set_bit(WDT_OK_TO_CLOSE, &wdt_status); |
| 163 | } |
| 164 | } |
| 165 | wdt_enable(); |
| 166 | } |
| 167 | |
| 168 | return len; |
| 169 | } |
| 170 | |
Alan Cox | 84ca995 | 2008-05-19 14:07:48 +0100 | [diff] [blame] | 171 | static const struct watchdog_info ident = { |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 172 | .options = WDIOF_CARDRESET | WDIOF_MAGICCLOSE | |
| 173 | WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING, |
| 174 | .identity = "PNX4008 Watchdog", |
| 175 | }; |
| 176 | |
Wim Van Sebroeck | 7275fc8 | 2008-09-18 12:26:15 +0000 | [diff] [blame] | 177 | static long pnx4008_wdt_ioctl(struct file *file, unsigned int cmd, |
| 178 | unsigned long arg) |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 179 | { |
Wim Van Sebroeck | f311896 | 2006-09-13 21:27:29 +0200 | [diff] [blame] | 180 | int ret = -ENOTTY; |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 181 | int time; |
| 182 | |
| 183 | switch (cmd) { |
| 184 | case WDIOC_GETSUPPORT: |
| 185 | ret = copy_to_user((struct watchdog_info *)arg, &ident, |
| 186 | sizeof(ident)) ? -EFAULT : 0; |
| 187 | break; |
| 188 | |
| 189 | case WDIOC_GETSTATUS: |
| 190 | ret = put_user(0, (int *)arg); |
| 191 | break; |
| 192 | |
| 193 | case WDIOC_GETBOOTSTATUS: |
| 194 | ret = put_user(boot_status, (int *)arg); |
| 195 | break; |
| 196 | |
Wim Van Sebroeck | 0c06090 | 2008-07-18 11:41:17 +0000 | [diff] [blame] | 197 | case WDIOC_KEEPALIVE: |
| 198 | wdt_enable(); |
| 199 | ret = 0; |
| 200 | break; |
| 201 | |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 202 | case WDIOC_SETTIMEOUT: |
| 203 | ret = get_user(time, (int *)arg); |
| 204 | if (ret) |
| 205 | break; |
| 206 | |
| 207 | if (time <= 0 || time > MAX_HEARTBEAT) { |
| 208 | ret = -EINVAL; |
| 209 | break; |
| 210 | } |
| 211 | |
| 212 | heartbeat = time; |
| 213 | wdt_enable(); |
| 214 | /* Fall through */ |
| 215 | |
| 216 | case WDIOC_GETTIMEOUT: |
| 217 | ret = put_user(heartbeat, (int *)arg); |
| 218 | break; |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 219 | } |
| 220 | return ret; |
| 221 | } |
| 222 | |
| 223 | static int pnx4008_wdt_release(struct inode *inode, struct file *file) |
| 224 | { |
| 225 | if (!test_bit(WDT_OK_TO_CLOSE, &wdt_status)) |
Masanari Iida | b1785df | 2012-01-20 23:56:19 +0900 | [diff] [blame] | 226 | printk(KERN_WARNING "WATCHDOG: Device closed unexpectedly\n"); |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 227 | |
| 228 | wdt_disable(); |
Russell King | 24fd1ed | 2009-11-20 13:04:14 +0000 | [diff] [blame] | 229 | clk_disable(wdt_clk); |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 230 | clear_bit(WDT_IN_USE, &wdt_status); |
| 231 | clear_bit(WDT_OK_TO_CLOSE, &wdt_status); |
| 232 | |
| 233 | return 0; |
| 234 | } |
| 235 | |
Arjan van de Ven | 2b8693c | 2007-02-12 00:55:32 -0800 | [diff] [blame] | 236 | static const struct file_operations pnx4008_wdt_fops = { |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 237 | .owner = THIS_MODULE, |
| 238 | .llseek = no_llseek, |
| 239 | .write = pnx4008_wdt_write, |
Alan Cox | 84ca995 | 2008-05-19 14:07:48 +0100 | [diff] [blame] | 240 | .unlocked_ioctl = pnx4008_wdt_ioctl, |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 241 | .open = pnx4008_wdt_open, |
| 242 | .release = pnx4008_wdt_release, |
| 243 | }; |
| 244 | |
| 245 | static struct miscdevice pnx4008_wdt_miscdev = { |
| 246 | .minor = WATCHDOG_MINOR, |
| 247 | .name = "watchdog", |
| 248 | .fops = &pnx4008_wdt_fops, |
| 249 | }; |
| 250 | |
Wim Van Sebroeck | b6bf291 | 2009-04-14 20:30:55 +0000 | [diff] [blame] | 251 | static int __devinit pnx4008_wdt_probe(struct platform_device *pdev) |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 252 | { |
Wolfram Sang | 19f505f | 2012-02-02 18:48:08 +0100 | [diff] [blame^] | 253 | struct resource *r; |
| 254 | int ret = 0; |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 255 | |
| 256 | if (heartbeat < 1 || heartbeat > MAX_HEARTBEAT) |
| 257 | heartbeat = DEFAULT_HEARTBEAT; |
| 258 | |
Wolfram Sang | 19f505f | 2012-02-02 18:48:08 +0100 | [diff] [blame^] | 259 | r = platform_get_resource(pdev, IORESOURCE_MEM, 0); |
| 260 | wdt_base = devm_request_and_ioremap(&pdev->dev, r); |
| 261 | if (!wdt_base) |
| 262 | return -EADDRINUSE; |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 263 | |
Russell King | 9bb787f | 2009-11-20 13:07:28 +0000 | [diff] [blame] | 264 | wdt_clk = clk_get(&pdev->dev, NULL); |
Wolfram Sang | 19f505f | 2012-02-02 18:48:08 +0100 | [diff] [blame^] | 265 | if (IS_ERR(wdt_clk)) |
| 266 | return PTR_ERR(wdt_clk); |
Russell King | 24fd1ed | 2009-11-20 13:04:14 +0000 | [diff] [blame] | 267 | |
| 268 | ret = clk_enable(wdt_clk); |
Wolfram Sang | 19f505f | 2012-02-02 18:48:08 +0100 | [diff] [blame^] | 269 | if (ret) |
Russell King | 24fd1ed | 2009-11-20 13:04:14 +0000 | [diff] [blame] | 270 | goto out; |
Wolfram Sang | 19f505f | 2012-02-02 18:48:08 +0100 | [diff] [blame^] | 271 | |
| 272 | boot_status = (__raw_readl(WDTIM_RES(wdt_base)) & |
| 273 | WDOG_RESET) ? WDIOF_CARDRESET : 0; |
| 274 | wdt_disable(); /*disable for now */ |
| 275 | clk_disable(wdt_clk); |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 276 | |
| 277 | ret = misc_register(&pnx4008_wdt_miscdev); |
| 278 | if (ret < 0) { |
Wolfram Sang | 19f505f | 2012-02-02 18:48:08 +0100 | [diff] [blame^] | 279 | dev_err(&pdev->dev, "cannot register misc device\n"); |
| 280 | goto out; |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 281 | } |
| 282 | |
Wolfram Sang | 19f505f | 2012-02-02 18:48:08 +0100 | [diff] [blame^] | 283 | dev_info(&pdev->dev, "PNX4008 Watchdog Timer: heartbeat %d sec\n", |
| 284 | heartbeat); |
| 285 | |
| 286 | return 0; |
| 287 | |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 288 | out: |
Wolfram Sang | 19f505f | 2012-02-02 18:48:08 +0100 | [diff] [blame^] | 289 | clk_put(wdt_clk); |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 290 | return ret; |
| 291 | } |
| 292 | |
Wim Van Sebroeck | b6bf291 | 2009-04-14 20:30:55 +0000 | [diff] [blame] | 293 | static int __devexit pnx4008_wdt_remove(struct platform_device *pdev) |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 294 | { |
Wim Van Sebroeck | f676449 | 2006-07-30 20:06:07 +0200 | [diff] [blame] | 295 | misc_deregister(&pnx4008_wdt_miscdev); |
Russell King | 24fd1ed | 2009-11-20 13:04:14 +0000 | [diff] [blame] | 296 | |
| 297 | clk_disable(wdt_clk); |
| 298 | clk_put(wdt_clk); |
| 299 | |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 300 | return 0; |
| 301 | } |
| 302 | |
| 303 | static struct platform_driver platform_wdt_driver = { |
| 304 | .driver = { |
Russell King | 1508c99 | 2009-11-20 13:07:57 +0000 | [diff] [blame] | 305 | .name = "pnx4008-watchdog", |
Kay Sievers | f37d193 | 2008-04-10 21:29:23 -0700 | [diff] [blame] | 306 | .owner = THIS_MODULE, |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 307 | }, |
| 308 | .probe = pnx4008_wdt_probe, |
Wim Van Sebroeck | b6bf291 | 2009-04-14 20:30:55 +0000 | [diff] [blame] | 309 | .remove = __devexit_p(pnx4008_wdt_remove), |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 310 | }; |
| 311 | |
Axel Lin | b8ec611 | 2011-11-29 13:56:27 +0800 | [diff] [blame] | 312 | module_platform_driver(platform_wdt_driver); |
Vitaly Wool | 9325fa36 | 2006-06-26 19:31:49 +0400 | [diff] [blame] | 313 | |
| 314 | MODULE_AUTHOR("MontaVista Software, Inc. <source@mvista.com>"); |
| 315 | MODULE_DESCRIPTION("PNX4008 Watchdog Driver"); |
| 316 | |
| 317 | module_param(heartbeat, int, 0); |
| 318 | MODULE_PARM_DESC(heartbeat, |
| 319 | "Watchdog heartbeat period in seconds from 1 to " |
| 320 | __MODULE_STRING(MAX_HEARTBEAT) ", default " |
| 321 | __MODULE_STRING(DEFAULT_HEARTBEAT)); |
| 322 | |
| 323 | module_param(nowayout, int, 0); |
| 324 | MODULE_PARM_DESC(nowayout, |
| 325 | "Set to 1 to keep watchdog running after device release"); |
| 326 | |
| 327 | MODULE_LICENSE("GPL"); |
| 328 | MODULE_ALIAS_MISCDEV(WATCHDOG_MINOR); |
Russell King | 1508c99 | 2009-11-20 13:07:57 +0000 | [diff] [blame] | 329 | MODULE_ALIAS("platform:pnx4008-watchdog"); |