blob: 752449865db03865fca89273d4008c82ff2825e0 [file] [log] [blame]
Ronald G. Minnich182615d2004-08-24 16:20:46 +00001/*
2 * (C) 2003 Linux Networx
3 */
4#include <console/console.h>
5#include <device/device.h>
6#include <device/pci.h>
7#include <device/pci_ids.h>
8#include <device/pci_ops.h>
Stefan Reinauer138be832010-02-27 01:50:21 +00009#include "i82801dx.h"
Ronald G. Minnich182615d2004-08-24 16:20:46 +000010
11
12static struct device_operations ac97audio_ops = {
13 .read_resources = pci_dev_read_resources,
14 .set_resources = pci_dev_set_resources,
15 .enable_resources = pci_dev_enable_resources,
Stefan Reinauer138be832010-02-27 01:50:21 +000016 .enable = i82801dx_enable,
Ronald G. Minnich182615d2004-08-24 16:20:46 +000017 .init = 0,
18 .scan_bus = 0,
19};
20
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +000021static const struct pci_driver ac97audio_driver __pci_driver = {
Ronald G. Minnich182615d2004-08-24 16:20:46 +000022 .ops = &ac97audio_ops,
23 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermanna29ec062007-11-04 03:21:37 +000024 .device = PCI_DEVICE_ID_INTEL_82801DBM_AC97_AUDIO,
Ronald G. Minnich182615d2004-08-24 16:20:46 +000025};
26
27
28static struct device_operations ac97modem_ops = {
29 .read_resources = pci_dev_read_resources,
30 .set_resources = pci_dev_set_resources,
31 .enable_resources = pci_dev_enable_resources,
Stefan Reinauer138be832010-02-27 01:50:21 +000032 .enable = i82801dx_enable,
Ronald G. Minnich182615d2004-08-24 16:20:46 +000033 .init = 0,
34 .scan_bus = 0,
35};
36
Stefan Reinauerf1cf1f72007-10-24 09:08:58 +000037static const struct pci_driver ac97modem_driver __pci_driver = {
Ronald G. Minnich182615d2004-08-24 16:20:46 +000038 .ops = &ac97modem_ops,
39 .vendor = PCI_VENDOR_ID_INTEL,
Uwe Hermanna29ec062007-11-04 03:21:37 +000040 .device = PCI_DEVICE_ID_INTEL_82801DBM_AC97_MODEM,
Ronald G. Minnich182615d2004-08-24 16:20:46 +000041};