]> git.ipfire.org Git - thirdparty/pciutils.git/blame - setpci.man
Released as pciutils 2.1.3.
[thirdparty/pciutils.git] / setpci.man
CommitLineData
727ce158 1.TH setpci 8 "@TODAY@" "@VERSION@" "Linux PCI Utilities"
b2c9b373
MM
2.IX setpci
3.SH NAME
6ece6bc6 4setpci \- configure PCI devices
b2c9b373
MM
5.SH SYNOPSIS
6.B setpci
7.RB [ options ]
8.B devices
9.BR operations ...
10
11.SH DESCRIPTION
12.PP
13.B setpci
727ce158
MM
14is a utility for querying and configuring PCI devices.
15
16To make use of all the features of this program, you need to have Linux kernel
172.1.82 or newer which supports the /proc/bus/pci interface. With older kernels,
18the PCI utilities have to use direct hardware access which is available
19only to root and it suffers from numerous race conditions and other problems.
20
b2c9b373
MM
21All numbers are entered in hexadecimal notation.
22
23.SH OPTIONS
24.TP
25.B -v
26Tells
27.I setpci
28to be verbose and display detailed information about configuration space accesses.
29.TP
30.B -f
31Tells
727ce158 32.I setpci
b2c9b373
MM
33not to complain when there's nothing to do (when no devices are selected).
34This option is intended for use in widely-distributed configuration scripts
35where it's uncertain whether the device in question is present in the machine
36or not.
37.TP
38.B -D
39`Demo mode' -- simulate configuration space accesses instead of really doing them.
40It's useful to try
41.B setpci -vD
42to see what your complex sequence of
43.B setpci
44operations does before you actually execute it.
45
46.SH DEVICE SELECTION
47.PP
48Before each sequence of operations you need to select which devices you wish that
49operation to affect.
50.TP
51.B -s [[<bus>]:][<slot>][.[<func>]]
52Select devices in specified bus, slot and function. Each component of the device
53address can be omitted or set as "*" meaning "any value". All numbers are
54hexadecimal. E.g., "0:" means all devices on bus 0, "0" means all functions of device 0
55on any bus, "0.3" selects third function of device 0 on all busses and ".4" selects only
56fourth function of each device.
57.TP
58.B -d [<vendor>]:[<device>]
59Select devices with specified vendor and device ID. Both ID's are given in
60hexadecimal and may be omitted or given as "*" meaning "any value".
61
62.SH OPERATIONS
63.PP
64To query value of a configuration register, just name it (either by typing its name or
65by typing register address with optional
66.BR .B ,
67.B .W
68or
69.B .L
70suffix specifying register width as byte, word or longword).
71.PP
72To set a register, write
73.BR reg = values
74where
75.B reg
76is the same you would use to query the register and
77.B values
78is a comma-separated list of values you want to write starting with the given
79address.
80
81.SH REGISTER NAMES
82.PP
83.B setpci
84knows the following configuration register names. See PCI bus specs for their precise
85meaning or consult
86.B /usr/include/linux/pci.h
87for few comments.
88.PP
89.nf
90VENDOR_ID
91DEVICE_ID
92COMMAND
93STATUS
94REVISION
95CLASS_PROG
96CLASS_DEVICE
97CACHE_LINE_SIZE
98LATENCY_TIMER
99HEADER_TYPE
100BIST
101BASE_ADDRESS_0
102BASE_ADDRESS_1
103BASE_ADDRESS_2
104BASE_ADDRESS_3
105BASE_ADDRESS_4
106BASE_ADDRESS_5
107CARDBUS_CIS
108SUBSYSTEM_VENDOR_ID
109SUBSYSTEM_ID
110ROM_ADDRESS
111INTERRUPT_LINE
112INTERRUPT_PIN
113MIN_GNT
114MAX_LAT
115PRIMARY_BUS
116SECONDARY_BUS
117SUBORDINATE_BUS
118SEC_LATENCY_TIMER
119IO_BASE
120IO_LIMIT
121SEC_STATUS
122MEMORY_BASE
123MEMORY_LIMIT
124PREF_MEMORY_BASE
125PREF_MEMORY_LIMIT
126PREF_BASE_UPPER32
127PREF_LIMIT_UPPER32
128IO_BASE_UPPER16
129IO_LIMIT_UPPER16
130BRIDGE_ROM_ADDRESS
131BRIDGE_CONTROL
132CB_CARDBUS_BASE
133CB_CAPABILITIES
134CB_SEC_STATUS
135CB_BUS_NUMBER
136CB_CARDBUS_NUMBER
137CB_SUBORDINATE_BUS
138CB_CARDBUS_LATENCY
139CB_MEMORY_BASE_0
140CB_MEMORY_LIMIT_0
141CB_MEMORY_BASE_1
142CB_MEMORY_LIMIT_1
143CB_IO_BASE_0
144CB_IO_BASE_0_HI
145CB_IO_LIMIT_0
146CB_IO_LIMIT_0_HI
147CB_IO_BASE_1
148CB_IO_BASE_1_HI
149CB_IO_LIMIT_1
150CB_IO_LIMIT_1_HI
151CB_SUBSYSTEM_VENDOR_ID
152CB_SUBSYSTEM_ID
153CB_LEGACY_MODE_BASE
154
727ce158
MM
155.SH PCILIB OPTIONS
156The PCI utilities use PCILIB (a portable library providing platform-independent
157functions for PCI configuration space access) to talk to the PCI cards. The following
158options control parameters of the library, especially what access method it uses.
159By default, PCILIB uses the first available access method and displays no debugging
160messages. Each switch is accompanied by a list of hardware/software configurations
161it's supported in.
162
163.TP
164.B -P <dir>
165Use Linux 2.1 style configuration access to directory
166.B <dir>
167instead of /proc/bus/pci. (Linux 2.1 or newer only)
168.TP
169.B -H1
170Use direct hardware access via Intel configuration mechanism 1. (i386 and compatible only)
171.TP
172.B -H2
173Use direct hardware access via Intel configuration mechanism 2. Warning: This method
174is able to address only first 16 devices on any bus and it seems to be very
175unrealiable in many cases. (i386 and compatible only)
176.TP
177.B -S
178Use PCI access syscalls. (Linux on Alpha and UltraSparc only)
179.TP
180.B -F <file>
181Extract all information from given file containing output of lspci -x. This is very
182useful for analysis of user-supplied bug reports, because you can display the
183hardware configuration in any way you want without disturbing the user with
184requests for more dumps. (All systems)
185.TP
186.B -G
187Increase debug level of the library. (All systems)
188
b2c9b373
MM
189.SH EXAMPLES
190.PP
191`setpci -d *:* latency_timer=40' sets the latency timer to 64 (40 hexadecimal).
192.PP
193`setpci -s 0 device_id vendor_id' lists ID's of devices in slot 0 in all busses.
194.PP
d4798a32
MM
195`setpci -s 12:3.4 3c.l=1,2,3' writes longword 1 to register 3c, 2 to register 3d
196and 3 to register 3e of device at bus 12, slot 3, function 4.
b2c9b373 197
727ce158
MM
198.SH SEE ALSO
199.BR lspci (8)
200
b2c9b373 201.SH AUTHOR
5a258860 202The Linux PCI Utilities are maintained by Martin Mares <mj@suse.cz>.