2016-01-12 23:55:28 +01:00
|
|
|
/*
|
|
|
|
* This file is part of the coreboot project.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License as published by
|
|
|
|
* the Free Software Foundation; version 2 of the License.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
2004-11-04 12:04:33 +01:00
|
|
|
#include <console/console.h>
|
|
|
|
#include <arch/io.h>
|
|
|
|
#include <device/pci.h>
|
|
|
|
#include <device/pci_ids.h>
|
|
|
|
#include <device/pci_ops.h>
|
|
|
|
/*
|
|
|
|
* Functions for accessing PCI configuration space with type 1 accesses
|
|
|
|
*/
|
|
|
|
|
Clean up #ifs
Replace #if CONFIG_FOO==1 with #if CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*1[[:space:]]*\$,#if \1," {} +
Replace #if (CONFIG_FOO==1) with #if CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*(\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*1)[[:space:]]*\$,#if \1," {} +
Replace #if CONFIG_FOO==0 with #if !CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*0[[:space:]]*\$,#if \!\1," {} +
Replace #if (CONFIG_FOO==0) with #if !CONFIG_FOO:
find src -name \*.[ch] -exec sed -i "s,#if[[:space:]]*(\(CONFIG_[A-Z0-9_]*\)[[:space:]]*==[[:space:]]*0)[[:space:]]*\$,#if \!\1," {} +
(and some manual changes to fix false positives)
Change-Id: Iac6ca7605a5f99885258cf1a9a2473a92de27c42
Signed-off-by: Patrick Georgi <patrick@georgi-clan.de>
Reviewed-on: http://review.coreboot.org/1004
Tested-by: build bot (Jenkins)
Reviewed-by: Ronald G. Minnich <rminnich@gmail.com>
Reviewed-by: Martin Roth <martin@se-eng.com>
2012-05-05 15:29:32 +02:00
|
|
|
#if !CONFIG_PCI_IO_CFG_EXT
|
2017-03-16 21:41:11 +01:00
|
|
|
#define CONFIG_CMD(bus, devfn, where) (0x80000000 | (bus << 16) | \
|
2012-01-24 14:47:47 +01:00
|
|
|
(devfn << 8) | (where & ~3))
|
2006-10-05 00:56:21 +02:00
|
|
|
#else
|
2017-03-16 21:41:11 +01:00
|
|
|
#define CONFIG_CMD(bus, devfn, where) (0x80000000 | (bus << 16) | \
|
2012-01-24 14:47:47 +01:00
|
|
|
(devfn << 8) | ((where & 0xff) & ~3) |\
|
|
|
|
((where & 0xf00)<<16))
|
2006-10-05 00:56:21 +02:00
|
|
|
#endif
|
2004-11-04 12:04:33 +01:00
|
|
|
|
2012-01-24 14:47:47 +01:00
|
|
|
static uint8_t pci_conf1_read_config8(struct bus *pbus, int bus, int devfn,
|
|
|
|
int where)
|
2004-11-04 12:04:33 +01:00
|
|
|
{
|
2012-01-24 14:47:47 +01:00
|
|
|
outl(CONFIG_CMD(bus, devfn, where), 0xCF8);
|
|
|
|
return inb(0xCFC + (where & 3));
|
2004-11-04 12:04:33 +01:00
|
|
|
}
|
|
|
|
|
2012-01-24 14:47:47 +01:00
|
|
|
static uint16_t pci_conf1_read_config16(struct bus *pbus, int bus, int devfn,
|
|
|
|
int where)
|
2004-11-04 12:04:33 +01:00
|
|
|
{
|
2012-01-24 14:47:47 +01:00
|
|
|
outl(CONFIG_CMD(bus, devfn, where), 0xCF8);
|
|
|
|
return inw(0xCFC + (where & 2));
|
2004-11-04 12:04:33 +01:00
|
|
|
}
|
|
|
|
|
2012-01-24 14:47:47 +01:00
|
|
|
static uint32_t pci_conf1_read_config32(struct bus *pbus, int bus, int devfn,
|
|
|
|
int where)
|
2004-11-04 12:04:33 +01:00
|
|
|
{
|
2012-01-24 14:47:47 +01:00
|
|
|
outl(CONFIG_CMD(bus, devfn, where), 0xCF8);
|
|
|
|
return inl(0xCFC);
|
2004-11-04 12:04:33 +01:00
|
|
|
}
|
|
|
|
|
2012-01-24 14:47:47 +01:00
|
|
|
static void pci_conf1_write_config8(struct bus *pbus, int bus, int devfn,
|
|
|
|
int where, uint8_t value)
|
2004-11-04 12:04:33 +01:00
|
|
|
{
|
2012-01-24 14:47:47 +01:00
|
|
|
outl(CONFIG_CMD(bus, devfn, where), 0xCF8);
|
|
|
|
outb(value, 0xCFC + (where & 3));
|
2004-11-04 12:04:33 +01:00
|
|
|
}
|
|
|
|
|
2012-01-24 14:47:47 +01:00
|
|
|
static void pci_conf1_write_config16(struct bus *pbus, int bus, int devfn,
|
|
|
|
int where, uint16_t value)
|
2004-11-04 12:04:33 +01:00
|
|
|
{
|
2012-01-24 14:47:47 +01:00
|
|
|
outl(CONFIG_CMD(bus, devfn, where), 0xCF8);
|
|
|
|
outw(value, 0xCFC + (where & 2));
|
2004-11-04 12:04:33 +01:00
|
|
|
}
|
|
|
|
|
2012-01-24 14:47:47 +01:00
|
|
|
static void pci_conf1_write_config32(struct bus *pbus, int bus, int devfn,
|
|
|
|
int where, uint32_t value)
|
2004-11-04 12:04:33 +01:00
|
|
|
{
|
2012-01-24 14:47:47 +01:00
|
|
|
outl(CONFIG_CMD(bus, devfn, where), 0xCF8);
|
|
|
|
outl(value, 0xCFC);
|
2004-11-04 12:04:33 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#undef CONFIG_CMD
|
|
|
|
|
2012-01-24 14:47:47 +01:00
|
|
|
const struct pci_bus_operations pci_cf8_conf1 = {
|
|
|
|
.read8 = pci_conf1_read_config8,
|
2004-11-04 12:04:33 +01:00
|
|
|
.read16 = pci_conf1_read_config16,
|
|
|
|
.read32 = pci_conf1_read_config32,
|
2012-01-24 14:47:47 +01:00
|
|
|
.write8 = pci_conf1_write_config8,
|
2004-11-04 12:04:33 +01:00
|
|
|
.write16 = pci_conf1_write_config16,
|
|
|
|
.write32 = pci_conf1_write_config32,
|
|
|
|
};
|