Build fixes (trivial).
[coreboot.git] / src / southbridge / intel / i82801bx / i82801bx_pci.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2005 Tyan Computer
5  * (Written by Yinghai Lu <yinghailu@gmail.com> for Tyan Computer)
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; either version 2 of the License, or
10  * (at your option) any later version.
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 <device/device.h>
24 #include <device/pci.h>
25 #include <device/pci_ids.h>
26 #include "i82801bx.h"
27
28 static void pci_init(struct device *dev)
29 {
30         u16 reg16;
31
32         /* Clear system errors */
33         reg16 = pci_read_config16(dev, PCI_STATUS);
34         reg16 |= 0xf900;        /* Clear possible errors */
35         pci_write_config16(dev, PCI_STATUS, reg16);
36
37         reg16 = pci_read_config16(dev, SECSTS);
38         reg16 |= 0xf800;        /* Clear possible errors */
39         pci_write_config16(dev, SECSTS, reg16);
40 }
41
42 static struct device_operations pci_ops = {
43         .read_resources         = pci_bus_read_resources,
44         .set_resources          = pci_dev_set_resources,
45         .enable_resources       = pci_bus_enable_resources,
46         .init                   = pci_init,
47         .scan_bus               = pci_scan_bridge,
48 };
49
50 /* 82801BA/BAM (ICH2/ICH2-M) */
51 static const struct pci_driver i82801misc_pci __pci_driver = {
52         .ops    = &pci_ops,
53         .vendor = PCI_VENDOR_ID_INTEL,
54         .device = 0x244e,
55 };