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