David S. Miller | 8ab0dc3 | 2008-08-29 17:07:01 -0700 | [diff] [blame] | 1 | /* cpwd.c - driver implementation for hardware watchdog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | * timers found on Sun Microsystems CP1400 and CP1500 boards. |
| 3 | * |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 4 | * This device supports both the generic Linux watchdog |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 5 | * interface and Solaris-compatible ioctls as best it is |
| 6 | * able. |
| 7 | * |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 8 | * NOTE: CP1400 systems appear to have a defective intr_mask |
| 9 | * register on the PLD, preventing the disabling of |
| 10 | * timer interrupts. We use a timer to periodically |
| 11 | * reset 'stopped' watchdogs on affected platforms. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | * |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 13 | * Copyright (c) 2000 Eric Brower (ebrower@usa.net) |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 14 | * Copyright (C) 2008 David S. Miller <davem@davemloft.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | */ |
| 16 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 17 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | #include <linux/kernel.h> |
| 20 | #include <linux/module.h> |
| 21 | #include <linux/fs.h> |
| 22 | #include <linux/errno.h> |
| 23 | #include <linux/major.h> |
| 24 | #include <linux/init.h> |
| 25 | #include <linux/miscdevice.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/interrupt.h> |
| 27 | #include <linux/ioport.h> |
| 28 | #include <linux/timer.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 29 | #include <linux/slab.h> |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 30 | #include <linux/mutex.h> |
Andrew Morton | 347e03d | 2007-07-15 23:42:03 -0700 | [diff] [blame] | 31 | #include <linux/io.h> |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 32 | #include <linux/of.h> |
| 33 | #include <linux/of_device.h> |
Wim Van Sebroeck | 278aefc | 2009-03-18 09:09:26 +0000 | [diff] [blame] | 34 | #include <linux/uaccess.h> |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 35 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 36 | #include <asm/irq.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <asm/watchdog.h> |
| 38 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 39 | #define DRIVER_NAME "cpwd" |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | #define WD_OBPNAME "watchdog" |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 42 | #define WD_BADMODEL "SUNW,501-5336" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 43 | #define WD_BTIMEOUT (jiffies + (HZ * 1000)) |
| 44 | #define WD_BLIMIT 0xFFFF |
| 45 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | #define WD0_MINOR 212 |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 47 | #define WD1_MINOR 213 |
| 48 | #define WD2_MINOR 214 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 49 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 50 | /* Internal driver definitions. */ |
| 51 | #define WD0_ID 0 |
| 52 | #define WD1_ID 1 |
| 53 | #define WD2_ID 2 |
| 54 | #define WD_NUMDEVS 3 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 55 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 56 | #define WD_INTR_OFF 0 |
| 57 | #define WD_INTR_ON 1 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | |
| 59 | #define WD_STAT_INIT 0x01 /* Watchdog timer is initialized */ |
| 60 | #define WD_STAT_BSTOP 0x02 /* Watchdog timer is brokenstopped */ |
| 61 | #define WD_STAT_SVCD 0x04 /* Watchdog interrupt occurred */ |
| 62 | |
| 63 | /* Register value definitions |
| 64 | */ |
| 65 | #define WD0_INTR_MASK 0x01 /* Watchdog device interrupt masks */ |
| 66 | #define WD1_INTR_MASK 0x02 |
| 67 | #define WD2_INTR_MASK 0x04 |
| 68 | |
| 69 | #define WD_S_RUNNING 0x01 /* Watchdog device status running */ |
| 70 | #define WD_S_EXPIRED 0x02 /* Watchdog device status expired */ |
| 71 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 72 | struct cpwd { |
| 73 | void __iomem *regs; |
| 74 | spinlock_t lock; |
| 75 | |
| 76 | unsigned int irq; |
| 77 | |
| 78 | unsigned long timeout; |
| 79 | bool enabled; |
| 80 | bool reboot; |
| 81 | bool broken; |
| 82 | bool initialized; |
| 83 | |
| 84 | struct { |
| 85 | struct miscdevice misc; |
| 86 | void __iomem *regs; |
| 87 | u8 intr_mask; |
| 88 | u8 runstatus; |
| 89 | u16 timeout; |
| 90 | } devs[WD_NUMDEVS]; |
| 91 | }; |
| 92 | |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 93 | static DEFINE_MUTEX(cpwd_mutex); |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 94 | static struct cpwd *cpwd_device; |
| 95 | |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 96 | /* Sun uses Altera PLD EPF8820ATC144-4 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | * providing three hardware watchdogs: |
| 98 | * |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 99 | * 1) RIC - sends an interrupt when triggered |
| 100 | * 2) XIR - asserts XIR_B_RESET when triggered, resets CPU |
| 101 | * 3) POR - asserts POR_B_RESET when triggered, resets CPU, backplane, board |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 102 | * |
| 103 | *** Timer register block definition (struct wd_timer_regblk) |
| 104 | * |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 105 | * dcntr and limit registers (halfword access): |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | * ------------------- |
| 107 | * | 15 | ...| 1 | 0 | |
| 108 | * ------------------- |
| 109 | * |- counter val -| |
| 110 | * ------------------- |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 111 | * dcntr - Current 16-bit downcounter value. |
| 112 | * When downcounter reaches '0' watchdog expires. |
| 113 | * Reading this register resets downcounter with |
| 114 | * 'limit' value. |
| 115 | * limit - 16-bit countdown value in 1/10th second increments. |
| 116 | * Writing this register begins countdown with input value. |
| 117 | * Reading from this register does not affect counter. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 118 | * NOTES: After watchdog reset, dcntr and limit contain '1' |
| 119 | * |
| 120 | * status register (byte access): |
| 121 | * --------------------------- |
| 122 | * | 7 | ... | 2 | 1 | 0 | |
| 123 | * --------------+------------ |
| 124 | * |- UNUSED -| EXP | RUN | |
| 125 | * --------------------------- |
| 126 | * status- Bit 0 - Watchdog is running |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 127 | * Bit 1 - Watchdog has expired |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | * |
| 129 | *** PLD register block definition (struct wd_pld_regblk) |
| 130 | * |
| 131 | * intr_mask register (byte access): |
| 132 | * --------------------------------- |
| 133 | * | 7 | ... | 3 | 2 | 1 | 0 | |
| 134 | * +-------------+------------------ |
| 135 | * |- UNUSED -| WD3 | WD2 | WD1 | |
| 136 | * --------------------------------- |
| 137 | * WD3 - 1 == Interrupt disabled for watchdog 3 |
| 138 | * WD2 - 1 == Interrupt disabled for watchdog 2 |
| 139 | * WD1 - 1 == Interrupt disabled for watchdog 1 |
| 140 | * |
| 141 | * pld_status register (byte access): |
| 142 | * UNKNOWN, MAGICAL MYSTERY REGISTER |
| 143 | * |
| 144 | */ |
| 145 | #define WD_TIMER_REGSZ 16 |
| 146 | #define WD0_OFF 0 |
| 147 | #define WD1_OFF (WD_TIMER_REGSZ * 1) |
| 148 | #define WD2_OFF (WD_TIMER_REGSZ * 2) |
| 149 | #define PLD_OFF (WD_TIMER_REGSZ * 3) |
| 150 | |
| 151 | #define WD_DCNTR 0x00 |
| 152 | #define WD_LIMIT 0x04 |
| 153 | #define WD_STATUS 0x08 |
| 154 | |
| 155 | #define PLD_IMASK (PLD_OFF + 0x00) |
| 156 | #define PLD_STATUS (PLD_OFF + 0x04) |
| 157 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 158 | static struct timer_list cpwd_timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 159 | |
Wim Van Sebroeck | a77dba7 | 2009-04-14 20:20:07 +0000 | [diff] [blame] | 160 | static int wd0_timeout; |
| 161 | static int wd1_timeout; |
| 162 | static int wd2_timeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 163 | |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 164 | module_param(wd0_timeout, int, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | MODULE_PARM_DESC(wd0_timeout, "Default watchdog0 timeout in 1/10secs"); |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 166 | module_param(wd1_timeout, int, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | MODULE_PARM_DESC(wd1_timeout, "Default watchdog1 timeout in 1/10secs"); |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 168 | module_param(wd2_timeout, int, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 169 | MODULE_PARM_DESC(wd2_timeout, "Default watchdog2 timeout in 1/10secs"); |
| 170 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 171 | MODULE_AUTHOR("Eric Brower <ebrower@usa.net>"); |
| 172 | MODULE_DESCRIPTION("Hardware watchdog driver for Sun Microsystems CP1400/1500"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 173 | MODULE_LICENSE("GPL"); |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 174 | MODULE_SUPPORTED_DEVICE("watchdog"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 176 | static void cpwd_writew(u16 val, void __iomem *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | { |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 178 | writew(cpu_to_le16(val), addr); |
| 179 | } |
| 180 | static u16 cpwd_readw(void __iomem *addr) |
| 181 | { |
| 182 | u16 val = readw(addr); |
| 183 | |
| 184 | return le16_to_cpu(val); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | } |
| 186 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 187 | static void cpwd_writeb(u8 val, void __iomem *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 188 | { |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 189 | writeb(val, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 190 | } |
| 191 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 192 | static u8 cpwd_readb(void __iomem *addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 193 | { |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 194 | return readb(addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 195 | } |
| 196 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 197 | /* Enable or disable watchdog interrupts |
| 198 | * Because of the CP1400 defect this should only be |
| 199 | * called during initialzation or by wd_[start|stop]timer() |
| 200 | * |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 201 | * index - sub-device index, or -1 for 'all' |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 202 | * enable - non-zero to enable interrupts, zero to disable |
| 203 | */ |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 204 | static void cpwd_toggleintr(struct cpwd *p, int index, int enable) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 205 | { |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 206 | unsigned char curregs = cpwd_readb(p->regs + PLD_IMASK); |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 207 | unsigned char setregs = |
| 208 | (index == -1) ? |
| 209 | (WD0_INTR_MASK | WD1_INTR_MASK | WD2_INTR_MASK) : |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 210 | (p->devs[index].intr_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 211 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 212 | if (enable == WD_INTR_ON) |
| 213 | curregs &= ~setregs; |
| 214 | else |
| 215 | curregs |= setregs; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 216 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 217 | cpwd_writeb(curregs, p->regs + PLD_IMASK); |
| 218 | } |
| 219 | |
| 220 | /* Restarts timer with maximum limit value and |
| 221 | * does not unset 'brokenstop' value. |
| 222 | */ |
| 223 | static void cpwd_resetbrokentimer(struct cpwd *p, int index) |
| 224 | { |
| 225 | cpwd_toggleintr(p, index, WD_INTR_ON); |
| 226 | cpwd_writew(WD_BLIMIT, p->devs[index].regs + WD_LIMIT); |
| 227 | } |
| 228 | |
| 229 | /* Timer method called to reset stopped watchdogs-- |
| 230 | * because of the PLD bug on CP1400, we cannot mask |
| 231 | * interrupts within the PLD so me must continually |
| 232 | * reset the timers ad infinitum. |
| 233 | */ |
| 234 | static void cpwd_brokentimer(unsigned long data) |
| 235 | { |
| 236 | struct cpwd *p = (struct cpwd *) data; |
| 237 | int id, tripped = 0; |
| 238 | |
| 239 | /* kill a running timer instance, in case we |
| 240 | * were called directly instead of by kernel timer |
| 241 | */ |
| 242 | if (timer_pending(&cpwd_timer)) |
| 243 | del_timer(&cpwd_timer); |
| 244 | |
| 245 | for (id = 0; id < WD_NUMDEVS; id++) { |
| 246 | if (p->devs[id].runstatus & WD_STAT_BSTOP) { |
| 247 | ++tripped; |
| 248 | cpwd_resetbrokentimer(p, id); |
| 249 | } |
| 250 | } |
| 251 | |
| 252 | if (tripped) { |
| 253 | /* there is at least one timer brokenstopped-- reschedule */ |
| 254 | cpwd_timer.expires = WD_BTIMEOUT; |
| 255 | add_timer(&cpwd_timer); |
| 256 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 257 | } |
| 258 | |
| 259 | /* Reset countdown timer with 'limit' value and continue countdown. |
| 260 | * This will not start a stopped timer. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 261 | */ |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 262 | static void cpwd_pingtimer(struct cpwd *p, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 263 | { |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 264 | if (cpwd_readb(p->devs[index].regs + WD_STATUS) & WD_S_RUNNING) |
| 265 | cpwd_readw(p->devs[index].regs + WD_DCNTR); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 266 | } |
| 267 | |
| 268 | /* Stop a running watchdog timer-- the timer actually keeps |
| 269 | * running, but the interrupt is masked so that no action is |
| 270 | * taken upon expiration. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 271 | */ |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 272 | static void cpwd_stoptimer(struct cpwd *p, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | { |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 274 | if (cpwd_readb(p->devs[index].regs + WD_STATUS) & WD_S_RUNNING) { |
| 275 | cpwd_toggleintr(p, index, WD_INTR_OFF); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 277 | if (p->broken) { |
| 278 | p->devs[index].runstatus |= WD_STAT_BSTOP; |
| 279 | cpwd_brokentimer((unsigned long) p); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | } |
| 281 | } |
| 282 | } |
| 283 | |
| 284 | /* Start a watchdog timer with the specified limit value |
| 285 | * If the watchdog is running, it will be restarted with |
| 286 | * the provided limit value. |
| 287 | * |
| 288 | * This function will enable interrupts on the specified |
| 289 | * watchdog. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | */ |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 291 | static void cpwd_starttimer(struct cpwd *p, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | { |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 293 | if (p->broken) |
| 294 | p->devs[index].runstatus &= ~WD_STAT_BSTOP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 295 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 296 | p->devs[index].runstatus &= ~WD_STAT_SVCD; |
| 297 | |
| 298 | cpwd_writew(p->devs[index].timeout, p->devs[index].regs + WD_LIMIT); |
| 299 | cpwd_toggleintr(p, index, WD_INTR_ON); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 300 | } |
| 301 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 302 | static int cpwd_getstatus(struct cpwd *p, int index) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 303 | { |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 304 | unsigned char stat = cpwd_readb(p->devs[index].regs + WD_STATUS); |
| 305 | unsigned char intr = cpwd_readb(p->devs[index].regs + PLD_IMASK); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 306 | unsigned char ret = WD_STOPPED; |
| 307 | |
| 308 | /* determine STOPPED */ |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 309 | if (!stat) |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 310 | return ret; |
| 311 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | /* determine EXPIRED vs FREERUN vs RUNNING */ |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 313 | else if (WD_S_EXPIRED & stat) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 314 | ret = WD_EXPIRED; |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 315 | } else if (WD_S_RUNNING & stat) { |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 316 | if (intr & p->devs[index].intr_mask) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 317 | ret = WD_FREERUN; |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 318 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 319 | /* Fudge WD_EXPIRED status for defective CP1400-- |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 320 | * IF timer is running |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 321 | * AND brokenstop is set |
| 322 | * AND an interrupt has been serviced |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | * we are WD_EXPIRED. |
| 324 | * |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 325 | * IF timer is running |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 326 | * AND brokenstop is set |
| 327 | * AND no interrupt has been serviced |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | * we are WD_FREERUN. |
| 329 | */ |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 330 | if (p->broken && |
| 331 | (p->devs[index].runstatus & WD_STAT_BSTOP)) { |
| 332 | if (p->devs[index].runstatus & WD_STAT_SVCD) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 333 | ret = WD_EXPIRED; |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 334 | } else { |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 335 | /* we could as well pretend |
| 336 | * we are expired */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 337 | ret = WD_FREERUN; |
| 338 | } |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 339 | } else { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | ret = WD_RUNNING; |
| 341 | } |
| 342 | } |
| 343 | } |
| 344 | |
| 345 | /* determine SERVICED */ |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 346 | if (p->devs[index].runstatus & WD_STAT_SVCD) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | ret |= WD_SERVICED; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 348 | |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 349 | return ret; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 350 | } |
| 351 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 352 | static irqreturn_t cpwd_interrupt(int irq, void *dev_id) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | { |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 354 | struct cpwd *p = dev_id; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 356 | /* Only WD0 will interrupt-- others are NMI and we won't |
| 357 | * see them here.... |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 358 | */ |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 359 | spin_lock_irq(&p->lock); |
| 360 | |
| 361 | cpwd_stoptimer(p, WD0_ID); |
| 362 | p->devs[WD0_ID].runstatus |= WD_STAT_SVCD; |
| 363 | |
| 364 | spin_unlock_irq(&p->lock); |
| 365 | |
| 366 | return IRQ_HANDLED; |
| 367 | } |
| 368 | |
| 369 | static int cpwd_open(struct inode *inode, struct file *f) |
| 370 | { |
| 371 | struct cpwd *p = cpwd_device; |
| 372 | |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 373 | mutex_lock(&cpwd_mutex); |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 374 | switch (iminor(inode)) { |
| 375 | case WD0_MINOR: |
| 376 | case WD1_MINOR: |
| 377 | case WD2_MINOR: |
| 378 | break; |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 379 | |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 380 | default: |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 381 | mutex_unlock(&cpwd_mutex); |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 382 | return -ENODEV; |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 383 | } |
| 384 | |
| 385 | /* Register IRQ on first open of device */ |
| 386 | if (!p->initialized) { |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 387 | if (request_irq(p->irq, &cpwd_interrupt, |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 388 | IRQF_SHARED, DRIVER_NAME, p)) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 389 | pr_err("Cannot register IRQ %d\n", p->irq); |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 390 | mutex_unlock(&cpwd_mutex); |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 391 | return -EBUSY; |
| 392 | } |
| 393 | p->initialized = true; |
| 394 | } |
| 395 | |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 396 | mutex_unlock(&cpwd_mutex); |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 397 | |
| 398 | return nonseekable_open(inode, f); |
| 399 | } |
| 400 | |
| 401 | static int cpwd_release(struct inode *inode, struct file *file) |
| 402 | { |
| 403 | return 0; |
| 404 | } |
| 405 | |
Wim Van Sebroeck | 9626dd7 | 2009-01-21 11:13:11 +0000 | [diff] [blame] | 406 | static long cpwd_ioctl(struct file *file, unsigned int cmd, unsigned long arg) |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 407 | { |
Wim Van Sebroeck | 42747d7 | 2009-12-26 18:55:22 +0000 | [diff] [blame] | 408 | static const struct watchdog_info info = { |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 409 | .options = WDIOF_SETTIMEOUT, |
| 410 | .firmware_version = 1, |
| 411 | .identity = DRIVER_NAME, |
| 412 | }; |
| 413 | void __user *argp = (void __user *)arg; |
Wim Van Sebroeck | 9626dd7 | 2009-01-21 11:13:11 +0000 | [diff] [blame] | 414 | struct inode *inode = file->f_path.dentry->d_inode; |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 415 | int index = iminor(inode) - WD0_MINOR; |
| 416 | struct cpwd *p = cpwd_device; |
| 417 | int setopt = 0; |
| 418 | |
| 419 | switch (cmd) { |
| 420 | /* Generic Linux IOCTLs */ |
| 421 | case WDIOC_GETSUPPORT: |
| 422 | if (copy_to_user(argp, &info, sizeof(struct watchdog_info))) |
| 423 | return -EFAULT; |
| 424 | break; |
| 425 | |
| 426 | case WDIOC_GETSTATUS: |
| 427 | case WDIOC_GETBOOTSTATUS: |
| 428 | if (put_user(0, (int __user *)argp)) |
| 429 | return -EFAULT; |
| 430 | break; |
| 431 | |
| 432 | case WDIOC_KEEPALIVE: |
| 433 | cpwd_pingtimer(p, index); |
| 434 | break; |
| 435 | |
| 436 | case WDIOC_SETOPTIONS: |
| 437 | if (copy_from_user(&setopt, argp, sizeof(unsigned int))) |
| 438 | return -EFAULT; |
| 439 | |
| 440 | if (setopt & WDIOS_DISABLECARD) { |
| 441 | if (p->enabled) |
| 442 | return -EINVAL; |
| 443 | cpwd_stoptimer(p, index); |
| 444 | } else if (setopt & WDIOS_ENABLECARD) { |
| 445 | cpwd_starttimer(p, index); |
| 446 | } else { |
| 447 | return -EINVAL; |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 448 | } |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 449 | break; |
| 450 | |
| 451 | /* Solaris-compatible IOCTLs */ |
| 452 | case WIOCGSTAT: |
| 453 | setopt = cpwd_getstatus(p, index); |
| 454 | if (copy_to_user(argp, &setopt, sizeof(unsigned int))) |
| 455 | return -EFAULT; |
| 456 | break; |
| 457 | |
| 458 | case WIOCSTART: |
| 459 | cpwd_starttimer(p, index); |
| 460 | break; |
| 461 | |
| 462 | case WIOCSTOP: |
| 463 | if (p->enabled) |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 464 | return -EINVAL; |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 465 | |
| 466 | cpwd_stoptimer(p, index); |
| 467 | break; |
| 468 | |
| 469 | default: |
| 470 | return -EINVAL; |
| 471 | } |
| 472 | |
| 473 | return 0; |
| 474 | } |
| 475 | |
| 476 | static long cpwd_compat_ioctl(struct file *file, unsigned int cmd, |
| 477 | unsigned long arg) |
| 478 | { |
| 479 | int rval = -ENOIOCTLCMD; |
| 480 | |
| 481 | switch (cmd) { |
| 482 | /* solaris ioctls are specific to this driver */ |
| 483 | case WIOCSTART: |
| 484 | case WIOCSTOP: |
| 485 | case WIOCGSTAT: |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 486 | mutex_lock(&cpwd_mutex); |
Wim Van Sebroeck | 9626dd7 | 2009-01-21 11:13:11 +0000 | [diff] [blame] | 487 | rval = cpwd_ioctl(file, cmd, arg); |
Arnd Bergmann | 613655f | 2010-06-02 14:28:52 +0200 | [diff] [blame] | 488 | mutex_unlock(&cpwd_mutex); |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 489 | break; |
| 490 | |
| 491 | /* everything else is handled by the generic compat layer */ |
| 492 | default: |
| 493 | break; |
| 494 | } |
| 495 | |
| 496 | return rval; |
| 497 | } |
| 498 | |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 499 | static ssize_t cpwd_write(struct file *file, const char __user *buf, |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 500 | size_t count, loff_t *ppos) |
| 501 | { |
| 502 | struct inode *inode = file->f_path.dentry->d_inode; |
| 503 | struct cpwd *p = cpwd_device; |
| 504 | int index = iminor(inode); |
| 505 | |
| 506 | if (count) { |
| 507 | cpwd_pingtimer(p, index); |
| 508 | return 1; |
| 509 | } |
| 510 | |
| 511 | return 0; |
| 512 | } |
| 513 | |
Wim Van Sebroeck | 927d696 | 2009-03-18 08:05:24 +0000 | [diff] [blame] | 514 | static ssize_t cpwd_read(struct file *file, char __user *buffer, |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 515 | size_t count, loff_t *ppos) |
| 516 | { |
| 517 | return -EINVAL; |
| 518 | } |
| 519 | |
| 520 | static const struct file_operations cpwd_fops = { |
Wim Van Sebroeck | 9626dd7 | 2009-01-21 11:13:11 +0000 | [diff] [blame] | 521 | .owner = THIS_MODULE, |
| 522 | .unlocked_ioctl = cpwd_ioctl, |
| 523 | .compat_ioctl = cpwd_compat_ioctl, |
| 524 | .open = cpwd_open, |
| 525 | .write = cpwd_write, |
| 526 | .read = cpwd_read, |
| 527 | .release = cpwd_release, |
Arnd Bergmann | 6038f37 | 2010-08-15 18:52:59 +0200 | [diff] [blame] | 528 | .llseek = no_llseek, |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 529 | }; |
| 530 | |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 531 | static int __devinit cpwd_probe(struct platform_device *op) |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 532 | { |
| 533 | struct device_node *options; |
| 534 | const char *str_prop; |
| 535 | const void *prop_val; |
| 536 | int i, err = -EINVAL; |
| 537 | struct cpwd *p; |
| 538 | |
| 539 | if (cpwd_device) |
| 540 | return -EINVAL; |
| 541 | |
| 542 | p = kzalloc(sizeof(*p), GFP_KERNEL); |
| 543 | err = -ENOMEM; |
| 544 | if (!p) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 545 | pr_err("Unable to allocate struct cpwd\n"); |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 546 | goto out; |
| 547 | } |
| 548 | |
Grant Likely | 1636f8a | 2010-06-18 11:09:58 -0600 | [diff] [blame] | 549 | p->irq = op->archdata.irqs[0]; |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 550 | |
| 551 | spin_lock_init(&p->lock); |
| 552 | |
| 553 | p->regs = of_ioremap(&op->resource[0], 0, |
| 554 | 4 * WD_TIMER_REGSZ, DRIVER_NAME); |
| 555 | if (!p->regs) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 556 | pr_err("Unable to map registers\n"); |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 557 | goto out_free; |
| 558 | } |
| 559 | |
| 560 | options = of_find_node_by_path("/options"); |
| 561 | err = -ENODEV; |
| 562 | if (!options) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 563 | pr_err("Unable to find /options node\n"); |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 564 | goto out_iounmap; |
| 565 | } |
| 566 | |
| 567 | prop_val = of_get_property(options, "watchdog-enable?", NULL); |
| 568 | p->enabled = (prop_val ? true : false); |
| 569 | |
| 570 | prop_val = of_get_property(options, "watchdog-reboot?", NULL); |
| 571 | p->reboot = (prop_val ? true : false); |
| 572 | |
| 573 | str_prop = of_get_property(options, "watchdog-timeout", NULL); |
| 574 | if (str_prop) |
| 575 | p->timeout = simple_strtoul(str_prop, NULL, 10); |
| 576 | |
| 577 | /* CP1400s seem to have broken PLD implementations-- the |
| 578 | * interrupt_mask register cannot be written, so no timer |
| 579 | * interrupts can be masked within the PLD. |
| 580 | */ |
Grant Likely | 61c7a08 | 2010-04-13 16:12:29 -0700 | [diff] [blame] | 581 | str_prop = of_get_property(op->dev.of_node, "model", NULL); |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 582 | p->broken = (str_prop && !strcmp(str_prop, WD_BADMODEL)); |
| 583 | |
| 584 | if (!p->enabled) |
| 585 | cpwd_toggleintr(p, -1, WD_INTR_OFF); |
| 586 | |
| 587 | for (i = 0; i < WD_NUMDEVS; i++) { |
| 588 | static const char *cpwd_names[] = { "RIC", "XIR", "POR" }; |
| 589 | static int *parms[] = { &wd0_timeout, |
| 590 | &wd1_timeout, |
| 591 | &wd2_timeout }; |
| 592 | struct miscdevice *mp = &p->devs[i].misc; |
| 593 | |
| 594 | mp->minor = WD0_MINOR + i; |
| 595 | mp->name = cpwd_names[i]; |
| 596 | mp->fops = &cpwd_fops; |
| 597 | |
| 598 | p->devs[i].regs = p->regs + (i * WD_TIMER_REGSZ); |
| 599 | p->devs[i].intr_mask = (WD0_INTR_MASK << i); |
| 600 | p->devs[i].runstatus &= ~WD_STAT_BSTOP; |
| 601 | p->devs[i].runstatus |= WD_STAT_INIT; |
| 602 | p->devs[i].timeout = p->timeout; |
| 603 | if (*parms[i]) |
| 604 | p->devs[i].timeout = *parms[i]; |
| 605 | |
| 606 | err = misc_register(&p->devs[i].misc); |
| 607 | if (err) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 608 | pr_err("Could not register misc device for dev %d\n", |
| 609 | i); |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 610 | goto out_unregister; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | } |
| 612 | } |
| 613 | |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 614 | if (p->broken) { |
| 615 | init_timer(&cpwd_timer); |
Wim Van Sebroeck | 5f3b275 | 2011-02-23 20:04:38 +0000 | [diff] [blame] | 616 | cpwd_timer.function = cpwd_brokentimer; |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 617 | cpwd_timer.data = (unsigned long) p; |
| 618 | cpwd_timer.expires = WD_BTIMEOUT; |
| 619 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 620 | pr_info("PLD defect workaround enabled for model %s\n", |
| 621 | WD_BADMODEL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 622 | } |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 623 | |
| 624 | dev_set_drvdata(&op->dev, p); |
| 625 | cpwd_device = p; |
| 626 | err = 0; |
| 627 | |
| 628 | out: |
| 629 | return err; |
| 630 | |
| 631 | out_unregister: |
| 632 | for (i--; i >= 0; i--) |
| 633 | misc_deregister(&p->devs[i].misc); |
| 634 | |
| 635 | out_iounmap: |
| 636 | of_iounmap(&op->resource[0], p->regs, 4 * WD_TIMER_REGSZ); |
| 637 | |
| 638 | out_free: |
| 639 | kfree(p); |
| 640 | goto out; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 641 | } |
| 642 | |
Grant Likely | 2dc1158 | 2010-08-06 09:25:50 -0600 | [diff] [blame] | 643 | static int __devexit cpwd_remove(struct platform_device *op) |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 644 | { |
| 645 | struct cpwd *p = dev_get_drvdata(&op->dev); |
| 646 | int i; |
| 647 | |
Wim Van Sebroeck | bbd562d | 2011-02-21 10:52:43 +0000 | [diff] [blame] | 648 | for (i = 0; i < WD_NUMDEVS; i++) { |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 649 | misc_deregister(&p->devs[i].misc); |
| 650 | |
| 651 | if (!p->enabled) { |
| 652 | cpwd_stoptimer(p, i); |
| 653 | if (p->devs[i].runstatus & WD_STAT_BSTOP) |
| 654 | cpwd_resetbrokentimer(p, i); |
| 655 | } |
| 656 | } |
| 657 | |
| 658 | if (p->broken) |
| 659 | del_timer_sync(&cpwd_timer); |
| 660 | |
| 661 | if (p->initialized) |
| 662 | free_irq(p->irq, p); |
| 663 | |
| 664 | of_iounmap(&op->resource[0], p->regs, 4 * WD_TIMER_REGSZ); |
| 665 | kfree(p); |
| 666 | |
| 667 | cpwd_device = NULL; |
| 668 | |
| 669 | return 0; |
| 670 | } |
| 671 | |
David S. Miller | fd09831 | 2008-08-31 01:23:17 -0700 | [diff] [blame] | 672 | static const struct of_device_id cpwd_match[] = { |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 673 | { |
| 674 | .name = "watchdog", |
| 675 | }, |
| 676 | {}, |
| 677 | }; |
| 678 | MODULE_DEVICE_TABLE(of, cpwd_match); |
| 679 | |
Grant Likely | 1c48a5c | 2011-02-17 02:43:24 -0700 | [diff] [blame] | 680 | static struct platform_driver cpwd_driver = { |
Grant Likely | 4018294 | 2010-04-13 16:13:02 -0700 | [diff] [blame] | 681 | .driver = { |
| 682 | .name = DRIVER_NAME, |
| 683 | .owner = THIS_MODULE, |
| 684 | .of_match_table = cpwd_match, |
| 685 | }, |
David S. Miller | c5f8556 | 2008-08-29 17:05:51 -0700 | [diff] [blame] | 686 | .probe = cpwd_probe, |
| 687 | .remove = __devexit_p(cpwd_remove), |
| 688 | }; |
| 689 | |
Axel Lin | b8ec611 | 2011-11-29 13:56:27 +0800 | [diff] [blame] | 690 | module_platform_driver(cpwd_driver); |