Searched defs:dev_fn (Results 1 - 1 of 1) sorted by relevance

/vbox/src/VBox/Devices/PC/BIOS/
H A Dpciutil.c124 uint32_t pci_read_config_byte(uint8_t bus, uint8_t dev_fn, uint8_t reg) argument
126 return pci_read_cfgb((PCIBIOS_ID << 8) | PCIBIOS_READ_CONFIG_BYTE, (bus << 8) | dev_fn, reg);
129 uint32_t pci_read_config_word(uint8_t bus, uint8_t dev_fn, uint8_t reg) argument
131 return pci_read_cfgw((PCIBIOS_ID << 8) | PCIBIOS_READ_CONFIG_WORD, (bus << 8) | dev_fn, reg);
134 uint32_t pci_read_config_dword(uint8_t bus, uint8_t dev_fn, uint8_t reg) argument
136 return pci_read_cfgd((PCIBIOS_ID << 8) | PCIBIOS_READ_CONFIG_DWORD, (bus << 8) | dev_fn, reg);
156 void pci_write_config_byte(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint8_t val)
158 pci_write_cfgb((PCIBIOS_ID << 8) | PCIBIOS_WRITE_CONFIG_BYTE, (bus << 8) | dev_fn, reg, val);
161 void pci_write_config_word(uint8_t bus, uint8_t dev_fn, uint8_t reg, uint16_t val)
163 pci_write_cfgw((PCIBIOS_ID << 8) | PCIBIOS_WRITE_CONFIG_WORD, (bus << 8) | dev_fn, re
[all...]

Completed in 42 milliseconds