Round 2 of i82801AX fixes to get it into a usable shape.
[coreboot.git] / src / southbridge / intel / i82801ax / i82801ax_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 "i82801ax.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                 = i82801ax_enable,
35 };
36
37 /* 82801AA (ICH) */
38 static const struct pci_driver i82801aa_ac97_audio __pci_driver = {
39         .ops    = &ac97_ops,
40         .vendor = PCI_VENDOR_ID_INTEL,
41         .device = PCI_DEVICE_ID_INTEL_82801AA_AC97_AUDIO,
42 };
43
44 static const struct pci_driver i82801aa_ac97_modem __pci_driver = {
45         .ops    = &ac97_ops,
46         .vendor = PCI_VENDOR_ID_INTEL,
47         .device = PCI_DEVICE_ID_INTEL_82801AA_AC97_MODEM,
48 };
49
50 /* 82801AB (ICH0) */
51 static const struct pci_driver i82801ab_ac97_audio __pci_driver = {
52         .ops    = &ac97_ops,
53         .vendor = PCI_VENDOR_ID_INTEL,
54         .device = PCI_DEVICE_ID_INTEL_82801AB_AC97_AUDIO,
55 };
56
57 static const struct pci_driver i82801ab_ac97_modem __pci_driver = {
58         .ops    = &ac97_ops,
59         .vendor = PCI_VENDOR_ID_INTEL,
60         .device = PCI_DEVICE_ID_INTEL_82801AB_AC97_MODEM,
61 };