2006-10-05 00:56:21 +02:00
|
|
|
#include <console/console.h>
|
|
|
|
#include <arch/io.h>
|
|
|
|
#include <arch/pciconf.h>
|
|
|
|
#include <device/pci.h>
|
|
|
|
#include <device/pci_ids.h>
|
|
|
|
#include <device/pci_ops.h>
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Functions for accessing PCI configuration space with mmconf accesses
|
|
|
|
*/
|
|
|
|
|
2014-12-25 03:43:20 +01:00
|
|
|
#define PCI_MMIO_ADDR(SEGBUS, DEVFN, WHERE, MASK) \
|
2015-06-18 10:23:48 +02:00
|
|
|
((void *)(((uintptr_t)CONFIG_MMCONF_BASE_ADDRESS |\
|
2014-12-25 03:43:20 +01:00
|
|
|
(((SEGBUS) & 0xFFF) << 20) |\
|
|
|
|
(((DEVFN) & 0xFF) << 12) |\
|
|
|
|
((WHERE) & 0xFFF)) & ~MASK))
|
2006-10-05 00:56:21 +02:00
|
|
|
|
2012-01-24 15:48:56 +01:00
|
|
|
static uint8_t pci_mmconf_read_config8(struct bus *pbus, int bus, int devfn,
|
|
|
|
int where)
|
2006-10-05 00:56:21 +02:00
|
|
|
{
|
2014-12-25 03:43:20 +01:00
|
|
|
return read8(PCI_MMIO_ADDR(bus, devfn, where, 0));
|
2006-10-05 00:56:21 +02:00
|
|
|
}
|
|
|
|
|
2012-01-24 15:48:56 +01:00
|
|
|
static uint16_t pci_mmconf_read_config16(struct bus *pbus, int bus, int devfn,
|
|
|
|
int where)
|
2006-10-05 00:56:21 +02:00
|
|
|
{
|
2014-12-25 03:43:20 +01:00
|
|
|
return read16(PCI_MMIO_ADDR(bus, devfn, where, 1));
|
2006-10-05 00:56:21 +02:00
|
|
|
}
|
|
|
|
|
2012-01-24 15:48:56 +01:00
|
|
|
static uint32_t pci_mmconf_read_config32(struct bus *pbus, int bus, int devfn,
|
|
|
|
int where)
|
2006-10-05 00:56:21 +02:00
|
|
|
{
|
2014-12-25 03:43:20 +01:00
|
|
|
return read32(PCI_MMIO_ADDR(bus, devfn, where, 3));
|
2006-10-05 00:56:21 +02:00
|
|
|
}
|
|
|
|
|
2012-01-24 15:48:56 +01:00
|
|
|
static void pci_mmconf_write_config8(struct bus *pbus, int bus, int devfn,
|
|
|
|
int where, uint8_t value)
|
2006-10-05 00:56:21 +02:00
|
|
|
{
|
2014-12-25 03:43:20 +01:00
|
|
|
write8(PCI_MMIO_ADDR(bus, devfn, where, 0), value);
|
2006-10-05 00:56:21 +02:00
|
|
|
}
|
|
|
|
|
2012-01-24 15:48:56 +01:00
|
|
|
static void pci_mmconf_write_config16(struct bus *pbus, int bus, int devfn,
|
|
|
|
int where, uint16_t value)
|
2006-10-05 00:56:21 +02:00
|
|
|
{
|
2014-12-25 03:43:20 +01:00
|
|
|
write16(PCI_MMIO_ADDR(bus, devfn, where, 1), value);
|
2006-10-05 00:56:21 +02:00
|
|
|
}
|
|
|
|
|
2012-01-24 15:48:56 +01:00
|
|
|
static void pci_mmconf_write_config32(struct bus *pbus, int bus, int devfn,
|
|
|
|
int where, uint32_t value)
|
2006-10-05 00:56:21 +02:00
|
|
|
{
|
2014-12-25 03:43:20 +01:00
|
|
|
write32(PCI_MMIO_ADDR(bus, devfn, where, 3), value);
|
2006-10-05 00:56:21 +02:00
|
|
|
}
|
|
|
|
|
2012-01-24 15:48:56 +01:00
|
|
|
const struct pci_bus_operations pci_ops_mmconf = {
|
|
|
|
.read8 = pci_mmconf_read_config8,
|
2006-10-05 00:56:21 +02:00
|
|
|
.read16 = pci_mmconf_read_config16,
|
|
|
|
.read32 = pci_mmconf_read_config32,
|
2012-01-24 15:48:56 +01:00
|
|
|
.write8 = pci_mmconf_write_config8,
|
2006-10-05 00:56:21 +02:00
|
|
|
.write16 = pci_mmconf_write_config16,
|
|
|
|
.write32 = pci_mmconf_write_config32,
|
|
|
|
};
|