summaryrefslogtreecommitdiff
path: root/src/include/device/pci_ops.h
blob: a789b23cd8709fc9809900ee4421a214e24a9e03 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#ifndef PCI_OPS_H
#define PCI_OPS_H

#include <stdint.h>
struct device;

int pci_read_config_byte(struct device *dev, uint8_t where, uint8_t *val);
int pci_read_config_word(struct device *dev, uint8_t where, uint16_t *val);
int pci_read_config_dword(struct device *dev, uint8_t where, uint32_t *val);
int pci_write_config_byte(struct device *dev, uint8_t where, uint8_t val);
int pci_write_config_word(struct device *dev, uint8_t where, uint16_t val);
int pci_write_config_dword(struct device *dev, uint8_t where, uint32_t val);
void pci_set_method(void);

#endif /* PCI_OPS_H */