blob: acafb731c7b1a50fd02f5605376846e433e47ecc [file] [log] [blame]
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +03001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2010 Advanced Micro Devices, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030014 */
15
16#include <console/console.h>
17#include <device/device.h>
18#include <device/pci.h>
19#include <device/pci_ids.h>
20#include <device/pci_ops.h>
21#include "hudson.h"
22
23static void ide_init(struct device *dev)
24{
25}
26
27static struct pci_operations lops_pci = {
28 .set_subsystem = pci_dev_set_subsystem,
29};
30
31static struct device_operations ide_ops = {
32 .read_resources = pci_dev_read_resources,
33 .set_resources = pci_dev_set_resources,
34 .enable_resources = pci_dev_enable_resources,
35 .init = ide_init,
36 .scan_bus = 0,
37 .ops_pci = &lops_pci,
38};
39
40static const struct pci_driver ide_driver __pci_driver = {
41 .ops = &ide_ops,
42 .vendor = PCI_VENDOR_ID_AMD,
Kyösti Mälkki9d9a5522016-11-19 22:14:59 +020043 .device = PCI_DEVICE_ID_AMD_SB900_IDE,
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030044};