1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /***************************************************************************
3 * Copyright (C) 2006 by Hans Edgington <hans@edgington.nl> *
4 * Copyright (C) 2007-2009 Hans de Goede <hdegoede@redhat.com> *
5 * Copyright (C) 2010 Giel van Schijndel <me@mortis.eu> *
7 ***************************************************************************/
9 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
11 #include <linux/err.h>
13 #include <linux/init.h>
15 #include <linux/ioport.h>
16 #include <linux/miscdevice.h>
17 #include <linux/module.h>
18 #include <linux/mutex.h>
19 #include <linux/notifier.h>
20 #include <linux/reboot.h>
21 #include <linux/uaccess.h>
22 #include <linux/watchdog.h>
24 #define DRVNAME "f71808e_wdt"
26 #define SIO_F71808FG_LD_WDT 0x07 /* Watchdog timer logical device */
27 #define SIO_UNLOCK_KEY 0x87 /* Key to enable Super-I/O */
28 #define SIO_LOCK_KEY 0xAA /* Key to disable Super-I/O */
30 #define SIO_REG_LDSEL 0x07 /* Logical device select */
31 #define SIO_REG_DEVID 0x20 /* Device ID (2 bytes) */
32 #define SIO_REG_DEVREV 0x22 /* Device revision */
33 #define SIO_REG_MANID 0x23 /* Fintek ID (2 bytes) */
34 #define SIO_REG_CLOCK_SEL 0x26 /* Clock select */
35 #define SIO_REG_ROM_ADDR_SEL 0x27 /* ROM address select */
36 #define SIO_F81866_REG_PORT_SEL 0x27 /* F81866 Multi-Function Register */
37 #define SIO_REG_TSI_LEVEL_SEL 0x28 /* TSI Level select */
38 #define SIO_REG_MFUNCT1 0x29 /* Multi function select 1 */
39 #define SIO_REG_MFUNCT2 0x2a /* Multi function select 2 */
40 #define SIO_REG_MFUNCT3 0x2b /* Multi function select 3 */
41 #define SIO_F81866_REG_GPIO1 0x2c /* F81866 GPIO1 Enable Register */
42 #define SIO_REG_ENABLE 0x30 /* Logical device enable */
43 #define SIO_REG_ADDR 0x60 /* Logical device address (2 bytes) */
45 #define SIO_FINTEK_ID 0x1934 /* Manufacturers ID */
46 #define SIO_F71808_ID 0x0901 /* Chipset ID */
47 #define SIO_F71858_ID 0x0507 /* Chipset ID */
48 #define SIO_F71862_ID 0x0601 /* Chipset ID */
49 #define SIO_F71868_ID 0x1106 /* Chipset ID */
50 #define SIO_F71869_ID 0x0814 /* Chipset ID */
51 #define SIO_F71869A_ID 0x1007 /* Chipset ID */
52 #define SIO_F71882_ID 0x0541 /* Chipset ID */
53 #define SIO_F71889_ID 0x0723 /* Chipset ID */
54 #define SIO_F81803_ID 0x1210 /* Chipset ID */
55 #define SIO_F81865_ID 0x0704 /* Chipset ID */
56 #define SIO_F81866_ID 0x1010 /* Chipset ID */
58 #define F71808FG_REG_WDO_CONF 0xf0
59 #define F71808FG_REG_WDT_CONF 0xf5
60 #define F71808FG_REG_WD_TIME 0xf6
62 #define F71808FG_FLAG_WDOUT_EN 7
64 #define F71808FG_FLAG_WDTMOUT_STS 6
65 #define F71808FG_FLAG_WD_EN 5
66 #define F71808FG_FLAG_WD_PULSE 4
67 #define F71808FG_FLAG_WD_UNIT 3
69 #define F81865_REG_WDO_CONF 0xfa
70 #define F81865_FLAG_WDOUT_EN 0
73 #define WATCHDOG_TIMEOUT 60 /* 1 minute default timeout */
74 #define WATCHDOG_MAX_TIMEOUT (60 * 255)
75 #define WATCHDOG_PULSE_WIDTH 125 /* 125 ms, default pulse width for
77 #define WATCHDOG_F71862FG_PIN 63 /* default watchdog reset output
80 static unsigned short force_id
;
81 module_param(force_id
, ushort
, 0);
82 MODULE_PARM_DESC(force_id
, "Override the detected device ID");
84 static const int max_timeout
= WATCHDOG_MAX_TIMEOUT
;
85 static int timeout
= WATCHDOG_TIMEOUT
; /* default timeout in seconds */
86 module_param(timeout
, int, 0);
87 MODULE_PARM_DESC(timeout
,
88 "Watchdog timeout in seconds. 1<= timeout <="
89 __MODULE_STRING(WATCHDOG_MAX_TIMEOUT
) " (default="
90 __MODULE_STRING(WATCHDOG_TIMEOUT
) ")");
92 static unsigned int pulse_width
= WATCHDOG_PULSE_WIDTH
;
93 module_param(pulse_width
, uint
, 0);
94 MODULE_PARM_DESC(pulse_width
,
95 "Watchdog signal pulse width. 0(=level), 1, 25, 30, 125, 150, 5000 or 6000 ms"
96 " (default=" __MODULE_STRING(WATCHDOG_PULSE_WIDTH
) ")");
98 static unsigned int f71862fg_pin
= WATCHDOG_F71862FG_PIN
;
99 module_param(f71862fg_pin
, uint
, 0);
100 MODULE_PARM_DESC(f71862fg_pin
,
101 "Watchdog f71862fg reset output pin configuration. Choose pin 56 or 63"
102 " (default=" __MODULE_STRING(WATCHDOG_F71862FG_PIN
)")");
104 static bool nowayout
= WATCHDOG_NOWAYOUT
;
105 module_param(nowayout
, bool, 0444);
106 MODULE_PARM_DESC(nowayout
, "Disable watchdog shutdown on close");
108 static unsigned int start_withtimeout
;
109 module_param(start_withtimeout
, uint
, 0);
110 MODULE_PARM_DESC(start_withtimeout
, "Start watchdog timer on module load with"
111 " given initial timeout. Zero (default) disables this feature.");
113 enum chips
{ f71808fg
, f71858fg
, f71862fg
, f71868
, f71869
, f71882fg
, f71889fg
,
114 f81803
, f81865
, f81866
};
116 static const char *f71808e_names
[] = {
129 /* Super-I/O Function prototypes */
130 static inline int superio_inb(int base
, int reg
);
131 static inline int superio_inw(int base
, int reg
);
132 static inline void superio_outb(int base
, int reg
, u8 val
);
133 static inline void superio_set_bit(int base
, int reg
, int bit
);
134 static inline void superio_clear_bit(int base
, int reg
, int bit
);
135 static inline int superio_enter(int base
);
136 static inline void superio_select(int base
, int ld
);
137 static inline void superio_exit(int base
);
139 struct watchdog_data
{
140 unsigned short sioaddr
;
142 unsigned long opened
;
145 struct watchdog_info ident
;
147 unsigned short timeout
;
148 u8 timer_val
; /* content for the wd_time register */
150 u8 pulse_val
; /* pulse width flag */
151 char pulse_mode
; /* enable pulse output mode? */
152 char caused_reboot
; /* last reboot was by the watchdog */
155 static struct watchdog_data watchdog
= {
156 .lock
= __MUTEX_INITIALIZER(watchdog
.lock
),
159 /* Super I/O functions */
160 static inline int superio_inb(int base
, int reg
)
163 return inb(base
+ 1);
166 static int superio_inw(int base
, int reg
)
169 val
= superio_inb(base
, reg
) << 8;
170 val
|= superio_inb(base
, reg
+ 1);
174 static inline void superio_outb(int base
, int reg
, u8 val
)
180 static inline void superio_set_bit(int base
, int reg
, int bit
)
182 unsigned long val
= superio_inb(base
, reg
);
183 __set_bit(bit
, &val
);
184 superio_outb(base
, reg
, val
);
187 static inline void superio_clear_bit(int base
, int reg
, int bit
)
189 unsigned long val
= superio_inb(base
, reg
);
190 __clear_bit(bit
, &val
);
191 superio_outb(base
, reg
, val
);
194 static inline int superio_enter(int base
)
196 /* Don't step on other drivers' I/O space by accident */
197 if (!request_muxed_region(base
, 2, DRVNAME
)) {
198 pr_err("I/O address 0x%04x already in use\n", (int)base
);
202 /* according to the datasheet the key must be sent twice! */
203 outb(SIO_UNLOCK_KEY
, base
);
204 outb(SIO_UNLOCK_KEY
, base
);
209 static inline void superio_select(int base
, int ld
)
211 outb(SIO_REG_LDSEL
, base
);
215 static inline void superio_exit(int base
)
217 outb(SIO_LOCK_KEY
, base
);
218 release_region(base
, 2);
221 static int watchdog_set_timeout(int timeout
)
224 || timeout
> max_timeout
) {
225 pr_err("watchdog timeout out of range\n");
229 mutex_lock(&watchdog
.lock
);
231 watchdog
.timeout
= timeout
;
232 if (timeout
> 0xff) {
233 watchdog
.timer_val
= DIV_ROUND_UP(timeout
, 60);
234 watchdog
.minutes_mode
= true;
236 watchdog
.timer_val
= timeout
;
237 watchdog
.minutes_mode
= false;
240 mutex_unlock(&watchdog
.lock
);
245 static int watchdog_set_pulse_width(unsigned int pw
)
248 unsigned int t1
= 25, t2
= 125, t3
= 5000;
250 if (watchdog
.type
== f71868
) {
256 mutex_lock(&watchdog
.lock
);
259 watchdog
.pulse_val
= 0;
260 } else if (pw
<= t1
) {
261 watchdog
.pulse_val
= 1;
262 } else if (pw
<= t2
) {
263 watchdog
.pulse_val
= 2;
264 } else if (pw
<= t3
) {
265 watchdog
.pulse_val
= 3;
267 pr_err("pulse width out of range\n");
272 watchdog
.pulse_mode
= pw
;
275 mutex_unlock(&watchdog
.lock
);
279 static int watchdog_keepalive(void)
283 mutex_lock(&watchdog
.lock
);
284 err
= superio_enter(watchdog
.sioaddr
);
287 superio_select(watchdog
.sioaddr
, SIO_F71808FG_LD_WDT
);
289 if (watchdog
.minutes_mode
)
290 /* select minutes for timer units */
291 superio_set_bit(watchdog
.sioaddr
, F71808FG_REG_WDT_CONF
,
292 F71808FG_FLAG_WD_UNIT
);
294 /* select seconds for timer units */
295 superio_clear_bit(watchdog
.sioaddr
, F71808FG_REG_WDT_CONF
,
296 F71808FG_FLAG_WD_UNIT
);
298 /* Set timer value */
299 superio_outb(watchdog
.sioaddr
, F71808FG_REG_WD_TIME
,
302 superio_exit(watchdog
.sioaddr
);
305 mutex_unlock(&watchdog
.lock
);
309 static int f71862fg_pin_configure(unsigned short ioaddr
)
311 /* When ioaddr is non-zero the calling function has to take care of
312 mutex handling and superio preparation! */
314 if (f71862fg_pin
== 63) {
316 /* SPI must be disabled first to use this pin! */
317 superio_clear_bit(ioaddr
, SIO_REG_ROM_ADDR_SEL
, 6);
318 superio_set_bit(ioaddr
, SIO_REG_MFUNCT3
, 4);
320 } else if (f71862fg_pin
== 56) {
322 superio_set_bit(ioaddr
, SIO_REG_MFUNCT1
, 1);
324 pr_err("Invalid argument f71862fg_pin=%d\n", f71862fg_pin
);
330 static int watchdog_start(void)
335 /* Make sure we don't die as soon as the watchdog is enabled below */
336 err
= watchdog_keepalive();
340 mutex_lock(&watchdog
.lock
);
341 err
= superio_enter(watchdog
.sioaddr
);
344 superio_select(watchdog
.sioaddr
, SIO_F71808FG_LD_WDT
);
346 /* Watchdog pin configuration */
347 switch (watchdog
.type
) {
349 /* Set pin 21 to GPIO23/WDTRST#, then to WDTRST# */
350 superio_clear_bit(watchdog
.sioaddr
, SIO_REG_MFUNCT2
, 3);
351 superio_clear_bit(watchdog
.sioaddr
, SIO_REG_MFUNCT3
, 3);
355 err
= f71862fg_pin_configure(watchdog
.sioaddr
);
362 /* GPIO14 --> WDTRST# */
363 superio_clear_bit(watchdog
.sioaddr
, SIO_REG_MFUNCT1
, 4);
367 /* Set pin 56 to WDTRST# */
368 superio_set_bit(watchdog
.sioaddr
, SIO_REG_MFUNCT1
, 1);
372 /* set pin 40 to WDTRST# */
373 superio_outb(watchdog
.sioaddr
, SIO_REG_MFUNCT3
,
374 superio_inb(watchdog
.sioaddr
, SIO_REG_MFUNCT3
) & 0xcf);
378 /* Enable TSI Level register bank */
379 superio_clear_bit(watchdog
.sioaddr
, SIO_REG_CLOCK_SEL
, 3);
380 /* Set pin 27 to WDTRST# */
381 superio_outb(watchdog
.sioaddr
, SIO_REG_TSI_LEVEL_SEL
, 0x5f &
382 superio_inb(watchdog
.sioaddr
, SIO_REG_TSI_LEVEL_SEL
));
386 /* Set pin 70 to WDTRST# */
387 superio_clear_bit(watchdog
.sioaddr
, SIO_REG_MFUNCT3
, 5);
392 * GPIO1 Control Register when 27h BIT3:2 = 01 & BIT0 = 0.
393 * The PIN 70(GPIO15/WDTRST) is controlled by 2Ch:
397 tmp
= superio_inb(watchdog
.sioaddr
, SIO_F81866_REG_PORT_SEL
);
398 tmp
&= ~(BIT(3) | BIT(0));
400 superio_outb(watchdog
.sioaddr
, SIO_F81866_REG_PORT_SEL
, tmp
);
402 superio_clear_bit(watchdog
.sioaddr
, SIO_F81866_REG_GPIO1
, 5);
407 * 'default' label to shut up the compiler and catch
414 superio_select(watchdog
.sioaddr
, SIO_F71808FG_LD_WDT
);
415 superio_set_bit(watchdog
.sioaddr
, SIO_REG_ENABLE
, 0);
417 if (watchdog
.type
== f81865
|| watchdog
.type
== f81866
)
418 superio_set_bit(watchdog
.sioaddr
, F81865_REG_WDO_CONF
,
419 F81865_FLAG_WDOUT_EN
);
421 superio_set_bit(watchdog
.sioaddr
, F71808FG_REG_WDO_CONF
,
422 F71808FG_FLAG_WDOUT_EN
);
424 superio_set_bit(watchdog
.sioaddr
, F71808FG_REG_WDT_CONF
,
425 F71808FG_FLAG_WD_EN
);
427 if (watchdog
.pulse_mode
) {
428 /* Select "pulse" output mode with given duration */
429 u8 wdt_conf
= superio_inb(watchdog
.sioaddr
,
430 F71808FG_REG_WDT_CONF
);
432 /* Set WD_PSWIDTH bits (1:0) */
433 wdt_conf
= (wdt_conf
& 0xfc) | (watchdog
.pulse_val
& 0x03);
434 /* Set WD_PULSE to "pulse" mode */
435 wdt_conf
|= BIT(F71808FG_FLAG_WD_PULSE
);
437 superio_outb(watchdog
.sioaddr
, F71808FG_REG_WDT_CONF
,
440 /* Select "level" output mode */
441 superio_clear_bit(watchdog
.sioaddr
, F71808FG_REG_WDT_CONF
,
442 F71808FG_FLAG_WD_PULSE
);
446 superio_exit(watchdog
.sioaddr
);
448 mutex_unlock(&watchdog
.lock
);
453 static int watchdog_stop(void)
457 mutex_lock(&watchdog
.lock
);
458 err
= superio_enter(watchdog
.sioaddr
);
461 superio_select(watchdog
.sioaddr
, SIO_F71808FG_LD_WDT
);
463 superio_clear_bit(watchdog
.sioaddr
, F71808FG_REG_WDT_CONF
,
464 F71808FG_FLAG_WD_EN
);
466 superio_exit(watchdog
.sioaddr
);
469 mutex_unlock(&watchdog
.lock
);
474 static int watchdog_get_status(void)
478 mutex_lock(&watchdog
.lock
);
479 status
= (watchdog
.caused_reboot
) ? WDIOF_CARDRESET
: 0;
480 mutex_unlock(&watchdog
.lock
);
485 static bool watchdog_is_running(void)
488 * if we fail to determine the watchdog's status assume it to be
489 * running to be on the safe side
491 bool is_running
= true;
493 mutex_lock(&watchdog
.lock
);
494 if (superio_enter(watchdog
.sioaddr
))
496 superio_select(watchdog
.sioaddr
, SIO_F71808FG_LD_WDT
);
498 is_running
= (superio_inb(watchdog
.sioaddr
, SIO_REG_ENABLE
) & BIT(0))
499 && (superio_inb(watchdog
.sioaddr
, F71808FG_REG_WDT_CONF
)
500 & BIT(F71808FG_FLAG_WD_EN
));
502 superio_exit(watchdog
.sioaddr
);
505 mutex_unlock(&watchdog
.lock
);
509 /* /dev/watchdog api */
511 static int watchdog_open(struct inode
*inode
, struct file
*file
)
515 /* If the watchdog is alive we don't need to start it again */
516 if (test_and_set_bit(0, &watchdog
.opened
))
519 err
= watchdog_start();
521 clear_bit(0, &watchdog
.opened
);
526 __module_get(THIS_MODULE
);
528 watchdog
.expect_close
= 0;
529 return stream_open(inode
, file
);
532 static int watchdog_release(struct inode
*inode
, struct file
*file
)
534 clear_bit(0, &watchdog
.opened
);
536 if (!watchdog
.expect_close
) {
537 watchdog_keepalive();
538 pr_crit("Unexpected close, not stopping watchdog!\n");
539 } else if (!nowayout
) {
547 * @file: file handle to the watchdog
548 * @buf: buffer to write
549 * @count: count of bytes
550 * @ppos: pointer to the position to write. No seeks allowed
552 * A write to a watchdog device is defined as a keepalive signal. Any
553 * write of data will do, as we we don't define content meaning.
556 static ssize_t
watchdog_write(struct file
*file
, const char __user
*buf
,
557 size_t count
, loff_t
*ppos
)
563 /* In case it was set long ago */
564 bool expect_close
= false;
566 for (i
= 0; i
!= count
; i
++) {
568 if (get_user(c
, buf
+ i
))
574 /* Properly order writes across fork()ed processes */
575 mutex_lock(&watchdog
.lock
);
576 watchdog
.expect_close
= expect_close
;
577 mutex_unlock(&watchdog
.lock
);
580 /* someone wrote to us, we should restart timer */
581 watchdog_keepalive();
588 * @inode: inode of the device
589 * @file: file handle to the device
590 * @cmd: watchdog command
591 * @arg: argument pointer
593 * The watchdog API defines a common set of functions for all watchdogs
594 * according to their available features.
596 static long watchdog_ioctl(struct file
*file
, unsigned int cmd
,
603 struct watchdog_info __user
*ident
;
607 uarg
.i
= (int __user
*)arg
;
610 case WDIOC_GETSUPPORT
:
611 return copy_to_user(uarg
.ident
, &watchdog
.ident
,
612 sizeof(watchdog
.ident
)) ? -EFAULT
: 0;
614 case WDIOC_GETSTATUS
:
615 status
= watchdog_get_status();
618 return put_user(status
, uarg
.i
);
620 case WDIOC_GETBOOTSTATUS
:
621 return put_user(0, uarg
.i
);
623 case WDIOC_SETOPTIONS
:
624 if (get_user(new_options
, uarg
.i
))
627 if (new_options
& WDIOS_DISABLECARD
)
630 if (new_options
& WDIOS_ENABLECARD
)
631 return watchdog_start();
634 case WDIOC_KEEPALIVE
:
635 watchdog_keepalive();
638 case WDIOC_SETTIMEOUT
:
639 if (get_user(new_timeout
, uarg
.i
))
642 if (watchdog_set_timeout(new_timeout
))
645 watchdog_keepalive();
648 case WDIOC_GETTIMEOUT
:
649 return put_user(watchdog
.timeout
, uarg
.i
);
657 static int watchdog_notify_sys(struct notifier_block
*this, unsigned long code
,
660 if (code
== SYS_DOWN
|| code
== SYS_HALT
)
665 static const struct file_operations watchdog_fops
= {
666 .owner
= THIS_MODULE
,
668 .open
= watchdog_open
,
669 .release
= watchdog_release
,
670 .write
= watchdog_write
,
671 .unlocked_ioctl
= watchdog_ioctl
,
672 .compat_ioctl
= compat_ptr_ioctl
,
675 static struct miscdevice watchdog_miscdev
= {
676 .minor
= WATCHDOG_MINOR
,
678 .fops
= &watchdog_fops
,
681 static struct notifier_block watchdog_notifier
= {
682 .notifier_call
= watchdog_notify_sys
,
685 static int __init
watchdog_init(int sioaddr
)
687 int wdt_conf
, err
= 0;
689 /* No need to lock watchdog.lock here because no entry points
690 * into the module have been registered yet.
692 watchdog
.sioaddr
= sioaddr
;
693 watchdog
.ident
.options
= WDIOC_SETTIMEOUT
695 | WDIOF_KEEPALIVEPING
;
697 snprintf(watchdog
.ident
.identity
,
698 sizeof(watchdog
.ident
.identity
), "%s watchdog",
699 f71808e_names
[watchdog
.type
]);
701 err
= superio_enter(sioaddr
);
704 superio_select(watchdog
.sioaddr
, SIO_F71808FG_LD_WDT
);
706 wdt_conf
= superio_inb(sioaddr
, F71808FG_REG_WDT_CONF
);
707 watchdog
.caused_reboot
= wdt_conf
& BIT(F71808FG_FLAG_WDTMOUT_STS
);
709 superio_exit(sioaddr
);
711 err
= watchdog_set_timeout(timeout
);
714 err
= watchdog_set_pulse_width(pulse_width
);
718 err
= register_reboot_notifier(&watchdog_notifier
);
722 err
= misc_register(&watchdog_miscdev
);
724 pr_err("cannot register miscdev on minor=%d\n",
725 watchdog_miscdev
.minor
);
729 if (start_withtimeout
) {
730 if (start_withtimeout
<= 0
731 || start_withtimeout
> max_timeout
) {
732 pr_err("starting timeout out of range\n");
737 err
= watchdog_start();
739 pr_err("cannot start watchdog timer\n");
743 mutex_lock(&watchdog
.lock
);
744 err
= superio_enter(sioaddr
);
747 superio_select(watchdog
.sioaddr
, SIO_F71808FG_LD_WDT
);
749 if (start_withtimeout
> 0xff) {
750 /* select minutes for timer units */
751 superio_set_bit(sioaddr
, F71808FG_REG_WDT_CONF
,
752 F71808FG_FLAG_WD_UNIT
);
753 superio_outb(sioaddr
, F71808FG_REG_WD_TIME
,
754 DIV_ROUND_UP(start_withtimeout
, 60));
756 /* select seconds for timer units */
757 superio_clear_bit(sioaddr
, F71808FG_REG_WDT_CONF
,
758 F71808FG_FLAG_WD_UNIT
);
759 superio_outb(sioaddr
, F71808FG_REG_WD_TIME
,
763 superio_exit(sioaddr
);
764 mutex_unlock(&watchdog
.lock
);
767 __module_get(THIS_MODULE
);
769 pr_info("watchdog started with initial timeout of %u sec\n",
776 mutex_unlock(&watchdog
.lock
);
778 misc_deregister(&watchdog_miscdev
);
780 unregister_reboot_notifier(&watchdog_notifier
);
785 static int __init
f71808e_find(int sioaddr
)
788 int err
= superio_enter(sioaddr
);
792 devid
= superio_inw(sioaddr
, SIO_REG_MANID
);
793 if (devid
!= SIO_FINTEK_ID
) {
794 pr_debug("Not a Fintek device\n");
799 devid
= force_id
? force_id
: superio_inw(sioaddr
, SIO_REG_DEVID
);
802 watchdog
.type
= f71808fg
;
805 watchdog
.type
= f71862fg
;
806 err
= f71862fg_pin_configure(0); /* validate module parameter */
809 watchdog
.type
= f71868
;
813 watchdog
.type
= f71869
;
816 watchdog
.type
= f71882fg
;
819 watchdog
.type
= f71889fg
;
822 /* Confirmed (by datasheet) not to have a watchdog. */
826 watchdog
.type
= f81803
;
829 watchdog
.type
= f81865
;
832 watchdog
.type
= f81866
;
835 pr_info("Unrecognized Fintek device: %04x\n",
836 (unsigned int)devid
);
841 pr_info("Found %s watchdog chip, revision %d\n",
842 f71808e_names
[watchdog
.type
],
843 (int)superio_inb(sioaddr
, SIO_REG_DEVREV
));
845 superio_exit(sioaddr
);
849 static int __init
f71808e_init(void)
851 static const unsigned short addrs
[] = { 0x2e, 0x4e };
855 for (i
= 0; i
< ARRAY_SIZE(addrs
); i
++) {
856 err
= f71808e_find(addrs
[i
]);
860 if (i
== ARRAY_SIZE(addrs
))
863 return watchdog_init(addrs
[i
]);
866 static void __exit
f71808e_exit(void)
868 if (watchdog_is_running()) {
869 pr_warn("Watchdog timer still running, stopping it\n");
872 misc_deregister(&watchdog_miscdev
);
873 unregister_reboot_notifier(&watchdog_notifier
);
876 MODULE_DESCRIPTION("F71808E Watchdog Driver");
877 MODULE_AUTHOR("Giel van Schijndel <me@mortis.eu>");
878 MODULE_LICENSE("GPL");
880 module_init(f71808e_init
);
881 module_exit(f71808e_exit
);