1ed9281a92299872017dda884168705ea7f2dff2
[coreboot.git] / src / southbridge / via / k8t890 / k8t890_host.c
1 /*
2  * This file is part of the LinuxBIOS 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_ops.h>
23 #include <device/pci_ids.h>
24 #include <console/console.h>
25 #include "k8t890.h"
26
27 static void host_enable(struct device *dev)
28 {
29         /* Multiple function control */
30         pci_write_config8(dev, K8T890_MULTIPLE_FN_EN, 0x01);
31 }
32
33 static const struct device_operations host_ops = {
34         .read_resources         = pci_dev_read_resources,
35         .set_resources          = pci_dev_set_resources,
36         .enable_resources       = pci_dev_enable_resources,
37         .enable                 = host_enable,
38         .ops_pci                = 0,
39 };
40
41 static const struct pci_driver northbridge_driver __pci_driver = {
42         .ops    = &host_ops,
43         .vendor = PCI_VENDOR_ID_VIA,
44         .device = PCI_DEVICE_ID_VIA_K8T890CE_0,
45 };