blob: c4f65873bfa453b1385d2a1371ba10c741df2be9 [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 Heasleyaa1f46522011-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 */
Guenter Roeckce1b95c2017-01-01 11:11:39 -080075#define TCOBASE(p) ((p)->tco_res->start)
Alan Cox0e6fa3f2008-05-19 14:06:25 +010076/* SMI Control and Enable Register */
Guenter Roeckce1b95c2017-01-01 11:11:39 -080077#define SMI_EN(p) ((p)->smi_res->start)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020078
Guenter Roeckce1b95c2017-01-01 11:11:39 -080079#define TCO_RLD(p) (TCOBASE(p) + 0x00) /* TCO Timer Reload/Curr. Value */
80#define TCOv1_TMR(p) (TCOBASE(p) + 0x01) /* TCOv1 Timer Initial Value*/
81#define TCO_DAT_IN(p) (TCOBASE(p) + 0x02) /* TCO Data In Register */
82#define TCO_DAT_OUT(p) (TCOBASE(p) + 0x03) /* TCO Data Out Register */
83#define TCO1_STS(p) (TCOBASE(p) + 0x04) /* TCO1 Status Register */
84#define TCO2_STS(p) (TCOBASE(p) + 0x06) /* TCO2 Status Register */
85#define TCO1_CNT(p) (TCOBASE(p) + 0x08) /* TCO1 Control Register */
86#define TCO2_CNT(p) (TCOBASE(p) + 0x0a) /* TCO2 Control Register */
87#define TCOv2_TMR(p) (TCOBASE(p) + 0x12) /* TCOv2 Timer Initial Value*/
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +020088
89/* internal variables */
Guenter Roeckce1b95c2017-01-01 11:11:39 -080090struct iTCO_wdt_private {
91 struct watchdog_device wddev;
92
Alan Cox0e6fa3f2008-05-19 14:06:25 +010093 /* TCO version/generation */
94 unsigned int iTCO_version;
Aaron Sierra887c8ec2012-04-20 14:14:11 -050095 struct resource *tco_res;
96 struct resource *smi_res;
Peter Tyser24b3a162014-03-10 16:34:55 -050097 /*
98 * NO_REBOOT flag is Memory-Mapped GCS register bit 5 (TCO version 2),
99 * or memory-mapped PMC register bit 4 (TCO version 3).
100 */
101 struct resource *gcs_pmc_res;
102 unsigned long __iomem *gcs_pmc;
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100103 /* the lock for io operations */
104 spinlock_t io_lock;
105 /* the PCI-device */
Guenter Roeck78e45692017-01-02 09:27:36 -0800106 struct pci_dev *pci_dev;
Rafael J. Wysockif321c9cb2015-04-03 15:25:04 +0200107 /* whether or not the watchdog has been suspended */
108 bool suspended;
Kuppuswamy Sathyanarayanan140c91b22017-04-09 15:00:19 -0700109 /* no reboot API private data */
110 void *no_reboot_priv;
Kuppuswamy Sathyanarayananf583a882017-04-09 15:00:18 -0700111 /* no reboot update function pointer */
112 int (*update_no_reboot_bit)(void *p, bool set);
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800113};
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200114
115/* module parameters */
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200116#define WATCHDOG_TIMEOUT 30 /* 30 sec default heartbeat */
117static int heartbeat = WATCHDOG_TIMEOUT; /* in seconds */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200118module_param(heartbeat, int, 0);
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100119MODULE_PARM_DESC(heartbeat, "Watchdog timeout in seconds. "
120 "5..76 (TCO v1) or 3..614 (TCO v2), default="
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200121 __MODULE_STRING(WATCHDOG_TIMEOUT) ")");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200122
Wim Van Sebroeck86a1e182012-03-05 16:51:11 +0100123static bool nowayout = WATCHDOG_NOWAYOUT;
124module_param(nowayout, bool, 0);
Alan Cox0e6fa3f2008-05-19 14:06:25 +0100125MODULE_PARM_DESC(nowayout,
126 "Watchdog cannot be stopped once started (default="
127 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100128
Wim Van Sebroeck0d098582011-12-26 15:23:51 +0100129static int turn_SMI_watchdog_clear_off = 1;
Wim Van Sebroeckdeb91972011-10-19 23:59:26 +0200130module_param(turn_SMI_watchdog_clear_off, int, 0);
131MODULE_PARM_DESC(turn_SMI_watchdog_clear_off,
Wim Van Sebroeck0d098582011-12-26 15:23:51 +0100132 "Turn off SMI clearing watchdog (depends on TCO-version)(default=1)");
Wim Van Sebroeckdeb91972011-10-19 23:59:26 +0200133
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200134/*
135 * Some TCO specific functions
136 */
137
Peter Tyser24b3a162014-03-10 16:34:55 -0500138/*
139 * The iTCO v1 and v2's internal timer is stored as ticks which decrement
140 * every 0.6 seconds. v3's internal timer is stored as seconds (some
141 * datasheets incorrectly state 0.6 seconds).
142 */
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800143static inline unsigned int seconds_to_ticks(struct iTCO_wdt_private *p,
144 int secs)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200145{
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800146 return p->iTCO_version == 3 ? secs : (secs * 10) / 6;
Peter Tyser24b3a162014-03-10 16:34:55 -0500147}
148
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800149static inline unsigned int ticks_to_seconds(struct iTCO_wdt_private *p,
150 int ticks)
Peter Tyser24b3a162014-03-10 16:34:55 -0500151{
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800152 return p->iTCO_version == 3 ? ticks : (ticks * 6) / 10;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200153}
154
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800155static inline u32 no_reboot_bit(struct iTCO_wdt_private *p)
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100156{
157 u32 enable_bit;
158
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800159 switch (p->iTCO_version) {
Yong, Jonathan3b3a1c82016-06-17 00:33:31 +0000160 case 5:
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100161 case 3:
162 enable_bit = 0x00000010;
163 break;
164 case 2:
165 enable_bit = 0x00000020;
166 break;
167 case 4:
168 case 1:
169 default:
170 enable_bit = 0x00000002;
171 break;
172 }
173
174 return enable_bit;
175}
176
Kuppuswamy Sathyanarayananf583a882017-04-09 15:00:18 -0700177static int update_no_reboot_bit_def(void *priv, bool set)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200178{
Kuppuswamy Sathyanarayananf583a882017-04-09 15:00:18 -0700179 return 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200180}
181
Kuppuswamy Sathyanarayananf583a882017-04-09 15:00:18 -0700182static int update_no_reboot_bit_pci(void *priv, bool set)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200183{
Kuppuswamy Sathyanarayananf583a882017-04-09 15:00:18 -0700184 struct iTCO_wdt_private *p = priv;
185 u32 val32 = 0, newval32 = 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200186
Kuppuswamy Sathyanarayananf583a882017-04-09 15:00:18 -0700187 pci_read_config_dword(p->pci_dev, 0xd4, &val32);
188 if (set)
189 val32 |= no_reboot_bit(p);
190 else
191 val32 &= ~no_reboot_bit(p);
192 pci_write_config_dword(p->pci_dev, 0xd4, val32);
193 pci_read_config_dword(p->pci_dev, 0xd4, &newval32);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200194
Kuppuswamy Sathyanarayananf583a882017-04-09 15:00:18 -0700195 /* make sure the update is successful */
196 if (val32 != newval32)
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100197 return -EIO;
198
199 return 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200200}
201
Kuppuswamy Sathyanarayananf583a882017-04-09 15:00:18 -0700202static int update_no_reboot_bit_mem(void *priv, bool set)
203{
204 struct iTCO_wdt_private *p = priv;
205 u32 val32 = 0, newval32 = 0;
206
207 val32 = readl(p->gcs_pmc);
208 if (set)
209 val32 |= no_reboot_bit(p);
210 else
211 val32 &= ~no_reboot_bit(p);
212 writel(val32, p->gcs_pmc);
213 newval32 = readl(p->gcs_pmc);
214
215 /* make sure the update is successful */
216 if (val32 != newval32)
217 return -EIO;
218
219 return 0;
220}
221
Kuppuswamy Sathyanarayanan140c91b22017-04-09 15:00:19 -0700222static void iTCO_wdt_no_reboot_bit_setup(struct iTCO_wdt_private *p,
223 struct itco_wdt_platform_data *pdata)
Kuppuswamy Sathyanarayananf583a882017-04-09 15:00:18 -0700224{
Kuppuswamy Sathyanarayanan140c91b22017-04-09 15:00:19 -0700225 if (pdata->update_no_reboot_bit) {
226 p->update_no_reboot_bit = pdata->update_no_reboot_bit;
227 p->no_reboot_priv = pdata->no_reboot_priv;
228 return;
229 }
230
Kuppuswamy Sathyanarayananf583a882017-04-09 15:00:18 -0700231 if (p->iTCO_version >= 2)
232 p->update_no_reboot_bit = update_no_reboot_bit_mem;
233 else if (p->iTCO_version == 1)
234 p->update_no_reboot_bit = update_no_reboot_bit_pci;
235 else
236 p->update_no_reboot_bit = update_no_reboot_bit_def;
Kuppuswamy Sathyanarayanan140c91b22017-04-09 15:00:19 -0700237
238 p->no_reboot_priv = p;
Kuppuswamy Sathyanarayananf583a882017-04-09 15:00:18 -0700239}
240
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200241static int iTCO_wdt_start(struct watchdog_device *wd_dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200242{
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800243 struct iTCO_wdt_private *p = watchdog_get_drvdata(wd_dev);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200244 unsigned int val;
245
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800246 spin_lock(&p->io_lock);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200247
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800248 iTCO_vendor_pre_start(p->smi_res, wd_dev->timeout);
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100249
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200250 /* disable chipset's NO_REBOOT bit */
Kuppuswamy Sathyanarayanan140c91b22017-04-09 15:00:19 -0700251 if (p->update_no_reboot_bit(p->no_reboot_priv, false)) {
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800252 spin_unlock(&p->io_lock);
Joe Perches27c766a2012-02-15 15:06:19 -0800253 pr_err("failed to reset NO_REBOOT flag, reboot disabled by hardware/BIOS\n");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200254 return -EIO;
255 }
256
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000257 /* Force the timer to its reload value by writing to the TCO_RLD
258 register */
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800259 if (p->iTCO_version >= 2)
260 outw(0x01, TCO_RLD(p));
261 else if (p->iTCO_version == 1)
262 outb(0x01, TCO_RLD(p));
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000263
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200264 /* Bit 11: TCO Timer Halt -> 0 = The TCO timer is enabled to count */
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800265 val = inw(TCO1_CNT(p));
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200266 val &= 0xf7ff;
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800267 outw(val, TCO1_CNT(p));
268 val = inw(TCO1_CNT(p));
269 spin_unlock(&p->io_lock);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200270
271 if (val & 0x0800)
272 return -1;
273 return 0;
274}
275
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200276static int iTCO_wdt_stop(struct watchdog_device *wd_dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200277{
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800278 struct iTCO_wdt_private *p = watchdog_get_drvdata(wd_dev);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200279 unsigned int val;
280
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800281 spin_lock(&p->io_lock);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200282
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800283 iTCO_vendor_pre_stop(p->smi_res);
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100284
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200285 /* Bit 11: TCO Timer Halt -> 1 = The TCO timer is disabled */
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800286 val = inw(TCO1_CNT(p));
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200287 val |= 0x0800;
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800288 outw(val, TCO1_CNT(p));
289 val = inw(TCO1_CNT(p));
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200290
291 /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
Kuppuswamy Sathyanarayanan140c91b22017-04-09 15:00:19 -0700292 p->update_no_reboot_bit(p->no_reboot_priv, true);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200293
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800294 spin_unlock(&p->io_lock);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200295
296 if ((val & 0x0800) == 0)
297 return -1;
298 return 0;
299}
300
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200301static int iTCO_wdt_ping(struct watchdog_device *wd_dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200302{
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800303 struct iTCO_wdt_private *p = watchdog_get_drvdata(wd_dev);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200304
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800305 spin_lock(&p->io_lock);
306
307 iTCO_vendor_pre_keepalive(p->smi_res, wd_dev->timeout);
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100308
Paolo Bonzini1fccb732017-04-05 13:41:15 +0200309 /* Reset the timeout status bit so that the timer
310 * needs to count down twice again before rebooting */
311 outw(0x0008, TCO1_STS(p)); /* write 1 to clear bit */
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100312
Paolo Bonzini1fccb732017-04-05 13:41:15 +0200313 /* Reload the timer by writing to the TCO Timer Counter register */
314 if (p->iTCO_version >= 2)
315 outw(0x01, TCO_RLD(p));
316 else if (p->iTCO_version == 1)
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800317 outb(0x01, TCO_RLD(p));
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200318
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800319 spin_unlock(&p->io_lock);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200320 return 0;
321}
322
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200323static int iTCO_wdt_set_timeout(struct watchdog_device *wd_dev, unsigned int t)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200324{
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800325 struct iTCO_wdt_private *p = watchdog_get_drvdata(wd_dev);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200326 unsigned int val16;
327 unsigned char val8;
328 unsigned int tmrval;
329
Paolo Bonzini1fccb732017-04-05 13:41:15 +0200330 /* The timer counts down twice before rebooting */
331 tmrval = seconds_to_ticks(p, t) / 2;
Pádraig Brady7e6811d2010-04-19 13:38:25 +0100332
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200333 /* from the specs: */
334 /* "Values of 0h-3h are ignored and should not be attempted" */
335 if (tmrval < 0x04)
336 return -EINVAL;
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800337 if ((p->iTCO_version >= 2 && tmrval > 0x3ff) ||
338 (p->iTCO_version == 1 && tmrval > 0x03f))
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200339 return -EINVAL;
340
Wim Van Sebroecke0333512006-11-12 18:05:09 +0100341 iTCO_vendor_pre_set_heartbeat(tmrval);
342
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200343 /* Write new heartbeat to watchdog */
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800344 if (p->iTCO_version >= 2) {
345 spin_lock(&p->io_lock);
346 val16 = inw(TCOv2_TMR(p));
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200347 val16 &= 0xfc00;
348 val16 |= tmrval;
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800349 outw(val16, TCOv2_TMR(p));
350 val16 = inw(TCOv2_TMR(p));
351 spin_unlock(&p->io_lock);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200352
353 if ((val16 & 0x3ff) != tmrval)
354 return -EINVAL;
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800355 } else if (p->iTCO_version == 1) {
356 spin_lock(&p->io_lock);
357 val8 = inb(TCOv1_TMR(p));
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200358 val8 &= 0xc0;
359 val8 |= (tmrval & 0xff);
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800360 outb(val8, TCOv1_TMR(p));
361 val8 = inb(TCOv1_TMR(p));
362 spin_unlock(&p->io_lock);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200363
364 if ((val8 & 0x3f) != tmrval)
365 return -EINVAL;
366 }
367
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200368 wd_dev->timeout = t;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200369 return 0;
370}
371
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200372static unsigned int iTCO_wdt_get_timeleft(struct watchdog_device *wd_dev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200373{
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800374 struct iTCO_wdt_private *p = watchdog_get_drvdata(wd_dev);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200375 unsigned int val16;
376 unsigned char val8;
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200377 unsigned int time_left = 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200378
379 /* read the TCO Timer */
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800380 if (p->iTCO_version >= 2) {
381 spin_lock(&p->io_lock);
382 val16 = inw(TCO_RLD(p));
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200383 val16 &= 0x3ff;
Paolo Bonzini1fccb732017-04-05 13:41:15 +0200384 if (!(inw(TCO1_STS(p)) & 0x0008))
385 val16 += (inw(TCOv2_TMR(p)) & 0x3ff);
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800386 spin_unlock(&p->io_lock);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200387
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800388 time_left = ticks_to_seconds(p, val16);
389 } else if (p->iTCO_version == 1) {
390 spin_lock(&p->io_lock);
391 val8 = inb(TCO_RLD(p));
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200392 val8 &= 0x3f;
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800393 if (!(inw(TCO1_STS(p)) & 0x0008))
394 val8 += (inb(TCOv1_TMR(p)) & 0x3f);
395 spin_unlock(&p->io_lock);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200396
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800397 time_left = ticks_to_seconds(p, val8);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200398 }
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200399 return time_left;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200400}
401
402/*
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200403 * Kernel Interfaces
404 */
405
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200406static const struct watchdog_info ident = {
407 .options = WDIOF_SETTIMEOUT |
408 WDIOF_KEEPALIVEPING |
409 WDIOF_MAGICCLOSE,
410 .firmware_version = 0,
411 .identity = DRV_NAME,
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200412};
413
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200414static const struct watchdog_ops iTCO_wdt_ops = {
415 .owner = THIS_MODULE,
416 .start = iTCO_wdt_start,
Jingoo Han5f5e1902014-02-27 14:41:42 +0900417 .stop = iTCO_wdt_stop,
418 .ping = iTCO_wdt_ping,
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200419 .set_timeout = iTCO_wdt_set_timeout,
420 .get_timeleft = iTCO_wdt_get_timeleft,
421};
422
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200423/*
424 * Init & exit routines
425 */
426
Guenter Roeck78e45692017-01-02 09:27:36 -0800427static int iTCO_wdt_probe(struct platform_device *pdev)
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500428{
Guenter Roeck78e45692017-01-02 09:27:36 -0800429 struct device *dev = &pdev->dev;
430 struct itco_wdt_platform_data *pdata = dev_get_platdata(dev);
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800431 struct iTCO_wdt_private *p;
432 unsigned long val32;
433 int ret;
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500434
Matt Fleming420b54d2015-08-06 13:46:24 +0100435 if (!pdata)
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800436 return -ENODEV;
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500437
Guenter Roeck78e45692017-01-02 09:27:36 -0800438 p = devm_kzalloc(dev, sizeof(*p), GFP_KERNEL);
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800439 if (!p)
440 return -ENOMEM;
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500441
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800442 spin_lock_init(&p->io_lock);
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500443
Guenter Roeck78e45692017-01-02 09:27:36 -0800444 p->tco_res = platform_get_resource(pdev, IORESOURCE_IO, ICH_RES_IO_TCO);
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800445 if (!p->tco_res)
446 return -ENODEV;
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500447
Guenter Roeck78e45692017-01-02 09:27:36 -0800448 p->smi_res = platform_get_resource(pdev, IORESOURCE_IO, ICH_RES_IO_SMI);
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800449 if (!p->smi_res)
450 return -ENODEV;
451
452 p->iTCO_version = pdata->version;
Guenter Roeck78e45692017-01-02 09:27:36 -0800453 p->pci_dev = to_pci_dev(dev->parent);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200454
Kuppuswamy Sathyanarayanan140c91b22017-04-09 15:00:19 -0700455 iTCO_wdt_no_reboot_bit_setup(p, pdata);
Kuppuswamy Sathyanarayananf583a882017-04-09 15:00:18 -0700456
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200457 /*
Peter Tyser24b3a162014-03-10 16:34:55 -0500458 * Get the Memory-Mapped GCS or PMC register, we need it for the
459 * NO_REBOOT flag (TCO v2 and v3).
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200460 */
Kuppuswamy Sathyanarayanan140c91b22017-04-09 15:00:19 -0700461 if (p->iTCO_version >= 2 && !pdata->update_no_reboot_bit) {
Guenter Roeck78e45692017-01-02 09:27:36 -0800462 p->gcs_pmc_res = platform_get_resource(pdev,
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800463 IORESOURCE_MEM,
464 ICH_RES_MEM_GCS_PMC);
Guenter Roeck78e45692017-01-02 09:27:36 -0800465 p->gcs_pmc = devm_ioremap_resource(dev, p->gcs_pmc_res);
Guenter Roeckc7bbcc82017-01-01 10:39:09 -0800466 if (IS_ERR(p->gcs_pmc))
467 return PTR_ERR(p->gcs_pmc);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200468 }
469
470 /* Check chipset's NO_REBOOT bit */
Kuppuswamy Sathyanarayanan140c91b22017-04-09 15:00:19 -0700471 if (p->update_no_reboot_bit(p->no_reboot_priv, false) &&
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800472 iTCO_vendor_check_noreboot_on()) {
Joe Perches27c766a2012-02-15 15:06:19 -0800473 pr_info("unable to reset NO_REBOOT flag, device disabled by hardware/BIOS\n");
Guenter Roeckc7bbcc82017-01-01 10:39:09 -0800474 return -ENODEV; /* Cannot reset NO_REBOOT bit */
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200475 }
476
477 /* Set the NO_REBOOT bit to prevent later reboots, just for sure */
Kuppuswamy Sathyanarayanan140c91b22017-04-09 15:00:19 -0700478 p->update_no_reboot_bit(p->no_reboot_priv, true);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200479
Wim Van Sebroeck7cd5b082008-11-19 19:39:58 +0000480 /* The TCO logic uses the TCO_EN bit in the SMI_EN register */
Guenter Roeck78e45692017-01-02 09:27:36 -0800481 if (!devm_request_region(dev, p->smi_res->start,
Guenter Roeckc7bbcc82017-01-01 10:39:09 -0800482 resource_size(p->smi_res),
Guenter Roeck78e45692017-01-02 09:27:36 -0800483 pdev->name)) {
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500484 pr_err("I/O address 0x%04llx already in use, device disabled\n",
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800485 (u64)SMI_EN(p));
Guenter Roeckc7bbcc82017-01-01 10:39:09 -0800486 return -EBUSY;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200487 }
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800488 if (turn_SMI_watchdog_clear_off >= p->iTCO_version) {
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500489 /*
490 * Bit 13: TCO_EN -> 0
491 * Disables TCO logic generating an SMI#
492 */
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800493 val32 = inl(SMI_EN(p));
Wim Van Sebroeckdeb91972011-10-19 23:59:26 +0200494 val32 &= 0xffffdfff; /* Turn off SMI clearing watchdog */
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800495 outl(val32, SMI_EN(p));
Wim Van Sebroeckdeb91972011-10-19 23:59:26 +0200496 }
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200497
Guenter Roeck78e45692017-01-02 09:27:36 -0800498 if (!devm_request_region(dev, p->tco_res->start,
Guenter Roeckc7bbcc82017-01-01 10:39:09 -0800499 resource_size(p->tco_res),
Guenter Roeck78e45692017-01-02 09:27:36 -0800500 pdev->name)) {
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500501 pr_err("I/O address 0x%04llx already in use, device disabled\n",
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800502 (u64)TCOBASE(p));
Guenter Roeckc7bbcc82017-01-01 10:39:09 -0800503 return -EBUSY;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200504 }
505
Aaron Sierra887c8ec2012-04-20 14:14:11 -0500506 pr_info("Found a %s TCO device (Version=%d, TCOBASE=0x%04llx)\n",
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800507 pdata->name, pdata->version, (u64)TCOBASE(p));
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200508
509 /* Clear out the (probably old) status */
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800510 switch (p->iTCO_version) {
Yong, Jonathan3b3a1c82016-06-17 00:33:31 +0000511 case 5:
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100512 case 4:
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800513 outw(0x0008, TCO1_STS(p)); /* Clear the Time Out Status bit */
514 outw(0x0002, TCO2_STS(p)); /* Clear SECOND_TO_STS bit */
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100515 break;
516 case 3:
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800517 outl(0x20008, TCO1_STS(p));
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100518 break;
519 case 2:
520 case 1:
521 default:
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800522 outw(0x0008, TCO1_STS(p)); /* Clear the Time Out Status bit */
523 outw(0x0002, TCO2_STS(p)); /* Clear SECOND_TO_STS bit */
524 outw(0x0004, TCO2_STS(p)); /* Clear BOOT_STS bit */
Matt Fleming2a7a0e92015-08-06 13:46:26 +0100525 break;
Peter Tyser24b3a162014-03-10 16:34:55 -0500526 }
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200527
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800528 p->wddev.info = &ident,
529 p->wddev.ops = &iTCO_wdt_ops,
530 p->wddev.bootstatus = 0;
531 p->wddev.timeout = WATCHDOG_TIMEOUT;
532 watchdog_set_nowayout(&p->wddev, nowayout);
Guenter Roeck78e45692017-01-02 09:27:36 -0800533 p->wddev.parent = dev;
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800534
535 watchdog_set_drvdata(&p->wddev, p);
Guenter Roeck78e45692017-01-02 09:27:36 -0800536 platform_set_drvdata(pdev, p);
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 */
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800539 iTCO_wdt_stop(&p->wddev);
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 */
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800543 if (iTCO_wdt_set_timeout(&p->wddev, heartbeat)) {
544 iTCO_wdt_set_timeout(&p->wddev, WATCHDOG_TIMEOUT);
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200545 pr_info("timeout value out of range, using %d\n",
546 WATCHDOG_TIMEOUT);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200547 }
548
Guenter Roeckd3d77b52017-01-10 15:21:49 -0800549 watchdog_stop_on_reboot(&p->wddev);
Guenter Roeck78e45692017-01-02 09:27:36 -0800550 ret = devm_watchdog_register_device(dev, &p->wddev);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200551 if (ret != 0) {
Wim Van Sebroeckbff23432012-06-09 14:10:28 +0200552 pr_err("cannot register watchdog device (err=%d)\n", ret);
Guenter Roeckc7bbcc82017-01-01 10:39:09 -0800553 return ret;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200554 }
555
Joe Perches27c766a2012-02-15 15:06:19 -0800556 pr_info("initialized. heartbeat=%d sec (nowayout=%d)\n",
557 heartbeat, nowayout);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200558
559 return 0;
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200560}
561
Guenter Roeck78e45692017-01-02 09:27:36 -0800562static int iTCO_wdt_remove(struct platform_device *pdev)
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200563{
Guenter Roeck78e45692017-01-02 09:27:36 -0800564 struct iTCO_wdt_private *p = platform_get_drvdata(pdev);
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800565
Guenter Roeckc7bbcc82017-01-01 10:39:09 -0800566 /* Stop the timer before we leave */
567 if (!nowayout)
568 iTCO_wdt_stop(&p->wddev);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200569
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200570 return 0;
571}
572
Rafael J. Wysockif321c9cb2015-04-03 15:25:04 +0200573#ifdef CONFIG_PM_SLEEP
574/*
575 * Suspend-to-idle requires this, because it stops the ticks and timekeeping, so
576 * the watchdog cannot be pinged while in that state. In ACPI sleep states the
577 * watchdog is stopped by the platform firmware.
578 */
579
580#ifdef CONFIG_ACPI
581static inline bool need_suspend(void)
582{
583 return acpi_target_system_state() == ACPI_STATE_S0;
584}
585#else
586static inline bool need_suspend(void) { return true; }
587#endif
588
589static int iTCO_wdt_suspend_noirq(struct device *dev)
590{
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800591 struct iTCO_wdt_private *p = dev_get_drvdata(dev);
Rafael J. Wysockif321c9cb2015-04-03 15:25:04 +0200592 int ret = 0;
593
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800594 p->suspended = false;
595 if (watchdog_active(&p->wddev) && need_suspend()) {
596 ret = iTCO_wdt_stop(&p->wddev);
Rafael J. Wysockif321c9cb2015-04-03 15:25:04 +0200597 if (!ret)
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800598 p->suspended = true;
Rafael J. Wysockif321c9cb2015-04-03 15:25:04 +0200599 }
600 return ret;
601}
602
603static int iTCO_wdt_resume_noirq(struct device *dev)
604{
Guenter Roeckce1b95c2017-01-01 11:11:39 -0800605 struct iTCO_wdt_private *p = dev_get_drvdata(dev);
606
607 if (p->suspended)
608 iTCO_wdt_start(&p->wddev);
Rafael J. Wysockif321c9cb2015-04-03 15:25:04 +0200609
610 return 0;
611}
612
Julia Lawall6e938f62016-08-28 22:26:26 +0200613static const struct dev_pm_ops iTCO_wdt_pm = {
Rafael J. Wysockif321c9cb2015-04-03 15:25:04 +0200614 .suspend_noirq = iTCO_wdt_suspend_noirq,
615 .resume_noirq = iTCO_wdt_resume_noirq,
616};
617
618#define ITCO_WDT_PM_OPS (&iTCO_wdt_pm)
619#else
620#define ITCO_WDT_PM_OPS NULL
621#endif /* CONFIG_PM_SLEEP */
622
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200623static struct platform_driver iTCO_wdt_driver = {
624 .probe = iTCO_wdt_probe,
Bill Pemberton82268712012-11-19 13:21:12 -0500625 .remove = iTCO_wdt_remove,
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200626 .driver = {
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200627 .name = DRV_NAME,
Rafael J. Wysockif321c9cb2015-04-03 15:25:04 +0200628 .pm = ITCO_WDT_PM_OPS,
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200629 },
630};
631
632static int __init iTCO_wdt_init_module(void)
633{
Joe Perches27c766a2012-02-15 15:06:19 -0800634 pr_info("Intel TCO WatchDog Timer Driver v%s\n", DRV_VERSION);
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200635
Guenter Roeck9616bd22017-01-03 02:43:32 -0800636 return platform_driver_register(&iTCO_wdt_driver);
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200637}
638
639static void __exit iTCO_wdt_cleanup_module(void)
640{
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200641 platform_driver_unregister(&iTCO_wdt_driver);
Joe Perches27c766a2012-02-15 15:06:19 -0800642 pr_info("Watchdog Module Unloaded\n");
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200643}
644
645module_init(iTCO_wdt_init_module);
646module_exit(iTCO_wdt_cleanup_module);
647
648MODULE_AUTHOR("Wim Van Sebroeck <wim@iguana.be>");
649MODULE_DESCRIPTION("Intel TCO WatchDog Timer Driver");
Wim Van Sebroeck3836cc02006-06-30 08:44:53 +0200650MODULE_VERSION(DRV_VERSION);
Wim Van Sebroeck9e0ea342006-05-21 14:37:44 +0200651MODULE_LICENSE("GPL");
Jan Beuliche5de32e2012-06-22 16:41:00 +0100652MODULE_ALIAS("platform:" DRV_NAME);