31 lines
873 B
C
31 lines
873 B
C
#include <errno.h>
|
|
#include <stdio.h>
|
|
#include <string.h>
|
|
#include <inttypes.h>
|
|
#include <sys/types.h>
|
|
#include <sys/stat.h>
|
|
#include <fcntl.h>
|
|
#include <unistd.h>
|
|
#include <limits.h>
|
|
#include "pci.h"
|
|
|
|
char pci_path[PATH_MAX] = ".";
|
|
|
|
__attribute__((stdcall)) uint32_t pci_read(uint32_t bus, uint32_t dev,
|
|
uint32_t fun, uint32_t offset,
|
|
size_t len) {
|
|
char path[PATH_MAX*2];
|
|
uint32_t value = 0;
|
|
sprintf(path, "%s/%4.4x:%2.2x:%2.2x.%u/config", pci_path, 0, bus, dev, fun);
|
|
int fd = open(path, O_RDONLY);
|
|
if (fd == -1) {
|
|
// fprintf(stderr, "[pci] error: failed to open config file '%s': %s\n",
|
|
// path, strerror(errno));
|
|
return UINT32_MAX;
|
|
}
|
|
lseek(fd, offset, SEEK_SET);
|
|
read(fd, &value, len);
|
|
close(fd);
|
|
return value;
|
|
}
|