Fix mmconf (PCIe memory mapped config space access) support in v2. It was
[coreboot.git] / src / devices / pci_ops.c
1 /*
2  * This file is part of the coreboot project.
3  *
4  * Copyright (C) 2004 Linux Networx
5  * (Written by Eric Biederman <ebiederman@lnxi.com> for Linux Networx)
6  * Copyright (C) 2009 coresystems GmbH
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; version 2 of the License.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program; if not, write to the Free Software
19  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20  */
21
22 #include <console/console.h>
23 #include <arch/pciconf.h>
24 #include <device/pci.h>
25 #include <device/pci_ids.h>
26 #include <device/pci_ops.h>
27
28 static struct bus *get_pbus(device_t dev)
29 {
30         struct bus *pbus = dev->bus;
31         while(pbus && pbus->dev && !ops_pci_bus(pbus)) {
32                 if (pbus == pbus->dev->bus) {
33                         printk_alert("%s in endless loop looking for a parent "
34                                 "bus with ops_pci_bus for %s, breaking out\n",
35                                  __func__, dev_path(dev));
36                         break;
37                 }
38                 pbus = pbus->dev->bus;
39         }
40         if (!pbus || !pbus->dev || !pbus->dev->ops || !pbus->dev->ops->ops_pci_bus) {
41                 printk_alert("%s Cannot find pci bus operations", dev_path(dev));
42                 die("");
43                 for(;;);
44         }
45         return pbus;
46 }
47
48 uint8_t pci_read_config8(device_t dev, unsigned where)
49 {
50         struct bus *pbus = get_pbus(dev);
51         return ops_pci_bus(pbus)->read8(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
52 }
53
54 uint16_t pci_read_config16(device_t dev, unsigned where)
55 {
56         struct bus *pbus = get_pbus(dev);
57         return ops_pci_bus(pbus)->read16(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
58 }
59
60 uint32_t pci_read_config32(device_t dev, unsigned where)
61 {
62         struct bus *pbus = get_pbus(dev);
63         return ops_pci_bus(pbus)->read32(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
64 }
65
66 void pci_write_config8(device_t dev, unsigned where, uint8_t val)
67 {
68         struct bus *pbus = get_pbus(dev);
69         ops_pci_bus(pbus)->write8(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
70 }
71
72 void pci_write_config16(device_t dev, unsigned where, uint16_t val)
73 {
74         struct bus *pbus = get_pbus(dev);
75         ops_pci_bus(pbus)->write16(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
76 }
77
78 void pci_write_config32(device_t dev, unsigned where, uint32_t val)
79 {
80         struct bus *pbus = get_pbus(dev);
81         ops_pci_bus(pbus)->write32(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
82 }
83
84 #if MMCONF_SUPPORT
85 uint8_t pci_mmio_read_config8(device_t dev, unsigned where)
86 {
87         struct bus *pbus = get_pbus(dev);
88         return pci_ops_mmconf.read8(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
89 }
90
91 uint16_t pci_mmio_read_config16(device_t dev, unsigned where)
92 {
93         struct bus *pbus = get_pbus(dev);
94         return pci_ops_mmconf.read16(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
95 }
96
97 uint32_t pci_mmio_read_config32(device_t dev, unsigned where)
98 {
99         struct bus *pbus = get_pbus(dev);
100         return pci_ops_mmconf.read32(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
101 }
102
103 void pci_mmio_write_config8(device_t dev, unsigned where, uint8_t val)
104 {
105         struct bus *pbus = get_pbus(dev);
106         pci_ops_mmconf.write8(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
107 }
108
109 void pci_mmio_write_config16(device_t dev, unsigned where, uint16_t val)
110 {
111         struct bus *pbus = get_pbus(dev);
112         pci_ops_mmconf.write16(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
113 }
114
115 void pci_mmio_write_config32(device_t dev, unsigned where, uint32_t val)
116 {
117         struct bus *pbus = get_pbus(dev);
118         pci_ops_mmconf.write32(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
119 }
120 #endif