blob: 76e5ead8e4c3d61e65dea904a46aeebb832e41b3 [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
2/* This file is part of the coreboot project. */
zbao246e84b2012-07-13 18:47:03 +08003
zbao246e84b2012-07-13 18:47:03 +08004#include <device/device.h>
5#include <device/pci.h>
6#include <device/pci_ids.h>
zbao246e84b2012-07-13 18:47:03 +08007#include "hudson.h"
8
9static void ide_init(struct device *dev)
10{
11}
12
13static struct pci_operations lops_pci = {
14 .set_subsystem = pci_dev_set_subsystem,
15};
16
17static struct device_operations ide_ops = {
18 .read_resources = pci_dev_read_resources,
19 .set_resources = pci_dev_set_resources,
20 .enable_resources = pci_dev_enable_resources,
21 .init = ide_init,
22 .scan_bus = 0,
23 .ops_pci = &lops_pci,
24};
25
26static const struct pci_driver ide_driver __pci_driver = {
27 .ops = &ide_ops,
28 .vendor = PCI_VENDOR_ID_AMD,
Kyösti Mälkki9d9a5522016-11-19 22:14:59 +020029 .device = PCI_DEVICE_ID_AMD_SB900_IDE,
zbao246e84b2012-07-13 18:47:03 +080030};