Add more missing GPL-headers, fix inconsistencies in others.
[coreboot.git] / src / southbridge / broadcom / bcm5785 / bcm5785_ide.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2005 AMD
5  * Written by Yinghai Lu <yinghai.lu@amd.com> for AMD.
6  *
7  * This program is free software; you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation; version 2 of the License.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  */
20
21 #include <console/console.h>
22 #include <device/device.h>
23 #include <device/pci.h>
24 #include <device/pci_ids.h>
25 #include <device/pci_ops.h>
26 #include "bcm5785.h"
27
28 static void bcm5785_ide_read_resources(device_t dev)
29 {
30         /* Get the normal pci resources of this device */
31         pci_dev_read_resources(dev);
32
33         /* BAR */
34         pci_get_resource(dev, 0x64);
35
36         compact_resources(dev);
37 }
38
39 static void ide_init(struct device *dev)
40 {
41 }
42
43 static void lpci_set_subsystem(device_t dev, unsigned vendor, unsigned device)
44 {
45         pci_write_config32(dev, 0x40,
46                 ((device & 0xffff) << 16) | (vendor & 0xffff));
47 }
48
49 static struct pci_operations lops_pci = {
50         .set_subsystem = lpci_set_subsystem,
51 };
52
53 static struct device_operations ide_ops  = {
54         .read_resources   = bcm5785_ide_read_resources,
55         .set_resources    = pci_dev_set_resources,
56         .enable_resources = pci_dev_enable_resources,
57         .init             = ide_init,
58         .scan_bus         = 0,
59 //      .enable           = bcm5785_enable,
60         .ops_pci          = &lops_pci,
61 };
62
63 static const struct pci_driver ide_driver __pci_driver = {
64         .ops    = &ide_ops,
65         .vendor = PCI_VENDOR_ID_SERVERWORKS,
66         .device = PCI_DEVICE_ID_SERVERWORKS_BCM5785_IDE,
67 };