blob: 808eeb4779e4dbeb8f94985753d800ec32a15c0b [file] [log] [blame]
Thomas Gleixner09c434b2019-05-19 13:08:20 +01001// SPDX-License-Identifier: GPL-2.0-only
David S. Miller8ab0dc32008-08-29 17:07:01 -07002/* cpwd.c - driver implementation for hardware watchdog
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 * timers found on Sun Microsystems CP1400 and CP1500 boards.
4 *
Wim Van Sebroeck927d6962009-03-18 08:05:24 +00005 * This device supports both the generic Linux watchdog
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 * interface and Solaris-compatible ioctls as best it is
7 * able.
8 *
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +00009 * NOTE: CP1400 systems appear to have a defective intr_mask
10 * register on the PLD, preventing the disabling of
11 * timer interrupts. We use a timer to periodically
12 * reset 'stopped' watchdogs on affected platforms.
Linus Torvalds1da177e2005-04-16 15:20:36 -070013 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070014 * Copyright (c) 2000 Eric Brower (ebrower@usa.net)
David S. Millerc5f85562008-08-29 17:05:51 -070015 * Copyright (C) 2008 David S. Miller <davem@davemloft.net>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016 */
17
Joe Perches27c766a2012-02-15 15:06:19 -080018#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/kernel.h>
21#include <linux/module.h>
22#include <linux/fs.h>
23#include <linux/errno.h>
24#include <linux/major.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/miscdevice.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/interrupt.h>
27#include <linux/ioport.h>
28#include <linux/timer.h>
Arnd Bergmannc58e8132019-10-08 09:36:16 +020029#include <linux/compat.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090030#include <linux/slab.h>
Arnd Bergmann613655f2010-06-02 14:28:52 +020031#include <linux/mutex.h>
Andrew Morton347e03d2007-07-15 23:42:03 -070032#include <linux/io.h>
David S. Millerc5f85562008-08-29 17:05:51 -070033#include <linux/of.h>
34#include <linux/of_device.h>
Wim Van Sebroeck278aefc2009-03-18 09:09:26 +000035#include <linux/uaccess.h>
David S. Millerc5f85562008-08-29 17:05:51 -070036
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#include <asm/irq.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <asm/watchdog.h>
39
David S. Millerc5f85562008-08-29 17:05:51 -070040#define DRIVER_NAME "cpwd"
David S. Millerc5f85562008-08-29 17:05:51 -070041
Linus Torvalds1da177e2005-04-16 15:20:36 -070042#define WD_OBPNAME "watchdog"
David S. Millerc5f85562008-08-29 17:05:51 -070043#define WD_BADMODEL "SUNW,501-5336"
Linus Torvalds1da177e2005-04-16 15:20:36 -070044#define WD_BTIMEOUT (jiffies + (HZ * 1000))
45#define WD_BLIMIT 0xFFFF
46
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define WD0_MINOR 212
Wim Van Sebroeck927d6962009-03-18 08:05:24 +000048#define WD1_MINOR 213
49#define WD2_MINOR 214
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
David S. Millerc5f85562008-08-29 17:05:51 -070051/* Internal driver definitions. */
52#define WD0_ID 0
53#define WD1_ID 1
54#define WD2_ID 2
55#define WD_NUMDEVS 3
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
David S. Millerc5f85562008-08-29 17:05:51 -070057#define WD_INTR_OFF 0
58#define WD_INTR_ON 1
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
60#define WD_STAT_INIT 0x01 /* Watchdog timer is initialized */
61#define WD_STAT_BSTOP 0x02 /* Watchdog timer is brokenstopped */
62#define WD_STAT_SVCD 0x04 /* Watchdog interrupt occurred */
63
64/* Register value definitions
65 */
66#define WD0_INTR_MASK 0x01 /* Watchdog device interrupt masks */
67#define WD1_INTR_MASK 0x02
68#define WD2_INTR_MASK 0x04
69
70#define WD_S_RUNNING 0x01 /* Watchdog device status running */
71#define WD_S_EXPIRED 0x02 /* Watchdog device status expired */
72
David S. Millerc5f85562008-08-29 17:05:51 -070073struct cpwd {
74 void __iomem *regs;
75 spinlock_t lock;
76
77 unsigned int irq;
78
79 unsigned long timeout;
80 bool enabled;
81 bool reboot;
82 bool broken;
83 bool initialized;
84
85 struct {
86 struct miscdevice misc;
87 void __iomem *regs;
88 u8 intr_mask;
89 u8 runstatus;
90 u16 timeout;
91 } devs[WD_NUMDEVS];
92};
93
Arnd Bergmann613655f2010-06-02 14:28:52 +020094static DEFINE_MUTEX(cpwd_mutex);
David S. Millerc5f85562008-08-29 17:05:51 -070095static struct cpwd *cpwd_device;
96
Wim Van Sebroeck927d6962009-03-18 08:05:24 +000097/* Sun uses Altera PLD EPF8820ATC144-4
Linus Torvalds1da177e2005-04-16 15:20:36 -070098 * providing three hardware watchdogs:
99 *
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000100 * 1) RIC - sends an interrupt when triggered
101 * 2) XIR - asserts XIR_B_RESET when triggered, resets CPU
102 * 3) POR - asserts POR_B_RESET when triggered, resets CPU, backplane, board
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 *
104 *** Timer register block definition (struct wd_timer_regblk)
105 *
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000106 * dcntr and limit registers (halfword access):
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 * -------------------
108 * | 15 | ...| 1 | 0 |
109 * -------------------
110 * |- counter val -|
111 * -------------------
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000112 * dcntr - Current 16-bit downcounter value.
113 * When downcounter reaches '0' watchdog expires.
114 * Reading this register resets downcounter with
115 * 'limit' value.
116 * limit - 16-bit countdown value in 1/10th second increments.
117 * Writing this register begins countdown with input value.
118 * Reading from this register does not affect counter.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * NOTES: After watchdog reset, dcntr and limit contain '1'
120 *
121 * status register (byte access):
122 * ---------------------------
123 * | 7 | ... | 2 | 1 | 0 |
124 * --------------+------------
125 * |- UNUSED -| EXP | RUN |
126 * ---------------------------
127 * status- Bit 0 - Watchdog is running
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000128 * Bit 1 - Watchdog has expired
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 *
130 *** PLD register block definition (struct wd_pld_regblk)
131 *
132 * intr_mask register (byte access):
133 * ---------------------------------
134 * | 7 | ... | 3 | 2 | 1 | 0 |
135 * +-------------+------------------
136 * |- UNUSED -| WD3 | WD2 | WD1 |
137 * ---------------------------------
138 * WD3 - 1 == Interrupt disabled for watchdog 3
139 * WD2 - 1 == Interrupt disabled for watchdog 2
140 * WD1 - 1 == Interrupt disabled for watchdog 1
141 *
142 * pld_status register (byte access):
143 * UNKNOWN, MAGICAL MYSTERY REGISTER
144 *
145 */
146#define WD_TIMER_REGSZ 16
147#define WD0_OFF 0
148#define WD1_OFF (WD_TIMER_REGSZ * 1)
149#define WD2_OFF (WD_TIMER_REGSZ * 2)
150#define PLD_OFF (WD_TIMER_REGSZ * 3)
151
152#define WD_DCNTR 0x00
153#define WD_LIMIT 0x04
154#define WD_STATUS 0x08
155
156#define PLD_IMASK (PLD_OFF + 0x00)
157#define PLD_STATUS (PLD_OFF + 0x04)
158
David S. Millerc5f85562008-08-29 17:05:51 -0700159static struct timer_list cpwd_timer;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160
Wim Van Sebroecka77dba72009-04-14 20:20:07 +0000161static int wd0_timeout;
162static int wd1_timeout;
163static int wd2_timeout;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000165module_param(wd0_timeout, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166MODULE_PARM_DESC(wd0_timeout, "Default watchdog0 timeout in 1/10secs");
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000167module_param(wd1_timeout, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168MODULE_PARM_DESC(wd1_timeout, "Default watchdog1 timeout in 1/10secs");
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000169module_param(wd2_timeout, int, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700170MODULE_PARM_DESC(wd2_timeout, "Default watchdog2 timeout in 1/10secs");
171
David S. Millerc5f85562008-08-29 17:05:51 -0700172MODULE_AUTHOR("Eric Brower <ebrower@usa.net>");
173MODULE_DESCRIPTION("Hardware watchdog driver for Sun Microsystems CP1400/1500");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174MODULE_LICENSE("GPL");
David S. Millerc5f85562008-08-29 17:05:51 -0700175MODULE_SUPPORTED_DEVICE("watchdog");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700176
David S. Millerc5f85562008-08-29 17:05:51 -0700177static void cpwd_writew(u16 val, void __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178{
David S. Millerc5f85562008-08-29 17:05:51 -0700179 writew(cpu_to_le16(val), addr);
180}
181static u16 cpwd_readw(void __iomem *addr)
182{
183 u16 val = readw(addr);
184
185 return le16_to_cpu(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186}
187
David S. Millerc5f85562008-08-29 17:05:51 -0700188static void cpwd_writeb(u8 val, void __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
David S. Millerc5f85562008-08-29 17:05:51 -0700190 writeb(val, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
192
David S. Millerc5f85562008-08-29 17:05:51 -0700193static u8 cpwd_readb(void __iomem *addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
David S. Millerc5f85562008-08-29 17:05:51 -0700195 return readb(addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196}
197
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198/* Enable or disable watchdog interrupts
199 * Because of the CP1400 defect this should only be
200 * called during initialzation or by wd_[start|stop]timer()
201 *
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000202 * index - sub-device index, or -1 for 'all'
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 * enable - non-zero to enable interrupts, zero to disable
204 */
David S. Millerc5f85562008-08-29 17:05:51 -0700205static void cpwd_toggleintr(struct cpwd *p, int index, int enable)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
David S. Millerc5f85562008-08-29 17:05:51 -0700207 unsigned char curregs = cpwd_readb(p->regs + PLD_IMASK);
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000208 unsigned char setregs =
209 (index == -1) ?
210 (WD0_INTR_MASK | WD1_INTR_MASK | WD2_INTR_MASK) :
David S. Millerc5f85562008-08-29 17:05:51 -0700211 (p->devs[index].intr_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700212
David S. Millerc5f85562008-08-29 17:05:51 -0700213 if (enable == WD_INTR_ON)
214 curregs &= ~setregs;
215 else
216 curregs |= setregs;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
David S. Millerc5f85562008-08-29 17:05:51 -0700218 cpwd_writeb(curregs, p->regs + PLD_IMASK);
219}
220
221/* Restarts timer with maximum limit value and
222 * does not unset 'brokenstop' value.
223 */
224static void cpwd_resetbrokentimer(struct cpwd *p, int index)
225{
226 cpwd_toggleintr(p, index, WD_INTR_ON);
227 cpwd_writew(WD_BLIMIT, p->devs[index].regs + WD_LIMIT);
228}
229
230/* Timer method called to reset stopped watchdogs--
231 * because of the PLD bug on CP1400, we cannot mask
232 * interrupts within the PLD so me must continually
233 * reset the timers ad infinitum.
234 */
Kees Cook4fa42b42017-10-20 22:47:37 -0700235static void cpwd_brokentimer(struct timer_list *unused)
David S. Millerc5f85562008-08-29 17:05:51 -0700236{
Kees Cook4fa42b42017-10-20 22:47:37 -0700237 struct cpwd *p = cpwd_device;
David S. Millerc5f85562008-08-29 17:05:51 -0700238 int id, tripped = 0;
239
240 /* kill a running timer instance, in case we
241 * were called directly instead of by kernel timer
242 */
243 if (timer_pending(&cpwd_timer))
244 del_timer(&cpwd_timer);
245
246 for (id = 0; id < WD_NUMDEVS; id++) {
247 if (p->devs[id].runstatus & WD_STAT_BSTOP) {
248 ++tripped;
249 cpwd_resetbrokentimer(p, id);
250 }
251 }
252
253 if (tripped) {
254 /* there is at least one timer brokenstopped-- reschedule */
255 cpwd_timer.expires = WD_BTIMEOUT;
256 add_timer(&cpwd_timer);
257 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
259
260/* Reset countdown timer with 'limit' value and continue countdown.
261 * This will not start a stopped timer.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 */
David S. Millerc5f85562008-08-29 17:05:51 -0700263static void cpwd_pingtimer(struct cpwd *p, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264{
David S. Millerc5f85562008-08-29 17:05:51 -0700265 if (cpwd_readb(p->devs[index].regs + WD_STATUS) & WD_S_RUNNING)
266 cpwd_readw(p->devs[index].regs + WD_DCNTR);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267}
268
269/* Stop a running watchdog timer-- the timer actually keeps
270 * running, but the interrupt is masked so that no action is
271 * taken upon expiration.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 */
David S. Millerc5f85562008-08-29 17:05:51 -0700273static void cpwd_stoptimer(struct cpwd *p, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274{
David S. Millerc5f85562008-08-29 17:05:51 -0700275 if (cpwd_readb(p->devs[index].regs + WD_STATUS) & WD_S_RUNNING) {
276 cpwd_toggleintr(p, index, WD_INTR_OFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277
David S. Millerc5f85562008-08-29 17:05:51 -0700278 if (p->broken) {
279 p->devs[index].runstatus |= WD_STAT_BSTOP;
Kees Cook4fa42b42017-10-20 22:47:37 -0700280 cpwd_brokentimer(NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
282 }
283}
284
285/* Start a watchdog timer with the specified limit value
286 * If the watchdog is running, it will be restarted with
287 * the provided limit value.
288 *
289 * This function will enable interrupts on the specified
290 * watchdog.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 */
David S. Millerc5f85562008-08-29 17:05:51 -0700292static void cpwd_starttimer(struct cpwd *p, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
David S. Millerc5f85562008-08-29 17:05:51 -0700294 if (p->broken)
295 p->devs[index].runstatus &= ~WD_STAT_BSTOP;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296
David S. Millerc5f85562008-08-29 17:05:51 -0700297 p->devs[index].runstatus &= ~WD_STAT_SVCD;
298
299 cpwd_writew(p->devs[index].timeout, p->devs[index].regs + WD_LIMIT);
300 cpwd_toggleintr(p, index, WD_INTR_ON);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301}
302
David S. Millerc5f85562008-08-29 17:05:51 -0700303static int cpwd_getstatus(struct cpwd *p, int index)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304{
David S. Millerc5f85562008-08-29 17:05:51 -0700305 unsigned char stat = cpwd_readb(p->devs[index].regs + WD_STATUS);
306 unsigned char intr = cpwd_readb(p->devs[index].regs + PLD_IMASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 unsigned char ret = WD_STOPPED;
308
309 /* determine STOPPED */
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000310 if (!stat)
David S. Millerc5f85562008-08-29 17:05:51 -0700311 return ret;
312
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 /* determine EXPIRED vs FREERUN vs RUNNING */
David S. Millerc5f85562008-08-29 17:05:51 -0700314 else if (WD_S_EXPIRED & stat) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 ret = WD_EXPIRED;
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000316 } else if (WD_S_RUNNING & stat) {
David S. Millerc5f85562008-08-29 17:05:51 -0700317 if (intr & p->devs[index].intr_mask) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 ret = WD_FREERUN;
David S. Millerc5f85562008-08-29 17:05:51 -0700319 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 /* Fudge WD_EXPIRED status for defective CP1400--
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000321 * IF timer is running
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000322 * AND brokenstop is set
323 * AND an interrupt has been serviced
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 * we are WD_EXPIRED.
325 *
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000326 * IF timer is running
Wim Van Sebroeck5f3b2752011-02-23 20:04:38 +0000327 * AND brokenstop is set
328 * AND no interrupt has been serviced
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 * we are WD_FREERUN.
330 */
David S. Millerc5f85562008-08-29 17:05:51 -0700331 if (p->broken &&
332 (p->devs[index].runstatus & WD_STAT_BSTOP)) {
333 if (p->devs[index].runstatus & WD_STAT_SVCD) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 ret = WD_EXPIRED;
David S. Millerc5f85562008-08-29 17:05:51 -0700335 } else {
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000336 /* we could as well pretend
337 * we are expired */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 ret = WD_FREERUN;
339 }
David S. Millerc5f85562008-08-29 17:05:51 -0700340 } else {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 ret = WD_RUNNING;
342 }
343 }
344 }
345
346 /* determine SERVICED */
David S. Millerc5f85562008-08-29 17:05:51 -0700347 if (p->devs[index].runstatus & WD_STAT_SVCD)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 ret |= WD_SERVICED;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000350 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
David S. Millerc5f85562008-08-29 17:05:51 -0700353static irqreturn_t cpwd_interrupt(int irq, void *dev_id)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700354{
David S. Millerc5f85562008-08-29 17:05:51 -0700355 struct cpwd *p = dev_id;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356
David S. Millerc5f85562008-08-29 17:05:51 -0700357 /* Only WD0 will interrupt-- others are NMI and we won't
358 * see them here....
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359 */
David S. Millerc5f85562008-08-29 17:05:51 -0700360 spin_lock_irq(&p->lock);
361
362 cpwd_stoptimer(p, WD0_ID);
363 p->devs[WD0_ID].runstatus |= WD_STAT_SVCD;
364
365 spin_unlock_irq(&p->lock);
366
367 return IRQ_HANDLED;
368}
369
370static int cpwd_open(struct inode *inode, struct file *f)
371{
372 struct cpwd *p = cpwd_device;
373
Arnd Bergmann613655f2010-06-02 14:28:52 +0200374 mutex_lock(&cpwd_mutex);
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000375 switch (iminor(inode)) {
376 case WD0_MINOR:
377 case WD1_MINOR:
378 case WD2_MINOR:
379 break;
David S. Millerc5f85562008-08-29 17:05:51 -0700380
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000381 default:
Arnd Bergmann613655f2010-06-02 14:28:52 +0200382 mutex_unlock(&cpwd_mutex);
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000383 return -ENODEV;
David S. Millerc5f85562008-08-29 17:05:51 -0700384 }
385
386 /* Register IRQ on first open of device */
387 if (!p->initialized) {
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000388 if (request_irq(p->irq, &cpwd_interrupt,
David S. Millerc5f85562008-08-29 17:05:51 -0700389 IRQF_SHARED, DRIVER_NAME, p)) {
Joe Perches27c766a2012-02-15 15:06:19 -0800390 pr_err("Cannot register IRQ %d\n", p->irq);
Arnd Bergmann613655f2010-06-02 14:28:52 +0200391 mutex_unlock(&cpwd_mutex);
David S. Millerc5f85562008-08-29 17:05:51 -0700392 return -EBUSY;
393 }
394 p->initialized = true;
395 }
396
Arnd Bergmann613655f2010-06-02 14:28:52 +0200397 mutex_unlock(&cpwd_mutex);
David S. Millerc5f85562008-08-29 17:05:51 -0700398
Kirill Smelkovc5bf68f2019-03-26 23:51:19 +0300399 return stream_open(inode, f);
David S. Millerc5f85562008-08-29 17:05:51 -0700400}
401
402static int cpwd_release(struct inode *inode, struct file *file)
403{
404 return 0;
405}
406
Wim Van Sebroeck9626dd72009-01-21 11:13:11 +0000407static long cpwd_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
David S. Millerc5f85562008-08-29 17:05:51 -0700408{
Wim Van Sebroeck42747d72009-12-26 18:55:22 +0000409 static const struct watchdog_info info = {
David S. Millerc5f85562008-08-29 17:05:51 -0700410 .options = WDIOF_SETTIMEOUT,
411 .firmware_version = 1,
412 .identity = DRIVER_NAME,
413 };
414 void __user *argp = (void __user *)arg;
Al Viro496ad9a2013-01-23 17:07:38 -0500415 struct inode *inode = file_inode(file);
David S. Millerc5f85562008-08-29 17:05:51 -0700416 int index = iminor(inode) - WD0_MINOR;
417 struct cpwd *p = cpwd_device;
418 int setopt = 0;
419
420 switch (cmd) {
421 /* Generic Linux IOCTLs */
422 case WDIOC_GETSUPPORT:
423 if (copy_to_user(argp, &info, sizeof(struct watchdog_info)))
424 return -EFAULT;
425 break;
426
427 case WDIOC_GETSTATUS:
428 case WDIOC_GETBOOTSTATUS:
429 if (put_user(0, (int __user *)argp))
430 return -EFAULT;
431 break;
432
433 case WDIOC_KEEPALIVE:
434 cpwd_pingtimer(p, index);
435 break;
436
437 case WDIOC_SETOPTIONS:
438 if (copy_from_user(&setopt, argp, sizeof(unsigned int)))
439 return -EFAULT;
440
441 if (setopt & WDIOS_DISABLECARD) {
442 if (p->enabled)
443 return -EINVAL;
444 cpwd_stoptimer(p, index);
445 } else if (setopt & WDIOS_ENABLECARD) {
446 cpwd_starttimer(p, index);
447 } else {
448 return -EINVAL;
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000449 }
David S. Millerc5f85562008-08-29 17:05:51 -0700450 break;
451
452 /* Solaris-compatible IOCTLs */
453 case WIOCGSTAT:
454 setopt = cpwd_getstatus(p, index);
455 if (copy_to_user(argp, &setopt, sizeof(unsigned int)))
456 return -EFAULT;
457 break;
458
459 case WIOCSTART:
460 cpwd_starttimer(p, index);
461 break;
462
463 case WIOCSTOP:
464 if (p->enabled)
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000465 return -EINVAL;
David S. Millerc5f85562008-08-29 17:05:51 -0700466
467 cpwd_stoptimer(p, index);
468 break;
469
470 default:
471 return -EINVAL;
472 }
473
474 return 0;
475}
476
Arnd Bergmannc58e8132019-10-08 09:36:16 +0200477static long cpwd_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
478{
479 return cpwd_ioctl(file, cmd, (unsigned long)compat_ptr(arg));
480}
481
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000482static ssize_t cpwd_write(struct file *file, const char __user *buf,
David S. Millerc5f85562008-08-29 17:05:51 -0700483 size_t count, loff_t *ppos)
484{
Al Viro496ad9a2013-01-23 17:07:38 -0500485 struct inode *inode = file_inode(file);
David S. Millerc5f85562008-08-29 17:05:51 -0700486 struct cpwd *p = cpwd_device;
487 int index = iminor(inode);
488
489 if (count) {
490 cpwd_pingtimer(p, index);
491 return 1;
492 }
493
494 return 0;
495}
496
Wim Van Sebroeck927d6962009-03-18 08:05:24 +0000497static ssize_t cpwd_read(struct file *file, char __user *buffer,
David S. Millerc5f85562008-08-29 17:05:51 -0700498 size_t count, loff_t *ppos)
499{
500 return -EINVAL;
501}
502
503static const struct file_operations cpwd_fops = {
Wim Van Sebroeck9626dd72009-01-21 11:13:11 +0000504 .owner = THIS_MODULE,
505 .unlocked_ioctl = cpwd_ioctl,
Arnd Bergmannc58e8132019-10-08 09:36:16 +0200506 .compat_ioctl = cpwd_compat_ioctl,
Wim Van Sebroeck9626dd72009-01-21 11:13:11 +0000507 .open = cpwd_open,
508 .write = cpwd_write,
509 .read = cpwd_read,
510 .release = cpwd_release,
Arnd Bergmann6038f372010-08-15 18:52:59 +0200511 .llseek = no_llseek,
David S. Millerc5f85562008-08-29 17:05:51 -0700512};
513
Bill Pemberton2d991a12012-11-19 13:21:41 -0500514static int cpwd_probe(struct platform_device *op)
David S. Millerc5f85562008-08-29 17:05:51 -0700515{
516 struct device_node *options;
517 const char *str_prop;
518 const void *prop_val;
519 int i, err = -EINVAL;
520 struct cpwd *p;
521
522 if (cpwd_device)
523 return -EINVAL;
524
Amit Kushwahab6621df2016-12-06 10:19:48 -0800525 p = devm_kzalloc(&op->dev, sizeof(*p), GFP_KERNEL);
526 if (!p)
527 return -ENOMEM;
David S. Millerc5f85562008-08-29 17:05:51 -0700528
Grant Likely1636f8a2010-06-18 11:09:58 -0600529 p->irq = op->archdata.irqs[0];
David S. Millerc5f85562008-08-29 17:05:51 -0700530
531 spin_lock_init(&p->lock);
532
533 p->regs = of_ioremap(&op->resource[0], 0,
534 4 * WD_TIMER_REGSZ, DRIVER_NAME);
535 if (!p->regs) {
Joe Perches27c766a2012-02-15 15:06:19 -0800536 pr_err("Unable to map registers\n");
Amit Kushwahab6621df2016-12-06 10:19:48 -0800537 return -ENOMEM;
David S. Millerc5f85562008-08-29 17:05:51 -0700538 }
539
540 options = of_find_node_by_path("/options");
David S. Millerc5f85562008-08-29 17:05:51 -0700541 if (!options) {
Amit Kushwahab6621df2016-12-06 10:19:48 -0800542 err = -ENODEV;
Joe Perches27c766a2012-02-15 15:06:19 -0800543 pr_err("Unable to find /options node\n");
David S. Millerc5f85562008-08-29 17:05:51 -0700544 goto out_iounmap;
545 }
546
547 prop_val = of_get_property(options, "watchdog-enable?", NULL);
548 p->enabled = (prop_val ? true : false);
549
550 prop_val = of_get_property(options, "watchdog-reboot?", NULL);
551 p->reboot = (prop_val ? true : false);
552
553 str_prop = of_get_property(options, "watchdog-timeout", NULL);
554 if (str_prop)
555 p->timeout = simple_strtoul(str_prop, NULL, 10);
556
Yangtao Li06f8f2c2018-11-20 09:54:45 -0500557 of_node_put(options);
558
David S. Millerc5f85562008-08-29 17:05:51 -0700559 /* CP1400s seem to have broken PLD implementations-- the
560 * interrupt_mask register cannot be written, so no timer
561 * interrupts can be masked within the PLD.
562 */
Grant Likely61c7a082010-04-13 16:12:29 -0700563 str_prop = of_get_property(op->dev.of_node, "model", NULL);
David S. Millerc5f85562008-08-29 17:05:51 -0700564 p->broken = (str_prop && !strcmp(str_prop, WD_BADMODEL));
565
566 if (!p->enabled)
567 cpwd_toggleintr(p, -1, WD_INTR_OFF);
568
569 for (i = 0; i < WD_NUMDEVS; i++) {
570 static const char *cpwd_names[] = { "RIC", "XIR", "POR" };
571 static int *parms[] = { &wd0_timeout,
572 &wd1_timeout,
573 &wd2_timeout };
574 struct miscdevice *mp = &p->devs[i].misc;
575
576 mp->minor = WD0_MINOR + i;
577 mp->name = cpwd_names[i];
578 mp->fops = &cpwd_fops;
579
580 p->devs[i].regs = p->regs + (i * WD_TIMER_REGSZ);
581 p->devs[i].intr_mask = (WD0_INTR_MASK << i);
582 p->devs[i].runstatus &= ~WD_STAT_BSTOP;
583 p->devs[i].runstatus |= WD_STAT_INIT;
584 p->devs[i].timeout = p->timeout;
585 if (*parms[i])
586 p->devs[i].timeout = *parms[i];
587
588 err = misc_register(&p->devs[i].misc);
589 if (err) {
Joe Perches27c766a2012-02-15 15:06:19 -0800590 pr_err("Could not register misc device for dev %d\n",
591 i);
David S. Millerc5f85562008-08-29 17:05:51 -0700592 goto out_unregister;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 }
594 }
595
David S. Millerc5f85562008-08-29 17:05:51 -0700596 if (p->broken) {
Kees Cook4fa42b42017-10-20 22:47:37 -0700597 timer_setup(&cpwd_timer, cpwd_brokentimer, 0);
David S. Millerc5f85562008-08-29 17:05:51 -0700598 cpwd_timer.expires = WD_BTIMEOUT;
599
Joe Perches27c766a2012-02-15 15:06:19 -0800600 pr_info("PLD defect workaround enabled for model %s\n",
601 WD_BADMODEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602 }
David S. Millerc5f85562008-08-29 17:05:51 -0700603
Jingoo Han26556b62013-05-23 19:43:43 +0900604 platform_set_drvdata(op, p);
David S. Millerc5f85562008-08-29 17:05:51 -0700605 cpwd_device = p;
Amit Kushwahab6621df2016-12-06 10:19:48 -0800606 return 0;
David S. Millerc5f85562008-08-29 17:05:51 -0700607
608out_unregister:
609 for (i--; i >= 0; i--)
610 misc_deregister(&p->devs[i].misc);
611
612out_iounmap:
613 of_iounmap(&op->resource[0], p->regs, 4 * WD_TIMER_REGSZ);
614
Amit Kushwahab6621df2016-12-06 10:19:48 -0800615 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616}
617
Bill Pemberton4b12b892012-11-19 13:26:24 -0500618static int cpwd_remove(struct platform_device *op)
David S. Millerc5f85562008-08-29 17:05:51 -0700619{
Jingoo Han26556b62013-05-23 19:43:43 +0900620 struct cpwd *p = platform_get_drvdata(op);
David S. Millerc5f85562008-08-29 17:05:51 -0700621 int i;
622
Wim Van Sebroeckbbd562d2011-02-21 10:52:43 +0000623 for (i = 0; i < WD_NUMDEVS; i++) {
David S. Millerc5f85562008-08-29 17:05:51 -0700624 misc_deregister(&p->devs[i].misc);
625
626 if (!p->enabled) {
627 cpwd_stoptimer(p, i);
628 if (p->devs[i].runstatus & WD_STAT_BSTOP)
629 cpwd_resetbrokentimer(p, i);
630 }
631 }
632
633 if (p->broken)
634 del_timer_sync(&cpwd_timer);
635
636 if (p->initialized)
637 free_irq(p->irq, p);
638
639 of_iounmap(&op->resource[0], p->regs, 4 * WD_TIMER_REGSZ);
David S. Millerc5f85562008-08-29 17:05:51 -0700640
641 cpwd_device = NULL;
642
643 return 0;
644}
645
David S. Millerfd098312008-08-31 01:23:17 -0700646static const struct of_device_id cpwd_match[] = {
David S. Millerc5f85562008-08-29 17:05:51 -0700647 {
648 .name = "watchdog",
649 },
650 {},
651};
652MODULE_DEVICE_TABLE(of, cpwd_match);
653
Grant Likely1c48a5c2011-02-17 02:43:24 -0700654static struct platform_driver cpwd_driver = {
Grant Likely40182942010-04-13 16:13:02 -0700655 .driver = {
656 .name = DRIVER_NAME,
Grant Likely40182942010-04-13 16:13:02 -0700657 .of_match_table = cpwd_match,
658 },
David S. Millerc5f85562008-08-29 17:05:51 -0700659 .probe = cpwd_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500660 .remove = cpwd_remove,
David S. Millerc5f85562008-08-29 17:05:51 -0700661};
662
Axel Linb8ec6112011-11-29 13:56:27 +0800663module_platform_driver(cpwd_driver);