summaryrefslogtreecommitdiff
path: root/src/arch/i386/lib/pci_ops.c
blob: ded7fd20a49455fa28e1046cd82a2fe0d290344f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#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>

const struct pci_ops *conf = 0;

/*
 * Direct access to PCI hardware...
 */

uint8_t pci_read_config8(device_t dev, unsigned where)
{
	uint8_t value;
	value = conf->read8(dev->bus->secondary, dev->path.u.pci.devfn, where);
	printk_spew("Read config 8 bus %d,devfn 0x%x,reg 0x%x,val 0x%x\n",
		    dev->bus->secondary, dev->path.u.pci.devfn, where, value);
	return value;
}

uint16_t pci_read_config16(device_t dev, unsigned where)
{
	uint16_t value;
	value = conf->read16(dev->bus->secondary, dev->path.u.pci.devfn, where);
	printk_spew( "Read config 16 bus %d,devfn 0x%x,reg 0x%x,val 0x%x\n",
		     dev->bus->secondary, dev->path.u.pci.devfn, where, value);
	return value;
}

uint32_t pci_read_config32(device_t dev, unsigned where)
{
	uint32_t value;
	value = conf->read32(dev->bus->secondary, dev->path.u.pci.devfn, where);
	printk_spew( "Read config 32 bus %d,devfn 0x%x,reg 0x%x,val 0x%x\n",
		     dev->bus->secondary, dev->path.u.pci.devfn, where, value);
	return value;
}

void pci_write_config8(device_t dev, unsigned where, uint8_t val)
{
	printk_spew( "Write config 8 bus %d, devfn 0x%x, reg 0x%x, val 0x%x\n",
		     dev->bus->secondary, dev->path.u.pci.devfn, where, val);
	conf->write8(dev->bus->secondary, dev->path.u.pci.devfn, where, val);
}

void pci_write_config16(device_t dev, unsigned where, uint16_t val)
{
	printk_spew( "Write config 16 bus %d, devfn 0x%x, reg 0x%x, val 0x%x\n",
		     dev->bus->secondary, dev->path.u.pci.devfn, where, val);
	conf->write16(dev->bus->secondary, dev->path.u.pci.devfn, where, val);
}

void pci_write_config32(device_t dev, unsigned where, uint32_t val)
{
	printk_spew( "Write config 32 bus %d, devfn 0x%x, reg 0x%x, val 0x%x\n",
		     dev->bus->secondary, dev->path.u.pci.devfn, where, val);
	conf->write32(dev->bus->secondary, dev->path.u.pci.devfn, where, val);
}