]> mj.ucw.cz Git - pciutils.git/blob - lspci.man
Use PCILIB.
[pciutils.git] / lspci.man
1 .TH lspci 8 "@TODAY@" "@VERSION@" "Linux PCI Utilities"
2 .IX lspci
3 .SH NAME
4 lspci \- list all PCI devices
5 .SH SYNOPSIS
6 .B lspci
7 .RB [ options ]
8 .SH DESCRIPTION
9 .B lspci
10 is a utility for displaying information about all PCI buses in the system and
11 all devices connected to them.
12
13 To make use of all the features of this program, you need to have Linux kernel
14 2.1.82 or newer which supports the /proc/bus/pci interface. With older kernels,
15 the PCI utilities have to use direct hardware access which is available
16 only to root and it suffers from numerous race conditions and other problems.
17
18 If you are going to report bugs in PCI device drivers or in
19 .I lspci
20 itself, please include output of "lspci -vvx".
21
22 .SH OPTIONS
23 .TP
24 .B -v
25 Tells
26 .I lspci
27 to be verbose and display detailed information about all devices.
28 .TP
29 .B -vv
30 Tells
31 .I lspci
32 to be very verbose and display even more information (actually everything the
33 PCI device is able to tell). The exact meaning of these data is not explained
34 in this manual page, if you want to know more, consult
35 .B /usr/include/linux/pci.h
36 or the PCI specs.
37 .TP
38 .B -n
39 Show PCI vendor and device codes as numbers instead of looking them up in the
40 PCI ID database.
41 .TP
42 .B -x
43 Show hexadecimal dump of first 64 bytes of the PCI configuration space (the standard
44 header). Useful for debugging of drivers and
45 .I lspci
46 itself.
47 .TP
48 .B -xxx
49 Show hexadecimal dump of whole PCI configuration space. Available only for root
50 as several PCI devices
51 .B crash
52 when you try to read undefined portions of the config space (this behaviour probably
53 doesn't violate the PCI standard, but it's at least very stupid).
54 .TP
55 .B -b
56 Bus-centric view. Show all IRQ numbers and addresses as seen by the cards on the
57 PCI bus instead of as seen by the kernel.
58 .TP
59 .B -t
60 Show a tree-like diagram containing all buses, bridges, devices and connections
61 between them.
62 .TP
63 .B -s [[<bus>]:][<slot>][.[<func>]]
64 Show only devices in specified bus, slot and function. Each component of the device
65 address can be omitted or set as "*" meaning "any value". All numbers are
66 hexadecimal.  E.g., "0:" means all devices on bus 0, "0" means all functions of device 0
67 on any bus, "0.3" selects third function of device 0 on all buses and ".4" shows only
68 fourth function of each device.
69 .TP
70 .B -d [<vendor>]:[<device>]
71 Show only devices with specified vendor and device ID. Both ID's are given in
72 hexadecimal and may be omitted or given as "*" meaning "any value".
73 .TP
74 .B -i <file>
75 Use
76 .B
77 <file>
78 as PCI ID database instead of /usr/share/pci.ids.
79 .TP
80 .B -p <dir>
81 Use
82 .B <dir>
83 as directory containing PCI bus information instead of /proc/bus/pci.
84 .TP
85 .B -m
86 Dump PCI device data in machine readable form (both normal and verbose format supported)
87 for easy parsing by scripts.
88 .TP
89 .B -M
90 Invoke bus mapping mode which scans the bus extensively to find all devices including
91 those behind misconfigured bridges etc. Please note that this is intended only for
92 debugging and as it can crash the machine (only in case of buggy devices, but
93 unfortunately these happen to exist), it's available only to root. Also using
94 -M on PCI access methods which don't directly touch the hardware has no
95 sense since the results are (modulo bugs in lspci) identical to normal listing
96 modes.
97 .TP
98 .B --version
99 Shows 
100 .I lspci
101 version. This option should be used standalone.
102
103 .SH PCILIB OPTIONS
104 The PCI utilities use PCILIB (a portable library providing platform-independent
105 functions for PCI configuration space access) to talk to the PCI cards. The following
106 options control parameters of the library, especially what access method it uses.
107 By default, PCILIB uses the first available access method and displays no debugging
108 messages. Each switch is accompanied by a list of hardware/software configurations
109 it's supported in.
110
111 .TP
112 .B -P <dir>
113 Use Linux 2.1 style configuration access to directory
114 .B <dir>
115 instead of /proc/bus/pci. (Linux 2.1 or newer only)
116 .TP
117 .B -H1
118 Use direct hardware access via Intel configuration mechanism 1. (i386 and compatible only)
119 .TP
120 .B -H2
121 Use direct hardware access via Intel configuration mechanism 2. Warning: This method
122 is able to address only first 16 devices on any bus and it seems to be very
123 unrealiable in many cases. (i386 and compatible only)
124 .TP
125 .B -S
126 Use PCI access syscalls. (Linux on Alpha and UltraSparc only)
127 .TP
128 .B -F <file>
129 Extract all information from given file containing output of lspci -x. This is very
130 useful for analysis of user-supplied bug reports, because you can display the
131 hardware configuration in any way you want without disturbing the user with
132 requests for more dumps. (All systems)
133 .TP
134 .B -G
135 Increase debug level of the library. (All systems)
136
137 .SH FILES
138 .TP
139 .B /usr/share/pci.ids
140 A list of all known PCI ID's (vendors, devices, classes and subclasses).
141 .TP
142 .B /proc/bus/pci
143 An interface to PCI bus configuration space provided by the post-2.1.82 Linux
144 kernels. Contains per-bus subdirectories with per-card config space files and a
145 .I devices
146 file containing a list of all PCI devices.
147
148 .SH SEE ALSO
149 .BR setpci (8)
150
151 .SH AUTHOR
152 The Linux PCI Utilities are maintained by Martin Mares <mj@ucw.cz>.