1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
|
/* $OpenBSD: wdt.c,v 1.5 2003/08/15 20:32:17 tedu Exp $ */
/*-
* Copyright (c) 1998,1999 Alex Nash
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
*/
#include <sys/types.h>
#include <sys/param.h>
#include <sys/device.h>
#include <sys/malloc.h>
#include <sys/systm.h>
#include <sys/kernel.h>
#include <sys/timeout.h>
#include <sys/proc.h>
#include <machine/bus.h>
#include <dev/pci/pcivar.h>
#include <dev/pci/pcireg.h>
#include <dev/pci/pcidevs.h>
#include <dev/pci/wdt50x.h>
struct wdt_softc {
/* wdt_dev must be the first item in the struct */
struct device wdt_dev;
/* feature set: 0 = none 1 = temp, buzzer, etc. */
int features;
/* unit number (unlikely more than one would be present though) */
int unit;
/* how many processes are in WIOCSCHED */
unsigned procs;
/* watchdog timeout */
unsigned timeout_secs;
struct timeout timeout;
/* device access through bus space */
bus_space_tag_t iot;
bus_space_handle_t ioh;
};
/* externally visible functions */
int wdtprobe(struct device *, void *, void *);
void wdtattach(struct device *, struct device *, void *);
int wdtopen(dev_t, int, int, struct proc *);
int wdtclose(dev_t, int, int, struct proc *);
int wdtioctl(dev_t, u_long, caddr_t, int, struct proc *);
/* static functions */
static int wdt_is501(struct wdt_softc *wdt);
static void wdt_8254_count(struct wdt_softc *wdt, int counter, u_int16_t v);
static void wdt_8254_mode(struct wdt_softc *wdt, int counter, int mode);
static void wdt_set_timeout(struct wdt_softc *wdt, unsigned seconds);
static void wdt_timeout(void *arg);
static void wdt_init_timer(struct wdt_softc *wdt);
static void wdt_buzzer_off(struct wdt_softc *wdt);
static int wdt_read_temperature(struct wdt_softc *wdt);
static int wdt_read_status(struct wdt_softc *wdt);
static void wdt_display_status(struct wdt_softc *wdt);
static int wdt_get_state(struct wdt_softc *wdt, struct wdt_state *state);
static void wdt_shutdown(void *arg);
static int wdt_sched(struct wdt_softc *wdt, struct proc *p);
static void wdt_timer_disable(struct wdt_softc *wdt);
static void wdt_timer_enable(struct wdt_softc *wdt, unsigned seconds);
#if WDT_DISABLE_BUZZER
static void wdt_buzzer_disable(struct wdt_softc *wdt);
#else
static void wdt_buzzer_enable(struct wdt_softc *wdt);
#endif
struct cfattach wdt_ca = {
sizeof(struct wdt_softc), wdtprobe, wdtattach
};
struct cfdriver wdt_cd = {
NULL, "wdt", DV_DULL
};
/*
* 8254 counter mappings
*/
#define WDT_8254_TC_LO 0 /* low 16 bits of timeout counter */
#define WDT_8254_TC_HI 1 /* high 16 bits of timeout counter */
#define WDT_8254_BUZZER 2
/*
* WDT500/501 ports
*/
#define WDT_8254_BASE 0
#define WDT_8254_CTL (WDT_8254_BASE + 3)
#define WDT_DISABLE_TIMER 7
#define WDT_ENABLE_TIMER 7
/*
* WDT501 specific ports
*/
#define WDT_STATUS_REG 4
#define WDT_START_BUZZER 4
#define WDT_TEMPERATURE 5
#define WDT_STOP_BUZZER 5
#define UNIT(dev) (minor(dev))
int
wdtprobe (parent, match, aux)
struct device *parent;
void *match, *aux;
{
struct pci_attach_args *const pa = (struct pci_attach_args *)aux;
if (PCI_VENDOR(pa->pa_id) != PCI_VENDOR_INDCOMPSRC ||
PCI_PRODUCT(pa->pa_id) != PCI_PRODUCT_INDCOMPSRC_WDT50x)
return(0);
return(1);
}
void
wdtattach (parent, self, aux)
struct device *parent, *self;
void *aux;
{
struct wdt_softc *wdt = (struct wdt_softc *)self;
struct pci_attach_args *const pa = (struct pci_attach_args *)aux;
int unit;
bus_size_t iosize;
bus_addr_t iobase;
wdt->iot = pa->pa_iot;
unit = wdt->wdt_dev.dv_unit;
/* retrieve the I/O region (BAR2) */
if (pci_io_find(pa->pa_pc, pa->pa_tag, 0x18, &iobase,
&iosize) != 0) {
printf("wdt%d: couldn't find PCI I/O region\n", unit);
return;
}
/* sanity check I/O size */
if (iosize != (bus_size_t)16) {
printf("wdt%d: invalid I/O region size\n", unit);
return;
}
/* map I/O region */
if (bus_space_map(pa->pa_iot, iobase, iosize, 0, &wdt->ioh) != 0) {
printf("wdt%d: couldn't map PCI I/O region\n", unit);
return;
}
/* initialize the watchdog timer structure */
wdt->unit = unit;
wdt->procs = 0;
/* check the feature set available */
if (wdt_is501(wdt))
wdt->features = 1;
else
wdt->features = 0;
/*
* register a callback for system shutdown
* (we need to disable the watchdog timer during shutdown)
*/
if (shutdownhook_establish(wdt_shutdown, wdt) == NULL)
return;
if (wdt->features) {
/*
* turn off the buzzer, it may have been activated
* by a previous timeout
*/
wdt_buzzer_off(wdt);
#ifdef WDT_DISABLE_BUZZER
wdt_buzzer_disable(wdt);
#else
wdt_buzzer_enable(wdt);
#endif
}
/* initialize the timer modes and the lower 16-bit counter */
wdt_init_timer(wdt);
/*
* it appears the timeout queue isn't processed until the
* kernel has fully booted, so we set the first timeout
* far in advance, and subsequent timeouts at the normal
* 30 second interval
*/
wdt_timer_enable(wdt, 90/*seconds*/);
wdt->timeout_secs = 30;
printf("\n");
wdt_display_status(wdt);
}
int
wdtopen (dev_t dev, int flags, int fmt, struct proc *p)
{
if (UNIT(dev) >= wdt_cd.cd_ndevs)
return(ENXIO);
return(0);
}
int
wdtclose (dev_t dev, int flags, int fmt, struct proc *p)
{
return(0);
}
int
wdtioctl (dev_t dev, u_long cmd, caddr_t arg, int flag, struct proc *p)
{
struct wdt_softc *wdt = wdt_cd.cd_devs[UNIT(dev)];
int error;
switch (cmd) {
case WIOCSCHED:
error = wdt_sched(wdt, p);
break;
case WIOCGETSTATE:
if (wdt->features)
error = wdt_get_state(wdt,
(struct wdt_state *)arg);
else
error = ENXIO;
break;
default:
error = ENXIO;
break;
}
return(error);
}
/*
* wdt_is501
*
* Returns non-zero if the card is a 501 model.
*/
static int
wdt_is501 (struct wdt_softc *wdt)
{
/*
* It makes too much sense to detect the card type
* by the device ID, so we have to resort to testing
* the presence of a register to determine the type.
*/
int v = bus_space_read_1(wdt->iot, wdt->ioh, WDT_TEMPERATURE);
/* XXX may not be reliable */
if (v == 0 || v == 0xFF)
return(0);
return(1);
}
/*
* wdt_8254_count
*
* Loads the specified counter with the 16-bit value 'v'.
*/
static void
wdt_8254_count (struct wdt_softc *wdt, int counter, u_int16_t v)
{
bus_space_write_1(wdt->iot, wdt->ioh,
WDT_8254_BASE + counter, v & 0xFF);
bus_space_write_1(wdt->iot, wdt->ioh, WDT_8254_BASE + counter, v >> 8);
}
/*
* wdt_8254_mode
*
* Sets the mode of the specified counter.
*/
static void
wdt_8254_mode (struct wdt_softc *wdt, int counter, int mode)
{
bus_space_write_1(wdt->iot, wdt->ioh, WDT_8254_CTL,
(counter << 6) | 0x30 | (mode << 1));
}
/*
* wdt_set_timeout
*
* Load the watchdog timer with the specified number of seconds.
*/
static void
wdt_set_timeout (struct wdt_softc *wdt, unsigned seconds)
{
/* 8254 has been programmed with a 2ms period */
u_int16_t v = (u_int16_t)seconds * 50;
/* disable the timer */
(void)bus_space_read_1(wdt->iot, wdt->ioh, WDT_DISABLE_TIMER);
/* load the new timeout count */
wdt_8254_count(wdt, WDT_8254_TC_HI, v);
/* enable the timer */
bus_space_write_1(wdt->iot, wdt->ioh, WDT_ENABLE_TIMER, 0);
}
/*
* wdt_timeout
*
* Kernel timeout handler. This function is called every
* wdt->timeout_secs / 2 seconds. It reloads the watchdog
* counters in one of two ways:
*
* - If there are one or more processes sleeping in a
* WIOCSCHED ioctl(), they are woken up to perform
* the counter reload.
* - If no processes are sleeping in WIOCSCHED, the
* counters are reloaded from here.
*
* Finally, another timeout is scheduled for wdt->timeout_secs
* from now.
*/
static void
wdt_timeout (void *arg)
{
struct wdt_softc *wdt = (struct wdt_softc *)arg;
/* reload counters from proc in WIOCSCHED ioctl()? */
if (wdt->procs)
wakeup(wdt);
else
wdt_set_timeout(wdt, wdt->timeout_secs);
/* schedule another timeout in half the countdown time */
timeout_add(&wdt->timeout, wdt->timeout_secs * hz / 2);
}
/*
* wdt_timer_disable
*
* Disables the watchdog timer and cancels the scheduled (if any)
* kernel timeout.
*/
static void
wdt_timer_disable (struct wdt_softc *wdt)
{
(void)bus_space_read_1(wdt->iot, wdt->ioh, WDT_DISABLE_TIMER);
timeout_del(&wdt->timeout);
}
/*
* wdt_timer_enable
*
* Enables the watchdog timer to expire in the specified number
* of seconds. If 'seconds' is outside the range 2-1800, it
* is silently clamped to be within range.
*/
static void
wdt_timer_enable (struct wdt_softc *wdt, unsigned seconds)
{
int s;
/* clamp range */
if (seconds < 2)
seconds = 2;
if (seconds > 1800)
seconds = 1800;
/* block out the timeout handler */
s = splclock();
wdt_timer_disable(wdt);
wdt->timeout_secs = seconds;
timeout_set(&wdt->timeout, wdt_timeout, wdt);
timeout_add(&wdt->timeout, hz * seconds / 2);
wdt_set_timeout(wdt, seconds);
/* re-enable clock interrupts */
splx(s);
}
/*
* wdt_init_timer
*
* Configure the modes for the watchdog counters and initialize
* the low 16-bits of the watchdog counter to have a period of
* approximately 1/50th of a second.
*/
static void
wdt_init_timer (struct wdt_softc *wdt)
{
wdt_8254_mode(wdt, WDT_8254_TC_LO, 3);
wdt_8254_mode(wdt, WDT_8254_TC_HI, 2);
wdt_8254_count(wdt, WDT_8254_TC_LO, 41666);
}
/*******************************************************************
* WDT501 specific functions
*******************************************************************/
/*
* wdt_buzzer_off
*
* Turns the buzzer off.
*/
static void
wdt_buzzer_off (struct wdt_softc *wdt)
{
bus_space_write_1(wdt->iot, wdt->ioh, WDT_STOP_BUZZER, 0);
}
#ifndef WDT_DISABLE_BUZZER
/*
* wdt_buzzer_enable
*
* Enables the buzzer when the watchdog counter expires.
*/
static void
wdt_buzzer_enable (struct wdt_softc *wdt)
{
bus_space_write_1(wdt->iot, wdt->ioh, WDT_8254_BUZZER, 1);
wdt_8254_mode(wdt, WDT_8254_BUZZER, 1);
}
#else
/*
* wdt_buzzer_disable
*
* Disables the buzzer from sounding when the watchdog counter
* expires.
*/
static void
wdt_buzzer_disable (struct wdt_softc *wdt)
{
wdt_8254_mode(wdt, WDT_8254_BUZZER, 0);
}
#endif
/*
* wdt_read_temperature
*
* Returns the temperature (in Fahrenheit) from the board.
*/
static int
wdt_read_temperature (struct wdt_softc *wdt)
{
unsigned v = bus_space_read_1(wdt->iot, wdt->ioh, WDT_TEMPERATURE);
return((v * 11) / 15 + 7);
}
/*
* wdt_read_status
*
* Returns the status register bits minus the counter refresh
* and IRQ generated bits.
*/
static int
wdt_read_status (struct wdt_softc *wdt)
{
/* mask off counter refresh & IRQ generated bits */
return(bus_space_read_1(wdt->iot, wdt->ioh, WDT_STATUS_REG) & 0x7E);
}
/*
* wdt_display_status
*
* Displays the current timeout, temperature, and power supply
* over/undervoltages to the console.
*/
static void
wdt_display_status (struct wdt_softc *wdt)
{
if (wdt->features) {
int status = wdt_read_status(wdt);
int temp = wdt_read_temperature(wdt);
printf("wdt%d: WDT501 timeout %d secs, temp %d F",
wdt->unit, wdt->timeout_secs, temp);
/* overvoltage bit is active low */
if ((status & WDT_SR_PS_OVER) == 0)
printf(" <PS overvoltage>");
/* undervoltage bit is active low */
if ((status & WDT_SR_PS_UNDER) == 0)
printf(" <PS undervoltage>");
} else {
printf("wdt%d: WDT500 timeout %d secs",
wdt->unit, wdt->timeout_secs);
}
printf("\n");
}
/*
* wdt_get_state
*
* Returns the temperature and status bits.
*/
static int
wdt_get_state (struct wdt_softc *wdt, struct wdt_state *state)
{
state->temperature = wdt_read_temperature(wdt);
state->status = wdt_read_status(wdt);
return(0);
}
/*
* wdt_shutdown
*
* Disables the watchdog timer at system shutdown time.
*/
static void
wdt_shutdown (void *arg)
{
struct wdt_softc *wdt = (struct wdt_softc *)arg;
wdt_timer_disable(wdt);
}
/*
* wdt_sched
*
* Put the process into an infinite loop in which:
*
* - The process sleeps, waiting for a wakeup() from the tsleep()
* handler.
* - When awakened, the process reloads the watchdog counter and
* repeats the loop.
*
* The only way the loop can be broken is if the process is interrupted
* via a signal.
*
* The whole point of this is to cause a watchdog timeout to be
* generated if processes are no longer being scheduled.
*/
static int
wdt_sched (struct wdt_softc *wdt, struct proc *p)
{
int error;
int s;
/*
* Regardless of the device permissions, you must be
* root to do this -- a process which is STOPPED
* while in this function can cause a reboot to occur
* if the counters aren't reloaded within wdt->timeout_secs
* seconds.
*/
if ((error = suser(p, 0)))
return(error);
/* block out the timeout handler */
s = splclock();
/* indicate that we are sleeping */
++wdt->procs;
/* loop until the process is signaled */
while (1) {
error = tsleep(wdt, PCATCH | PSWP, "wdtsch", 0);
wdt_set_timeout(wdt, wdt->timeout_secs);
if (error != 0)
break;
}
/* remove sleeping indication */
--wdt->procs;
/* re-enable timeout handler */
splx(s);
return(error);
}
|