1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
48
49
50#define DRV_NAME "iTCO_wdt"
51#define DRV_VERSION "1.11"
52
53
54#include <linux/acpi.h>
55#include <linux/module.h>
56#include <linux/moduleparam.h>
57#include <linux/types.h>
58#include <linux/errno.h>
59#include <linux/kernel.h>
60#include <linux/watchdog.h>
61#include <linux/init.h>
62#include <linux/fs.h>
63#include <linux/platform_device.h>
64#include <linux/pci.h>
65#include <linux/ioport.h>
66#include <linux/spinlock.h>
67#include <linux/uaccess.h>
68#include <linux/io.h>
69#include <linux/platform_data/itco_wdt.h>
70
71#include "iTCO_vendor.h"
72
73
74
75#define TCOBASE (iTCO_wdt_private.tco_res->start)
76
77#define SMI_EN (iTCO_wdt_private.smi_res->start)
78
79#define TCO_RLD (TCOBASE + 0x00)
80#define TCOv1_TMR (TCOBASE + 0x01)
81#define TCO_DAT_IN (TCOBASE + 0x02)
82#define TCO_DAT_OUT (TCOBASE + 0x03)
83#define TCO1_STS (TCOBASE + 0x04)
84#define TCO2_STS (TCOBASE + 0x06)
85#define TCO1_CNT (TCOBASE + 0x08)
86#define TCO2_CNT (TCOBASE + 0x0a)
87#define TCOv2_TMR (TCOBASE + 0x12)
88
89
90static struct {
91
92 unsigned int iTCO_version;
93 struct resource *tco_res;
94 struct resource *smi_res;
95
96
97
98
99 struct resource *gcs_pmc_res;
100 unsigned long __iomem *gcs_pmc;
101
102 spinlock_t io_lock;
103 struct platform_device *dev;
104
105 struct pci_dev *pdev;
106
107 bool suspended;
108} iTCO_wdt_private;
109
110
111#define WATCHDOG_TIMEOUT 30
112static int heartbeat = WATCHDOG_TIMEOUT;
113module_param(heartbeat, int, 0);
114MODULE_PARM_DESC(heartbeat, "Watchdog timeout in seconds. "
115 "5..76 (TCO v1) or 3..614 (TCO v2), default="
116 __MODULE_STRING(WATCHDOG_TIMEOUT) ")");
117
118static bool nowayout = WATCHDOG_NOWAYOUT;
119module_param(nowayout, bool, 0);
120MODULE_PARM_DESC(nowayout,
121 "Watchdog cannot be stopped once started (default="
122 __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
123
124static int turn_SMI_watchdog_clear_off = 1;
125module_param(turn_SMI_watchdog_clear_off, int, 0);
126MODULE_PARM_DESC(turn_SMI_watchdog_clear_off,
127 "Turn off SMI clearing watchdog (depends on TCO-version)(default=1)");
128
129
130
131
132
133
134
135
136
137
138static inline unsigned int seconds_to_ticks(int secs)
139{
140 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;
146}
147
148static inline u32 no_reboot_bit(void)
149{
150 u32 enable_bit;
151
152 switch (iTCO_wdt_private.iTCO_version) {
153 case 3:
154 enable_bit = 0x00000010;
155 break;
156 case 2:
157 enable_bit = 0x00000020;
158 break;
159 case 4:
160 case 1:
161 default:
162 enable_bit = 0x00000002;
163 break;
164 }
165
166 return enable_bit;
167}
168
169static void iTCO_wdt_set_NO_REBOOT_bit(void)
170{
171 u32 val32;
172
173
174 if (iTCO_wdt_private.iTCO_version >= 2) {
175 val32 = readl(iTCO_wdt_private.gcs_pmc);
176 val32 |= no_reboot_bit();
177 writel(val32, iTCO_wdt_private.gcs_pmc);
178 } else if (iTCO_wdt_private.iTCO_version == 1) {
179 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
180 val32 |= no_reboot_bit();
181 pci_write_config_dword(iTCO_wdt_private.pdev, 0xd4, val32);
182 }
183}
184
185static int iTCO_wdt_unset_NO_REBOOT_bit(void)
186{
187 u32 enable_bit = no_reboot_bit();
188 u32 val32 = 0;
189
190
191 if (iTCO_wdt_private.iTCO_version >= 2) {
192 val32 = readl(iTCO_wdt_private.gcs_pmc);
193 val32 &= ~enable_bit;
194 writel(val32, iTCO_wdt_private.gcs_pmc);
195
196 val32 = readl(iTCO_wdt_private.gcs_pmc);
197 } else if (iTCO_wdt_private.iTCO_version == 1) {
198 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
199 val32 &= ~enable_bit;
200 pci_write_config_dword(iTCO_wdt_private.pdev, 0xd4, val32);
201
202 pci_read_config_dword(iTCO_wdt_private.pdev, 0xd4, &val32);
203 }
204
205 if (val32 & enable_bit)
206 return -EIO;
207
208 return 0;
209}
210
211static int iTCO_wdt_start(struct watchdog_device *wd_dev)
212{
213 unsigned int val;
214
215 spin_lock(&iTCO_wdt_private.io_lock);
216
217 iTCO_vendor_pre_start(iTCO_wdt_private.smi_res, wd_dev->timeout);
218
219
220 if (iTCO_wdt_unset_NO_REBOOT_bit()) {
221 spin_unlock(&iTCO_wdt_private.io_lock);
222 pr_err("failed to reset NO_REBOOT flag, reboot disabled by hardware/BIOS\n");
223 return -EIO;
224 }
225
226
227
228 if (iTCO_wdt_private.iTCO_version >= 2)
229 outw(0x01, TCO_RLD);
230 else if (iTCO_wdt_private.iTCO_version == 1)
231 outb(0x01, TCO_RLD);
232
233
234 val = inw(TCO1_CNT);
235 val &= 0xf7ff;
236 outw(val, TCO1_CNT);
237 val = inw(TCO1_CNT);
238 spin_unlock(&iTCO_wdt_private.io_lock);
239
240 if (val & 0x0800)
241 return -1;
242 return 0;
243}
244
245static int iTCO_wdt_stop(struct watchdog_device *wd_dev)
246{
247 unsigned int val;
248
249 spin_lock(&iTCO_wdt_private.io_lock);
250
251 iTCO_vendor_pre_stop(iTCO_wdt_private.smi_res);
252
253
254 val = inw(TCO1_CNT);
255 val |= 0x0800;
256 outw(val, TCO1_CNT);
257 val = inw(TCO1_CNT);
258
259
260 iTCO_wdt_set_NO_REBOOT_bit();
261
262 spin_unlock(&iTCO_wdt_private.io_lock);
263
264 if ((val & 0x0800) == 0)
265 return -1;
266 return 0;
267}
268
269static int iTCO_wdt_ping(struct watchdog_device *wd_dev)
270{
271 spin_lock(&iTCO_wdt_private.io_lock);
272
273 iTCO_vendor_pre_keepalive(iTCO_wdt_private.smi_res, wd_dev->timeout);
274
275
276 if (iTCO_wdt_private.iTCO_version >= 2) {
277 outw(0x01, TCO_RLD);
278 } else if (iTCO_wdt_private.iTCO_version == 1) {
279
280
281 outw(0x0008, TCO1_STS);
282
283 outb(0x01, TCO_RLD);
284 }
285
286 spin_unlock(&iTCO_wdt_private.io_lock);
287 return 0;
288}
289
290static int iTCO_wdt_set_timeout(struct watchdog_device *wd_dev, unsigned int t)
291{
292 unsigned int val16;
293 unsigned char val8;
294 unsigned int tmrval;
295
296 tmrval = seconds_to_ticks(t);
297
298
299 if (iTCO_wdt_private.iTCO_version == 1)
300 tmrval /= 2;
301
302
303
304 if (tmrval < 0x04)
305 return -EINVAL;
306 if (((iTCO_wdt_private.iTCO_version >= 2) && (tmrval > 0x3ff)) ||
307 ((iTCO_wdt_private.iTCO_version == 1) && (tmrval > 0x03f)))
308 return -EINVAL;
309
310 iTCO_vendor_pre_set_heartbeat(tmrval);
311
312
313 if (iTCO_wdt_private.iTCO_version >= 2) {
314 spin_lock(&iTCO_wdt_private.io_lock);
315 val16 = inw(TCOv2_TMR);
316 val16 &= 0xfc00;
317 val16 |= tmrval;
318 outw(val16, TCOv2_TMR);
319 val16 = inw(TCOv2_TMR);
320 spin_unlock(&iTCO_wdt_private.io_lock);
321
322 if ((val16 & 0x3ff) != tmrval)
323 return -EINVAL;
324 } else if (iTCO_wdt_private.iTCO_version == 1) {
325 spin_lock(&iTCO_wdt_private.io_lock);
326 val8 = inb(TCOv1_TMR);
327 val8 &= 0xc0;
328 val8 |= (tmrval & 0xff);
329 outb(val8, TCOv1_TMR);
330 val8 = inb(TCOv1_TMR);
331 spin_unlock(&iTCO_wdt_private.io_lock);
332
333 if ((val8 & 0x3f) != tmrval)
334 return -EINVAL;
335 }
336
337 wd_dev->timeout = t;
338 return 0;
339}
340
341static unsigned int iTCO_wdt_get_timeleft(struct watchdog_device *wd_dev)
342{
343 unsigned int val16;
344 unsigned char val8;
345 unsigned int time_left = 0;
346
347
348 if (iTCO_wdt_private.iTCO_version >= 2) {
349 spin_lock(&iTCO_wdt_private.io_lock);
350 val16 = inw(TCO_RLD);
351 val16 &= 0x3ff;
352 spin_unlock(&iTCO_wdt_private.io_lock);
353
354 time_left = ticks_to_seconds(val16);
355 } else if (iTCO_wdt_private.iTCO_version == 1) {
356 spin_lock(&iTCO_wdt_private.io_lock);
357 val8 = inb(TCO_RLD);
358 val8 &= 0x3f;
359 if (!(inw(TCO1_STS) & 0x0008))
360 val8 += (inb(TCOv1_TMR) & 0x3f);
361 spin_unlock(&iTCO_wdt_private.io_lock);
362
363 time_left = ticks_to_seconds(val8);
364 }
365 return time_left;
366}
367
368
369
370
371
372static const struct watchdog_info ident = {
373 .options = WDIOF_SETTIMEOUT |
374 WDIOF_KEEPALIVEPING |
375 WDIOF_MAGICCLOSE,
376 .firmware_version = 0,
377 .identity = DRV_NAME,
378};
379
380static const struct watchdog_ops iTCO_wdt_ops = {
381 .owner = THIS_MODULE,
382 .start = iTCO_wdt_start,
383 .stop = iTCO_wdt_stop,
384 .ping = iTCO_wdt_ping,
385 .set_timeout = iTCO_wdt_set_timeout,
386 .get_timeleft = iTCO_wdt_get_timeleft,
387};
388
389static struct watchdog_device iTCO_wdt_watchdog_dev = {
390 .info = &ident,
391 .ops = &iTCO_wdt_ops,
392};
393
394
395
396
397
398static void iTCO_wdt_cleanup(void)
399{
400
401 if (!nowayout)
402 iTCO_wdt_stop(&iTCO_wdt_watchdog_dev);
403
404
405 watchdog_unregister_device(&iTCO_wdt_watchdog_dev);
406
407
408 release_region(iTCO_wdt_private.tco_res->start,
409 resource_size(iTCO_wdt_private.tco_res));
410 release_region(iTCO_wdt_private.smi_res->start,
411 resource_size(iTCO_wdt_private.smi_res));
412 if (iTCO_wdt_private.iTCO_version >= 2) {
413 iounmap(iTCO_wdt_private.gcs_pmc);
414 release_mem_region(iTCO_wdt_private.gcs_pmc_res->start,
415 resource_size(iTCO_wdt_private.gcs_pmc_res));
416 }
417
418 iTCO_wdt_private.tco_res = NULL;
419 iTCO_wdt_private.smi_res = NULL;
420 iTCO_wdt_private.gcs_pmc_res = NULL;
421 iTCO_wdt_private.gcs_pmc = NULL;
422}
423
424static int iTCO_wdt_probe(struct platform_device *dev)
425{
426 int ret = -ENODEV;
427 unsigned long val32;
428 struct itco_wdt_platform_data *pdata = dev_get_platdata(&dev->dev);
429
430 if (!pdata)
431 goto out;
432
433 spin_lock_init(&iTCO_wdt_private.io_lock);
434
435 iTCO_wdt_private.tco_res =
436 platform_get_resource(dev, IORESOURCE_IO, ICH_RES_IO_TCO);
437 if (!iTCO_wdt_private.tco_res)
438 goto out;
439
440 iTCO_wdt_private.smi_res =
441 platform_get_resource(dev, IORESOURCE_IO, ICH_RES_IO_SMI);
442 if (!iTCO_wdt_private.smi_res)
443 goto out;
444
445 iTCO_wdt_private.iTCO_version = pdata->version;
446 iTCO_wdt_private.dev = dev;
447 iTCO_wdt_private.pdev = to_pci_dev(dev->dev.parent);
448
449
450
451
452
453 if (iTCO_wdt_private.iTCO_version >= 2) {
454 iTCO_wdt_private.gcs_pmc_res = platform_get_resource(dev,
455 IORESOURCE_MEM,
456 ICH_RES_MEM_GCS_PMC);
457
458 if (!iTCO_wdt_private.gcs_pmc_res)
459 goto out;
460
461 if (!request_mem_region(iTCO_wdt_private.gcs_pmc_res->start,
462 resource_size(iTCO_wdt_private.gcs_pmc_res), dev->name)) {
463 ret = -EBUSY;
464 goto out;
465 }
466 iTCO_wdt_private.gcs_pmc = ioremap(iTCO_wdt_private.gcs_pmc_res->start,
467 resource_size(iTCO_wdt_private.gcs_pmc_res));
468 if (!iTCO_wdt_private.gcs_pmc) {
469 ret = -EIO;
470 goto unreg_gcs_pmc;
471 }
472 }
473
474
475 if (iTCO_wdt_unset_NO_REBOOT_bit() && iTCO_vendor_check_noreboot_on()) {
476 pr_info("unable to reset NO_REBOOT flag, device disabled by hardware/BIOS\n");
477 ret = -ENODEV;
478 goto unmap_gcs_pmc;
479 }
480
481
482 iTCO_wdt_set_NO_REBOOT_bit();
483
484
485 if (!request_region(iTCO_wdt_private.smi_res->start,
486 resource_size(iTCO_wdt_private.smi_res), dev->name)) {
487 pr_err("I/O address 0x%04llx already in use, device disabled\n",
488 (u64)SMI_EN);
489 ret = -EBUSY;
490 goto unmap_gcs_pmc;
491 }
492 if (turn_SMI_watchdog_clear_off >= iTCO_wdt_private.iTCO_version) {
493
494
495
496
497 val32 = inl(SMI_EN);
498 val32 &= 0xffffdfff;
499 outl(val32, SMI_EN);
500 }
501
502 if (!request_region(iTCO_wdt_private.tco_res->start,
503 resource_size(iTCO_wdt_private.tco_res), dev->name)) {
504 pr_err("I/O address 0x%04llx already in use, device disabled\n",
505 (u64)TCOBASE);
506 ret = -EBUSY;
507 goto unreg_smi;
508 }
509
510 pr_info("Found a %s TCO device (Version=%d, TCOBASE=0x%04llx)\n",
511 pdata->name, pdata->version, (u64)TCOBASE);
512
513
514 switch (iTCO_wdt_private.iTCO_version) {
515 case 4:
516 outw(0x0008, TCO1_STS);
517 outw(0x0002, TCO2_STS);
518 break;
519 case 3:
520 outl(0x20008, TCO1_STS);
521 break;
522 case 2:
523 case 1:
524 default:
525 outw(0x0008, TCO1_STS);
526 outw(0x0002, TCO2_STS);
527 outw(0x0004, TCO2_STS);
528 break;
529 }
530
531 iTCO_wdt_watchdog_dev.bootstatus = 0;
532 iTCO_wdt_watchdog_dev.timeout = WATCHDOG_TIMEOUT;
533 watchdog_set_nowayout(&iTCO_wdt_watchdog_dev, nowayout);
534 iTCO_wdt_watchdog_dev.parent = &dev->dev;
535
536
537 iTCO_wdt_stop(&iTCO_wdt_watchdog_dev);
538
539
540
541 if (iTCO_wdt_set_timeout(&iTCO_wdt_watchdog_dev, heartbeat)) {
542 iTCO_wdt_set_timeout(&iTCO_wdt_watchdog_dev, WATCHDOG_TIMEOUT);
543 pr_info("timeout value out of range, using %d\n",
544 WATCHDOG_TIMEOUT);
545 }
546
547 ret = watchdog_register_device(&iTCO_wdt_watchdog_dev);
548 if (ret != 0) {
549 pr_err("cannot register watchdog device (err=%d)\n", ret);
550 goto unreg_tco;
551 }
552
553 pr_info("initialized. heartbeat=%d sec (nowayout=%d)\n",
554 heartbeat, nowayout);
555
556 return 0;
557
558unreg_tco:
559 release_region(iTCO_wdt_private.tco_res->start,
560 resource_size(iTCO_wdt_private.tco_res));
561unreg_smi:
562 release_region(iTCO_wdt_private.smi_res->start,
563 resource_size(iTCO_wdt_private.smi_res));
564unmap_gcs_pmc:
565 if (iTCO_wdt_private.iTCO_version >= 2)
566 iounmap(iTCO_wdt_private.gcs_pmc);
567unreg_gcs_pmc:
568 if (iTCO_wdt_private.iTCO_version >= 2)
569 release_mem_region(iTCO_wdt_private.gcs_pmc_res->start,
570 resource_size(iTCO_wdt_private.gcs_pmc_res));
571out:
572 iTCO_wdt_private.tco_res = NULL;
573 iTCO_wdt_private.smi_res = NULL;
574 iTCO_wdt_private.gcs_pmc_res = NULL;
575 iTCO_wdt_private.gcs_pmc = NULL;
576
577 return ret;
578}
579
580static int iTCO_wdt_remove(struct platform_device *dev)
581{
582 if (iTCO_wdt_private.tco_res || iTCO_wdt_private.smi_res)
583 iTCO_wdt_cleanup();
584
585 return 0;
586}
587
588static void iTCO_wdt_shutdown(struct platform_device *dev)
589{
590 iTCO_wdt_stop(NULL);
591}
592
593#ifdef CONFIG_PM_SLEEP
594
595
596
597
598
599
600#ifdef CONFIG_ACPI
601static inline bool need_suspend(void)
602{
603 return acpi_target_system_state() == ACPI_STATE_S0;
604}
605#else
606static inline bool need_suspend(void) { return true; }
607#endif
608
609static int iTCO_wdt_suspend_noirq(struct device *dev)
610{
611 int ret = 0;
612
613 iTCO_wdt_private.suspended = false;
614 if (watchdog_active(&iTCO_wdt_watchdog_dev) && need_suspend()) {
615 ret = iTCO_wdt_stop(&iTCO_wdt_watchdog_dev);
616 if (!ret)
617 iTCO_wdt_private.suspended = true;
618 }
619 return ret;
620}
621
622static int iTCO_wdt_resume_noirq(struct device *dev)
623{
624 if (iTCO_wdt_private.suspended)
625 iTCO_wdt_start(&iTCO_wdt_watchdog_dev);
626
627 return 0;
628}
629
630static struct dev_pm_ops iTCO_wdt_pm = {
631 .suspend_noirq = iTCO_wdt_suspend_noirq,
632 .resume_noirq = iTCO_wdt_resume_noirq,
633};
634
635#define ITCO_WDT_PM_OPS (&iTCO_wdt_pm)
636#else
637#define ITCO_WDT_PM_OPS NULL
638#endif
639
640static struct platform_driver iTCO_wdt_driver = {
641 .probe = iTCO_wdt_probe,
642 .remove = iTCO_wdt_remove,
643 .shutdown = iTCO_wdt_shutdown,
644 .driver = {
645 .name = DRV_NAME,
646 .pm = ITCO_WDT_PM_OPS,
647 },
648};
649
650static int __init iTCO_wdt_init_module(void)
651{
652 int err;
653
654 pr_info("Intel TCO WatchDog Timer Driver v%s\n", DRV_VERSION);
655
656 err = platform_driver_register(&iTCO_wdt_driver);
657 if (err)
658 return err;
659
660 return 0;
661}
662
663static void __exit iTCO_wdt_cleanup_module(void)
664{
665 platform_driver_unregister(&iTCO_wdt_driver);
666 pr_info("Watchdog Module Unloaded\n");
667}
668
669module_init(iTCO_wdt_init_module);
670module_exit(iTCO_wdt_cleanup_module);
671
672MODULE_AUTHOR("Wim Van Sebroeck <wim@iguana.be>");
673MODULE_DESCRIPTION("Intel TCO WatchDog Timer Driver");
674MODULE_VERSION(DRV_VERSION);
675MODULE_LICENSE("GPL");
676MODULE_ALIAS("platform:" DRV_NAME);
677