pci drivers should be const.
[coreboot.git] / src / northbridge / intel / i3100 / pciexp_porta.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2008 Arastra, 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 version 2 as
8  * published by the Free Software Foundation.
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.
14  *
15  * You should have received a copy of the GNU General Public License
16  * along with this program; if not, write to the Free Software
17  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  *
19  */
20
21 /* This code is based on src/northbridge/intel/e7520/pciexp_porta.c */
22
23 #include <console/console.h>
24 #include <device/device.h>
25 #include <device/pci.h>
26 #include <device/pci_ids.h>
27 #include <device/pci_ops.h>
28 #include <device/pciexp.h>
29 #include <arch/io.h>
30 #include "chip.h"
31 #include <reset.h>
32
33 typedef struct northbridge_intel_i3100_config config_t;
34
35 static void pcie_init(struct device *dev)
36 {
37         config_t *config;
38
39         /* Get the chip configuration */
40         config = dev->chip_info;
41
42         if(config->intrline) {
43                 pci_write_config32(dev, 0x3c, config->intrline);
44         }
45
46 }
47
48 static unsigned int pcie_scan_bridge(struct device *dev, unsigned int max)
49 {
50         u16 val;
51         u16 ctl;
52         int flag = 0;
53         do {
54                 val = pci_read_config16(dev, 0x76);
55                 printk_debug("pcie porta 0x76: %02x\n", val);
56                 if ((val & (1<<10)) && (!flag)) { /* training error */
57                         ctl = pci_read_config16(dev, 0x74);
58                         pci_write_config16(dev, 0x74, (ctl | (1<<5)));
59                         val = pci_read_config16(dev, 0x76);
60                         printk_debug("pcie porta reset 0x76: %02x\n", val);
61                         flag=1;
62                         hard_reset();
63                 }
64         } while (val & (3<<10));
65         return pciexp_scan_bridge(dev, max);
66 }
67
68 static struct device_operations pcie_ops  = {
69         .read_resources   = pci_bus_read_resources,
70         .set_resources    = pci_dev_set_resources,
71         .enable_resources = pci_bus_enable_resources,
72         .init             = pcie_init,
73         .scan_bus         = pcie_scan_bridge,
74         .reset_bus        = pci_bus_reset,
75         .ops_pci          = 0,
76 };
77
78 static const struct pci_driver pci_driver_0 __pci_driver = {
79         .ops    = &pcie_ops,
80         .vendor = PCI_VENDOR_ID_INTEL,
81         .device = PCI_DEVICE_ID_INTEL_3100_PCIE_PA0,
82 };
83
84 static const struct pci_driver pci_driver_1 __pci_driver = {
85         .ops    = &pcie_ops,
86         .vendor = PCI_VENDOR_ID_INTEL,
87         .device = PCI_DEVICE_ID_INTEL_3100_PCIE_PA1,
88 };