blob: 77df4b314ff505f27c435060b545b9a04463c3ff [file] [log] [blame]
Eric Biederman018d8dd2004-11-04 11:04:33 +00001#include <console/console.h>
2#include <arch/io.h>
3#include <arch/pciconf.h>
4#include <device/pci.h>
5#include <device/pci_ids.h>
6#include <device/pci_ops.h>
7/*
8 * Functions for accessing PCI configuration space with type 1 accesses
9 */
10
Patrick Georgie1667822012-05-05 15:29:32 +020011#if !CONFIG_PCI_IO_CFG_EXT
Vikram Narayanan31b680b2012-01-24 19:17:47 +053012#define CONFIG_CMD(bus,devfn, where) (0x80000000 | (bus << 16) | \
13 (devfn << 8) | (where & ~3))
Yinghai Lu5f9624d2006-10-04 22:56:21 +000014#else
Vikram Narayanan31b680b2012-01-24 19:17:47 +053015#define CONFIG_CMD(bus,devfn, where) (0x80000000 | (bus << 16) | \
16 (devfn << 8) | ((where & 0xff) & ~3) |\
17 ((where & 0xf00)<<16))
Yinghai Lu5f9624d2006-10-04 22:56:21 +000018#endif
Eric Biederman018d8dd2004-11-04 11:04:33 +000019
Vikram Narayanan31b680b2012-01-24 19:17:47 +053020static uint8_t pci_conf1_read_config8(struct bus *pbus, int bus, int devfn,
21 int where)
Eric Biederman018d8dd2004-11-04 11:04:33 +000022{
Vikram Narayanan31b680b2012-01-24 19:17:47 +053023 outl(CONFIG_CMD(bus, devfn, where), 0xCF8);
24 return inb(0xCFC + (where & 3));
Eric Biederman018d8dd2004-11-04 11:04:33 +000025}
26
Vikram Narayanan31b680b2012-01-24 19:17:47 +053027static uint16_t pci_conf1_read_config16(struct bus *pbus, int bus, int devfn,
28 int where)
Eric Biederman018d8dd2004-11-04 11:04:33 +000029{
Vikram Narayanan31b680b2012-01-24 19:17:47 +053030 outl(CONFIG_CMD(bus, devfn, where), 0xCF8);
31 return inw(0xCFC + (where & 2));
Eric Biederman018d8dd2004-11-04 11:04:33 +000032}
33
Vikram Narayanan31b680b2012-01-24 19:17:47 +053034static uint32_t pci_conf1_read_config32(struct bus *pbus, int bus, int devfn,
35 int where)
Eric Biederman018d8dd2004-11-04 11:04:33 +000036{
Vikram Narayanan31b680b2012-01-24 19:17:47 +053037 outl(CONFIG_CMD(bus, devfn, where), 0xCF8);
38 return inl(0xCFC);
Eric Biederman018d8dd2004-11-04 11:04:33 +000039}
40
Vikram Narayanan31b680b2012-01-24 19:17:47 +053041static void pci_conf1_write_config8(struct bus *pbus, int bus, int devfn,
42 int where, uint8_t value)
Eric Biederman018d8dd2004-11-04 11:04:33 +000043{
Vikram Narayanan31b680b2012-01-24 19:17:47 +053044 outl(CONFIG_CMD(bus, devfn, where), 0xCF8);
45 outb(value, 0xCFC + (where & 3));
Eric Biederman018d8dd2004-11-04 11:04:33 +000046}
47
Vikram Narayanan31b680b2012-01-24 19:17:47 +053048static void pci_conf1_write_config16(struct bus *pbus, int bus, int devfn,
49 int where, uint16_t value)
Eric Biederman018d8dd2004-11-04 11:04:33 +000050{
Vikram Narayanan31b680b2012-01-24 19:17:47 +053051 outl(CONFIG_CMD(bus, devfn, where), 0xCF8);
52 outw(value, 0xCFC + (where & 2));
Eric Biederman018d8dd2004-11-04 11:04:33 +000053}
54
Vikram Narayanan31b680b2012-01-24 19:17:47 +053055static void pci_conf1_write_config32(struct bus *pbus, int bus, int devfn,
56 int where, uint32_t value)
Eric Biederman018d8dd2004-11-04 11:04:33 +000057{
Vikram Narayanan31b680b2012-01-24 19:17:47 +053058 outl(CONFIG_CMD(bus, devfn, where), 0xCF8);
59 outl(value, 0xCFC);
Eric Biederman018d8dd2004-11-04 11:04:33 +000060}
61
62#undef CONFIG_CMD
63
Vikram Narayanan31b680b2012-01-24 19:17:47 +053064const struct pci_bus_operations pci_cf8_conf1 = {
65 .read8 = pci_conf1_read_config8,
Eric Biederman018d8dd2004-11-04 11:04:33 +000066 .read16 = pci_conf1_read_config16,
67 .read32 = pci_conf1_read_config32,
Vikram Narayanan31b680b2012-01-24 19:17:47 +053068 .write8 = pci_conf1_write_config8,
Eric Biederman018d8dd2004-11-04 11:04:33 +000069 .write16 = pci_conf1_write_config16,
70 .write32 = pci_conf1_write_config32,
71};