xref: /pciutils/ChangeLog (revision 7cebe481)
10d7f5331SMartin Mares2007-06-20  Martin Mares  <[email protected]>
20d7f5331SMartin Mares
3*7cebe481SMartin Mares	* Released as 2.2.6.
4*7cebe481SMartin Mares
50d7f5331SMartin Mares	* Makefile: Added an "install-lib" target. Thanks to Dan Nicholson
60d7f5331SMartin Mares	for a patch.
70d7f5331SMartin Mares
8*7cebe481SMartin Mares	* Makefile, lib/Makefile: Generate and install pkg-config file
9*7cebe481SMartin Mares	for libpci. Again by Dan Nicholson.
10*7cebe481SMartin Mares
110d7f5331SMartin Mares2007-06-20  Thomas Schwinge  <[email protected]>
120d7f5331SMartin Mares
130d7f5331SMartin Mares	* lib/i386-io-hurd.h: Rewritten for new Hurd kernels.
140d7f5331SMartin Mares
156e4a45edSMartin Mares2007-05-04  Martin Mares  <[email protected]>
166e4a45edSMartin Mares
1755c89179SMartin Mares	* Released as 2.2.5.
1855c89179SMartin Mares
196e4a45edSMartin Mares	* pci.ids: Updated to the current snapshot of the database.
206e4a45edSMartin Mares
21d0b07542SMartin Mares2007-02-14  Martin Mares  <[email protected]>
22d0b07542SMartin Mares
23d0b07542SMartin Mares	* lspci.c (show_express): Added PCI/PCI-X to PCI-Express Bridge type.
24d0b07542SMartin Mares	Patch by Mark Glines.
25d0b07542SMartin Mares
263df35926SMartin Mares2007-02-09  Martin Mares  <[email protected]>
273df35926SMartin Mares
283df35926SMartin Mares	* pci.ids: Updated to the current snapshot of the database.
293df35926SMartin Mares
30e49ed044SMartin Mares2007-02-06  Martin Mares  <[email protected]>
31e49ed044SMartin Mares
321ac3a99dSMartin Mares	* Replaced bzero() by memset() everywhere, it's better to lose a tiny
331ac3a99dSMartin Mares	bit of readability than maintain hacks to make it work on various systems.
341ac3a99dSMartin Mares
35b0eb18ccSMartin Mares	* lib/configure: tr on Solaris is a bit weird and it requires `[A-Z]'
36b0eb18ccSMartin Mares	instead of `A-Z'. Fortunately, the extra brackets don't hurt otherwise.
37b0eb18ccSMartin Mares
38e49ed044SMartin Mares	* lib/types.h, lib/configure: Solaris should use <stdint.h> to get precise
39e49ed044SMartin Mares	integer types.
40e49ed044SMartin Mares
419de2768cSMartin Mares2007-02-04  Martin Mares  <[email protected]>
429de2768cSMartin Mares
439de2768cSMartin Mares	* lspci.c: alloca() needs <alloca.h>.
449de2768cSMartin Mares
45d19394dbSMartin Mares2006-09-17  Martin Mares  <[email protected]>
46d19394dbSMartin Mares
47d19394dbSMartin Mares	* lib/dump.c: Fixed a couple of bugs in the dump backend which caused
48d19394dbSMartin Mares	devices with domains or with extended config space to be read incorrectly.
49d19394dbSMartin Mares	Also, dumps with partial lines are allowed now.
50d19394dbSMartin Mares
51934e7e36SMartin Mares2006-09-10  Martin Mares  <[email protected]>
52934e7e36SMartin Mares
53f09856deSMartin Mares	* pci.ids: Updated to the current database snapshot.
54f09856deSMartin Mares
55934e7e36SMartin Mares	* lspci.c (scan_device): If an error occurs when reading the standard config
56934e7e36SMartin Mares	header of a device, report it and ignore the device and return with exit
57934e7e36SMartin Mares	code 2 at the end.
58934e7e36SMartin Mares
59b2055313SMartin Mares2006-09-09  Martin Mares  <[email protected]>
60b2055313SMartin Mares
61fb260653SMartin Mares	* Released as 2.2.4.
62fb260653SMartin Mares
631865e2ddSMartin Mares	* maint/release: Remind the maintainer about the current PCI_LIB_VERSION.
641865e2ddSMartin Mares
65028dffb2SMartin Mares	* lib/pci.h: Updated PCI_LIB_VERSION.
66028dffb2SMartin Mares
6713081e57SMartin Mares	* lspci.c (show_machine): In the `-m' mode, do proper shell escaping
6813081e57SMartin Mares	if the fields printed contain quotes or backslashes.
6913081e57SMartin Mares
703fd6b4d2SMartin Mares	* lspci.c (show_machine): Added a `-vmm' mode, which removes the misuse
713fd6b4d2SMartin Mares	of the `Device' tag for two different purposes.
723fd6b4d2SMartin Mares
73840d09aeSMartin Mares	* Makefile: Moved all system-dependent decisions to lib/configure,
74840d09aeSMartin Mares	since config.mk is included in the top-level Makefile anyway.
75840d09aeSMartin Mares
762100f710SMartin Mares	* lib/configure: When configuring for Linux, ignore the kernel version
772100f710SMartin Mares	and always build all access methods.
782100f710SMartin Mares
793e9c7a18SMartin Mares	* Makefile (CFLAGS): Removed -Winline, it's not needed and triggers
803e9c7a18SMartin Mares	at many non-interesting places with gcc 3.4.
813e9c7a18SMartin Mares
8294db5c82SMartin Mares	* Whitespace cleanup of all source files.
8394db5c82SMartin Mares
84cc062b4aSMartin Mares	* The pci.ids file can be stored compressed if zlib is available.
85cc062b4aSMartin Mares	Added transparent decompression to lib/names.c, modified update-pciids.sh
86cc062b4aSMartin Mares	to keep the file compressed if applicable, updated Makefiles.
87cc062b4aSMartin Mares	Based on a patch by Matthew Wilcox, but all the bugs are mine.
88cc062b4aSMartin Mares
89f4ddb8d3SMartin Mares	* Makefile, README: Allow installation to be done to a different directory
90f4ddb8d3SMartin Mares	from the one we will eventually be placed in by setting DESTDIR.
91f4ddb8d3SMartin Mares	Patch by Matthew Wilcox.
92f4ddb8d3SMartin Mares
9316e37012SMartin Mares	* Added .gitignore files.
9416e37012SMartin Mares
95c7f5314dSMartin Mares	* Makefile (clean): Clean *.orig, too.
96c7f5314dSMartin Mares
97afebde01SMartin Mares	* Cleaned up usage of `char' and `byte'.
98afebde01SMartin Mares
99fd54ccebSMartin Mares	* lib/header.h: PCI_CLASS_DOCKING_OTHER should be 0x0a80, not 0x0a01.
100fd54ccebSMartin Mares
101b2055313SMartin Mares	* lib/header.h: Added PCI_CLASS_xxx constants for all classes currently
102b2055313SMartin Mares	defined in the pci.ids file.
103b2055313SMartin Mares
1044254d153SMartin Mares2006-08-01  Martin Mares  <[email protected]>
1054254d153SMartin Mares
1064254d153SMartin Mares	* lib/i386-io-hurd.h: Fixed a silly typo.
1074254d153SMartin Mares
1081c5cc9b5SMartin Mares2006-07-30  Martin Mares  <[email protected]>
1091c5cc9b5SMartin Mares
11038a9e3c3SMartin Mares	* lib/Makefile: Added a missing rule for obsd-device.o.
11138a9e3c3SMartin Mares
112c7ddfa3eSMartin Mares	* lspci.c, lib/header.h: Added support for MSI per-vector masking.
113c7ddfa3eSMartin Mares	Contributed by Petr Vandrovec.
114c7ddfa3eSMartin Mares
115248a04f8SMartin Mares	* lspci.c, lib/header.h: Added support for the `bridge subsystem ID'
116248a04f8SMartin Mares	capability. Contributed by Petr Vandrovec.
117248a04f8SMartin Mares
118f29dcc87SMartin Mares	* lspci.c (show_htype1): Fixed bug in printing of 64-bit prefetchable
119f29dcc87SMartin Mares	memory windows. Fix by Petr Vandrovec.
120f29dcc87SMartin Mares
1218eab3bffSMartin Mares	* maint/release.pm: Exclude .git directory from releases.
1228eab3bffSMartin Mares
123d305d704SMartin Mares	* lib/i386-ports.c, lib/i386-io-*: Report failures during port access
124d305d704SMartin Mares	initialization by a->warn() instead of calling printf() or perror()
125d305d704SMartin Mares	directly.
126d305d704SMartin Mares
1279007a292SMartin Mares	* lib/i386-ports.c, lib/i386-io-*: Moved the logic which keeps track of
1289007a292SMartin Mares	the port access state to generic code.
1299007a292SMartin Mares
130bd20d5b5SMartin Mares	* lib/i386-io-hurd.h: Ask the kernel for I/O port access appropriately.
131bd20d5b5SMartin Mares	Contributed by Thomas Schwinge and Samuel Thibault.
132bd20d5b5SMartin Mares
13373750606SMartin Mares	* lib/i386-ports.c: Define _GNU_SOURCE, it's needed by the Hurd module.
13473750606SMartin Mares
135d71daa45SMartin Mares	* lib/header.h: Whitespace cleanups.
136d71daa45SMartin Mares
1371c5cc9b5SMartin Mares	* lib/i386-io-windows.h: Fixed indentation and spelling.
1381c5cc9b5SMartin Mares
1391c5cc9b5SMartin Mares	* README.Windows: Mention that WinIO.dll is needed and where to get it.
1401c5cc9b5SMartin Mares
141c2b144efSMartin Mares2006-06-27  Martin Mares  <[email protected]>
142c2b144efSMartin Mares
14314d4f989SMartin Mares	* lib/Makefile, Makefile: Added rules for building and cleaning the example.
14414d4f989SMartin Mares
14514d4f989SMartin Mares	* lib/example.c: Show how to use PCI_FILL_CLASS and used another register
14614d4f989SMartin Mares	for demonstrating the config space accesses. The example is still very
14714d4f989SMartin Mares	incomplete, though.
14814d4f989SMartin Mares
149c2b144efSMartin Mares	* lib/pci.h, lib/generic.c: Added PCI_FILL_CLASS.
150c2b144efSMartin Mares
151c2b144efSMartin Mares	* lib/sysfs.c: Fetch device ID and class from sysfs, because they can
152c2b144efSMartin Mares	be modified by kernel fixups.
153c2b144efSMartin Mares
154c2b144efSMartin Mares	* lspci.c: Use PCI_FILL_CLASS. Thanks to Matthew Willcox for the patch.
155c2b144efSMartin Mares
156bc2eed2dSMartin Mares2006-06-03  Martin Mares  <[email protected]>
157bc2eed2dSMartin Mares
158bc2eed2dSMartin Mares	* lspci.c: Introduced the -nn switch. Thanks to David N. Welton
159bc2eed2dSMartin Mares	for the idea.
160bc2eed2dSMartin Mares
161bc2eed2dSMartin Mares	* lib/names.c (pci_lookup_name): Introduced PCI_LOOKUP_MIXED and
162bc2eed2dSMartin Mares	cleaned up the name selection code.
163bc2eed2dSMartin Mares
164c72eeddeSMartin Mares	* lib/names.c (pci_lookup_name): If PCI_LOOKUP_NO_NUMBERS is given,
165c72eeddeSMartin Mares	pci_access->numeric_ids is ignored.
166c72eeddeSMartin Mares
167c72eeddeSMartin Mares	* lib/names.c (pci_lookup_name): When class is identified and
168c72eeddeSMartin Mares	subclass isn't, display class name and subclass number.
169c72eeddeSMartin Mares
1702f294d4bSMartin Mares2006-05-31  Martin Mares  <[email protected]>
1712f294d4bSMartin Mares
1722f294d4bSMartin Mares	* setpci.c (main): Don't crash when an invalid width is specified.
1732f294d4bSMartin Mares
17481afa98cSMartin Mares	* lspci.c, setpci.c, common.c: die() now uses the right program
17581afa98cSMartin Mares	name when printing an error message.
17681afa98cSMartin Mares
1770ac282f2SMartin Mares2006-05-19  Martin Mares  <[email protected]>
1780ac282f2SMartin Mares
1790ac282f2SMartin Mares	* README: Mention the public GIT tree.
1800ac282f2SMartin Mares
1810ac282f2SMartin Mares	* README: Updated the list of ports.
1820ac282f2SMartin Mares
183d1058e9dSMartin Mares2006-05-10  Martin Mares  <[email protected]>
184d1058e9dSMartin Mares
185d1058e9dSMartin Mares	* lib/configure, lib/fbsd-device.c: Added support for GNU/kFreeBSD.
186d1058e9dSMartin Mares	Thanks to Petr Salinger for the patch.
187d1058e9dSMartin Mares
188abf8d505SMartin Mares2006-05-05  Martin Mares  <[email protected]>
189abf8d505SMartin Mares
1902ae2d1aeSMartin Mares	* Released as 2.2.3.
1912ae2d1aeSMartin Mares
1922ae2d1aeSMartin Mares	* lspci.c (scan_device): The -D switch didn't work as intended
1932ae2d1aeSMartin Mares	in -m mode.
1942ae2d1aeSMartin Mares
1952ae2d1aeSMartin Mares2006-05-05  Martin Mares  <[email protected]>
1962ae2d1aeSMartin Mares
1971d5cf727SMartin Mares	* Released as 2.2.2.
1981d5cf727SMartin Mares
1998a830168SMartin Mares	* pci.ids: Updated to the current database snapshot.
2008a830168SMartin Mares
201b6359063SMartin Mares	* lib/obsd-device.c (and other files in lib/*): Added OpenBSD
202b6359063SMartin Mares	interface by Matthieu Herrb <[email protected]>, based on
203b6359063SMartin Mares	the existing FreeBSD interface.
204b6359063SMartin Mares
205abf8d505SMartin Mares	* Moved pciutils to a GIT repository, which now contains merged
206abf8d505SMartin Mares	history from both CVS and Arch. Good bye, TLA!
207abf8d505SMartin Mares
2086ac70402SMartin Mares2006-03-21  Martin Mares  <[email protected]>
2096ac70402SMartin Mares
2102a124daeSMartin Mares	* lspci.c (show_slot_name): Avoid the previous changes in default
2112a124daeSMartin Mares	display of domain name when in machine-readable mode. However, `-D'
2122a124daeSMartin Mares	forces domain display even there.
2132a124daeSMartin Mares
2146ac70402SMartin Mares	* lspci.man: Added a warning on -m being the only format, which is
2156ac70402SMartin Mares	guaranteed to be stable between lspci versions.
2166ac70402SMartin Mares
2171bbdea17SMartin Mares2006-03-13  Martin Mares  <[email protected]>
2181bbdea17SMartin Mares
219af61eb25SMartin Mares	* lspci.man: Documented the -D switch.
220af61eb25SMartin Mares
221af61eb25SMartin Mares	* lspci.c (show_slot_name, scan_device): If there are multiple PCI
222af61eb25SMartin Mares	domains or if the `-D' switch is used, show the domain number for
223af61eb25SMartin Mares	all devices.
224af61eb25SMartin Mares
2257a61b93cSMartin Mares	* lspci.c (show_verbose): Report cache line size in bytes.
2267a61b93cSMartin Mares
2271bbdea17SMartin Mares	* update-pciids.sh: Use curl if available. Patch by Matthew Wilcox.
2281bbdea17SMartin Mares
2290e78ef8aSMartin Mares2006-01-04  Martin Mares  <[email protected]>
2300e78ef8aSMartin Mares
2310e78ef8aSMartin Mares	* lspci.c (show_express_link): Fixed decoding of link status register.
2320e78ef8aSMartin Mares	Thanks to Roland Dreier for his report.
2330e78ef8aSMartin Mares
234e6859953SMartin Mares2005-12-12  Martin Mares  <[email protected]>
235e6859953SMartin Mares
236e6859953SMartin Mares	* lib/nbsd-libpci.c: If libpci is used by an ordinary user, allow
237e6859953SMartin Mares	at least read-only access. Patch by Pavel Celeda <[email protected]>.
238e6859953SMartin Mares
239e6859953SMartin Mares	* Makefile: Corrected library path on NetBSD.
240e6859953SMartin Mares
241a99c0d69SMartin Mares2005-11-26  Martin Mares  <[email protected]>
242a99c0d69SMartin Mares
243e4af70c6SMartin Mares	* Released as 2.2.1.
244e4af70c6SMartin Mares
245a99c0d69SMartin Mares	* lspci.c (show_machine): Subsystem vendors were printed incorrectly
246a99c0d69SMartin Mares	in machine-readable modes. Thanks to Pavel Celeda for a bug report.
247a99c0d69SMartin Mares
248f23fd3fcSMartin Mares2005-10-11  Martin Mares  <[email protected]>
249f23fd3fcSMartin Mares
250f23fd3fcSMartin Mares	* lspci.c (new_bus): Fixed a memory leak. Thanks to Paul Sangree for reporting it.
251f23fd3fcSMartin Mares
25215296723SMartin Mares2005-09-21  Martin Mares  <[email protected]>
25315296723SMartin Mares
25415296723SMartin Mares	* Released as 2.2.0.
25515296723SMartin Mares
25640b6d93fSMartin Mares	* pci.ids: Updated copyright header.
25740b6d93fSMartin Mares
25815296723SMartin Mares	* lib/sysfs.c (sysfs_get_resources): Removed warning about unsupported
25915296723SMartin Mares	64-bit addresses, they are now always supported.
26015296723SMartin Mares
26115296723SMartin Mares	* lspci.c (show_bases): Corrected printing of 64-bit addresses
26215296723SMartin Mares	in bus-centric mode.
26315296723SMartin Mares
26415296723SMartin Mares	* lib/configure: Enable 64-bit addresses on all Linux systems.
26515296723SMartin Mares
26615296723SMartin Mares	* lib/types.h: Don't pad 64-bit addresses to 16 xigits, only to 8 if they
26715296723SMartin Mares	are shorter.
26815296723SMartin Mares
269224707baSMartin Mares2005-09-11  Martin Mares  <[email protected]>
270224707baSMartin Mares
271224707baSMartin Mares	* Released as 2.1.99-test11.
272224707baSMartin Mares
273224707baSMartin Mares	* lspci.c: Removed unnecessary trailing zeros in pci_lookup_name() calls.
274224707baSMartin Mares
275aeaca5d3SMartin Mares2005-09-10  Martin Mares  <[email protected]>
276aeaca5d3SMartin Mares
277224707baSMartin Mares	* Released as 2.1.99-test10.
278224707baSMartin Mares
27963e6f2e0SMartin Mares	* pci.ids: Synchronized with the current database snapshot.
28063e6f2e0SMartin Mares
281043ebdeeSMartin Mares	* update-pciids.sh: Changed the default URL for downloading pci.ids
282043ebdeeSMartin Mares	to http://pciids.sourceforge.net/v2.2/pci.ids.
283043ebdeeSMartin Mares
284043ebdeeSMartin Mares	* lib/pci.h (PCI_LIB_VERSION): Added version identifier.
285043ebdeeSMartin Mares
286aeaca5d3SMartin Mares	* lib/names.c: Rewritten the name database module almost from scratch.
287aeaca5d3SMartin Mares	Everything is much cleaner and there are hopefully no more memory leaks;
288aeaca5d3SMartin Mares	pci_lookup_name() now uses varargs in a backward compatible fashion.
289aeaca5d3SMartin Mares	Introduced PCI_LOOKUP_NO_NUMBERS.
290aeaca5d3SMartin Mares
291aeaca5d3SMartin Mares	The new code supports subsystem entries not tied to a specific device.
292aeaca5d3SMartin Mares	I had to extend the format of pci.ids in order to support it, so I have
293aeaca5d3SMartin Mares	extended the idea of the "C" (class) blocks and introduced "S" blocks
294aeaca5d3SMartin Mares	for subsystems. To avoid doing more incompatible changes in the future,
295aeaca5d3SMartin Mares	the parser skips unknown single-letter blocks without reporting errors.
296aeaca5d3SMartin Mares
297121c76c9SMartin Mares2005-08-23  Martin Mares  <[email protected]>
298121c76c9SMartin Mares
29954e13765SMartin Mares	* Released as 2.1.99-test9.
30054e13765SMartin Mares
30154e13765SMartin Mares	* Makefile (OPT): Removed -fomit-frame-pointer, it's default in recent
30254e13765SMartin Mares	gcc versions when optimizing anyway.
30354e13765SMartin Mares
30454e13765SMartin Mares	* Made the path to pci.ids customizable and independent on the SHAREDIR.
30554e13765SMartin Mares	Just override IDSDIR in the top-level Makefile.
30654e13765SMartin Mares
30754e13765SMartin Mares	* pci.ids: Synchronized with the current database snapshot.
30854e13765SMartin Mares
30984d437d6SMartin Mares	* lspci.man, setpci.man: Improved the man pages. Documented all access
31084d437d6SMartin Mares	methods and which operations are privileged.
31184d437d6SMartin Mares
31284d437d6SMartin Mares	* lspci.c: Another rewrite of config register caching, now also including
31384d437d6SMartin Mares	lots of internal checks. It should be now perfectly able to cope with
31484d437d6SMartin Mares	portions of the configuration space being inaccessible, for example
31584d437d6SMartin Mares	due to insufficient access rights.
31684d437d6SMartin Mares
3173b8bf739SMartin Mares	* lspci.c (show_pcix_nobridge, show_pcix_bridge): Cleaned up dumping of PCI-X
3183b8bf739SMartin Mares	capabilities. Includes partial support for PCI-X 2.0 (probably incomplete
3193b8bf739SMartin Mares	as I haven't seen the spec).
3203b8bf739SMartin Mares
3213b8bf739SMartin Mares	* lspci.c: Quell warnings about unused parameters.
3223b8bf739SMartin Mares
32384d437d6SMartin Mares	* lspci.c: Removed C++ comments.
32484d437d6SMartin Mares
3253b8bf739SMartin Mares	* lib/header.h: Merged definitions of extended capabilities and some new
3263b8bf739SMartin Mares	PCI-X capability bits from linux-2.6.11/include/pci.h.
3273b8bf739SMartin Mares
3283b8bf739SMartin Mares	* lspci.c (show_caps): Try to scan extended capabilities only if the
3293b8bf739SMartin Mares	device has either PCI-X or PCI Express capability in its normal capability
3303b8bf739SMartin Mares	list.
3313b8bf739SMartin Mares
332f7821e53SMartin Mares	* lib/dump.c (dump_init): Reading of dumps works again. The dump reader
333f7821e53SMartin Mares	now also remembers how much data it has read and refuses attempts to
334f7821e53SMartin Mares	access more than that.
335ea4e5f5dSMartin Mares
33646ea554dSMartin Mares	* setpci.man, lspci.c, README: prefer spelling "buses" over "busses".
33746ea554dSMartin Mares
3388afaab22SMartin Mares	* lspci.c: If alloca() is not available, use xmalloc(), not malloc().
3398afaab22SMartin Mares
340121c76c9SMartin Mares	* lib/configure: Added x86_64 on Linux.
341121c76c9SMartin Mares
342c1c2c30eSMartin Mares2005-08-22  Martin Mares  <[email protected]>
343c1c2c30eSMartin Mares
344b9ca9147SMartin Mares	* lib/filter.c (pci_filter_parse_slot): Fixed parsing of domain filters.
345b9ca9147SMartin Mares	Thanks to Matthew Wilcox for bug report.
346b9ca9147SMartin Mares
347c1c2c30eSMartin Mares	* lspci.c: Corrected spelling of "Hz" (it was "hz" at several places).
348b9ca9147SMartin Mares	Thanks to Krzysztof Oledzki for pointing that out.
349c1c2c30eSMartin Mares
35026542a0bSMartin Mares2004-08-19  Martin Mares  <[email protected]>
35126542a0bSMartin Mares
35226542a0bSMartin Mares	* pciutils.spec (%attr): Setting attributes for /sbin/* is an anachronism,
35326542a0bSMartin Mares	because pciutils by default install to /usr/sbin. Update.
35426542a0bSMartin Mares
3556aa54f1bSMartin Mares2004-08-13  Martin Mares  <[email protected]>
3566aa54f1bSMartin Mares
357aabb0a92SMartin Mares	* Released as 2.1.99-test8.
358aabb0a92SMartin Mares
359f31412d1SMartin Mares	* lib/types.h, lib/pci.h, lib/sysdep.h: `byte' and `word' are
360f31412d1SMartin Mares	no longer exported to the outside world.
361f31412d1SMartin Mares
362ee7d8384SMartin Mares	* README.Windows: Updated.
363ee7d8384SMartin Mares
364ee7d8384SMartin Mares	* maint/release: Substitute version number in win32/config.h.
365ee7d8384SMartin Mares
366ee7d8384SMartin Mares	* win32/config.h: Added.
367ee7d8384SMartin Mares
368ee7d8384SMartin Mares	* lib/sysdep.h (bzero, strcasecmp): are macros on Windows.
369ee7d8384SMartin Mares
370ee7d8384SMartin Mares	* compat/getopt.[ch]: Added copies of getopt.[ch] from the GNU
371ee7d8384SMartin Mares	C library for use on systems where the default libraries lack
372ee7d8384SMartin Mares	proper getopt. Currently used by the Windows port.
373ee7d8384SMartin Mares
374ee7d8384SMartin Mares	* lib/sysdep.h, lib/types.h: Updates of the Windows port from
375ee7d8384SMartin Mares	Alexander Stock.
376ee7d8384SMartin Mares
377489233b4SMartin Mares	* lib/types.h: If PCI_HAVE_Uxx_TYPES is defined, libpci doesn't define
378489233b4SMartin Mares	its own u8, u16, u32, byte and word types and uses what the user
379489233b4SMartin Mares	has supplied instead. With this change, all namespace clashes should
380489233b4SMartin Mares	be gone.
381489233b4SMartin Mares
382489233b4SMartin Mares	* Makefile, lib/Makefile: Updated dependencies.
383489233b4SMartin Mares
384489233b4SMartin Mares	* pciutils.h: Include lib/sysdep.h and move NONRET et al. there.
385489233b4SMartin Mares
386489233b4SMartin Mares	* lib/sysdep.h: No need to include <sys/types.h> on FreeBSD, because
387489233b4SMartin Mares	it is included unconditionally in lib/types.h.
388489233b4SMartin Mares
389489233b4SMartin Mares	* Moved system-dependent stuff from lib/internal.h to lib/sysdep.h,
390489233b4SMartin Mares	which is also used by the utilities. Also moved type declarations
391489233b4SMartin Mares	from lib/pci.h to lib/types.h.
392489233b4SMartin Mares
393489233b4SMartin Mares	* All files: Prepend a "PCI_" prefix in front of all configuration
394489233b4SMartin Mares	defines to avoid namespace clashes. CAVEAT: If there is any libpci
395489233b4SMartin Mares	application using the (undocumented) defines, it has to be updated.
396489233b4SMartin Mares
397489233b4SMartin Mares	* lib/Makefile: Killed HAVE_OWN_HEADER_H, since we stopped sharing
398489233b4SMartin Mares	headers with the kernel a couple of years ago.
399489233b4SMartin Mares
4009bb4b4eaSMartin Mares	* lib/sysfs.c (sysfs_get_resources): We have 7 resources, not 6.
4019bb4b4eaSMartin Mares
4026aa54f1bSMartin Mares	* lspci.c (show_rom): Use the same logic for printing disabled
4036aa54f1bSMartin Mares	or unassigned ROM's as we do in show_bases() for the other BAR's.
4046aa54f1bSMartin Mares
4056aa54f1bSMartin Mares	* lib/generic.c (pci_generic_fill_info): Better reaction to
4066aa54f1bSMartin Mares	invalid 64-bit addresses. Also d->hdrtype should not include
4076aa54f1bSMartin Mares	bit 7, which caused mysterious errors on multi-function devices.
4086aa54f1bSMartin Mares
4096aa54f1bSMartin Mares	* lib/generic.c (pci_generic_fill_info): Fill in base addresses
4106aa54f1bSMartin Mares	even if the regions are known to be disabled. It is the client's
4116aa54f1bSMartin Mares	job to interpret them. (And it is not a trivial job if you want
4126aa54f1bSMartin Mares	to do it correctly, since you need to check I/O and memory enables
4136aa54f1bSMartin Mares	on all upstream bridges, too.) However, it could be interesting to
4146aa54f1bSMartin Mares	introduce functions for interpreting the addresses and even for
4156aa54f1bSMartin Mares	mapping the regions and doing I/O on them.
4166aa54f1bSMartin Mares
41780e6c636SMartin Mares2004-07-30  Martin Mares  <[email protected]>
41880e6c636SMartin Mares
41980e6c636SMartin Mares	* lspci.c: HyperTransport improvements from Maciej.
42080e6c636SMartin Mares
421d6324891SMartin Mares2004-07-11  Martin Mares  <[email protected]>
422d6324891SMartin Mares
423d6324891SMartin Mares	* lib/sysfs.c (sysfs_get_resources): Arguments now correspond
424d6324891SMartin Mares	to the format string. [Patch by Bill Nottingham]
425d6324891SMartin Mares
426ec25b52dSMartin Mares2004-07-05  Martin Mares  <[email protected]>
427ec25b52dSMartin Mares
428362be683SMartin Mares	* Released as 2.1.99-test7.
429362be683SMartin Mares
430ec25b52dSMartin Mares	* lspci.c (config_fetch): Wanted to merge Matthew's bug fix, but
431ec25b52dSMartin Mares	ended up with rewriting the fetching mechanism to be fully dynamic,
432ec25b52dSMartin Mares	but avoid reading config space registers not explicitly requested.
433ec25b52dSMartin Mares
434ec25b52dSMartin Mares2004-06-29  Matthew Wilcox <[email protected]>
435ec25b52dSMartin Mares
436ec25b52dSMartin Mares	* lspci.c: More work on PCI Express dumping.
437ec25b52dSMartin Mares
438ec25b52dSMartin Mares	* lib/header.h: Updated PCI Express capability definitions.
439ec25b52dSMartin Mares
440ec25b52dSMartin Mares	* lib/proc.c (proc_read): Removed bogus warning.
441ec25b52dSMartin Mares
442ec25b52dSMartin Mares	* common.c (xrealloc): Introduced.
443ec25b52dSMartin Mares
444ec25b52dSMartin Mares	* lspci.man: Added -xxxx.
445ec25b52dSMartin Mares
44609817437SMartin Mares2004-06-27  Martin Mares  <[email protected]>
44709817437SMartin Mares
448d1fa27ebSMartin Mares	* Released as 2.1.99-test6.
449d1fa27ebSMartin Mares
4504d67aa89SMartin Mares	* lspci.c (show_msix), lib/header.h: Added dumping of MSI-X cap.
4514d67aa89SMartin Mares	Patch by Roland Dreier <[email protected]>, cleaned up by me.
4524d67aa89SMartin Mares
4534d67aa89SMartin Mares	* lspci.c (show_pcix_nobridge, show_pcix_bridge): Handle config_fetch()
4544d67aa89SMartin Mares	failures.
4554d67aa89SMartin Mares
4564d67aa89SMartin Mares	* lib/header.h: Added PCI Express extended capabilities. Again by Matthew.
4574d67aa89SMartin Mares
4584d67aa89SMartin Mares	* lspci.c (show_express): Added dumping of PCI Express cap.
4594d67aa89SMartin Mares	Patch by Matthew Wilcox.
4604d67aa89SMartin Mares
4614d67aa89SMartin Mares	* lib/header.h: Added a list of PCI 3.0 capabilities and also details
4624d67aa89SMartin Mares	on PCI Express caps. Patch by Matthew Wilcox <[email protected]>.
4634d67aa89SMartin Mares
46409817437SMartin Mares	* lspci.c (check_root): Gone. No explicit checks for root are needed,
46509817437SMartin Mares	report correct errors reported by the libpci instead.
46609817437SMartin Mares
46709817437SMartin Mares	* lspci.c: Added dumping of the extended config space on "-xxxx".
46809817437SMartin Mares	Better caching of config registers.
46909817437SMartin Mares
47009817437SMartin Mares	* setpci.c (main): Allow access to whole 4096 bytes of the config space.
47109817437SMartin Mares
47209817437SMartin Mares	* lib/sysfs.c, lib/proc.c: Don't print error messages on short reads,
47309817437SMartin Mares	just return the appropriate error code.
47409817437SMartin Mares
47509817437SMartin Mares	* lib: Added support for extended (4096-byte) configuration space,
47609817437SMartin Mares	currently implemented only in Linux proc and sysfs access methods
47709817437SMartin Mares	and of course in the dump reader.
47809817437SMartin Mares
4790d656226SMartin Mares2004-05-29  Martin Mares  <[email protected]>
4800d656226SMartin Mares
481c0eece92SMartin Mares	* Released as 2.1.99-test5.
482c0eece92SMartin Mares
483a2413560SMartin Mares	* lib/pci.h: Windows don't have the standard u_int* types.
484a2413560SMartin Mares
485a2413560SMartin Mares	* lib/internal.h: <sys/param.h> required on Windows for endianity
486a2413560SMartin Mares	macros.
487a2413560SMartin Mares
488a2413560SMartin Mares	* lib/i386-ports.c: Connected i386-io-windows.h.
489a2413560SMartin Mares
490a2413560SMartin Mares	* lspci.c (check_root): geteuid() is not available on Windows.
491a2413560SMartin Mares
492a2413560SMartin Mares	* lib/i386-io-windows.h: Added Windows port contributed by Alexander
493a2413560SMartin Mares	Stock <[email protected]>.
494a2413560SMartin Mares
495a2413560SMartin Mares	* lib/configure: Hopefully fixed SunOS port broken by various
496a2413560SMartin Mares	changes to the configure script.
497a2413560SMartin Mares
4980d656226SMartin Mares	* Makefile, lib/configure: Cross-compilation support, patch by Maciej.
4990d656226SMartin Mares
500138c0385SMartin Mares2004-05-28  Martin Mares  <[email protected]>
501138c0385SMartin Mares
5029f490382SMartin Mares	* Released as 2.1.99-test4.
5039f490382SMartin Mares
504cce2caacSMartin Mares	* lspci.c (show_verbose): Header type 1 is probably legal for all
505cce2caacSMartin Mares	types of bridges, not only for PCI-to-PCI bridges.
506cce2caacSMartin Mares
507b569ef09SMartin Mares	* lspci.c (format_agp_rate): Write "x16", not "x@".
508b569ef09SMartin Mares	(show_agp): rate[] could overflow.
509b569ef09SMartin Mares	Bugs reported by Jakub Bogusz <[email protected]>.
510b569ef09SMartin Mares
511bfc4fe7aSMartin Mares	* lspci.c (show_ht_*): Show HyperTransport capability with all its
512bfc4fe7aSMartin Mares	details. Once again code by Maciej simplified (i.e., possibly broken)
513bfc4fe7aSMartin Mares	by me.
514bfc4fe7aSMartin Mares
515bfc4fe7aSMartin Mares	* lib/header.h: Added declarations of HyperTransport capability.
516bfc4fe7aSMartin Mares	Again thanks to Maciej.
517bfc4fe7aSMartin Mares
518138c0385SMartin Mares	* lspci.c: Decode all bits of the secondary status word in type 1 headers.
519138c0385SMartin Mares	Thanks to Maciej W. Rozycki <[email protected]> for the patch.
520138c0385SMartin Mares
5218fc75dbcSMartin Mares2003-12-27  Martin Mares  <[email protected]>
5228fc75dbcSMartin Mares
52381abd2a7SMartin Mares	* Released as 2.1.99-test3.
52481abd2a7SMartin Mares
5251f7c91ccSMartin Mares	* lspci.man, setpci.man: Document domains and correct spelling.
5261f7c91ccSMartin Mares
5271f7c91ccSMartin Mares	* lib/dump.c (dump_init): Added ability to read domain numbers.
5281f7c91ccSMartin Mares
52984c8d1bbSMartin Mares	* lspci.c: Devices in domains different from 0 have their slot number
5301f7c91ccSMartin Mares	printed as "<domain>:<bus>:<slot>.<func>". Tree view supports domains
5311f7c91ccSMartin Mares	as well.
53284c8d1bbSMartin Mares
53384c8d1bbSMartin Mares	* lib/filter.c: Slot filters understand domains.
53484c8d1bbSMartin Mares
53584c8d1bbSMartin Mares	* lib/generic.c: Mention the domain in slot numbers in all error messages.
53684c8d1bbSMartin Mares
53784c8d1bbSMartin Mares	* lib/internal.h: The #ifdef for Linux <asm/byteorder.h> was wrong.
53884c8d1bbSMartin Mares
53984c8d1bbSMartin Mares	* lib/access.c (pci_get_dev): Added support for domains.
54084c8d1bbSMartin Mares
54184c8d1bbSMartin Mares	* lib/sysfs.c (sysfs_scan): Read vendor and device ID from the config
54284c8d1bbSMartin Mares	registers (or to be precise, leave it for the generic parts of the pcilib
54384c8d1bbSMartin Mares	to do so) instead of reading them from the sysfs. It's faster this way.
54484c8d1bbSMartin Mares
54584c8d1bbSMartin Mares	* lspci.c (show_pcix): Don't touch pci_dev->hdrtype, it's an internal
54684c8d1bbSMartin Mares	variable. Better read it from the config registers (it's cached anyway).
54784c8d1bbSMartin Mares
54884c8d1bbSMartin Mares	* lib/sysfs.c (sysfs_scan), lib/proc.c (proc_scan): Don't read the hdrtype.
54984c8d1bbSMartin Mares	  lib/generic.c (pci_generic_fill_info): If hdrtype is -1 (unset), read it.
55084c8d1bbSMartin Mares	  Saves lots of unnecessary file accesses.
55184c8d1bbSMartin Mares
55211f7b31bSMartin Mares	* lib/pci.h (PCIADDR_PORT_FMT): Use %llx instead of %Lx, because the latter
55311f7b31bSMartin Mares	is not supported by all C libraries.
55411f7b31bSMartin Mares
55511f7b31bSMartin Mares	* Makefile: Always enter the lib directory (remember that we don't have
55611f7b31bSMartin Mares	full dependecies for the library in the top-level Makefile; hmmm, another
55711f7b31bSMartin Mares	thing to rewrite some day).
55811f7b31bSMartin Mares
55911f7b31bSMartin Mares	* lib/sysfs.c: Added Linux sysfs access method based on the patch
56011f7b31bSMartin Mares	written by Matthew Wilcox <[email protected]>.
56111f7b31bSMartin Mares
56211f7b31bSMartin Mares	* lib/proc.c: Renamed the access method name from "/proc/bus/pci" to "Linux-proc".
56311f7b31bSMartin Mares
56411f7b31bSMartin Mares	* lib/pread.h: The hacks to support pread on various versions
56511f7b31bSMartin Mares	of Linux libc moved there.
56611f7b31bSMartin Mares
56711f7b31bSMartin Mares	* lib/proc.c (proc_setup): The return value of snprintf() varies
56811f7b31bSMartin Mares	between glibc versions, so we need to check both for a negative
56911f7b31bSMartin Mares	values and for too large values.
57011f7b31bSMartin Mares
5714284af58SMartin Mares	* Removed last few references to the "Linux PCI Utilities", the
5724284af58SMartin Mares	package is pretty cross-platform now :)
5734284af58SMartin Mares
5744284af58SMartin Mares2003-12-27  Martin Mares  <[email protected]>
5754284af58SMartin Mares
576ab12277eSMartin Mares	* Released as 2.1.99-test2.
577ab12277eSMartin Mares
578ab12277eSMartin Mares	* README, pciutils.lsm, pciutils.spec: Use @VERSION@ to make the
579ab12277eSMartin Mares	release scripts insert the current version. "make release" is gone.
580ab12277eSMartin Mares
581ab12277eSMartin Mares	* maint/release, maint/release.pm: Added a new system of scripts for
582ab12277eSMartin Mares	making releases including inter-version diffs etc.
583ab12277eSMartin Mares
584ab12277eSMartin Mares	* Makefile: Cleaned up.
585ab12277eSMartin Mares
586ab12277eSMartin Mares	* lib/fbsd-device.c: I patched another copy of this file by mistake,
587ab12277eSMartin Mares	this time the version checks should be right.
588ab12277eSMartin Mares
589ab12277eSMartin Mares2003-12-27  Martin Mares  <[email protected]>
590ab12277eSMartin Mares
5916d722cd6SMartin Mares	* Released as 2.1.99-test1.
5926d722cd6SMartin Mares
593dd33246aSMartin Mares	* pciutils.h, common.c, lspci.man, setpci.man, lib/internal.h:
594dd33246aSMartin Mares	Remove shadows of the syscall access method which was never
595dd33246aSMartin Mares	implemented.
596dd33246aSMartin Mares
59780b3121aSMartin Mares	* update-pciids.sh: Try to preserve permissions of the old file
59880b3121aSMartin Mares	if chmod supports --reference. Should close Debian Bug #223740.
59980b3121aSMartin Mares
6006aea909aSMartin Mares	* lib/proc.c (proc_setup): Increased path name length limit to 1024.
6016aea909aSMartin Mares	Thanks for Redhat and Mandrake for inspiration.
6026aea909aSMartin Mares
6036aea909aSMartin Mares	* lib/configure: Recognize ppc and ppc64, both have 64-bit addresses.
6046aea909aSMartin Mares	Grabbed from Redhat (Fedora) patches.
6056aea909aSMartin Mares
6066aea909aSMartin Mares2003-12-27  Martin Mares  <[email protected]>
6076aea909aSMartin Mares
608f701ff47SMartin Mares	Merged bug fixes from Debian patches:
609f701ff47SMartin Mares
610f701ff47SMartin Mares	* lspci.c (show_verbose): "Cache Line Size" should be capitalized.
611f701ff47SMartin Mares
612f701ff47SMartin Mares	* lspci.c (show_pcix_nobridge): Added a missing newline.
613f701ff47SMartin Mares
6142240db8cSMartin Mares	* lib/proc.c (proc_scan): When reading the header type, don't
6152240db8cSMartin Mares	forget to clear the topmost bit indicating that the device has
616f701ff47SMartin Mares	multiple functions.
6172240db8cSMartin Mares
6182240db8cSMartin Mares2003-12-27  Martin Mares  <[email protected]>
6192240db8cSMartin Mares
62045902995SMartin Mares	Updated the FreeBSD port. Thanks to Samy Al Bahra <[email protected]>
62145902995SMartin Mares	for the patches:
62245902995SMartin Mares
62345902995SMartin Mares	* lib/Makefile: Add ${FREEBSD_SYS} to the include path if it's defined.
62445902995SMartin Mares	* lib/fbsd-device.c: Select the right set of system includes according
62545902995SMartin Mares	to __FreeBSD_version.
62645902995SMartin Mares
62745902995SMartin Mares2003-12-27  Martin Mares  <[email protected]>
62845902995SMartin Mares
6298fc75dbcSMartin Mares	Merged support for Solaris on i386 by Bill Moore <[email protected]>
6308fc75dbcSMartin Mares	and cleaned up:
6318fc75dbcSMartin Mares
6328fc75dbcSMartin Mares	* lib/configure: Recognize SunOS.
6338fc75dbcSMartin Mares	* lib/internal.h: Learn how to recognize byte order on SunOS.
6348fc75dbcSMartin Mares	* lib/i386-ports.c: Split OS-dependent I/O port access from i386-ports.c.
6358fc75dbcSMartin Mares	* lib/i386-io-linux.h: Linux specific part.
6368fc75dbcSMartin Mares	* lib/i386-io-hurd.h: GNU/Hurd specific part.
6378fc75dbcSMartin Mares	* lib/i386-io-sunos.h: SunOS specific part.
6388fc75dbcSMartin Mares
6399739916eSMartin Mares2003-12-26  Martin Mares  <[email protected]>
6409739916eSMartin Mares
6419739916eSMartin Mares	* lib/header.h (PCI_*_MASK): Cast to pciaddr_t explicitly.
6429739916eSMartin Mares
6439739916eSMartin Mares	* lib/pci.h: Types declared in <sys/types.h> should be usable on all
6449739916eSMartin Mares	platforms we currently support, so kill the forest of #ifdef's and
6459739916eSMartin Mares	use them in all cases.
6469739916eSMartin Mares
6479739916eSMartin Mares	* lib/pci.h: Use ULONG_MASK to decide whether we should use long
6489739916eSMartin Mares	or long long to represent a 64-bit address. Killed HAVE_LONG_ADDRESS.
6499739916eSMartin Mares	Define format strings for addresses, port numbers and IRQ numbers
6509739916eSMartin Mares	directly in pci.h.
6519739916eSMartin Mares
6529739916eSMartin Mares	* lib/proc.c (proc_scan): Use PCIADDR_T_FMT for scanf'ing addresses.
6539739916eSMartin Mares
65480459c65SMartin Mares2003-12-26  Marco Gerards  <[email protected]>
65580459c65SMartin Mares
65680459c65SMartin Mares	Added support for the GNU Hurd (cleaned up by Martin Mares):
65780459c65SMartin Mares
65880459c65SMartin Mares	* lib/configure [GNU]: Use the i386 ports for configuration access.
65980459c65SMartin Mares	* lib/i386-ports.c: Don't call iopl() on the Hurd.
66080459c65SMartin Mares	* lib/pci.h [OS_GNU]: Include <sys/types.h> and use it for defining
66180459c65SMartin Mares	u8 to u32.
66280459c65SMartin Mares
663a85769a8SMartin Mares2003-12-26  Martin Mares  <[email protected]>
664a85769a8SMartin Mares
6657dacd9c8SMartin Mares	* lspci.c (show_pcix_bridge, show_pcix_nobridge): Don't forget to call
6667dacd9c8SMartin Mares	config_fetch() to ensure that the registers have been read. Thanks to
6677dacd9c8SMartin Mares	Bill Wood <[email protected]> for the patch.
6687dacd9c8SMartin Mares
6697dacd9c8SMartin Mares	* lspci.c: Ensure that failure of config_fetch() is handled correctly
6707dacd9c8SMartin Mares	at all places.
6717dacd9c8SMartin Mares
6724063c31cSMartin Mares	* lspci.man: There was one more explicit reference to /usr/share/pci.ids.
6734063c31cSMartin Mares	Changed to @SHAREDIR@. Patch from Maciej W. Rozycki <[email protected]>.
6744063c31cSMartin Mares
6753fe8a38dSMartin Mares	* setpci.c (main): Better error messages.
6763fe8a38dSMartin Mares
6775f5b1a7bSMartin Mares	* setpci.c (ex_op): The demo mode should disable only writing, not reading.
6785f5b1a7bSMartin Mares
6795f5b1a7bSMartin Mares	* setpci.man: The documentation was inconsistent on what should -D do.
6805f5b1a7bSMartin Mares	Document the new behaviour.
681b251f40bSMartin Mares
68291e37a49SMartin Mares	* pciutils.h, common.c, setpci.c: Introduced a NONRET macro encapsulating
68391e37a49SMartin Mares	the GCC specific __attribute__((noreturn)) and killed the hack with
68491e37a49SMartin Mares	redefining __attribute__ on non-GCC compilers.
68591e37a49SMartin Mares
6864afd29d3SMartin Mares	* Makefile: Added missing dependencies. Parallel builds work now.
6874afd29d3SMartin Mares	Problem reported by Andreas Haumer <[email protected]>, but I chose
6884afd29d3SMartin Mares	a different fix.
6894afd29d3SMartin Mares
690b0f1a03bSMartin Mares	* Makefile (MANDIR): Use `:=' instead of `=' to avoid executing the shell
691b0f1a03bSMartin Mares	command every time $(MANDIR) is referenced.
692b0f1a03bSMartin Mares
693b7fd8e19SMartin Mares	* lspci.c (main): The error message for `lspci -s' incorrectly mentioned
694b7fd8e19SMartin Mares	a `-f' switch. Reported by Steve Finney <[email protected]>.
695b7fd8e19SMartin Mares
69605bb10a2SMartin Mares	* lib/generic.c: Removed memory leak in pci_generic_bus_scan().
69705bb10a2SMartin Mares	Reported by Gary Parnes <[email protected]>.
69805bb10a2SMartin Mares
699a832f6f1SMartin Mares	* Replaced obsolete syntax of __attribute__((unused)) in the middle of
700a832f6f1SMartin Mares	parameter declarations (which is no longer supported by GCC 3.1) by the
701a832f6f1SMartin Mares	current syntax (attribute at the end). Thanks to [email protected]
702a832f6f1SMartin Mares	for reporting this problem.
703a832f6f1SMartin Mares
704a85769a8SMartin Mares	* Removed CVS $Id$ tags from all files.
705a85769a8SMartin Mares
706a85769a8SMartin Mares	* Makefile: Added some more warnings.
707a85769a8SMartin Mares
708b7351143SMartin Mares	* setpci.c: Cleaned up mask/value code.
709b7351143SMartin Mares
710b7351143SMartin Mares2003-12-08 Thayne Harbaugh <[email protected]>
711b7351143SMartin Mares
712b7351143SMartin Mares	* setpci.c: Individual bits to be set can be specified as <value>:<mask>.
713b7351143SMartin Mares
7142a5d5cf9SMartin Mares2003-11-29  Martin Mares  <[email protected]>
7152a5d5cf9SMartin Mares
7162a5d5cf9SMartin Mares	* Imported the pciutils sources to my Arch repository. Good-bye, CVS.
7172a5d5cf9SMartin Mares
718d772ef15SMartin Mares2003-01-04  Martin Mares  <[email protected]>
719d772ef15SMartin Mares
7201b95f396SMartin Mares	* Released as 2.1.11.
7211b95f396SMartin Mares
722c83293ebSMartin Mares	* Makefile: Changed configuration of installation directories --
723c83293ebSMartin Mares	all paths are now set at the top of the Makefile instead of being
724c83293ebSMartin Mares	scattered between the installation rules. The default installation
725c83293ebSMartin Mares	now goes always to /usr/local regardless of the OS as most distributions
726c83293ebSMartin Mares	already contain some version of pciutils and we don't want custom
727c83293ebSMartin Mares	installations to interfere with the default ones.
728c83293ebSMartin Mares
729c83293ebSMartin Mares	* Makefile: Removed a couple of ancient install hacks: we no longer
730c83293ebSMartin Mares	try to avoid overwriting a newer pci.ids file (users are now expected
731c83293ebSMartin Mares	to use update-ids) and we don't try to remove /etc/pci.ids (a long time
732c83293ebSMartin Mares	has passed since the last version which used it).
733c83293ebSMartin Mares
734e2875dcdSMartin Mares	* Makefile: Paths to pci.ids in man pages automatically get the right path.
735e2875dcdSMartin Mares
7361b95f396SMartin Mares	* Added the update-ids utility.
7370138a2a7SMartin Mares
738d772ef15SMartin Mares	* lib: Removed partially implemented "syscall" access method which will
739d772ef15SMartin Mares	probably never be needed.
740d772ef15SMartin Mares
741eb620239SMartin Mares2002-12-27  Martin Mares  <[email protected]>
742eb620239SMartin Mares
743130090bdSMartin Mares	* lib/nbsd-libpci.c: Cleaned up and hopefully made it endian safe.
744130090bdSMartin Mares
745eb620239SMartin Mares	* lib/generic.c (pci_generic_scan_bus): Added work-around for devices with
746eb620239SMartin Mares	discontiguous numbering of functions. This is already present in the Linux
747eb620239SMartin Mares	kernel for several years, but I forgot to update pciutils as well.
748eb620239SMartin Mares
749848b4347SMartin Mares2002-12-26  Martin Mares  <[email protected]>
750848b4347SMartin Mares
751579b19ffSMartin Mares	* lib/header.h, lspci.c: Dump AGP3 flags and speeds.
752579b19ffSMartin Mares
753579b19ffSMartin Mares	* lib/pci.h, Makefile: Removed HAVE_OWN_HEADER_H. Always use our own header,
754579b19ffSMartin Mares	there is no reason to prefer the kernel version.
755579b19ffSMartin Mares
756579b19ffSMartin Mares	* lib/proc.c (proc_scan): Don't forget to initialize hdrtype.
757579b19ffSMartin Mares
758848b4347SMartin Mares	* Added preliminary version of NetBSD support by Quentin Garnier
759848b4347SMartin Mares	<[email protected]>.
760848b4347SMartin Mares
761f0952474SMartin Mares2002-04-06  Martin Mares  <[email protected]>
762f0952474SMartin Mares
763f0952474SMartin Mares	* lspci.c: Mention "-xxx" in the help.
764f0952474SMartin Mares
765d2f666f1SMartin Mares2002-03-30  Martin Mares  <[email protected]>
766d2f666f1SMartin Mares
7679bd44bb0SMartin Mares	* Released as 2.1.10.
7689bd44bb0SMartin Mares
769a33d0eb7SMartin Mares	* Removed pci.ids from the CVS as they are now maintained separately.
770a33d0eb7SMartin Mares	They are still included in the tarball, but if you are building	pciutils
771a33d0eb7SMartin Mares	from CVS sources or you want to get a newer ID file than the one distributed,
772a33d0eb7SMartin Mares	just use "make update-ids" to download the most recent snapshot from
773a33d0eb7SMartin Mares	pciids.sf.net.
774a33d0eb7SMartin Mares
775a33d0eb7SMartin Mares	* Makefile, README: Updated accordingly.
776a33d0eb7SMartin Mares
777a33d0eb7SMartin Mares	* Makefile: Added a couple of maintenance targets.
778a33d0eb7SMartin Mares
779a33d0eb7SMartin Mares	* maint/*: Maintainer's utilities now reside here (present only in CVS,
780a33d0eb7SMartin Mares	not in the tarball).
781a33d0eb7SMartin Mares
782d2f666f1SMartin Mares	* lib/names.c (parse_name_list): End-of-line comments are no longer
783d2f666f1SMartin Mares	supported. Hashes are now perfectly valid in all names and they start
784d2f666f1SMartin Mares	a comment only at the start of the line.
785d2f666f1SMartin Mares
786ee551b73SMartin Mares2002-03-26  Martin Mares  <[email protected]>
787ee551b73SMartin Mares
78807159913SMartin Mares	* README: Rewritten.
78907159913SMartin Mares
790ee551b73SMartin Mares	* Makefile: When the currently installed pci.ids file is newer than
791ee551b73SMartin Mares	the version to be installed, don't overwrite it. Suggested by
792ee551b73SMartin Mares	Jean Delvare <[email protected]>.
793ee551b73SMartin Mares
794bc7b1d62SMartin Mares2002-03-24  Martin Mares  <[email protected]>
795bc7b1d62SMartin Mares
7965f5e6f64SMartin Mares	* lspci.c (show_pcix_bridge): Added PCI-X capability display.
7975f5e6f64SMartin Mares	Contributed by Jeff Garzik <[email protected]>.
7985f5e6f64SMartin Mares
7995f5e6f64SMartin Mares	* lib/header.h: Added PCI-X stuff. Again by Jeff.
8005f5e6f64SMartin Mares
8015f5e6f64SMartin Mares	* Makefile (CFLAGS): -Werror is gone.
8025f5e6f64SMartin Mares
803a1052f16SMartin Mares	* lspci.c (format_agp_rate): Fixed AGP rate reporting.
804a1052f16SMartin Mares
805bc7b1d62SMartin Mares	* lib/filter.c (pci_filter_parse_slot): Allow bus 0xff, slot 0x1f and
806bc7b1d62SMartin Mares	function 7.
807bc7b1d62SMartin Mares
808bc7b1d62SMartin Mares	* lib/names.c (pci_lookup_name): When printing unknown subsystem vendor
809bc7b1d62SMartin Mares	or device hexadecimally, don't confuse it with chip vendor/device ID.
810bc7b1d62SMartin Mares	First reported by Marc Boucher <[email protected]>.
811bc7b1d62SMartin Mares
812f793990cSMartin Mares2001-11-04  Martin Mares  <[email protected]>
813f793990cSMartin Mares
814ee551b73SMartin Mares	* Released as 2.1.9.
815ee551b73SMartin Mares
816f793990cSMartin Mares	* pci.ids: Synced with the PCI ID Repository at SourceForge
817f793990cSMartin Mares	(http://pciids.sourceforge.net/).
818f793990cSMartin Mares
8191d174e56SMartin Mares2000-08-25  Martin Mares  <[email protected]>
8201d174e56SMartin Mares
8211d174e56SMartin Mares	* pci.ids: Updated ID's, synced with kernel 2.4.0-test7.
8221d174e56SMartin Mares
82365b4327eSMartin Mares2000-06-13  Martin Mares  <[email protected]>
82465b4327eSMartin Mares
82565b4327eSMartin Mares	* Makefile (uninstall): Fixed.
82665b4327eSMartin Mares
82765b4327eSMartin Mares	* pci.ids: ID updates.
82865b4327eSMartin Mares
8294a219d5fSMartin Mares2000-05-20  Martin Mares  <[email protected]>
8304a219d5fSMartin Mares
8314a219d5fSMartin Mares	* Released as 2.1.8.
8324a219d5fSMartin Mares
8334a219d5fSMartin Mares	* pci.ids: ID updates.
8344a219d5fSMartin Mares
8354a219d5fSMartin Mares	* lspci.c (show_verbose): Min/max latency is now printed in nanoseconds.
8364a219d5fSMartin Mares
8374a219d5fSMartin Mares2000-05-04  Martin Mares  <[email protected]>
8384a219d5fSMartin Mares
8394a219d5fSMartin Mares	* lspci.c (show_verbose): If the header type doesn't match device
8404a219d5fSMartin Mares	class, just print a warning and still use the header type, assuming
8414a219d5fSMartin Mares	bogus class info.
8424a219d5fSMartin Mares
84310c90662SMartin Mares2000-05-01  Martin Mares  <[email protected]>
84410c90662SMartin Mares
84572b9b690SMartin Mares	* lspci.c (show_pm): Updated according to PCI PM specs 1.1.
84672b9b690SMartin Mares
84710c90662SMartin Mares	* pci.ids: Updated Contemporary Control ARCnet card entries.
84810c90662SMartin Mares
84910c90662SMartin Mares	* pci.ids: Synchronized class list with latest PCI SIG documents.
85010c90662SMartin Mares
851a239ade6SMartin Mares2000-04-29  Martin Mares  <[email protected]>
852a239ade6SMartin Mares
853a239ade6SMartin Mares	* lib/names.c (pci_lookup_name): Fixed the cheat.
854a239ade6SMartin Mares
855a239ade6SMartin Mares	* lib/internal.h: Moved UNUSED/inline hacks above all other declarations.
856a239ade6SMartin Mares
857a239ade6SMartin Mares	* pci.ids: Various ID updates.
858a239ade6SMartin Mares
8592c83b860SMartin Mares2000-04-21  Martin Mares  <[email protected]>
8602c83b860SMartin Mares
8612c83b860SMartin Mares	* Released as 2.1.7.
8622c83b860SMartin Mares
8632c83b860SMartin Mares	* pciutils.spec: Added German description.
8642c83b860SMartin Mares
8652c83b860SMartin Mares	* lib/names.c (pci_lookup_name): Added a cheat for case that subsystem ID's
8662c83b860SMartin Mares	are the same as device ID and just output subsystem name according to
8672c83b860SMartin Mares	device name.
8682c83b860SMartin Mares
8692c83b860SMartin Mares	* lib/proc.c: Use UNUSED instead of __attribute__((unused)).
8702c83b860SMartin Mares
8712c83b860SMartin Mares	* lib/pci.h: Added the correct typedefs for AIX.
8722c83b860SMartin Mares
8732c83b860SMartin Mares	* lib/generic.c (pci_generic_scan_bus): Export.
8742c83b860SMartin Mares
8752c83b860SMartin Mares	* lib/configure: Detect AIX. Use "echo '...\c'" instead of
8762c83b860SMartin Mares	"echo -n" if the shell isn't bash.
8772c83b860SMartin Mares
8782c83b860SMartin Mares	* lspci.c: Avoid using alloca() if not compiled by GCC.
8792c83b860SMartin Mares	(insert_dev): Avoid returning a void value.
8802c83b860SMartin Mares
8812c83b860SMartin Mares	* Makefile: Choose which install utility to use according to
8822c83b860SMartin Mares	OS type. Also use `-o' instead of `-or' in find arguments.
8832c83b860SMartin Mares	Part of the AIX port.
8842c83b860SMartin Mares
8852c83b860SMartin Mares	* lib/aix-device.c: Added AIX low-level interface. Contributed
8862c83b860SMartin Mares	by Dave Johnson <[email protected]>, thanks a lot!
8872c83b860SMartin Mares
8882c83b860SMartin Mares	* pci.ids: Few new ID's.
8892c83b860SMartin Mares
8902c83b860SMartin Mares	* pciutils.h, lib/internal.h: Redefine __attribute__ and inline
8912c83b860SMartin Mares	when not compiled by GCC.
8922c83b860SMartin Mares
893c1a828daSMartin Mares2000-04-17  Martin Mares  <[email protected]>
894c1a828daSMartin Mares
895c1a828daSMartin Mares	* Released as 2.1.6.
896c1a828daSMartin Mares
897c1a828daSMartin Mares	* pci.ids: Added a large batch of ID's contributed by Gunther
898c1a828daSMartin Mares	Mayer <[email protected]> and synced the
899c1a828daSMartin Mares	list with the 2.3.99pre6 kernel.
900c1a828daSMartin Mares
901e91dd3abSMartin MaresThu Mar  9 13:11:39 2000  Martin Mares  <[email protected]>
902e91dd3abSMartin Mares
903a80b79a9SMartin Mares	* lib/example.c: Added a simple example of how to use
904a80b79a9SMartin Mares	the library.
905a80b79a9SMartin Mares
90689984232SMartin Mares	* lspci.man, setpci.man: Revealed --version. Well spotted
90789984232SMartin Mares	by Adam Sulmicki.
90889984232SMartin Mares
909e91dd3abSMartin Mares	* pci.ids: Added lots of new ID's and synced with 2.3.50.
910e91dd3abSMartin Mares
91178d9c5e2SMartin MaresTue Feb 15 00:16:21 2000  Martin Mares  <[email protected]>
91278d9c5e2SMartin Mares
91378d9c5e2SMartin Mares	* Released as 2.1.5.
91478d9c5e2SMartin Mares
91578d9c5e2SMartin Mares	* pciutils.spec: Updated spec file from Andreas Jaeger. Now using
91678d9c5e2SMartin Mares	%{_mandir} to find the right location to install manual pages to.
91778d9c5e2SMartin Mares
91878d9c5e2SMartin Mares	* pci.ids: New ID's.
91978d9c5e2SMartin Mares
92078d9c5e2SMartin Mares	* setpci.c (main): Don't crash when `-s' or `-d' is given with
92178d9c5e2SMartin Mares	no argument.
92278d9c5e2SMartin Mares
923f8141ae2SMartin MaresMon Jan 24 20:04:11 2000  Andreas Jaeger  <[email protected]>
924f8141ae2SMartin Mares
925f8141ae2SMartin Mares	* lib/i386-ports.c: Include <asm/io.h> only on systems without
926f8141ae2SMartin Mares	glibc.
927f8141ae2SMartin Mares
928f8141ae2SMartin MaresMon Jan 24 11:24:43 2000  Martin Mares  <[email protected]>
929f8141ae2SMartin Mares
930f8141ae2SMartin Mares	* Makefile: Modified to work with the Linux FHS brain-damaged idea
931f8141ae2SMartin Mares	of putting man pages to /usr/share/man. Now we choose either /usr/man
932f8141ae2SMartin Mares	or /usr/share/man depending on which one exists.
933f8141ae2SMartin Mares
93459e76e8bSMartin MaresSun Jan 23 10:52:34 2000  Martin Mares  <[email protected]>
93559e76e8bSMartin Mares
93659e76e8bSMartin Mares	* pci.ids: Synced with Linux 2.3.40.
93759e76e8bSMartin Mares
93859e76e8bSMartin Mares	* Released as version 2.1.4.
93959e76e8bSMartin Mares
9402dfd48cdSMartin MaresThu Jan 20 11:08:32 2000  Martin Mares  <[email protected]>
9412dfd48cdSMartin Mares
9422715403fSMartin Mares	* lspci.c (scan_device): Fixed bug in reading of cardbus extensions.
9432715403fSMartin Mares
94481077814SMartin Mares	* lib/proc.c: pread/pwrite fixed again, this time on libc5 :(
94581077814SMartin Mares
94681077814SMartin Mares	* lspci.c (format_agp_rate): Better formatting of AGP rates.
94781077814SMartin Mares
94881077814SMartin Mares	* pci.ids: New ID's.
94981077814SMartin Mares
9502dfd48cdSMartin Mares	* lib/configure: Added configuration for ia64 (the same as for Alpha).
9512dfd48cdSMartin Mares	Patch from Stephane Eranian <[email protected]>.
9522dfd48cdSMartin Mares
9535a258860SMartin MaresThu Jan 13 23:01:52 2000  Martin Mares  <[email protected]>
9545a258860SMartin Mares
9555a258860SMartin Mares	* Released as version 2.1.3.
9565a258860SMartin Mares
9575a258860SMartin Mares	* pci.ids: New ID's.
9585a258860SMartin Mares
9595a258860SMartin Mares	* lspci.c: Alpha IO_FORMAT fix by Andrea Arcangeli.
9605a258860SMartin Mares
9615a258860SMartin Mares	* lib/access.c: Corrected order of access methods -- it's wonderful how
9625a258860SMartin Mares	long could such a bug remain unspotted. Thanks go to Andreas Schockenhoff.
9635a258860SMartin Mares
9640c047bbeSMartin MaresSat Dec 11 23:34:48 1999  Martin Mares  <[email protected]>
9650c047bbeSMartin Mares
9660c047bbeSMartin Mares	* Released as version 2.1.2.
9670c047bbeSMartin Mares
9680c047bbeSMartin Mares	* lib/names.c (pci_lookup_name): Fixed printing of unknown subsystem ID's.
9690c047bbeSMartin Mares
97033bc28a5SMartin MaresSat Dec  4 13:11:03 1999  Martin Mares  <[email protected]>
97133bc28a5SMartin Mares
97239231205SMartin Mares	* Released as version 2.1.1.
97339231205SMartin Mares
97433bc28a5SMartin Mares	* pci.ids: Several new ID's.
97533bc28a5SMartin Mares
97633bc28a5SMartin Mares	* setpci.c (exec_op): Don't forget to increment address after writing
97733bc28a5SMartin Mares	single value, so that `30.b=12,34,56,78' works as expected. Reported
97833bc28a5SMartin Mares	by Petr Soucek <[email protected]>.
97933bc28a5SMartin Mares
9808d047897SMartin MaresWed Nov  3 10:24:38 1999  Martin Mares  <[email protected]>
9818d047897SMartin Mares
9828d047897SMartin Mares	* lspci.c (show_terse): If prog-if is zero, but it's present in the
9838d047897SMartin Mares	ID list, show it.
9848d047897SMartin Mares
9856afc6538SMartin MaresSat Oct 30 11:06:35 1999  Martin Mares  <[email protected]>
9866afc6538SMartin Mares
9876afc6538SMartin Mares	* Released as version 2.1.
9886afc6538SMartin Mares
9896afc6538SMartin Mares	* pci.ids: Synced to devlist.h in 2.3.24 kernel. Merged in
9906afc6538SMartin Mares	lots of contributed entries.
9916afc6538SMartin Mares
9928f756113SMartin MaresThu Oct 14 10:40:12 1999  Dave Jones    <[email protected]>
9938f756113SMartin Mares
9948f756113SMartin Mares	* pci.ids: Added lots of subsystem definitions.
9958f756113SMartin Mares
996d4798a32SMartin MaresSat Oct  9 14:32:28 1999  Martin Mares  <[email protected]>
997d4798a32SMartin Mares
998d4798a32SMartin Mares	* setpci.man: Better example.
999d4798a32SMartin Mares
1000d4798a32SMartin Mares	* lspci.c: Resolve prog-if names.
1001d4798a32SMartin Mares
1002d4798a32SMartin Mares	* lib/names.c: Adapted to new pci.ids syntax.
1003d4798a32SMartin Mares
1004d4798a32SMartin Mares	* pci.ids: Reorganized the pci.ids file. Subsystems are listed
1005d4798a32SMartin Mares	under devices, classes can optionally contain prog-if information.
1006d4798a32SMartin Mares	New ID's, as usually.
1007d4798a32SMartin Mares
1008e306e911SMartin MaresWed Sep 22 09:45:24 1999  Martin Mares  <[email protected]>
1009e306e911SMartin Mares
1010e306e911SMartin Mares	* pci.ids: New ID's. As usually.
1011e306e911SMartin Mares
1012e306e911SMartin Mares	* lspci.c (show_htype1, show_htype2): Don't show `closed' bridge windows
1013e306e911SMartin Mares	unless we're vvvery verbose.
1014e306e911SMartin Mares
1015e306e911SMartin MaresMon Sep 20 11:22:54 1999  Martin Mares  <[email protected]>
1016e306e911SMartin Mares
1017e306e911SMartin Mares	* lspci.c (show_htype2): Don't forget a TAB before the "I/O window" line.
1018e306e911SMartin Mares
1019e64a576cSMartin MaresTue Sep 14 09:31:01 1999  Martin Mares  <[email protected]>
1020e64a576cSMartin Mares
1021e64a576cSMartin Mares	* pci.ids: New ID's. Again.
1022e64a576cSMartin Mares
1023c36c0862SMartin MaresThu Aug  5 17:45:42 1999  Martin Mares  <[email protected]>
1024c36c0862SMartin Mares
1025c36c0862SMartin Mares	* lspci.c (show_size): Don't show size if it's zero (usually
1026c36c0862SMartin Mares	due to bus-centric mode being enabled).
1027c36c0862SMartin Mares
10281ca42433SMartin MaresTue Jul 20 13:25:09 1999  Martin Mares  <[email protected]>
10291ca42433SMartin Mares
1030168b4f46SMartin Mares	* lib/pci.h: Types are OS dependent.
1031168b4f46SMartin Mares
1032168b4f46SMartin Mares	* lib/internal.h: Byte order hacks are OS dependent.
1033168b4f46SMartin Mares
1034168b4f46SMartin Mares	* lib/configure: Recognize FreeBSD. Also set OS_XXX according to the OS.
1035168b4f46SMartin Mares
1036168b4f46SMartin Mares	* lib/Makefile, lib/access.c: Added fbsd-device target.
1037168b4f46SMartin Mares
1038168b4f46SMartin Mares	* pci.ids: Added an entry for PLX 9080 bridges with subsystem ID
1039168b4f46SMartin Mares	incorrectly set to device ID.
1040168b4f46SMartin Mares
1041168b4f46SMartin Mares	* README: Added a note that we support FreeBSD.
1042168b4f46SMartin Mares
1043168b4f46SMartin Mares	* Makefile (PREFIX, ROOT): Set it depending on the OS.
1044168b4f46SMartin Mares	(%.8): Grrr, BSD date is not able to convert date formats the same way
1045168b4f46SMartin Mares	as GNU date does. Use sed instead.
1046168b4f46SMartin Mares	(install): Use `-c' when calling install.
1047168b4f46SMartin Mares
1048168b4f46SMartin Mares	* lib/fbsd-device.c: Added FreeBSD /dev/pci access module contributed
1049168b4f46SMartin Mares	by Jari Kirma <[email protected]>.
1050168b4f46SMartin Mares
1051bc6346dfSMartin Mares	* lib/proc.c: Rewrote the pread/pwrite things once again. Use pread
1052bc6346dfSMartin Mares	and pwrite only when we are certain it's safe (i.e., glibc 2.1
1053bc6346dfSMartin Mares	on all architectures or any libc on a i386 where we really know
1054bc6346dfSMartin Mares	how to use syscalls directly). In all other cases, emulate it
1055bc6346dfSMartin Mares	with lseek/read/write.
1056bc6346dfSMartin Mares
10571ca42433SMartin Mares	* pci.ids: Some more IDs.
10581ca42433SMartin Mares
10591ca42433SMartin MaresMon Jul 19 14:10:36 1999  Martin Mares  <[email protected]>
10601ca42433SMartin Mares
10611ca42433SMartin Mares	* pci.ids: Added IDs of parallel port controller cards as sent
10621ca42433SMartin Mares	by Tim Waugh <[email protected]>.
10631ca42433SMartin Mares
1064e95c8373SMartin MaresWed Jul  7 00:55:48 1999  Martin Mares  <[email protected]>
1065e95c8373SMartin Mares
1066e95c8373SMartin Mares	* lib/proc.c (proc_scan): HAVE_LONG_ADDRESS instead of HAVE_64BIT_ADDRESS.
1067e95c8373SMartin Mares
1068e95c8373SMartin Mares	* lspci.c: ADDR_FORMAT now depends on both HAVE_64BIT_ADDRESS and
1069e95c8373SMartin Mares	HAVE_LONG_ADDRESS.
1070e95c8373SMartin Mares
1071e95c8373SMartin Mares	* lib/configure: HAVE_64BIT_ADDRESS now doesn't imply that the addresses
1072e95c8373SMartin Mares	are represented as long long. Introduced a new flag HAVE_LONG_ADDRESS
1073e95c8373SMartin Mares	to indicate this. Both Sparc architectures now use both 64BIT_ADDRESS
1074e95c8373SMartin Mares	and LONG_ADDRESS since they have 32-bit userland, but don't set LONG_ADDRESS
1075e95c8373SMartin Mares	on Alpha.
1076e95c8373SMartin Mares
1077e95c8373SMartin Mares	* lspci.c (show_msi): Added dumping of the MSI capability.
1078e95c8373SMartin Mares	(show_slotid): The same for SlotID capability.
1079e95c8373SMartin Mares	(show_caps): Seperated capability dumping, because it should
1080e95c8373SMartin Mares	be used for both htype0 and htype1. Even PCI 2.2 doesn't mention
1081e95c8373SMartin Mares	layout of htype2, so I'm a bit unsure about it wrt capabilities
1082e95c8373SMartin Mares	-- they at least have to live somewhere else since address 0x34
1083e95c8373SMartin Mares	is already defined differently in htype2.
1084e95c8373SMartin Mares
1085e95c8373SMartin Mares	* lib/header.h (PCI_STATUS_UDF): Marked as obsolete (PCI 2.2).
1086e95c8373SMartin Mares	(PCI_BASE_ADDRESS_MEM_TYPE_1M): Ditto.
1087e95c8373SMartin Mares	(PCI_CAP_ID_*): Added some new capabilities defined in PCI 2.2.
1088e95c8373SMartin Mares
1089e95c8373SMartin Mares	* lspci.c (show_htype0): Mask out lowest 2 bits from all capability pointers
1090e95c8373SMartin Mares	(required by the PCI 2.2 specs).
1091e95c8373SMartin Mares
1092e95c8373SMartin MaresMon Jul  5 12:45:19 1999  Martin Mares  <[email protected]>
1093e95c8373SMartin Mares
1094e95c8373SMartin Mares	* lspci.c (show_size): Added new function for dumping of region sizes.
1095e95c8373SMartin Mares	(show_rom): Added. Now correctly dumps unassigned ROM addresses, disabled
1096e95c8373SMartin Mares	ROMs et cetera.
1097e95c8373SMartin Mares
1098e95c8373SMartin Mares	* lib/pci.h (struct pci_dev): known_fields moved to the public part
1099e95c8373SMartin Mares	of the structure.
1100e95c8373SMartin Mares
1101e95c8373SMartin Mares	* Added support for region sizes. Needs support in the kernel, because
1102e95c8373SMartin Mares	sizes have to be scanned before drivers initialize yourself. pci_fill_info()
1103e95c8373SMartin Mares	now returns a bitmask of what fields were really read.
1104e95c8373SMartin Mares
110582ce97c9SMartin MaresMon Jun 28 18:37:51 1999  Dave Jones    <[email protected]>
110682ce97c9SMartin Mares
110782ce97c9SMartin Mares	* Makefile:
110882ce97c9SMartin Mares	  Added `uninstall' target - removes all traces of pciutils.
110982ce97c9SMartin Mares	* pci.ids:
111082ce97c9SMartin Mares	  - Lots of cleanups in the ATI, S3, Adaptec vendors.
111182ce97c9SMartin Mares	  - Changed Compaq QVision 1280/p definitions, as it's not possible
111282ce97c9SMartin Mares	    to determine the revision from the device ID.
111382ce97c9SMartin Mares	  - Same for the Tseng ET4000.
111482ce97c9SMartin Mares	    The id's said I had a rev C, when it was actually a rev B.
111582ce97c9SMartin Mares	  - Removed some unnecessary strings
111682ce97c9SMartin Mares	    `PCI'. Unless it's an AGP card, it should be obvious that it's PCI.
111782ce97c9SMartin Mares	    `Ethernet card'. This should be determined from config space.
111882ce97c9SMartin Mares	  - Lots of other new vendors & devices
111982ce97c9SMartin Mares	  - Other additional small cleanups.
112082ce97c9SMartin Mares
11217bed2d83SMartin MaresMon Jun 21 22:11:10 1999  Martin Mares  <[email protected]>
11227bed2d83SMartin Mares
11237bed2d83SMartin Mares	* lib/names.c (pci_lookup_name): When device ID lookup
11247bed2d83SMartin Mares	fails, return hexadecimal device ID instead of vendor ID.
11257bed2d83SMartin Mares	Well spotted by Axel Bodemann <[email protected]>,
11267bed2d83SMartin Mares	I've just extended the fix to subsystem ID's.
11277bed2d83SMartin Mares
11285ba3a475SMartin MaresThu Jun 17 19:48:21 1999  Martin Mares  <[email protected]>
11295ba3a475SMartin Mares
11305ba3a475SMartin Mares	* lspci.c (show_agp): Bug fix from Petr Vandrovec
11315ba3a475SMartin Mares	<[email protected]>. The command register was displayed
11325ba3a475SMartin Mares	incorrectly.
11335ba3a475SMartin Mares
11345ba3a475SMartin MaresWed Jun  2 22:42:44 1999  Martin Mares  <[email protected]>
11355ba3a475SMartin Mares
11365ba3a475SMartin Mares	* lib/proc.c (SYS_pread, SYS_pwrite): Use hard-coded
11375ba3a475SMartin Mares	numbers if not supplied by the libc.
11385ba3a475SMartin Mares
113955c815b5SMartin MaresWed May 19 13:24:39 1999  Martin Mares  <[email protected]>
114055c815b5SMartin Mares
114155c815b5SMartin Mares	* Released the whole package as version 2.0.
114255c815b5SMartin Mares
114355c815b5SMartin MaresFri May 14 22:42:02 1999  Martin Mares  <[email protected]>
114455c815b5SMartin Mares
114555c815b5SMartin Mares	* pci.ids: Added several new ID's contributed by people
114655c815b5SMartin Mares	on the linux-pci list.
114755c815b5SMartin Mares
1148dec16943SMartin MaresMon Apr 19 15:21:08 1999  Jakub Jelinek  <[email protected]>
1149dec16943SMartin Mares
1150dec16943SMartin Mares	* lspci.c: Display I/O addresses correctly on sparc64.
1151dec16943SMartin Mares	* lib/header.h: Ditto.
1152dec16943SMartin Mares
1153dec16943SMartin Mares	* lib/configure: On sparc set HAVE_64BIT* as well, we want
1154dec16943SMartin Mares	a binary which works on both 32bit and 64bit SPARCs.
1155dec16943SMartin Mares
1156e33c9c7aSMartin MaresSun Apr 18 21:14:58 1999  Martin Mares  <[email protected]>
1157e33c9c7aSMartin Mares
1158e33c9c7aSMartin Mares	* lspci.c, lib/proc.c: Alpha compilation fixes from Matthew Jacob
1159e33c9c7aSMartin Mares	<[email protected]>.
1160e33c9c7aSMartin Mares
1161e33c9c7aSMartin Mares	* pci.ids: A lot of updates from Adam J. Richter <[email protected]>.
1162e33c9c7aSMartin Mares
1163f3395cc5SMartin MaresSun Feb 28 22:26:21 1999  Martin Mares  <[email protected]>
1164f3395cc5SMartin Mares
1165f3395cc5SMartin Mares	* lspci.c (do_map_bus): Don't dump functions 1--7 if not flagged
1166f3395cc5SMartin Mares	as a multi-function device, because several single-function devices
1167f3395cc5SMartin Mares	don't decode the function bits at all.
1168f3395cc5SMartin Mares
1169f3395cc5SMartin MaresSun Feb 14 23:48:22 1999  Martin Mares  <[email protected]>
1170f3395cc5SMartin Mares
1171f3395cc5SMartin Mares	* Makefile (install): Don't use "-o root -g root" for installation
1172f3395cc5SMartin Mares	since it breaks on machines where programs are not installed by root.
1173f3395cc5SMartin Mares	Reported by Richard Gooch <[email protected]>
1174f3395cc5SMartin Mares
1175f3395cc5SMartin MaresTue Feb  9 15:54:39 1999  Martin Mares  <[email protected]>
1176f3395cc5SMartin Mares
1177f3395cc5SMartin Mares	* lspci.c (show_bases): Use new address masking macros and pciaddr_t.
1178f3395cc5SMartin Mares
1179f3395cc5SMartin Mares	* lib/pci.h: Using pciaddr_t for bus addresses, which are 32-bit
1180f3395cc5SMartin Mares	or 64-bit depending on CPU.
1181f3395cc5SMartin Mares
1182f3395cc5SMartin Mares	* lib/pci.h (PCI_ADDR_MEM_MASK): Added macros for address masks
1183f3395cc5SMartin Mares	according to bus address width.
1184f3395cc5SMartin Mares
11851c31d620SMartin MaresThu Jan 28 20:54:16 1999  Martin Mares  <[email protected]>
11861c31d620SMartin Mares
11871c31d620SMartin Mares	* Released as 1.99.4.
11881c31d620SMartin Mares
11891c31d620SMartin Mares	* lspci.c: Capability list parser now recognizes both AGP
11901c31d620SMartin Mares	registers and PCI Power Management registers (the latter
11911c31d620SMartin Mares	is mainly guesswork based on DEC/Intel 21153 bridge specs
11921c31d620SMartin Mares	since I don't have the PCI Power Management document).
11931c31d620SMartin Mares
11941c31d620SMartin Mares	* lspci.c: Replaced numerous occurences of (x & flag) ? '+' : '-'
11951c31d620SMartin Mares	by FLAG macro.
11961c31d620SMartin Mares
11971c31d620SMartin Mares	* lspci.c: Added bridge checks to bus mapping code.
11981c31d620SMartin Mares
11991812a795SMartin MaresWed Jan 27 14:59:16 1999  Martin Mares  <[email protected]>
12001812a795SMartin Mares
12011812a795SMartin Mares	* lspci.c: Implemented bus mapping mode (-M).
12021812a795SMartin Mares
12031812a795SMartin Mares	* lspci.c (scan_devices): Split to scan_devices() and scan_device().
12041812a795SMartin Mares	(show): Split to show() and show_device().
12051812a795SMartin Mares
12061812a795SMartin Mares	* lib/access.c (pci_init): When a->method == PCI_ACCESS_AUTO,
12071812a795SMartin Mares	set it to the real access method afterwards.
12081812a795SMartin Mares
12091812a795SMartin MaresMon Jan 25 23:46:13 1999  Martin Mares  <[email protected]>
12101812a795SMartin Mares
12111812a795SMartin Mares	* lib/generic.c (pci_generic_fill_info): If in buscentric mode,
12121812a795SMartin Mares	don't check PCI_COMMAND for I/O and memory enables.
12131812a795SMartin Mares
1214f6c86928SMartin MaresMon Jan 25 21:28:49 1999  Martin Mares  <[email protected]>
1215f6c86928SMartin Mares
1216f6c86928SMartin Mares	* Makefile: Added target `release' which substitutes new version
1217f6c86928SMartin Mares	number to .spec, .lsm and README. Also rewrote target `dist'.
1218f6c86928SMartin Mares
1219f6c86928SMartin Mares	* Released as 1.99.3.
1220f6c86928SMartin Mares
1221b5137411SMartin MaresSun Jan 24 22:10:36 1999  Martin Mares  <[email protected]>
1222b5137411SMartin Mares
1223d6b297d0SMartin Mares	* lib/header.h: Until kernel adopts new layout of PCI
1224d6b297d0SMartin Mares	includes (i.e., separate declaration of header structure,
1225d6b297d0SMartin Mares	functions and device IDs), which is not going to happen
1226d6b297d0SMartin Mares	before 2.3, we'll use our own definiton of the header.
1227d6b297d0SMartin Mares
1228b5137411SMartin Mares	* lspci.c (show_verbose): Display `Cap' flag in device status.
1229b5137411SMartin Mares
1230b5137411SMartin Mares	* lspci.c (show_htype0): Display capability lists whereever
1231b5137411SMartin Mares	available. The only capability name we recognize now is `AGP'.
1232b5137411SMartin Mares	Unfortunately, capabilities are stored in device-dependent
1233b5137411SMartin Mares	portion of the configuration space and are thus available
1234b5137411SMartin Mares	only to root unless you read a dump.
1235b5137411SMartin Mares
1236b5137411SMartin Mares	* lspci.c (scan_devices): Use cache instead of buffering.
1237b5137411SMartin Mares
1238b5137411SMartin Mares	* lib/buffer.c: Removed (obsoleted by the cache).
1239b5137411SMartin Mares
1240b5137411SMartin Mares	* lib/access.c: Added general caching mechanism.
1241b5137411SMartin Mares
124281ce358dSMartin MaresSat Jan 23 21:30:54 1999  Martin Mares  <[email protected]>
124381ce358dSMartin Mares
124481ce358dSMartin Mares	* pci.ids: Added few devices.
124581ce358dSMartin Mares
1246727ce158SMartin MaresFri Jan 22 19:29:31 1999  Martin Mares  <[email protected]>
1247727ce158SMartin Mares
1248727ce158SMartin Mares	* Version string is now defined in top-level Makefile, exported
1249727ce158SMartin Mares	to the configure script and also substituted to man pages.
1250727ce158SMartin Mares
1251727ce158SMartin Mares	* lspci.c (show_bases): Rewrote displaying of 64-bit addresses.
1252727ce158SMartin Mares	(show_verbose): Rewrote interrupt display logic.
1253727ce158SMartin Mares
1254727ce158SMartin Mares	* lib/i386-ports.c: Include sys/io.h only on glibc systems.
1255727ce158SMartin Mares
1256727ce158SMartin Mares	* lib/configure: Rewrote detection of Linux versions. Now it
1257727ce158SMartin Mares	works on 2.0 kernels (only with direct/dump access, of course).
1258727ce158SMartin Mares
1259727ce158SMartin Mares	* lib/internal.h: New bytesex macros using <asm/byteorder.h>
1260727ce158SMartin Mares	whenever available.
1261727ce158SMartin Mares
1262727ce158SMartin Mares	* lib/proc.c (proc_read, proc_write): Distinguish between short
1263727ce158SMartin Mares	read/write and real errors.
1264727ce158SMartin Mares
1265727ce158SMartin Mares	* lspci.c (show_htype{0,1}): Always use d->dev->rom_base_addr since
1266727ce158SMartin Mares	libpci respects buscentric mode automatically.
1267727ce158SMartin Mares
1268727ce158SMartin Mares	* lspci.c (show_hex_dump): For CardBus bridges, print out 128
1269727ce158SMartin Mares	bytes of header (the whole standard part).
1270727ce158SMartin Mares
1271727ce158SMartin Mares	* common.c: pcilib options are now all uppercase. Also moved
1272727ce158SMartin Mares	PCI access debugging option here.
1273727ce158SMartin Mares
1274727ce158SMartin Mares	* Released as 1.99.2.
1275727ce158SMartin Mares
1276727ce158SMartin MaresWed Jan 20 22:50:35 1999  Martin Mares  <[email protected]>
1277727ce158SMartin Mares
1278727ce158SMartin Mares	* Wrote configure script and rewrote Makefiles.
1279727ce158SMartin Mares
1280727ce158SMartin Mares	* Removed few unused variables.
1281727ce158SMartin Mares
1282727ce158SMartin MaresWed Jan 20 12:21:56 1999  Martin Mares  <[email protected]>
1283727ce158SMartin Mares
1284727ce158SMartin Mares	* common.c: Moved several functions used in both setpci and lspci
1285727ce158SMartin Mares	here. This includes parsing of libpci-related options.
1286727ce158SMartin Mares
1287727ce158SMartin Mares	* More library tweaks.
1288727ce158SMartin Mares
1289727ce158SMartin Mares	* filter.c, names.c: Moved to library.
1290727ce158SMartin Mares
1291727ce158SMartin Mares	* setpci: Rewritten to use the library.
1292727ce158SMartin Mares
1293727ce158SMartin Mares	* Released as 1.99.1.
1294727ce158SMartin Mares
1295727ce158SMartin MaresTue Jan 19 23:00:12 1999  Martin Mares  <[email protected]>
1296727ce158SMartin Mares
1297727ce158SMartin Mares	* lspci.c (scan_devices): For cardbus bridges, read first 128
1298727ce158SMartin Mares	bytes of config space to get full standard header.
1299727ce158SMartin Mares
1300727ce158SMartin Mares	* Makefile (CFLAGS): Removed "-Wno-unused".
1301727ce158SMartin Mares
1302727ce158SMartin Mares	* Started the "New Generation" branch and introduced the
1303727ce158SMartin Mares	PCI library.
1304727ce158SMartin Mares
1305727ce158SMartin Mares	* lspci: Rewritten to use the library.
1306727ce158SMartin Mares
13076ece6bc6SMartin MaresTue Jan 19 22:24:08 1999  Martin Mares  <[email protected]>
13086ece6bc6SMartin Mares
13096ece6bc6SMartin Mares	* Released as version 1.10.
13106ece6bc6SMartin Mares
13116ece6bc6SMartin MaresMon Jan 18 08:51:17 1999  Martin Mares  <[email protected]>
13126ece6bc6SMartin Mares
13136ece6bc6SMartin Mares	* lspci.8, setpci.8: Miscellaneous fixes as suggested by
13146ece6bc6SMartin Mares	Dag Wieers <[email protected]>.
13156ece6bc6SMartin Mares
13161212dd6dSMartin MaresSun Nov 29 20:05:56 1998  Martin Mares  <[email protected]>
13171212dd6dSMartin Mares
13181212dd6dSMartin Mares	* pciutils.spec (Name): Update from Krzysztof G. Baranowski.
13191212dd6dSMartin Mares
1320d38471fdSMartin MaresSun Nov 22 10:49:56 1998  Martin Mares  <[email protected]>
1321d38471fdSMartin Mares
1322d38471fdSMartin Mares	* Makefile, pciutils.h: Moved pci.ids to /usr/share.
1323d38471fdSMartin Mares
1324d38471fdSMartin Mares	* Released as version 1.09.
1325d38471fdSMartin Mares
1326371f605bSMartin MaresWed Nov 18 15:47:05 1998  Martin Mares  <[email protected]>
1327371f605bSMartin Mares
1328371f605bSMartin Mares	* lspci.c (show_htype1): Fixed displaying of prefetchable memory behind
1329371f605bSMartin Mares	bridge. Thanks to Petr Vandrovec <[email protected]> for bug report.
1330371f605bSMartin Mares
133110be47abSMartin MaresFri Oct 23 18:59:19 1998  Martin Mares  <[email protected]>
133210be47abSMartin Mares
133310be47abSMartin Mares	* setpci.c: Don't include <syscall-list.h> with glibc >= 2.1.
133410be47abSMartin Mares
1335472bd340SMartin MaresMon Oct 19 21:53:30 1998  Martin Mares  <[email protected]>
1336472bd340SMartin Mares
1337472bd340SMartin Mares	* Released as version 1.08.
1338472bd340SMartin Mares
1339472bd340SMartin Mares	* setpci.c: glibc 2.1.x already defines pread() and pwrite().
1340472bd340SMartin Mares
1341472bd340SMartin Mares	* lspci.8: Changed warning about lspci -xxx.
1342472bd340SMartin Mares
1343472bd340SMartin Mares	* lspci.c: Require "-xxx" for full configuration space dump, so that
1344472bd340SMartin Mares	it's impossible to crash the machine by single typo.
1345472bd340SMartin Mares
1346472bd340SMartin Mares	* specs: Added (courtesy of Krzysztof G. Baranowski <[email protected]>).
1347472bd340SMartin Mares
1348072c77e5SMartin MaresWed Sep  9 12:03:24 1998  Martin Mares  <[email protected]>
1349072c77e5SMartin Mares
1350072c77e5SMartin Mares	* lspci.c (show_bases): Better displaying of unassigned and
1351072c77e5SMartin Mares	disabled bases. Thanks to Gabriel Paubert <[email protected]>
1352072c77e5SMartin Mares	for an idea.
1353072c77e5SMartin Mares
1354b7554856SMartin MaresWed Sep  2 10:58:01 1998  Martin Mares  <[email protected]>
1355b7554856SMartin Mares
1356b7554856SMartin Mares	* setpci.c (pread): Recognize glibc 1.99 numbered as 2.0 on the PPC.
1357b7554856SMartin Mares	(thanks to Geert Uytterhoeven for finding this out)
1358b7554856SMartin Mares
1359ce503b7fSMartin MaresFri Jul 17 10:43:30 1998  Martin Mares  <[email protected]>
1360ce503b7fSMartin Mares
1361ce503b7fSMartin Mares	* lspci.c (show_verbose): Print subsystem ID using the new resolver.
1362ce503b7fSMartin Mares	(show_machine): Print subsystem ID.
1363ce503b7fSMartin Mares
1364ce503b7fSMartin Mares	* names.c: New name resolution engine supporting subsystem IDs.
1365ce503b7fSMartin Mares
1366ce503b7fSMartin Mares	* Released as version 1.07.
1367ce503b7fSMartin Mares
136896e4f295SMartin MaresWed Jul 15 15:37:21 1998  Martin Mares  <[email protected]>
136996e4f295SMartin Mares
137096e4f295SMartin Mares	* lspci.c (show_htype2 etc.): Displaying of CardBus headers.
137196e4f295SMartin Mares	(show_bases): Honor the `cnt' argument.
137296e4f295SMartin Mares	(grow_tree): Parse CardBus headers in tree mode as well.
137396e4f295SMartin Mares
137496e4f295SMartin Mares	* pci.h: Updated CardBus header field description. I still don't
137596e4f295SMartin Mares	have the CardBus standard available, but OZ6832 specs contain
137696e4f295SMartin Mares	full description of all header fields supported by the chip.
137796e4f295SMartin Mares
13786ae3650aSMartin MaresTue Jun  9 22:53:59 1998  Martin Mares  <[email protected]>
13796ae3650aSMartin Mares
1380304f9a0bSMartin Mares	* Released as 1.06.
1381304f9a0bSMartin Mares
13826ae3650aSMartin Mares	* names.c (parse_name_list): Killed an unused variable.
13836ae3650aSMartin Mares
13846ae3650aSMartin Mares	* setpci.c (pread, pwrite): Define SYS_(pread|pwrite) as __NR_\1
13856ae3650aSMartin Mares	if they are not defined by glibc (needed for glibc built on older
13866ae3650aSMartin Mares	kernels). Ugly.
13876ae3650aSMartin Mares
13886ae3650aSMartin Mares	* setpci.c (exec_op): Fixed error messages. Thanks, Steve!
13896ae3650aSMartin Mares
13904b88a6b8SMartin MaresMon Jun  8 10:59:22 1998  Martin Mares  <[email protected]>
13914b88a6b8SMartin Mares
13924b88a6b8SMartin Mares	* Released as 1.05.
13934b88a6b8SMartin Mares
13944b88a6b8SMartin Mares	* setpci.c: Problems with pread()/pwrite() with glibc on Alpha
13954b88a6b8SMartin Mares	should be gone. Again thanks to Steve for bug report.
13964b88a6b8SMartin Mares
13974b88a6b8SMartin Mares	* filter.c (filter_parse_slot): Fixed ":x" type filters.
13984b88a6b8SMartin Mares
13994b88a6b8SMartin Mares	* pci.ids: Killed duplicate entry. Thanks to Stephen Williams
14004b88a6b8SMartin Mares	<[email protected]> for reporting this.
14014b88a6b8SMartin Mares
14024b88a6b8SMartin MaresSun Jun  7 19:27:51 1998  Martin Mares  <[email protected]>
14034b88a6b8SMartin Mares
14044b88a6b8SMartin Mares	* lspci.c (main), setpci.c (main): Implemented "--version".
14054b88a6b8SMartin Mares
14064b88a6b8SMartin Mares	* Released as 1.04.
14074b88a6b8SMartin Mares
14084b88a6b8SMartin Mares	* pciutils.h (PCIUTILS_VERSION): Added version string.
14094b88a6b8SMartin Mares
14104b88a6b8SMartin Mares	* filter.c, names.c: Extraneous #include <linux/pci.h> removed.
14114b88a6b8SMartin Mares	Thanks to Geert Uytterhoeven <[email protected]>
14124b88a6b8SMartin Mares	for bug report.
14134b88a6b8SMartin Mares
14149b306998SMartin MaresThu May 28 14:45:58 1998  Martin Mares  <[email protected]>
14159b306998SMartin Mares
14169b306998SMartin Mares	* pci.ids: More updates from Jens Maurer.
14179b306998SMartin Mares
1418b372672fSMartin MaresWed Apr 22 10:00:39 1998  Martin Mares  <[email protected]>
1419b372672fSMartin Mares
1420b372672fSMartin Mares	* pci.ids: Updates from Jens Maurer.
1421b372672fSMartin Mares
1422b2c9b373SMartin MaresSun Apr 19 11:14:25 1998  Martin Mares  <[email protected]>
1423b2c9b373SMartin Mares
1424b372672fSMartin Mares	* Released as 1.03.
1425b372672fSMartin Mares
1426b2c9b373SMartin Mares	* setpci.8: Written.
1427b2c9b373SMartin Mares
1428b2c9b373SMartin Mares	* setpci.c: Finished.
1429b2c9b373SMartin Mares
1430b2c9b373SMartin Mares	* lspci.c: Now able to fetch expansion ROM base from kernel device list
1431b2c9b373SMartin Mares	and print it if not in buscentric mode.
1432b2c9b373SMartin Mares
1433e4842ff3SMartin MaresTue Mar 31 23:11:57 1998  Martin Mares  <[email protected]>
1434e4842ff3SMartin Mares
1435e4842ff3SMartin Mares	* setpci.c: Added.
1436e4842ff3SMartin Mares
1437e4842ff3SMartin MaresSun Mar 22 15:39:08 1998  Martin Mares  <[email protected]>
1438e4842ff3SMartin Mares
1439e4842ff3SMartin Mares	* lspci.8: Updated the documentation.
1440e4842ff3SMartin Mares
1441e4842ff3SMartin Mares	* lspci.c: Modified to use the new filtering mechanism (options -f and -d).
1442e4842ff3SMartin Mares
1443e4842ff3SMartin Mares	* filter.c: Introduced new generic device filter.
1444e4842ff3SMartin Mares
1445008407bdSMartin MaresThu Mar 19 17:03:48 1998  Martin Mares  <[email protected]>
1446008407bdSMartin Mares
1447008407bdSMartin Mares	* lspci.c (grow_tree, show_tree_dev, print_it): Fixed displaying
1448008407bdSMartin Mares	of PCI-to-PCI bridges in the tree format.
1449008407bdSMartin Mares
14500a33d0ecSMartin MaresSun Feb 15 10:12:25 1998  Martin Mares  <[email protected]>
14510a33d0ecSMartin Mares
14520a33d0ecSMartin Mares	* lspci.c (show_machine): Added non-verbose mode of machine-readable
14530a33d0ecSMartin Mares	dump.
14540a33d0ecSMartin Mares
14550a33d0ecSMartin Mares	* pci.ids: Updates from Jens Maurer.
14560a33d0ecSMartin Mares
14570a33d0ecSMartin Mares	* Released as version 1.02.
14580a33d0ecSMartin Mares
14590a33d0ecSMartin MaresThu Feb 12 16:53:28 1998  Martin Mares  <[email protected]>
14600a33d0ecSMartin Mares
14610a33d0ecSMartin Mares	* lspci.c: Added a "-m" switch for dumping machine-readable
14620a33d0ecSMartin Mares	configuration data (requested by Bjoern Kriews <[email protected]>).
14630a33d0ecSMartin Mares
1464fb38eee8SMartin MaresMon Feb  9 13:17:43 1998  Martin Mares  <[email protected]>
1465fb38eee8SMartin Mares
1466fb38eee8SMartin Mares	* Makefile, pciutils.h: Include local pci.h instead of <linux/pci.h>
1467fb38eee8SMartin Mares	if available. This should avoid all problems with official kernel
1468fb38eee8SMartin Mares	not synchronized to newer PCI code in CVS -- standard distribution
1469fb38eee8SMartin Mares	of pciutils now contains pci.h from current CVS kernel, pciutils
1470fb38eee8SMartin Mares	in CVS contain no pci.h and use the correct kernel include.
1471fb38eee8SMartin Mares
1472fb38eee8SMartin Mares	* Makefile: Fixed installation path for man pages.
1473fb38eee8SMartin Mares
14742f48f637SMartin MaresSat Feb  7 15:15:46 1998  Martin Mares  <[email protected]>
14752f48f637SMartin Mares
14762f48f637SMartin Mares	* README: Updated.
14772f48f637SMartin Mares
14782f48f637SMartin Mares	* lspci.8: Created a man page.
14792f48f637SMartin Mares
14802f48f637SMartin Mares	* Releasing as version 1.0.
14812f48f637SMartin Mares
14822f48f637SMartin MaresTue Feb  3 20:56:00 1998  Martin Mares  <[email protected]>
14832f48f637SMartin Mares
14842f48f637SMartin Mares	* Makefile: Recognize architecture by calling uname and pass it as ARCH_xxx
14852f48f637SMartin Mares	to all the C sources. This should eliminate problems with 32-bit compilers
14862f48f637SMartin Mares	on sparc64.
14872f48f637SMartin Mares
14882f48f637SMartin Mares	* lspci.c (show_verbose): Recognize CardBus bridge header type.
14892f48f637SMartin Mares	(show_htype2): Stub routine.
14902f48f637SMartin Mares	(scan_config): Write sensible error message if the kernel denies reading of
14912f48f637SMartin Mares	upper part of the PCI config space.
1492