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