xref: /pciutils/ChangeLog (revision daf2ef4e)
1*daf2ef4eSMartin Mares2008-09-19  Martin Mares <[email protected]>
2*daf2ef4eSMartin Mares
3*daf2ef4eSMartin Mares	* Released as 3.0.2.
4*daf2ef4eSMartin Mares
5*daf2ef4eSMartin Mares	* Fixed a minor bug in the configure script, which caused warnings
6*daf2ef4eSMartin Mares	about redefinition of symbols during compilation.
7*daf2ef4eSMartin Mares
838254178SMartin Mares2008-09-11  Martin Mares <[email protected]>
938254178SMartin Mares
1038254178SMartin Mares	* Released as 3.0.1.
1138254178SMartin Mares
1238254178SMartin Mares	* Updated pci.ids to the most recent snapshot.
1338254178SMartin Mares
1438254178SMartin Mares	* Added a Cygwin port. Patch by Christopher Voltz, ported to the
1538254178SMartin Mares	current tree by Martin Mares.
1638254178SMartin Mares
1738254178SMartin Mares	* Worked around compatibility problems with various default settings
1838254178SMartin Mares	of wget (we have to set --no-timestamping explicitly). Thanks to Ville
1938254178SMartin Mares	Skytta for pointing that out.
2038254178SMartin Mares
2138254178SMartin Mares	* Fixed printing of MSI capabilities. Thanks to Matthew Wilcox for
2238254178SMartin Mares	a patch.
2338254178SMartin Mares
2438254178SMartin Mares	* Added decoding of several PCI-X capabilities: device/link/slot 2,
2538254178SMartin Mares	Advanced Error Reporting, Access Control Services, Alternative Routing-ID,
2638254178SMartin Mares	Single Root I/O Virtualization. Thanks to Yu Zhao for patches.
2738254178SMartin Mares
2838254178SMartin Mares	* Fixed bug in filters which caused them to refuse vendor/device ID 0xffff.
2938254178SMartin Mares
3038254178SMartin Mares	* README: The linux-pci mailing list has moved to [email protected].
3138254178SMartin Mares
3238254178SMartin Mares	* Fixed several build problems: builds without PCI_USE_DNS on Linux
3338254178SMartin Mares	and with PCI_USE_DNS on Solaris and *BSD. Static library mode also
3438254178SMartin Mares	compiles again on old versions of GCC.
3538254178SMartin Mares
36cec9f7e7SMartin Mares2008-04-10  Martin Mares <[email protected]>
37cec9f7e7SMartin Mares
38cec9f7e7SMartin Mares	* Released as 3.0.0.
39cec9f7e7SMartin Mares
40cec9f7e7SMartin Mares	* Updated API and ABI version.
41cec9f7e7SMartin Mares
42cd2f6a34SMartin Mares2008-02-20  Martin Mares <[email protected]>
43cd2f6a34SMartin Mares
44cd2f6a34SMartin Mares	* Released as 2.99.1-alpha2.
45cd2f6a34SMartin Mares
46cd2f6a34SMartin Mares	* Changed the default domain for the DNS resolver.
47cd2f6a34SMartin Mares
48165a50cbSMartin Mares2008-02-18  Martin Mares <[email protected]>
49165a50cbSMartin Mares
50165a50cbSMartin Mares	* Released as 2.99.1-alpha1.
51623234ecSMartin Mares
52a1fca487SMartin Mares	* The makefile system has been reworked. All configuration settings
53a1fca487SMartin Mares	are now passed to the configure script in environment variables,
54a1fca487SMartin Mares	allowing for easy tweaking in the top-level Makefile. All control
55a1fca487SMartin Mares	knobs are now described in the README.
56a1fca487SMartin Mares
57a1fca487SMartin Mares	* The libpci can be built as a shared library with properly restricted
58a1fca487SMartin Mares	symbol exports. Use `make SHARED=yes' to enable that or `make SHARED=local'
59a1fca487SMartin Mares	for a local testing build (with hardwired paths to the library, so that
60a1fca487SMartin Mares	it does not need installation).
61a1fca487SMartin Mares
62a1fca487SMartin Mares	* The example program has been moved from lib/example.c to the top-level
63a1fca487SMartin Mares	directory, because it should be built exactly as the other utilities
64a1fca487SMartin Mares	are. It has been also improved slightly to educate better.
65a1fca487SMartin Mares
66623234ecSMartin Mares	* The i386-ports method is enabled on Linux/x86_64 as well.
67623234ecSMartin Mares
68ae27e293SMartin Mares2008-02-13  Martin Mares <[email protected]>
69ae27e293SMartin Mares
70ae27e293SMartin Mares	* Released as 2.2.10-net2.
71ae27e293SMartin Mares
72ae27e293SMartin Mares	* Support for resolving of PCI ID's using DNS together with a local
73ae27e293SMartin Mares	cache of resolved entries has been added. See the `-q' and `-Q' options
74ae27e293SMartin Mares	of lspci.
75ae27e293SMartin Mares
76ae27e293SMartin Mares	* The library now has a generic system of settable parameters, which
77ae27e293SMartin Mares	also include settings of the DNS resolver and cache. An `-O' option
78ae27e293SMartin Mares	has been added to lspci and setpci to allow setting of these options.
79ae27e293SMartin Mares
80ae27e293SMartin Mares	* Configuration of the access methods are now specified by the new
81ae27e293SMartin Mares	parameter system, replacing the pci_access->method_params array.
82ae27e293SMartin Mares
83ae27e293SMartin Mares	* Access methods now also have sensible names and help texts and it
84ae27e293SMartin Mares	is possible to look up method ID by a name.
85ae27e293SMartin Mares
86ae27e293SMartin Mares	* An `-A' switch has been added to both lspci and setpci, allowing to
87ae27e293SMartin Mares	select an arbitrary access method. The `-P' switch (configure proc
88ae27e293SMartin Mares	backend) has been removed as it is no longer needed and I do not know
89ae27e293SMartin Mares	any its user.
90ae27e293SMartin Mares
91ae27e293SMartin Mares	* Several source files have been split for better maintainability
92ae27e293SMartin Mares	(most notably the resolving of ID's).
93ae27e293SMartin Mares
94ae27e293SMartin Mares	* Man pages and help texts have been updated. A new man page `pcilib(7)'
95ae27e293SMartin Mares	has been added and description of library options has been moved there.
96ae27e293SMartin Mares
97ae27e293SMartin Mares	* When an unknown device ID is encountered, we print `Device <id>'
98ae27e293SMartin Mares	instead of `Unknown device <id>'. It uses less space and it also
99ae27e293SMartin Mares	should reduce the number of inexperienced users complaining that
100ae27e293SMartin Mares	the device is not supported by the OS. To lookup up OS drivers,
101ae27e293SMartin Mares	use the `-k' option.
102ae27e293SMartin Mares
103ae27e293SMartin Mares	* PCI_LIB_VERSION has been bumped to 0x020299.
104ae27e293SMartin Mares
105ae27e293SMartin Mares	* Makefile: stripping of the binaries during installation can be
106ae27e293SMartin Mares	overridden by the STRIP variable.
107ae27e293SMartin Mares
108ae27e293SMartin Mares	* lib/types.h: We use the integer types from <stdint.h> if the
109ae27e293SMartin Mares	compiler claims C99 support.
110ae27e293SMartin Mares
1110fc3bd18SMartin Mares2008-02-11  Martin Mares <[email protected]>
1120fc3bd18SMartin Mares
1132466b14bSMartin Mares	* Released as 2.2.10.
1142466b14bSMartin Mares
1156add52f5SMartin Mares	* lspci.c, setpci.c: Cleaned up the list of options.
1166add52f5SMartin Mares
1170fc3bd18SMartin Mares	* lib/names.c: Fix displaying of errors reported by zlib.
1180fc3bd18SMartin Mares	Previously, the buffer containing the error message had
1190fc3bd18SMartin Mares	been deallocated by gzclose() before the message was printed.
1200fc3bd18SMartin Mares
121d26b5378SMartin Mares2008-01-07  Martin Mares <[email protected]>
122d26b5378SMartin Mares
123d26b5378SMartin Mares	* update-pciids.sh: Added quiet mode (-q). Clean up uncompressed
124d26b5378SMartin Mares	files left by previous versions of the pciutils. Patch by Mike
125d26b5378SMartin Mares	Frysinger.
126d26b5378SMartin Mares
127d26b5378SMartin Mares	* update-pciids.man: Mention the -q switch.
128d26b5378SMartin Mares
129dc01dd60SMartin Mares2007-11-29  Martin Mares <[email protected]>
130dc01dd60SMartin Mares
131dc01dd60SMartin Mares	* lib/dump.c: Squashed compiler warnings about code with
132dc01dd60SMartin Mares	no effect (there really were surplus *'s).
133dc01dd60SMartin Mares
13411339c0dSMartin Mares2007-11-06  Martin Mares <[email protected]>
13511339c0dSMartin Mares
13613463566SMartin Mares	* Released as 2.2.9.
13713463566SMartin Mares
13811339c0dSMartin Mares	* lspci.c: Added a new switch `-k' which requests printing
13911339c0dSMartin Mares	of information on kernel drivers attached to each device
14011339c0dSMartin Mares	and on kernel modules reporting the ability to handle the
14111339c0dSMartin Mares	device. So far, this is supported only on Linux with the
14211339c0dSMartin Mares	sysfs back-end, so it is implemented internally in the lspci
14311339c0dSMartin Mares	instead of the libpci. Thanks to Anicka <[email protected]>
14411339c0dSMartin Mares	for help.
14511339c0dSMartin Mares
1463de798bdSMartin Mares2007-10-19  Martin Mares <[email protected]>
1473de798bdSMartin Mares
1486cdb9d93SMartin Mares	* Makefile, lib/Makefile: Moved -lz from LDFLAGS to LDLIBS.
1496cdb9d93SMartin Mares	Also added an explicit pattern rule for linking to make sure
1506cdb9d93SMartin Mares	that LDLIBS is used on all platforms. Thanks to Dan Nicholson
1516cdb9d93SMartin Mares	for the suggestion.
1526cdb9d93SMartin Mares
1536cdb9d93SMartin Mares2007-10-19  Martin Mares <[email protected]>
1546cdb9d93SMartin Mares
155a404b115SMartin Mares	* Released as 2.2.8.
156a404b115SMartin Mares
1573de798bdSMartin Mares	* pci.ids: Revised class codes to match Conventional PCI 3.0 specs.
1583de798bdSMartin Mares	Added a couple of new ones, renumbered `ADMA continuous operation'
1593de798bdSMartin Mares	prog-if to 0x30 (even the old SATA Class Code ECN doesn't mention
1603de798bdSMartin Mares	0x40) and renumbered the satellite communication controllers.
1613de798bdSMartin Mares
1622d2c4810SMartin Mares	* lib/header.h: Include `PCI hot-plug' and `Secure device'
163f7c76ec5SMartin Mares	capabilities from PCI 3.0 specs. Also added `SATA HBA' and
164f7c76ec5SMartin Mares	`Advanced features' caps from various ECN's.
1652d2c4810SMartin Mares
166fa2273caSMartin Mares	* lspci.c: All known capabilities have at least their name displayed
167fa2273caSMartin Mares	now. When we are unable to decode them completely, we signalize it
168fa2273caSMartin Mares	with a `<?>' mark.
169fa2273caSMartin Mares
170fa2273caSMartin Mares	* lspci.man: Document `<?>' and also mention that extended config
171fa2273caSMartin Mares	space is currently available only with the linux_sysfs back-end.
172fa2273caSMartin Mares
17331c9bb28SMartin Mares	* lspci.c: Decode the Debug port capability (per EHCI 0.96 spec).
17431c9bb28SMartin Mares
175a387042eSMartin Mares	* lspci.c: Big code cleanup: re-arranged functions in the code,
176a387042eSMartin Mares	renamed everything related to capabilities to cap_* and
177a387042eSMartin Mares	all options except verbose to opt_*.
178a387042eSMartin Mares
1799c79fcc4SMartin Mares2007-10-14  Martin Mares <[email protected]>
1809c79fcc4SMartin Mares
1819c79fcc4SMartin Mares	* lib/[fno]bsd-*: Removed extraneous braces.
1829c79fcc4SMartin Mares
183d5b4cd14SMartin Mares2007-10-12  Martin Mares <[email protected]>
184d5b4cd14SMartin Mares
185d5b4cd14SMartin Mares	* Capability loop detection introduced 2.2.7 did not work
186d5b4cd14SMartin Mares	  properly with extended capabilities. Fixed.
187d5b4cd14SMartin Mares
188594de878SMartin Mares2007-10-05  Martin Mares <[email protected]>
189594de878SMartin Mares
1908a23eadcSMartin Mares	* Released as 2.2.7.
1918a23eadcSMartin Mares
192594de878SMartin Mares	* lspci.c (show_caps, show_ext_caps): Detect and report loops in
193594de878SMartin Mares	capability lists.
194594de878SMartin Mares
1958a23eadcSMartin Mares	* lspci.c, lib/header.h: Finished decoding of the PCI Express
1968a23eadcSMartin Mares	capability. The extended capabilities remain undecoded for now,
1978a23eadcSMartin Mares	but at least the list of them has been updated to reflect the
1988a23eadcSMartin Mares	current PCI Express 2.0 spec.
1998a23eadcSMartin Mares
2008a23eadcSMartin Mares	* lspci.c, lib/header.h: Decode new bits of traditional registers
2018a23eadcSMartin Mares	as defined by PCIE / PCI-X. This includes discard timers in the bridge
2028a23eadcSMartin Mares	control register and INTx enable/status in device control/status
2038a23eadcSMartin Mares	registers.
2048a23eadcSMartin Mares
2058a23eadcSMartin Mares	* lib/fbsd-device.c: Support domains on new FreeBSD's. Contributed
2068a23eadcSMartin Mares	by Marius Strobl.
2078a23eadcSMartin Mares
20899091df9SMartin Mares2007-09-12  Hasso Tepper <[email protected]>
20999091df9SMartin Mares
21099091df9SMartin Mares	* Extended the fbsd-device backend to run on Dragonfly BSD.
21199091df9SMartin Mares
21299091df9SMartin Mares	* lspci.c: alloca() is declared in <stdlib.h> on BSD's, not <alloca.h>.
21399091df9SMartin Mares
21409156b3bSMartin Mares2007-09-03  Martin Mares <[email protected]>
21509156b3bSMartin Mares
21609156b3bSMartin Mares	* Resurrected the Windows port, including cross-compilation by MinGW.
21709156b3bSMartin Mares	Patch by Samuel Bronson <[email protected]>.
21809156b3bSMartin Mares
219325a3c50SMartin Mares2007-08-31  Martin Mares <[email protected]>
220325a3c50SMartin Mares
221325a3c50SMartin Mares	* Makefile, lib/Makefile: `ar' and `ranlib' can be overriden to allow
222325a3c50SMartin Mares	cross-compilation.
223325a3c50SMartin Mares
224a2322147SMartin Mares2007-08-27  Martin Mares  <[email protected]>
225a2322147SMartin Mares
226a2322147SMartin Mares	* lib/names.c (pci_open): When calling gzopen(), use "rb" file mode
227a2322147SMartin Mares	instead of "r". This is needed on DOS systems, where this function
228a2322147SMartin Mares	somewhat illogically uses the binary flag for the compressed file
229a2322147SMartin Mares	instead of the decompressed stream inside, where binariness really
230a2322147SMartin Mares	matters.
231a2322147SMartin Mares
2324f2c5b94SMartin Mares2007-08-14  Martin Mares  <[email protected]>
2334f2c5b94SMartin Mares
2344f2c5b94SMartin Mares	* lspci.c (show_ht): Added decoding of Hypertransport MSI mapping capability,
2354f2c5b94SMartin Mares	based on a patch by Jason Gunthorpe.
2364f2c5b94SMartin Mares
2374f2c5b94SMartin Mares	* tests/cap-MSI-mapping: Added a test case. I plan to add test cases
2384f2c5b94SMartin Mares	(which are dumps of config space) for all new features.
2394f2c5b94SMartin Mares
2400d7f5331SMartin Mares2007-06-20  Martin Mares  <[email protected]>
2410d7f5331SMartin Mares
2427cebe481SMartin Mares	* Released as 2.2.6.
2437cebe481SMartin Mares
2440d7f5331SMartin Mares	* Makefile: Added an "install-lib" target. Thanks to Dan Nicholson
2450d7f5331SMartin Mares	for a patch.
2460d7f5331SMartin Mares
2477cebe481SMartin Mares	* Makefile, lib/Makefile: Generate and install pkg-config file
2487cebe481SMartin Mares	for libpci. Again by Dan Nicholson.
2497cebe481SMartin Mares
2500d7f5331SMartin Mares2007-06-20  Thomas Schwinge  <[email protected]>
2510d7f5331SMartin Mares
2520d7f5331SMartin Mares	* lib/i386-io-hurd.h: Rewritten for new Hurd kernels.
2530d7f5331SMartin Mares
2546e4a45edSMartin Mares2007-05-04  Martin Mares  <[email protected]>
2556e4a45edSMartin Mares
25655c89179SMartin Mares	* Released as 2.2.5.
25755c89179SMartin Mares
2586e4a45edSMartin Mares	* pci.ids: Updated to the current snapshot of the database.
2596e4a45edSMartin Mares
260d0b07542SMartin Mares2007-02-14  Martin Mares  <[email protected]>
261d0b07542SMartin Mares
262d0b07542SMartin Mares	* lspci.c (show_express): Added PCI/PCI-X to PCI-Express Bridge type.
263d0b07542SMartin Mares	Patch by Mark Glines.
264d0b07542SMartin Mares
2653df35926SMartin Mares2007-02-09  Martin Mares  <[email protected]>
2663df35926SMartin Mares
2673df35926SMartin Mares	* pci.ids: Updated to the current snapshot of the database.
2683df35926SMartin Mares
269e49ed044SMartin Mares2007-02-06  Martin Mares  <[email protected]>
270e49ed044SMartin Mares
2711ac3a99dSMartin Mares	* Replaced bzero() by memset() everywhere, it's better to lose a tiny
2721ac3a99dSMartin Mares	bit of readability than maintain hacks to make it work on various systems.
2731ac3a99dSMartin Mares
274b0eb18ccSMartin Mares	* lib/configure: tr on Solaris is a bit weird and it requires `[A-Z]'
275b0eb18ccSMartin Mares	instead of `A-Z'. Fortunately, the extra brackets don't hurt otherwise.
276b0eb18ccSMartin Mares
277e49ed044SMartin Mares	* lib/types.h, lib/configure: Solaris should use <stdint.h> to get precise
278e49ed044SMartin Mares	integer types.
279e49ed044SMartin Mares
2809de2768cSMartin Mares2007-02-04  Martin Mares  <[email protected]>
2819de2768cSMartin Mares
2829de2768cSMartin Mares	* lspci.c: alloca() needs <alloca.h>.
2839de2768cSMartin Mares
284d19394dbSMartin Mares2006-09-17  Martin Mares  <[email protected]>
285d19394dbSMartin Mares
286d19394dbSMartin Mares	* lib/dump.c: Fixed a couple of bugs in the dump backend which caused
287d19394dbSMartin Mares	devices with domains or with extended config space to be read incorrectly.
288d19394dbSMartin Mares	Also, dumps with partial lines are allowed now.
289d19394dbSMartin Mares
290934e7e36SMartin Mares2006-09-10  Martin Mares  <[email protected]>
291934e7e36SMartin Mares
292f09856deSMartin Mares	* pci.ids: Updated to the current database snapshot.
293f09856deSMartin Mares
294934e7e36SMartin Mares	* lspci.c (scan_device): If an error occurs when reading the standard config
295934e7e36SMartin Mares	header of a device, report it and ignore the device and return with exit
296934e7e36SMartin Mares	code 2 at the end.
297934e7e36SMartin Mares
298b2055313SMartin Mares2006-09-09  Martin Mares  <[email protected]>
299b2055313SMartin Mares
300fb260653SMartin Mares	* Released as 2.2.4.
301fb260653SMartin Mares
3021865e2ddSMartin Mares	* maint/release: Remind the maintainer about the current PCI_LIB_VERSION.
3031865e2ddSMartin Mares
304028dffb2SMartin Mares	* lib/pci.h: Updated PCI_LIB_VERSION.
305028dffb2SMartin Mares
30613081e57SMartin Mares	* lspci.c (show_machine): In the `-m' mode, do proper shell escaping
30713081e57SMartin Mares	if the fields printed contain quotes or backslashes.
30813081e57SMartin Mares
3093fd6b4d2SMartin Mares	* lspci.c (show_machine): Added a `-vmm' mode, which removes the misuse
3103fd6b4d2SMartin Mares	of the `Device' tag for two different purposes.
3113fd6b4d2SMartin Mares
312840d09aeSMartin Mares	* Makefile: Moved all system-dependent decisions to lib/configure,
313840d09aeSMartin Mares	since config.mk is included in the top-level Makefile anyway.
314840d09aeSMartin Mares
3152100f710SMartin Mares	* lib/configure: When configuring for Linux, ignore the kernel version
3162100f710SMartin Mares	and always build all access methods.
3172100f710SMartin Mares
3183e9c7a18SMartin Mares	* Makefile (CFLAGS): Removed -Winline, it's not needed and triggers
3193e9c7a18SMartin Mares	at many non-interesting places with gcc 3.4.
3203e9c7a18SMartin Mares
32194db5c82SMartin Mares	* Whitespace cleanup of all source files.
32294db5c82SMartin Mares
323cc062b4aSMartin Mares	* The pci.ids file can be stored compressed if zlib is available.
324cc062b4aSMartin Mares	Added transparent decompression to lib/names.c, modified update-pciids.sh
325cc062b4aSMartin Mares	to keep the file compressed if applicable, updated Makefiles.
326cc062b4aSMartin Mares	Based on a patch by Matthew Wilcox, but all the bugs are mine.
327cc062b4aSMartin Mares
328f4ddb8d3SMartin Mares	* Makefile, README: Allow installation to be done to a different directory
329f4ddb8d3SMartin Mares	from the one we will eventually be placed in by setting DESTDIR.
330f4ddb8d3SMartin Mares	Patch by Matthew Wilcox.
331f4ddb8d3SMartin Mares
33216e37012SMartin Mares	* Added .gitignore files.
33316e37012SMartin Mares
334c7f5314dSMartin Mares	* Makefile (clean): Clean *.orig, too.
335c7f5314dSMartin Mares
336afebde01SMartin Mares	* Cleaned up usage of `char' and `byte'.
337afebde01SMartin Mares
338fd54ccebSMartin Mares	* lib/header.h: PCI_CLASS_DOCKING_OTHER should be 0x0a80, not 0x0a01.
339fd54ccebSMartin Mares
340b2055313SMartin Mares	* lib/header.h: Added PCI_CLASS_xxx constants for all classes currently
341b2055313SMartin Mares	defined in the pci.ids file.
342b2055313SMartin Mares
3434254d153SMartin Mares2006-08-01  Martin Mares  <[email protected]>
3444254d153SMartin Mares
3454254d153SMartin Mares	* lib/i386-io-hurd.h: Fixed a silly typo.
3464254d153SMartin Mares
3471c5cc9b5SMartin Mares2006-07-30  Martin Mares  <[email protected]>
3481c5cc9b5SMartin Mares
34938a9e3c3SMartin Mares	* lib/Makefile: Added a missing rule for obsd-device.o.
35038a9e3c3SMartin Mares
351c7ddfa3eSMartin Mares	* lspci.c, lib/header.h: Added support for MSI per-vector masking.
352c7ddfa3eSMartin Mares	Contributed by Petr Vandrovec.
353c7ddfa3eSMartin Mares
354248a04f8SMartin Mares	* lspci.c, lib/header.h: Added support for the `bridge subsystem ID'
355248a04f8SMartin Mares	capability. Contributed by Petr Vandrovec.
356248a04f8SMartin Mares
357f29dcc87SMartin Mares	* lspci.c (show_htype1): Fixed bug in printing of 64-bit prefetchable
358f29dcc87SMartin Mares	memory windows. Fix by Petr Vandrovec.
359f29dcc87SMartin Mares
3608eab3bffSMartin Mares	* maint/release.pm: Exclude .git directory from releases.
3618eab3bffSMartin Mares
362d305d704SMartin Mares	* lib/i386-ports.c, lib/i386-io-*: Report failures during port access
363d305d704SMartin Mares	initialization by a->warn() instead of calling printf() or perror()
364d305d704SMartin Mares	directly.
365d305d704SMartin Mares
3669007a292SMartin Mares	* lib/i386-ports.c, lib/i386-io-*: Moved the logic which keeps track of
3679007a292SMartin Mares	the port access state to generic code.
3689007a292SMartin Mares
369bd20d5b5SMartin Mares	* lib/i386-io-hurd.h: Ask the kernel for I/O port access appropriately.
370bd20d5b5SMartin Mares	Contributed by Thomas Schwinge and Samuel Thibault.
371bd20d5b5SMartin Mares
37273750606SMartin Mares	* lib/i386-ports.c: Define _GNU_SOURCE, it's needed by the Hurd module.
37373750606SMartin Mares
374d71daa45SMartin Mares	* lib/header.h: Whitespace cleanups.
375d71daa45SMartin Mares
3761c5cc9b5SMartin Mares	* lib/i386-io-windows.h: Fixed indentation and spelling.
3771c5cc9b5SMartin Mares
3781c5cc9b5SMartin Mares	* README.Windows: Mention that WinIO.dll is needed and where to get it.
3791c5cc9b5SMartin Mares
380c2b144efSMartin Mares2006-06-27  Martin Mares  <[email protected]>
381c2b144efSMartin Mares
38214d4f989SMartin Mares	* lib/Makefile, Makefile: Added rules for building and cleaning the example.
38314d4f989SMartin Mares
38414d4f989SMartin Mares	* lib/example.c: Show how to use PCI_FILL_CLASS and used another register
38514d4f989SMartin Mares	for demonstrating the config space accesses. The example is still very
38614d4f989SMartin Mares	incomplete, though.
38714d4f989SMartin Mares
388c2b144efSMartin Mares	* lib/pci.h, lib/generic.c: Added PCI_FILL_CLASS.
389c2b144efSMartin Mares
390c2b144efSMartin Mares	* lib/sysfs.c: Fetch device ID and class from sysfs, because they can
391c2b144efSMartin Mares	be modified by kernel fixups.
392c2b144efSMartin Mares
393c2b144efSMartin Mares	* lspci.c: Use PCI_FILL_CLASS. Thanks to Matthew Willcox for the patch.
394c2b144efSMartin Mares
395bc2eed2dSMartin Mares2006-06-03  Martin Mares  <[email protected]>
396bc2eed2dSMartin Mares
397bc2eed2dSMartin Mares	* lspci.c: Introduced the -nn switch. Thanks to David N. Welton
398bc2eed2dSMartin Mares	for the idea.
399bc2eed2dSMartin Mares
400bc2eed2dSMartin Mares	* lib/names.c (pci_lookup_name): Introduced PCI_LOOKUP_MIXED and
401bc2eed2dSMartin Mares	cleaned up the name selection code.
402bc2eed2dSMartin Mares
403c72eeddeSMartin Mares	* lib/names.c (pci_lookup_name): If PCI_LOOKUP_NO_NUMBERS is given,
404c72eeddeSMartin Mares	pci_access->numeric_ids is ignored.
405c72eeddeSMartin Mares
406c72eeddeSMartin Mares	* lib/names.c (pci_lookup_name): When class is identified and
407c72eeddeSMartin Mares	subclass isn't, display class name and subclass number.
408c72eeddeSMartin Mares
4092f294d4bSMartin Mares2006-05-31  Martin Mares  <[email protected]>
4102f294d4bSMartin Mares
4112f294d4bSMartin Mares	* setpci.c (main): Don't crash when an invalid width is specified.
4122f294d4bSMartin Mares
41381afa98cSMartin Mares	* lspci.c, setpci.c, common.c: die() now uses the right program
41481afa98cSMartin Mares	name when printing an error message.
41581afa98cSMartin Mares
4160ac282f2SMartin Mares2006-05-19  Martin Mares  <[email protected]>
4170ac282f2SMartin Mares
4180ac282f2SMartin Mares	* README: Mention the public GIT tree.
4190ac282f2SMartin Mares
4200ac282f2SMartin Mares	* README: Updated the list of ports.
4210ac282f2SMartin Mares
422d1058e9dSMartin Mares2006-05-10  Martin Mares  <[email protected]>
423d1058e9dSMartin Mares
424d1058e9dSMartin Mares	* lib/configure, lib/fbsd-device.c: Added support for GNU/kFreeBSD.
425d1058e9dSMartin Mares	Thanks to Petr Salinger for the patch.
426d1058e9dSMartin Mares
427abf8d505SMartin Mares2006-05-05  Martin Mares  <[email protected]>
428abf8d505SMartin Mares
4292ae2d1aeSMartin Mares	* Released as 2.2.3.
4302ae2d1aeSMartin Mares
4312ae2d1aeSMartin Mares	* lspci.c (scan_device): The -D switch didn't work as intended
4322ae2d1aeSMartin Mares	in -m mode.
4332ae2d1aeSMartin Mares
4342ae2d1aeSMartin Mares2006-05-05  Martin Mares  <[email protected]>
4352ae2d1aeSMartin Mares
4361d5cf727SMartin Mares	* Released as 2.2.2.
4371d5cf727SMartin Mares
4388a830168SMartin Mares	* pci.ids: Updated to the current database snapshot.
4398a830168SMartin Mares
440b6359063SMartin Mares	* lib/obsd-device.c (and other files in lib/*): Added OpenBSD
441b6359063SMartin Mares	interface by Matthieu Herrb <[email protected]>, based on
442b6359063SMartin Mares	the existing FreeBSD interface.
443b6359063SMartin Mares
444abf8d505SMartin Mares	* Moved pciutils to a GIT repository, which now contains merged
445abf8d505SMartin Mares	history from both CVS and Arch. Good bye, TLA!
446abf8d505SMartin Mares
4476ac70402SMartin Mares2006-03-21  Martin Mares  <[email protected]>
4486ac70402SMartin Mares
4492a124daeSMartin Mares	* lspci.c (show_slot_name): Avoid the previous changes in default
4502a124daeSMartin Mares	display of domain name when in machine-readable mode. However, `-D'
4512a124daeSMartin Mares	forces domain display even there.
4522a124daeSMartin Mares
4536ac70402SMartin Mares	* lspci.man: Added a warning on -m being the only format, which is
4546ac70402SMartin Mares	guaranteed to be stable between lspci versions.
4556ac70402SMartin Mares
4561bbdea17SMartin Mares2006-03-13  Martin Mares  <[email protected]>
4571bbdea17SMartin Mares
458af61eb25SMartin Mares	* lspci.man: Documented the -D switch.
459af61eb25SMartin Mares
460af61eb25SMartin Mares	* lspci.c (show_slot_name, scan_device): If there are multiple PCI
461af61eb25SMartin Mares	domains or if the `-D' switch is used, show the domain number for
462af61eb25SMartin Mares	all devices.
463af61eb25SMartin Mares
4647a61b93cSMartin Mares	* lspci.c (show_verbose): Report cache line size in bytes.
4657a61b93cSMartin Mares
4661bbdea17SMartin Mares	* update-pciids.sh: Use curl if available. Patch by Matthew Wilcox.
4671bbdea17SMartin Mares
4680e78ef8aSMartin Mares2006-01-04  Martin Mares  <[email protected]>
4690e78ef8aSMartin Mares
4700e78ef8aSMartin Mares	* lspci.c (show_express_link): Fixed decoding of link status register.
4710e78ef8aSMartin Mares	Thanks to Roland Dreier for his report.
4720e78ef8aSMartin Mares
473e6859953SMartin Mares2005-12-12  Martin Mares  <[email protected]>
474e6859953SMartin Mares
475e6859953SMartin Mares	* lib/nbsd-libpci.c: If libpci is used by an ordinary user, allow
476e6859953SMartin Mares	at least read-only access. Patch by Pavel Celeda <[email protected]>.
477e6859953SMartin Mares
478e6859953SMartin Mares	* Makefile: Corrected library path on NetBSD.
479e6859953SMartin Mares
480a99c0d69SMartin Mares2005-11-26  Martin Mares  <[email protected]>
481a99c0d69SMartin Mares
482e4af70c6SMartin Mares	* Released as 2.2.1.
483e4af70c6SMartin Mares
484a99c0d69SMartin Mares	* lspci.c (show_machine): Subsystem vendors were printed incorrectly
485a99c0d69SMartin Mares	in machine-readable modes. Thanks to Pavel Celeda for a bug report.
486a99c0d69SMartin Mares
487f23fd3fcSMartin Mares2005-10-11  Martin Mares  <[email protected]>
488f23fd3fcSMartin Mares
489f23fd3fcSMartin Mares	* lspci.c (new_bus): Fixed a memory leak. Thanks to Paul Sangree for reporting it.
490f23fd3fcSMartin Mares
49115296723SMartin Mares2005-09-21  Martin Mares  <[email protected]>
49215296723SMartin Mares
49315296723SMartin Mares	* Released as 2.2.0.
49415296723SMartin Mares
49540b6d93fSMartin Mares	* pci.ids: Updated copyright header.
49640b6d93fSMartin Mares
49715296723SMartin Mares	* lib/sysfs.c (sysfs_get_resources): Removed warning about unsupported
49815296723SMartin Mares	64-bit addresses, they are now always supported.
49915296723SMartin Mares
50015296723SMartin Mares	* lspci.c (show_bases): Corrected printing of 64-bit addresses
50115296723SMartin Mares	in bus-centric mode.
50215296723SMartin Mares
50315296723SMartin Mares	* lib/configure: Enable 64-bit addresses on all Linux systems.
50415296723SMartin Mares
50515296723SMartin Mares	* lib/types.h: Don't pad 64-bit addresses to 16 xigits, only to 8 if they
50615296723SMartin Mares	are shorter.
50715296723SMartin Mares
508224707baSMartin Mares2005-09-11  Martin Mares  <[email protected]>
509224707baSMartin Mares
510224707baSMartin Mares	* Released as 2.1.99-test11.
511224707baSMartin Mares
512224707baSMartin Mares	* lspci.c: Removed unnecessary trailing zeros in pci_lookup_name() calls.
513224707baSMartin Mares
514aeaca5d3SMartin Mares2005-09-10  Martin Mares  <[email protected]>
515aeaca5d3SMartin Mares
516224707baSMartin Mares	* Released as 2.1.99-test10.
517224707baSMartin Mares
51863e6f2e0SMartin Mares	* pci.ids: Synchronized with the current database snapshot.
51963e6f2e0SMartin Mares
520043ebdeeSMartin Mares	* update-pciids.sh: Changed the default URL for downloading pci.ids
521043ebdeeSMartin Mares	to http://pciids.sourceforge.net/v2.2/pci.ids.
522043ebdeeSMartin Mares
523043ebdeeSMartin Mares	* lib/pci.h (PCI_LIB_VERSION): Added version identifier.
524043ebdeeSMartin Mares
525aeaca5d3SMartin Mares	* lib/names.c: Rewritten the name database module almost from scratch.
526aeaca5d3SMartin Mares	Everything is much cleaner and there are hopefully no more memory leaks;
527aeaca5d3SMartin Mares	pci_lookup_name() now uses varargs in a backward compatible fashion.
528aeaca5d3SMartin Mares	Introduced PCI_LOOKUP_NO_NUMBERS.
529aeaca5d3SMartin Mares
530aeaca5d3SMartin Mares	The new code supports subsystem entries not tied to a specific device.
531aeaca5d3SMartin Mares	I had to extend the format of pci.ids in order to support it, so I have
532aeaca5d3SMartin Mares	extended the idea of the "C" (class) blocks and introduced "S" blocks
533aeaca5d3SMartin Mares	for subsystems. To avoid doing more incompatible changes in the future,
534aeaca5d3SMartin Mares	the parser skips unknown single-letter blocks without reporting errors.
535aeaca5d3SMartin Mares
536121c76c9SMartin Mares2005-08-23  Martin Mares  <[email protected]>
537121c76c9SMartin Mares
53854e13765SMartin Mares	* Released as 2.1.99-test9.
53954e13765SMartin Mares
54054e13765SMartin Mares	* Makefile (OPT): Removed -fomit-frame-pointer, it's default in recent
54154e13765SMartin Mares	gcc versions when optimizing anyway.
54254e13765SMartin Mares
54354e13765SMartin Mares	* Made the path to pci.ids customizable and independent on the SHAREDIR.
54454e13765SMartin Mares	Just override IDSDIR in the top-level Makefile.
54554e13765SMartin Mares
54654e13765SMartin Mares	* pci.ids: Synchronized with the current database snapshot.
54754e13765SMartin Mares
54884d437d6SMartin Mares	* lspci.man, setpci.man: Improved the man pages. Documented all access
54984d437d6SMartin Mares	methods and which operations are privileged.
55084d437d6SMartin Mares
55184d437d6SMartin Mares	* lspci.c: Another rewrite of config register caching, now also including
55284d437d6SMartin Mares	lots of internal checks. It should be now perfectly able to cope with
55384d437d6SMartin Mares	portions of the configuration space being inaccessible, for example
55484d437d6SMartin Mares	due to insufficient access rights.
55584d437d6SMartin Mares
5563b8bf739SMartin Mares	* lspci.c (show_pcix_nobridge, show_pcix_bridge): Cleaned up dumping of PCI-X
5573b8bf739SMartin Mares	capabilities. Includes partial support for PCI-X 2.0 (probably incomplete
5583b8bf739SMartin Mares	as I haven't seen the spec).
5593b8bf739SMartin Mares
5603b8bf739SMartin Mares	* lspci.c: Quell warnings about unused parameters.
5613b8bf739SMartin Mares
56284d437d6SMartin Mares	* lspci.c: Removed C++ comments.
56384d437d6SMartin Mares
5643b8bf739SMartin Mares	* lib/header.h: Merged definitions of extended capabilities and some new
5653b8bf739SMartin Mares	PCI-X capability bits from linux-2.6.11/include/pci.h.
5663b8bf739SMartin Mares
5673b8bf739SMartin Mares	* lspci.c (show_caps): Try to scan extended capabilities only if the
5683b8bf739SMartin Mares	device has either PCI-X or PCI Express capability in its normal capability
5693b8bf739SMartin Mares	list.
5703b8bf739SMartin Mares
571f7821e53SMartin Mares	* lib/dump.c (dump_init): Reading of dumps works again. The dump reader
572f7821e53SMartin Mares	now also remembers how much data it has read and refuses attempts to
573f7821e53SMartin Mares	access more than that.
574ea4e5f5dSMartin Mares
57546ea554dSMartin Mares	* setpci.man, lspci.c, README: prefer spelling "buses" over "busses".
57646ea554dSMartin Mares
5778afaab22SMartin Mares	* lspci.c: If alloca() is not available, use xmalloc(), not malloc().
5788afaab22SMartin Mares
579121c76c9SMartin Mares	* lib/configure: Added x86_64 on Linux.
580121c76c9SMartin Mares
581c1c2c30eSMartin Mares2005-08-22  Martin Mares  <[email protected]>
582c1c2c30eSMartin Mares
583b9ca9147SMartin Mares	* lib/filter.c (pci_filter_parse_slot): Fixed parsing of domain filters.
584b9ca9147SMartin Mares	Thanks to Matthew Wilcox for bug report.
585b9ca9147SMartin Mares
586c1c2c30eSMartin Mares	* lspci.c: Corrected spelling of "Hz" (it was "hz" at several places).
587b9ca9147SMartin Mares	Thanks to Krzysztof Oledzki for pointing that out.
588c1c2c30eSMartin Mares
58926542a0bSMartin Mares2004-08-19  Martin Mares  <[email protected]>
59026542a0bSMartin Mares
59126542a0bSMartin Mares	* pciutils.spec (%attr): Setting attributes for /sbin/* is an anachronism,
59226542a0bSMartin Mares	because pciutils by default install to /usr/sbin. Update.
59326542a0bSMartin Mares
5946aa54f1bSMartin Mares2004-08-13  Martin Mares  <[email protected]>
5956aa54f1bSMartin Mares
596aabb0a92SMartin Mares	* Released as 2.1.99-test8.
597aabb0a92SMartin Mares
598f31412d1SMartin Mares	* lib/types.h, lib/pci.h, lib/sysdep.h: `byte' and `word' are
599f31412d1SMartin Mares	no longer exported to the outside world.
600f31412d1SMartin Mares
601ee7d8384SMartin Mares	* README.Windows: Updated.
602ee7d8384SMartin Mares
603ee7d8384SMartin Mares	* maint/release: Substitute version number in win32/config.h.
604ee7d8384SMartin Mares
605ee7d8384SMartin Mares	* win32/config.h: Added.
606ee7d8384SMartin Mares
607ee7d8384SMartin Mares	* lib/sysdep.h (bzero, strcasecmp): are macros on Windows.
608ee7d8384SMartin Mares
609ee7d8384SMartin Mares	* compat/getopt.[ch]: Added copies of getopt.[ch] from the GNU
610ee7d8384SMartin Mares	C library for use on systems where the default libraries lack
611ee7d8384SMartin Mares	proper getopt. Currently used by the Windows port.
612ee7d8384SMartin Mares
613ee7d8384SMartin Mares	* lib/sysdep.h, lib/types.h: Updates of the Windows port from
614ee7d8384SMartin Mares	Alexander Stock.
615ee7d8384SMartin Mares
616489233b4SMartin Mares	* lib/types.h: If PCI_HAVE_Uxx_TYPES is defined, libpci doesn't define
617489233b4SMartin Mares	its own u8, u16, u32, byte and word types and uses what the user
618489233b4SMartin Mares	has supplied instead. With this change, all namespace clashes should
619489233b4SMartin Mares	be gone.
620489233b4SMartin Mares
621489233b4SMartin Mares	* Makefile, lib/Makefile: Updated dependencies.
622489233b4SMartin Mares
623489233b4SMartin Mares	* pciutils.h: Include lib/sysdep.h and move NONRET et al. there.
624489233b4SMartin Mares
625489233b4SMartin Mares	* lib/sysdep.h: No need to include <sys/types.h> on FreeBSD, because
626489233b4SMartin Mares	it is included unconditionally in lib/types.h.
627489233b4SMartin Mares
628489233b4SMartin Mares	* Moved system-dependent stuff from lib/internal.h to lib/sysdep.h,
629489233b4SMartin Mares	which is also used by the utilities. Also moved type declarations
630489233b4SMartin Mares	from lib/pci.h to lib/types.h.
631489233b4SMartin Mares
632489233b4SMartin Mares	* All files: Prepend a "PCI_" prefix in front of all configuration
633489233b4SMartin Mares	defines to avoid namespace clashes. CAVEAT: If there is any libpci
634489233b4SMartin Mares	application using the (undocumented) defines, it has to be updated.
635489233b4SMartin Mares
636489233b4SMartin Mares	* lib/Makefile: Killed HAVE_OWN_HEADER_H, since we stopped sharing
637489233b4SMartin Mares	headers with the kernel a couple of years ago.
638489233b4SMartin Mares
6399bb4b4eaSMartin Mares	* lib/sysfs.c (sysfs_get_resources): We have 7 resources, not 6.
6409bb4b4eaSMartin Mares
6416aa54f1bSMartin Mares	* lspci.c (show_rom): Use the same logic for printing disabled
6426aa54f1bSMartin Mares	or unassigned ROM's as we do in show_bases() for the other BAR's.
6436aa54f1bSMartin Mares
6446aa54f1bSMartin Mares	* lib/generic.c (pci_generic_fill_info): Better reaction to
6456aa54f1bSMartin Mares	invalid 64-bit addresses. Also d->hdrtype should not include
6466aa54f1bSMartin Mares	bit 7, which caused mysterious errors on multi-function devices.
6476aa54f1bSMartin Mares
6486aa54f1bSMartin Mares	* lib/generic.c (pci_generic_fill_info): Fill in base addresses
6496aa54f1bSMartin Mares	even if the regions are known to be disabled. It is the client's
6506aa54f1bSMartin Mares	job to interpret them. (And it is not a trivial job if you want
6516aa54f1bSMartin Mares	to do it correctly, since you need to check I/O and memory enables
6526aa54f1bSMartin Mares	on all upstream bridges, too.) However, it could be interesting to
6536aa54f1bSMartin Mares	introduce functions for interpreting the addresses and even for
6546aa54f1bSMartin Mares	mapping the regions and doing I/O on them.
6556aa54f1bSMartin Mares
65680e6c636SMartin Mares2004-07-30  Martin Mares  <[email protected]>
65780e6c636SMartin Mares
65880e6c636SMartin Mares	* lspci.c: HyperTransport improvements from Maciej.
65980e6c636SMartin Mares
660d6324891SMartin Mares2004-07-11  Martin Mares  <[email protected]>
661d6324891SMartin Mares
662d6324891SMartin Mares	* lib/sysfs.c (sysfs_get_resources): Arguments now correspond
663d6324891SMartin Mares	to the format string. [Patch by Bill Nottingham]
664d6324891SMartin Mares
665ec25b52dSMartin Mares2004-07-05  Martin Mares  <[email protected]>
666ec25b52dSMartin Mares
667362be683SMartin Mares	* Released as 2.1.99-test7.
668362be683SMartin Mares
669ec25b52dSMartin Mares	* lspci.c (config_fetch): Wanted to merge Matthew's bug fix, but
670ec25b52dSMartin Mares	ended up with rewriting the fetching mechanism to be fully dynamic,
671ec25b52dSMartin Mares	but avoid reading config space registers not explicitly requested.
672ec25b52dSMartin Mares
673ec25b52dSMartin Mares2004-06-29  Matthew Wilcox <[email protected]>
674ec25b52dSMartin Mares
675ec25b52dSMartin Mares	* lspci.c: More work on PCI Express dumping.
676ec25b52dSMartin Mares
677ec25b52dSMartin Mares	* lib/header.h: Updated PCI Express capability definitions.
678ec25b52dSMartin Mares
679ec25b52dSMartin Mares	* lib/proc.c (proc_read): Removed bogus warning.
680ec25b52dSMartin Mares
681ec25b52dSMartin Mares	* common.c (xrealloc): Introduced.
682ec25b52dSMartin Mares
683ec25b52dSMartin Mares	* lspci.man: Added -xxxx.
684ec25b52dSMartin Mares
68509817437SMartin Mares2004-06-27  Martin Mares  <[email protected]>
68609817437SMartin Mares
687d1fa27ebSMartin Mares	* Released as 2.1.99-test6.
688d1fa27ebSMartin Mares
6894d67aa89SMartin Mares	* lspci.c (show_msix), lib/header.h: Added dumping of MSI-X cap.
6904d67aa89SMartin Mares	Patch by Roland Dreier <[email protected]>, cleaned up by me.
6914d67aa89SMartin Mares
6924d67aa89SMartin Mares	* lspci.c (show_pcix_nobridge, show_pcix_bridge): Handle config_fetch()
6934d67aa89SMartin Mares	failures.
6944d67aa89SMartin Mares
6954d67aa89SMartin Mares	* lib/header.h: Added PCI Express extended capabilities. Again by Matthew.
6964d67aa89SMartin Mares
6974d67aa89SMartin Mares	* lspci.c (show_express): Added dumping of PCI Express cap.
6984d67aa89SMartin Mares	Patch by Matthew Wilcox.
6994d67aa89SMartin Mares
7004d67aa89SMartin Mares	* lib/header.h: Added a list of PCI 3.0 capabilities and also details
7014d67aa89SMartin Mares	on PCI Express caps. Patch by Matthew Wilcox <[email protected]>.
7024d67aa89SMartin Mares
70309817437SMartin Mares	* lspci.c (check_root): Gone. No explicit checks for root are needed,
70409817437SMartin Mares	report correct errors reported by the libpci instead.
70509817437SMartin Mares
70609817437SMartin Mares	* lspci.c: Added dumping of the extended config space on "-xxxx".
70709817437SMartin Mares	Better caching of config registers.
70809817437SMartin Mares
70909817437SMartin Mares	* setpci.c (main): Allow access to whole 4096 bytes of the config space.
71009817437SMartin Mares
71109817437SMartin Mares	* lib/sysfs.c, lib/proc.c: Don't print error messages on short reads,
71209817437SMartin Mares	just return the appropriate error code.
71309817437SMartin Mares
71409817437SMartin Mares	* lib: Added support for extended (4096-byte) configuration space,
71509817437SMartin Mares	currently implemented only in Linux proc and sysfs access methods
71609817437SMartin Mares	and of course in the dump reader.
71709817437SMartin Mares
7180d656226SMartin Mares2004-05-29  Martin Mares  <[email protected]>
7190d656226SMartin Mares
720c0eece92SMartin Mares	* Released as 2.1.99-test5.
721c0eece92SMartin Mares
722a2413560SMartin Mares	* lib/pci.h: Windows don't have the standard u_int* types.
723a2413560SMartin Mares
724a2413560SMartin Mares	* lib/internal.h: <sys/param.h> required on Windows for endianity
725a2413560SMartin Mares	macros.
726a2413560SMartin Mares
727a2413560SMartin Mares	* lib/i386-ports.c: Connected i386-io-windows.h.
728a2413560SMartin Mares
729a2413560SMartin Mares	* lspci.c (check_root): geteuid() is not available on Windows.
730a2413560SMartin Mares
731a2413560SMartin Mares	* lib/i386-io-windows.h: Added Windows port contributed by Alexander
732a2413560SMartin Mares	Stock <[email protected]>.
733a2413560SMartin Mares
734a2413560SMartin Mares	* lib/configure: Hopefully fixed SunOS port broken by various
735a2413560SMartin Mares	changes to the configure script.
736a2413560SMartin Mares
7370d656226SMartin Mares	* Makefile, lib/configure: Cross-compilation support, patch by Maciej.
7380d656226SMartin Mares
739138c0385SMartin Mares2004-05-28  Martin Mares  <[email protected]>
740138c0385SMartin Mares
7419f490382SMartin Mares	* Released as 2.1.99-test4.
7429f490382SMartin Mares
743cce2caacSMartin Mares	* lspci.c (show_verbose): Header type 1 is probably legal for all
744cce2caacSMartin Mares	types of bridges, not only for PCI-to-PCI bridges.
745cce2caacSMartin Mares
746b569ef09SMartin Mares	* lspci.c (format_agp_rate): Write "x16", not "x@".
747b569ef09SMartin Mares	(show_agp): rate[] could overflow.
748b569ef09SMartin Mares	Bugs reported by Jakub Bogusz <[email protected]>.
749b569ef09SMartin Mares
750bfc4fe7aSMartin Mares	* lspci.c (show_ht_*): Show HyperTransport capability with all its
751bfc4fe7aSMartin Mares	details. Once again code by Maciej simplified (i.e., possibly broken)
752bfc4fe7aSMartin Mares	by me.
753bfc4fe7aSMartin Mares
754bfc4fe7aSMartin Mares	* lib/header.h: Added declarations of HyperTransport capability.
755bfc4fe7aSMartin Mares	Again thanks to Maciej.
756bfc4fe7aSMartin Mares
757138c0385SMartin Mares	* lspci.c: Decode all bits of the secondary status word in type 1 headers.
758138c0385SMartin Mares	Thanks to Maciej W. Rozycki <[email protected]> for the patch.
759138c0385SMartin Mares
7608fc75dbcSMartin Mares2003-12-27  Martin Mares  <[email protected]>
7618fc75dbcSMartin Mares
76281abd2a7SMartin Mares	* Released as 2.1.99-test3.
76381abd2a7SMartin Mares
7641f7c91ccSMartin Mares	* lspci.man, setpci.man: Document domains and correct spelling.
7651f7c91ccSMartin Mares
7661f7c91ccSMartin Mares	* lib/dump.c (dump_init): Added ability to read domain numbers.
7671f7c91ccSMartin Mares
76884c8d1bbSMartin Mares	* lspci.c: Devices in domains different from 0 have their slot number
7691f7c91ccSMartin Mares	printed as "<domain>:<bus>:<slot>.<func>". Tree view supports domains
7701f7c91ccSMartin Mares	as well.
77184c8d1bbSMartin Mares
77284c8d1bbSMartin Mares	* lib/filter.c: Slot filters understand domains.
77384c8d1bbSMartin Mares
77484c8d1bbSMartin Mares	* lib/generic.c: Mention the domain in slot numbers in all error messages.
77584c8d1bbSMartin Mares
77684c8d1bbSMartin Mares	* lib/internal.h: The #ifdef for Linux <asm/byteorder.h> was wrong.
77784c8d1bbSMartin Mares
77884c8d1bbSMartin Mares	* lib/access.c (pci_get_dev): Added support for domains.
77984c8d1bbSMartin Mares
78084c8d1bbSMartin Mares	* lib/sysfs.c (sysfs_scan): Read vendor and device ID from the config
78184c8d1bbSMartin Mares	registers (or to be precise, leave it for the generic parts of the pcilib
78284c8d1bbSMartin Mares	to do so) instead of reading them from the sysfs. It's faster this way.
78384c8d1bbSMartin Mares
78484c8d1bbSMartin Mares	* lspci.c (show_pcix): Don't touch pci_dev->hdrtype, it's an internal
78584c8d1bbSMartin Mares	variable. Better read it from the config registers (it's cached anyway).
78684c8d1bbSMartin Mares
78784c8d1bbSMartin Mares	* lib/sysfs.c (sysfs_scan), lib/proc.c (proc_scan): Don't read the hdrtype.
78884c8d1bbSMartin Mares	  lib/generic.c (pci_generic_fill_info): If hdrtype is -1 (unset), read it.
78984c8d1bbSMartin Mares	  Saves lots of unnecessary file accesses.
79084c8d1bbSMartin Mares
79111f7b31bSMartin Mares	* lib/pci.h (PCIADDR_PORT_FMT): Use %llx instead of %Lx, because the latter
79211f7b31bSMartin Mares	is not supported by all C libraries.
79311f7b31bSMartin Mares
79411f7b31bSMartin Mares	* Makefile: Always enter the lib directory (remember that we don't have
79511f7b31bSMartin Mares	full dependecies for the library in the top-level Makefile; hmmm, another
79611f7b31bSMartin Mares	thing to rewrite some day).
79711f7b31bSMartin Mares
79811f7b31bSMartin Mares	* lib/sysfs.c: Added Linux sysfs access method based on the patch
79911f7b31bSMartin Mares	written by Matthew Wilcox <[email protected]>.
80011f7b31bSMartin Mares
80111f7b31bSMartin Mares	* lib/proc.c: Renamed the access method name from "/proc/bus/pci" to "Linux-proc".
80211f7b31bSMartin Mares
80311f7b31bSMartin Mares	* lib/pread.h: The hacks to support pread on various versions
80411f7b31bSMartin Mares	of Linux libc moved there.
80511f7b31bSMartin Mares
80611f7b31bSMartin Mares	* lib/proc.c (proc_setup): The return value of snprintf() varies
80711f7b31bSMartin Mares	between glibc versions, so we need to check both for a negative
80811f7b31bSMartin Mares	values and for too large values.
80911f7b31bSMartin Mares
8104284af58SMartin Mares	* Removed last few references to the "Linux PCI Utilities", the
8114284af58SMartin Mares	package is pretty cross-platform now :)
8124284af58SMartin Mares
8134284af58SMartin Mares2003-12-27  Martin Mares  <[email protected]>
8144284af58SMartin Mares
815ab12277eSMartin Mares	* Released as 2.1.99-test2.
816ab12277eSMartin Mares
817ab12277eSMartin Mares	* README, pciutils.lsm, pciutils.spec: Use @VERSION@ to make the
818ab12277eSMartin Mares	release scripts insert the current version. "make release" is gone.
819ab12277eSMartin Mares
820ab12277eSMartin Mares	* maint/release, maint/release.pm: Added a new system of scripts for
821ab12277eSMartin Mares	making releases including inter-version diffs etc.
822ab12277eSMartin Mares
823ab12277eSMartin Mares	* Makefile: Cleaned up.
824ab12277eSMartin Mares
825ab12277eSMartin Mares	* lib/fbsd-device.c: I patched another copy of this file by mistake,
826ab12277eSMartin Mares	this time the version checks should be right.
827ab12277eSMartin Mares
828ab12277eSMartin Mares2003-12-27  Martin Mares  <[email protected]>
829ab12277eSMartin Mares
8306d722cd6SMartin Mares	* Released as 2.1.99-test1.
8316d722cd6SMartin Mares
832dd33246aSMartin Mares	* pciutils.h, common.c, lspci.man, setpci.man, lib/internal.h:
833dd33246aSMartin Mares	Remove shadows of the syscall access method which was never
834dd33246aSMartin Mares	implemented.
835dd33246aSMartin Mares
83680b3121aSMartin Mares	* update-pciids.sh: Try to preserve permissions of the old file
83780b3121aSMartin Mares	if chmod supports --reference. Should close Debian Bug #223740.
83880b3121aSMartin Mares
8396aea909aSMartin Mares	* lib/proc.c (proc_setup): Increased path name length limit to 1024.
8406aea909aSMartin Mares	Thanks for Redhat and Mandrake for inspiration.
8416aea909aSMartin Mares
8426aea909aSMartin Mares	* lib/configure: Recognize ppc and ppc64, both have 64-bit addresses.
8436aea909aSMartin Mares	Grabbed from Redhat (Fedora) patches.
8446aea909aSMartin Mares
8456aea909aSMartin Mares2003-12-27  Martin Mares  <[email protected]>
8466aea909aSMartin Mares
847f701ff47SMartin Mares	Merged bug fixes from Debian patches:
848f701ff47SMartin Mares
849f701ff47SMartin Mares	* lspci.c (show_verbose): "Cache Line Size" should be capitalized.
850f701ff47SMartin Mares
851f701ff47SMartin Mares	* lspci.c (show_pcix_nobridge): Added a missing newline.
852f701ff47SMartin Mares
8532240db8cSMartin Mares	* lib/proc.c (proc_scan): When reading the header type, don't
8542240db8cSMartin Mares	forget to clear the topmost bit indicating that the device has
855f701ff47SMartin Mares	multiple functions.
8562240db8cSMartin Mares
8572240db8cSMartin Mares2003-12-27  Martin Mares  <[email protected]>
8582240db8cSMartin Mares
85945902995SMartin Mares	Updated the FreeBSD port. Thanks to Samy Al Bahra <[email protected]>
86045902995SMartin Mares	for the patches:
86145902995SMartin Mares
86245902995SMartin Mares	* lib/Makefile: Add ${FREEBSD_SYS} to the include path if it's defined.
86345902995SMartin Mares	* lib/fbsd-device.c: Select the right set of system includes according
86445902995SMartin Mares	to __FreeBSD_version.
86545902995SMartin Mares
86645902995SMartin Mares2003-12-27  Martin Mares  <[email protected]>
86745902995SMartin Mares
8688fc75dbcSMartin Mares	Merged support for Solaris on i386 by Bill Moore <[email protected]>
8698fc75dbcSMartin Mares	and cleaned up:
8708fc75dbcSMartin Mares
8718fc75dbcSMartin Mares	* lib/configure: Recognize SunOS.
8728fc75dbcSMartin Mares	* lib/internal.h: Learn how to recognize byte order on SunOS.
8738fc75dbcSMartin Mares	* lib/i386-ports.c: Split OS-dependent I/O port access from i386-ports.c.
8748fc75dbcSMartin Mares	* lib/i386-io-linux.h: Linux specific part.
8758fc75dbcSMartin Mares	* lib/i386-io-hurd.h: GNU/Hurd specific part.
8768fc75dbcSMartin Mares	* lib/i386-io-sunos.h: SunOS specific part.
8778fc75dbcSMartin Mares
8789739916eSMartin Mares2003-12-26  Martin Mares  <[email protected]>
8799739916eSMartin Mares
8809739916eSMartin Mares	* lib/header.h (PCI_*_MASK): Cast to pciaddr_t explicitly.
8819739916eSMartin Mares
8829739916eSMartin Mares	* lib/pci.h: Types declared in <sys/types.h> should be usable on all
8839739916eSMartin Mares	platforms we currently support, so kill the forest of #ifdef's and
8849739916eSMartin Mares	use them in all cases.
8859739916eSMartin Mares
8869739916eSMartin Mares	* lib/pci.h: Use ULONG_MASK to decide whether we should use long
8879739916eSMartin Mares	or long long to represent a 64-bit address. Killed HAVE_LONG_ADDRESS.
8889739916eSMartin Mares	Define format strings for addresses, port numbers and IRQ numbers
8899739916eSMartin Mares	directly in pci.h.
8909739916eSMartin Mares
8919739916eSMartin Mares	* lib/proc.c (proc_scan): Use PCIADDR_T_FMT for scanf'ing addresses.
8929739916eSMartin Mares
89380459c65SMartin Mares2003-12-26  Marco Gerards  <[email protected]>
89480459c65SMartin Mares
89580459c65SMartin Mares	Added support for the GNU Hurd (cleaned up by Martin Mares):
89680459c65SMartin Mares
89780459c65SMartin Mares	* lib/configure [GNU]: Use the i386 ports for configuration access.
89880459c65SMartin Mares	* lib/i386-ports.c: Don't call iopl() on the Hurd.
89980459c65SMartin Mares	* lib/pci.h [OS_GNU]: Include <sys/types.h> and use it for defining
90080459c65SMartin Mares	u8 to u32.
90180459c65SMartin Mares
902a85769a8SMartin Mares2003-12-26  Martin Mares  <[email protected]>
903a85769a8SMartin Mares
9047dacd9c8SMartin Mares	* lspci.c (show_pcix_bridge, show_pcix_nobridge): Don't forget to call
9057dacd9c8SMartin Mares	config_fetch() to ensure that the registers have been read. Thanks to
9067dacd9c8SMartin Mares	Bill Wood <[email protected]> for the patch.
9077dacd9c8SMartin Mares
9087dacd9c8SMartin Mares	* lspci.c: Ensure that failure of config_fetch() is handled correctly
9097dacd9c8SMartin Mares	at all places.
9107dacd9c8SMartin Mares
9114063c31cSMartin Mares	* lspci.man: There was one more explicit reference to /usr/share/pci.ids.
9124063c31cSMartin Mares	Changed to @SHAREDIR@. Patch from Maciej W. Rozycki <[email protected]>.
9134063c31cSMartin Mares
9143fe8a38dSMartin Mares	* setpci.c (main): Better error messages.
9153fe8a38dSMartin Mares
9165f5b1a7bSMartin Mares	* setpci.c (ex_op): The demo mode should disable only writing, not reading.
9175f5b1a7bSMartin Mares
9185f5b1a7bSMartin Mares	* setpci.man: The documentation was inconsistent on what should -D do.
9195f5b1a7bSMartin Mares	Document the new behaviour.
920b251f40bSMartin Mares
92191e37a49SMartin Mares	* pciutils.h, common.c, setpci.c: Introduced a NONRET macro encapsulating
92291e37a49SMartin Mares	the GCC specific __attribute__((noreturn)) and killed the hack with
92391e37a49SMartin Mares	redefining __attribute__ on non-GCC compilers.
92491e37a49SMartin Mares
9254afd29d3SMartin Mares	* Makefile: Added missing dependencies. Parallel builds work now.
9264afd29d3SMartin Mares	Problem reported by Andreas Haumer <[email protected]>, but I chose
9274afd29d3SMartin Mares	a different fix.
9284afd29d3SMartin Mares
929b0f1a03bSMartin Mares	* Makefile (MANDIR): Use `:=' instead of `=' to avoid executing the shell
930b0f1a03bSMartin Mares	command every time $(MANDIR) is referenced.
931b0f1a03bSMartin Mares
932b7fd8e19SMartin Mares	* lspci.c (main): The error message for `lspci -s' incorrectly mentioned
933b7fd8e19SMartin Mares	a `-f' switch. Reported by Steve Finney <[email protected]>.
934b7fd8e19SMartin Mares
93505bb10a2SMartin Mares	* lib/generic.c: Removed memory leak in pci_generic_bus_scan().
93605bb10a2SMartin Mares	Reported by Gary Parnes <[email protected]>.
93705bb10a2SMartin Mares
938a832f6f1SMartin Mares	* Replaced obsolete syntax of __attribute__((unused)) in the middle of
939a832f6f1SMartin Mares	parameter declarations (which is no longer supported by GCC 3.1) by the
940a832f6f1SMartin Mares	current syntax (attribute at the end). Thanks to [email protected]
941a832f6f1SMartin Mares	for reporting this problem.
942a832f6f1SMartin Mares
943a85769a8SMartin Mares	* Removed CVS $Id$ tags from all files.
944a85769a8SMartin Mares
945a85769a8SMartin Mares	* Makefile: Added some more warnings.
946a85769a8SMartin Mares
947b7351143SMartin Mares	* setpci.c: Cleaned up mask/value code.
948b7351143SMartin Mares
949b7351143SMartin Mares2003-12-08 Thayne Harbaugh <[email protected]>
950b7351143SMartin Mares
951b7351143SMartin Mares	* setpci.c: Individual bits to be set can be specified as <value>:<mask>.
952b7351143SMartin Mares
9532a5d5cf9SMartin Mares2003-11-29  Martin Mares  <[email protected]>
9542a5d5cf9SMartin Mares
9552a5d5cf9SMartin Mares	* Imported the pciutils sources to my Arch repository. Good-bye, CVS.
9562a5d5cf9SMartin Mares
957d772ef15SMartin Mares2003-01-04  Martin Mares  <[email protected]>
958d772ef15SMartin Mares
9591b95f396SMartin Mares	* Released as 2.1.11.
9601b95f396SMartin Mares
961c83293ebSMartin Mares	* Makefile: Changed configuration of installation directories --
962c83293ebSMartin Mares	all paths are now set at the top of the Makefile instead of being
963c83293ebSMartin Mares	scattered between the installation rules. The default installation
964c83293ebSMartin Mares	now goes always to /usr/local regardless of the OS as most distributions
965c83293ebSMartin Mares	already contain some version of pciutils and we don't want custom
966c83293ebSMartin Mares	installations to interfere with the default ones.
967c83293ebSMartin Mares
968c83293ebSMartin Mares	* Makefile: Removed a couple of ancient install hacks: we no longer
969c83293ebSMartin Mares	try to avoid overwriting a newer pci.ids file (users are now expected
970c83293ebSMartin Mares	to use update-ids) and we don't try to remove /etc/pci.ids (a long time
971c83293ebSMartin Mares	has passed since the last version which used it).
972c83293ebSMartin Mares
973e2875dcdSMartin Mares	* Makefile: Paths to pci.ids in man pages automatically get the right path.
974e2875dcdSMartin Mares
9751b95f396SMartin Mares	* Added the update-ids utility.
9760138a2a7SMartin Mares
977d772ef15SMartin Mares	* lib: Removed partially implemented "syscall" access method which will
978d772ef15SMartin Mares	probably never be needed.
979d772ef15SMartin Mares
980eb620239SMartin Mares2002-12-27  Martin Mares  <[email protected]>
981eb620239SMartin Mares
982130090bdSMartin Mares	* lib/nbsd-libpci.c: Cleaned up and hopefully made it endian safe.
983130090bdSMartin Mares
984eb620239SMartin Mares	* lib/generic.c (pci_generic_scan_bus): Added work-around for devices with
985eb620239SMartin Mares	discontiguous numbering of functions. This is already present in the Linux
986eb620239SMartin Mares	kernel for several years, but I forgot to update pciutils as well.
987eb620239SMartin Mares
988848b4347SMartin Mares2002-12-26  Martin Mares  <[email protected]>
989848b4347SMartin Mares
990579b19ffSMartin Mares	* lib/header.h, lspci.c: Dump AGP3 flags and speeds.
991579b19ffSMartin Mares
992579b19ffSMartin Mares	* lib/pci.h, Makefile: Removed HAVE_OWN_HEADER_H. Always use our own header,
993579b19ffSMartin Mares	there is no reason to prefer the kernel version.
994579b19ffSMartin Mares
995579b19ffSMartin Mares	* lib/proc.c (proc_scan): Don't forget to initialize hdrtype.
996579b19ffSMartin Mares
997848b4347SMartin Mares	* Added preliminary version of NetBSD support by Quentin Garnier
998848b4347SMartin Mares	<[email protected]>.
999848b4347SMartin Mares
1000f0952474SMartin Mares2002-04-06  Martin Mares  <[email protected]>
1001f0952474SMartin Mares
1002f0952474SMartin Mares	* lspci.c: Mention "-xxx" in the help.
1003f0952474SMartin Mares
1004d2f666f1SMartin Mares2002-03-30  Martin Mares  <[email protected]>
1005d2f666f1SMartin Mares
10069bd44bb0SMartin Mares	* Released as 2.1.10.
10079bd44bb0SMartin Mares
1008a33d0eb7SMartin Mares	* Removed pci.ids from the CVS as they are now maintained separately.
1009a33d0eb7SMartin Mares	They are still included in the tarball, but if you are building	pciutils
1010a33d0eb7SMartin Mares	from CVS sources or you want to get a newer ID file than the one distributed,
1011a33d0eb7SMartin Mares	just use "make update-ids" to download the most recent snapshot from
1012a33d0eb7SMartin Mares	pciids.sf.net.
1013a33d0eb7SMartin Mares
1014a33d0eb7SMartin Mares	* Makefile, README: Updated accordingly.
1015a33d0eb7SMartin Mares
1016a33d0eb7SMartin Mares	* Makefile: Added a couple of maintenance targets.
1017a33d0eb7SMartin Mares
1018a33d0eb7SMartin Mares	* maint/*: Maintainer's utilities now reside here (present only in CVS,
1019a33d0eb7SMartin Mares	not in the tarball).
1020a33d0eb7SMartin Mares
1021d2f666f1SMartin Mares	* lib/names.c (parse_name_list): End-of-line comments are no longer
1022d2f666f1SMartin Mares	supported. Hashes are now perfectly valid in all names and they start
1023d2f666f1SMartin Mares	a comment only at the start of the line.
1024d2f666f1SMartin Mares
1025ee551b73SMartin Mares2002-03-26  Martin Mares  <[email protected]>
1026ee551b73SMartin Mares
102707159913SMartin Mares	* README: Rewritten.
102807159913SMartin Mares
1029ee551b73SMartin Mares	* Makefile: When the currently installed pci.ids file is newer than
1030ee551b73SMartin Mares	the version to be installed, don't overwrite it. Suggested by
1031ee551b73SMartin Mares	Jean Delvare <[email protected]>.
1032ee551b73SMartin Mares
1033bc7b1d62SMartin Mares2002-03-24  Martin Mares  <[email protected]>
1034bc7b1d62SMartin Mares
10355f5e6f64SMartin Mares	* lspci.c (show_pcix_bridge): Added PCI-X capability display.
10365f5e6f64SMartin Mares	Contributed by Jeff Garzik <[email protected]>.
10375f5e6f64SMartin Mares
10385f5e6f64SMartin Mares	* lib/header.h: Added PCI-X stuff. Again by Jeff.
10395f5e6f64SMartin Mares
10405f5e6f64SMartin Mares	* Makefile (CFLAGS): -Werror is gone.
10415f5e6f64SMartin Mares
1042a1052f16SMartin Mares	* lspci.c (format_agp_rate): Fixed AGP rate reporting.
1043a1052f16SMartin Mares
1044bc7b1d62SMartin Mares	* lib/filter.c (pci_filter_parse_slot): Allow bus 0xff, slot 0x1f and
1045bc7b1d62SMartin Mares	function 7.
1046bc7b1d62SMartin Mares
1047bc7b1d62SMartin Mares	* lib/names.c (pci_lookup_name): When printing unknown subsystem vendor
1048bc7b1d62SMartin Mares	or device hexadecimally, don't confuse it with chip vendor/device ID.
1049bc7b1d62SMartin Mares	First reported by Marc Boucher <[email protected]>.
1050bc7b1d62SMartin Mares
1051f793990cSMartin Mares2001-11-04  Martin Mares  <[email protected]>
1052f793990cSMartin Mares
1053ee551b73SMartin Mares	* Released as 2.1.9.
1054ee551b73SMartin Mares
1055f793990cSMartin Mares	* pci.ids: Synced with the PCI ID Repository at SourceForge
1056f793990cSMartin Mares	(http://pciids.sourceforge.net/).
1057f793990cSMartin Mares
10581d174e56SMartin Mares2000-08-25  Martin Mares  <[email protected]>
10591d174e56SMartin Mares
10601d174e56SMartin Mares	* pci.ids: Updated ID's, synced with kernel 2.4.0-test7.
10611d174e56SMartin Mares
106265b4327eSMartin Mares2000-06-13  Martin Mares  <[email protected]>
106365b4327eSMartin Mares
106465b4327eSMartin Mares	* Makefile (uninstall): Fixed.
106565b4327eSMartin Mares
106665b4327eSMartin Mares	* pci.ids: ID updates.
106765b4327eSMartin Mares
10684a219d5fSMartin Mares2000-05-20  Martin Mares  <[email protected]>
10694a219d5fSMartin Mares
10704a219d5fSMartin Mares	* Released as 2.1.8.
10714a219d5fSMartin Mares
10724a219d5fSMartin Mares	* pci.ids: ID updates.
10734a219d5fSMartin Mares
10744a219d5fSMartin Mares	* lspci.c (show_verbose): Min/max latency is now printed in nanoseconds.
10754a219d5fSMartin Mares
10764a219d5fSMartin Mares2000-05-04  Martin Mares  <[email protected]>
10774a219d5fSMartin Mares
10784a219d5fSMartin Mares	* lspci.c (show_verbose): If the header type doesn't match device
10794a219d5fSMartin Mares	class, just print a warning and still use the header type, assuming
10804a219d5fSMartin Mares	bogus class info.
10814a219d5fSMartin Mares
108210c90662SMartin Mares2000-05-01  Martin Mares  <[email protected]>
108310c90662SMartin Mares
108472b9b690SMartin Mares	* lspci.c (show_pm): Updated according to PCI PM specs 1.1.
108572b9b690SMartin Mares
108610c90662SMartin Mares	* pci.ids: Updated Contemporary Control ARCnet card entries.
108710c90662SMartin Mares
108810c90662SMartin Mares	* pci.ids: Synchronized class list with latest PCI SIG documents.
108910c90662SMartin Mares
1090a239ade6SMartin Mares2000-04-29  Martin Mares  <[email protected]>
1091a239ade6SMartin Mares
1092a239ade6SMartin Mares	* lib/names.c (pci_lookup_name): Fixed the cheat.
1093a239ade6SMartin Mares
1094a239ade6SMartin Mares	* lib/internal.h: Moved UNUSED/inline hacks above all other declarations.
1095a239ade6SMartin Mares
1096a239ade6SMartin Mares	* pci.ids: Various ID updates.
1097a239ade6SMartin Mares
10982c83b860SMartin Mares2000-04-21  Martin Mares  <[email protected]>
10992c83b860SMartin Mares
11002c83b860SMartin Mares	* Released as 2.1.7.
11012c83b860SMartin Mares
11022c83b860SMartin Mares	* pciutils.spec: Added German description.
11032c83b860SMartin Mares
11042c83b860SMartin Mares	* lib/names.c (pci_lookup_name): Added a cheat for case that subsystem ID's
11052c83b860SMartin Mares	are the same as device ID and just output subsystem name according to
11062c83b860SMartin Mares	device name.
11072c83b860SMartin Mares
11082c83b860SMartin Mares	* lib/proc.c: Use UNUSED instead of __attribute__((unused)).
11092c83b860SMartin Mares
11102c83b860SMartin Mares	* lib/pci.h: Added the correct typedefs for AIX.
11112c83b860SMartin Mares
11122c83b860SMartin Mares	* lib/generic.c (pci_generic_scan_bus): Export.
11132c83b860SMartin Mares
11142c83b860SMartin Mares	* lib/configure: Detect AIX. Use "echo '...\c'" instead of
11152c83b860SMartin Mares	"echo -n" if the shell isn't bash.
11162c83b860SMartin Mares
11172c83b860SMartin Mares	* lspci.c: Avoid using alloca() if not compiled by GCC.
11182c83b860SMartin Mares	(insert_dev): Avoid returning a void value.
11192c83b860SMartin Mares
11202c83b860SMartin Mares	* Makefile: Choose which install utility to use according to
11212c83b860SMartin Mares	OS type. Also use `-o' instead of `-or' in find arguments.
11222c83b860SMartin Mares	Part of the AIX port.
11232c83b860SMartin Mares
11242c83b860SMartin Mares	* lib/aix-device.c: Added AIX low-level interface. Contributed
11252c83b860SMartin Mares	by Dave Johnson <[email protected]>, thanks a lot!
11262c83b860SMartin Mares
11272c83b860SMartin Mares	* pci.ids: Few new ID's.
11282c83b860SMartin Mares
11292c83b860SMartin Mares	* pciutils.h, lib/internal.h: Redefine __attribute__ and inline
11302c83b860SMartin Mares	when not compiled by GCC.
11312c83b860SMartin Mares
1132c1a828daSMartin Mares2000-04-17  Martin Mares  <[email protected]>
1133c1a828daSMartin Mares
1134c1a828daSMartin Mares	* Released as 2.1.6.
1135c1a828daSMartin Mares
1136c1a828daSMartin Mares	* pci.ids: Added a large batch of ID's contributed by Gunther
1137c1a828daSMartin Mares	Mayer <[email protected]> and synced the
1138c1a828daSMartin Mares	list with the 2.3.99pre6 kernel.
1139c1a828daSMartin Mares
1140e91dd3abSMartin MaresThu Mar  9 13:11:39 2000  Martin Mares  <[email protected]>
1141e91dd3abSMartin Mares
1142a80b79a9SMartin Mares	* lib/example.c: Added a simple example of how to use
1143a80b79a9SMartin Mares	the library.
1144a80b79a9SMartin Mares
114589984232SMartin Mares	* lspci.man, setpci.man: Revealed --version. Well spotted
114689984232SMartin Mares	by Adam Sulmicki.
114789984232SMartin Mares
1148e91dd3abSMartin Mares	* pci.ids: Added lots of new ID's and synced with 2.3.50.
1149e91dd3abSMartin Mares
115078d9c5e2SMartin MaresTue Feb 15 00:16:21 2000  Martin Mares  <[email protected]>
115178d9c5e2SMartin Mares
115278d9c5e2SMartin Mares	* Released as 2.1.5.
115378d9c5e2SMartin Mares
115478d9c5e2SMartin Mares	* pciutils.spec: Updated spec file from Andreas Jaeger. Now using
115578d9c5e2SMartin Mares	%{_mandir} to find the right location to install manual pages to.
115678d9c5e2SMartin Mares
115778d9c5e2SMartin Mares	* pci.ids: New ID's.
115878d9c5e2SMartin Mares
115978d9c5e2SMartin Mares	* setpci.c (main): Don't crash when `-s' or `-d' is given with
116078d9c5e2SMartin Mares	no argument.
116178d9c5e2SMartin Mares
1162f8141ae2SMartin MaresMon Jan 24 20:04:11 2000  Andreas Jaeger  <[email protected]>
1163f8141ae2SMartin Mares
1164f8141ae2SMartin Mares	* lib/i386-ports.c: Include <asm/io.h> only on systems without
1165f8141ae2SMartin Mares	glibc.
1166f8141ae2SMartin Mares
1167f8141ae2SMartin MaresMon Jan 24 11:24:43 2000  Martin Mares  <[email protected]>
1168f8141ae2SMartin Mares
1169f8141ae2SMartin Mares	* Makefile: Modified to work with the Linux FHS brain-damaged idea
1170f8141ae2SMartin Mares	of putting man pages to /usr/share/man. Now we choose either /usr/man
1171f8141ae2SMartin Mares	or /usr/share/man depending on which one exists.
1172f8141ae2SMartin Mares
117359e76e8bSMartin MaresSun Jan 23 10:52:34 2000  Martin Mares  <[email protected]>
117459e76e8bSMartin Mares
117559e76e8bSMartin Mares	* pci.ids: Synced with Linux 2.3.40.
117659e76e8bSMartin Mares
117759e76e8bSMartin Mares	* Released as version 2.1.4.
117859e76e8bSMartin Mares
11792dfd48cdSMartin MaresThu Jan 20 11:08:32 2000  Martin Mares  <[email protected]>
11802dfd48cdSMartin Mares
11812715403fSMartin Mares	* lspci.c (scan_device): Fixed bug in reading of cardbus extensions.
11822715403fSMartin Mares
118381077814SMartin Mares	* lib/proc.c: pread/pwrite fixed again, this time on libc5 :(
118481077814SMartin Mares
118581077814SMartin Mares	* lspci.c (format_agp_rate): Better formatting of AGP rates.
118681077814SMartin Mares
118781077814SMartin Mares	* pci.ids: New ID's.
118881077814SMartin Mares
11892dfd48cdSMartin Mares	* lib/configure: Added configuration for ia64 (the same as for Alpha).
11902dfd48cdSMartin Mares	Patch from Stephane Eranian <[email protected]>.
11912dfd48cdSMartin Mares
11925a258860SMartin MaresThu Jan 13 23:01:52 2000  Martin Mares  <[email protected]>
11935a258860SMartin Mares
11945a258860SMartin Mares	* Released as version 2.1.3.
11955a258860SMartin Mares
11965a258860SMartin Mares	* pci.ids: New ID's.
11975a258860SMartin Mares
11985a258860SMartin Mares	* lspci.c: Alpha IO_FORMAT fix by Andrea Arcangeli.
11995a258860SMartin Mares
12005a258860SMartin Mares	* lib/access.c: Corrected order of access methods -- it's wonderful how
12015a258860SMartin Mares	long could such a bug remain unspotted. Thanks go to Andreas Schockenhoff.
12025a258860SMartin Mares
12030c047bbeSMartin MaresSat Dec 11 23:34:48 1999  Martin Mares  <[email protected]>
12040c047bbeSMartin Mares
12050c047bbeSMartin Mares	* Released as version 2.1.2.
12060c047bbeSMartin Mares
12070c047bbeSMartin Mares	* lib/names.c (pci_lookup_name): Fixed printing of unknown subsystem ID's.
12080c047bbeSMartin Mares
120933bc28a5SMartin MaresSat Dec  4 13:11:03 1999  Martin Mares  <[email protected]>
121033bc28a5SMartin Mares
121139231205SMartin Mares	* Released as version 2.1.1.
121239231205SMartin Mares
121333bc28a5SMartin Mares	* pci.ids: Several new ID's.
121433bc28a5SMartin Mares
121533bc28a5SMartin Mares	* setpci.c (exec_op): Don't forget to increment address after writing
121633bc28a5SMartin Mares	single value, so that `30.b=12,34,56,78' works as expected. Reported
121733bc28a5SMartin Mares	by Petr Soucek <[email protected]>.
121833bc28a5SMartin Mares
12198d047897SMartin MaresWed Nov  3 10:24:38 1999  Martin Mares  <[email protected]>
12208d047897SMartin Mares
12218d047897SMartin Mares	* lspci.c (show_terse): If prog-if is zero, but it's present in the
12228d047897SMartin Mares	ID list, show it.
12238d047897SMartin Mares
12246afc6538SMartin MaresSat Oct 30 11:06:35 1999  Martin Mares  <[email protected]>
12256afc6538SMartin Mares
12266afc6538SMartin Mares	* Released as version 2.1.
12276afc6538SMartin Mares
12286afc6538SMartin Mares	* pci.ids: Synced to devlist.h in 2.3.24 kernel. Merged in
12296afc6538SMartin Mares	lots of contributed entries.
12306afc6538SMartin Mares
12318f756113SMartin MaresThu Oct 14 10:40:12 1999  Dave Jones    <[email protected]>
12328f756113SMartin Mares
12338f756113SMartin Mares	* pci.ids: Added lots of subsystem definitions.
12348f756113SMartin Mares
1235d4798a32SMartin MaresSat Oct  9 14:32:28 1999  Martin Mares  <[email protected]>
1236d4798a32SMartin Mares
1237d4798a32SMartin Mares	* setpci.man: Better example.
1238d4798a32SMartin Mares
1239d4798a32SMartin Mares	* lspci.c: Resolve prog-if names.
1240d4798a32SMartin Mares
1241d4798a32SMartin Mares	* lib/names.c: Adapted to new pci.ids syntax.
1242d4798a32SMartin Mares
1243d4798a32SMartin Mares	* pci.ids: Reorganized the pci.ids file. Subsystems are listed
1244d4798a32SMartin Mares	under devices, classes can optionally contain prog-if information.
1245d4798a32SMartin Mares	New ID's, as usually.
1246d4798a32SMartin Mares
1247e306e911SMartin MaresWed Sep 22 09:45:24 1999  Martin Mares  <[email protected]>
1248e306e911SMartin Mares
1249e306e911SMartin Mares	* pci.ids: New ID's. As usually.
1250e306e911SMartin Mares
1251e306e911SMartin Mares	* lspci.c (show_htype1, show_htype2): Don't show `closed' bridge windows
1252e306e911SMartin Mares	unless we're vvvery verbose.
1253e306e911SMartin Mares
1254e306e911SMartin MaresMon Sep 20 11:22:54 1999  Martin Mares  <[email protected]>
1255e306e911SMartin Mares
1256e306e911SMartin Mares	* lspci.c (show_htype2): Don't forget a TAB before the "I/O window" line.
1257e306e911SMartin Mares
1258e64a576cSMartin MaresTue Sep 14 09:31:01 1999  Martin Mares  <[email protected]>
1259e64a576cSMartin Mares
1260e64a576cSMartin Mares	* pci.ids: New ID's. Again.
1261e64a576cSMartin Mares
1262c36c0862SMartin MaresThu Aug  5 17:45:42 1999  Martin Mares  <[email protected]>
1263c36c0862SMartin Mares
1264c36c0862SMartin Mares	* lspci.c (show_size): Don't show size if it's zero (usually
1265c36c0862SMartin Mares	due to bus-centric mode being enabled).
1266c36c0862SMartin Mares
12671ca42433SMartin MaresTue Jul 20 13:25:09 1999  Martin Mares  <[email protected]>
12681ca42433SMartin Mares
1269168b4f46SMartin Mares	* lib/pci.h: Types are OS dependent.
1270168b4f46SMartin Mares
1271168b4f46SMartin Mares	* lib/internal.h: Byte order hacks are OS dependent.
1272168b4f46SMartin Mares
1273168b4f46SMartin Mares	* lib/configure: Recognize FreeBSD. Also set OS_XXX according to the OS.
1274168b4f46SMartin Mares
1275168b4f46SMartin Mares	* lib/Makefile, lib/access.c: Added fbsd-device target.
1276168b4f46SMartin Mares
1277168b4f46SMartin Mares	* pci.ids: Added an entry for PLX 9080 bridges with subsystem ID
1278168b4f46SMartin Mares	incorrectly set to device ID.
1279168b4f46SMartin Mares
1280168b4f46SMartin Mares	* README: Added a note that we support FreeBSD.
1281168b4f46SMartin Mares
1282168b4f46SMartin Mares	* Makefile (PREFIX, ROOT): Set it depending on the OS.
1283168b4f46SMartin Mares	(%.8): Grrr, BSD date is not able to convert date formats the same way
1284168b4f46SMartin Mares	as GNU date does. Use sed instead.
1285168b4f46SMartin Mares	(install): Use `-c' when calling install.
1286168b4f46SMartin Mares
1287168b4f46SMartin Mares	* lib/fbsd-device.c: Added FreeBSD /dev/pci access module contributed
1288168b4f46SMartin Mares	by Jari Kirma <[email protected]>.
1289168b4f46SMartin Mares
1290bc6346dfSMartin Mares	* lib/proc.c: Rewrote the pread/pwrite things once again. Use pread
1291bc6346dfSMartin Mares	and pwrite only when we are certain it's safe (i.e., glibc 2.1
1292bc6346dfSMartin Mares	on all architectures or any libc on a i386 where we really know
1293bc6346dfSMartin Mares	how to use syscalls directly). In all other cases, emulate it
1294bc6346dfSMartin Mares	with lseek/read/write.
1295bc6346dfSMartin Mares
12961ca42433SMartin Mares	* pci.ids: Some more IDs.
12971ca42433SMartin Mares
12981ca42433SMartin MaresMon Jul 19 14:10:36 1999  Martin Mares  <[email protected]>
12991ca42433SMartin Mares
13001ca42433SMartin Mares	* pci.ids: Added IDs of parallel port controller cards as sent
13011ca42433SMartin Mares	by Tim Waugh <[email protected]>.
13021ca42433SMartin Mares
1303e95c8373SMartin MaresWed Jul  7 00:55:48 1999  Martin Mares  <[email protected]>
1304e95c8373SMartin Mares
1305e95c8373SMartin Mares	* lib/proc.c (proc_scan): HAVE_LONG_ADDRESS instead of HAVE_64BIT_ADDRESS.
1306e95c8373SMartin Mares
1307e95c8373SMartin Mares	* lspci.c: ADDR_FORMAT now depends on both HAVE_64BIT_ADDRESS and
1308e95c8373SMartin Mares	HAVE_LONG_ADDRESS.
1309e95c8373SMartin Mares
1310e95c8373SMartin Mares	* lib/configure: HAVE_64BIT_ADDRESS now doesn't imply that the addresses
1311e95c8373SMartin Mares	are represented as long long. Introduced a new flag HAVE_LONG_ADDRESS
1312e95c8373SMartin Mares	to indicate this. Both Sparc architectures now use both 64BIT_ADDRESS
1313e95c8373SMartin Mares	and LONG_ADDRESS since they have 32-bit userland, but don't set LONG_ADDRESS
1314e95c8373SMartin Mares	on Alpha.
1315e95c8373SMartin Mares
1316e95c8373SMartin Mares	* lspci.c (show_msi): Added dumping of the MSI capability.
1317e95c8373SMartin Mares	(show_slotid): The same for SlotID capability.
1318e95c8373SMartin Mares	(show_caps): Seperated capability dumping, because it should
1319e95c8373SMartin Mares	be used for both htype0 and htype1. Even PCI 2.2 doesn't mention
1320e95c8373SMartin Mares	layout of htype2, so I'm a bit unsure about it wrt capabilities
1321e95c8373SMartin Mares	-- they at least have to live somewhere else since address 0x34
1322e95c8373SMartin Mares	is already defined differently in htype2.
1323e95c8373SMartin Mares
1324e95c8373SMartin Mares	* lib/header.h (PCI_STATUS_UDF): Marked as obsolete (PCI 2.2).
1325e95c8373SMartin Mares	(PCI_BASE_ADDRESS_MEM_TYPE_1M): Ditto.
1326e95c8373SMartin Mares	(PCI_CAP_ID_*): Added some new capabilities defined in PCI 2.2.
1327e95c8373SMartin Mares
1328e95c8373SMartin Mares	* lspci.c (show_htype0): Mask out lowest 2 bits from all capability pointers
1329e95c8373SMartin Mares	(required by the PCI 2.2 specs).
1330e95c8373SMartin Mares
1331e95c8373SMartin MaresMon Jul  5 12:45:19 1999  Martin Mares  <[email protected]>
1332e95c8373SMartin Mares
1333e95c8373SMartin Mares	* lspci.c (show_size): Added new function for dumping of region sizes.
1334e95c8373SMartin Mares	(show_rom): Added. Now correctly dumps unassigned ROM addresses, disabled
1335e95c8373SMartin Mares	ROMs et cetera.
1336e95c8373SMartin Mares
1337e95c8373SMartin Mares	* lib/pci.h (struct pci_dev): known_fields moved to the public part
1338e95c8373SMartin Mares	of the structure.
1339e95c8373SMartin Mares
1340e95c8373SMartin Mares	* Added support for region sizes. Needs support in the kernel, because
1341e95c8373SMartin Mares	sizes have to be scanned before drivers initialize yourself. pci_fill_info()
1342e95c8373SMartin Mares	now returns a bitmask of what fields were really read.
1343e95c8373SMartin Mares
134482ce97c9SMartin MaresMon Jun 28 18:37:51 1999  Dave Jones    <[email protected]>
134582ce97c9SMartin Mares
134682ce97c9SMartin Mares	* Makefile:
134782ce97c9SMartin Mares	  Added `uninstall' target - removes all traces of pciutils.
134882ce97c9SMartin Mares	* pci.ids:
134982ce97c9SMartin Mares	  - Lots of cleanups in the ATI, S3, Adaptec vendors.
135082ce97c9SMartin Mares	  - Changed Compaq QVision 1280/p definitions, as it's not possible
135182ce97c9SMartin Mares	    to determine the revision from the device ID.
135282ce97c9SMartin Mares	  - Same for the Tseng ET4000.
135382ce97c9SMartin Mares	    The id's said I had a rev C, when it was actually a rev B.
135482ce97c9SMartin Mares	  - Removed some unnecessary strings
135582ce97c9SMartin Mares	    `PCI'. Unless it's an AGP card, it should be obvious that it's PCI.
135682ce97c9SMartin Mares	    `Ethernet card'. This should be determined from config space.
135782ce97c9SMartin Mares	  - Lots of other new vendors & devices
135882ce97c9SMartin Mares	  - Other additional small cleanups.
135982ce97c9SMartin Mares
13607bed2d83SMartin MaresMon Jun 21 22:11:10 1999  Martin Mares  <[email protected]>
13617bed2d83SMartin Mares
13627bed2d83SMartin Mares	* lib/names.c (pci_lookup_name): When device ID lookup
13637bed2d83SMartin Mares	fails, return hexadecimal device ID instead of vendor ID.
13647bed2d83SMartin Mares	Well spotted by Axel Bodemann <[email protected]>,
13657bed2d83SMartin Mares	I've just extended the fix to subsystem ID's.
13667bed2d83SMartin Mares
13675ba3a475SMartin MaresThu Jun 17 19:48:21 1999  Martin Mares  <[email protected]>
13685ba3a475SMartin Mares
13695ba3a475SMartin Mares	* lspci.c (show_agp): Bug fix from Petr Vandrovec
13705ba3a475SMartin Mares	<[email protected]>. The command register was displayed
13715ba3a475SMartin Mares	incorrectly.
13725ba3a475SMartin Mares
13735ba3a475SMartin MaresWed Jun  2 22:42:44 1999  Martin Mares  <[email protected]>
13745ba3a475SMartin Mares
13755ba3a475SMartin Mares	* lib/proc.c (SYS_pread, SYS_pwrite): Use hard-coded
13765ba3a475SMartin Mares	numbers if not supplied by the libc.
13775ba3a475SMartin Mares
137855c815b5SMartin MaresWed May 19 13:24:39 1999  Martin Mares  <[email protected]>
137955c815b5SMartin Mares
138055c815b5SMartin Mares	* Released the whole package as version 2.0.
138155c815b5SMartin Mares
138255c815b5SMartin MaresFri May 14 22:42:02 1999  Martin Mares  <[email protected]>
138355c815b5SMartin Mares
138455c815b5SMartin Mares	* pci.ids: Added several new ID's contributed by people
138555c815b5SMartin Mares	on the linux-pci list.
138655c815b5SMartin Mares
1387dec16943SMartin MaresMon Apr 19 15:21:08 1999  Jakub Jelinek  <[email protected]>
1388dec16943SMartin Mares
1389dec16943SMartin Mares	* lspci.c: Display I/O addresses correctly on sparc64.
1390dec16943SMartin Mares	* lib/header.h: Ditto.
1391dec16943SMartin Mares
1392dec16943SMartin Mares	* lib/configure: On sparc set HAVE_64BIT* as well, we want
1393dec16943SMartin Mares	a binary which works on both 32bit and 64bit SPARCs.
1394dec16943SMartin Mares
1395e33c9c7aSMartin MaresSun Apr 18 21:14:58 1999  Martin Mares  <[email protected]>
1396e33c9c7aSMartin Mares
1397e33c9c7aSMartin Mares	* lspci.c, lib/proc.c: Alpha compilation fixes from Matthew Jacob
1398e33c9c7aSMartin Mares	<[email protected]>.
1399e33c9c7aSMartin Mares
1400e33c9c7aSMartin Mares	* pci.ids: A lot of updates from Adam J. Richter <[email protected]>.
1401e33c9c7aSMartin Mares
1402f3395cc5SMartin MaresSun Feb 28 22:26:21 1999  Martin Mares  <[email protected]>
1403f3395cc5SMartin Mares
1404f3395cc5SMartin Mares	* lspci.c (do_map_bus): Don't dump functions 1--7 if not flagged
1405f3395cc5SMartin Mares	as a multi-function device, because several single-function devices
1406f3395cc5SMartin Mares	don't decode the function bits at all.
1407f3395cc5SMartin Mares
1408f3395cc5SMartin MaresSun Feb 14 23:48:22 1999  Martin Mares  <[email protected]>
1409f3395cc5SMartin Mares
1410f3395cc5SMartin Mares	* Makefile (install): Don't use "-o root -g root" for installation
1411f3395cc5SMartin Mares	since it breaks on machines where programs are not installed by root.
1412f3395cc5SMartin Mares	Reported by Richard Gooch <[email protected]>
1413f3395cc5SMartin Mares
1414f3395cc5SMartin MaresTue Feb  9 15:54:39 1999  Martin Mares  <[email protected]>
1415f3395cc5SMartin Mares
1416f3395cc5SMartin Mares	* lspci.c (show_bases): Use new address masking macros and pciaddr_t.
1417f3395cc5SMartin Mares
1418f3395cc5SMartin Mares	* lib/pci.h: Using pciaddr_t for bus addresses, which are 32-bit
1419f3395cc5SMartin Mares	or 64-bit depending on CPU.
1420f3395cc5SMartin Mares
1421f3395cc5SMartin Mares	* lib/pci.h (PCI_ADDR_MEM_MASK): Added macros for address masks
1422f3395cc5SMartin Mares	according to bus address width.
1423f3395cc5SMartin Mares
14241c31d620SMartin MaresThu Jan 28 20:54:16 1999  Martin Mares  <[email protected]>
14251c31d620SMartin Mares
14261c31d620SMartin Mares	* Released as 1.99.4.
14271c31d620SMartin Mares
14281c31d620SMartin Mares	* lspci.c: Capability list parser now recognizes both AGP
14291c31d620SMartin Mares	registers and PCI Power Management registers (the latter
14301c31d620SMartin Mares	is mainly guesswork based on DEC/Intel 21153 bridge specs
14311c31d620SMartin Mares	since I don't have the PCI Power Management document).
14321c31d620SMartin Mares
14331c31d620SMartin Mares	* lspci.c: Replaced numerous occurences of (x & flag) ? '+' : '-'
14341c31d620SMartin Mares	by FLAG macro.
14351c31d620SMartin Mares
14361c31d620SMartin Mares	* lspci.c: Added bridge checks to bus mapping code.
14371c31d620SMartin Mares
14381812a795SMartin MaresWed Jan 27 14:59:16 1999  Martin Mares  <[email protected]>
14391812a795SMartin Mares
14401812a795SMartin Mares	* lspci.c: Implemented bus mapping mode (-M).
14411812a795SMartin Mares
14421812a795SMartin Mares	* lspci.c (scan_devices): Split to scan_devices() and scan_device().
14431812a795SMartin Mares	(show): Split to show() and show_device().
14441812a795SMartin Mares
14451812a795SMartin Mares	* lib/access.c (pci_init): When a->method == PCI_ACCESS_AUTO,
14461812a795SMartin Mares	set it to the real access method afterwards.
14471812a795SMartin Mares
14481812a795SMartin MaresMon Jan 25 23:46:13 1999  Martin Mares  <[email protected]>
14491812a795SMartin Mares
14501812a795SMartin Mares	* lib/generic.c (pci_generic_fill_info): If in buscentric mode,
14511812a795SMartin Mares	don't check PCI_COMMAND for I/O and memory enables.
14521812a795SMartin Mares
1453f6c86928SMartin MaresMon Jan 25 21:28:49 1999  Martin Mares  <[email protected]>
1454f6c86928SMartin Mares
1455f6c86928SMartin Mares	* Makefile: Added target `release' which substitutes new version
1456f6c86928SMartin Mares	number to .spec, .lsm and README. Also rewrote target `dist'.
1457f6c86928SMartin Mares
1458f6c86928SMartin Mares	* Released as 1.99.3.
1459f6c86928SMartin Mares
1460b5137411SMartin MaresSun Jan 24 22:10:36 1999  Martin Mares  <[email protected]>
1461b5137411SMartin Mares
1462d6b297d0SMartin Mares	* lib/header.h: Until kernel adopts new layout of PCI
1463d6b297d0SMartin Mares	includes (i.e., separate declaration of header structure,
1464d6b297d0SMartin Mares	functions and device IDs), which is not going to happen
1465d6b297d0SMartin Mares	before 2.3, we'll use our own definiton of the header.
1466d6b297d0SMartin Mares
1467b5137411SMartin Mares	* lspci.c (show_verbose): Display `Cap' flag in device status.
1468b5137411SMartin Mares
1469b5137411SMartin Mares	* lspci.c (show_htype0): Display capability lists whereever
1470b5137411SMartin Mares	available. The only capability name we recognize now is `AGP'.
1471b5137411SMartin Mares	Unfortunately, capabilities are stored in device-dependent
1472b5137411SMartin Mares	portion of the configuration space and are thus available
1473b5137411SMartin Mares	only to root unless you read a dump.
1474b5137411SMartin Mares
1475b5137411SMartin Mares	* lspci.c (scan_devices): Use cache instead of buffering.
1476b5137411SMartin Mares
1477b5137411SMartin Mares	* lib/buffer.c: Removed (obsoleted by the cache).
1478b5137411SMartin Mares
1479b5137411SMartin Mares	* lib/access.c: Added general caching mechanism.
1480b5137411SMartin Mares
148181ce358dSMartin MaresSat Jan 23 21:30:54 1999  Martin Mares  <[email protected]>
148281ce358dSMartin Mares
148381ce358dSMartin Mares	* pci.ids: Added few devices.
148481ce358dSMartin Mares
1485727ce158SMartin MaresFri Jan 22 19:29:31 1999  Martin Mares  <[email protected]>
1486727ce158SMartin Mares
1487727ce158SMartin Mares	* Version string is now defined in top-level Makefile, exported
1488727ce158SMartin Mares	to the configure script and also substituted to man pages.
1489727ce158SMartin Mares
1490727ce158SMartin Mares	* lspci.c (show_bases): Rewrote displaying of 64-bit addresses.
1491727ce158SMartin Mares	(show_verbose): Rewrote interrupt display logic.
1492727ce158SMartin Mares
1493727ce158SMartin Mares	* lib/i386-ports.c: Include sys/io.h only on glibc systems.
1494727ce158SMartin Mares
1495727ce158SMartin Mares	* lib/configure: Rewrote detection of Linux versions. Now it
1496727ce158SMartin Mares	works on 2.0 kernels (only with direct/dump access, of course).
1497727ce158SMartin Mares
1498727ce158SMartin Mares	* lib/internal.h: New bytesex macros using <asm/byteorder.h>
1499727ce158SMartin Mares	whenever available.
1500727ce158SMartin Mares
1501727ce158SMartin Mares	* lib/proc.c (proc_read, proc_write): Distinguish between short
1502727ce158SMartin Mares	read/write and real errors.
1503727ce158SMartin Mares
1504727ce158SMartin Mares	* lspci.c (show_htype{0,1}): Always use d->dev->rom_base_addr since
1505727ce158SMartin Mares	libpci respects buscentric mode automatically.
1506727ce158SMartin Mares
1507727ce158SMartin Mares	* lspci.c (show_hex_dump): For CardBus bridges, print out 128
1508727ce158SMartin Mares	bytes of header (the whole standard part).
1509727ce158SMartin Mares
1510727ce158SMartin Mares	* common.c: pcilib options are now all uppercase. Also moved
1511727ce158SMartin Mares	PCI access debugging option here.
1512727ce158SMartin Mares
1513727ce158SMartin Mares	* Released as 1.99.2.
1514727ce158SMartin Mares
1515727ce158SMartin MaresWed Jan 20 22:50:35 1999  Martin Mares  <[email protected]>
1516727ce158SMartin Mares
1517727ce158SMartin Mares	* Wrote configure script and rewrote Makefiles.
1518727ce158SMartin Mares
1519727ce158SMartin Mares	* Removed few unused variables.
1520727ce158SMartin Mares
1521727ce158SMartin MaresWed Jan 20 12:21:56 1999  Martin Mares  <[email protected]>
1522727ce158SMartin Mares
1523727ce158SMartin Mares	* common.c: Moved several functions used in both setpci and lspci
1524727ce158SMartin Mares	here. This includes parsing of libpci-related options.
1525727ce158SMartin Mares
1526727ce158SMartin Mares	* More library tweaks.
1527727ce158SMartin Mares
1528727ce158SMartin Mares	* filter.c, names.c: Moved to library.
1529727ce158SMartin Mares
1530727ce158SMartin Mares	* setpci: Rewritten to use the library.
1531727ce158SMartin Mares
1532727ce158SMartin Mares	* Released as 1.99.1.
1533727ce158SMartin Mares
1534727ce158SMartin MaresTue Jan 19 23:00:12 1999  Martin Mares  <[email protected]>
1535727ce158SMartin Mares
1536727ce158SMartin Mares	* lspci.c (scan_devices): For cardbus bridges, read first 128
1537727ce158SMartin Mares	bytes of config space to get full standard header.
1538727ce158SMartin Mares
1539727ce158SMartin Mares	* Makefile (CFLAGS): Removed "-Wno-unused".
1540727ce158SMartin Mares
1541727ce158SMartin Mares	* Started the "New Generation" branch and introduced the
1542727ce158SMartin Mares	PCI library.
1543727ce158SMartin Mares
1544727ce158SMartin Mares	* lspci: Rewritten to use the library.
1545727ce158SMartin Mares
15466ece6bc6SMartin MaresTue Jan 19 22:24:08 1999  Martin Mares  <[email protected]>
15476ece6bc6SMartin Mares
15486ece6bc6SMartin Mares	* Released as version 1.10.
15496ece6bc6SMartin Mares
15506ece6bc6SMartin MaresMon Jan 18 08:51:17 1999  Martin Mares  <[email protected]>
15516ece6bc6SMartin Mares
15526ece6bc6SMartin Mares	* lspci.8, setpci.8: Miscellaneous fixes as suggested by
15536ece6bc6SMartin Mares	Dag Wieers <[email protected]>.
15546ece6bc6SMartin Mares
15551212dd6dSMartin MaresSun Nov 29 20:05:56 1998  Martin Mares  <[email protected]>
15561212dd6dSMartin Mares
15571212dd6dSMartin Mares	* pciutils.spec (Name): Update from Krzysztof G. Baranowski.
15581212dd6dSMartin Mares
1559d38471fdSMartin MaresSun Nov 22 10:49:56 1998  Martin Mares  <[email protected]>
1560d38471fdSMartin Mares
1561d38471fdSMartin Mares	* Makefile, pciutils.h: Moved pci.ids to /usr/share.
1562d38471fdSMartin Mares
1563d38471fdSMartin Mares	* Released as version 1.09.
1564d38471fdSMartin Mares
1565371f605bSMartin MaresWed Nov 18 15:47:05 1998  Martin Mares  <[email protected]>
1566371f605bSMartin Mares
1567371f605bSMartin Mares	* lspci.c (show_htype1): Fixed displaying of prefetchable memory behind
1568371f605bSMartin Mares	bridge. Thanks to Petr Vandrovec <[email protected]> for bug report.
1569371f605bSMartin Mares
157010be47abSMartin MaresFri Oct 23 18:59:19 1998  Martin Mares  <[email protected]>
157110be47abSMartin Mares
157210be47abSMartin Mares	* setpci.c: Don't include <syscall-list.h> with glibc >= 2.1.
157310be47abSMartin Mares
1574472bd340SMartin MaresMon Oct 19 21:53:30 1998  Martin Mares  <[email protected]>
1575472bd340SMartin Mares
1576472bd340SMartin Mares	* Released as version 1.08.
1577472bd340SMartin Mares
1578472bd340SMartin Mares	* setpci.c: glibc 2.1.x already defines pread() and pwrite().
1579472bd340SMartin Mares
1580472bd340SMartin Mares	* lspci.8: Changed warning about lspci -xxx.
1581472bd340SMartin Mares
1582472bd340SMartin Mares	* lspci.c: Require "-xxx" for full configuration space dump, so that
1583472bd340SMartin Mares	it's impossible to crash the machine by single typo.
1584472bd340SMartin Mares
1585472bd340SMartin Mares	* specs: Added (courtesy of Krzysztof G. Baranowski <[email protected]>).
1586472bd340SMartin Mares
1587072c77e5SMartin MaresWed Sep  9 12:03:24 1998  Martin Mares  <[email protected]>
1588072c77e5SMartin Mares
1589072c77e5SMartin Mares	* lspci.c (show_bases): Better displaying of unassigned and
1590072c77e5SMartin Mares	disabled bases. Thanks to Gabriel Paubert <[email protected]>
1591072c77e5SMartin Mares	for an idea.
1592072c77e5SMartin Mares
1593b7554856SMartin MaresWed Sep  2 10:58:01 1998  Martin Mares  <[email protected]>
1594b7554856SMartin Mares
1595b7554856SMartin Mares	* setpci.c (pread): Recognize glibc 1.99 numbered as 2.0 on the PPC.
1596b7554856SMartin Mares	(thanks to Geert Uytterhoeven for finding this out)
1597b7554856SMartin Mares
1598ce503b7fSMartin MaresFri Jul 17 10:43:30 1998  Martin Mares  <[email protected]>
1599ce503b7fSMartin Mares
1600ce503b7fSMartin Mares	* lspci.c (show_verbose): Print subsystem ID using the new resolver.
1601ce503b7fSMartin Mares	(show_machine): Print subsystem ID.
1602ce503b7fSMartin Mares
1603ce503b7fSMartin Mares	* names.c: New name resolution engine supporting subsystem IDs.
1604ce503b7fSMartin Mares
1605ce503b7fSMartin Mares	* Released as version 1.07.
1606ce503b7fSMartin Mares
160796e4f295SMartin MaresWed Jul 15 15:37:21 1998  Martin Mares  <[email protected]>
160896e4f295SMartin Mares
160996e4f295SMartin Mares	* lspci.c (show_htype2 etc.): Displaying of CardBus headers.
161096e4f295SMartin Mares	(show_bases): Honor the `cnt' argument.
161196e4f295SMartin Mares	(grow_tree): Parse CardBus headers in tree mode as well.
161296e4f295SMartin Mares
161396e4f295SMartin Mares	* pci.h: Updated CardBus header field description. I still don't
161496e4f295SMartin Mares	have the CardBus standard available, but OZ6832 specs contain
161596e4f295SMartin Mares	full description of all header fields supported by the chip.
161696e4f295SMartin Mares
16176ae3650aSMartin MaresTue Jun  9 22:53:59 1998  Martin Mares  <[email protected]>
16186ae3650aSMartin Mares
1619304f9a0bSMartin Mares	* Released as 1.06.
1620304f9a0bSMartin Mares
16216ae3650aSMartin Mares	* names.c (parse_name_list): Killed an unused variable.
16226ae3650aSMartin Mares
16236ae3650aSMartin Mares	* setpci.c (pread, pwrite): Define SYS_(pread|pwrite) as __NR_\1
16246ae3650aSMartin Mares	if they are not defined by glibc (needed for glibc built on older
16256ae3650aSMartin Mares	kernels). Ugly.
16266ae3650aSMartin Mares
16276ae3650aSMartin Mares	* setpci.c (exec_op): Fixed error messages. Thanks, Steve!
16286ae3650aSMartin Mares
16294b88a6b8SMartin MaresMon Jun  8 10:59:22 1998  Martin Mares  <[email protected]>
16304b88a6b8SMartin Mares
16314b88a6b8SMartin Mares	* Released as 1.05.
16324b88a6b8SMartin Mares
16334b88a6b8SMartin Mares	* setpci.c: Problems with pread()/pwrite() with glibc on Alpha
16344b88a6b8SMartin Mares	should be gone. Again thanks to Steve for bug report.
16354b88a6b8SMartin Mares
16364b88a6b8SMartin Mares	* filter.c (filter_parse_slot): Fixed ":x" type filters.
16374b88a6b8SMartin Mares
16384b88a6b8SMartin Mares	* pci.ids: Killed duplicate entry. Thanks to Stephen Williams
16394b88a6b8SMartin Mares	<[email protected]> for reporting this.
16404b88a6b8SMartin Mares
16414b88a6b8SMartin MaresSun Jun  7 19:27:51 1998  Martin Mares  <[email protected]>
16424b88a6b8SMartin Mares
16434b88a6b8SMartin Mares	* lspci.c (main), setpci.c (main): Implemented "--version".
16444b88a6b8SMartin Mares
16454b88a6b8SMartin Mares	* Released as 1.04.
16464b88a6b8SMartin Mares
16474b88a6b8SMartin Mares	* pciutils.h (PCIUTILS_VERSION): Added version string.
16484b88a6b8SMartin Mares
16494b88a6b8SMartin Mares	* filter.c, names.c: Extraneous #include <linux/pci.h> removed.
16504b88a6b8SMartin Mares	Thanks to Geert Uytterhoeven <[email protected]>
16514b88a6b8SMartin Mares	for bug report.
16524b88a6b8SMartin Mares
16539b306998SMartin MaresThu May 28 14:45:58 1998  Martin Mares  <[email protected]>
16549b306998SMartin Mares
16559b306998SMartin Mares	* pci.ids: More updates from Jens Maurer.
16569b306998SMartin Mares
1657b372672fSMartin MaresWed Apr 22 10:00:39 1998  Martin Mares  <[email protected]>
1658b372672fSMartin Mares
1659b372672fSMartin Mares	* pci.ids: Updates from Jens Maurer.
1660b372672fSMartin Mares
1661b2c9b373SMartin MaresSun Apr 19 11:14:25 1998  Martin Mares  <[email protected]>
1662b2c9b373SMartin Mares
1663b372672fSMartin Mares	* Released as 1.03.
1664b372672fSMartin Mares
1665b2c9b373SMartin Mares	* setpci.8: Written.
1666b2c9b373SMartin Mares
1667b2c9b373SMartin Mares	* setpci.c: Finished.
1668b2c9b373SMartin Mares
1669b2c9b373SMartin Mares	* lspci.c: Now able to fetch expansion ROM base from kernel device list
1670b2c9b373SMartin Mares	and print it if not in buscentric mode.
1671b2c9b373SMartin Mares
1672e4842ff3SMartin MaresTue Mar 31 23:11:57 1998  Martin Mares  <[email protected]>
1673e4842ff3SMartin Mares
1674e4842ff3SMartin Mares	* setpci.c: Added.
1675e4842ff3SMartin Mares
1676e4842ff3SMartin MaresSun Mar 22 15:39:08 1998  Martin Mares  <[email protected]>
1677e4842ff3SMartin Mares
1678e4842ff3SMartin Mares	* lspci.8: Updated the documentation.
1679e4842ff3SMartin Mares
1680e4842ff3SMartin Mares	* lspci.c: Modified to use the new filtering mechanism (options -f and -d).
1681e4842ff3SMartin Mares
1682e4842ff3SMartin Mares	* filter.c: Introduced new generic device filter.
1683e4842ff3SMartin Mares
1684008407bdSMartin MaresThu Mar 19 17:03:48 1998  Martin Mares  <[email protected]>
1685008407bdSMartin Mares
1686008407bdSMartin Mares	* lspci.c (grow_tree, show_tree_dev, print_it): Fixed displaying
1687008407bdSMartin Mares	of PCI-to-PCI bridges in the tree format.
1688008407bdSMartin Mares
16890a33d0ecSMartin MaresSun Feb 15 10:12:25 1998  Martin Mares  <[email protected]>
16900a33d0ecSMartin Mares
16910a33d0ecSMartin Mares	* lspci.c (show_machine): Added non-verbose mode of machine-readable
16920a33d0ecSMartin Mares	dump.
16930a33d0ecSMartin Mares
16940a33d0ecSMartin Mares	* pci.ids: Updates from Jens Maurer.
16950a33d0ecSMartin Mares
16960a33d0ecSMartin Mares	* Released as version 1.02.
16970a33d0ecSMartin Mares
16980a33d0ecSMartin MaresThu Feb 12 16:53:28 1998  Martin Mares  <[email protected]>
16990a33d0ecSMartin Mares
17000a33d0ecSMartin Mares	* lspci.c: Added a "-m" switch for dumping machine-readable
17010a33d0ecSMartin Mares	configuration data (requested by Bjoern Kriews <[email protected]>).
17020a33d0ecSMartin Mares
1703fb38eee8SMartin MaresMon Feb  9 13:17:43 1998  Martin Mares  <[email protected]>
1704fb38eee8SMartin Mares
1705fb38eee8SMartin Mares	* Makefile, pciutils.h: Include local pci.h instead of <linux/pci.h>
1706fb38eee8SMartin Mares	if available. This should avoid all problems with official kernel
1707fb38eee8SMartin Mares	not synchronized to newer PCI code in CVS -- standard distribution
1708fb38eee8SMartin Mares	of pciutils now contains pci.h from current CVS kernel, pciutils
1709fb38eee8SMartin Mares	in CVS contain no pci.h and use the correct kernel include.
1710fb38eee8SMartin Mares
1711fb38eee8SMartin Mares	* Makefile: Fixed installation path for man pages.
1712fb38eee8SMartin Mares
17132f48f637SMartin MaresSat Feb  7 15:15:46 1998  Martin Mares  <[email protected]>
17142f48f637SMartin Mares
17152f48f637SMartin Mares	* README: Updated.
17162f48f637SMartin Mares
17172f48f637SMartin Mares	* lspci.8: Created a man page.
17182f48f637SMartin Mares
17192f48f637SMartin Mares	* Releasing as version 1.0.
17202f48f637SMartin Mares
17212f48f637SMartin MaresTue Feb  3 20:56:00 1998  Martin Mares  <[email protected]>
17222f48f637SMartin Mares
17232f48f637SMartin Mares	* Makefile: Recognize architecture by calling uname and pass it as ARCH_xxx
17242f48f637SMartin Mares	to all the C sources. This should eliminate problems with 32-bit compilers
17252f48f637SMartin Mares	on sparc64.
17262f48f637SMartin Mares
17272f48f637SMartin Mares	* lspci.c (show_verbose): Recognize CardBus bridge header type.
17282f48f637SMartin Mares	(show_htype2): Stub routine.
17292f48f637SMartin Mares	(scan_config): Write sensible error message if the kernel denies reading of
17302f48f637SMartin Mares	upper part of the PCI config space.
1731