first round name simplification. drop the <component>_ prefix.
[coreboot.git] / src / southbridge / via / k8t890 / bridge.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 as published by
8  * the Free Software Foundation; version 2 of the License.
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 #include "k8t890.h"
25
26 static void bridge_enable(struct device *dev)
27 {
28         u8 tmp;
29         print_debug("B188 device dump\n");
30         /* VIA recommends this, sorry no known info. */
31
32         writeback(dev, 0x40, 0x91);
33         writeback(dev, 0x41, 0x40);
34         writeback(dev, 0x43, 0x44);
35         writeback(dev, 0x44, 0x31);     /* K8M890 should have 0x35 datasheet
36                                          * says it is reserved
37                                          */
38         writeback(dev, 0x45, 0x3a);
39         writeback(dev, 0x46, 0x88);     /* PCI ID lo */
40         writeback(dev, 0x47, 0xb1);     /* PCI ID hi */
41
42         /* Bridge control, K8M890 bit 3 should be set to enable VGA on AGP
43          * (Forward VGA compatible memory and I/O cycles )
44          */
45
46         writeback(dev, 0x3e, 0x16);
47         dump_south(dev);
48
49         /* disable I/O and memory decode, or it freezes PCI bus during BAR sizing */
50         tmp = pci_read_config8(dev, PCI_COMMAND);
51         tmp &= ~0x3;
52         pci_write_config8(dev, PCI_COMMAND, tmp);
53
54 }
55
56 static const struct device_operations bridge_ops = {
57         .read_resources         = pci_bus_read_resources,
58         .set_resources          = pci_dev_set_resources,
59         .enable_resources       = pci_bus_enable_resources,
60         .enable                 = bridge_enable,
61         .scan_bus               = pci_scan_bridge,
62         .reset_bus              = pci_bus_reset,
63         .ops_pci                = 0,
64 };
65
66 static const struct pci_driver northbridge_driver __pci_driver = {
67         .ops    = &bridge_ops,
68         .vendor = PCI_VENDOR_ID_VIA,
69         .device = PCI_DEVICE_ID_VIA_K8T890CE_BR,
70 };