Rewrite interrupt handling in coreboot to be more comprehensible and
[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 = NULL;
31
32         if (!dev)
33                 die("get_pbus: dev is NULL!\n");
34         else
35                 pbus = dev->bus;
36
37         while(pbus && pbus->dev && !ops_pci_bus(pbus)) {
38                 if (pbus == pbus->dev->bus) {
39                         printk_alert("%s in endless loop looking for a parent "
40                                 "bus with ops_pci_bus for %s, breaking out.\n",
41                                  __func__, dev_path(dev));
42                         break;
43                 }
44                 pbus = pbus->dev->bus;
45         }
46         if (!pbus || !pbus->dev || !pbus->dev->ops || !pbus->dev->ops->ops_pci_bus) {
47                 printk_emerg("%s: Cannot find pci bus operations.\n", dev_path(dev));
48                 die("");
49         }
50         return pbus;
51 }
52
53 uint8_t pci_read_config8(device_t dev, unsigned where)
54 {
55         struct bus *pbus = get_pbus(dev);
56         return ops_pci_bus(pbus)->read8(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
57 }
58
59 uint16_t pci_read_config16(device_t dev, unsigned where)
60 {
61         struct bus *pbus = get_pbus(dev);
62         return ops_pci_bus(pbus)->read16(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
63 }
64
65 uint32_t pci_read_config32(device_t dev, unsigned where)
66 {
67         struct bus *pbus = get_pbus(dev);
68         return ops_pci_bus(pbus)->read32(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
69 }
70
71 void pci_write_config8(device_t dev, unsigned where, uint8_t val)
72 {
73         struct bus *pbus = get_pbus(dev);
74         ops_pci_bus(pbus)->write8(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
75 }
76
77 void pci_write_config16(device_t dev, unsigned where, uint16_t val)
78 {
79         struct bus *pbus = get_pbus(dev);
80         ops_pci_bus(pbus)->write16(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
81 }
82
83 void pci_write_config32(device_t dev, unsigned where, uint32_t val)
84 {
85         struct bus *pbus = get_pbus(dev);
86         ops_pci_bus(pbus)->write32(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
87 }
88
89 #if CONFIG_MMCONF_SUPPORT
90 uint8_t pci_mmio_read_config8(device_t dev, unsigned where)
91 {
92         struct bus *pbus = get_pbus(dev);
93         return pci_ops_mmconf.read8(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
94 }
95
96 uint16_t pci_mmio_read_config16(device_t dev, unsigned where)
97 {
98         struct bus *pbus = get_pbus(dev);
99         return pci_ops_mmconf.read16(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
100 }
101
102 uint32_t pci_mmio_read_config32(device_t dev, unsigned where)
103 {
104         struct bus *pbus = get_pbus(dev);
105         return pci_ops_mmconf.read32(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
106 }
107
108 void pci_mmio_write_config8(device_t dev, unsigned where, uint8_t val)
109 {
110         struct bus *pbus = get_pbus(dev);
111         pci_ops_mmconf.write8(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
112 }
113
114 void pci_mmio_write_config16(device_t dev, unsigned where, uint16_t val)
115 {
116         struct bus *pbus = get_pbus(dev);
117         pci_ops_mmconf.write16(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
118 }
119
120 void pci_mmio_write_config32(device_t dev, unsigned where, uint32_t val)
121 {
122         struct bus *pbus = get_pbus(dev);
123         pci_ops_mmconf.write32(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
124 }
125 #endif