aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/amd/cs5535/cs5535_ide.c
blob: b997ca2463981b90c589b623518dc3c79050bf38 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
#include <console/console.h>
#include <device/device.h>
#include <device/pci.h>
#include <device/pci_ids.h>
#include <device/pci_ops.h>
#include "cs5535.h"

static void ide_init(struct device *dev)
{
	printk(BIOS_SPEW, "cs5535_ide: %s\n", __func__);
}

static void ide_enable(struct device *dev)
{
	printk(BIOS_SPEW, "cs5535_ide: %s\n", __func__);
}

static struct device_operations ide_ops = {
	.read_resources   = pci_dev_read_resources,
	.set_resources    = pci_dev_set_resources,
	.enable_resources = pci_dev_enable_resources,
	.init             = ide_init,
	.enable           = ide_enable,
};

static const struct pci_driver ide_driver __pci_driver = {
	.ops 	= &ide_ops,
	.vendor = PCI_VENDOR_ID_NS,
	.device = PCI_DEVICE_ID_NS_CS5535_IDE,
};