How to identify a device > PCI
Comment "identifier" les matériels PCI comme les cartes(AGP, PCI-Express, CardBus, Express Card, etc) installés sur votre ordinateur.
De nombreuses personnes utilisent lspci, qui fonctionne sur tous les systèmes Debian, pour avoir une liste des matériels.Les utilisateurs Gnome utilisent hardinfo. Avec KDE on utilise kinfocenter.
PCI-id
Les matériels sont généralement identifiés par une paire de nombres hexadécimales , comme ceci : 1014:003E.
Les 4 premiers chiffres représentent le Vendor ID (1014 = IBM). Vendor= Marque.
Les 4 derniers chiffres représentent le Device ID (003e = 16/4 Token ring). Device= Matériel.
Mais il y a aussi des sub-vendor-id, (pour identifier l'ordinateur/pour la mise en oeuvre), qui définissent la fonction et la classe... voir references pour plus d'informations.
Certains des appareils (device-id) gérés par Debian sont listés ici : DeviceDatabase/PCI.
lspci
lspci provenant du paquet: pciutils est l'outil de base pour connaître les matériels PCI connectés à votre ordinateur.
rajoutez ("-nn" seulement sur les dernières versions linux) :
lspci -nn 00:00.0 Host bridge [0600]: Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub [8086:27a0] (rev 03) 00:02.0 VGA compatible controller [0300]: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller [8086:27a2] (rev 03) 00:02.1 Display controller [0380]: Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller [8086:27a6] (rev 03) 00:1b.0 Audio device [0403]: Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller [8086:27d8] (rev 02) 00:1c.0 PCI bridge [0604]: Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 [8086:27d0] (rev 02) 00:1c.1 PCI bridge [0604]: Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 [8086:27d2] (rev 02) 00:1c.2 PCI bridge [0604]: Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 [8086:27d4] (rev 02) 00:1c.3 PCI bridge [0604]: Intel Corporation 82801G (ICH7 Family) PCI Express Port 4 [8086:27d6] (rev 02) 00:1d.0 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 [8086:27c8] (rev 02) 00:1d.1 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 [8086:27c9] (rev 02) 00:1d.2 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 [8086:27ca] (rev 02) 00:1d.3 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 [8086:27cb] (rev 02) 00:1d.7 USB Controller [0c03]: Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller [8086:27cc] (rev 02) 00:1e.0 PCI bridge [0604]: Intel Corporation 82801 Mobile PCI Bridge [8086:2448] (rev e2) 00:1f.0 ISA bridge [0601]: Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge [8086:27b9] (rev 02) 00:1f.2 IDE interface [0101]: Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller [8086:27c4] (rev 02) 00:1f.3 SMBus [0c05]: Intel Corporation 82801G (ICH7 Family) SMBus Controller [8086:27da] (rev 02) 02:00.0 Ethernet controller [0200]: Intel Corporation 82573L Gigabit Ethernet Controller [8086:109a] 03:00.0 Network controller [0280]: Intel Corporation PRO/Wireless 3945ABG Network Connection [8086:4227] (rev 02) 15:00.0 CardBus bridge [0607]: Texas Instruments PCI1510 PC card Cardbus Controller [104c:ac56] 16:00.0 Ethernet controller [0200]: ADMtek 21x4x DEC-Tulip compatible 10/100 Ethernet [1317:1985] (rev 11)
Notes concernant l'example ci-dessous :
- 104c:ac56 is the cardbus bridge ("controller")
- 1317:1985 is a PCCard (32-bit Cardbus) Ethernet Adapter.
Si la description du matériel retourne 'Unknown device' vous pouvez mettre à jour votre fichier pci-id en tapant update-pciids en tant que root.
man (8)lspci (8)update-pciids
/usr/share/misc/pci.ids - contient une table complète de correspondance de tous les IDs et des noms de périphériques.
Vous pouvez utiliser grep pour avoir une liste par type de matériel comme ci-dessous :
~$ lspci -nn | grep Network 03:00.0 Network controller [0280]: Intel Corporation PRO/Wireless 3945ABG Network Connection [8086:4227] (rev 02)
Avec Gnome : hardinfo
Gnome Informations System (Hardinfo dans le Menu Applications/Outils Système, provenant du paquet:hardinfo) donne des info sur le matériel installé,
Avec KDE : KInfoCenter
Kinfo de KDE (dans Mmenu K / Système / KDE Info Center ou Centre d'information KDE, provenant du paquet:kcontrol) donne des informations diverses et variées sur le matériel.
Note: KInfoCenter provides the PCI device names, not PCI IDs.
discover
Le paquet discover en ligne de commande peut être très utile aussi:
discover --vendor-id --model-id pci | uniq 8086 27a0 Intel Corporation Mobile 945GM/PM/GMS, 943/940GML and 945GT Express Memory Controller Hub 8086 27a0 Intel Corporation Mobile 945GM/PM/GMS/940GML and 945GT Express Memory Controller Hub 8086 27a2 Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller 8086 27a2 Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller 8086 27a6 Intel Corporation Mobile 945GM/GMS, 943/940GML Express Integrated Graphics Controller 8086 27a6 Intel Corporation Mobile 945GM/GMS/940GML Express Integrated Graphics Controller 8086 27d8 Intel Corporation 82801G (ICH7 Family) High Definition Audio Controller 8086 27d0 Intel Corporation 82801G (ICH7 Family) PCI Express Port 1 8086 27d2 Intel Corporation 82801G (ICH7 Family) PCI Express Port 2 8086 27d4 Intel Corporation 82801G (ICH7 Family) PCI Express Port 3 8086 27d6 Intel Corporation 82801G (ICH7 Family) PCI Express Port 4 8086 27c8 Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #1 8086 27c8 Intel Corporation 82801G (ICH7 Family) USB UHCI #1 8086 27c9 Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #2 8086 27c9 Intel Corporation 82801G (ICH7 Family) USB UHCI #2 8086 27ca Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #3 8086 27ca Intel Corporation 82801G (ICH7 Family) USB UHCI #3 8086 27cb Intel Corporation 82801G (ICH7 Family) USB UHCI Controller #4 8086 27cb Intel Corporation 82801G (ICH7 Family) USB UHCI #4 8086 27cc Intel Corporation 82801G (ICH7 Family) USB2 EHCI Controller 8086 2448 Intel Corporation 82801 Mobile PCI Bridge 8086 27b9 Intel Corporation 82801GBM (ICH7-M) LPC Interface Bridge 8086 27c4 Intel Corporation 82801GBM/GHM (ICH7 Family) SATA IDE Controller 8086 27da Intel Corporation 82801G (ICH7 Family) SMBus Controller 8086 109a Intel Corporation 82573L Gigabit Ethernet Controller8086 4227 Intel Corporation PRO/Wireless 3945ABG Network Connection 104c ac56 Texas Instruments PCI1510 PC card Cardbus Controller
man (1)discover
discover utilise ses propres fichiers :/lib/discover/pci-busclass.xml, /lib/discover/pci-device.xml, /lib/discover/pci-vendor.xml
Aller plus en profondeur
/proc/bus/pci/devices
Si lspci ne donne pas satisfaction (!), vous pouvez afficher le contenu de /proc/bus/pci/devices pour avoir la liste vendor et device IDs.
cat /proc/bus/pci/devices
/sys/bus/pci
Toujours si lspci ne donne pas satisfaction (!), aller dans /sys/bus/pci (il faut que sysfs soit monté dans /sys).
Présentation: /usr/share/doc/linux-doc-2.6.26/Documentation/filesystems/sysfs-pci.txt.gz - /sys/bus/pci
References
wikipedia – PCI (en anglais, page Française moins complète).
http://pci-ids.ucw.cz/ Liste des device-id et vendor-id. Spécialiste du matériel PCI.
