Yinghai Lu | afd34e6 | 2006-02-16 17:22:19 +0000 | [diff] [blame] | 1 | /* |
Uwe Hermann | c6a1062 | 2010-10-17 19:30:58 +0000 | [diff] [blame] | 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 |
Paul Menzel | a46a712 | 2013-02-23 18:37:27 +0100 | [diff] [blame] | 18 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
Yinghai Lu | afd34e6 | 2006-02-16 17:22:19 +0000 | [diff] [blame] | 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 | |
| 27 | static void pcie_init(struct device *dev) |
| 28 | { |
| 29 | |
| 30 | /* Enable pci error detecting */ |
| 31 | uint32_t dword; |
| 32 | |
| 33 | /* System error enable */ |
| 34 | dword = pci_read_config32(dev, 0x04); |
| 35 | dword |= (1<<8); /* System error enable */ |
| 36 | dword |= (1<<30); /* Clear possible errors */ |
| 37 | pci_write_config32(dev, 0x04, dword); |
| 38 | |
| 39 | } |
| 40 | |
| 41 | static struct pci_operations lops_pci = { |
| 42 | .set_subsystem = 0, |
| 43 | }; |
| 44 | |
| 45 | static struct device_operations pcie_ops = { |
| 46 | .read_resources = pci_bus_read_resources, |
| 47 | .set_resources = pci_dev_set_resources, |
| 48 | .enable_resources = pci_bus_enable_resources, |
| 49 | .init = pcie_init, |
| 50 | .scan_bus = pci_scan_bridge, |
| 51 | .reset_bus = pci_bus_reset, |
| 52 | .ops_pci = &lops_pci, |
| 53 | |
| 54 | }; |
| 55 | |
Stefan Reinauer | f1cf1f7 | 2007-10-24 09:08:58 +0000 | [diff] [blame] | 56 | static const struct pci_driver pcie_driver __pci_driver = { |
Yinghai Lu | afd34e6 | 2006-02-16 17:22:19 +0000 | [diff] [blame] | 57 | .ops = &pcie_ops, |
| 58 | .vendor = PCI_VENDOR_ID_SERVERWORKS, |
| 59 | .device = PCI_DEVICE_ID_SERVERWORKS_BCM5780_PCIE, |
| 60 | }; |