blob: cd0c20d98e55479a1aa618fd002af04fb8203da0 [file] [log] [blame]
Corey Osgoode99bd102007-06-14 06:10:57 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Corey Osgoode99bd102007-06-14 06:10:57 +00003 *
4 * Copyright (C) 2006 John Dufresne <jon.dufresne@gmail.com>
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
Uwe Hermanndfb3c132007-06-19 22:47:11 +000020
Corey Osgoode99bd102007-06-14 06:10:57 +000021#include <console/console.h>
22#include <arch/io.h>
23#include <device/device.h>
24#include <device/pci.h>
Myles Watsone32d3992010-07-07 15:09:09 +000025#include <watchdog.h>
Corey Osgoode99bd102007-06-14 06:10:57 +000026
Uwe Hermanndfb3c132007-06-19 22:47:11 +000027/* TODO: I'm fairly sure the same functionality is provided elsewhere. */
Corey Osgoode99bd102007-06-14 06:10:57 +000028
29void watchdog_off(void)
30{
Uwe Hermanndfb3c132007-06-19 22:47:11 +000031 device_t dev;
32 unsigned long value, base;
Corey Osgoode99bd102007-06-14 06:10:57 +000033
Uwe Hermanndfb3c132007-06-19 22:47:11 +000034 /* Turn off the ICH5 watchdog. */
35 dev = dev_find_slot(0, PCI_DEVFN(0x1f, 0));
36
37 /* Enable I/O space. */
38 value = pci_read_config16(dev, 0x04);
39 value |= (1 << 10);
40 pci_write_config16(dev, 0x04, value);
41
42 /* Get TCO base. */
43 base = (pci_read_config32(dev, 0x40) & 0x0fffe) + 0x60;
44
45 /* Disable the watchdog timer. */
46 value = inw(base + 0x08);
47 value |= 1 << 11;
48 outw(value, base + 0x08);
49
50 /* Clear TCO timeout status. */
51 outw(0x0008, base + 0x04);
52 outw(0x0002, base + 0x06);
53
Stefan Reinauer64ed2b72010-03-31 14:47:43 +000054 printk(BIOS_DEBUG, "ICH Watchdog disabled\n");
Corey Osgoode99bd102007-06-14 06:10:57 +000055}