4464e16cd75b02aefb49a226f2f367abb0ca6ad8
[coreboot.git] / src / southbridge / via / k8t890 / k8t890_error.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2007 Rudolf Marek <r.marek@assembler.cz>
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 v2 as published by
8  * the Free Software Foundation.
9  *
10  * This program is distributed in the hope that it will be useful,
11  * but WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13  * GNU General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  */
19
20 #include <device/device.h>
21 #include <device/pci.h>
22 #include <device/pci_ids.h>
23 #include <console/console.h>
24
25 static void error_enable(struct device *dev)
26 {
27         /*
28          * bit0 - Enable V-link parity error reporting in 0x50 bit0 (RWC)
29          * bit6 - Parity Error/SERR# Report Through V-Link to SB
30          * bit7 - Parity Error/SERR# Report Through NMI
31          */
32         pci_write_config8(dev, 0x58, 0x81);
33
34         /* TODO: enable AGP errors reporting on K8M890 */
35 }
36
37 static const struct device_operations error_ops = {
38         .read_resources         = pci_dev_read_resources,
39         .set_resources          = pci_dev_set_resources,
40         .enable_resources       = pci_dev_enable_resources,
41         .enable                 = error_enable,
42         .ops_pci                = 0,
43 };
44
45 static const struct pci_driver northbridge_driver_t __pci_driver = {
46         .ops    = &error_ops,
47         .vendor = PCI_VENDOR_ID_VIA,
48         .device = PCI_DEVICE_ID_VIA_K8T890CE_1,
49 };
50
51 static const struct pci_driver northbridge_driver_m __pci_driver = {
52         .ops    = &error_ops,
53         .vendor = PCI_VENDOR_ID_VIA,
54         .device = PCI_DEVICE_ID_VIA_K8M890CE_1,
55 };