Lines Matching refs:slot
12 uint8_t PCICfgRead8(uint32_t bus, uint32_t slot, uint32_t func, uint32_t reg);
13 uint16_t PCICfgRead16(uint32_t bus, uint32_t slot, uint32_t func, uint32_t reg);
14 uint32_t PCICfgRead32(uint32_t bus, uint32_t slot, uint32_t func, uint32_t reg);
15 void PCICfgWrite8(uint32_t bus, uint32_t slot, uint32_t func,
17 void PCICfgWrite16(uint32_t bus, uint32_t slot, uint32_t func,
19 void PCICfgWrite32(uint32_t bus, uint32_t slot, uint32_t func,
67 return PCICfgRead8(dev->bus, dev->slot, dev->func, reg);
73 return PCICfgRead16(dev->bus, dev->slot, dev->func, reg);
79 return PCICfgRead32(dev->bus, dev->slot, dev->func, reg);
85 return PCICfgWrite8(dev->bus, dev->slot, dev->func, reg, data);
91 return PCICfgWrite16(dev->bus, dev->slot, dev->func, reg, data);
97 return PCICfgWrite32(dev->bus, dev->slot, dev->func, reg, data);