1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * nv_tco 0.01: TCO timer driver for NV chipsets
5 * (c) Copyright 2005 Google Inc., All Rights Reserved.
7 * Based off i8xx_tco.c:
8 * (c) Copyright 2000 kernel concepts <nils@kernelconcepts.de>, All Rights
10 * https://www.kernelconcepts.de
12 * TCO timer driver for NV chipsets
13 * based on softdog.c by Alan Cox <alan@redhat.com>
17 * Includes, defines, variables, module parameters, ...
20 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
22 #include <linux/module.h>
23 #include <linux/moduleparam.h>
24 #include <linux/types.h>
25 #include <linux/miscdevice.h>
26 #include <linux/watchdog.h>
27 #include <linux/init.h>
29 #include <linux/pci.h>
30 #include <linux/ioport.h>
31 #include <linux/jiffies.h>
32 #include <linux/platform_device.h>
33 #include <linux/uaccess.h>
38 /* Module and version information */
39 #define TCO_VERSION "0.01"
40 #define TCO_MODULE_NAME "NV_TCO"
41 #define TCO_DRIVER_NAME TCO_MODULE_NAME ", v" TCO_VERSION
43 /* internal variables */
44 static unsigned int tcobase;
45 static DEFINE_SPINLOCK(tco_lock); /* Guards the hardware */
46 static unsigned long timer_alive;
47 static char tco_expect_close;
48 static struct pci_dev *tco_pci;
50 /* the watchdog platform device */
51 static struct platform_device *nv_tco_platform_device;
53 /* module parameters */
54 #define WATCHDOG_HEARTBEAT 30 /* 30 sec default heartbeat (2<heartbeat<39) */
55 static int heartbeat = WATCHDOG_HEARTBEAT; /* in seconds */
56 module_param(heartbeat, int, 0);
57 MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat in seconds. (2<heartbeat<39, "
58 "default=" __MODULE_STRING(WATCHDOG_HEARTBEAT) ")");
60 static bool nowayout = WATCHDOG_NOWAYOUT;
61 module_param(nowayout, bool, 0);
62 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started"
63 " (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
66 * Some TCO specific functions
68 static inline unsigned char seconds_to_ticks(int seconds)
70 /* the internal timer is stored as ticks which decrement
71 * every 0.6 seconds */
72 return (seconds * 10) / 6;
75 static void tco_timer_start(void)
80 spin_lock_irqsave(&tco_lock, flags);
81 val = inl(TCO_CNT(tcobase));
82 val &= ~TCO_CNT_TCOHALT;
83 outl(val, TCO_CNT(tcobase));
84 spin_unlock_irqrestore(&tco_lock, flags);
87 static void tco_timer_stop(void)
92 spin_lock_irqsave(&tco_lock, flags);
93 val = inl(TCO_CNT(tcobase));
94 val |= TCO_CNT_TCOHALT;
95 outl(val, TCO_CNT(tcobase));
96 spin_unlock_irqrestore(&tco_lock, flags);
99 static void tco_timer_keepalive(void)
103 spin_lock_irqsave(&tco_lock, flags);
104 outb(0x01, TCO_RLD(tcobase));
105 spin_unlock_irqrestore(&tco_lock, flags);
108 static int tco_timer_set_heartbeat(int t)
111 unsigned char tmrval;
116 * note seconds_to_ticks(t) > t, so if t > 0x3f, so is
117 * tmrval=seconds_to_ticks(t). Check that the count in seconds isn't
118 * out of range on it's own (to avoid overflow in tmrval).
120 if (t < 0 || t > 0x3f)
122 tmrval = seconds_to_ticks(t);
124 /* "Values of 0h-3h are ignored and should not be attempted" */
125 if (tmrval > 0x3f || tmrval < 0x04)
128 /* Write new heartbeat to watchdog */
129 spin_lock_irqsave(&tco_lock, flags);
130 val = inb(TCO_TMR(tcobase));
133 outb(val, TCO_TMR(tcobase));
134 val = inb(TCO_TMR(tcobase));
136 if ((val & 0x3f) != tmrval)
138 spin_unlock_irqrestore(&tco_lock, flags);
148 * /dev/watchdog handling
151 static int nv_tco_open(struct inode *inode, struct file *file)
153 /* /dev/watchdog can only be opened once */
154 if (test_and_set_bit(0, &timer_alive))
157 /* Reload and activate timer */
158 tco_timer_keepalive();
160 return stream_open(inode, file);
163 static int nv_tco_release(struct inode *inode, struct file *file)
165 /* Shut off the timer */
166 if (tco_expect_close == 42) {
169 pr_crit("Unexpected close, not stopping watchdog!\n");
170 tco_timer_keepalive();
172 clear_bit(0, &timer_alive);
173 tco_expect_close = 0;
177 static ssize_t nv_tco_write(struct file *file, const char __user *data,
178 size_t len, loff_t *ppos)
180 /* See if we got the magic character 'V' and reload the timer */
186 * note: just in case someone wrote the magic character
189 tco_expect_close = 0;
192 * scan to see whether or not we got the magic
195 for (i = 0; i != len; i++) {
197 if (get_user(c, data + i))
200 tco_expect_close = 42;
204 /* someone wrote to us, we should reload the timer */
205 tco_timer_keepalive();
210 static long nv_tco_ioctl(struct file *file, unsigned int cmd,
213 int new_options, retval = -EINVAL;
215 void __user *argp = (void __user *)arg;
216 int __user *p = argp;
217 static const struct watchdog_info ident = {
218 .options = WDIOF_SETTIMEOUT |
219 WDIOF_KEEPALIVEPING |
221 .firmware_version = 0,
222 .identity = TCO_MODULE_NAME,
226 case WDIOC_GETSUPPORT:
227 return copy_to_user(argp, &ident, sizeof(ident)) ? -EFAULT : 0;
228 case WDIOC_GETSTATUS:
229 case WDIOC_GETBOOTSTATUS:
230 return put_user(0, p);
231 case WDIOC_SETOPTIONS:
232 if (get_user(new_options, p))
234 if (new_options & WDIOS_DISABLECARD) {
238 if (new_options & WDIOS_ENABLECARD) {
239 tco_timer_keepalive();
244 case WDIOC_KEEPALIVE:
245 tco_timer_keepalive();
247 case WDIOC_SETTIMEOUT:
248 if (get_user(new_heartbeat, p))
250 if (tco_timer_set_heartbeat(new_heartbeat))
252 tco_timer_keepalive();
254 case WDIOC_GETTIMEOUT:
255 return put_user(heartbeat, p);
265 static const struct file_operations nv_tco_fops = {
266 .owner = THIS_MODULE,
268 .write = nv_tco_write,
269 .unlocked_ioctl = nv_tco_ioctl,
270 .compat_ioctl = compat_ptr_ioctl,
272 .release = nv_tco_release,
275 static struct miscdevice nv_tco_miscdev = {
276 .minor = WATCHDOG_MINOR,
278 .fops = &nv_tco_fops,
282 * Data for PCI driver interface
284 * This data only exists for exporting the supported
285 * PCI ids via MODULE_DEVICE_TABLE. We do not actually
286 * register a pci_driver, because someone else might one day
287 * want to register another driver on the same PCI id.
289 static const struct pci_device_id tco_pci_tbl[] = {
290 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP51_SMBUS,
291 PCI_ANY_ID, PCI_ANY_ID, },
292 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP55_SMBUS,
293 PCI_ANY_ID, PCI_ANY_ID, },
294 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP78S_SMBUS,
295 PCI_ANY_ID, PCI_ANY_ID, },
296 { PCI_VENDOR_ID_NVIDIA, PCI_DEVICE_ID_NVIDIA_NFORCE_MCP79_SMBUS,
297 PCI_ANY_ID, PCI_ANY_ID, },
298 { 0, }, /* End of list */
300 MODULE_DEVICE_TABLE(pci, tco_pci_tbl);
303 * Init & exit routines
306 static unsigned char nv_tco_getdevice(void)
308 struct pci_dev *dev = NULL;
311 /* Find the PCI device */
312 for_each_pci_dev(dev) {
313 if (pci_match_id(tco_pci_tbl, dev) != NULL) {
322 /* Find the base io port */
323 pci_read_config_dword(tco_pci, 0x64, &val);
325 if (val == 0x0001 || val == 0x0000) {
326 /* Something is wrong here, bar isn't setup */
327 pr_err("failed to get tcobase address\n");
331 tcobase = val + 0x40;
333 if (!request_region(tcobase, 0x10, "NV TCO")) {
334 pr_err("I/O address 0x%04x already in use\n", tcobase);
338 /* Set a reasonable heartbeat before we stop the timer */
339 tco_timer_set_heartbeat(30);
342 * Stop the TCO before we change anything so we don't race with
345 tco_timer_keepalive();
348 /* Disable SMI caused by TCO */
349 if (!request_region(MCP51_SMI_EN(tcobase), 4, "NV TCO")) {
350 pr_err("I/O address 0x%04x already in use\n",
351 MCP51_SMI_EN(tcobase));
354 val = inl(MCP51_SMI_EN(tcobase));
355 val &= ~MCP51_SMI_EN_TCO;
356 outl(val, MCP51_SMI_EN(tcobase));
357 val = inl(MCP51_SMI_EN(tcobase));
358 release_region(MCP51_SMI_EN(tcobase), 4);
359 if (val & MCP51_SMI_EN_TCO) {
360 pr_err("Could not disable SMI caused by TCO\n");
364 /* Check chipset's NO_REBOOT bit */
365 pci_read_config_dword(tco_pci, MCP51_SMBUS_SETUP_B, &val);
366 val |= MCP51_SMBUS_SETUP_B_TCO_REBOOT;
367 pci_write_config_dword(tco_pci, MCP51_SMBUS_SETUP_B, val);
368 pci_read_config_dword(tco_pci, MCP51_SMBUS_SETUP_B, &val);
369 if (!(val & MCP51_SMBUS_SETUP_B_TCO_REBOOT)) {
370 pr_err("failed to reset NO_REBOOT flag, reboot disabled by hardware\n");
376 release_region(tcobase, 0x10);
380 static int nv_tco_init(struct platform_device *dev)
384 /* Check whether or not the hardware watchdog is there */
385 if (!nv_tco_getdevice())
388 /* Check to see if last reboot was due to watchdog timeout */
389 pr_info("Watchdog reboot %sdetected\n",
390 inl(TCO_STS(tcobase)) & TCO_STS_TCO2TO_STS ? "" : "not ");
392 /* Clear out the old status */
393 outl(TCO_STS_RESET, TCO_STS(tcobase));
396 * Check that the heartbeat value is within it's range.
397 * If not, reset to the default.
399 if (tco_timer_set_heartbeat(heartbeat)) {
400 heartbeat = WATCHDOG_HEARTBEAT;
401 tco_timer_set_heartbeat(heartbeat);
402 pr_info("heartbeat value must be 2<heartbeat<39, using %d\n",
406 ret = misc_register(&nv_tco_miscdev);
408 pr_err("cannot register miscdev on minor=%d (err=%d)\n",
409 WATCHDOG_MINOR, ret);
413 clear_bit(0, &timer_alive);
417 pr_info("initialized (0x%04x). heartbeat=%d sec (nowayout=%d)\n",
418 tcobase, heartbeat, nowayout);
423 release_region(tcobase, 0x10);
427 static void nv_tco_cleanup(void)
431 /* Stop the timer before we leave */
435 /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
436 pci_read_config_dword(tco_pci, MCP51_SMBUS_SETUP_B, &val);
437 val &= ~MCP51_SMBUS_SETUP_B_TCO_REBOOT;
438 pci_write_config_dword(tco_pci, MCP51_SMBUS_SETUP_B, val);
439 pci_read_config_dword(tco_pci, MCP51_SMBUS_SETUP_B, &val);
440 if (val & MCP51_SMBUS_SETUP_B_TCO_REBOOT) {
441 pr_crit("Couldn't unset REBOOT bit. Machine may soon reset\n");
445 misc_deregister(&nv_tco_miscdev);
446 release_region(tcobase, 0x10);
449 static void nv_tco_remove(struct platform_device *dev)
455 static void nv_tco_shutdown(struct platform_device *dev)
461 /* Some BIOSes fail the POST (once) if the NO_REBOOT flag is not
462 * unset during shutdown. */
463 pci_read_config_dword(tco_pci, MCP51_SMBUS_SETUP_B, &val);
464 val &= ~MCP51_SMBUS_SETUP_B_TCO_REBOOT;
465 pci_write_config_dword(tco_pci, MCP51_SMBUS_SETUP_B, val);
468 static struct platform_driver nv_tco_driver = {
469 .probe = nv_tco_init,
470 .remove_new = nv_tco_remove,
471 .shutdown = nv_tco_shutdown,
473 .name = TCO_MODULE_NAME,
477 static int __init nv_tco_init_module(void)
481 pr_info("NV TCO WatchDog Timer Driver v%s\n", TCO_VERSION);
483 err = platform_driver_register(&nv_tco_driver);
487 nv_tco_platform_device = platform_device_register_simple(
488 TCO_MODULE_NAME, -1, NULL, 0);
489 if (IS_ERR(nv_tco_platform_device)) {
490 err = PTR_ERR(nv_tco_platform_device);
491 goto unreg_platform_driver;
496 unreg_platform_driver:
497 platform_driver_unregister(&nv_tco_driver);
501 static void __exit nv_tco_cleanup_module(void)
503 platform_device_unregister(nv_tco_platform_device);
504 platform_driver_unregister(&nv_tco_driver);
505 pr_info("NV TCO Watchdog Module Unloaded\n");
508 module_init(nv_tco_init_module);
509 module_exit(nv_tco_cleanup_module);
511 MODULE_AUTHOR("Mike Waychison");
512 MODULE_DESCRIPTION("TCO timer driver for NV chipsets");
513 MODULE_LICENSE("GPL");