Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 1 | /* |
| 2 | * drivers/watchdog/ar7_wdt.c |
| 3 | * |
| 4 | * Copyright (C) 2007 Nicolas Thill <nico@openwrt.org> |
| 5 | * Copyright (c) 2005 Enrik Berkhan <Enrik.Berkhan@akk.org> |
| 6 | * |
| 7 | * Some code taken from: |
| 8 | * National Semiconductor SCx200 Watchdog support |
| 9 | * Copyright (c) 2001,2002 Christer Weinigel <wingel@nano-system.com> |
| 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., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 24 | */ |
| 25 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 26 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 27 | |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 28 | #include <linux/module.h> |
| 29 | #include <linux/moduleparam.h> |
| 30 | #include <linux/errno.h> |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 31 | #include <linux/miscdevice.h> |
Florian Fainelli | 64d4062 | 2009-07-21 12:11:32 +0200 | [diff] [blame] | 32 | #include <linux/platform_device.h> |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 33 | #include <linux/watchdog.h> |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 34 | #include <linux/fs.h> |
| 35 | #include <linux/ioport.h> |
| 36 | #include <linux/io.h> |
| 37 | #include <linux/uaccess.h> |
Florian Fainelli | 780019d | 2010-01-27 09:10:06 +0100 | [diff] [blame] | 38 | #include <linux/clk.h> |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 39 | |
| 40 | #include <asm/addrspace.h> |
Florian Fainelli | c5e7f5a | 2009-06-03 13:05:48 +0200 | [diff] [blame] | 41 | #include <asm/mach-ar7/ar7.h> |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 42 | |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 43 | #define LONGNAME "TI AR7 Watchdog Timer" |
| 44 | |
| 45 | MODULE_AUTHOR("Nicolas Thill <nico@openwrt.org>"); |
| 46 | MODULE_DESCRIPTION(LONGNAME); |
| 47 | MODULE_LICENSE("GPL"); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 48 | |
| 49 | static int margin = 60; |
| 50 | module_param(margin, int, 0); |
| 51 | MODULE_PARM_DESC(margin, "Watchdog margin in seconds"); |
| 52 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 53 | static bool nowayout = WATCHDOG_NOWAYOUT; |
| 54 | module_param(nowayout, bool, 0); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 55 | MODULE_PARM_DESC(nowayout, "Disable watchdog shutdown on close"); |
| 56 | |
| 57 | #define READ_REG(x) readl((void __iomem *)&(x)) |
| 58 | #define WRITE_REG(x, v) writel((v), (void __iomem *)&(x)) |
| 59 | |
| 60 | struct ar7_wdt { |
| 61 | u32 kick_lock; |
| 62 | u32 kick; |
| 63 | u32 change_lock; |
| 64 | u32 change; |
| 65 | u32 disable_lock; |
| 66 | u32 disable; |
| 67 | u32 prescale_lock; |
| 68 | u32 prescale; |
| 69 | }; |
| 70 | |
Alan Cox | 670d59c | 2008-08-04 17:53:22 +0100 | [diff] [blame] | 71 | static unsigned long wdt_is_open; |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 72 | static unsigned expect_close; |
Axel Lin | 1334f32 | 2011-11-29 13:54:01 +0800 | [diff] [blame] | 73 | static DEFINE_SPINLOCK(wdt_lock); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 74 | |
| 75 | /* XXX currently fixed, allows max margin ~68.72 secs */ |
| 76 | #define prescale_value 0xffff |
| 77 | |
Florian Fainelli | 64d4062 | 2009-07-21 12:11:32 +0200 | [diff] [blame] | 78 | /* Resource of the WDT registers */ |
| 79 | static struct resource *ar7_regs_wdt; |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 80 | /* Pointer to the remapped WDT IO space */ |
| 81 | static struct ar7_wdt *ar7_wdt; |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 82 | |
Florian Fainelli | 780019d | 2010-01-27 09:10:06 +0100 | [diff] [blame] | 83 | static struct clk *vbus_clk; |
| 84 | |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 85 | static void ar7_wdt_kick(u32 value) |
| 86 | { |
| 87 | WRITE_REG(ar7_wdt->kick_lock, 0x5555); |
| 88 | if ((READ_REG(ar7_wdt->kick_lock) & 3) == 1) { |
| 89 | WRITE_REG(ar7_wdt->kick_lock, 0xaaaa); |
| 90 | if ((READ_REG(ar7_wdt->kick_lock) & 3) == 3) { |
| 91 | WRITE_REG(ar7_wdt->kick, value); |
| 92 | return; |
| 93 | } |
| 94 | } |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 95 | pr_err("failed to unlock WDT kick reg\n"); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | static void ar7_wdt_prescale(u32 value) |
| 99 | { |
| 100 | WRITE_REG(ar7_wdt->prescale_lock, 0x5a5a); |
| 101 | if ((READ_REG(ar7_wdt->prescale_lock) & 3) == 1) { |
| 102 | WRITE_REG(ar7_wdt->prescale_lock, 0xa5a5); |
| 103 | if ((READ_REG(ar7_wdt->prescale_lock) & 3) == 3) { |
| 104 | WRITE_REG(ar7_wdt->prescale, value); |
| 105 | return; |
| 106 | } |
| 107 | } |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 108 | pr_err("failed to unlock WDT prescale reg\n"); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 109 | } |
| 110 | |
| 111 | static void ar7_wdt_change(u32 value) |
| 112 | { |
| 113 | WRITE_REG(ar7_wdt->change_lock, 0x6666); |
| 114 | if ((READ_REG(ar7_wdt->change_lock) & 3) == 1) { |
| 115 | WRITE_REG(ar7_wdt->change_lock, 0xbbbb); |
| 116 | if ((READ_REG(ar7_wdt->change_lock) & 3) == 3) { |
| 117 | WRITE_REG(ar7_wdt->change, value); |
| 118 | return; |
| 119 | } |
| 120 | } |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 121 | pr_err("failed to unlock WDT change reg\n"); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 122 | } |
| 123 | |
| 124 | static void ar7_wdt_disable(u32 value) |
| 125 | { |
| 126 | WRITE_REG(ar7_wdt->disable_lock, 0x7777); |
| 127 | if ((READ_REG(ar7_wdt->disable_lock) & 3) == 1) { |
| 128 | WRITE_REG(ar7_wdt->disable_lock, 0xcccc); |
| 129 | if ((READ_REG(ar7_wdt->disable_lock) & 3) == 2) { |
| 130 | WRITE_REG(ar7_wdt->disable_lock, 0xdddd); |
| 131 | if ((READ_REG(ar7_wdt->disable_lock) & 3) == 3) { |
| 132 | WRITE_REG(ar7_wdt->disable, value); |
| 133 | return; |
| 134 | } |
| 135 | } |
| 136 | } |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 137 | pr_err("failed to unlock WDT disable reg\n"); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | static void ar7_wdt_update_margin(int new_margin) |
| 141 | { |
| 142 | u32 change; |
Florian Fainelli | 780019d | 2010-01-27 09:10:06 +0100 | [diff] [blame] | 143 | u32 vbus_rate; |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 144 | |
Florian Fainelli | 780019d | 2010-01-27 09:10:06 +0100 | [diff] [blame] | 145 | vbus_rate = clk_get_rate(vbus_clk); |
| 146 | change = new_margin * (vbus_rate / prescale_value); |
Alan Cox | 670d59c | 2008-08-04 17:53:22 +0100 | [diff] [blame] | 147 | if (change < 1) |
| 148 | change = 1; |
| 149 | if (change > 0xffff) |
| 150 | change = 0xffff; |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 151 | ar7_wdt_change(change); |
Florian Fainelli | 780019d | 2010-01-27 09:10:06 +0100 | [diff] [blame] | 152 | margin = change * prescale_value / vbus_rate; |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 153 | pr_info("timer margin %d seconds (prescale %d, change %d, freq %d)\n", |
| 154 | margin, prescale_value, change, vbus_rate); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 155 | } |
| 156 | |
| 157 | static void ar7_wdt_enable_wdt(void) |
| 158 | { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 159 | pr_debug("enabling watchdog timer\n"); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 160 | ar7_wdt_disable(1); |
| 161 | ar7_wdt_kick(1); |
| 162 | } |
| 163 | |
| 164 | static void ar7_wdt_disable_wdt(void) |
| 165 | { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 166 | pr_debug("disabling watchdog timer\n"); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 167 | ar7_wdt_disable(0); |
| 168 | } |
| 169 | |
| 170 | static int ar7_wdt_open(struct inode *inode, struct file *file) |
| 171 | { |
| 172 | /* only allow one at a time */ |
Alan Cox | 670d59c | 2008-08-04 17:53:22 +0100 | [diff] [blame] | 173 | if (test_and_set_bit(0, &wdt_is_open)) |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 174 | return -EBUSY; |
| 175 | ar7_wdt_enable_wdt(); |
| 176 | expect_close = 0; |
| 177 | |
| 178 | return nonseekable_open(inode, file); |
| 179 | } |
| 180 | |
| 181 | static int ar7_wdt_release(struct inode *inode, struct file *file) |
| 182 | { |
| 183 | if (!expect_close) |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 184 | pr_warn("watchdog device closed unexpectedly, will not disable the watchdog timer\n"); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 185 | else if (!nowayout) |
| 186 | ar7_wdt_disable_wdt(); |
Alan Cox | 670d59c | 2008-08-04 17:53:22 +0100 | [diff] [blame] | 187 | clear_bit(0, &wdt_is_open); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 188 | return 0; |
| 189 | } |
| 190 | |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 191 | static ssize_t ar7_wdt_write(struct file *file, const char *data, |
| 192 | size_t len, loff_t *ppos) |
| 193 | { |
| 194 | /* check for a magic close character */ |
| 195 | if (len) { |
| 196 | size_t i; |
| 197 | |
Alan Cox | 670d59c | 2008-08-04 17:53:22 +0100 | [diff] [blame] | 198 | spin_lock(&wdt_lock); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 199 | ar7_wdt_kick(1); |
Alan Cox | 670d59c | 2008-08-04 17:53:22 +0100 | [diff] [blame] | 200 | spin_unlock(&wdt_lock); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 201 | |
| 202 | expect_close = 0; |
| 203 | for (i = 0; i < len; ++i) { |
| 204 | char c; |
Wim Van Sebroeck | 7944d3a | 2008-08-06 20:19:41 +0000 | [diff] [blame] | 205 | if (get_user(c, data + i)) |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 206 | return -EFAULT; |
| 207 | if (c == 'V') |
| 208 | expect_close = 1; |
| 209 | } |
| 210 | |
| 211 | } |
| 212 | return len; |
| 213 | } |
| 214 | |
Alan Cox | 670d59c | 2008-08-04 17:53:22 +0100 | [diff] [blame] | 215 | static long ar7_wdt_ioctl(struct file *file, |
| 216 | unsigned int cmd, unsigned long arg) |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 217 | { |
Wim Van Sebroeck | 42747d7 | 2009-12-26 18:55:22 +0000 | [diff] [blame] | 218 | static const struct watchdog_info ident = { |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 219 | .identity = LONGNAME, |
| 220 | .firmware_version = 1, |
Wim Van Sebroeck | e73a780 | 2009-05-11 18:33:00 +0000 | [diff] [blame] | 221 | .options = (WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | |
| 222 | WDIOF_MAGICCLOSE), |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 223 | }; |
| 224 | int new_margin; |
| 225 | |
| 226 | switch (cmd) { |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 227 | case WDIOC_GETSUPPORT: |
| 228 | if (copy_to_user((struct watchdog_info *)arg, &ident, |
| 229 | sizeof(ident))) |
| 230 | return -EFAULT; |
| 231 | return 0; |
| 232 | case WDIOC_GETSTATUS: |
| 233 | case WDIOC_GETBOOTSTATUS: |
| 234 | if (put_user(0, (int *)arg)) |
| 235 | return -EFAULT; |
| 236 | return 0; |
| 237 | case WDIOC_KEEPALIVE: |
| 238 | ar7_wdt_kick(1); |
| 239 | return 0; |
| 240 | case WDIOC_SETTIMEOUT: |
| 241 | if (get_user(new_margin, (int *)arg)) |
| 242 | return -EFAULT; |
| 243 | if (new_margin < 1) |
| 244 | return -EINVAL; |
| 245 | |
Alan Cox | 670d59c | 2008-08-04 17:53:22 +0100 | [diff] [blame] | 246 | spin_lock(&wdt_lock); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 247 | ar7_wdt_update_margin(new_margin); |
| 248 | ar7_wdt_kick(1); |
Alan Cox | 670d59c | 2008-08-04 17:53:22 +0100 | [diff] [blame] | 249 | spin_unlock(&wdt_lock); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 250 | |
| 251 | case WDIOC_GETTIMEOUT: |
| 252 | if (put_user(margin, (int *)arg)) |
| 253 | return -EFAULT; |
| 254 | return 0; |
Wim Van Sebroeck | 0c06090 | 2008-07-18 11:41:17 +0000 | [diff] [blame] | 255 | default: |
| 256 | return -ENOTTY; |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 257 | } |
| 258 | } |
| 259 | |
Jan Engelhardt | b47a166 | 2008-01-22 20:48:10 +0100 | [diff] [blame] | 260 | static const struct file_operations ar7_wdt_fops = { |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 261 | .owner = THIS_MODULE, |
| 262 | .write = ar7_wdt_write, |
Alan Cox | 670d59c | 2008-08-04 17:53:22 +0100 | [diff] [blame] | 263 | .unlocked_ioctl = ar7_wdt_ioctl, |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 264 | .open = ar7_wdt_open, |
| 265 | .release = ar7_wdt_release, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 266 | .llseek = no_llseek, |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 267 | }; |
| 268 | |
| 269 | static struct miscdevice ar7_wdt_miscdev = { |
| 270 | .minor = WATCHDOG_MINOR, |
| 271 | .name = "watchdog", |
| 272 | .fops = &ar7_wdt_fops, |
| 273 | }; |
| 274 | |
Bill Pemberton | 2d991a1 | 2012-11-19 13:21:41 -0500 | [diff] [blame] | 275 | static int ar7_wdt_probe(struct platform_device *pdev) |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 276 | { |
| 277 | int rc; |
| 278 | |
Florian Fainelli | 64d4062 | 2009-07-21 12:11:32 +0200 | [diff] [blame] | 279 | ar7_regs_wdt = |
| 280 | platform_get_resource_byname(pdev, IORESOURCE_MEM, "regs"); |
Thierry Reding | 4c271bb | 2013-01-21 11:09:25 +0100 | [diff] [blame] | 281 | ar7_wdt = devm_ioremap_resource(&pdev->dev, ar7_regs_wdt); |
| 282 | if (IS_ERR(ar7_wdt)) |
| 283 | return PTR_ERR(ar7_wdt); |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 284 | |
Florian Fainelli | 780019d | 2010-01-27 09:10:06 +0100 | [diff] [blame] | 285 | vbus_clk = clk_get(NULL, "vbus"); |
| 286 | if (IS_ERR(vbus_clk)) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 287 | pr_err("could not get vbus clock\n"); |
Julia Lawall | ae21cc2 | 2012-04-15 12:27:33 +0200 | [diff] [blame] | 288 | return PTR_ERR(vbus_clk); |
Florian Fainelli | 780019d | 2010-01-27 09:10:06 +0100 | [diff] [blame] | 289 | } |
| 290 | |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 291 | ar7_wdt_disable_wdt(); |
| 292 | ar7_wdt_prescale(prescale_value); |
| 293 | ar7_wdt_update_margin(margin); |
| 294 | |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 295 | rc = misc_register(&ar7_wdt_miscdev); |
| 296 | if (rc) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 297 | pr_err("unable to register misc device\n"); |
Julia Lawall | ae21cc2 | 2012-04-15 12:27:33 +0200 | [diff] [blame] | 298 | goto out; |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 299 | } |
Julia Lawall | ae21cc2 | 2012-04-15 12:27:33 +0200 | [diff] [blame] | 300 | return 0; |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 301 | |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 302 | out: |
Julia Lawall | ae21cc2 | 2012-04-15 12:27:33 +0200 | [diff] [blame] | 303 | clk_put(vbus_clk); |
| 304 | vbus_clk = NULL; |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 305 | return rc; |
| 306 | } |
| 307 | |
Bill Pemberton | 4b12b89 | 2012-11-19 13:26:24 -0500 | [diff] [blame] | 308 | static int ar7_wdt_remove(struct platform_device *pdev) |
Matteo Croce | c283cf2 | 2007-09-20 18:06:41 +0200 | [diff] [blame] | 309 | { |
| 310 | misc_deregister(&ar7_wdt_miscdev); |
Julia Lawall | ae21cc2 | 2012-04-15 12:27:33 +0200 | [diff] [blame] | 311 | clk_put(vbus_clk); |
| 312 | vbus_clk = NULL; |
Florian Fainelli | 64d4062 | 2009-07-21 12:11:32 +0200 | [diff] [blame] | 313 | return 0; |
| 314 | } |
| 315 | |
| 316 | static void ar7_wdt_shutdown(struct platform_device *pdev) |
| 317 | { |
| 318 | if (!nowayout) |
| 319 | ar7_wdt_disable_wdt(); |
| 320 | } |
| 321 | |
| 322 | static struct platform_driver ar7_wdt_driver = { |
| 323 | .probe = ar7_wdt_probe, |
Bill Pemberton | 8226871 | 2012-11-19 13:21:12 -0500 | [diff] [blame] | 324 | .remove = ar7_wdt_remove, |
Florian Fainelli | 64d4062 | 2009-07-21 12:11:32 +0200 | [diff] [blame] | 325 | .shutdown = ar7_wdt_shutdown, |
| 326 | .driver = { |
Florian Fainelli | 64d4062 | 2009-07-21 12:11:32 +0200 | [diff] [blame] | 327 | .name = "ar7_wdt", |
| 328 | }, |
| 329 | }; |
| 330 | |
Axel Lin | b8ec611 | 2011-11-29 13:56:27 +0800 | [diff] [blame] | 331 | module_platform_driver(ar7_wdt_driver); |