-
Notifications
You must be signed in to change notification settings - Fork 1
/
README
18 lines (12 loc) · 869 Bytes
/
README
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
This is a simple tool to access a PCIe device's MMIO register in Linux user space.
DIFFERENT TO "uio_reg"
I wrote a similar tool named "uio_reg" (https://github.com/Dong-Wang/uio_reg) which only support igb_uio driver.
"mmio-reg" can support all PCIe device's kernel driver, I list them in Table 1.
Table 1 supported kernel driver
+----------+---------------------------+-----------------+---------+------+
| | native driver (e.g.ixgbe) | uio_pci_generic | igb_uio | vfio |
+----------+---------------------------+-----------------+---------+------+
| uio_reg | NO | NO | YES | no |
+----------+---------------------------+-----------------+---------+------+
| mmio-reg | YES | YES | YES | YES |
+----------+---------------------------+-----------------+---------+------+