Guenter Roeck | d017327 | 2019-06-20 09:28:46 -0700 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 2 | /* |
Wim Van Sebroeck | cb711a1 | 2009-11-15 13:44:54 +0000 | [diff] [blame] | 3 | * intel TCO Watchdog Driver |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 4 | * |
Wim Van Sebroeck | deb9197 | 2011-10-19 23:59:26 +0200 | [diff] [blame] | 5 | * (c) Copyright 2006-2011 Wim Van Sebroeck <wim@iguana.be>. |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 6 | * |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 7 | * Neither Wim Van Sebroeck nor Iguana vzw. admit liability nor |
| 8 | * provide warranty for any of this software. This material is |
| 9 | * provided "AS-IS" and at no charge. |
| 10 | * |
| 11 | * The TCO watchdog is implemented in the following I/O controller hubs: |
| 12 | * (See the intel documentation on http://developer.intel.com.) |
Wim Van Sebroeck | cb711a1 | 2009-11-15 13:44:54 +0000 | [diff] [blame] | 13 | * document number 290655-003, 290677-014: 82801AA (ICH), 82801AB (ICHO) |
| 14 | * document number 290687-002, 298242-027: 82801BA (ICH2) |
| 15 | * document number 290733-003, 290739-013: 82801CA (ICH3-S) |
| 16 | * document number 290716-001, 290718-007: 82801CAM (ICH3-M) |
| 17 | * document number 290744-001, 290745-025: 82801DB (ICH4) |
| 18 | * document number 252337-001, 252663-008: 82801DBM (ICH4-M) |
| 19 | * document number 273599-001, 273645-002: 82801E (C-ICH) |
| 20 | * document number 252516-001, 252517-028: 82801EB (ICH5), 82801ER (ICH5R) |
| 21 | * document number 300641-004, 300884-013: 6300ESB |
| 22 | * document number 301473-002, 301474-026: 82801F (ICH6) |
| 23 | * document number 313082-001, 313075-006: 631xESB, 632xESB |
| 24 | * document number 307013-003, 307014-024: 82801G (ICH7) |
Wim Van Sebroeck | d38bd47 | 2010-12-31 14:10:45 +0000 | [diff] [blame] | 25 | * document number 322896-001, 322897-001: NM10 |
Wim Van Sebroeck | cb711a1 | 2009-11-15 13:44:54 +0000 | [diff] [blame] | 26 | * document number 313056-003, 313057-017: 82801H (ICH8) |
| 27 | * document number 316972-004, 316973-012: 82801I (ICH9) |
| 28 | * document number 319973-002, 319974-002: 82801J (ICH10) |
Seth Heasley | 3c9d8ec | 2010-01-14 20:58:05 +0000 | [diff] [blame] | 29 | * document number 322169-001, 322170-003: 5 Series, 3400 Series (PCH) |
Imre Kaloz | 4946f83 | 2009-12-07 20:42:26 +0100 | [diff] [blame] | 30 | * document number 320066-003, 320257-008: EP80597 (IICH) |
Seth Heasley | 203f8d8 | 2011-01-07 17:11:08 -0800 | [diff] [blame] | 31 | * document number 324645-001, 324646-001: Cougar Point (CPT) |
Seth Heasley | c54fb81 | 2010-11-17 12:15:08 -0700 | [diff] [blame] | 32 | * document number TBD : Patsburg (PBG) |
Seth Heasley | 203f8d8 | 2011-01-07 17:11:08 -0800 | [diff] [blame] | 33 | * document number TBD : DH89xxCC |
Seth Heasley | aa1f4652 | 2011-04-20 10:56:20 -0700 | [diff] [blame] | 34 | * document number TBD : Panther Point |
Seth Heasley | 84e83c2 | 2012-01-23 16:40:55 -0800 | [diff] [blame] | 35 | * document number TBD : Lynx Point |
James Ralston | 7fb9c1a | 2012-08-09 09:46:13 -0700 | [diff] [blame] | 36 | * document number TBD : Lynx Point-LP |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 37 | */ |
| 38 | |
| 39 | /* |
| 40 | * Includes, defines, variables, module parameters, ... |
| 41 | */ |
| 42 | |
| 43 | /* Module and version information */ |
Wim Van Sebroeck | 7944d3a | 2008-08-06 20:19:41 +0000 | [diff] [blame] | 44 | #define DRV_NAME "iTCO_wdt" |
Peter Tyser | 24b3a16 | 2014-03-10 16:34:55 -0500 | [diff] [blame] | 45 | #define DRV_VERSION "1.11" |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 46 | |
| 47 | /* Includes */ |
Rafael J. Wysocki | f321c9cb | 2015-04-03 15:25:04 +0200 | [diff] [blame] | 48 | #include <linux/acpi.h> /* For ACPI support */ |
Mika Westerberg | da23b6f | 2019-08-31 17:24:01 +0300 | [diff] [blame] | 49 | #include <linux/bits.h> /* For BIT() */ |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 50 | #include <linux/module.h> /* For module specific items */ |
| 51 | #include <linux/moduleparam.h> /* For new moduleparam's */ |
| 52 | #include <linux/types.h> /* For standard types (like size_t) */ |
| 53 | #include <linux/errno.h> /* For the -ENODEV/... values */ |
| 54 | #include <linux/kernel.h> /* For printk/panic/... */ |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 55 | #include <linux/watchdog.h> /* For the watchdog specific items */ |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 56 | #include <linux/init.h> /* For __init/__exit/... */ |
| 57 | #include <linux/fs.h> /* For file operations */ |
| 58 | #include <linux/platform_device.h> /* For platform_driver framework */ |
| 59 | #include <linux/pci.h> /* For pci functions */ |
| 60 | #include <linux/ioport.h> /* For io-port access */ |
| 61 | #include <linux/spinlock.h> /* For spin_lock/spin_unlock/... */ |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 62 | #include <linux/uaccess.h> /* For copy_to_user/put_user/... */ |
| 63 | #include <linux/io.h> /* For inb/outb/... */ |
Matt Fleming | 420b54d | 2015-08-06 13:46:24 +0100 | [diff] [blame] | 64 | #include <linux/platform_data/itco_wdt.h> |
Mika Westerberg | 25f1ca31 | 2020-04-16 11:15:51 +0300 | [diff] [blame] | 65 | #include <linux/mfd/intel_pmc_bxt.h> |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 66 | |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 67 | #include "iTCO_vendor.h" |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 68 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 69 | /* Address definitions for the TCO */ |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 70 | /* TCO base address */ |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 71 | #define TCOBASE(p) ((p)->tco_res->start) |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 72 | /* SMI Control and Enable Register */ |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 73 | #define SMI_EN(p) ((p)->smi_res->start) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 74 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 75 | #define TCO_RLD(p) (TCOBASE(p) + 0x00) /* TCO Timer Reload/Curr. Value */ |
| 76 | #define TCOv1_TMR(p) (TCOBASE(p) + 0x01) /* TCOv1 Timer Initial Value*/ |
| 77 | #define TCO_DAT_IN(p) (TCOBASE(p) + 0x02) /* TCO Data In Register */ |
| 78 | #define TCO_DAT_OUT(p) (TCOBASE(p) + 0x03) /* TCO Data Out Register */ |
| 79 | #define TCO1_STS(p) (TCOBASE(p) + 0x04) /* TCO1 Status Register */ |
| 80 | #define TCO2_STS(p) (TCOBASE(p) + 0x06) /* TCO2 Status Register */ |
| 81 | #define TCO1_CNT(p) (TCOBASE(p) + 0x08) /* TCO1 Control Register */ |
| 82 | #define TCO2_CNT(p) (TCOBASE(p) + 0x0a) /* TCO2 Control Register */ |
| 83 | #define TCOv2_TMR(p) (TCOBASE(p) + 0x12) /* TCOv2 Timer Initial Value*/ |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 84 | |
| 85 | /* internal variables */ |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 86 | struct iTCO_wdt_private { |
| 87 | struct watchdog_device wddev; |
| 88 | |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 89 | /* TCO version/generation */ |
| 90 | unsigned int iTCO_version; |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 91 | struct resource *tco_res; |
| 92 | struct resource *smi_res; |
Peter Tyser | 24b3a16 | 2014-03-10 16:34:55 -0500 | [diff] [blame] | 93 | /* |
| 94 | * NO_REBOOT flag is Memory-Mapped GCS register bit 5 (TCO version 2), |
| 95 | * or memory-mapped PMC register bit 4 (TCO version 3). |
| 96 | */ |
Peter Tyser | 24b3a16 | 2014-03-10 16:34:55 -0500 | [diff] [blame] | 97 | unsigned long __iomem *gcs_pmc; |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 98 | /* the lock for io operations */ |
| 99 | spinlock_t io_lock; |
| 100 | /* the PCI-device */ |
Guenter Roeck | 78e4569 | 2017-01-02 09:27:36 -0800 | [diff] [blame] | 101 | struct pci_dev *pci_dev; |
Rafael J. Wysocki | f321c9cb | 2015-04-03 15:25:04 +0200 | [diff] [blame] | 102 | /* whether or not the watchdog has been suspended */ |
| 103 | bool suspended; |
Kuppuswamy Sathyanarayanan | 140c91b2 | 2017-04-09 15:00:19 -0700 | [diff] [blame] | 104 | /* no reboot API private data */ |
| 105 | void *no_reboot_priv; |
Kuppuswamy Sathyanarayanan | f583a88 | 2017-04-09 15:00:18 -0700 | [diff] [blame] | 106 | /* no reboot update function pointer */ |
| 107 | int (*update_no_reboot_bit)(void *p, bool set); |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 108 | }; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 109 | |
| 110 | /* module parameters */ |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 111 | #define WATCHDOG_TIMEOUT 30 /* 30 sec default heartbeat */ |
| 112 | static int heartbeat = WATCHDOG_TIMEOUT; /* in seconds */ |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 113 | module_param(heartbeat, int, 0); |
Pádraig Brady | 7e6811d | 2010-04-19 13:38:25 +0100 | [diff] [blame] | 114 | MODULE_PARM_DESC(heartbeat, "Watchdog timeout in seconds. " |
| 115 | "5..76 (TCO v1) or 3..614 (TCO v2), default=" |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 116 | __MODULE_STRING(WATCHDOG_TIMEOUT) ")"); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 117 | |
Wim Van Sebroeck | 86a1e18 | 2012-03-05 16:51:11 +0100 | [diff] [blame] | 118 | static bool nowayout = WATCHDOG_NOWAYOUT; |
| 119 | module_param(nowayout, bool, 0); |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 120 | MODULE_PARM_DESC(nowayout, |
| 121 | "Watchdog cannot be stopped once started (default=" |
| 122 | __MODULE_STRING(WATCHDOG_NOWAYOUT) ")"); |
Wim Van Sebroeck | e033351 | 2006-11-12 18:05:09 +0100 | [diff] [blame] | 123 | |
Wim Van Sebroeck | 0d09858 | 2011-12-26 15:23:51 +0100 | [diff] [blame] | 124 | static int turn_SMI_watchdog_clear_off = 1; |
Wim Van Sebroeck | deb9197 | 2011-10-19 23:59:26 +0200 | [diff] [blame] | 125 | module_param(turn_SMI_watchdog_clear_off, int, 0); |
| 126 | MODULE_PARM_DESC(turn_SMI_watchdog_clear_off, |
Wim Van Sebroeck | 0d09858 | 2011-12-26 15:23:51 +0100 | [diff] [blame] | 127 | "Turn off SMI clearing watchdog (depends on TCO-version)(default=1)"); |
Wim Van Sebroeck | deb9197 | 2011-10-19 23:59:26 +0200 | [diff] [blame] | 128 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 129 | /* |
| 130 | * Some TCO specific functions |
| 131 | */ |
| 132 | |
Peter Tyser | 24b3a16 | 2014-03-10 16:34:55 -0500 | [diff] [blame] | 133 | /* |
| 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 | */ |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 138 | static inline unsigned int seconds_to_ticks(struct iTCO_wdt_private *p, |
| 139 | int secs) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 140 | { |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 141 | return p->iTCO_version == 3 ? secs : (secs * 10) / 6; |
Peter Tyser | 24b3a16 | 2014-03-10 16:34:55 -0500 | [diff] [blame] | 142 | } |
| 143 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 144 | static inline unsigned int ticks_to_seconds(struct iTCO_wdt_private *p, |
| 145 | int ticks) |
Peter Tyser | 24b3a16 | 2014-03-10 16:34:55 -0500 | [diff] [blame] | 146 | { |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 147 | return p->iTCO_version == 3 ? ticks : (ticks * 6) / 10; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 148 | } |
| 149 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 150 | static inline u32 no_reboot_bit(struct iTCO_wdt_private *p) |
Matt Fleming | 2a7a0e9 | 2015-08-06 13:46:26 +0100 | [diff] [blame] | 151 | { |
| 152 | u32 enable_bit; |
| 153 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 154 | switch (p->iTCO_version) { |
Yong, Jonathan | 3b3a1c8 | 2016-06-17 00:33:31 +0000 | [diff] [blame] | 155 | case 5: |
Matt Fleming | 2a7a0e9 | 2015-08-06 13:46:26 +0100 | [diff] [blame] | 156 | case 3: |
| 157 | enable_bit = 0x00000010; |
| 158 | break; |
| 159 | case 2: |
| 160 | enable_bit = 0x00000020; |
| 161 | break; |
| 162 | case 4: |
| 163 | case 1: |
| 164 | default: |
| 165 | enable_bit = 0x00000002; |
| 166 | break; |
| 167 | } |
| 168 | |
| 169 | return enable_bit; |
| 170 | } |
| 171 | |
Kuppuswamy Sathyanarayanan | f583a88 | 2017-04-09 15:00:18 -0700 | [diff] [blame] | 172 | static int update_no_reboot_bit_def(void *priv, bool set) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 173 | { |
Kuppuswamy Sathyanarayanan | f583a88 | 2017-04-09 15:00:18 -0700 | [diff] [blame] | 174 | return 0; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 175 | } |
| 176 | |
Kuppuswamy Sathyanarayanan | f583a88 | 2017-04-09 15:00:18 -0700 | [diff] [blame] | 177 | static int update_no_reboot_bit_pci(void *priv, bool set) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 178 | { |
Kuppuswamy Sathyanarayanan | f583a88 | 2017-04-09 15:00:18 -0700 | [diff] [blame] | 179 | struct iTCO_wdt_private *p = priv; |
| 180 | u32 val32 = 0, newval32 = 0; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 181 | |
Kuppuswamy Sathyanarayanan | f583a88 | 2017-04-09 15:00:18 -0700 | [diff] [blame] | 182 | pci_read_config_dword(p->pci_dev, 0xd4, &val32); |
| 183 | if (set) |
| 184 | val32 |= no_reboot_bit(p); |
| 185 | else |
| 186 | val32 &= ~no_reboot_bit(p); |
| 187 | pci_write_config_dword(p->pci_dev, 0xd4, val32); |
| 188 | pci_read_config_dword(p->pci_dev, 0xd4, &newval32); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 189 | |
Kuppuswamy Sathyanarayanan | f583a88 | 2017-04-09 15:00:18 -0700 | [diff] [blame] | 190 | /* make sure the update is successful */ |
| 191 | if (val32 != newval32) |
Matt Fleming | 2a7a0e9 | 2015-08-06 13:46:26 +0100 | [diff] [blame] | 192 | return -EIO; |
| 193 | |
| 194 | return 0; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 195 | } |
| 196 | |
Kuppuswamy Sathyanarayanan | f583a88 | 2017-04-09 15:00:18 -0700 | [diff] [blame] | 197 | static int update_no_reboot_bit_mem(void *priv, bool set) |
| 198 | { |
| 199 | struct iTCO_wdt_private *p = priv; |
| 200 | u32 val32 = 0, newval32 = 0; |
| 201 | |
| 202 | val32 = readl(p->gcs_pmc); |
| 203 | if (set) |
| 204 | val32 |= no_reboot_bit(p); |
| 205 | else |
| 206 | val32 &= ~no_reboot_bit(p); |
| 207 | writel(val32, p->gcs_pmc); |
| 208 | newval32 = readl(p->gcs_pmc); |
| 209 | |
| 210 | /* make sure the update is successful */ |
| 211 | if (val32 != newval32) |
| 212 | return -EIO; |
| 213 | |
| 214 | return 0; |
| 215 | } |
| 216 | |
Mika Westerberg | da23b6f | 2019-08-31 17:24:01 +0300 | [diff] [blame] | 217 | static int update_no_reboot_bit_cnt(void *priv, bool set) |
| 218 | { |
| 219 | struct iTCO_wdt_private *p = priv; |
| 220 | u16 val, newval; |
| 221 | |
| 222 | val = inw(TCO1_CNT(p)); |
| 223 | if (set) |
| 224 | val |= BIT(0); |
| 225 | else |
| 226 | val &= ~BIT(0); |
| 227 | outw(val, TCO1_CNT(p)); |
| 228 | newval = inw(TCO1_CNT(p)); |
| 229 | |
| 230 | /* make sure the update is successful */ |
| 231 | return val != newval ? -EIO : 0; |
| 232 | } |
| 233 | |
Mika Westerberg | 25f1ca31 | 2020-04-16 11:15:51 +0300 | [diff] [blame] | 234 | static int update_no_reboot_bit_pmc(void *priv, bool set) |
Kuppuswamy Sathyanarayanan | f583a88 | 2017-04-09 15:00:18 -0700 | [diff] [blame] | 235 | { |
Mika Westerberg | 25f1ca31 | 2020-04-16 11:15:51 +0300 | [diff] [blame] | 236 | struct intel_pmc_dev *pmc = priv; |
| 237 | u32 bits = PMC_CFG_NO_REBOOT_EN; |
| 238 | u32 value = set ? bits : 0; |
| 239 | |
| 240 | return intel_pmc_gcr_update(pmc, PMC_GCR_PMC_CFG_REG, bits, value); |
| 241 | } |
| 242 | |
| 243 | static void iTCO_wdt_no_reboot_bit_setup(struct iTCO_wdt_private *p, |
| 244 | struct platform_device *pdev, |
| 245 | struct itco_wdt_platform_data *pdata) |
| 246 | { |
| 247 | if (pdata->no_reboot_use_pmc) { |
| 248 | struct intel_pmc_dev *pmc = dev_get_drvdata(pdev->dev.parent); |
| 249 | |
| 250 | p->update_no_reboot_bit = update_no_reboot_bit_pmc; |
| 251 | p->no_reboot_priv = pmc; |
Kuppuswamy Sathyanarayanan | 140c91b2 | 2017-04-09 15:00:19 -0700 | [diff] [blame] | 252 | return; |
| 253 | } |
| 254 | |
Mika Westerberg | da23b6f | 2019-08-31 17:24:01 +0300 | [diff] [blame] | 255 | if (p->iTCO_version >= 6) |
| 256 | p->update_no_reboot_bit = update_no_reboot_bit_cnt; |
| 257 | else if (p->iTCO_version >= 2) |
Kuppuswamy Sathyanarayanan | f583a88 | 2017-04-09 15:00:18 -0700 | [diff] [blame] | 258 | p->update_no_reboot_bit = update_no_reboot_bit_mem; |
| 259 | else if (p->iTCO_version == 1) |
| 260 | p->update_no_reboot_bit = update_no_reboot_bit_pci; |
| 261 | else |
| 262 | p->update_no_reboot_bit = update_no_reboot_bit_def; |
Kuppuswamy Sathyanarayanan | 140c91b2 | 2017-04-09 15:00:19 -0700 | [diff] [blame] | 263 | |
| 264 | p->no_reboot_priv = p; |
Kuppuswamy Sathyanarayanan | f583a88 | 2017-04-09 15:00:18 -0700 | [diff] [blame] | 265 | } |
| 266 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 267 | static int iTCO_wdt_start(struct watchdog_device *wd_dev) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 268 | { |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 269 | struct iTCO_wdt_private *p = watchdog_get_drvdata(wd_dev); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 270 | unsigned int val; |
| 271 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 272 | spin_lock(&p->io_lock); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 273 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 274 | iTCO_vendor_pre_start(p->smi_res, wd_dev->timeout); |
Wim Van Sebroeck | e033351 | 2006-11-12 18:05:09 +0100 | [diff] [blame] | 275 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 276 | /* disable chipset's NO_REBOOT bit */ |
Kuppuswamy Sathyanarayanan | 140c91b2 | 2017-04-09 15:00:19 -0700 | [diff] [blame] | 277 | if (p->update_no_reboot_bit(p->no_reboot_priv, false)) { |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 278 | spin_unlock(&p->io_lock); |
Enrico Weigelt, metux IT consult | c21172b | 2020-11-17 16:22:13 +0100 | [diff] [blame] | 279 | dev_err(wd_dev->parent, "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] | 280 | return -EIO; |
| 281 | } |
| 282 | |
Wim Van Sebroeck | 7cd5b08 | 2008-11-19 19:39:58 +0000 | [diff] [blame] | 283 | /* Force the timer to its reload value by writing to the TCO_RLD |
| 284 | register */ |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 285 | if (p->iTCO_version >= 2) |
| 286 | outw(0x01, TCO_RLD(p)); |
| 287 | else if (p->iTCO_version == 1) |
| 288 | outb(0x01, TCO_RLD(p)); |
Wim Van Sebroeck | 7cd5b08 | 2008-11-19 19:39:58 +0000 | [diff] [blame] | 289 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 290 | /* Bit 11: TCO Timer Halt -> 0 = The TCO timer is enabled to count */ |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 291 | val = inw(TCO1_CNT(p)); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 292 | val &= 0xf7ff; |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 293 | outw(val, TCO1_CNT(p)); |
| 294 | val = inw(TCO1_CNT(p)); |
| 295 | spin_unlock(&p->io_lock); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 296 | |
| 297 | if (val & 0x0800) |
| 298 | return -1; |
| 299 | return 0; |
| 300 | } |
| 301 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 302 | static int iTCO_wdt_stop(struct watchdog_device *wd_dev) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 303 | { |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 304 | struct iTCO_wdt_private *p = watchdog_get_drvdata(wd_dev); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 305 | unsigned int val; |
| 306 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 307 | spin_lock(&p->io_lock); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 308 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 309 | iTCO_vendor_pre_stop(p->smi_res); |
Wim Van Sebroeck | e033351 | 2006-11-12 18:05:09 +0100 | [diff] [blame] | 310 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 311 | /* Bit 11: TCO Timer Halt -> 1 = The TCO timer is disabled */ |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 312 | val = inw(TCO1_CNT(p)); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 313 | val |= 0x0800; |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 314 | outw(val, TCO1_CNT(p)); |
| 315 | val = inw(TCO1_CNT(p)); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 316 | |
| 317 | /* Set the NO_REBOOT bit to prevent later reboots, just for sure */ |
Kuppuswamy Sathyanarayanan | 140c91b2 | 2017-04-09 15:00:19 -0700 | [diff] [blame] | 318 | p->update_no_reboot_bit(p->no_reboot_priv, true); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 319 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 320 | spin_unlock(&p->io_lock); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 321 | |
| 322 | if ((val & 0x0800) == 0) |
| 323 | return -1; |
| 324 | return 0; |
| 325 | } |
| 326 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 327 | static int iTCO_wdt_ping(struct watchdog_device *wd_dev) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 328 | { |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 329 | struct iTCO_wdt_private *p = watchdog_get_drvdata(wd_dev); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 330 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 331 | spin_lock(&p->io_lock); |
| 332 | |
Paolo Bonzini | 1fccb73 | 2017-04-05 13:41:15 +0200 | [diff] [blame] | 333 | /* Reload the timer by writing to the TCO Timer Counter register */ |
Wim Van Sebroeck | fc61e83 | 2017-09-09 17:41:24 +0200 | [diff] [blame] | 334 | if (p->iTCO_version >= 2) { |
Paolo Bonzini | 1fccb73 | 2017-04-05 13:41:15 +0200 | [diff] [blame] | 335 | outw(0x01, TCO_RLD(p)); |
Wim Van Sebroeck | fc61e83 | 2017-09-09 17:41:24 +0200 | [diff] [blame] | 336 | } else if (p->iTCO_version == 1) { |
| 337 | /* Reset the timeout status bit so that the timer |
| 338 | * needs to count down twice again before rebooting */ |
| 339 | outw(0x0008, TCO1_STS(p)); /* write 1 to clear bit */ |
| 340 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 341 | outb(0x01, TCO_RLD(p)); |
Wim Van Sebroeck | fc61e83 | 2017-09-09 17:41:24 +0200 | [diff] [blame] | 342 | } |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 343 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 344 | spin_unlock(&p->io_lock); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 345 | return 0; |
| 346 | } |
| 347 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 348 | 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] | 349 | { |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 350 | struct iTCO_wdt_private *p = watchdog_get_drvdata(wd_dev); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 351 | unsigned int val16; |
| 352 | unsigned char val8; |
| 353 | unsigned int tmrval; |
| 354 | |
Wim Van Sebroeck | fc61e83 | 2017-09-09 17:41:24 +0200 | [diff] [blame] | 355 | tmrval = seconds_to_ticks(p, t); |
| 356 | |
Guenter Roeck | 6e7733e | 2021-10-07 17:33:02 -0700 | [diff] [blame] | 357 | /* For TCO v1 the timer counts down twice before rebooting */ |
| 358 | if (p->iTCO_version == 1) |
Wim Van Sebroeck | fc61e83 | 2017-09-09 17:41:24 +0200 | [diff] [blame] | 359 | tmrval /= 2; |
Pádraig Brady | 7e6811d | 2010-04-19 13:38:25 +0100 | [diff] [blame] | 360 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 361 | /* from the specs: */ |
| 362 | /* "Values of 0h-3h are ignored and should not be attempted" */ |
| 363 | if (tmrval < 0x04) |
| 364 | return -EINVAL; |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 365 | if ((p->iTCO_version >= 2 && tmrval > 0x3ff) || |
| 366 | (p->iTCO_version == 1 && tmrval > 0x03f)) |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 367 | return -EINVAL; |
| 368 | |
| 369 | /* Write new heartbeat to watchdog */ |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 370 | if (p->iTCO_version >= 2) { |
| 371 | spin_lock(&p->io_lock); |
| 372 | val16 = inw(TCOv2_TMR(p)); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 373 | val16 &= 0xfc00; |
| 374 | val16 |= tmrval; |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 375 | outw(val16, TCOv2_TMR(p)); |
| 376 | val16 = inw(TCOv2_TMR(p)); |
| 377 | spin_unlock(&p->io_lock); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 378 | |
| 379 | if ((val16 & 0x3ff) != tmrval) |
| 380 | return -EINVAL; |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 381 | } else if (p->iTCO_version == 1) { |
| 382 | spin_lock(&p->io_lock); |
| 383 | val8 = inb(TCOv1_TMR(p)); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 384 | val8 &= 0xc0; |
| 385 | val8 |= (tmrval & 0xff); |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 386 | outb(val8, TCOv1_TMR(p)); |
| 387 | val8 = inb(TCOv1_TMR(p)); |
| 388 | spin_unlock(&p->io_lock); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 389 | |
| 390 | if ((val8 & 0x3f) != tmrval) |
| 391 | return -EINVAL; |
| 392 | } |
| 393 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 394 | wd_dev->timeout = t; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 395 | return 0; |
| 396 | } |
| 397 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 398 | 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] | 399 | { |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 400 | struct iTCO_wdt_private *p = watchdog_get_drvdata(wd_dev); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 401 | unsigned int val16; |
| 402 | unsigned char val8; |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 403 | unsigned int time_left = 0; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 404 | |
| 405 | /* read the TCO Timer */ |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 406 | if (p->iTCO_version >= 2) { |
| 407 | spin_lock(&p->io_lock); |
| 408 | val16 = inw(TCO_RLD(p)); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 409 | val16 &= 0x3ff; |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 410 | spin_unlock(&p->io_lock); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 411 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 412 | time_left = ticks_to_seconds(p, val16); |
| 413 | } else if (p->iTCO_version == 1) { |
| 414 | spin_lock(&p->io_lock); |
| 415 | val8 = inb(TCO_RLD(p)); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 416 | val8 &= 0x3f; |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 417 | if (!(inw(TCO1_STS(p)) & 0x0008)) |
| 418 | val8 += (inb(TCOv1_TMR(p)) & 0x3f); |
| 419 | spin_unlock(&p->io_lock); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 420 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 421 | time_left = ticks_to_seconds(p, val8); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 422 | } |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 423 | return time_left; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 424 | } |
| 425 | |
Mika Westerberg | 1ae3e78 | 2021-09-21 13:29:00 +0300 | [diff] [blame] | 426 | static void iTCO_wdt_set_running(struct iTCO_wdt_private *p) |
| 427 | { |
| 428 | u16 val; |
| 429 | |
| 430 | /* Bit 11: TCO Timer Halt -> 0 = The TCO timer is * enabled */ |
| 431 | val = inw(TCO1_CNT(p)); |
| 432 | if (!(val & BIT(11))) |
| 433 | set_bit(WDOG_HW_RUNNING, &p->wddev.status); |
| 434 | } |
| 435 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 436 | /* |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 437 | * Kernel Interfaces |
| 438 | */ |
| 439 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 440 | static const struct watchdog_info ident = { |
| 441 | .options = WDIOF_SETTIMEOUT | |
| 442 | WDIOF_KEEPALIVEPING | |
| 443 | WDIOF_MAGICCLOSE, |
| 444 | .firmware_version = 0, |
| 445 | .identity = DRV_NAME, |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 446 | }; |
| 447 | |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 448 | static const struct watchdog_ops iTCO_wdt_ops = { |
| 449 | .owner = THIS_MODULE, |
| 450 | .start = iTCO_wdt_start, |
Jingoo Han | 5f5e190 | 2014-02-27 14:41:42 +0900 | [diff] [blame] | 451 | .stop = iTCO_wdt_stop, |
| 452 | .ping = iTCO_wdt_ping, |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 453 | .set_timeout = iTCO_wdt_set_timeout, |
| 454 | .get_timeleft = iTCO_wdt_get_timeleft, |
| 455 | }; |
| 456 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 457 | /* |
| 458 | * Init & exit routines |
| 459 | */ |
| 460 | |
Guenter Roeck | 78e4569 | 2017-01-02 09:27:36 -0800 | [diff] [blame] | 461 | static int iTCO_wdt_probe(struct platform_device *pdev) |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 462 | { |
Guenter Roeck | 78e4569 | 2017-01-02 09:27:36 -0800 | [diff] [blame] | 463 | struct device *dev = &pdev->dev; |
| 464 | struct itco_wdt_platform_data *pdata = dev_get_platdata(dev); |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 465 | struct iTCO_wdt_private *p; |
| 466 | unsigned long val32; |
| 467 | int ret; |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 468 | |
Matt Fleming | 420b54d | 2015-08-06 13:46:24 +0100 | [diff] [blame] | 469 | if (!pdata) |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 470 | return -ENODEV; |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 471 | |
Guenter Roeck | 78e4569 | 2017-01-02 09:27:36 -0800 | [diff] [blame] | 472 | p = devm_kzalloc(dev, sizeof(*p), GFP_KERNEL); |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 473 | if (!p) |
| 474 | return -ENOMEM; |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 475 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 476 | spin_lock_init(&p->io_lock); |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 477 | |
Guenter Roeck | 78e4569 | 2017-01-02 09:27:36 -0800 | [diff] [blame] | 478 | p->tco_res = platform_get_resource(pdev, IORESOURCE_IO, ICH_RES_IO_TCO); |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 479 | if (!p->tco_res) |
| 480 | return -ENODEV; |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 481 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 482 | p->iTCO_version = pdata->version; |
Guenter Roeck | 78e4569 | 2017-01-02 09:27:36 -0800 | [diff] [blame] | 483 | p->pci_dev = to_pci_dev(dev->parent); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 484 | |
Mika Westerberg | e42b0c2 | 2020-02-26 16:21:21 +0300 | [diff] [blame] | 485 | p->smi_res = platform_get_resource(pdev, IORESOURCE_IO, ICH_RES_IO_SMI); |
| 486 | if (p->smi_res) { |
| 487 | /* The TCO logic uses the TCO_EN bit in the SMI_EN register */ |
| 488 | if (!devm_request_region(dev, p->smi_res->start, |
| 489 | resource_size(p->smi_res), |
| 490 | pdev->name)) { |
Enrico Weigelt, metux IT consult | cf813c6 | 2021-06-16 20:17:08 +0200 | [diff] [blame] | 491 | dev_err(dev, "I/O address 0x%04llx already in use, device disabled\n", |
Mika Westerberg | e42b0c2 | 2020-02-26 16:21:21 +0300 | [diff] [blame] | 492 | (u64)SMI_EN(p)); |
| 493 | return -EBUSY; |
| 494 | } |
| 495 | } else if (iTCO_vendorsupport || |
| 496 | turn_SMI_watchdog_clear_off >= p->iTCO_version) { |
Enrico Weigelt, metux IT consult | cf813c6 | 2021-06-16 20:17:08 +0200 | [diff] [blame] | 497 | dev_err(dev, "SMI I/O resource is missing\n"); |
Mika Westerberg | e42b0c2 | 2020-02-26 16:21:21 +0300 | [diff] [blame] | 498 | return -ENODEV; |
| 499 | } |
| 500 | |
Mika Westerberg | 25f1ca31 | 2020-04-16 11:15:51 +0300 | [diff] [blame] | 501 | iTCO_wdt_no_reboot_bit_setup(p, pdev, pdata); |
Kuppuswamy Sathyanarayanan | f583a88 | 2017-04-09 15:00:18 -0700 | [diff] [blame] | 502 | |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 503 | /* |
Peter Tyser | 24b3a16 | 2014-03-10 16:34:55 -0500 | [diff] [blame] | 504 | * Get the Memory-Mapped GCS or PMC register, we need it for the |
| 505 | * NO_REBOOT flag (TCO v2 and v3). |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 506 | */ |
Mika Westerberg | da23b6f | 2019-08-31 17:24:01 +0300 | [diff] [blame] | 507 | if (p->iTCO_version >= 2 && p->iTCO_version < 6 && |
Mika Westerberg | 25f1ca31 | 2020-04-16 11:15:51 +0300 | [diff] [blame] | 508 | !pdata->no_reboot_use_pmc) { |
Cai Huoqing | 79cc4d2 | 2021-09-07 15:42:29 +0800 | [diff] [blame] | 509 | p->gcs_pmc = devm_platform_ioremap_resource(pdev, ICH_RES_MEM_GCS_PMC); |
Guenter Roeck | c7bbcc8 | 2017-01-01 10:39:09 -0800 | [diff] [blame] | 510 | if (IS_ERR(p->gcs_pmc)) |
| 511 | return PTR_ERR(p->gcs_pmc); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 512 | } |
| 513 | |
| 514 | /* Check chipset's NO_REBOOT bit */ |
Kuppuswamy Sathyanarayanan | 140c91b2 | 2017-04-09 15:00:19 -0700 | [diff] [blame] | 515 | if (p->update_no_reboot_bit(p->no_reboot_priv, false) && |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 516 | iTCO_vendor_check_noreboot_on()) { |
Enrico Weigelt, metux IT consult | c21172b | 2020-11-17 16:22:13 +0100 | [diff] [blame] | 517 | dev_info(dev, "unable to reset NO_REBOOT flag, device disabled by hardware/BIOS\n"); |
Guenter Roeck | c7bbcc8 | 2017-01-01 10:39:09 -0800 | [diff] [blame] | 518 | return -ENODEV; /* Cannot reset NO_REBOOT bit */ |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 519 | } |
| 520 | |
| 521 | /* Set the NO_REBOOT bit to prevent later reboots, just for sure */ |
Kuppuswamy Sathyanarayanan | 140c91b2 | 2017-04-09 15:00:19 -0700 | [diff] [blame] | 522 | p->update_no_reboot_bit(p->no_reboot_priv, true); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 523 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 524 | if (turn_SMI_watchdog_clear_off >= p->iTCO_version) { |
Aaron Sierra | 887c8ec | 2012-04-20 14:14:11 -0500 | [diff] [blame] | 525 | /* |
| 526 | * Bit 13: TCO_EN -> 0 |
| 527 | * Disables TCO logic generating an SMI# |
| 528 | */ |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 529 | val32 = inl(SMI_EN(p)); |
Guenter Roeck | 6e7733e | 2021-10-07 17:33:02 -0700 | [diff] [blame] | 530 | val32 &= 0xffffdfff; /* Turn off SMI clearing watchdog */ |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 531 | outl(val32, SMI_EN(p)); |
Wim Van Sebroeck | deb9197 | 2011-10-19 23:59:26 +0200 | [diff] [blame] | 532 | } |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 533 | |
Guenter Roeck | 78e4569 | 2017-01-02 09:27:36 -0800 | [diff] [blame] | 534 | if (!devm_request_region(dev, p->tco_res->start, |
Guenter Roeck | c7bbcc8 | 2017-01-01 10:39:09 -0800 | [diff] [blame] | 535 | resource_size(p->tco_res), |
Guenter Roeck | 78e4569 | 2017-01-02 09:27:36 -0800 | [diff] [blame] | 536 | pdev->name)) { |
Enrico Weigelt, metux IT consult | c21172b | 2020-11-17 16:22:13 +0100 | [diff] [blame] | 537 | dev_err(dev, "I/O address 0x%04llx already in use, device disabled\n", |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 538 | (u64)TCOBASE(p)); |
Guenter Roeck | c7bbcc8 | 2017-01-01 10:39:09 -0800 | [diff] [blame] | 539 | return -EBUSY; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 540 | } |
| 541 | |
Enrico Weigelt, metux IT consult | c21172b | 2020-11-17 16:22:13 +0100 | [diff] [blame] | 542 | dev_info(dev, "Found a %s TCO device (Version=%d, TCOBASE=0x%04llx)\n", |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 543 | pdata->name, pdata->version, (u64)TCOBASE(p)); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 544 | |
| 545 | /* Clear out the (probably old) status */ |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 546 | switch (p->iTCO_version) { |
Mika Westerberg | da23b6f | 2019-08-31 17:24:01 +0300 | [diff] [blame] | 547 | case 6: |
Yong, Jonathan | 3b3a1c8 | 2016-06-17 00:33:31 +0000 | [diff] [blame] | 548 | case 5: |
Matt Fleming | 2a7a0e9 | 2015-08-06 13:46:26 +0100 | [diff] [blame] | 549 | case 4: |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 550 | outw(0x0008, TCO1_STS(p)); /* Clear the Time Out Status bit */ |
| 551 | outw(0x0002, TCO2_STS(p)); /* Clear SECOND_TO_STS bit */ |
Matt Fleming | 2a7a0e9 | 2015-08-06 13:46:26 +0100 | [diff] [blame] | 552 | break; |
| 553 | case 3: |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 554 | outl(0x20008, TCO1_STS(p)); |
Matt Fleming | 2a7a0e9 | 2015-08-06 13:46:26 +0100 | [diff] [blame] | 555 | break; |
| 556 | case 2: |
| 557 | case 1: |
| 558 | default: |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 559 | outw(0x0008, TCO1_STS(p)); /* Clear the Time Out Status bit */ |
| 560 | outw(0x0002, TCO2_STS(p)); /* Clear SECOND_TO_STS bit */ |
| 561 | outw(0x0004, TCO2_STS(p)); /* Clear BOOT_STS bit */ |
Matt Fleming | 2a7a0e9 | 2015-08-06 13:46:26 +0100 | [diff] [blame] | 562 | break; |
Peter Tyser | 24b3a16 | 2014-03-10 16:34:55 -0500 | [diff] [blame] | 563 | } |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 564 | |
Enrico Weigelt, metux IT consult | c21172b | 2020-11-17 16:22:13 +0100 | [diff] [blame] | 565 | p->wddev.info = &ident, |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 566 | p->wddev.ops = &iTCO_wdt_ops, |
| 567 | p->wddev.bootstatus = 0; |
| 568 | p->wddev.timeout = WATCHDOG_TIMEOUT; |
| 569 | watchdog_set_nowayout(&p->wddev, nowayout); |
Guenter Roeck | 78e4569 | 2017-01-02 09:27:36 -0800 | [diff] [blame] | 570 | p->wddev.parent = dev; |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 571 | |
| 572 | watchdog_set_drvdata(&p->wddev, p); |
Guenter Roeck | 78e4569 | 2017-01-02 09:27:36 -0800 | [diff] [blame] | 573 | platform_set_drvdata(pdev, p); |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 574 | |
Mika Westerberg | 1ae3e78 | 2021-09-21 13:29:00 +0300 | [diff] [blame] | 575 | iTCO_wdt_set_running(p); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 576 | |
Alan Cox | 0e6fa3f | 2008-05-19 14:06:25 +0100 | [diff] [blame] | 577 | /* Check that the heartbeat value is within it's range; |
| 578 | if not reset to the default */ |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 579 | if (iTCO_wdt_set_timeout(&p->wddev, heartbeat)) { |
| 580 | iTCO_wdt_set_timeout(&p->wddev, WATCHDOG_TIMEOUT); |
Enrico Weigelt, metux IT consult | c21172b | 2020-11-17 16:22:13 +0100 | [diff] [blame] | 581 | dev_info(dev, "timeout value out of range, using %d\n", |
Wim Van Sebroeck | bff2343 | 2012-06-09 14:10:28 +0200 | [diff] [blame] | 582 | WATCHDOG_TIMEOUT); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 583 | } |
| 584 | |
Guenter Roeck | d3d77b5 | 2017-01-10 15:21:49 -0800 | [diff] [blame] | 585 | watchdog_stop_on_reboot(&p->wddev); |
Guenter Roeck | 77d9f76 | 2019-04-08 12:38:41 -0700 | [diff] [blame] | 586 | watchdog_stop_on_unregister(&p->wddev); |
Guenter Roeck | 78e4569 | 2017-01-02 09:27:36 -0800 | [diff] [blame] | 587 | ret = devm_watchdog_register_device(dev, &p->wddev); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 588 | if (ret != 0) { |
Enrico Weigelt, metux IT consult | c21172b | 2020-11-17 16:22:13 +0100 | [diff] [blame] | 589 | dev_err(dev, "cannot register watchdog device (err=%d)\n", ret); |
Guenter Roeck | c7bbcc8 | 2017-01-01 10:39:09 -0800 | [diff] [blame] | 590 | return ret; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 591 | } |
| 592 | |
Enrico Weigelt, metux IT consult | c21172b | 2020-11-17 16:22:13 +0100 | [diff] [blame] | 593 | dev_info(dev, "initialized. heartbeat=%d sec (nowayout=%d)\n", |
Joe Perches | 27c766a | 2012-02-15 15:06:19 -0800 | [diff] [blame] | 594 | heartbeat, nowayout); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 595 | |
| 596 | return 0; |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 597 | } |
| 598 | |
Rafael J. Wysocki | f321c9cb | 2015-04-03 15:25:04 +0200 | [diff] [blame] | 599 | #ifdef CONFIG_PM_SLEEP |
| 600 | /* |
| 601 | * Suspend-to-idle requires this, because it stops the ticks and timekeeping, so |
| 602 | * the watchdog cannot be pinged while in that state. In ACPI sleep states the |
| 603 | * watchdog is stopped by the platform firmware. |
| 604 | */ |
| 605 | |
| 606 | #ifdef CONFIG_ACPI |
| 607 | static inline bool need_suspend(void) |
| 608 | { |
| 609 | return acpi_target_system_state() == ACPI_STATE_S0; |
| 610 | } |
| 611 | #else |
| 612 | static inline bool need_suspend(void) { return true; } |
| 613 | #endif |
| 614 | |
| 615 | static int iTCO_wdt_suspend_noirq(struct device *dev) |
| 616 | { |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 617 | struct iTCO_wdt_private *p = dev_get_drvdata(dev); |
Rafael J. Wysocki | f321c9cb | 2015-04-03 15:25:04 +0200 | [diff] [blame] | 618 | int ret = 0; |
| 619 | |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 620 | p->suspended = false; |
| 621 | if (watchdog_active(&p->wddev) && need_suspend()) { |
| 622 | ret = iTCO_wdt_stop(&p->wddev); |
Rafael J. Wysocki | f321c9cb | 2015-04-03 15:25:04 +0200 | [diff] [blame] | 623 | if (!ret) |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 624 | p->suspended = true; |
Rafael J. Wysocki | f321c9cb | 2015-04-03 15:25:04 +0200 | [diff] [blame] | 625 | } |
| 626 | return ret; |
| 627 | } |
| 628 | |
| 629 | static int iTCO_wdt_resume_noirq(struct device *dev) |
| 630 | { |
Guenter Roeck | ce1b95c | 2017-01-01 11:11:39 -0800 | [diff] [blame] | 631 | struct iTCO_wdt_private *p = dev_get_drvdata(dev); |
| 632 | |
| 633 | if (p->suspended) |
| 634 | iTCO_wdt_start(&p->wddev); |
Rafael J. Wysocki | f321c9cb | 2015-04-03 15:25:04 +0200 | [diff] [blame] | 635 | |
| 636 | return 0; |
| 637 | } |
| 638 | |
Julia Lawall | 6e938f6 | 2016-08-28 22:26:26 +0200 | [diff] [blame] | 639 | static const struct dev_pm_ops iTCO_wdt_pm = { |
Rafael J. Wysocki | f321c9cb | 2015-04-03 15:25:04 +0200 | [diff] [blame] | 640 | .suspend_noirq = iTCO_wdt_suspend_noirq, |
| 641 | .resume_noirq = iTCO_wdt_resume_noirq, |
| 642 | }; |
| 643 | |
| 644 | #define ITCO_WDT_PM_OPS (&iTCO_wdt_pm) |
| 645 | #else |
| 646 | #define ITCO_WDT_PM_OPS NULL |
| 647 | #endif /* CONFIG_PM_SLEEP */ |
| 648 | |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 649 | static struct platform_driver iTCO_wdt_driver = { |
| 650 | .probe = iTCO_wdt_probe, |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 651 | .driver = { |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 652 | .name = DRV_NAME, |
Rafael J. Wysocki | f321c9cb | 2015-04-03 15:25:04 +0200 | [diff] [blame] | 653 | .pm = ITCO_WDT_PM_OPS, |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 654 | }, |
| 655 | }; |
| 656 | |
Enrico Weigelt, metux IT consult | 89c866f | 2020-11-17 16:22:12 +0100 | [diff] [blame] | 657 | module_platform_driver(iTCO_wdt_driver); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 658 | |
| 659 | MODULE_AUTHOR("Wim Van Sebroeck <wim@iguana.be>"); |
| 660 | MODULE_DESCRIPTION("Intel TCO WatchDog Timer Driver"); |
Wim Van Sebroeck | 3836cc0 | 2006-06-30 08:44:53 +0200 | [diff] [blame] | 661 | MODULE_VERSION(DRV_VERSION); |
Wim Van Sebroeck | 9e0ea34 | 2006-05-21 14:37:44 +0200 | [diff] [blame] | 662 | MODULE_LICENSE("GPL"); |
Jan Beulich | e5de32e | 2012-06-22 16:41:00 +0100 | [diff] [blame] | 663 | MODULE_ALIAS("platform:" DRV_NAME); |