blob: 06fcb6c8c9172379dd320aaaed10f368cdced739 [file] [log] [blame]
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +02001/*
Wim Van Sebroeckcb711a12009-11-15 13:44:54 +00002 * intel TCO Watchdog Driver
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +02003 *
Wim Van Sebroeckdeb91972011-10-19 23:59:26 +02004 * (c) Copyright 2006-2011 Wim Van Sebroeck <wim@iguana.be>.
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +02005 *
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 Sebroeckcb711a12009-11-15 13:44:54 +000017 * 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 Sebroeckd38bd472010-12-31 14:10:45 +000029 * document number 322896-001, 322897-001: NM10
Wim Van Sebroeckcb711a12009-11-15 13:44:54 +000030 * 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 Heasley3c9d8ec2010-01-14 20:58:05 +000033 * document number 322169-001, 322170-003: 5 Series, 3400 Series (PCH)
Imre Kaloz4946f832009-12-07 20:42:26 +010034 * document number 320066-003, 320257-008: EP80597 (IICH)
Seth Heasley203f8d82011-01-07 17:11:08 -080035 * document number 324645-001, 324646-001: Cougar Point (CPT)
Seth Heasleyc54fb812010-11-17 12:15:08 -070036 * document number TBD : Patsburg (PBG)
Seth Heasley203f8d82011-01-07 17:11:08 -080037 * document number TBD : DH89xxCC
Seth Heasleyaa1f4652011-04-20 10:56:20 -070038 * document number TBD : Panther Point
Seth Heasley84e83c22012-01-23 16:40:55 -080039 * document number TBD : Lynx Point
James Ralston7fb9c1a2012-08-09 09:46:13 -070040 * document number TBD : Lynx Point-LP
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020041 */
42
43/*
44 * Includes, defines, variables, module parameters, ...
45 */
46
Joe Perches27c766a2012-02-15 15:06:19 -080047#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
48
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020049/* Module and version information */
Wim Van Sebroeck7944d3a2008-08-06 20:19:41 +000050#define DRV_NAME "iTCO_wdt"
Peter Tyser24b3a162014-03-10 16:34:55 -050051#define DRV_VERSION "1.11"
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020052
53/* Includes */
Rafael J. Wysockif321c9cb2015-04-03 15:25:04 +020054#include <linux/acpi.h> /* For ACPI support */
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +020055#include <linux/module.h> /* For module specific items */
56#include <linux/moduleparam.h> /* For new moduleparam's */
57#include <linux/types.h> /* For standard types (like size_t) */
58#include <linux/errno.h> /* For the -ENODEV/... values */
59#include <linux/kernel.h> /* For printk/panic/... */
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +020060#include <linux/watchdog.h> /* For the watchdog specific items */
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +020061#include <linux/init.h> /* For __init/__exit/... */
62#include <linux/fs.h> /* For file operations */
63#include <linux/platform_device.h> /* For platform_driver framework */
64#include <linux/pci.h> /* For pci functions */
65#include <linux/ioport.h> /* For io-port access */
66#include <linux/spinlock.h> /* For spin_lock/spin_unlock/... */
Alan Cox0e6fa3f2008-05-19 14:06:25 +010067#include <linux/uaccess.h> /* For copy_to_user/put_user/... */
68#include <linux/io.h> /* For inb/outb/... */
Matt Fleming420b54d2015-08-06 13:46:24 +010069#include <linux/platform_data/itco_wdt.h>
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020070
Alan Cox0e6fa3f2008-05-19 14:06:25 +010071#include "iTCO_vendor.h"
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020072
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020073/* Address definitions for the TCO */
Alan Cox0e6fa3f2008-05-19 14:06:25 +010074/* TCO base address */
Aaron Sierra887c8ec2012-04-20 14:14:11 -050075#define TCOBASE (iTCO_wdt_private.tco_res->start)
Alan Cox0e6fa3f2008-05-19 14:06:25 +010076/* SMI Control and Enable Register */
Aaron Sierra887c8ec2012-04-20 14:14:11 -050077#define SMI_EN (iTCO_wdt_private.smi_res->start)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020078
Wim Van Sebroeck0a7e65822009-04-14 20:20:07 +000079#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 Sebroeck9e0ea342006-05-21 14:37:44 +020088
89/* internal variables */
Alan Cox0e6fa3f2008-05-19 14:06:25 +010090static struct { /* this is private data for the iTCO_wdt device */
91 /* TCO version/generation */
92 unsigned int iTCO_version;
Aaron Sierra887c8ec2012-04-20 14:14:11 -050093 struct resource *tco_res;
94 struct resource *smi_res;
Peter Tyser24b3a162014-03-10 16:34:55 -050095 /*
96 * NO_REBOOT flag is Memory-Mapped GCS register bit 5 (TCO version 2),
97 * or memory-mapped PMC register bit 4 (TCO version 3).
98 */
99 struct resource *gcs_pmc_res;
100 unsigned long __iomem *gcs_pmc;
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100101 /* the lock for io operations */
102 spinlock_t io_lock;
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500103 struct platform_device *dev;
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100104 /* the PCI-device */
105 struct pci_dev *pdev;
Rafael J. Wysockif321c9cb2015-04-03 15:25:04 +0200106 /* whether or not the watchdog has been suspended */
107 bool suspended;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200108} iTCO_wdt_private;
109
110/* module parameters */
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200111#define WATCHDOG_TIMEOUT 30 /* 30 sec default heartbeat */
112static int heartbeat = WATCHDOG_TIMEOUT; /* in seconds */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200113module_param(heartbeat, int, 0);
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100114MODULE_PARM_DESC(heartbeat, "Watchdog timeout in seconds. "
115 "5..76 (TCO v1) or 3..614 (TCO v2), default="
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200116 __MODULE_STRING(WATCHDOG_TIMEOUT) ")");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200117
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100118static bool nowayout = WATCHDOG_NOWAYOUT;
119module_param(nowayout, bool, 0);
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100120MODULE_PARM_DESC(nowayout,
121 "Watchdog cannot be stopped once started (default="
122 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100123
Wim Van Sebroeck0d098582011-12-26 15:23:51 +0100124static int turn_SMI_watchdog_clear_off = 1;
Wim Van Sebroeckdeb91972011-10-19 23:59:26 +0200125module_param(turn_SMI_watchdog_clear_off, int, 0);
126MODULE_PARM_DESC(turn_SMI_watchdog_clear_off,
Wim Van Sebroeck0d098582011-12-26 15:23:51 +0100127 "Turn off SMI clearing watchdog (depends on TCO-version)(default=1)");
Wim Van Sebroeckdeb91972011-10-19 23:59:26 +0200128
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200129/*
130 * Some TCO specific functions
131 */
132
Peter Tyser24b3a162014-03-10 16:34:55 -0500133/*
134 * The iTCO v1 and v2's internal timer is stored as ticks which decrement
135 * every 0.6 seconds. v3's internal timer is stored as seconds (some
136 * datasheets incorrectly state 0.6 seconds).
137 */
138static inline unsigned int seconds_to_ticks(int secs)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200139{
Peter Tyser24b3a162014-03-10 16:34:55 -0500140 return iTCO_wdt_private.iTCO_version == 3 ? secs : (secs * 10) / 6;
141}
142
143static inline unsigned int ticks_to_seconds(int ticks)
144{
145 return iTCO_wdt_private.iTCO_version == 3 ? ticks : (ticks * 6) / 10;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200146}
147
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100148static inline u32 no_reboot_bit(void)
149{
150 u32 enable_bit;
151
152 switch (iTCO_wdt_private.iTCO_version) {
Yong, Jonathan3b3a1c82016-06-17 00:33:31 +0000153 case 5:
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100154 case 3:
155 enable_bit = 0x00000010;
156 break;
157 case 2:
158 enable_bit = 0x00000020;
159 break;
160 case 4:
161 case 1:
162 default:
163 enable_bit = 0x00000002;
164 break;
165 }
166
167 return enable_bit;
168}
169
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200170static void iTCO_wdt_set_NO_REBOOT_bit(void)
171{
172 u32 val32;
173
174 /* Set the NO_REBOOT bit: this disables reboots */
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100175 if (iTCO_wdt_private.iTCO_version >= 2) {
Peter Tyser24b3a162014-03-10 16:34:55 -0500176 val32 = readl(iTCO_wdt_private.gcs_pmc);
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100177 val32 |= no_reboot_bit();
Peter Tyser24b3a162014-03-10 16:34:55 -0500178 writel(val32, iTCO_wdt_private.gcs_pmc);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200179 } else if (iTCO_wdt_private.iTCO_version == 1) {
180 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100181 val32 |= no_reboot_bit();
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200182 pci_write_config_dword(iTCO_wdt_private.pdev, 0xd4, val32);
183 }
184}
185
186static int iTCO_wdt_unset_NO_REBOOT_bit(void)
187{
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100188 u32 enable_bit = no_reboot_bit();
189 u32 val32 = 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200190
191 /* Unset the NO_REBOOT bit: this enables reboots */
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100192 if (iTCO_wdt_private.iTCO_version >= 2) {
Peter Tyser24b3a162014-03-10 16:34:55 -0500193 val32 = readl(iTCO_wdt_private.gcs_pmc);
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100194 val32 &= ~enable_bit;
Peter Tyser24b3a162014-03-10 16:34:55 -0500195 writel(val32, iTCO_wdt_private.gcs_pmc);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200196
Peter Tyser24b3a162014-03-10 16:34:55 -0500197 val32 = readl(iTCO_wdt_private.gcs_pmc);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200198 } else if (iTCO_wdt_private.iTCO_version == 1) {
199 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100200 val32 &= ~enable_bit;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200201 pci_write_config_dword(iTCO_wdt_private.pdev, 0xd4, val32);
202
203 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200204 }
205
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100206 if (val32 & enable_bit)
207 return -EIO;
208
209 return 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200210}
211
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200212static int iTCO_wdt_start(struct watchdog_device *wd_dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200213{
214 unsigned int val;
215
216 spin_lock(&iTCO_wdt_private.io_lock);
217
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200218 iTCO_vendor_pre_start(iTCO_wdt_private.smi_res, wd_dev->timeout);
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100219
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200220 /* disable chipset's NO_REBOOT bit */
221 if (iTCO_wdt_unset_NO_REBOOT_bit()) {
Roel Kluin2ba7d7b2007-10-23 03:08:27 +0200222 spin_unlock(&iTCO_wdt_private.io_lock);
Joe Perches27c766a2012-02-15 15:06:19 -0800223 pr_err("failed to reset NO_REBOOT flag, reboot disabled by hardware/BIOS\n");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200224 return -EIO;
225 }
226
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000227 /* Force the timer to its reload value by writing to the TCO_RLD
228 register */
Peter Tyser24b3a162014-03-10 16:34:55 -0500229 if (iTCO_wdt_private.iTCO_version >= 2)
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000230 outw(0x01, TCO_RLD);
231 else if (iTCO_wdt_private.iTCO_version == 1)
232 outb(0x01, TCO_RLD);
233
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200234 /* Bit 11: TCO Timer Halt -> 0 = The TCO timer is enabled to count */
235 val = inw(TCO1_CNT);
236 val &= 0xf7ff;
237 outw(val, TCO1_CNT);
238 val = inw(TCO1_CNT);
239 spin_unlock(&iTCO_wdt_private.io_lock);
240
241 if (val & 0x0800)
242 return -1;
243 return 0;
244}
245
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200246static int iTCO_wdt_stop(struct watchdog_device *wd_dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200247{
248 unsigned int val;
249
250 spin_lock(&iTCO_wdt_private.io_lock);
251
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500252 iTCO_vendor_pre_stop(iTCO_wdt_private.smi_res);
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100253
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200254 /* Bit 11: TCO Timer Halt -> 1 = The TCO timer is disabled */
255 val = inw(TCO1_CNT);
256 val |= 0x0800;
257 outw(val, TCO1_CNT);
258 val = inw(TCO1_CNT);
259
260 /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
261 iTCO_wdt_set_NO_REBOOT_bit();
262
263 spin_unlock(&iTCO_wdt_private.io_lock);
264
265 if ((val & 0x0800) == 0)
266 return -1;
267 return 0;
268}
269
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200270static int iTCO_wdt_ping(struct watchdog_device *wd_dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200271{
272 spin_lock(&iTCO_wdt_private.io_lock);
273
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200274 iTCO_vendor_pre_keepalive(iTCO_wdt_private.smi_res, wd_dev->timeout);
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100275
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200276 /* Reload the timer by writing to the TCO Timer Counter register */
Peter Tyser24b3a162014-03-10 16:34:55 -0500277 if (iTCO_wdt_private.iTCO_version >= 2) {
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200278 outw(0x01, TCO_RLD);
Peter Tyser24b3a162014-03-10 16:34:55 -0500279 } else if (iTCO_wdt_private.iTCO_version == 1) {
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100280 /* Reset the timeout status bit so that the timer
281 * needs to count down twice again before rebooting */
282 outw(0x0008, TCO1_STS); /* write 1 to clear bit */
283
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200284 outb(0x01, TCO_RLD);
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100285 }
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200286
287 spin_unlock(&iTCO_wdt_private.io_lock);
288 return 0;
289}
290
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200291static int iTCO_wdt_set_timeout(struct watchdog_device *wd_dev, unsigned int t)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200292{
293 unsigned int val16;
294 unsigned char val8;
295 unsigned int tmrval;
296
297 tmrval = seconds_to_ticks(t);
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100298
299 /* For TCO v1 the timer counts down twice before rebooting */
300 if (iTCO_wdt_private.iTCO_version == 1)
301 tmrval /= 2;
302
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200303 /* from the specs: */
304 /* "Values of 0h-3h are ignored and should not be attempted" */
305 if (tmrval < 0x04)
306 return -EINVAL;
Peter Tyser24b3a162014-03-10 16:34:55 -0500307 if (((iTCO_wdt_private.iTCO_version >= 2) && (tmrval > 0x3ff)) ||
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200308 ((iTCO_wdt_private.iTCO_version == 1) && (tmrval > 0x03f)))
309 return -EINVAL;
310
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100311 iTCO_vendor_pre_set_heartbeat(tmrval);
312
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200313 /* Write new heartbeat to watchdog */
Peter Tyser24b3a162014-03-10 16:34:55 -0500314 if (iTCO_wdt_private.iTCO_version >= 2) {
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200315 spin_lock(&iTCO_wdt_private.io_lock);
316 val16 = inw(TCOv2_TMR);
317 val16 &= 0xfc00;
318 val16 |= tmrval;
319 outw(val16, TCOv2_TMR);
320 val16 = inw(TCOv2_TMR);
321 spin_unlock(&iTCO_wdt_private.io_lock);
322
323 if ((val16 & 0x3ff) != tmrval)
324 return -EINVAL;
325 } else if (iTCO_wdt_private.iTCO_version == 1) {
326 spin_lock(&iTCO_wdt_private.io_lock);
327 val8 = inb(TCOv1_TMR);
328 val8 &= 0xc0;
329 val8 |= (tmrval & 0xff);
330 outb(val8, TCOv1_TMR);
331 val8 = inb(TCOv1_TMR);
332 spin_unlock(&iTCO_wdt_private.io_lock);
333
334 if ((val8 & 0x3f) != tmrval)
335 return -EINVAL;
336 }
337
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200338 wd_dev->timeout = t;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200339 return 0;
340}
341
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200342static unsigned int iTCO_wdt_get_timeleft(struct watchdog_device *wd_dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200343{
344 unsigned int val16;
345 unsigned char val8;
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200346 unsigned int time_left = 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200347
348 /* read the TCO Timer */
Peter Tyser24b3a162014-03-10 16:34:55 -0500349 if (iTCO_wdt_private.iTCO_version >= 2) {
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200350 spin_lock(&iTCO_wdt_private.io_lock);
351 val16 = inw(TCO_RLD);
352 val16 &= 0x3ff;
353 spin_unlock(&iTCO_wdt_private.io_lock);
354
Peter Tyser24b3a162014-03-10 16:34:55 -0500355 time_left = ticks_to_seconds(val16);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200356 } else if (iTCO_wdt_private.iTCO_version == 1) {
357 spin_lock(&iTCO_wdt_private.io_lock);
358 val8 = inb(TCO_RLD);
359 val8 &= 0x3f;
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100360 if (!(inw(TCO1_STS) & 0x0008))
361 val8 += (inb(TCOv1_TMR) & 0x3f);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200362 spin_unlock(&iTCO_wdt_private.io_lock);
363
Peter Tyser24b3a162014-03-10 16:34:55 -0500364 time_left = ticks_to_seconds(val8);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200365 }
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200366 return time_left;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200367}
368
369/*
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200370 * Kernel Interfaces
371 */
372
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200373static const struct watchdog_info ident = {
374 .options = WDIOF_SETTIMEOUT |
375 WDIOF_KEEPALIVEPING |
376 WDIOF_MAGICCLOSE,
377 .firmware_version = 0,
378 .identity = DRV_NAME,
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200379};
380
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200381static const struct watchdog_ops iTCO_wdt_ops = {
382 .owner = THIS_MODULE,
383 .start = iTCO_wdt_start,
Jingoo Han5f5e1902014-02-27 14:41:42 +0900384 .stop = iTCO_wdt_stop,
385 .ping = iTCO_wdt_ping,
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200386 .set_timeout = iTCO_wdt_set_timeout,
387 .get_timeleft = iTCO_wdt_get_timeleft,
388};
389
390static struct watchdog_device iTCO_wdt_watchdog_dev = {
391 .info = &ident,
Jingoo Han5f5e1902014-02-27 14:41:42 +0900392 .ops = &iTCO_wdt_ops,
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200393};
394
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200395/*
396 * Init & exit routines
397 */
398
Bill Pemberton4b12b892012-11-19 13:26:24 -0500399static void iTCO_wdt_cleanup(void)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200400{
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500401 /* Stop the timer before we leave */
402 if (!nowayout)
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200403 iTCO_wdt_stop(&iTCO_wdt_watchdog_dev);
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500404
405 /* Deregister */
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200406 watchdog_unregister_device(&iTCO_wdt_watchdog_dev);
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500407
408 /* release resources */
409 release_region(iTCO_wdt_private.tco_res->start,
410 resource_size(iTCO_wdt_private.tco_res));
411 release_region(iTCO_wdt_private.smi_res->start,
412 resource_size(iTCO_wdt_private.smi_res));
Peter Tyser24b3a162014-03-10 16:34:55 -0500413 if (iTCO_wdt_private.iTCO_version >= 2) {
414 iounmap(iTCO_wdt_private.gcs_pmc);
415 release_mem_region(iTCO_wdt_private.gcs_pmc_res->start,
416 resource_size(iTCO_wdt_private.gcs_pmc_res));
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500417 }
418
419 iTCO_wdt_private.tco_res = NULL;
420 iTCO_wdt_private.smi_res = NULL;
Peter Tyser24b3a162014-03-10 16:34:55 -0500421 iTCO_wdt_private.gcs_pmc_res = NULL;
422 iTCO_wdt_private.gcs_pmc = NULL;
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500423}
424
Bill Pemberton2d991a12012-11-19 13:21:41 -0500425static int iTCO_wdt_probe(struct platform_device *dev)
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500426{
427 int ret = -ENODEV;
Wim Van Sebroeck12d60e22009-01-28 20:51:04 +0000428 unsigned long val32;
Matt Fleming420b54d2015-08-06 13:46:24 +0100429 struct itco_wdt_platform_data *pdata = dev_get_platdata(&dev->dev);
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500430
Matt Fleming420b54d2015-08-06 13:46:24 +0100431 if (!pdata)
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500432 goto out;
433
434 spin_lock_init(&iTCO_wdt_private.io_lock);
435
436 iTCO_wdt_private.tco_res =
437 platform_get_resource(dev, IORESOURCE_IO, ICH_RES_IO_TCO);
438 if (!iTCO_wdt_private.tco_res)
439 goto out;
440
441 iTCO_wdt_private.smi_res =
442 platform_get_resource(dev, IORESOURCE_IO, ICH_RES_IO_SMI);
443 if (!iTCO_wdt_private.smi_res)
444 goto out;
445
Matt Fleming420b54d2015-08-06 13:46:24 +0100446 iTCO_wdt_private.iTCO_version = pdata->version;
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500447 iTCO_wdt_private.dev = dev;
448 iTCO_wdt_private.pdev = to_pci_dev(dev->dev.parent);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200449
450 /*
Peter Tyser24b3a162014-03-10 16:34:55 -0500451 * Get the Memory-Mapped GCS or PMC register, we need it for the
452 * NO_REBOOT flag (TCO v2 and v3).
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200453 */
Peter Tyser24b3a162014-03-10 16:34:55 -0500454 if (iTCO_wdt_private.iTCO_version >= 2) {
455 iTCO_wdt_private.gcs_pmc_res = platform_get_resource(dev,
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500456 IORESOURCE_MEM,
Peter Tyser24b3a162014-03-10 16:34:55 -0500457 ICH_RES_MEM_GCS_PMC);
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500458
Peter Tyser24b3a162014-03-10 16:34:55 -0500459 if (!iTCO_wdt_private.gcs_pmc_res)
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500460 goto out;
461
Peter Tyser24b3a162014-03-10 16:34:55 -0500462 if (!request_mem_region(iTCO_wdt_private.gcs_pmc_res->start,
463 resource_size(iTCO_wdt_private.gcs_pmc_res), dev->name)) {
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500464 ret = -EBUSY;
Denis V. Lunevde8cd9a2009-06-05 15:13:08 +0400465 goto out;
466 }
Peter Tyser24b3a162014-03-10 16:34:55 -0500467 iTCO_wdt_private.gcs_pmc = ioremap(iTCO_wdt_private.gcs_pmc_res->start,
468 resource_size(iTCO_wdt_private.gcs_pmc_res));
469 if (!iTCO_wdt_private.gcs_pmc) {
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500470 ret = -EIO;
Peter Tyser24b3a162014-03-10 16:34:55 -0500471 goto unreg_gcs_pmc;
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500472 }
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200473 }
474
475 /* Check chipset's NO_REBOOT bit */
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100476 if (iTCO_wdt_unset_NO_REBOOT_bit() && iTCO_vendor_check_noreboot_on()) {
Joe Perches27c766a2012-02-15 15:06:19 -0800477 pr_info("unable to reset NO_REBOOT flag, device disabled by hardware/BIOS\n");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200478 ret = -ENODEV; /* Cannot reset NO_REBOOT bit */
Peter Tyser24b3a162014-03-10 16:34:55 -0500479 goto unmap_gcs_pmc;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200480 }
481
482 /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
483 iTCO_wdt_set_NO_REBOOT_bit();
484
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000485 /* The TCO logic uses the TCO_EN bit in the SMI_EN register */
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500486 if (!request_region(iTCO_wdt_private.smi_res->start,
487 resource_size(iTCO_wdt_private.smi_res), dev->name)) {
488 pr_err("I/O address 0x%04llx already in use, device disabled\n",
Randy Dunlap4b98b322012-05-14 13:15:20 -0700489 (u64)SMI_EN);
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500490 ret = -EBUSY;
Peter Tyser24b3a162014-03-10 16:34:55 -0500491 goto unmap_gcs_pmc;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200492 }
Wim Van Sebroeck0d098582011-12-26 15:23:51 +0100493 if (turn_SMI_watchdog_clear_off >= iTCO_wdt_private.iTCO_version) {
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500494 /*
495 * Bit 13: TCO_EN -> 0
496 * Disables TCO logic generating an SMI#
497 */
Wim Van Sebroeckdeb91972011-10-19 23:59:26 +0200498 val32 = inl(SMI_EN);
499 val32 &= 0xffffdfff; /* Turn off SMI clearing watchdog */
500 outl(val32, SMI_EN);
501 }
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200502
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500503 if (!request_region(iTCO_wdt_private.tco_res->start,
504 resource_size(iTCO_wdt_private.tco_res), dev->name)) {
505 pr_err("I/O address 0x%04llx already in use, device disabled\n",
Randy Dunlap4b98b322012-05-14 13:15:20 -0700506 (u64)TCOBASE);
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500507 ret = -EBUSY;
508 goto unreg_smi;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200509 }
510
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500511 pr_info("Found a %s TCO device (Version=%d, TCOBASE=0x%04llx)\n",
Matt Fleming420b54d2015-08-06 13:46:24 +0100512 pdata->name, pdata->version, (u64)TCOBASE);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200513
514 /* Clear out the (probably old) status */
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100515 switch (iTCO_wdt_private.iTCO_version) {
Yong, Jonathan3b3a1c82016-06-17 00:33:31 +0000516 case 5:
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100517 case 4:
518 outw(0x0008, TCO1_STS); /* Clear the Time Out Status bit */
519 outw(0x0002, TCO2_STS); /* Clear SECOND_TO_STS bit */
520 break;
521 case 3:
Peter Tyser24b3a162014-03-10 16:34:55 -0500522 outl(0x20008, TCO1_STS);
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100523 break;
524 case 2:
525 case 1:
526 default:
Peter Tyser24b3a162014-03-10 16:34:55 -0500527 outw(0x0008, TCO1_STS); /* Clear the Time Out Status bit */
528 outw(0x0002, TCO2_STS); /* Clear SECOND_TO_STS bit */
529 outw(0x0004, TCO2_STS); /* Clear BOOT_STS bit */
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100530 break;
Peter Tyser24b3a162014-03-10 16:34:55 -0500531 }
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200532
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200533 iTCO_wdt_watchdog_dev.bootstatus = 0;
534 iTCO_wdt_watchdog_dev.timeout = WATCHDOG_TIMEOUT;
535 watchdog_set_nowayout(&iTCO_wdt_watchdog_dev, nowayout);
Jean Delvarec90789b2014-03-10 21:28:17 +0100536 iTCO_wdt_watchdog_dev.parent = &dev->dev;
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200537
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200538 /* Make sure the watchdog is not running */
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200539 iTCO_wdt_stop(&iTCO_wdt_watchdog_dev);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200540
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100541 /* Check that the heartbeat value is within it's range;
542 if not reset to the default */
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200543 if (iTCO_wdt_set_timeout(&iTCO_wdt_watchdog_dev, heartbeat)) {
544 iTCO_wdt_set_timeout(&iTCO_wdt_watchdog_dev, WATCHDOG_TIMEOUT);
545 pr_info("timeout value out of range, using %d\n",
546 WATCHDOG_TIMEOUT);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200547 }
548
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200549 ret = watchdog_register_device(&iTCO_wdt_watchdog_dev);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200550 if (ret != 0) {
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200551 pr_err("cannot register watchdog device (err=%d)\n", ret);
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500552 goto unreg_tco;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200553 }
554
Joe Perches27c766a2012-02-15 15:06:19 -0800555 pr_info("initialized. heartbeat=%d sec (nowayout=%d)\n",
556 heartbeat, nowayout);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200557
558 return 0;
559
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500560unreg_tco:
561 release_region(iTCO_wdt_private.tco_res->start,
562 resource_size(iTCO_wdt_private.tco_res));
563unreg_smi:
564 release_region(iTCO_wdt_private.smi_res->start,
565 resource_size(iTCO_wdt_private.smi_res));
Peter Tyser24b3a162014-03-10 16:34:55 -0500566unmap_gcs_pmc:
567 if (iTCO_wdt_private.iTCO_version >= 2)
568 iounmap(iTCO_wdt_private.gcs_pmc);
569unreg_gcs_pmc:
570 if (iTCO_wdt_private.iTCO_version >= 2)
571 release_mem_region(iTCO_wdt_private.gcs_pmc_res->start,
572 resource_size(iTCO_wdt_private.gcs_pmc_res));
Denis V. Lunevde8cd9a2009-06-05 15:13:08 +0400573out:
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500574 iTCO_wdt_private.tco_res = NULL;
575 iTCO_wdt_private.smi_res = NULL;
Peter Tyser24b3a162014-03-10 16:34:55 -0500576 iTCO_wdt_private.gcs_pmc_res = NULL;
577 iTCO_wdt_private.gcs_pmc = NULL;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200578
Naga Chumbalkarec269852010-02-09 00:42:02 +0100579 return ret;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200580}
581
Bill Pemberton4b12b892012-11-19 13:26:24 -0500582static int iTCO_wdt_remove(struct platform_device *dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200583{
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500584 if (iTCO_wdt_private.tco_res || iTCO_wdt_private.smi_res)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200585 iTCO_wdt_cleanup();
586
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200587 return 0;
588}
589
590static void iTCO_wdt_shutdown(struct platform_device *dev)
591{
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200592 iTCO_wdt_stop(NULL);
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200593}
594
Rafael J. Wysockif321c9cb2015-04-03 15:25:04 +0200595#ifdef CONFIG_PM_SLEEP
596/*
597 * Suspend-to-idle requires this, because it stops the ticks and timekeeping, so
598 * the watchdog cannot be pinged while in that state. In ACPI sleep states the
599 * watchdog is stopped by the platform firmware.
600 */
601
602#ifdef CONFIG_ACPI
603static inline bool need_suspend(void)
604{
605 return acpi_target_system_state() == ACPI_STATE_S0;
606}
607#else
608static inline bool need_suspend(void) { return true; }
609#endif
610
611static int iTCO_wdt_suspend_noirq(struct device *dev)
612{
613 int ret = 0;
614
615 iTCO_wdt_private.suspended = false;
616 if (watchdog_active(&iTCO_wdt_watchdog_dev) && need_suspend()) {
617 ret = iTCO_wdt_stop(&iTCO_wdt_watchdog_dev);
618 if (!ret)
619 iTCO_wdt_private.suspended = true;
620 }
621 return ret;
622}
623
624static int iTCO_wdt_resume_noirq(struct device *dev)
625{
626 if (iTCO_wdt_private.suspended)
627 iTCO_wdt_start(&iTCO_wdt_watchdog_dev);
628
629 return 0;
630}
631
Julia Lawall6e938f62016-08-28 22:26:26 +0200632static const struct dev_pm_ops iTCO_wdt_pm = {
Rafael J. Wysockif321c9cb2015-04-03 15:25:04 +0200633 .suspend_noirq = iTCO_wdt_suspend_noirq,
634 .resume_noirq = iTCO_wdt_resume_noirq,
635};
636
637#define ITCO_WDT_PM_OPS (&iTCO_wdt_pm)
638#else
639#define ITCO_WDT_PM_OPS NULL
640#endif /* CONFIG_PM_SLEEP */
641
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200642static struct platform_driver iTCO_wdt_driver = {
643 .probe = iTCO_wdt_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500644 .remove = iTCO_wdt_remove,
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200645 .shutdown = iTCO_wdt_shutdown,
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200646 .driver = {
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200647 .name = DRV_NAME,
Rafael J. Wysockif321c9cb2015-04-03 15:25:04 +0200648 .pm = ITCO_WDT_PM_OPS,
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200649 },
650};
651
652static int __init iTCO_wdt_init_module(void)
653{
654 int err;
655
Joe Perches27c766a2012-02-15 15:06:19 -0800656 pr_info("Intel TCO WatchDog Timer Driver v%s\n", DRV_VERSION);
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200657
658 err = platform_driver_register(&iTCO_wdt_driver);
659 if (err)
660 return err;
661
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200662 return 0;
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200663}
664
665static void __exit iTCO_wdt_cleanup_module(void)
666{
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200667 platform_driver_unregister(&iTCO_wdt_driver);
Joe Perches27c766a2012-02-15 15:06:19 -0800668 pr_info("Watchdog Module Unloaded\n");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200669}
670
671module_init(iTCO_wdt_init_module);
672module_exit(iTCO_wdt_cleanup_module);
673
674MODULE_AUTHOR("Wim Van Sebroeck <wim@iguana.be>");
675MODULE_DESCRIPTION("Intel TCO WatchDog Timer Driver");
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200676MODULE_VERSION(DRV_VERSION);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200677MODULE_LICENSE("GPL");
Jan Beuliche5de32e2012-06-22 16:41:00 +0100678MODULE_ALIAS("platform:" DRV_NAME);