Use common GPL-header format in CK804 files, add missing ones (trivial).
[coreboot.git] / src / southbridge / nvidia / ck804 / ck804_pcie.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2004 Tyan Computer
5  * Written by Yinghai Lu <yhlu@tyan.com> for Tyan Computer.
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 "ck804.h"
27
28 static void pcie_init(struct device *dev)
29 {
30         uint32_t dword;
31
32         /* Enable PCI error detecting. */
33         dword = pci_read_config32(dev, 0x04);
34         dword |= (1 << 8);      /* System error enable */
35         dword |= (1 << 30);     /* Clear possible errors */
36         pci_write_config32(dev, 0x04, dword);
37 }
38
39 static struct pci_operations lops_pci = {
40         .set_subsystem = 0,
41 };
42
43 static struct device_operations pcie_ops = {
44         .read_resources   = pci_bus_read_resources,
45         .set_resources    = pci_dev_set_resources,
46         .enable_resources = pci_bus_enable_resources,
47         .init             = pcie_init,
48         .scan_bus         = pci_scan_bridge,
49         // .enable        = ck804_enable,
50         .ops_pci          = &lops_pci,
51 };
52
53 static const struct pci_driver pcie_driver __pci_driver = {
54         .ops    = &pcie_ops,
55         .vendor = PCI_VENDOR_ID_NVIDIA,
56         .device = PCI_DEVICE_ID_NVIDIA_CK804_PCI_E,
57 };