Symbol: cfgread
sys/arch/sandpoint/stand/altboot/pci.c
164
pciid = cfgread(bus, device, 0, PCI_ID_REG);
sys/arch/sandpoint/stand/altboot/pci.c
169
bhlcr = cfgread(bus, device, 0, PCI_BHLC_REG);
sys/arch/sandpoint/stand/altboot/pci.c
172
pciid = cfgread(bus, device, function, PCI_ID_REG);
sys/arch/sandpoint/stand/altboot/pci.c
193
val = cfgread(bus, dev, func, PCI_ID_REG);
sys/arch/sandpoint/stand/altboot/pci.c
195
val = cfgread(bus, dev, func, 0x2c);
sys/arch/sandpoint/stand/altboot/pci.c
197
val = cfgread(bus, dev, func, PCI_CLASS_REG);
sys/arch/sandpoint/stand/altboot/pci.c
201
val = cfgread(bus, dev, func, PCI_BHLC_REG);
sys/arch/sandpoint/stand/altboot/pci.c
206
val = cfgread(bus, dev, func, PCI_COMMAND_STATUS_REG);
sys/arch/sandpoint/stand/altboot/pci.c
215
val = cfgread(bus, dev, func, 0x3c) & ~0xff;
sys/arch/sandpoint/stand/altboot/pci.c
220
val = cfgread(bus, dev, func, PCI_CLASS_REG);
sys/arch/sandpoint/stand/altboot/pci.c
227
if ((cfgread(bus, dev, func, PCI_CLASS_REG) >> 16) == PCI_CLASS_PPB) {
sys/arch/sandpoint/stand/altboot/pci.c
250
val = cfgread(bus, dev, func, 0x04);
sys/arch/sandpoint/stand/altboot/pci.c
257
val = cfgread(bus, dev, func, 0x18);
sys/arch/sandpoint/stand/altboot/pci.c
269
val = cfgread(bus, dev, func, 0x0c);
sys/arch/sandpoint/stand/altboot/pci.c
280
val = cfgread(bus, dev, func, mapr);
sys/arch/sandpoint/stand/altboot/pci.c
330
pciid = cfgread(bus, dev, func, PCI_ID_REG);
sys/arch/sandpoint/stand/altboot/pci.c
339
class = cfgread(bus, dev, func, PCI_CLASS_REG);
sys/arch/sandpoint/stand/altboot/pci.c
350
pciid = cfgread(bus, device, 0, PCI_ID_REG);
sys/arch/sandpoint/stand/altboot/pci.c
355
class = cfgread(bus, device, 0, PCI_CLASS_REG);
sys/arch/sandpoint/stand/altboot/pci.c
364
bhlcr = cfgread(bus, device, 0, PCI_BHLC_REG);
sys/arch/sandpoint/stand/altboot/pci.c
367
pciid = cfgread(bus, device, function, PCI_ID_REG);
sys/arch/sandpoint/stand/altboot/pci.c
41
static unsigned cfgread(int, int, int, int);