Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 1 | /* |
Wim Van Sebroeck | cb711a1 | 2009-11-15 13:44:54 +0000 | [diff] [blame] | 2 | * intel TCO Watchdog Driver |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 3 | * |
Wim Van Sebroeck | deb9197 | 2011-10-19 23:59:26 +0200 | [diff] [blame] | 4 | * (c) Copyright 2006-2011 Wim Van Sebroeck <wim@iguana.be>. |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 5 | * |
| 6 | * This program is free software; you can redistribute it and/or |
| 7 | * modify it under the terms of the GNU General Public License |
| 8 | * as published by the Free Software Foundation; either version |
| 9 | * 2 of the License, or (at your option) any later version. |
| 10 | * |
| 11 | * Neither Wim Van Sebroeck nor Iguana vzw. admit liability nor |
| 12 | * provide warranty for any of this software. This material is |
| 13 | * provided "AS-IS" and at no charge. |
| 14 | * |
| 15 | * The TCO watchdog is implemented in the following I/O controller hubs: |
| 16 | * (See the intel documentation on http://developer.intel.com.) |
Wim Van Sebroeck | cb711a1 | 2009-11-15 13:44:54 +0000 | [diff] [blame] | 17 | * document number 290655-003, 290677-014: 82801AA (ICH), 82801AB (ICHO) |
| 18 | * document number 290687-002, 298242-027: 82801BA (ICH2) |
| 19 | * document number 290733-003, 290739-013: 82801CA (ICH3-S) |
| 20 | * document number 290716-001, 290718-007: 82801CAM (ICH3-M) |
| 21 | * document number 290744-001, 290745-025: 82801DB (ICH4) |
| 22 | * document number 252337-001, 252663-008: 82801DBM (ICH4-M) |
| 23 | * document number 273599-001, 273645-002: 82801E (C-ICH) |
| 24 | * document number 252516-001, 252517-028: 82801EB (ICH5), 82801ER (ICH5R) |
| 25 | * document number 300641-004, 300884-013: 6300ESB |
| 26 | * document number 301473-002, 301474-026: 82801F (ICH6) |
| 27 | * document number 313082-001, 313075-006: 631xESB, 632xESB |
| 28 | * document number 307013-003, 307014-024: 82801G (ICH7) |
Wim Van Sebroeck | d38bd47 | 2010-12-31 14:10:45 +0000 | [diff] [blame] | 29 | * document number 322896-001, 322897-001: NM10 |
Wim Van Sebroeck | cb711a1 | 2009-11-15 13:44:54 +0000 | [diff] [blame] | 30 | * document number 313056-003, 313057-017: 82801H (ICH8) |
| 31 | * document number 316972-004, 316973-012: 82801I (ICH9) |
| 32 | * document number 319973-002, 319974-002: 82801J (ICH10) |
Seth Heasley | 3c9d8ec | 2010-01-14 20:58:05 +0000 | [diff] [blame] | 33 | * document number 322169-001, 322170-003: 5 Series, 3400 Series (PCH) |
Imre Kaloz | 4946f83 | 2009-12-07 20:42:26 +0100 | [diff] [blame] | 34 | * document number 320066-003, 320257-008: EP80597 (IICH) |
Seth Heasley | 203f8d8 | 2011-01-07 17:11:08 -0800 | [diff] [blame] | 35 | * document number 324645-001, 324646-001: Cougar Point (CPT) |
Seth Heasley | c54fb81 | 2010-11-17 12:15:08 -0700 | [diff] [blame] | 36 | * document number TBD : Patsburg (PBG) |
Seth Heasley | 203f8d8 | 2011-01-07 17:11:08 -0800 | [diff] [blame] | 37 | * document number TBD : DH89xxCC |
Seth Heasley | aa1f465 | 2011-04-20 10:56:20 -0700 | [diff] [blame] | 38 | * document number TBD : Panther Point |
Seth Heasley | 84e83c2 | 2012-01-23 16:40:55 -0800 | [diff] [blame] | 39 | * document number TBD : Lynx Point |
James Ralston | 7fb9c1a | 2012-08-09 09:46:13 -0700 | [diff] [blame] | 40 | * document number TBD : Lynx Point-LP |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 41 | */ |
| 42 | |
| 43 | /* |
| 44 | * Includes, defines, variables, module parameters, ... |
| 45 | */ |
| 46 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 47 | #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt |
| 48 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 49 | /* Module and version information */ |
Wim Van Sebroeck | 7944d3a | 2008-08-06 20:19:41 +0000 | [diff] [blame] | 50 | #define DRV_NAME "iTCO_wdt" |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 51 | #define DRV_VERSION "1.10" |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 52 | |
| 53 | /* Includes */ |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 54 | #include <linux/module.h> /* For module specific items */ |
| 55 | #include <linux/moduleparam.h> /* For new moduleparam's */ |
| 56 | #include <linux/types.h> /* For standard types (like size_t) */ |
| 57 | #include <linux/errno.h> /* For the -ENODEV/... values */ |
| 58 | #include <linux/kernel.h> /* For printk/panic/... */ |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 59 | #include <linux/watchdog.h> /* For the watchdog specific items */ |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 60 | #include <linux/init.h> /* For __init/__exit/... */ |
| 61 | #include <linux/fs.h> /* For file operations */ |
| 62 | #include <linux/platform_device.h> /* For platform_driver framework */ |
| 63 | #include <linux/pci.h> /* For pci functions */ |
| 64 | #include <linux/ioport.h> /* For io-port access */ |
| 65 | #include <linux/spinlock.h> /* For spin_lock/spin_unlock/... */ |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 66 | #include <linux/uaccess.h> /* For copy_to_user/put_user/... */ |
| 67 | #include <linux/io.h> /* For inb/outb/... */ |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 68 | #include <linux/mfd/core.h> |
| 69 | #include <linux/mfd/lpc_ich.h> |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 70 | |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 71 | #include "iTCO_vendor.h" |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 72 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 73 | /* Address definitions for the TCO */ |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 74 | /* TCO base address */ |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 75 | #define TCOBASE (iTCO_wdt_private.tco_res->start) |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 76 | /* SMI Control and Enable Register */ |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 77 | #define SMI_EN (iTCO_wdt_private.smi_res->start) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 78 | |
Wim Van Sebroeck | 0a7e6582 | 2009-04-14 20:20:07 +0000 | [diff] [blame] | 79 | #define TCO_RLD (TCOBASE + 0x00) /* TCO Timer Reload and Curr. Value */ |
| 80 | #define TCOv1_TMR (TCOBASE + 0x01) /* TCOv1 Timer Initial Value */ |
| 81 | #define TCO_DAT_IN (TCOBASE + 0x02) /* TCO Data In Register */ |
| 82 | #define TCO_DAT_OUT (TCOBASE + 0x03) /* TCO Data Out Register */ |
| 83 | #define TCO1_STS (TCOBASE + 0x04) /* TCO1 Status Register */ |
| 84 | #define TCO2_STS (TCOBASE + 0x06) /* TCO2 Status Register */ |
| 85 | #define TCO1_CNT (TCOBASE + 0x08) /* TCO1 Control Register */ |
| 86 | #define TCO2_CNT (TCOBASE + 0x0a) /* TCO2 Control Register */ |
| 87 | #define TCOv2_TMR (TCOBASE + 0x12) /* TCOv2 Timer Initial Value */ |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 88 | |
| 89 | /* internal variables */ |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 90 | static struct { /* this is private data for the iTCO_wdt device */ |
| 91 | /* TCO version/generation */ |
| 92 | unsigned int iTCO_version; |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 93 | struct resource *tco_res; |
| 94 | struct resource *smi_res; |
| 95 | struct resource *gcs_res; |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 96 | /* NO_REBOOT flag is Memory-Mapped GCS register bit 5 (TCO version 2)*/ |
| 97 | unsigned long __iomem *gcs; |
| 98 | /* the lock for io operations */ |
| 99 | spinlock_t io_lock; |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 100 | struct platform_device *dev; |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 101 | /* the PCI-device */ |
| 102 | struct pci_dev *pdev; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 103 | } iTCO_wdt_private; |
| 104 | |
| 105 | /* module parameters */ |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 106 | #define WATCHDOG_TIMEOUT 30 /* 30 sec default heartbeat */ |
| 107 | static int heartbeat = WATCHDOG_TIMEOUT; /* in seconds */ |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 108 | module_param(heartbeat, int, 0); |
Pádraig Brady | 7e6811d | 2010-04-19 13:38:25 +0100 | [diff] [blame] | 109 | MODULE_PARM_DESC(heartbeat, "Watchdog timeout in seconds. " |
| 110 | "5..76 (TCO v1) or 3..614 (TCO v2), default=" |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 111 | __MODULE_STRING(WATCHDOG_TIMEOUT) ")"); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 112 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 113 | static bool nowayout = WATCHDOG_NOWAYOUT; |
| 114 | module_param(nowayout, bool, 0); |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 115 | MODULE_PARM_DESC(nowayout, |
| 116 | "Watchdog cannot be stopped once started (default=" |
| 117 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
Wim Van Sebroeck | e033351 | 2006-11-12 18:05:09 +0100 | [diff] [blame] | 118 | |
Wim Van Sebroeck | 0d09858 | 2011-12-26 15:23:51 +0100 | [diff] [blame] | 119 | static int turn_SMI_watchdog_clear_off = 1; |
Wim Van Sebroeck | deb9197 | 2011-10-19 23:59:26 +0200 | [diff] [blame] | 120 | module_param(turn_SMI_watchdog_clear_off, int, 0); |
| 121 | MODULE_PARM_DESC(turn_SMI_watchdog_clear_off, |
Wim Van Sebroeck | 0d09858 | 2011-12-26 15:23:51 +0100 | [diff] [blame] | 122 | "Turn off SMI clearing watchdog (depends on TCO-version)(default=1)"); |
Wim Van Sebroeck | deb9197 | 2011-10-19 23:59:26 +0200 | [diff] [blame] | 123 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 124 | /* |
| 125 | * Some TCO specific functions |
| 126 | */ |
| 127 | |
| 128 | static inline unsigned int seconds_to_ticks(int seconds) |
| 129 | { |
| 130 | /* the internal timer is stored as ticks which decrement |
| 131 | * every 0.6 seconds */ |
| 132 | return (seconds * 10) / 6; |
| 133 | } |
| 134 | |
| 135 | static void iTCO_wdt_set_NO_REBOOT_bit(void) |
| 136 | { |
| 137 | u32 val32; |
| 138 | |
| 139 | /* Set the NO_REBOOT bit: this disables reboots */ |
| 140 | if (iTCO_wdt_private.iTCO_version == 2) { |
| 141 | val32 = readl(iTCO_wdt_private.gcs); |
| 142 | val32 |= 0x00000020; |
| 143 | writel(val32, iTCO_wdt_private.gcs); |
| 144 | } else if (iTCO_wdt_private.iTCO_version == 1) { |
| 145 | pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32); |
| 146 | val32 |= 0x00000002; |
| 147 | pci_write_config_dword(iTCO_wdt_private.pdev, 0xd4, val32); |
| 148 | } |
| 149 | } |
| 150 | |
| 151 | static int iTCO_wdt_unset_NO_REBOOT_bit(void) |
| 152 | { |
| 153 | int ret = 0; |
| 154 | u32 val32; |
| 155 | |
| 156 | /* Unset the NO_REBOOT bit: this enables reboots */ |
| 157 | if (iTCO_wdt_private.iTCO_version == 2) { |
| 158 | val32 = readl(iTCO_wdt_private.gcs); |
| 159 | val32 &= 0xffffffdf; |
| 160 | writel(val32, iTCO_wdt_private.gcs); |
| 161 | |
| 162 | val32 = readl(iTCO_wdt_private.gcs); |
| 163 | if (val32 & 0x00000020) |
| 164 | ret = -EIO; |
| 165 | } else if (iTCO_wdt_private.iTCO_version == 1) { |
| 166 | pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32); |
| 167 | val32 &= 0xfffffffd; |
| 168 | pci_write_config_dword(iTCO_wdt_private.pdev, 0xd4, val32); |
| 169 | |
| 170 | pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32); |
| 171 | if (val32 & 0x00000002) |
| 172 | ret = -EIO; |
| 173 | } |
| 174 | |
| 175 | return ret; /* returns: 0 = OK, -EIO = Error */ |
| 176 | } |
| 177 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 178 | static int iTCO_wdt_start(struct watchdog_device *wd_dev) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 179 | { |
| 180 | unsigned int val; |
| 181 | |
| 182 | spin_lock(&iTCO_wdt_private.io_lock); |
| 183 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 184 | iTCO_vendor_pre_start(iTCO_wdt_private.smi_res, wd_dev->timeout); |
Wim Van Sebroeck | e033351 | 2006-11-12 18:05:09 +0100 | [diff] [blame] | 185 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 186 | /* disable chipset's NO_REBOOT bit */ |
| 187 | if (iTCO_wdt_unset_NO_REBOOT_bit()) { |
Roel Kluin | 2ba7d7b | 2007-10-23 03:08:27 +0200 | [diff] [blame] | 188 | spin_unlock(&iTCO_wdt_private.io_lock); |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 189 | pr_err("failed to reset NO_REBOOT flag, reboot disabled by hardware/BIOS\n"); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 190 | return -EIO; |
| 191 | } |
| 192 | |
Wim Van Sebroeck | 7cd5b08 | 2008-11-19 19:39:58 +0000 | [diff] [blame] | 193 | /* Force the timer to its reload value by writing to the TCO_RLD |
| 194 | register */ |
| 195 | if (iTCO_wdt_private.iTCO_version == 2) |
| 196 | outw(0x01, TCO_RLD); |
| 197 | else if (iTCO_wdt_private.iTCO_version == 1) |
| 198 | outb(0x01, TCO_RLD); |
| 199 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 200 | /* Bit 11: TCO Timer Halt -> 0 = The TCO timer is enabled to count */ |
| 201 | val = inw(TCO1_CNT); |
| 202 | val &= 0xf7ff; |
| 203 | outw(val, TCO1_CNT); |
| 204 | val = inw(TCO1_CNT); |
| 205 | spin_unlock(&iTCO_wdt_private.io_lock); |
| 206 | |
| 207 | if (val & 0x0800) |
| 208 | return -1; |
| 209 | return 0; |
| 210 | } |
| 211 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 212 | static int iTCO_wdt_stop(struct watchdog_device *wd_dev) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 213 | { |
| 214 | unsigned int val; |
| 215 | |
| 216 | spin_lock(&iTCO_wdt_private.io_lock); |
| 217 | |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 218 | iTCO_vendor_pre_stop(iTCO_wdt_private.smi_res); |
Wim Van Sebroeck | e033351 | 2006-11-12 18:05:09 +0100 | [diff] [blame] | 219 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 220 | /* Bit 11: TCO Timer Halt -> 1 = The TCO timer is disabled */ |
| 221 | val = inw(TCO1_CNT); |
| 222 | val |= 0x0800; |
| 223 | outw(val, TCO1_CNT); |
| 224 | val = inw(TCO1_CNT); |
| 225 | |
| 226 | /* Set the NO_REBOOT bit to prevent later reboots, just for sure */ |
| 227 | iTCO_wdt_set_NO_REBOOT_bit(); |
| 228 | |
| 229 | spin_unlock(&iTCO_wdt_private.io_lock); |
| 230 | |
| 231 | if ((val & 0x0800) == 0) |
| 232 | return -1; |
| 233 | return 0; |
| 234 | } |
| 235 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 236 | static int iTCO_wdt_ping(struct watchdog_device *wd_dev) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 237 | { |
| 238 | spin_lock(&iTCO_wdt_private.io_lock); |
| 239 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 240 | iTCO_vendor_pre_keepalive(iTCO_wdt_private.smi_res, wd_dev->timeout); |
Wim Van Sebroeck | e033351 | 2006-11-12 18:05:09 +0100 | [diff] [blame] | 241 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 242 | /* Reload the timer by writing to the TCO Timer Counter register */ |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 243 | if (iTCO_wdt_private.iTCO_version == 2) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 244 | outw(0x01, TCO_RLD); |
Pádraig Brady | 7e6811d | 2010-04-19 13:38:25 +0100 | [diff] [blame] | 245 | else if (iTCO_wdt_private.iTCO_version == 1) { |
| 246 | /* Reset the timeout status bit so that the timer |
| 247 | * needs to count down twice again before rebooting */ |
| 248 | outw(0x0008, TCO1_STS); /* write 1 to clear bit */ |
| 249 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 250 | outb(0x01, TCO_RLD); |
Pádraig Brady | 7e6811d | 2010-04-19 13:38:25 +0100 | [diff] [blame] | 251 | } |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 252 | |
| 253 | spin_unlock(&iTCO_wdt_private.io_lock); |
| 254 | return 0; |
| 255 | } |
| 256 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 257 | static int iTCO_wdt_set_timeout(struct watchdog_device *wd_dev, unsigned int t) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 258 | { |
| 259 | unsigned int val16; |
| 260 | unsigned char val8; |
| 261 | unsigned int tmrval; |
| 262 | |
| 263 | tmrval = seconds_to_ticks(t); |
Pádraig Brady | 7e6811d | 2010-04-19 13:38:25 +0100 | [diff] [blame] | 264 | |
| 265 | /* For TCO v1 the timer counts down twice before rebooting */ |
| 266 | if (iTCO_wdt_private.iTCO_version == 1) |
| 267 | tmrval /= 2; |
| 268 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 269 | /* from the specs: */ |
| 270 | /* "Values of 0h-3h are ignored and should not be attempted" */ |
| 271 | if (tmrval < 0x04) |
| 272 | return -EINVAL; |
| 273 | if (((iTCO_wdt_private.iTCO_version == 2) && (tmrval > 0x3ff)) || |
| 274 | ((iTCO_wdt_private.iTCO_version == 1) && (tmrval > 0x03f))) |
| 275 | return -EINVAL; |
| 276 | |
Wim Van Sebroeck | e033351 | 2006-11-12 18:05:09 +0100 | [diff] [blame] | 277 | iTCO_vendor_pre_set_heartbeat(tmrval); |
| 278 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 279 | /* Write new heartbeat to watchdog */ |
| 280 | if (iTCO_wdt_private.iTCO_version == 2) { |
| 281 | spin_lock(&iTCO_wdt_private.io_lock); |
| 282 | val16 = inw(TCOv2_TMR); |
| 283 | val16 &= 0xfc00; |
| 284 | val16 |= tmrval; |
| 285 | outw(val16, TCOv2_TMR); |
| 286 | val16 = inw(TCOv2_TMR); |
| 287 | spin_unlock(&iTCO_wdt_private.io_lock); |
| 288 | |
| 289 | if ((val16 & 0x3ff) != tmrval) |
| 290 | return -EINVAL; |
| 291 | } else if (iTCO_wdt_private.iTCO_version == 1) { |
| 292 | spin_lock(&iTCO_wdt_private.io_lock); |
| 293 | val8 = inb(TCOv1_TMR); |
| 294 | val8 &= 0xc0; |
| 295 | val8 |= (tmrval & 0xff); |
| 296 | outb(val8, TCOv1_TMR); |
| 297 | val8 = inb(TCOv1_TMR); |
| 298 | spin_unlock(&iTCO_wdt_private.io_lock); |
| 299 | |
| 300 | if ((val8 & 0x3f) != tmrval) |
| 301 | return -EINVAL; |
| 302 | } |
| 303 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 304 | wd_dev->timeout = t; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 305 | return 0; |
| 306 | } |
| 307 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 308 | static unsigned int iTCO_wdt_get_timeleft(struct watchdog_device *wd_dev) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 309 | { |
| 310 | unsigned int val16; |
| 311 | unsigned char val8; |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 312 | unsigned int time_left = 0; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 313 | |
| 314 | /* read the TCO Timer */ |
| 315 | if (iTCO_wdt_private.iTCO_version == 2) { |
| 316 | spin_lock(&iTCO_wdt_private.io_lock); |
| 317 | val16 = inw(TCO_RLD); |
| 318 | val16 &= 0x3ff; |
| 319 | spin_unlock(&iTCO_wdt_private.io_lock); |
| 320 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 321 | time_left = (val16 * 6) / 10; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 322 | } else if (iTCO_wdt_private.iTCO_version == 1) { |
| 323 | spin_lock(&iTCO_wdt_private.io_lock); |
| 324 | val8 = inb(TCO_RLD); |
| 325 | val8 &= 0x3f; |
Pádraig Brady | 7e6811d | 2010-04-19 13:38:25 +0100 | [diff] [blame] | 326 | if (!(inw(TCO1_STS) & 0x0008)) |
| 327 | val8 += (inb(TCOv1_TMR) & 0x3f); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 328 | spin_unlock(&iTCO_wdt_private.io_lock); |
| 329 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 330 | time_left = (val8 * 6) / 10; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 331 | } |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 332 | return time_left; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 333 | } |
| 334 | |
| 335 | /* |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 336 | * Kernel Interfaces |
| 337 | */ |
| 338 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 339 | static const struct watchdog_info ident = { |
| 340 | .options = WDIOF_SETTIMEOUT | |
| 341 | WDIOF_KEEPALIVEPING | |
| 342 | WDIOF_MAGICCLOSE, |
| 343 | .firmware_version = 0, |
| 344 | .identity = DRV_NAME, |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 345 | }; |
| 346 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 347 | static const struct watchdog_ops iTCO_wdt_ops = { |
| 348 | .owner = THIS_MODULE, |
| 349 | .start = iTCO_wdt_start, |
| 350 | .stop = iTCO_wdt_stop, |
| 351 | .ping = iTCO_wdt_ping, |
| 352 | .set_timeout = iTCO_wdt_set_timeout, |
| 353 | .get_timeleft = iTCO_wdt_get_timeleft, |
| 354 | }; |
| 355 | |
| 356 | static struct watchdog_device iTCO_wdt_watchdog_dev = { |
| 357 | .info = &ident, |
| 358 | .ops = &iTCO_wdt_ops, |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 359 | }; |
| 360 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 361 | /* |
| 362 | * Init & exit routines |
| 363 | */ |
| 364 | |
Bill Pemberton | 4b12b89 | 2012-11-19 13:26:24 -0500 | [diff] [blame] | 365 | static void iTCO_wdt_cleanup(void) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 366 | { |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 367 | /* Stop the timer before we leave */ |
| 368 | if (!nowayout) |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 369 | iTCO_wdt_stop(&iTCO_wdt_watchdog_dev); |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 370 | |
| 371 | /* Deregister */ |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 372 | watchdog_unregister_device(&iTCO_wdt_watchdog_dev); |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 373 | |
| 374 | /* release resources */ |
| 375 | release_region(iTCO_wdt_private.tco_res->start, |
| 376 | resource_size(iTCO_wdt_private.tco_res)); |
| 377 | release_region(iTCO_wdt_private.smi_res->start, |
| 378 | resource_size(iTCO_wdt_private.smi_res)); |
| 379 | if (iTCO_wdt_private.iTCO_version == 2) { |
| 380 | iounmap(iTCO_wdt_private.gcs); |
| 381 | release_mem_region(iTCO_wdt_private.gcs_res->start, |
| 382 | resource_size(iTCO_wdt_private.gcs_res)); |
| 383 | } |
| 384 | |
| 385 | iTCO_wdt_private.tco_res = NULL; |
| 386 | iTCO_wdt_private.smi_res = NULL; |
| 387 | iTCO_wdt_private.gcs_res = NULL; |
| 388 | iTCO_wdt_private.gcs = NULL; |
| 389 | } |
| 390 | |
Bill Pemberton | 2d991a1 | 2012-11-19 13:21:41 -0500 | [diff] [blame] | 391 | static int iTCO_wdt_probe(struct platform_device *dev) |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 392 | { |
| 393 | int ret = -ENODEV; |
Wim Van Sebroeck | 12d60e2 | 2009-01-28 20:51:04 +0000 | [diff] [blame] | 394 | unsigned long val32; |
Jingoo Han | bc8fdfb | 2013-07-30 19:58:51 +0900 | [diff] [blame] | 395 | struct lpc_ich_info *ich_info = dev_get_platdata(&dev->dev); |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 396 | |
| 397 | if (!ich_info) |
| 398 | goto out; |
| 399 | |
| 400 | spin_lock_init(&iTCO_wdt_private.io_lock); |
| 401 | |
| 402 | iTCO_wdt_private.tco_res = |
| 403 | platform_get_resource(dev, IORESOURCE_IO, ICH_RES_IO_TCO); |
| 404 | if (!iTCO_wdt_private.tco_res) |
| 405 | goto out; |
| 406 | |
| 407 | iTCO_wdt_private.smi_res = |
| 408 | platform_get_resource(dev, IORESOURCE_IO, ICH_RES_IO_SMI); |
| 409 | if (!iTCO_wdt_private.smi_res) |
| 410 | goto out; |
| 411 | |
| 412 | iTCO_wdt_private.iTCO_version = ich_info->iTCO_version; |
| 413 | iTCO_wdt_private.dev = dev; |
| 414 | iTCO_wdt_private.pdev = to_pci_dev(dev->dev.parent); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 415 | |
| 416 | /* |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 417 | * Get the Memory-Mapped GCS register, we need it for the |
| 418 | * NO_REBOOT flag (TCO v2). |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 419 | */ |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 420 | if (iTCO_wdt_private.iTCO_version == 2) { |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 421 | iTCO_wdt_private.gcs_res = platform_get_resource(dev, |
| 422 | IORESOURCE_MEM, |
| 423 | ICH_RES_MEM_GCS); |
| 424 | |
| 425 | if (!iTCO_wdt_private.gcs_res) |
| 426 | goto out; |
| 427 | |
| 428 | if (!request_mem_region(iTCO_wdt_private.gcs_res->start, |
| 429 | resource_size(iTCO_wdt_private.gcs_res), dev->name)) { |
| 430 | ret = -EBUSY; |
Denis V. Lunev | de8cd9a | 2009-06-05 15:13:08 +0400 | [diff] [blame] | 431 | goto out; |
| 432 | } |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 433 | iTCO_wdt_private.gcs = ioremap(iTCO_wdt_private.gcs_res->start, |
| 434 | resource_size(iTCO_wdt_private.gcs_res)); |
| 435 | if (!iTCO_wdt_private.gcs) { |
| 436 | ret = -EIO; |
| 437 | goto unreg_gcs; |
| 438 | } |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 439 | } |
| 440 | |
| 441 | /* Check chipset's NO_REBOOT bit */ |
Wim Van Sebroeck | e033351 | 2006-11-12 18:05:09 +0100 | [diff] [blame] | 442 | if (iTCO_wdt_unset_NO_REBOOT_bit() && iTCO_vendor_check_noreboot_on()) { |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 443 | pr_info("unable to reset NO_REBOOT flag, device disabled by hardware/BIOS\n"); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 444 | ret = -ENODEV; /* Cannot reset NO_REBOOT bit */ |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 445 | goto unmap_gcs; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 446 | } |
| 447 | |
| 448 | /* Set the NO_REBOOT bit to prevent later reboots, just for sure */ |
| 449 | iTCO_wdt_set_NO_REBOOT_bit(); |
| 450 | |
Wim Van Sebroeck | 7cd5b08 | 2008-11-19 19:39:58 +0000 | [diff] [blame] | 451 | /* The TCO logic uses the TCO_EN bit in the SMI_EN register */ |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 452 | if (!request_region(iTCO_wdt_private.smi_res->start, |
| 453 | resource_size(iTCO_wdt_private.smi_res), dev->name)) { |
| 454 | pr_err("I/O address 0x%04llx already in use, device disabled\n", |
Randy Dunlap | 4b98b32 | 2012-05-14 13:15:20 -0700 | [diff] [blame] | 455 | (u64)SMI_EN); |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 456 | ret = -EBUSY; |
| 457 | goto unmap_gcs; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 458 | } |
Wim Van Sebroeck | 0d09858 | 2011-12-26 15:23:51 +0100 | [diff] [blame] | 459 | if (turn_SMI_watchdog_clear_off >= iTCO_wdt_private.iTCO_version) { |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 460 | /* |
| 461 | * Bit 13: TCO_EN -> 0 |
| 462 | * Disables TCO logic generating an SMI# |
| 463 | */ |
Wim Van Sebroeck | deb9197 | 2011-10-19 23:59:26 +0200 | [diff] [blame] | 464 | val32 = inl(SMI_EN); |
| 465 | val32 &= 0xffffdfff; /* Turn off SMI clearing watchdog */ |
| 466 | outl(val32, SMI_EN); |
| 467 | } |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 468 | |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 469 | if (!request_region(iTCO_wdt_private.tco_res->start, |
| 470 | resource_size(iTCO_wdt_private.tco_res), dev->name)) { |
| 471 | pr_err("I/O address 0x%04llx already in use, device disabled\n", |
Randy Dunlap | 4b98b32 | 2012-05-14 13:15:20 -0700 | [diff] [blame] | 472 | (u64)TCOBASE); |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 473 | ret = -EBUSY; |
| 474 | goto unreg_smi; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 475 | } |
| 476 | |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 477 | pr_info("Found a %s TCO device (Version=%d, TCOBASE=0x%04llx)\n", |
Randy Dunlap | 4b98b32 | 2012-05-14 13:15:20 -0700 | [diff] [blame] | 478 | ich_info->name, ich_info->iTCO_version, (u64)TCOBASE); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 479 | |
| 480 | /* Clear out the (probably old) status */ |
Pádraig Brady | 7e6811d | 2010-04-19 13:38:25 +0100 | [diff] [blame] | 481 | outw(0x0008, TCO1_STS); /* Clear the Time Out Status bit */ |
| 482 | outw(0x0002, TCO2_STS); /* Clear SECOND_TO_STS bit */ |
| 483 | outw(0x0004, TCO2_STS); /* Clear BOOT_STS bit */ |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 484 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 485 | iTCO_wdt_watchdog_dev.bootstatus = 0; |
| 486 | iTCO_wdt_watchdog_dev.timeout = WATCHDOG_TIMEOUT; |
| 487 | watchdog_set_nowayout(&iTCO_wdt_watchdog_dev, nowayout); |
| 488 | iTCO_wdt_watchdog_dev.parent = dev->dev.parent; |
| 489 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 490 | /* Make sure the watchdog is not running */ |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 491 | iTCO_wdt_stop(&iTCO_wdt_watchdog_dev); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 492 | |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 493 | /* Check that the heartbeat value is within it's range; |
| 494 | if not reset to the default */ |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 495 | if (iTCO_wdt_set_timeout(&iTCO_wdt_watchdog_dev, heartbeat)) { |
| 496 | iTCO_wdt_set_timeout(&iTCO_wdt_watchdog_dev, WATCHDOG_TIMEOUT); |
| 497 | pr_info("timeout value out of range, using %d\n", |
| 498 | WATCHDOG_TIMEOUT); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 499 | } |
| 500 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 501 | ret = watchdog_register_device(&iTCO_wdt_watchdog_dev); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 502 | if (ret != 0) { |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 503 | pr_err("cannot register watchdog device (err=%d)\n", ret); |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 504 | goto unreg_tco; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 505 | } |
| 506 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 507 | pr_info("initialized. heartbeat=%d sec (nowayout=%d)\n", |
| 508 | heartbeat, nowayout); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 509 | |
| 510 | return 0; |
| 511 | |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 512 | unreg_tco: |
| 513 | release_region(iTCO_wdt_private.tco_res->start, |
| 514 | resource_size(iTCO_wdt_private.tco_res)); |
| 515 | unreg_smi: |
| 516 | release_region(iTCO_wdt_private.smi_res->start, |
| 517 | resource_size(iTCO_wdt_private.smi_res)); |
| 518 | unmap_gcs: |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 519 | if (iTCO_wdt_private.iTCO_version == 2) |
| 520 | iounmap(iTCO_wdt_private.gcs); |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 521 | unreg_gcs: |
| 522 | if (iTCO_wdt_private.iTCO_version == 2) |
| 523 | release_mem_region(iTCO_wdt_private.gcs_res->start, |
| 524 | resource_size(iTCO_wdt_private.gcs_res)); |
Denis V. Lunev | de8cd9a | 2009-06-05 15:13:08 +0400 | [diff] [blame] | 525 | out: |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 526 | iTCO_wdt_private.tco_res = NULL; |
| 527 | iTCO_wdt_private.smi_res = NULL; |
| 528 | iTCO_wdt_private.gcs_res = NULL; |
| 529 | iTCO_wdt_private.gcs = NULL; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 530 | |
Naga Chumbalkar | ec26985 | 2010-02-09 00:42:02 +0100 | [diff] [blame] | 531 | return ret; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 532 | } |
| 533 | |
Bill Pemberton | 4b12b89 | 2012-11-19 13:26:24 -0500 | [diff] [blame] | 534 | static int iTCO_wdt_remove(struct platform_device *dev) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 535 | { |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 536 | if (iTCO_wdt_private.tco_res || iTCO_wdt_private.smi_res) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 537 | iTCO_wdt_cleanup(); |
| 538 | |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 539 | return 0; |
| 540 | } |
| 541 | |
| 542 | static void iTCO_wdt_shutdown(struct platform_device *dev) |
| 543 | { |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 544 | iTCO_wdt_stop(NULL); |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 545 | } |
| 546 | |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 547 | static struct platform_driver iTCO_wdt_driver = { |
| 548 | .probe = iTCO_wdt_probe, |
Bill Pemberton | 8226871 | 2012-11-19 13:21:12 -0500 | [diff] [blame] | 549 | .remove = iTCO_wdt_remove, |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 550 | .shutdown = iTCO_wdt_shutdown, |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 551 | .driver = { |
| 552 | .owner = THIS_MODULE, |
| 553 | .name = DRV_NAME, |
| 554 | }, |
| 555 | }; |
| 556 | |
| 557 | static int __init iTCO_wdt_init_module(void) |
| 558 | { |
| 559 | int err; |
| 560 | |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 561 | pr_info("Intel TCO WatchDog Timer Driver v%s\n", DRV_VERSION); |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 562 | |
| 563 | err = platform_driver_register(&iTCO_wdt_driver); |
| 564 | if (err) |
| 565 | return err; |
| 566 | |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 567 | return 0; |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 568 | } |
| 569 | |
| 570 | static void __exit iTCO_wdt_cleanup_module(void) |
| 571 | { |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 572 | platform_driver_unregister(&iTCO_wdt_driver); |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 573 | pr_info("Watchdog Module Unloaded\n"); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 574 | } |
| 575 | |
| 576 | module_init(iTCO_wdt_init_module); |
| 577 | module_exit(iTCO_wdt_cleanup_module); |
| 578 | |
| 579 | MODULE_AUTHOR("Wim Van Sebroeck <wim@iguana.be>"); |
| 580 | MODULE_DESCRIPTION("Intel TCO WatchDog Timer Driver"); |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 581 | MODULE_VERSION(DRV_VERSION); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 582 | MODULE_LICENSE("GPL"); |
Jan Beulich | e5de32e | 2012-06-22 16:41:00 +0100 | [diff] [blame] | 583 | MODULE_ALIAS("platform:" DRV_NAME); |