Searched refs:device_fn (Results 1 – 2 of 2) sorted by relevance
/titanic_41/usr/src/grub/grub-0.97/netboot/ |
H A D | pci_io.c | 26 #define CONFIG_CMD(bus, device_fn, where) (0x80000000 | (bus << 16) | (device_fn << 8) | (where &… argument 28 int pcibios_read_config_byte(unsigned int bus, unsigned int device_fn, in pcibios_read_config_byte() argument 31 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8); in pcibios_read_config_byte() 37 unsigned int device_fn, unsigned int where, uint16_t *value) in pcibios_read_config_word() argument 39 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8); in pcibios_read_config_word() 44 int pcibios_read_config_dword (unsigned int bus, unsigned int device_fn, in pcibios_read_config_dword() argument 47 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8); in pcibios_read_config_dword() 52 int pcibios_write_config_byte (unsigned int bus, unsigned int device_fn, in pcibios_write_config_byte() argument 55 outl(CONFIG_CMD(bus,device_fn,where), 0xCF8); in pcibios_write_config_byte() 60 int pcibios_write_config_word (unsigned int bus, unsigned int device_fn, in pcibios_write_config_word() argument [all …]
|
H A D | pci.h | 286 extern int pcibios_read_config_byte(unsigned int bus, unsigned int device_fn, unsigned int where, u… 287 extern int pcibios_write_config_byte (unsigned int bus, unsigned int device_fn, unsigned int where,… 288 extern int pcibios_read_config_word(unsigned int bus, unsigned int device_fn, unsigned int where, u… 289 extern int pcibios_write_config_word (unsigned int bus, unsigned int device_fn, unsigned int where,… 290 extern int pcibios_read_config_dword(unsigned int bus, unsigned int device_fn, unsigned int where, … 291 extern int pcibios_write_config_dword(unsigned int bus, unsigned int device_fn, unsigned int where,…
|