-
Notifications
You must be signed in to change notification settings - Fork 336
/
pci.py
executable file
·40 lines (33 loc) · 1.18 KB
/
pci.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#!/usr/bin/env python3
# library and tool to access PCI config space
import os
import struct
# no multiple domains, controllers so far
def probe(bus, dev, func):
fn = "/sys/devices/pci0000:%02x/0000:%02x:%02x.%01x/config" % (bus, bus, dev, func)
return os.path.isfile(fn)
def openpci(bus, dev, func, offset, mode):
fn = "/sys/devices/pci0000:%02x/0000:%02x:%02x.%01x/config" % (bus, bus, dev, func)
f = os.open(fn, mode)
os.lseek(f, offset, os.SEEK_SET)
return f
sizes = {8: "Q", 4: "I", 2: "H", 1: "B"}
def writepci(bus, device, func, offset, size, val):
f = openpci(bus, device, func, offset, os.O_WRONLY)
os.write(f, struct.pack(sizes[size], val))
os.close(f)
def readpci(bus, device, func, offset, size):
f = openpci(bus, device, func, offset, os.O_RDONLY)
v = struct.unpack(sizes[size], os.read(f, size))[0]
os.close(f)
return v
def changebit(bus, device, func, offset, bit, val):
f = openpci(bus, device, func, offset, os.O_RDWR)
v = struct.unpack("I", os.read(f, 4))[0]
if val:
v = v | (1 << bit)
else:
v = v & ~(1 << bit)
os.lseek(f, offset, os.SEEK_SET)
os.write(f, struct.pack('I', v))
os.close(f)