blob: 08792f209d7ca80419cfbbbfc89e7e4564d97621 [file] [log] [blame]
Uwe Hermannb80dbf02007-04-22 19:08:13 +00001/*
Stefan Reinauer7e61e452008-01-18 10:35:56 +00002 * This file is part of the coreboot project.
Uwe Hermannb80dbf02007-04-22 19:08:13 +00003 *
4 * Copyright (C) 2004 Linux Networx
5 * (Written by Eric Biederman <ebiederman@lnxi.com> for Linux Networx)
Stefan Reinauer43b29cf2009-03-06 19:11:52 +00006 * Copyright (C) 2009 coresystems GmbH
Uwe Hermannb80dbf02007-04-22 19:08:13 +00007 *
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
Eric Biedermana9e632c2004-11-18 22:38:08 +000022#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
28static struct bus *get_pbus(device_t dev)
29{
Rudolf Marek3a8565a2009-03-26 21:45:26 +000030 struct bus *pbus;
31
32 if (!dev)
33 printk_alert("get_pbus: dev is NULL!\n");
34
35 pbus = dev->bus;
36
Eric Biedermana9e632c2004-11-18 22:38:08 +000037 while(pbus && pbus->dev && !ops_pci_bus(pbus)) {
Carl-Daniel Hailfingerbba113e2009-03-05 19:33:12 +000038 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 }
Eric Biedermana9e632c2004-11-18 22:38:08 +000044 pbus = pbus->dev->bus;
45 }
46 if (!pbus || !pbus->dev || !pbus->dev->ops || !pbus->dev->ops->ops_pci_bus) {
47 printk_alert("%s Cannot find pci bus operations", dev_path(dev));
48 die("");
49 for(;;);
50 }
51 return pbus;
52}
53
54uint8_t pci_read_config8(device_t dev, unsigned where)
55{
56 struct bus *pbus = get_pbus(dev);
Stefan Reinauer2b34db82009-02-28 20:10:20 +000057 return ops_pci_bus(pbus)->read8(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
Eric Biedermana9e632c2004-11-18 22:38:08 +000058}
59
60uint16_t pci_read_config16(device_t dev, unsigned where)
61{
62 struct bus *pbus = get_pbus(dev);
Stefan Reinauer2b34db82009-02-28 20:10:20 +000063 return ops_pci_bus(pbus)->read16(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
Eric Biedermana9e632c2004-11-18 22:38:08 +000064}
65
66uint32_t pci_read_config32(device_t dev, unsigned where)
67{
68 struct bus *pbus = get_pbus(dev);
Stefan Reinauer2b34db82009-02-28 20:10:20 +000069 return ops_pci_bus(pbus)->read32(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
Eric Biedermana9e632c2004-11-18 22:38:08 +000070}
71
72void pci_write_config8(device_t dev, unsigned where, uint8_t val)
73{
74 struct bus *pbus = get_pbus(dev);
Stefan Reinauer2b34db82009-02-28 20:10:20 +000075 ops_pci_bus(pbus)->write8(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
Eric Biedermana9e632c2004-11-18 22:38:08 +000076}
77
78void pci_write_config16(device_t dev, unsigned where, uint16_t val)
79{
80 struct bus *pbus = get_pbus(dev);
Stefan Reinauer2b34db82009-02-28 20:10:20 +000081 ops_pci_bus(pbus)->write16(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
Eric Biedermana9e632c2004-11-18 22:38:08 +000082}
83
84void pci_write_config32(device_t dev, unsigned where, uint32_t val)
85{
86 struct bus *pbus = get_pbus(dev);
Stefan Reinauer2b34db82009-02-28 20:10:20 +000087 ops_pci_bus(pbus)->write32(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
Eric Biedermana9e632c2004-11-18 22:38:08 +000088}
Stefan Reinauer43b29cf2009-03-06 19:11:52 +000089
90#if MMCONF_SUPPORT
91uint8_t pci_mmio_read_config8(device_t dev, unsigned where)
92{
93 struct bus *pbus = get_pbus(dev);
94 return pci_ops_mmconf.read8(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
95}
96
97uint16_t pci_mmio_read_config16(device_t dev, unsigned where)
98{
99 struct bus *pbus = get_pbus(dev);
100 return pci_ops_mmconf.read16(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
101}
102
103uint32_t pci_mmio_read_config32(device_t dev, unsigned where)
104{
105 struct bus *pbus = get_pbus(dev);
106 return pci_ops_mmconf.read32(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
107}
108
109void pci_mmio_write_config8(device_t dev, unsigned where, uint8_t val)
110{
111 struct bus *pbus = get_pbus(dev);
112 pci_ops_mmconf.write8(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
113}
114
115void pci_mmio_write_config16(device_t dev, unsigned where, uint16_t val)
116{
117 struct bus *pbus = get_pbus(dev);
118 pci_ops_mmconf.write16(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
119}
120
121void pci_mmio_write_config32(device_t dev, unsigned where, uint32_t val)
122{
123 struct bus *pbus = get_pbus(dev);
124 pci_ops_mmconf.write32(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
125}
126#endif