blob: 60ed1ca280790f4cffd29ee7dbfa542fe9593678 [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
Carl-Daniel Hailfinger00003ae2009-09-22 00:09:41 +000028/* The only consumer of the return value of get_pbus() is ops_pci_bus().
29 * ops_pci_bus() can handle being passed NULL and auto-picks working ops.
30 */
Eric Biedermana9e632c2004-11-18 22:38:08 +000031static struct bus *get_pbus(device_t dev)
32{
Stefan Reinauer4d933dd2009-07-21 21:36:41 +000033 struct bus *pbus = NULL;
Rudolf Marek3a8565a2009-03-26 21:45:26 +000034
35 if (!dev)
Carl-Daniel Hailfinger87e70502009-06-05 11:41:51 +000036 die("get_pbus: dev is NULL!\n");
Stefan Reinauer4d933dd2009-07-21 21:36:41 +000037 else
38 pbus = dev->bus;
Rudolf Marek3a8565a2009-03-26 21:45:26 +000039
Eric Biedermana9e632c2004-11-18 22:38:08 +000040 while(pbus && pbus->dev && !ops_pci_bus(pbus)) {
Carl-Daniel Hailfingerbba113e2009-03-05 19:33:12 +000041 if (pbus == pbus->dev->bus) {
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000042 printk(BIOS_ALERT, "%s in endless loop looking for a parent "
Stefan Reinauer4d933dd2009-07-21 21:36:41 +000043 "bus with ops_pci_bus for %s, breaking out.\n",
Carl-Daniel Hailfingerbba113e2009-03-05 19:33:12 +000044 __func__, dev_path(dev));
45 break;
46 }
Eric Biedermana9e632c2004-11-18 22:38:08 +000047 pbus = pbus->dev->bus;
48 }
49 if (!pbus || !pbus->dev || !pbus->dev->ops || !pbus->dev->ops->ops_pci_bus) {
Carl-Daniel Hailfinger00003ae2009-09-22 00:09:41 +000050 /* This can happen before the device tree is set up completely. */
Stefan Reinauerc02b4fc2010-03-22 11:42:32 +000051 //printk(BIOS_EMERG, "%s: Cannot find pci bus operations.\n", dev_path(dev));
Carl-Daniel Hailfinger00003ae2009-09-22 00:09:41 +000052 pbus = NULL;
Eric Biedermana9e632c2004-11-18 22:38:08 +000053 }
54 return pbus;
55}
56
57uint8_t pci_read_config8(device_t dev, unsigned where)
58{
59 struct bus *pbus = get_pbus(dev);
Stefan Reinauer2b34db82009-02-28 20:10:20 +000060 return ops_pci_bus(pbus)->read8(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
Eric Biedermana9e632c2004-11-18 22:38:08 +000061}
62
63uint16_t pci_read_config16(device_t dev, unsigned where)
64{
65 struct bus *pbus = get_pbus(dev);
Stefan Reinauer2b34db82009-02-28 20:10:20 +000066 return ops_pci_bus(pbus)->read16(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
Eric Biedermana9e632c2004-11-18 22:38:08 +000067}
68
69uint32_t pci_read_config32(device_t dev, unsigned where)
70{
71 struct bus *pbus = get_pbus(dev);
Stefan Reinauer2b34db82009-02-28 20:10:20 +000072 return ops_pci_bus(pbus)->read32(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
Eric Biedermana9e632c2004-11-18 22:38:08 +000073}
74
75void pci_write_config8(device_t dev, unsigned where, uint8_t val)
76{
77 struct bus *pbus = get_pbus(dev);
Stefan Reinauer2b34db82009-02-28 20:10:20 +000078 ops_pci_bus(pbus)->write8(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
Eric Biedermana9e632c2004-11-18 22:38:08 +000079}
80
81void pci_write_config16(device_t dev, unsigned where, uint16_t val)
82{
83 struct bus *pbus = get_pbus(dev);
Stefan Reinauer2b34db82009-02-28 20:10:20 +000084 ops_pci_bus(pbus)->write16(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
Eric Biedermana9e632c2004-11-18 22:38:08 +000085}
86
87void pci_write_config32(device_t dev, unsigned where, uint32_t val)
88{
89 struct bus *pbus = get_pbus(dev);
Stefan Reinauer2b34db82009-02-28 20:10:20 +000090 ops_pci_bus(pbus)->write32(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
Eric Biedermana9e632c2004-11-18 22:38:08 +000091}
Stefan Reinauer43b29cf2009-03-06 19:11:52 +000092
Stefan Reinauer08670622009-06-30 15:17:49 +000093#if CONFIG_MMCONF_SUPPORT
Stefan Reinauer43b29cf2009-03-06 19:11:52 +000094uint8_t pci_mmio_read_config8(device_t dev, unsigned where)
95{
96 struct bus *pbus = get_pbus(dev);
97 return pci_ops_mmconf.read8(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
98}
99
100uint16_t pci_mmio_read_config16(device_t dev, unsigned where)
101{
102 struct bus *pbus = get_pbus(dev);
103 return pci_ops_mmconf.read16(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
104}
105
106uint32_t pci_mmio_read_config32(device_t dev, unsigned where)
107{
108 struct bus *pbus = get_pbus(dev);
109 return pci_ops_mmconf.read32(pbus, dev->bus->secondary, dev->path.pci.devfn, where);
110}
111
112void pci_mmio_write_config8(device_t dev, unsigned where, uint8_t val)
113{
114 struct bus *pbus = get_pbus(dev);
115 pci_ops_mmconf.write8(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
116}
117
118void pci_mmio_write_config16(device_t dev, unsigned where, uint16_t val)
119{
120 struct bus *pbus = get_pbus(dev);
121 pci_ops_mmconf.write16(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
122}
123
124void pci_mmio_write_config32(device_t dev, unsigned where, uint32_t val)
125{
126 struct bus *pbus = get_pbus(dev);
127 pci_ops_mmconf.write32(pbus, dev->bus->secondary, dev->path.pci.devfn, where, val);
128}
129#endif