Lines Matching refs:uint32_t
13 static inline uint32_t
14 PCIGetAddr(uint32_t bus, uint32_t slot, uint32_t func, uint32_t reg)
21 PCICfgRead8(uint32_t bus, uint32_t slot, uint32_t func, uint32_t reg)
23 uint32_t addr = PCIGetAddr(bus, slot, func, reg);
31 PCICfgRead16(uint32_t bus, uint32_t slot, uint32_t func, uint32_t reg)
33 uint32_t addr = PCIGetAddr(bus, slot, func, reg);
42 uint32_t
43 PCICfgRead32(uint32_t bus, uint32_t slot, uint32_t func, uint32_t reg)
45 uint32_t addr = PCIGetAddr(bus, slot, func, reg);
55 PCICfgWrite8(uint32_t bus, uint32_t slot, uint32_t func, uint32_t reg,
58 uint32_t addr = PCIGetAddr(bus, slot, func, reg);
66 PCICfgWrite16(uint32_t bus, uint32_t slot, uint32_t func, uint32_t reg,
69 uint32_t addr = PCIGetAddr(bus, slot, func, reg);
77 PCICfgWrite32(uint32_t bus, uint32_t slot, uint32_t func, uint32_t reg,
78 uint32_t data)
80 uint32_t addr = PCIGetAddr(bus, slot, func, reg);