Add support for Intel Panther Point PCH
[coreboot.git] / src / southbridge / intel / bd82x6x / watchdog.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2008-2009 coresystems GmbH
5  * Copyright (C) 2011 Google Inc.
6  *
7  * This program is free software; you can redistribute it and/or
8  * modify it under the terms of the GNU General Public License as
9  * published by the Free Software Foundation; version 2 of
10  * the License.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20  */
21
22 #include <console/console.h>
23 #include <arch/io.h>
24 #include <device/device.h>
25 #include <device/pci.h>
26 #include <watchdog.h>
27
28   //
29   //  Disable PCH Watchdog timer at SB_RCBA+0x3410
30   //
31   //  Mmio32((MmPci32(0, 0, 0x1F, 0, 0xF0) & ~BIT0), 0x3410) |= 0x20;
32   //
33 void watchdog_off(void)
34 {
35         device_t dev;
36         unsigned long value, base;
37
38         /* Turn off the ICH7 watchdog. */
39         dev = dev_find_slot(0, PCI_DEVFN(0x1f, 0));
40
41         /* Enable I/O space. */
42         value = pci_read_config16(dev, 0x04);
43         value |= (1 << 10);
44         pci_write_config16(dev, 0x04, value);
45
46         /* Get TCO base. */
47         base = (pci_read_config32(dev, 0x40) & 0x0fffe) + 0x60;
48
49         /* Disable the watchdog timer. */
50         value = inw(base + 0x08);
51         value |= 1 << 11;
52         outw(value, base + 0x08);
53
54         /* Clear TCO timeout status. */
55         outw(0x0008, base + 0x04);
56         outw(0x0002, base + 0x06);
57
58         printk(BIOS_DEBUG, "PCH watchdog disabled\n");
59 }