1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * sp5100_tco : TCO timer driver for sp5100 chipsets
5 * (c) Copyright 2009 Google Inc., All Rights Reserved.
10 * http://www.kernelconcepts.de
12 * See AMD Publication 43009 "AMD SB700/710/750 Register Reference Guide",
13 * AMD Publication 45482 "AMD SB800-Series Southbridges Register
15 * AMD Publication 48751 "BIOS and Kernel Developer’s Guide (BKDG)
16 * for AMD Family 16h Models 00h-0Fh Processors"
17 * AMD Publication 51192 "AMD Bolton FCH Register Reference Guide"
18 * AMD Publication 52740 "BIOS and Kernel Developer’s Guide (BKDG)
19 * for AMD Family 16h Models 30h-3Fh Processors"
23 * Includes, defines, variables, module parameters, ...
26 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
28 #include <linux/init.h>
30 #include <linux/ioport.h>
31 #include <linux/module.h>
32 #include <linux/moduleparam.h>
33 #include <linux/pci.h>
34 #include <linux/platform_device.h>
35 #include <linux/types.h>
36 #include <linux/watchdog.h>
38 #include "sp5100_tco.h"
40 #define TCO_DRIVER_NAME "sp5100-tco"
42 /* internal variables */
49 struct watchdog_device wdd;
50 void __iomem *tcobase;
51 enum tco_reg_layout tco_reg_layout;
54 /* the watchdog platform device */
55 static struct platform_device *sp5100_tco_platform_device;
56 /* the associated PCI device */
57 static struct pci_dev *sp5100_tco_pci;
59 /* module parameters */
61 #define WATCHDOG_HEARTBEAT 60 /* 60 sec default heartbeat. */
62 static int heartbeat = WATCHDOG_HEARTBEAT; /* in seconds */
63 module_param(heartbeat, int, 0);
64 MODULE_PARM_DESC(heartbeat, "Watchdog heartbeat in seconds. (default="
65 __MODULE_STRING(WATCHDOG_HEARTBEAT) ")");
67 static bool nowayout = WATCHDOG_NOWAYOUT;
68 module_param(nowayout, bool, 0);
69 MODULE_PARM_DESC(nowayout, "Watchdog cannot be stopped once started."
70 " (default=" __MODULE_STRING(WATCHDOG_NOWAYOUT) ")");
73 * Some TCO specific functions
76 static enum tco_reg_layout tco_reg_layout(struct pci_dev *dev)
78 if (dev->vendor == PCI_VENDOR_ID_ATI &&
79 dev->device == PCI_DEVICE_ID_ATI_SBX00_SMBUS &&
80 dev->revision < 0x40) {
82 } else if (dev->vendor == PCI_VENDOR_ID_AMD &&
83 ((dev->device == PCI_DEVICE_ID_AMD_HUDSON2_SMBUS &&
84 dev->revision >= 0x41) ||
85 (dev->device == PCI_DEVICE_ID_AMD_KERNCZ_SMBUS &&
86 dev->revision >= 0x49))) {
92 static int tco_timer_start(struct watchdog_device *wdd)
94 struct sp5100_tco *tco = watchdog_get_drvdata(wdd);
97 val = readl(SP5100_WDT_CONTROL(tco->tcobase));
98 val |= SP5100_WDT_START_STOP_BIT;
99 writel(val, SP5100_WDT_CONTROL(tco->tcobase));
104 static int tco_timer_stop(struct watchdog_device *wdd)
106 struct sp5100_tco *tco = watchdog_get_drvdata(wdd);
109 val = readl(SP5100_WDT_CONTROL(tco->tcobase));
110 val &= ~SP5100_WDT_START_STOP_BIT;
111 writel(val, SP5100_WDT_CONTROL(tco->tcobase));
116 static int tco_timer_ping(struct watchdog_device *wdd)
118 struct sp5100_tco *tco = watchdog_get_drvdata(wdd);
121 val = readl(SP5100_WDT_CONTROL(tco->tcobase));
122 val |= SP5100_WDT_TRIGGER_BIT;
123 writel(val, SP5100_WDT_CONTROL(tco->tcobase));
128 static int tco_timer_set_timeout(struct watchdog_device *wdd,
131 struct sp5100_tco *tco = watchdog_get_drvdata(wdd);
133 /* Write new heartbeat to watchdog */
134 writel(t, SP5100_WDT_COUNT(tco->tcobase));
141 static u8 sp5100_tco_read_pm_reg8(u8 index)
143 outb(index, SP5100_IO_PM_INDEX_REG);
144 return inb(SP5100_IO_PM_DATA_REG);
147 static void sp5100_tco_update_pm_reg8(u8 index, u8 reset, u8 set)
151 outb(index, SP5100_IO_PM_INDEX_REG);
152 val = inb(SP5100_IO_PM_DATA_REG);
155 outb(val, SP5100_IO_PM_DATA_REG);
158 static void tco_timer_enable(struct sp5100_tco *tco)
162 switch (tco->tco_reg_layout) {
164 /* For SB800 or later */
165 /* Set the Watchdog timer resolution to 1 sec */
166 sp5100_tco_update_pm_reg8(SB800_PM_WATCHDOG_CONFIG,
167 0xff, SB800_PM_WATCHDOG_SECOND_RES);
169 /* Enable watchdog decode bit and watchdog timer */
170 sp5100_tco_update_pm_reg8(SB800_PM_WATCHDOG_CONTROL,
171 ~SB800_PM_WATCHDOG_DISABLE,
172 SB800_PCI_WATCHDOG_DECODE_EN);
175 /* For SP5100 or SB7x0 */
176 /* Enable watchdog decode bit */
177 pci_read_config_dword(sp5100_tco_pci,
178 SP5100_PCI_WATCHDOG_MISC_REG,
181 val |= SP5100_PCI_WATCHDOG_DECODE_EN;
183 pci_write_config_dword(sp5100_tco_pci,
184 SP5100_PCI_WATCHDOG_MISC_REG,
187 /* Enable Watchdog timer and set the resolution to 1 sec */
188 sp5100_tco_update_pm_reg8(SP5100_PM_WATCHDOG_CONTROL,
189 ~SP5100_PM_WATCHDOG_DISABLE,
190 SP5100_PM_WATCHDOG_SECOND_RES);
193 /* Set the Watchdog timer resolution to 1 sec and enable */
194 sp5100_tco_update_pm_reg8(EFCH_PM_DECODEEN3,
195 ~EFCH_PM_WATCHDOG_DISABLE,
196 EFCH_PM_DECODEEN_SECOND_RES);
201 static u32 sp5100_tco_read_pm_reg32(u8 index)
206 for (i = 3; i >= 0; i--)
207 val = (val << 8) + sp5100_tco_read_pm_reg8(index + i);
212 static int sp5100_tco_setupdevice(struct device *dev,
213 struct watchdog_device *wdd)
215 struct sp5100_tco *tco = watchdog_get_drvdata(wdd);
216 const char *dev_name;
217 u32 mmio_addr = 0, val;
220 /* Request the IO ports used by this driver */
221 if (!request_muxed_region(SP5100_IO_PM_INDEX_REG,
222 SP5100_PM_IOPORTS_SIZE, "sp5100_tco")) {
223 dev_err(dev, "I/O address 0x%04x already in use\n",
224 SP5100_IO_PM_INDEX_REG);
229 * Determine type of southbridge chipset.
231 switch (tco->tco_reg_layout) {
233 dev_name = SP5100_DEVNAME;
234 mmio_addr = sp5100_tco_read_pm_reg32(SP5100_PM_WATCHDOG_BASE) &
238 dev_name = SB800_DEVNAME;
239 mmio_addr = sp5100_tco_read_pm_reg32(SB800_PM_WATCHDOG_BASE) &
243 dev_name = SB800_DEVNAME;
244 val = sp5100_tco_read_pm_reg8(EFCH_PM_DECODEEN);
245 if (val & EFCH_PM_DECODEEN_WDT_TMREN)
246 mmio_addr = EFCH_PM_WDT_ADDR;
252 /* Check MMIO address conflict */
254 !devm_request_mem_region(dev, mmio_addr, SP5100_WDT_MEM_MAP_SIZE,
257 dev_dbg(dev, "MMIO address 0x%08x already in use\n",
259 switch (tco->tco_reg_layout) {
262 * Secondly, Find the watchdog timer MMIO address
263 * from SBResource_MMIO register.
265 /* Read SBResource_MMIO from PCI config(PCI_Reg: 9Ch) */
266 pci_read_config_dword(sp5100_tco_pci,
267 SP5100_SB_RESOURCE_MMIO_BASE,
269 if ((mmio_addr & (SB800_ACPI_MMIO_DECODE_EN |
270 SB800_ACPI_MMIO_SEL)) !=
271 SB800_ACPI_MMIO_DECODE_EN) {
276 mmio_addr += SB800_PM_WDT_MMIO_OFFSET;
279 /* Read SBResource_MMIO from AcpiMmioEn(PM_Reg: 24h) */
281 sp5100_tco_read_pm_reg32(SB800_PM_ACPI_MMIO_EN);
282 if ((mmio_addr & (SB800_ACPI_MMIO_DECODE_EN |
283 SB800_ACPI_MMIO_SEL)) !=
284 SB800_ACPI_MMIO_DECODE_EN) {
289 mmio_addr += SB800_PM_WDT_MMIO_OFFSET;
292 val = sp5100_tco_read_pm_reg8(EFCH_PM_ISACONTROL);
293 if (!(val & EFCH_PM_ISACONTROL_MMIOEN)) {
297 mmio_addr = EFCH_PM_ACPI_MMIO_ADDR +
298 EFCH_PM_ACPI_MMIO_WDT_OFFSET;
301 dev_dbg(dev, "Got 0x%08x from SBResource_MMIO register\n",
303 if (!devm_request_mem_region(dev, mmio_addr,
304 SP5100_WDT_MEM_MAP_SIZE,
306 dev_dbg(dev, "MMIO address 0x%08x already in use\n",
313 tco->tcobase = devm_ioremap(dev, mmio_addr, SP5100_WDT_MEM_MAP_SIZE);
315 dev_err(dev, "failed to get tcobase address\n");
320 dev_info(dev, "Using 0x%08x for watchdog MMIO address\n", mmio_addr);
322 /* Setup the watchdog timer */
323 tco_timer_enable(tco);
325 val = readl(SP5100_WDT_CONTROL(tco->tcobase));
326 if (val & SP5100_WDT_DISABLED) {
327 dev_err(dev, "Watchdog hardware is disabled\n");
333 * Save WatchDogFired status, because WatchDogFired flag is
336 if (val & SP5100_WDT_FIRED)
337 wdd->bootstatus = WDIOF_CARDRESET;
338 /* Set watchdog action to reset the system */
339 val &= ~SP5100_WDT_ACTION_RESET;
340 writel(val, SP5100_WDT_CONTROL(tco->tcobase));
342 /* Set a reasonable heartbeat before we stop the timer */
343 tco_timer_set_timeout(wdd, wdd->timeout);
346 * Stop the TCO before we change anything so we don't race with
351 release_region(SP5100_IO_PM_INDEX_REG, SP5100_PM_IOPORTS_SIZE);
356 release_region(SP5100_IO_PM_INDEX_REG, SP5100_PM_IOPORTS_SIZE);
360 static struct watchdog_info sp5100_tco_wdt_info = {
361 .identity = "SP5100 TCO timer",
362 .options = WDIOF_SETTIMEOUT | WDIOF_KEEPALIVEPING | WDIOF_MAGICCLOSE,
365 static const struct watchdog_ops sp5100_tco_wdt_ops = {
366 .owner = THIS_MODULE,
367 .start = tco_timer_start,
368 .stop = tco_timer_stop,
369 .ping = tco_timer_ping,
370 .set_timeout = tco_timer_set_timeout,
373 static int sp5100_tco_probe(struct platform_device *pdev)
375 struct device *dev = &pdev->dev;
376 struct watchdog_device *wdd;
377 struct sp5100_tco *tco;
380 tco = devm_kzalloc(dev, sizeof(*tco), GFP_KERNEL);
384 tco->tco_reg_layout = tco_reg_layout(sp5100_tco_pci);
388 wdd->info = &sp5100_tco_wdt_info;
389 wdd->ops = &sp5100_tco_wdt_ops;
390 wdd->timeout = WATCHDOG_HEARTBEAT;
391 wdd->min_timeout = 1;
392 wdd->max_timeout = 0xffff;
394 watchdog_init_timeout(wdd, heartbeat, NULL);
395 watchdog_set_nowayout(wdd, nowayout);
396 watchdog_stop_on_reboot(wdd);
397 watchdog_stop_on_unregister(wdd);
398 watchdog_set_drvdata(wdd, tco);
400 ret = sp5100_tco_setupdevice(dev, wdd);
404 ret = devm_watchdog_register_device(dev, wdd);
408 /* Show module parameters */
409 dev_info(dev, "initialized. heartbeat=%d sec (nowayout=%d)\n",
410 wdd->timeout, nowayout);
415 static struct platform_driver sp5100_tco_driver = {
416 .probe = sp5100_tco_probe,
418 .name = TCO_DRIVER_NAME,
423 * Data for PCI driver interface
425 * This data only exists for exporting the supported
426 * PCI ids via MODULE_DEVICE_TABLE. We do not actually
427 * register a pci_driver, because someone else might
428 * want to register another driver on the same PCI id.
430 static const struct pci_device_id sp5100_tco_pci_tbl[] = {
431 { PCI_VENDOR_ID_ATI, PCI_DEVICE_ID_ATI_SBX00_SMBUS, PCI_ANY_ID,
433 { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_HUDSON2_SMBUS, PCI_ANY_ID,
435 { PCI_VENDOR_ID_AMD, PCI_DEVICE_ID_AMD_KERNCZ_SMBUS, PCI_ANY_ID,
437 { 0, }, /* End of list */
439 MODULE_DEVICE_TABLE(pci, sp5100_tco_pci_tbl);
441 static int __init sp5100_tco_init(void)
443 struct pci_dev *dev = NULL;
446 /* Match the PCI device */
447 for_each_pci_dev(dev) {
448 if (pci_match_id(sp5100_tco_pci_tbl, dev) != NULL) {
449 sp5100_tco_pci = dev;
457 pr_info("SP5100/SB800 TCO WatchDog Timer Driver\n");
459 err = platform_driver_register(&sp5100_tco_driver);
463 sp5100_tco_platform_device =
464 platform_device_register_simple(TCO_DRIVER_NAME, -1, NULL, 0);
465 if (IS_ERR(sp5100_tco_platform_device)) {
466 err = PTR_ERR(sp5100_tco_platform_device);
467 goto unreg_platform_driver;
472 unreg_platform_driver:
473 platform_driver_unregister(&sp5100_tco_driver);
477 static void __exit sp5100_tco_exit(void)
479 platform_device_unregister(sp5100_tco_platform_device);
480 platform_driver_unregister(&sp5100_tco_driver);
483 module_init(sp5100_tco_init);
484 module_exit(sp5100_tco_exit);
486 MODULE_AUTHOR("Priyanka Gupta");
487 MODULE_DESCRIPTION("TCO timer driver for SP5100/SB800 chipset");
488 MODULE_LICENSE("GPL");