The PCI Utilities package contains various utilities dealing with the PCI bus, and also a library for portable access to PCI configuration registers. It includes `lspci' for listing all PCI devices (very useful for debugging of both kernel and device drivers) and `setpci' for manual configuration of PCI devices.
| Tags | Hardware |
|---|---|
| Licenses | GPL |
| Operating Systems | POSIX BSD NetBSD FreeBSD Linux |
| Implementation | C |
Recent releases


Release Notes: This release uses libkmod to look up kernel modules on newer Linux kernels. To facilitate this, libpci is now able to look up module aliases in sysfs. Minor bugs were fixed. The pci.ids file was updated to the latest snapshot.


Release Notes: This release adds decoding of LTR/OBFF in PCIe capabilities, fixes minor bugs, and updates the pci.ids file to the latest snapshot.


Release Notes: New capabilities were added, notably transaction processing hints and latency tolerance. PCIe Gen 3 speeds and link status fields are now decoded. Names exceeding the buffers' sizes are now truncated. Various minor bugfixes were made.


Release Notes: Minor improvements and bugfixes in decoding of the Virtual Channel capability were made.


Release Notes: More capabilities are now decoded, namely Virtual Channel (except arbitration tables), Root Complex Link, Vendor-Specific (header only), and SATA HBA. All extended capabilities have their version displayed (with verbose option "-vv" or higher).
Recent comments
21 Jul 2011 11:05
I have added support for 8GT/s speed to lspci 3.1.7:
--- pciutils-3.1.7/ls-caps.c.orig 2011-07-21 07:56:13.663735898 -0400
+++ pciutils-3.1.7/ls-caps.c 2011-07-21 07:56:35.648743239 -0400
@@ -717,6 +717,8 @@
return "2.5GT/s";
case 2:
return "5GT/s";
+ case 3:
+ return "8GT/s";
default:
return "unknown";
}