2 #include <sys/port_io.h>
5 #define PCI_CONFIG_ADDR 0xcf8
6 #define PCI_CONFIG_DATA 0xcfc
9 pci_read_cspace(ptr_t base, int offset)
11 port_wrdword(PCI_CONFIG_ADDR, base | (offset & ~0x3));
12 return port_rddword(PCI_CONFIG_DATA);
16 pci_write_cspace(ptr_t base, int offset, pci_reg_t data)
18 port_wrdword(PCI_CONFIG_ADDR, base | (offset & ~0x3));
19 port_wrdword(PCI_CONFIG_DATA, data);
25 pci_config_msi_data(int vector) {