2019-03-11 09:32:55 -05:00
|
|
|
#ifndef PCI_INTERN_H
|
|
|
|
#define PCI_INTERN_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
#include "../pci.h"
|
|
|
|
|
|
|
|
#define PCI_CONFIG_ADDRESS 0xCF8
|
|
|
|
#define PCI_CONFIG_DATA 0xCFC
|
|
|
|
|
|
|
|
pci_dev_common_info* pci_get_dev_info(uint8_t bus,uint8_t device,uint8_t func);
|
2019-03-12 17:26:19 -05:00
|
|
|
void pci_set_dev_info(pci_dev_common_info* inf);
|
2019-03-11 09:32:55 -05:00
|
|
|
|
|
|
|
#endif
|