aboutsummaryrefslogtreecommitdiff
path: root/src/southbridge/amd/cs5536/cs5536_ide.c
blob: 284b5037d880a7790fce8c62050eebf01b56bacd (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 "cs5536.h"

static void ide_init(struct device *dev)
{
	printk_spew("cs5536_ide: %s\n", __FUNCTION__);
}

static void ide_enable(struct device *dev)
{
	printk_spew("cs5536_ide: %s\n", __FUNCTION__);
}

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 struct pci_driver ide_driver __pci_driver = {
	.ops 	= &ide_ops,
	.vendor = PCI_VENDOR_ID_AMD,
	.device = PCI_DEVICE_ID_AMD_CS5536_IDE,
};