Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Watchdog driver for Atmel AT91RM9200 (Thunder) |
| 3 | * |
| 4 | * Copyright (C) 2003 SAN People (Pty) Ltd |
| 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | */ |
| 11 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 12 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 13 | |
Jiri Slaby | 1977f03 | 2007-10-18 23:40:25 -0700 | [diff] [blame] | 14 | #include <linux/bitops.h> |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 15 | #include <linux/errno.h> |
| 16 | #include <linux/fs.h> |
| 17 | #include <linux/init.h> |
Jean-Christop PLAGNIOL-VILLARD | 02e0746 | 2009-01-23 10:06:07 +0100 | [diff] [blame] | 18 | #include <linux/io.h> |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 19 | #include <linux/kernel.h> |
| 20 | #include <linux/miscdevice.h> |
| 21 | #include <linux/module.h> |
| 22 | #include <linux/moduleparam.h> |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 23 | #include <linux/platform_device.h> |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 24 | #include <linux/types.h> |
| 25 | #include <linux/watchdog.h> |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 26 | #include <linux/uaccess.h> |
Joachim Eastwood | a6a1bcd | 2013-02-14 23:02:29 +0100 | [diff] [blame] | 27 | #include <linux/of.h> |
| 28 | #include <linux/of_device.h> |
Russell King | a09e64f | 2008-08-05 16:14:15 +0100 | [diff] [blame] | 29 | #include <mach/at91_st.h> |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 30 | |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 31 | #define WDT_DEFAULT_TIME 5 /* seconds */ |
| 32 | #define WDT_MAX_TIME 256 /* seconds */ |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 33 | |
| 34 | static int wdt_time = WDT_DEFAULT_TIME; |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 35 | static bool nowayout = WATCHDOG_NOWAYOUT; |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 36 | |
| 37 | module_param(wdt_time, int, 0); |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 38 | MODULE_PARM_DESC(wdt_time, "Watchdog time in seconds. (default=" |
| 39 | __MODULE_STRING(WDT_DEFAULT_TIME) ")"); |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 40 | |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 41 | #ifdef CONFIG_WATCHDOG_NOWAYOUT |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 42 | module_param(nowayout, bool, 0); |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 43 | MODULE_PARM_DESC(nowayout, |
| 44 | "Watchdog cannot be stopped once started (default=" |
| 45 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 46 | #endif |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 47 | |
| 48 | |
| 49 | static unsigned long at91wdt_busy; |
| 50 | |
| 51 | /* ......................................................................... */ |
| 52 | |
| 53 | /* |
| 54 | * Disable the watchdog. |
| 55 | */ |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 56 | static inline void at91_wdt_stop(void) |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 57 | { |
Jean-Christophe PLAGNIOL-VILLARD | 5e9cf5e | 2012-02-20 11:07:39 +0100 | [diff] [blame] | 58 | at91_st_write(AT91_ST_WDMR, AT91_ST_EXTEN); |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 59 | } |
| 60 | |
| 61 | /* |
| 62 | * Enable and reset the watchdog. |
| 63 | */ |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 64 | static inline void at91_wdt_start(void) |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 65 | { |
Jean-Christophe PLAGNIOL-VILLARD | 5e9cf5e | 2012-02-20 11:07:39 +0100 | [diff] [blame] | 66 | at91_st_write(AT91_ST_WDMR, AT91_ST_EXTEN | AT91_ST_RSTEN | |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 67 | (((65536 * wdt_time) >> 8) & AT91_ST_WDV)); |
Jean-Christophe PLAGNIOL-VILLARD | 5e9cf5e | 2012-02-20 11:07:39 +0100 | [diff] [blame] | 68 | at91_st_write(AT91_ST_CR, AT91_ST_WDRST); |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 69 | } |
| 70 | |
| 71 | /* |
| 72 | * Reload the watchdog timer. (ie, pat the watchdog) |
| 73 | */ |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 74 | static inline void at91_wdt_reload(void) |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 75 | { |
Jean-Christophe PLAGNIOL-VILLARD | 5e9cf5e | 2012-02-20 11:07:39 +0100 | [diff] [blame] | 76 | at91_st_write(AT91_ST_CR, AT91_ST_WDRST); |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 77 | } |
| 78 | |
| 79 | /* ......................................................................... */ |
| 80 | |
| 81 | /* |
| 82 | * Watchdog device is opened, and watchdog starts running. |
| 83 | */ |
| 84 | static int at91_wdt_open(struct inode *inode, struct file *file) |
| 85 | { |
| 86 | if (test_and_set_bit(0, &at91wdt_busy)) |
| 87 | return -EBUSY; |
| 88 | |
| 89 | at91_wdt_start(); |
| 90 | return nonseekable_open(inode, file); |
| 91 | } |
| 92 | |
| 93 | /* |
| 94 | * Close the watchdog device. |
| 95 | * If CONFIG_WATCHDOG_NOWAYOUT is NOT defined then the watchdog is also |
| 96 | * disabled. |
| 97 | */ |
| 98 | static int at91_wdt_close(struct inode *inode, struct file *file) |
| 99 | { |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 100 | /* Disable the watchdog when file is closed */ |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 101 | if (!nowayout) |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 102 | at91_wdt_stop(); |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 103 | |
| 104 | clear_bit(0, &at91wdt_busy); |
| 105 | return 0; |
| 106 | } |
| 107 | |
| 108 | /* |
| 109 | * Change the watchdog time interval. |
| 110 | */ |
| 111 | static int at91_wdt_settimeout(int new_time) |
| 112 | { |
| 113 | /* |
Andrew Victor | 2af29b7 | 2009-02-11 21:23:10 +0100 | [diff] [blame] | 114 | * All counting occurs at SLOW_CLOCK / 128 = 256 Hz |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 115 | * |
| 116 | * Since WDV is a 16-bit counter, the maximum period is |
Andrew Victor | 2af29b7 | 2009-02-11 21:23:10 +0100 | [diff] [blame] | 117 | * 65536 / 256 = 256 seconds. |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 118 | */ |
| 119 | if ((new_time <= 0) || (new_time > WDT_MAX_TIME)) |
| 120 | return -EINVAL; |
| 121 | |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 122 | /* Set new watchdog time. It will be used when |
| 123 | at91_wdt_start() is called. */ |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 124 | wdt_time = new_time; |
| 125 | return 0; |
| 126 | } |
| 127 | |
Wim Van Sebroeck | 42747d7 | 2009-12-26 18:55:22 +0000 | [diff] [blame] | 128 | static const struct watchdog_info at91_wdt_info = { |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 129 | .identity = "at91 watchdog", |
| 130 | .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING, |
| 131 | }; |
| 132 | |
| 133 | /* |
| 134 | * Handle commands from user-space. |
| 135 | */ |
Adrian Bunk | 3c4fafd | 2008-08-08 18:57:45 +0300 | [diff] [blame] | 136 | static long at91_wdt_ioctl(struct file *file, |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 137 | unsigned int cmd, unsigned long arg) |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 138 | { |
| 139 | void __user *argp = (void __user *)arg; |
| 140 | int __user *p = argp; |
| 141 | int new_value; |
| 142 | |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 143 | switch (cmd) { |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 144 | case WDIOC_GETSUPPORT: |
| 145 | return copy_to_user(argp, &at91_wdt_info, |
| 146 | sizeof(at91_wdt_info)) ? -EFAULT : 0; |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 147 | case WDIOC_GETSTATUS: |
| 148 | case WDIOC_GETBOOTSTATUS: |
| 149 | return put_user(0, p); |
| 150 | case WDIOC_SETOPTIONS: |
| 151 | if (get_user(new_value, p)) |
| 152 | return -EFAULT; |
| 153 | if (new_value & WDIOS_DISABLECARD) |
| 154 | at91_wdt_stop(); |
| 155 | if (new_value & WDIOS_ENABLECARD) |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 156 | at91_wdt_start(); |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 157 | return 0; |
Wim Van Sebroeck | 0c06090 | 2008-07-18 11:41:17 +0000 | [diff] [blame] | 158 | case WDIOC_KEEPALIVE: |
| 159 | at91_wdt_reload(); /* pat the watchdog */ |
| 160 | return 0; |
| 161 | case WDIOC_SETTIMEOUT: |
| 162 | if (get_user(new_value, p)) |
| 163 | return -EFAULT; |
| 164 | if (at91_wdt_settimeout(new_value)) |
| 165 | return -EINVAL; |
| 166 | /* Enable new time value */ |
| 167 | at91_wdt_start(); |
| 168 | /* Return current value */ |
| 169 | return put_user(wdt_time, p); |
| 170 | case WDIOC_GETTIMEOUT: |
| 171 | return put_user(wdt_time, p); |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 172 | default: |
| 173 | return -ENOTTY; |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 174 | } |
| 175 | } |
| 176 | |
| 177 | /* |
| 178 | * Pat the watchdog whenever device is written to. |
| 179 | */ |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 180 | static ssize_t at91_wdt_write(struct file *file, const char *data, |
| 181 | size_t len, loff_t *ppos) |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 182 | { |
| 183 | at91_wdt_reload(); /* pat the watchdog */ |
| 184 | return len; |
| 185 | } |
| 186 | |
| 187 | /* ......................................................................... */ |
| 188 | |
Arjan van de Ven | 62322d2 | 2006-07-03 00:24:21 -0700 | [diff] [blame] | 189 | static const struct file_operations at91wdt_fops = { |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 190 | .owner = THIS_MODULE, |
| 191 | .llseek = no_llseek, |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 192 | .unlocked_ioctl = at91_wdt_ioctl, |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 193 | .open = at91_wdt_open, |
| 194 | .release = at91_wdt_close, |
| 195 | .write = at91_wdt_write, |
| 196 | }; |
| 197 | |
| 198 | static struct miscdevice at91wdt_miscdev = { |
| 199 | .minor = WATCHDOG_MINOR, |
| 200 | .name = "watchdog", |
| 201 | .fops = &at91wdt_fops, |
| 202 | }; |
| 203 | |
Bill Pemberton | 2d991a1 | 2012-11-19 13:21:41 -0500 | [diff] [blame] | 204 | static int at91wdt_probe(struct platform_device *pdev) |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 205 | { |
| 206 | int res; |
| 207 | |
Andrew Victor | e0b79e0 | 2006-12-04 15:56:18 +0200 | [diff] [blame] | 208 | if (at91wdt_miscdev.parent) |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 209 | return -EBUSY; |
Andrew Victor | e0b79e0 | 2006-12-04 15:56:18 +0200 | [diff] [blame] | 210 | at91wdt_miscdev.parent = &pdev->dev; |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 211 | |
| 212 | res = misc_register(&at91wdt_miscdev); |
| 213 | if (res) |
| 214 | return res; |
| 215 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 216 | pr_info("AT91 Watchdog Timer enabled (%d seconds%s)\n", |
| 217 | wdt_time, nowayout ? ", nowayout" : ""); |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 218 | return 0; |
| 219 | } |
| 220 | |
Bill Pemberton | 4b12b89 | 2012-11-19 13:26:24 -0500 | [diff] [blame] | 221 | static int at91wdt_remove(struct platform_device *pdev) |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 222 | { |
| 223 | int res; |
| 224 | |
| 225 | res = misc_deregister(&at91wdt_miscdev); |
| 226 | if (!res) |
Andrew Victor | e0b79e0 | 2006-12-04 15:56:18 +0200 | [diff] [blame] | 227 | at91wdt_miscdev.parent = NULL; |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 228 | |
| 229 | return res; |
| 230 | } |
| 231 | |
| 232 | static void at91wdt_shutdown(struct platform_device *pdev) |
| 233 | { |
| 234 | at91_wdt_stop(); |
| 235 | } |
| 236 | |
| 237 | #ifdef CONFIG_PM |
| 238 | |
| 239 | static int at91wdt_suspend(struct platform_device *pdev, pm_message_t message) |
| 240 | { |
| 241 | at91_wdt_stop(); |
| 242 | return 0; |
| 243 | } |
| 244 | |
| 245 | static int at91wdt_resume(struct platform_device *pdev) |
| 246 | { |
| 247 | if (at91wdt_busy) |
| 248 | at91_wdt_start(); |
Ilpo Jarvinen | 95f62bd | 2008-08-19 09:01:14 +0300 | [diff] [blame] | 249 | return 0; |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 250 | } |
| 251 | |
| 252 | #else |
| 253 | #define at91wdt_suspend NULL |
| 254 | #define at91wdt_resume NULL |
| 255 | #endif |
| 256 | |
Joachim Eastwood | a6a1bcd | 2013-02-14 23:02:29 +0100 | [diff] [blame] | 257 | static const struct of_device_id at91_wdt_dt_ids[] = { |
| 258 | { .compatible = "atmel,at91rm9200-wdt" }, |
| 259 | { /* sentinel */ } |
| 260 | }; |
| 261 | MODULE_DEVICE_TABLE(of, at91_wdt_dt_ids); |
| 262 | |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 263 | static struct platform_driver at91wdt_driver = { |
| 264 | .probe = at91wdt_probe, |
Bill Pemberton | 8226871 | 2012-11-19 13:21:12 -0500 | [diff] [blame] | 265 | .remove = at91wdt_remove, |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 266 | .shutdown = at91wdt_shutdown, |
| 267 | .suspend = at91wdt_suspend, |
| 268 | .resume = at91wdt_resume, |
| 269 | .driver = { |
| 270 | .name = "at91_wdt", |
| 271 | .owner = THIS_MODULE, |
Sachin Kamat | 85eee81 | 2013-09-30 10:12:51 +0530 | [diff] [blame] | 272 | .of_match_table = at91_wdt_dt_ids, |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 273 | }, |
| 274 | }; |
| 275 | |
| 276 | static int __init at91_wdt_init(void) |
| 277 | { |
Alan Cox | 2760600 | 2008-05-19 14:05:19 +0100 | [diff] [blame] | 278 | /* Check that the heartbeat value is within range; |
| 279 | if not reset to the default */ |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 280 | if (at91_wdt_settimeout(wdt_time)) { |
| 281 | at91_wdt_settimeout(WDT_DEFAULT_TIME); |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 282 | pr_info("wdt_time value must be 1 <= wdt_time <= 256, using %d\n", |
| 283 | wdt_time); |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 284 | } |
| 285 | |
| 286 | return platform_driver_register(&at91wdt_driver); |
| 287 | } |
| 288 | |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 289 | static void __exit at91_wdt_exit(void) |
| 290 | { |
Andrew Victor | dfc7bd9 | 2006-05-21 15:32:59 +0200 | [diff] [blame] | 291 | platform_driver_unregister(&at91wdt_driver); |
Andrew Victor | 853807f | 2006-03-14 11:11:04 +0200 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | module_init(at91_wdt_init); |
| 295 | module_exit(at91_wdt_exit); |
| 296 | |
| 297 | MODULE_AUTHOR("Andrew Victor"); |
| 298 | MODULE_DESCRIPTION("Watchdog driver for Atmel AT91RM9200"); |
| 299 | MODULE_LICENSE("GPL"); |
Kay Sievers | f37d193 | 2008-04-10 21:29:23 -0700 | [diff] [blame] | 300 | MODULE_ALIAS("platform:at91_wdt"); |