2 * sp5100_tco : TCO timer driver for sp5100 chipsets
4 * (c) Copyright 2009 Google Inc., All Rights Reserved.
7 * (c) Copyright 2000 kernel concepts <nils@kernelconcepts.de>, All Rights
9 * http://www.kernelconcepts.de
11 * This program is free software; you can redistribute it and/or
12 * modify it under the terms of the GNU General Public License
13 * as published by the Free Software Foundation; either version
14 * 2 of the License, or (at your option) any later version.
16 * See AMD Publication 43009 "AMD SB700/710/750 Register Reference Guide",
17 * AMD Publication 45482 "AMD SB800-Series Southbridges Register
19 * AMD Publication 48751 "BIOS and Kernel Developer’s Guide (BKDG)
20 * for AMD Family 16h Models 00h-0Fh Processors"
21 * AMD Publication 51192 "AMD Bolton FCH Register Reference Guide"
22 * AMD Publication 52740 "BIOS and Kernel Developer’s Guide (BKDG)
23 * for AMD Family 16h Models 30h-3Fh Processors"
27 * Includes, defines, variables, module parameters, ...
30 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32 #include <linux/init.h>
34 #include <linux/ioport.h>
35 #include <linux/module.h>
36 #include <linux/moduleparam.h>
37 #include <linux/pci.h>
38 #include <linux/platform_device.h>
39 #include <linux/types.h>
40 #include <linux/watchdog.h>
42 #include "sp5100_tco.h"
44 #define TCO_DRIVER_NAME "sp5100-tco"
46 /* internal variables */
53 struct watchdog_device wdd
;
54 void __iomem
*tcobase
;
55 enum tco_reg_layout tco_reg_layout
;
58 /* the watchdog platform device */
59 static struct platform_device
*sp5100_tco_platform_device
;
60 /* the associated PCI device */
61 static struct pci_dev
*sp5100_tco_pci
;
63 /* module parameters */
65 #define WATCHDOG_HEARTBEAT 60 /* 60 sec default heartbeat. */
66 static int heartbeat
= WATCHDOG_HEARTBEAT
; /* in seconds */
67 module_param(heartbeat
, int, 0);
68 MODULE_PARM_DESC(heartbeat
, "Watchdog heartbeat in seconds. (default="
69 __MODULE_STRING(WATCHDOG_HEARTBEAT
) ")");
71 static bool nowayout
= WATCHDOG_NOWAYOUT
;
72 module_param(nowayout
, bool, 0);
73 MODULE_PARM_DESC(nowayout
, "Watchdog cannot be stopped once started."
74 " (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT
) ")");
77 * Some TCO specific functions
80 static enum tco_reg_layout
tco_reg_layout(struct pci_dev
*dev
)
82 if (dev
->vendor
== PCI_VENDOR_ID_ATI
&&
83 dev
->device
== PCI_DEVICE_ID_ATI_SBX00_SMBUS
&&
84 dev
->revision
< 0x40) {
86 } else if (dev
->vendor
== PCI_VENDOR_ID_AMD
&&
87 ((dev
->device
== PCI_DEVICE_ID_AMD_HUDSON2_SMBUS
&&
88 dev
->revision
>= 0x41) ||
89 (dev
->device
== PCI_DEVICE_ID_AMD_KERNCZ_SMBUS
&&
90 dev
->revision
>= 0x49))) {
96 static int tco_timer_start(struct watchdog_device
*wdd
)
98 struct sp5100_tco
*tco
= watchdog_get_drvdata(wdd
);
101 val
= readl(SP5100_WDT_CONTROL(tco
->tcobase
));
102 val
|= SP5100_WDT_START_STOP_BIT
;
103 writel(val
, SP5100_WDT_CONTROL(tco
->tcobase
));
108 static int tco_timer_stop(struct watchdog_device
*wdd
)
110 struct sp5100_tco
*tco
= watchdog_get_drvdata(wdd
);
113 val
= readl(SP5100_WDT_CONTROL(tco
->tcobase
));
114 val
&= ~SP5100_WDT_START_STOP_BIT
;
115 writel(val
, SP5100_WDT_CONTROL(tco
->tcobase
));
120 static int tco_timer_ping(struct watchdog_device
*wdd
)
122 struct sp5100_tco
*tco
= watchdog_get_drvdata(wdd
);
125 val
= readl(SP5100_WDT_CONTROL(tco
->tcobase
));
126 val
|= SP5100_WDT_TRIGGER_BIT
;
127 writel(val
, SP5100_WDT_CONTROL(tco
->tcobase
));
132 static int tco_timer_set_timeout(struct watchdog_device
*wdd
,
135 struct sp5100_tco
*tco
= watchdog_get_drvdata(wdd
);
137 /* Write new heartbeat to watchdog */
138 writel(t
, SP5100_WDT_COUNT(tco
->tcobase
));
145 static u8
sp5100_tco_read_pm_reg8(u8 index
)
147 outb(index
, SP5100_IO_PM_INDEX_REG
);
148 return inb(SP5100_IO_PM_DATA_REG
);
151 static void sp5100_tco_update_pm_reg8(u8 index
, u8 reset
, u8 set
)
155 outb(index
, SP5100_IO_PM_INDEX_REG
);
156 val
= inb(SP5100_IO_PM_DATA_REG
);
159 outb(val
, SP5100_IO_PM_DATA_REG
);
162 static void tco_timer_enable(struct sp5100_tco
*tco
)
166 switch (tco
->tco_reg_layout
) {
168 /* For SB800 or later */
169 /* Set the Watchdog timer resolution to 1 sec */
170 sp5100_tco_update_pm_reg8(SB800_PM_WATCHDOG_CONFIG
,
171 0xff, SB800_PM_WATCHDOG_SECOND_RES
);
173 /* Enable watchdog decode bit and watchdog timer */
174 sp5100_tco_update_pm_reg8(SB800_PM_WATCHDOG_CONTROL
,
175 ~SB800_PM_WATCHDOG_DISABLE
,
176 SB800_PCI_WATCHDOG_DECODE_EN
);
179 /* For SP5100 or SB7x0 */
180 /* Enable watchdog decode bit */
181 pci_read_config_dword(sp5100_tco_pci
,
182 SP5100_PCI_WATCHDOG_MISC_REG
,
185 val
|= SP5100_PCI_WATCHDOG_DECODE_EN
;
187 pci_write_config_dword(sp5100_tco_pci
,
188 SP5100_PCI_WATCHDOG_MISC_REG
,
191 /* Enable Watchdog timer and set the resolution to 1 sec */
192 sp5100_tco_update_pm_reg8(SP5100_PM_WATCHDOG_CONTROL
,
193 ~SP5100_PM_WATCHDOG_DISABLE
,
194 SP5100_PM_WATCHDOG_SECOND_RES
);
197 /* Set the Watchdog timer resolution to 1 sec and enable */
198 sp5100_tco_update_pm_reg8(EFCH_PM_DECODEEN3
,
199 ~EFCH_PM_WATCHDOG_DISABLE
,
200 EFCH_PM_DECODEEN_SECOND_RES
);
205 static u32
sp5100_tco_read_pm_reg32(u8 index
)
210 for (i
= 3; i
>= 0; i
--)
211 val
= (val
<< 8) + sp5100_tco_read_pm_reg8(index
+ i
);
216 static int sp5100_tco_setupdevice(struct device
*dev
,
217 struct watchdog_device
*wdd
)
219 struct sp5100_tco
*tco
= watchdog_get_drvdata(wdd
);
220 const char *dev_name
;
221 u32 mmio_addr
= 0, val
;
224 /* Request the IO ports used by this driver */
225 if (!request_muxed_region(SP5100_IO_PM_INDEX_REG
,
226 SP5100_PM_IOPORTS_SIZE
, "sp5100_tco")) {
227 dev_err(dev
, "I/O address 0x%04x already in use\n",
228 SP5100_IO_PM_INDEX_REG
);
233 * Determine type of southbridge chipset.
235 switch (tco
->tco_reg_layout
) {
237 dev_name
= SP5100_DEVNAME
;
238 mmio_addr
= sp5100_tco_read_pm_reg32(SP5100_PM_WATCHDOG_BASE
) &
242 dev_name
= SB800_DEVNAME
;
243 mmio_addr
= sp5100_tco_read_pm_reg32(SB800_PM_WATCHDOG_BASE
) &
247 dev_name
= SB800_DEVNAME
;
248 val
= sp5100_tco_read_pm_reg8(EFCH_PM_DECODEEN
);
249 if (val
& EFCH_PM_DECODEEN_WDT_TMREN
)
250 mmio_addr
= EFCH_PM_WDT_ADDR
;
256 /* Check MMIO address conflict */
258 !devm_request_mem_region(dev
, mmio_addr
, SP5100_WDT_MEM_MAP_SIZE
,
261 dev_dbg(dev
, "MMIO address 0x%08x already in use\n",
263 switch (tco
->tco_reg_layout
) {
266 * Secondly, Find the watchdog timer MMIO address
267 * from SBResource_MMIO register.
269 /* Read SBResource_MMIO from PCI config(PCI_Reg: 9Ch) */
270 pci_read_config_dword(sp5100_tco_pci
,
271 SP5100_SB_RESOURCE_MMIO_BASE
,
273 if ((mmio_addr
& (SB800_ACPI_MMIO_DECODE_EN
|
274 SB800_ACPI_MMIO_SEL
)) !=
275 SB800_ACPI_MMIO_DECODE_EN
) {
280 mmio_addr
+= SB800_PM_WDT_MMIO_OFFSET
;
283 /* Read SBResource_MMIO from AcpiMmioEn(PM_Reg: 24h) */
285 sp5100_tco_read_pm_reg32(SB800_PM_ACPI_MMIO_EN
);
286 if ((mmio_addr
& (SB800_ACPI_MMIO_DECODE_EN
|
287 SB800_ACPI_MMIO_SEL
)) !=
288 SB800_ACPI_MMIO_DECODE_EN
) {
293 mmio_addr
+= SB800_PM_WDT_MMIO_OFFSET
;
296 val
= sp5100_tco_read_pm_reg8(EFCH_PM_ISACONTROL
);
297 if (!(val
& EFCH_PM_ISACONTROL_MMIOEN
)) {
301 mmio_addr
= EFCH_PM_ACPI_MMIO_ADDR
+
302 EFCH_PM_ACPI_MMIO_WDT_OFFSET
;
305 dev_dbg(dev
, "Got 0x%08x from SBResource_MMIO register\n",
307 if (!devm_request_mem_region(dev
, mmio_addr
,
308 SP5100_WDT_MEM_MAP_SIZE
,
310 dev_dbg(dev
, "MMIO address 0x%08x already in use\n",
317 tco
->tcobase
= devm_ioremap(dev
, mmio_addr
, SP5100_WDT_MEM_MAP_SIZE
);
319 dev_err(dev
, "failed to get tcobase address\n");
324 dev_info(dev
, "Using 0x%08x for watchdog MMIO address\n", mmio_addr
);
326 /* Setup the watchdog timer */
327 tco_timer_enable(tco
);
329 val
= readl(SP5100_WDT_CONTROL(tco
->tcobase
));
330 if (val
& SP5100_WDT_DISABLED
) {
331 dev_err(dev
, "Watchdog hardware is disabled\n");
337 * Save WatchDogFired status, because WatchDogFired flag is
340 if (val
& SP5100_WDT_FIRED
)
341 wdd
->bootstatus
= WDIOF_CARDRESET
;
342 /* Set watchdog action to reset the system */
343 val
&= ~SP5100_WDT_ACTION_RESET
;
344 writel(val
, SP5100_WDT_CONTROL(tco
->tcobase
));
346 /* Set a reasonable heartbeat before we stop the timer */
347 tco_timer_set_timeout(wdd
, wdd
->timeout
);
350 * Stop the TCO before we change anything so we don't race with
355 release_region(SP5100_IO_PM_INDEX_REG
, SP5100_PM_IOPORTS_SIZE
);
360 release_region(SP5100_IO_PM_INDEX_REG
, SP5100_PM_IOPORTS_SIZE
);
364 static struct watchdog_info sp5100_tco_wdt_info
= {
365 .identity
= "SP5100 TCO timer",
366 .options
= WDIOF_SETTIMEOUT
| WDIOF_KEEPALIVEPING
| WDIOF_MAGICCLOSE
,
369 static const struct watchdog_ops sp5100_tco_wdt_ops
= {
370 .owner
= THIS_MODULE
,
371 .start
= tco_timer_start
,
372 .stop
= tco_timer_stop
,
373 .ping
= tco_timer_ping
,
374 .set_timeout
= tco_timer_set_timeout
,
377 static int sp5100_tco_probe(struct platform_device
*pdev
)
379 struct device
*dev
= &pdev
->dev
;
380 struct watchdog_device
*wdd
;
381 struct sp5100_tco
*tco
;
384 tco
= devm_kzalloc(dev
, sizeof(*tco
), GFP_KERNEL
);
388 tco
->tco_reg_layout
= tco_reg_layout(sp5100_tco_pci
);
392 wdd
->info
= &sp5100_tco_wdt_info
;
393 wdd
->ops
= &sp5100_tco_wdt_ops
;
394 wdd
->timeout
= WATCHDOG_HEARTBEAT
;
395 wdd
->min_timeout
= 1;
396 wdd
->max_timeout
= 0xffff;
398 if (watchdog_init_timeout(wdd
, heartbeat
, NULL
))
399 dev_info(dev
, "timeout value invalid, using %d\n",
401 watchdog_set_nowayout(wdd
, nowayout
);
402 watchdog_stop_on_reboot(wdd
);
403 watchdog_stop_on_unregister(wdd
);
404 watchdog_set_drvdata(wdd
, tco
);
406 ret
= sp5100_tco_setupdevice(dev
, wdd
);
410 ret
= devm_watchdog_register_device(dev
, wdd
);
412 dev_err(dev
, "cannot register watchdog device (err=%d)\n", ret
);
416 /* Show module parameters */
417 dev_info(dev
, "initialized. heartbeat=%d sec (nowayout=%d)\n",
418 wdd
->timeout
, nowayout
);
423 static struct platform_driver sp5100_tco_driver
= {
424 .probe
= sp5100_tco_probe
,
426 .name
= TCO_DRIVER_NAME
,
431 * Data for PCI driver interface
433 * This data only exists for exporting the supported
434 * PCI ids via MODULE_DEVICE_TABLE. We do not actually
435 * register a pci_driver, because someone else might
436 * want to register another driver on the same PCI id.
438 static const struct pci_device_id sp5100_tco_pci_tbl
[] = {
439 { PCI_VENDOR_ID_ATI
, PCI_DEVICE_ID_ATI_SBX00_SMBUS
, PCI_ANY_ID
,
441 { PCI_VENDOR_ID_AMD
, PCI_DEVICE_ID_AMD_HUDSON2_SMBUS
, PCI_ANY_ID
,
443 { PCI_VENDOR_ID_AMD
, PCI_DEVICE_ID_AMD_KERNCZ_SMBUS
, PCI_ANY_ID
,
445 { 0, }, /* End of list */
447 MODULE_DEVICE_TABLE(pci
, sp5100_tco_pci_tbl
);
449 static int __init
sp5100_tco_init(void)
451 struct pci_dev
*dev
= NULL
;
454 /* Match the PCI device */
455 for_each_pci_dev(dev
) {
456 if (pci_match_id(sp5100_tco_pci_tbl
, dev
) != NULL
) {
457 sp5100_tco_pci
= dev
;
465 pr_info("SP5100/SB800 TCO WatchDog Timer Driver\n");
467 err
= platform_driver_register(&sp5100_tco_driver
);
471 sp5100_tco_platform_device
=
472 platform_device_register_simple(TCO_DRIVER_NAME
, -1, NULL
, 0);
473 if (IS_ERR(sp5100_tco_platform_device
)) {
474 err
= PTR_ERR(sp5100_tco_platform_device
);
475 goto unreg_platform_driver
;
480 unreg_platform_driver
:
481 platform_driver_unregister(&sp5100_tco_driver
);
485 static void __exit
sp5100_tco_exit(void)
487 platform_device_unregister(sp5100_tco_platform_device
);
488 platform_driver_unregister(&sp5100_tco_driver
);
491 module_init(sp5100_tco_init
);
492 module_exit(sp5100_tco_exit
);
494 MODULE_AUTHOR("Priyanka Gupta");
495 MODULE_DESCRIPTION("TCO timer driver for SP5100/SB800 chipset");
496 MODULE_LICENSE("GPL");