First round of ICH2/ICH2-M cleanups after split from i82801xx.
[coreboot.git] / src / southbridge / intel / i82801bx / i82801bx_ac97.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 struct device_operations ac97_ops = {
29         .read_resources         = pci_dev_read_resources,
30         .set_resources          = pci_dev_set_resources,
31         .enable_resources       = pci_dev_enable_resources,
32         .init                   = 0,
33         .scan_bus               = 0,
34         .enable                 = i82801bx_enable,
35 };
36
37 /* 82801BA/BAM (ICH2/ICH2-M) */
38 static const struct pci_driver i82801ba_ac97_audio __pci_driver = {
39         .ops    = &ac97_ops,
40         .vendor = PCI_VENDOR_ID_INTEL,
41         .device = PCI_DEVICE_ID_INTEL_82801BA_AC97_AUDIO,
42 };
43
44 static const struct pci_driver i82801ba_ac97_modem __pci_driver = {
45         .ops    = &ac97_ops,
46         .vendor = PCI_VENDOR_ID_INTEL,
47         .device = PCI_DEVICE_ID_INTEL_82801BA_AC97_MODEM,
48 };