xref: /pciutils/ChangeLog (revision 3fd6b4d2)
1b2055313SMartin Mares2006-09-09  Martin Mares  <[email protected]>
2b2055313SMartin Mares
3*3fd6b4d2SMartin Mares	* lspci.c (show_machine): Added a `-vmm' mode, which removes the misuse
4*3fd6b4d2SMartin Mares	of the `Device' tag for two different purposes.
5*3fd6b4d2SMartin Mares
6840d09aeSMartin Mares	* Makefile: Moved all system-dependent decisions to lib/configure,
7840d09aeSMartin Mares	since config.mk is included in the top-level Makefile anyway.
8840d09aeSMartin Mares
92100f710SMartin Mares	* lib/configure: When configuring for Linux, ignore the kernel version
102100f710SMartin Mares	and always build all access methods.
112100f710SMartin Mares
123e9c7a18SMartin Mares	* Makefile (CFLAGS): Removed -Winline, it's not needed and triggers
133e9c7a18SMartin Mares	at many non-interesting places with gcc 3.4.
143e9c7a18SMartin Mares
1594db5c82SMartin Mares	* Whitespace cleanup of all source files.
1694db5c82SMartin Mares
17cc062b4aSMartin Mares	* The pci.ids file can be stored compressed if zlib is available.
18cc062b4aSMartin Mares	Added transparent decompression to lib/names.c, modified update-pciids.sh
19cc062b4aSMartin Mares	to keep the file compressed if applicable, updated Makefiles.
20cc062b4aSMartin Mares	Based on a patch by Matthew Wilcox, but all the bugs are mine.
21cc062b4aSMartin Mares
22f4ddb8d3SMartin Mares	* Makefile, README: Allow installation to be done to a different directory
23f4ddb8d3SMartin Mares	from the one we will eventually be placed in by setting DESTDIR.
24f4ddb8d3SMartin Mares	Patch by Matthew Wilcox.
25f4ddb8d3SMartin Mares
2616e37012SMartin Mares	* Added .gitignore files.
2716e37012SMartin Mares
28c7f5314dSMartin Mares	* Makefile (clean): Clean *.orig, too.
29c7f5314dSMartin Mares
30afebde01SMartin Mares	* Cleaned up usage of `char' and `byte'.
31afebde01SMartin Mares
32fd54ccebSMartin Mares	* lib/header.h: PCI_CLASS_DOCKING_OTHER should be 0x0a80, not 0x0a01.
33fd54ccebSMartin Mares
34b2055313SMartin Mares	* lib/header.h: Added PCI_CLASS_xxx constants for all classes currently
35b2055313SMartin Mares	defined in the pci.ids file.
36b2055313SMartin Mares
374254d153SMartin Mares2006-08-01  Martin Mares  <[email protected]>
384254d153SMartin Mares
394254d153SMartin Mares	* lib/i386-io-hurd.h: Fixed a silly typo.
404254d153SMartin Mares
411c5cc9b5SMartin Mares2006-07-30  Martin Mares  <[email protected]>
421c5cc9b5SMartin Mares
4338a9e3c3SMartin Mares	* lib/Makefile: Added a missing rule for obsd-device.o.
4438a9e3c3SMartin Mares
45c7ddfa3eSMartin Mares	* lspci.c, lib/header.h: Added support for MSI per-vector masking.
46c7ddfa3eSMartin Mares	Contributed by Petr Vandrovec.
47c7ddfa3eSMartin Mares
48248a04f8SMartin Mares	* lspci.c, lib/header.h: Added support for the `bridge subsystem ID'
49248a04f8SMartin Mares	capability. Contributed by Petr Vandrovec.
50248a04f8SMartin Mares
51f29dcc87SMartin Mares	* lspci.c (show_htype1): Fixed bug in printing of 64-bit prefetchable
52f29dcc87SMartin Mares	memory windows. Fix by Petr Vandrovec.
53f29dcc87SMartin Mares
548eab3bffSMartin Mares	* maint/release.pm: Exclude .git directory from releases.
558eab3bffSMartin Mares
56d305d704SMartin Mares	* lib/i386-ports.c, lib/i386-io-*: Report failures during port access
57d305d704SMartin Mares	initialization by a->warn() instead of calling printf() or perror()
58d305d704SMartin Mares	directly.
59d305d704SMartin Mares
609007a292SMartin Mares	* lib/i386-ports.c, lib/i386-io-*: Moved the logic which keeps track of
619007a292SMartin Mares	the port access state to generic code.
629007a292SMartin Mares
63bd20d5b5SMartin Mares	* lib/i386-io-hurd.h: Ask the kernel for I/O port access appropriately.
64bd20d5b5SMartin Mares	Contributed by Thomas Schwinge and Samuel Thibault.
65bd20d5b5SMartin Mares
6673750606SMartin Mares	* lib/i386-ports.c: Define _GNU_SOURCE, it's needed by the Hurd module.
6773750606SMartin Mares
68d71daa45SMartin Mares	* lib/header.h: Whitespace cleanups.
69d71daa45SMartin Mares
701c5cc9b5SMartin Mares	* lib/i386-io-windows.h: Fixed indentation and spelling.
711c5cc9b5SMartin Mares
721c5cc9b5SMartin Mares	* README.Windows: Mention that WinIO.dll is needed and where to get it.
731c5cc9b5SMartin Mares
74c2b144efSMartin Mares2006-06-27  Martin Mares  <[email protected]>
75c2b144efSMartin Mares
7614d4f989SMartin Mares	* lib/Makefile, Makefile: Added rules for building and cleaning the example.
7714d4f989SMartin Mares
7814d4f989SMartin Mares	* lib/example.c: Show how to use PCI_FILL_CLASS and used another register
7914d4f989SMartin Mares	for demonstrating the config space accesses. The example is still very
8014d4f989SMartin Mares	incomplete, though.
8114d4f989SMartin Mares
82c2b144efSMartin Mares	* lib/pci.h, lib/generic.c: Added PCI_FILL_CLASS.
83c2b144efSMartin Mares
84c2b144efSMartin Mares	* lib/sysfs.c: Fetch device ID and class from sysfs, because they can
85c2b144efSMartin Mares	be modified by kernel fixups.
86c2b144efSMartin Mares
87c2b144efSMartin Mares	* lspci.c: Use PCI_FILL_CLASS. Thanks to Matthew Willcox for the patch.
88c2b144efSMartin Mares
89bc2eed2dSMartin Mares2006-06-03  Martin Mares  <[email protected]>
90bc2eed2dSMartin Mares
91bc2eed2dSMartin Mares	* lspci.c: Introduced the -nn switch. Thanks to David N. Welton
92bc2eed2dSMartin Mares	for the idea.
93bc2eed2dSMartin Mares
94bc2eed2dSMartin Mares	* lib/names.c (pci_lookup_name): Introduced PCI_LOOKUP_MIXED and
95bc2eed2dSMartin Mares	cleaned up the name selection code.
96bc2eed2dSMartin Mares
97c72eeddeSMartin Mares	* lib/names.c (pci_lookup_name): If PCI_LOOKUP_NO_NUMBERS is given,
98c72eeddeSMartin Mares	pci_access->numeric_ids is ignored.
99c72eeddeSMartin Mares
100c72eeddeSMartin Mares	* lib/names.c (pci_lookup_name): When class is identified and
101c72eeddeSMartin Mares	subclass isn't, display class name and subclass number.
102c72eeddeSMartin Mares
1032f294d4bSMartin Mares2006-05-31  Martin Mares  <[email protected]>
1042f294d4bSMartin Mares
1052f294d4bSMartin Mares	* setpci.c (main): Don't crash when an invalid width is specified.
1062f294d4bSMartin Mares
10781afa98cSMartin Mares	* lspci.c, setpci.c, common.c: die() now uses the right program
10881afa98cSMartin Mares	name when printing an error message.
10981afa98cSMartin Mares
1100ac282f2SMartin Mares2006-05-19  Martin Mares  <[email protected]>
1110ac282f2SMartin Mares
1120ac282f2SMartin Mares	* README: Mention the public GIT tree.
1130ac282f2SMartin Mares
1140ac282f2SMartin Mares	* README: Updated the list of ports.
1150ac282f2SMartin Mares
116d1058e9dSMartin Mares2006-05-10  Martin Mares  <[email protected]>
117d1058e9dSMartin Mares
118d1058e9dSMartin Mares	* lib/configure, lib/fbsd-device.c: Added support for GNU/kFreeBSD.
119d1058e9dSMartin Mares	Thanks to Petr Salinger for the patch.
120d1058e9dSMartin Mares
121abf8d505SMartin Mares2006-05-05  Martin Mares  <[email protected]>
122abf8d505SMartin Mares
1232ae2d1aeSMartin Mares	* Released as 2.2.3.
1242ae2d1aeSMartin Mares
1252ae2d1aeSMartin Mares	* lspci.c (scan_device): The -D switch didn't work as intended
1262ae2d1aeSMartin Mares	in -m mode.
1272ae2d1aeSMartin Mares
1282ae2d1aeSMartin Mares2006-05-05  Martin Mares  <[email protected]>
1292ae2d1aeSMartin Mares
1301d5cf727SMartin Mares	* Released as 2.2.2.
1311d5cf727SMartin Mares
1328a830168SMartin Mares	* pci.ids: Updated to the current database snapshot.
1338a830168SMartin Mares
134b6359063SMartin Mares	* lib/obsd-device.c (and other files in lib/*): Added OpenBSD
135b6359063SMartin Mares	interface by Matthieu Herrb <[email protected]>, based on
136b6359063SMartin Mares	the existing FreeBSD interface.
137b6359063SMartin Mares
138abf8d505SMartin Mares	* Moved pciutils to a GIT repository, which now contains merged
139abf8d505SMartin Mares	history from both CVS and Arch. Good bye, TLA!
140abf8d505SMartin Mares
1416ac70402SMartin Mares2006-03-21  Martin Mares  <[email protected]>
1426ac70402SMartin Mares
1432a124daeSMartin Mares	* lspci.c (show_slot_name): Avoid the previous changes in default
1442a124daeSMartin Mares	display of domain name when in machine-readable mode. However, `-D'
1452a124daeSMartin Mares	forces domain display even there.
1462a124daeSMartin Mares
1476ac70402SMartin Mares	* lspci.man: Added a warning on -m being the only format, which is
1486ac70402SMartin Mares	guaranteed to be stable between lspci versions.
1496ac70402SMartin Mares
1501bbdea17SMartin Mares2006-03-13  Martin Mares  <[email protected]>
1511bbdea17SMartin Mares
152af61eb25SMartin Mares	* lspci.man: Documented the -D switch.
153af61eb25SMartin Mares
154af61eb25SMartin Mares	* lspci.c (show_slot_name, scan_device): If there are multiple PCI
155af61eb25SMartin Mares	domains or if the `-D' switch is used, show the domain number for
156af61eb25SMartin Mares	all devices.
157af61eb25SMartin Mares
1587a61b93cSMartin Mares	* lspci.c (show_verbose): Report cache line size in bytes.
1597a61b93cSMartin Mares
1601bbdea17SMartin Mares	* update-pciids.sh: Use curl if available. Patch by Matthew Wilcox.
1611bbdea17SMartin Mares
1620e78ef8aSMartin Mares2006-01-04  Martin Mares  <[email protected]>
1630e78ef8aSMartin Mares
1640e78ef8aSMartin Mares	* lspci.c (show_express_link): Fixed decoding of link status register.
1650e78ef8aSMartin Mares	Thanks to Roland Dreier for his report.
1660e78ef8aSMartin Mares
167e6859953SMartin Mares2005-12-12  Martin Mares  <[email protected]>
168e6859953SMartin Mares
169e6859953SMartin Mares	* lib/nbsd-libpci.c: If libpci is used by an ordinary user, allow
170e6859953SMartin Mares	at least read-only access. Patch by Pavel Celeda <[email protected]>.
171e6859953SMartin Mares
172e6859953SMartin Mares	* Makefile: Corrected library path on NetBSD.
173e6859953SMartin Mares
174a99c0d69SMartin Mares2005-11-26  Martin Mares  <[email protected]>
175a99c0d69SMartin Mares
176e4af70c6SMartin Mares	* Released as 2.2.1.
177e4af70c6SMartin Mares
178a99c0d69SMartin Mares	* lspci.c (show_machine): Subsystem vendors were printed incorrectly
179a99c0d69SMartin Mares	in machine-readable modes. Thanks to Pavel Celeda for a bug report.
180a99c0d69SMartin Mares
181f23fd3fcSMartin Mares2005-10-11  Martin Mares  <[email protected]>
182f23fd3fcSMartin Mares
183f23fd3fcSMartin Mares	* lspci.c (new_bus): Fixed a memory leak. Thanks to Paul Sangree for reporting it.
184f23fd3fcSMartin Mares
18515296723SMartin Mares2005-09-21  Martin Mares  <[email protected]>
18615296723SMartin Mares
18715296723SMartin Mares	* Released as 2.2.0.
18815296723SMartin Mares
18940b6d93fSMartin Mares	* pci.ids: Updated copyright header.
19040b6d93fSMartin Mares
19115296723SMartin Mares	* lib/sysfs.c (sysfs_get_resources): Removed warning about unsupported
19215296723SMartin Mares	64-bit addresses, they are now always supported.
19315296723SMartin Mares
19415296723SMartin Mares	* lspci.c (show_bases): Corrected printing of 64-bit addresses
19515296723SMartin Mares	in bus-centric mode.
19615296723SMartin Mares
19715296723SMartin Mares	* lib/configure: Enable 64-bit addresses on all Linux systems.
19815296723SMartin Mares
19915296723SMartin Mares	* lib/types.h: Don't pad 64-bit addresses to 16 xigits, only to 8 if they
20015296723SMartin Mares	are shorter.
20115296723SMartin Mares
202224707baSMartin Mares2005-09-11  Martin Mares  <[email protected]>
203224707baSMartin Mares
204224707baSMartin Mares	* Released as 2.1.99-test11.
205224707baSMartin Mares
206224707baSMartin Mares	* lspci.c: Removed unnecessary trailing zeros in pci_lookup_name() calls.
207224707baSMartin Mares
208aeaca5d3SMartin Mares2005-09-10  Martin Mares  <[email protected]>
209aeaca5d3SMartin Mares
210224707baSMartin Mares	* Released as 2.1.99-test10.
211224707baSMartin Mares
21263e6f2e0SMartin Mares	* pci.ids: Synchronized with the current database snapshot.
21363e6f2e0SMartin Mares
214043ebdeeSMartin Mares	* update-pciids.sh: Changed the default URL for downloading pci.ids
215043ebdeeSMartin Mares	to http://pciids.sourceforge.net/v2.2/pci.ids.
216043ebdeeSMartin Mares
217043ebdeeSMartin Mares	* lib/pci.h (PCI_LIB_VERSION): Added version identifier.
218043ebdeeSMartin Mares
219aeaca5d3SMartin Mares	* lib/names.c: Rewritten the name database module almost from scratch.
220aeaca5d3SMartin Mares	Everything is much cleaner and there are hopefully no more memory leaks;
221aeaca5d3SMartin Mares	pci_lookup_name() now uses varargs in a backward compatible fashion.
222aeaca5d3SMartin Mares	Introduced PCI_LOOKUP_NO_NUMBERS.
223aeaca5d3SMartin Mares
224aeaca5d3SMartin Mares	The new code supports subsystem entries not tied to a specific device.
225aeaca5d3SMartin Mares	I had to extend the format of pci.ids in order to support it, so I have
226aeaca5d3SMartin Mares	extended the idea of the "C" (class) blocks and introduced "S" blocks
227aeaca5d3SMartin Mares	for subsystems. To avoid doing more incompatible changes in the future,
228aeaca5d3SMartin Mares	the parser skips unknown single-letter blocks without reporting errors.
229aeaca5d3SMartin Mares
230121c76c9SMartin Mares2005-08-23  Martin Mares  <[email protected]>
231121c76c9SMartin Mares
23254e13765SMartin Mares	* Released as 2.1.99-test9.
23354e13765SMartin Mares
23454e13765SMartin Mares	* Makefile (OPT): Removed -fomit-frame-pointer, it's default in recent
23554e13765SMartin Mares	gcc versions when optimizing anyway.
23654e13765SMartin Mares
23754e13765SMartin Mares	* Made the path to pci.ids customizable and independent on the SHAREDIR.
23854e13765SMartin Mares	Just override IDSDIR in the top-level Makefile.
23954e13765SMartin Mares
24054e13765SMartin Mares	* pci.ids: Synchronized with the current database snapshot.
24154e13765SMartin Mares
24284d437d6SMartin Mares	* lspci.man, setpci.man: Improved the man pages. Documented all access
24384d437d6SMartin Mares	methods and which operations are privileged.
24484d437d6SMartin Mares
24584d437d6SMartin Mares	* lspci.c: Another rewrite of config register caching, now also including
24684d437d6SMartin Mares	lots of internal checks. It should be now perfectly able to cope with
24784d437d6SMartin Mares	portions of the configuration space being inaccessible, for example
24884d437d6SMartin Mares	due to insufficient access rights.
24984d437d6SMartin Mares
2503b8bf739SMartin Mares	* lspci.c (show_pcix_nobridge, show_pcix_bridge): Cleaned up dumping of PCI-X
2513b8bf739SMartin Mares	capabilities. Includes partial support for PCI-X 2.0 (probably incomplete
2523b8bf739SMartin Mares	as I haven't seen the spec).
2533b8bf739SMartin Mares
2543b8bf739SMartin Mares	* lspci.c: Quell warnings about unused parameters.
2553b8bf739SMartin Mares
25684d437d6SMartin Mares	* lspci.c: Removed C++ comments.
25784d437d6SMartin Mares
2583b8bf739SMartin Mares	* lib/header.h: Merged definitions of extended capabilities and some new
2593b8bf739SMartin Mares	PCI-X capability bits from linux-2.6.11/include/pci.h.
2603b8bf739SMartin Mares
2613b8bf739SMartin Mares	* lspci.c (show_caps): Try to scan extended capabilities only if the
2623b8bf739SMartin Mares	device has either PCI-X or PCI Express capability in its normal capability
2633b8bf739SMartin Mares	list.
2643b8bf739SMartin Mares
265f7821e53SMartin Mares	* lib/dump.c (dump_init): Reading of dumps works again. The dump reader
266f7821e53SMartin Mares	now also remembers how much data it has read and refuses attempts to
267f7821e53SMartin Mares	access more than that.
268ea4e5f5dSMartin Mares
26946ea554dSMartin Mares	* setpci.man, lspci.c, README: prefer spelling "buses" over "busses".
27046ea554dSMartin Mares
2718afaab22SMartin Mares	* lspci.c: If alloca() is not available, use xmalloc(), not malloc().
2728afaab22SMartin Mares
273121c76c9SMartin Mares	* lib/configure: Added x86_64 on Linux.
274121c76c9SMartin Mares
275c1c2c30eSMartin Mares2005-08-22  Martin Mares  <[email protected]>
276c1c2c30eSMartin Mares
277b9ca9147SMartin Mares	* lib/filter.c (pci_filter_parse_slot): Fixed parsing of domain filters.
278b9ca9147SMartin Mares	Thanks to Matthew Wilcox for bug report.
279b9ca9147SMartin Mares
280c1c2c30eSMartin Mares	* lspci.c: Corrected spelling of "Hz" (it was "hz" at several places).
281b9ca9147SMartin Mares	Thanks to Krzysztof Oledzki for pointing that out.
282c1c2c30eSMartin Mares
28326542a0bSMartin Mares2004-08-19  Martin Mares  <[email protected]>
28426542a0bSMartin Mares
28526542a0bSMartin Mares	* pciutils.spec (%attr): Setting attributes for /sbin/* is an anachronism,
28626542a0bSMartin Mares	because pciutils by default install to /usr/sbin. Update.
28726542a0bSMartin Mares
2886aa54f1bSMartin Mares2004-08-13  Martin Mares  <[email protected]>
2896aa54f1bSMartin Mares
290aabb0a92SMartin Mares	* Released as 2.1.99-test8.
291aabb0a92SMartin Mares
292f31412d1SMartin Mares	* lib/types.h, lib/pci.h, lib/sysdep.h: `byte' and `word' are
293f31412d1SMartin Mares	no longer exported to the outside world.
294f31412d1SMartin Mares
295ee7d8384SMartin Mares	* README.Windows: Updated.
296ee7d8384SMartin Mares
297ee7d8384SMartin Mares	* maint/release: Substitute version number in win32/config.h.
298ee7d8384SMartin Mares
299ee7d8384SMartin Mares	* win32/config.h: Added.
300ee7d8384SMartin Mares
301ee7d8384SMartin Mares	* lib/sysdep.h (bzero, strcasecmp): are macros on Windows.
302ee7d8384SMartin Mares
303ee7d8384SMartin Mares	* compat/getopt.[ch]: Added copies of getopt.[ch] from the GNU
304ee7d8384SMartin Mares	C library for use on systems where the default libraries lack
305ee7d8384SMartin Mares	proper getopt. Currently used by the Windows port.
306ee7d8384SMartin Mares
307ee7d8384SMartin Mares	* lib/sysdep.h, lib/types.h: Updates of the Windows port from
308ee7d8384SMartin Mares	Alexander Stock.
309ee7d8384SMartin Mares
310489233b4SMartin Mares	* lib/types.h: If PCI_HAVE_Uxx_TYPES is defined, libpci doesn't define
311489233b4SMartin Mares	its own u8, u16, u32, byte and word types and uses what the user
312489233b4SMartin Mares	has supplied instead. With this change, all namespace clashes should
313489233b4SMartin Mares	be gone.
314489233b4SMartin Mares
315489233b4SMartin Mares	* Makefile, lib/Makefile: Updated dependencies.
316489233b4SMartin Mares
317489233b4SMartin Mares	* pciutils.h: Include lib/sysdep.h and move NONRET et al. there.
318489233b4SMartin Mares
319489233b4SMartin Mares	* lib/sysdep.h: No need to include <sys/types.h> on FreeBSD, because
320489233b4SMartin Mares	it is included unconditionally in lib/types.h.
321489233b4SMartin Mares
322489233b4SMartin Mares	* Moved system-dependent stuff from lib/internal.h to lib/sysdep.h,
323489233b4SMartin Mares	which is also used by the utilities. Also moved type declarations
324489233b4SMartin Mares	from lib/pci.h to lib/types.h.
325489233b4SMartin Mares
326489233b4SMartin Mares	* All files: Prepend a "PCI_" prefix in front of all configuration
327489233b4SMartin Mares	defines to avoid namespace clashes. CAVEAT: If there is any libpci
328489233b4SMartin Mares	application using the (undocumented) defines, it has to be updated.
329489233b4SMartin Mares
330489233b4SMartin Mares	* lib/Makefile: Killed HAVE_OWN_HEADER_H, since we stopped sharing
331489233b4SMartin Mares	headers with the kernel a couple of years ago.
332489233b4SMartin Mares
3339bb4b4eaSMartin Mares	* lib/sysfs.c (sysfs_get_resources): We have 7 resources, not 6.
3349bb4b4eaSMartin Mares
3356aa54f1bSMartin Mares	* lspci.c (show_rom): Use the same logic for printing disabled
3366aa54f1bSMartin Mares	or unassigned ROM's as we do in show_bases() for the other BAR's.
3376aa54f1bSMartin Mares
3386aa54f1bSMartin Mares	* lib/generic.c (pci_generic_fill_info): Better reaction to
3396aa54f1bSMartin Mares	invalid 64-bit addresses. Also d->hdrtype should not include
3406aa54f1bSMartin Mares	bit 7, which caused mysterious errors on multi-function devices.
3416aa54f1bSMartin Mares
3426aa54f1bSMartin Mares	* lib/generic.c (pci_generic_fill_info): Fill in base addresses
3436aa54f1bSMartin Mares	even if the regions are known to be disabled. It is the client's
3446aa54f1bSMartin Mares	job to interpret them. (And it is not a trivial job if you want
3456aa54f1bSMartin Mares	to do it correctly, since you need to check I/O and memory enables
3466aa54f1bSMartin Mares	on all upstream bridges, too.) However, it could be interesting to
3476aa54f1bSMartin Mares	introduce functions for interpreting the addresses and even for
3486aa54f1bSMartin Mares	mapping the regions and doing I/O on them.
3496aa54f1bSMartin Mares
35080e6c636SMartin Mares2004-07-30  Martin Mares  <[email protected]>
35180e6c636SMartin Mares
35280e6c636SMartin Mares	* lspci.c: HyperTransport improvements from Maciej.
35380e6c636SMartin Mares
354d6324891SMartin Mares2004-07-11  Martin Mares  <[email protected]>
355d6324891SMartin Mares
356d6324891SMartin Mares	* lib/sysfs.c (sysfs_get_resources): Arguments now correspond
357d6324891SMartin Mares	to the format string. [Patch by Bill Nottingham]
358d6324891SMartin Mares
359ec25b52dSMartin Mares2004-07-05  Martin Mares  <[email protected]>
360ec25b52dSMartin Mares
361362be683SMartin Mares	* Released as 2.1.99-test7.
362362be683SMartin Mares
363ec25b52dSMartin Mares	* lspci.c (config_fetch): Wanted to merge Matthew's bug fix, but
364ec25b52dSMartin Mares	ended up with rewriting the fetching mechanism to be fully dynamic,
365ec25b52dSMartin Mares	but avoid reading config space registers not explicitly requested.
366ec25b52dSMartin Mares
367ec25b52dSMartin Mares2004-06-29  Matthew Wilcox <[email protected]>
368ec25b52dSMartin Mares
369ec25b52dSMartin Mares	* lspci.c: More work on PCI Express dumping.
370ec25b52dSMartin Mares
371ec25b52dSMartin Mares	* lib/header.h: Updated PCI Express capability definitions.
372ec25b52dSMartin Mares
373ec25b52dSMartin Mares	* lib/proc.c (proc_read): Removed bogus warning.
374ec25b52dSMartin Mares
375ec25b52dSMartin Mares	* common.c (xrealloc): Introduced.
376ec25b52dSMartin Mares
377ec25b52dSMartin Mares	* lspci.man: Added -xxxx.
378ec25b52dSMartin Mares
37909817437SMartin Mares2004-06-27  Martin Mares  <[email protected]>
38009817437SMartin Mares
381d1fa27ebSMartin Mares	* Released as 2.1.99-test6.
382d1fa27ebSMartin Mares
3834d67aa89SMartin Mares	* lspci.c (show_msix), lib/header.h: Added dumping of MSI-X cap.
3844d67aa89SMartin Mares	Patch by Roland Dreier <[email protected]>, cleaned up by me.
3854d67aa89SMartin Mares
3864d67aa89SMartin Mares	* lspci.c (show_pcix_nobridge, show_pcix_bridge): Handle config_fetch()
3874d67aa89SMartin Mares	failures.
3884d67aa89SMartin Mares
3894d67aa89SMartin Mares	* lib/header.h: Added PCI Express extended capabilities. Again by Matthew.
3904d67aa89SMartin Mares
3914d67aa89SMartin Mares	* lspci.c (show_express): Added dumping of PCI Express cap.
3924d67aa89SMartin Mares	Patch by Matthew Wilcox.
3934d67aa89SMartin Mares
3944d67aa89SMartin Mares	* lib/header.h: Added a list of PCI 3.0 capabilities and also details
3954d67aa89SMartin Mares	on PCI Express caps. Patch by Matthew Wilcox <[email protected]>.
3964d67aa89SMartin Mares
39709817437SMartin Mares	* lspci.c (check_root): Gone. No explicit checks for root are needed,
39809817437SMartin Mares	report correct errors reported by the libpci instead.
39909817437SMartin Mares
40009817437SMartin Mares	* lspci.c: Added dumping of the extended config space on "-xxxx".
40109817437SMartin Mares	Better caching of config registers.
40209817437SMartin Mares
40309817437SMartin Mares	* setpci.c (main): Allow access to whole 4096 bytes of the config space.
40409817437SMartin Mares
40509817437SMartin Mares	* lib/sysfs.c, lib/proc.c: Don't print error messages on short reads,
40609817437SMartin Mares	just return the appropriate error code.
40709817437SMartin Mares
40809817437SMartin Mares	* lib: Added support for extended (4096-byte) configuration space,
40909817437SMartin Mares	currently implemented only in Linux proc and sysfs access methods
41009817437SMartin Mares	and of course in the dump reader.
41109817437SMartin Mares
4120d656226SMartin Mares2004-05-29  Martin Mares  <[email protected]>
4130d656226SMartin Mares
414c0eece92SMartin Mares	* Released as 2.1.99-test5.
415c0eece92SMartin Mares
416a2413560SMartin Mares	* lib/pci.h: Windows don't have the standard u_int* types.
417a2413560SMartin Mares
418a2413560SMartin Mares	* lib/internal.h: <sys/param.h> required on Windows for endianity
419a2413560SMartin Mares	macros.
420a2413560SMartin Mares
421a2413560SMartin Mares	* lib/i386-ports.c: Connected i386-io-windows.h.
422a2413560SMartin Mares
423a2413560SMartin Mares	* lspci.c (check_root): geteuid() is not available on Windows.
424a2413560SMartin Mares
425a2413560SMartin Mares	* lib/i386-io-windows.h: Added Windows port contributed by Alexander
426a2413560SMartin Mares	Stock <[email protected]>.
427a2413560SMartin Mares
428a2413560SMartin Mares	* lib/configure: Hopefully fixed SunOS port broken by various
429a2413560SMartin Mares	changes to the configure script.
430a2413560SMartin Mares
4310d656226SMartin Mares	* Makefile, lib/configure: Cross-compilation support, patch by Maciej.
4320d656226SMartin Mares
433138c0385SMartin Mares2004-05-28  Martin Mares  <[email protected]>
434138c0385SMartin Mares
4359f490382SMartin Mares	* Released as 2.1.99-test4.
4369f490382SMartin Mares
437cce2caacSMartin Mares	* lspci.c (show_verbose): Header type 1 is probably legal for all
438cce2caacSMartin Mares	types of bridges, not only for PCI-to-PCI bridges.
439cce2caacSMartin Mares
440b569ef09SMartin Mares	* lspci.c (format_agp_rate): Write "x16", not "x@".
441b569ef09SMartin Mares	(show_agp): rate[] could overflow.
442b569ef09SMartin Mares	Bugs reported by Jakub Bogusz <[email protected]>.
443b569ef09SMartin Mares
444bfc4fe7aSMartin Mares	* lspci.c (show_ht_*): Show HyperTransport capability with all its
445bfc4fe7aSMartin Mares	details. Once again code by Maciej simplified (i.e., possibly broken)
446bfc4fe7aSMartin Mares	by me.
447bfc4fe7aSMartin Mares
448bfc4fe7aSMartin Mares	* lib/header.h: Added declarations of HyperTransport capability.
449bfc4fe7aSMartin Mares	Again thanks to Maciej.
450bfc4fe7aSMartin Mares
451138c0385SMartin Mares	* lspci.c: Decode all bits of the secondary status word in type 1 headers.
452138c0385SMartin Mares	Thanks to Maciej W. Rozycki <[email protected]> for the patch.
453138c0385SMartin Mares
4548fc75dbcSMartin Mares2003-12-27  Martin Mares  <[email protected]>
4558fc75dbcSMartin Mares
45681abd2a7SMartin Mares	* Released as 2.1.99-test3.
45781abd2a7SMartin Mares
4581f7c91ccSMartin Mares	* lspci.man, setpci.man: Document domains and correct spelling.
4591f7c91ccSMartin Mares
4601f7c91ccSMartin Mares	* lib/dump.c (dump_init): Added ability to read domain numbers.
4611f7c91ccSMartin Mares
46284c8d1bbSMartin Mares	* lspci.c: Devices in domains different from 0 have their slot number
4631f7c91ccSMartin Mares	printed as "<domain>:<bus>:<slot>.<func>". Tree view supports domains
4641f7c91ccSMartin Mares	as well.
46584c8d1bbSMartin Mares
46684c8d1bbSMartin Mares	* lib/filter.c: Slot filters understand domains.
46784c8d1bbSMartin Mares
46884c8d1bbSMartin Mares	* lib/generic.c: Mention the domain in slot numbers in all error messages.
46984c8d1bbSMartin Mares
47084c8d1bbSMartin Mares	* lib/internal.h: The #ifdef for Linux <asm/byteorder.h> was wrong.
47184c8d1bbSMartin Mares
47284c8d1bbSMartin Mares	* lib/access.c (pci_get_dev): Added support for domains.
47384c8d1bbSMartin Mares
47484c8d1bbSMartin Mares	* lib/sysfs.c (sysfs_scan): Read vendor and device ID from the config
47584c8d1bbSMartin Mares	registers (or to be precise, leave it for the generic parts of the pcilib
47684c8d1bbSMartin Mares	to do so) instead of reading them from the sysfs. It's faster this way.
47784c8d1bbSMartin Mares
47884c8d1bbSMartin Mares	* lspci.c (show_pcix): Don't touch pci_dev->hdrtype, it's an internal
47984c8d1bbSMartin Mares	variable. Better read it from the config registers (it's cached anyway).
48084c8d1bbSMartin Mares
48184c8d1bbSMartin Mares	* lib/sysfs.c (sysfs_scan), lib/proc.c (proc_scan): Don't read the hdrtype.
48284c8d1bbSMartin Mares	  lib/generic.c (pci_generic_fill_info): If hdrtype is -1 (unset), read it.
48384c8d1bbSMartin Mares	  Saves lots of unnecessary file accesses.
48484c8d1bbSMartin Mares
48511f7b31bSMartin Mares	* lib/pci.h (PCIADDR_PORT_FMT): Use %llx instead of %Lx, because the latter
48611f7b31bSMartin Mares	is not supported by all C libraries.
48711f7b31bSMartin Mares
48811f7b31bSMartin Mares	* Makefile: Always enter the lib directory (remember that we don't have
48911f7b31bSMartin Mares	full dependecies for the library in the top-level Makefile; hmmm, another
49011f7b31bSMartin Mares	thing to rewrite some day).
49111f7b31bSMartin Mares
49211f7b31bSMartin Mares	* lib/sysfs.c: Added Linux sysfs access method based on the patch
49311f7b31bSMartin Mares	written by Matthew Wilcox <[email protected]>.
49411f7b31bSMartin Mares
49511f7b31bSMartin Mares	* lib/proc.c: Renamed the access method name from "/proc/bus/pci" to "Linux-proc".
49611f7b31bSMartin Mares
49711f7b31bSMartin Mares	* lib/pread.h: The hacks to support pread on various versions
49811f7b31bSMartin Mares	of Linux libc moved there.
49911f7b31bSMartin Mares
50011f7b31bSMartin Mares	* lib/proc.c (proc_setup): The return value of snprintf() varies
50111f7b31bSMartin Mares	between glibc versions, so we need to check both for a negative
50211f7b31bSMartin Mares	values and for too large values.
50311f7b31bSMartin Mares
5044284af58SMartin Mares	* Removed last few references to the "Linux PCI Utilities", the
5054284af58SMartin Mares	package is pretty cross-platform now :)
5064284af58SMartin Mares
5074284af58SMartin Mares2003-12-27  Martin Mares  <[email protected]>
5084284af58SMartin Mares
509ab12277eSMartin Mares	* Released as 2.1.99-test2.
510ab12277eSMartin Mares
511ab12277eSMartin Mares	* README, pciutils.lsm, pciutils.spec: Use @VERSION@ to make the
512ab12277eSMartin Mares	release scripts insert the current version. "make release" is gone.
513ab12277eSMartin Mares
514ab12277eSMartin Mares	* maint/release, maint/release.pm: Added a new system of scripts for
515ab12277eSMartin Mares	making releases including inter-version diffs etc.
516ab12277eSMartin Mares
517ab12277eSMartin Mares	* Makefile: Cleaned up.
518ab12277eSMartin Mares
519ab12277eSMartin Mares	* lib/fbsd-device.c: I patched another copy of this file by mistake,
520ab12277eSMartin Mares	this time the version checks should be right.
521ab12277eSMartin Mares
522ab12277eSMartin Mares2003-12-27  Martin Mares  <[email protected]>
523ab12277eSMartin Mares
5246d722cd6SMartin Mares	* Released as 2.1.99-test1.
5256d722cd6SMartin Mares
526dd33246aSMartin Mares	* pciutils.h, common.c, lspci.man, setpci.man, lib/internal.h:
527dd33246aSMartin Mares	Remove shadows of the syscall access method which was never
528dd33246aSMartin Mares	implemented.
529dd33246aSMartin Mares
53080b3121aSMartin Mares	* update-pciids.sh: Try to preserve permissions of the old file
53180b3121aSMartin Mares	if chmod supports --reference. Should close Debian Bug #223740.
53280b3121aSMartin Mares
5336aea909aSMartin Mares	* lib/proc.c (proc_setup): Increased path name length limit to 1024.
5346aea909aSMartin Mares	Thanks for Redhat and Mandrake for inspiration.
5356aea909aSMartin Mares
5366aea909aSMartin Mares	* lib/configure: Recognize ppc and ppc64, both have 64-bit addresses.
5376aea909aSMartin Mares	Grabbed from Redhat (Fedora) patches.
5386aea909aSMartin Mares
5396aea909aSMartin Mares2003-12-27  Martin Mares  <[email protected]>
5406aea909aSMartin Mares
541f701ff47SMartin Mares	Merged bug fixes from Debian patches:
542f701ff47SMartin Mares
543f701ff47SMartin Mares	* lspci.c (show_verbose): "Cache Line Size" should be capitalized.
544f701ff47SMartin Mares
545f701ff47SMartin Mares	* lspci.c (show_pcix_nobridge): Added a missing newline.
546f701ff47SMartin Mares
5472240db8cSMartin Mares	* lib/proc.c (proc_scan): When reading the header type, don't
5482240db8cSMartin Mares	forget to clear the topmost bit indicating that the device has
549f701ff47SMartin Mares	multiple functions.
5502240db8cSMartin Mares
5512240db8cSMartin Mares2003-12-27  Martin Mares  <[email protected]>
5522240db8cSMartin Mares
55345902995SMartin Mares	Updated the FreeBSD port. Thanks to Samy Al Bahra <[email protected]>
55445902995SMartin Mares	for the patches:
55545902995SMartin Mares
55645902995SMartin Mares	* lib/Makefile: Add ${FREEBSD_SYS} to the include path if it's defined.
55745902995SMartin Mares	* lib/fbsd-device.c: Select the right set of system includes according
55845902995SMartin Mares	to __FreeBSD_version.
55945902995SMartin Mares
56045902995SMartin Mares2003-12-27  Martin Mares  <[email protected]>
56145902995SMartin Mares
5628fc75dbcSMartin Mares	Merged support for Solaris on i386 by Bill Moore <[email protected]>
5638fc75dbcSMartin Mares	and cleaned up:
5648fc75dbcSMartin Mares
5658fc75dbcSMartin Mares	* lib/configure: Recognize SunOS.
5668fc75dbcSMartin Mares	* lib/internal.h: Learn how to recognize byte order on SunOS.
5678fc75dbcSMartin Mares	* lib/i386-ports.c: Split OS-dependent I/O port access from i386-ports.c.
5688fc75dbcSMartin Mares	* lib/i386-io-linux.h: Linux specific part.
5698fc75dbcSMartin Mares	* lib/i386-io-hurd.h: GNU/Hurd specific part.
5708fc75dbcSMartin Mares	* lib/i386-io-sunos.h: SunOS specific part.
5718fc75dbcSMartin Mares
5729739916eSMartin Mares2003-12-26  Martin Mares  <[email protected]>
5739739916eSMartin Mares
5749739916eSMartin Mares	* lib/header.h (PCI_*_MASK): Cast to pciaddr_t explicitly.
5759739916eSMartin Mares
5769739916eSMartin Mares	* lib/pci.h: Types declared in <sys/types.h> should be usable on all
5779739916eSMartin Mares	platforms we currently support, so kill the forest of #ifdef's and
5789739916eSMartin Mares	use them in all cases.
5799739916eSMartin Mares
5809739916eSMartin Mares	* lib/pci.h: Use ULONG_MASK to decide whether we should use long
5819739916eSMartin Mares	or long long to represent a 64-bit address. Killed HAVE_LONG_ADDRESS.
5829739916eSMartin Mares	Define format strings for addresses, port numbers and IRQ numbers
5839739916eSMartin Mares	directly in pci.h.
5849739916eSMartin Mares
5859739916eSMartin Mares	* lib/proc.c (proc_scan): Use PCIADDR_T_FMT for scanf'ing addresses.
5869739916eSMartin Mares
58780459c65SMartin Mares2003-12-26  Marco Gerards  <[email protected]>
58880459c65SMartin Mares
58980459c65SMartin Mares	Added support for the GNU Hurd (cleaned up by Martin Mares):
59080459c65SMartin Mares
59180459c65SMartin Mares	* lib/configure [GNU]: Use the i386 ports for configuration access.
59280459c65SMartin Mares	* lib/i386-ports.c: Don't call iopl() on the Hurd.
59380459c65SMartin Mares	* lib/pci.h [OS_GNU]: Include <sys/types.h> and use it for defining
59480459c65SMartin Mares	u8 to u32.
59580459c65SMartin Mares
596a85769a8SMartin Mares2003-12-26  Martin Mares  <[email protected]>
597a85769a8SMartin Mares
5987dacd9c8SMartin Mares	* lspci.c (show_pcix_bridge, show_pcix_nobridge): Don't forget to call
5997dacd9c8SMartin Mares	config_fetch() to ensure that the registers have been read. Thanks to
6007dacd9c8SMartin Mares	Bill Wood <[email protected]> for the patch.
6017dacd9c8SMartin Mares
6027dacd9c8SMartin Mares	* lspci.c: Ensure that failure of config_fetch() is handled correctly
6037dacd9c8SMartin Mares	at all places.
6047dacd9c8SMartin Mares
6054063c31cSMartin Mares	* lspci.man: There was one more explicit reference to /usr/share/pci.ids.
6064063c31cSMartin Mares	Changed to @SHAREDIR@. Patch from Maciej W. Rozycki <[email protected]>.
6074063c31cSMartin Mares
6083fe8a38dSMartin Mares	* setpci.c (main): Better error messages.
6093fe8a38dSMartin Mares
6105f5b1a7bSMartin Mares	* setpci.c (ex_op): The demo mode should disable only writing, not reading.
6115f5b1a7bSMartin Mares
6125f5b1a7bSMartin Mares	* setpci.man: The documentation was inconsistent on what should -D do.
6135f5b1a7bSMartin Mares	Document the new behaviour.
614b251f40bSMartin Mares
61591e37a49SMartin Mares	* pciutils.h, common.c, setpci.c: Introduced a NONRET macro encapsulating
61691e37a49SMartin Mares	the GCC specific __attribute__((noreturn)) and killed the hack with
61791e37a49SMartin Mares	redefining __attribute__ on non-GCC compilers.
61891e37a49SMartin Mares
6194afd29d3SMartin Mares	* Makefile: Added missing dependencies. Parallel builds work now.
6204afd29d3SMartin Mares	Problem reported by Andreas Haumer <[email protected]>, but I chose
6214afd29d3SMartin Mares	a different fix.
6224afd29d3SMartin Mares
623b0f1a03bSMartin Mares	* Makefile (MANDIR): Use `:=' instead of `=' to avoid executing the shell
624b0f1a03bSMartin Mares	command every time $(MANDIR) is referenced.
625b0f1a03bSMartin Mares
626b7fd8e19SMartin Mares	* lspci.c (main): The error message for `lspci -s' incorrectly mentioned
627b7fd8e19SMartin Mares	a `-f' switch. Reported by Steve Finney <[email protected]>.
628b7fd8e19SMartin Mares
62905bb10a2SMartin Mares	* lib/generic.c: Removed memory leak in pci_generic_bus_scan().
63005bb10a2SMartin Mares	Reported by Gary Parnes <[email protected]>.
63105bb10a2SMartin Mares
632a832f6f1SMartin Mares	* Replaced obsolete syntax of __attribute__((unused)) in the middle of
633a832f6f1SMartin Mares	parameter declarations (which is no longer supported by GCC 3.1) by the
634a832f6f1SMartin Mares	current syntax (attribute at the end). Thanks to [email protected]
635a832f6f1SMartin Mares	for reporting this problem.
636a832f6f1SMartin Mares
637a85769a8SMartin Mares	* Removed CVS $Id$ tags from all files.
638a85769a8SMartin Mares
639a85769a8SMartin Mares	* Makefile: Added some more warnings.
640a85769a8SMartin Mares
641b7351143SMartin Mares	* setpci.c: Cleaned up mask/value code.
642b7351143SMartin Mares
643b7351143SMartin Mares2003-12-08 Thayne Harbaugh <[email protected]>
644b7351143SMartin Mares
645b7351143SMartin Mares	* setpci.c: Individual bits to be set can be specified as <value>:<mask>.
646b7351143SMartin Mares
6472a5d5cf9SMartin Mares2003-11-29  Martin Mares  <[email protected]>
6482a5d5cf9SMartin Mares
6492a5d5cf9SMartin Mares	* Imported the pciutils sources to my Arch repository. Good-bye, CVS.
6502a5d5cf9SMartin Mares
651d772ef15SMartin Mares2003-01-04  Martin Mares  <[email protected]>
652d772ef15SMartin Mares
6531b95f396SMartin Mares	* Released as 2.1.11.
6541b95f396SMartin Mares
655c83293ebSMartin Mares	* Makefile: Changed configuration of installation directories --
656c83293ebSMartin Mares	all paths are now set at the top of the Makefile instead of being
657c83293ebSMartin Mares	scattered between the installation rules. The default installation
658c83293ebSMartin Mares	now goes always to /usr/local regardless of the OS as most distributions
659c83293ebSMartin Mares	already contain some version of pciutils and we don't want custom
660c83293ebSMartin Mares	installations to interfere with the default ones.
661c83293ebSMartin Mares
662c83293ebSMartin Mares	* Makefile: Removed a couple of ancient install hacks: we no longer
663c83293ebSMartin Mares	try to avoid overwriting a newer pci.ids file (users are now expected
664c83293ebSMartin Mares	to use update-ids) and we don't try to remove /etc/pci.ids (a long time
665c83293ebSMartin Mares	has passed since the last version which used it).
666c83293ebSMartin Mares
667e2875dcdSMartin Mares	* Makefile: Paths to pci.ids in man pages automatically get the right path.
668e2875dcdSMartin Mares
6691b95f396SMartin Mares	* Added the update-ids utility.
6700138a2a7SMartin Mares
671d772ef15SMartin Mares	* lib: Removed partially implemented "syscall" access method which will
672d772ef15SMartin Mares	probably never be needed.
673d772ef15SMartin Mares
674eb620239SMartin Mares2002-12-27  Martin Mares  <[email protected]>
675eb620239SMartin Mares
676130090bdSMartin Mares	* lib/nbsd-libpci.c: Cleaned up and hopefully made it endian safe.
677130090bdSMartin Mares
678eb620239SMartin Mares	* lib/generic.c (pci_generic_scan_bus): Added work-around for devices with
679eb620239SMartin Mares	discontiguous numbering of functions. This is already present in the Linux
680eb620239SMartin Mares	kernel for several years, but I forgot to update pciutils as well.
681eb620239SMartin Mares
682848b4347SMartin Mares2002-12-26  Martin Mares  <[email protected]>
683848b4347SMartin Mares
684579b19ffSMartin Mares	* lib/header.h, lspci.c: Dump AGP3 flags and speeds.
685579b19ffSMartin Mares
686579b19ffSMartin Mares	* lib/pci.h, Makefile: Removed HAVE_OWN_HEADER_H. Always use our own header,
687579b19ffSMartin Mares	there is no reason to prefer the kernel version.
688579b19ffSMartin Mares
689579b19ffSMartin Mares	* lib/proc.c (proc_scan): Don't forget to initialize hdrtype.
690579b19ffSMartin Mares
691848b4347SMartin Mares	* Added preliminary version of NetBSD support by Quentin Garnier
692848b4347SMartin Mares	<[email protected]>.
693848b4347SMartin Mares
694f0952474SMartin Mares2002-04-06  Martin Mares  <[email protected]>
695f0952474SMartin Mares
696f0952474SMartin Mares	* lspci.c: Mention "-xxx" in the help.
697f0952474SMartin Mares
698d2f666f1SMartin Mares2002-03-30  Martin Mares  <[email protected]>
699d2f666f1SMartin Mares
7009bd44bb0SMartin Mares	* Released as 2.1.10.
7019bd44bb0SMartin Mares
702a33d0eb7SMartin Mares	* Removed pci.ids from the CVS as they are now maintained separately.
703a33d0eb7SMartin Mares	They are still included in the tarball, but if you are building	pciutils
704a33d0eb7SMartin Mares	from CVS sources or you want to get a newer ID file than the one distributed,
705a33d0eb7SMartin Mares	just use "make update-ids" to download the most recent snapshot from
706a33d0eb7SMartin Mares	pciids.sf.net.
707a33d0eb7SMartin Mares
708a33d0eb7SMartin Mares	* Makefile, README: Updated accordingly.
709a33d0eb7SMartin Mares
710a33d0eb7SMartin Mares	* Makefile: Added a couple of maintenance targets.
711a33d0eb7SMartin Mares
712a33d0eb7SMartin Mares	* maint/*: Maintainer's utilities now reside here (present only in CVS,
713a33d0eb7SMartin Mares	not in the tarball).
714a33d0eb7SMartin Mares
715d2f666f1SMartin Mares	* lib/names.c (parse_name_list): End-of-line comments are no longer
716d2f666f1SMartin Mares	supported. Hashes are now perfectly valid in all names and they start
717d2f666f1SMartin Mares	a comment only at the start of the line.
718d2f666f1SMartin Mares
719ee551b73SMartin Mares2002-03-26  Martin Mares  <[email protected]>
720ee551b73SMartin Mares
72107159913SMartin Mares	* README: Rewritten.
72207159913SMartin Mares
723ee551b73SMartin Mares	* Makefile: When the currently installed pci.ids file is newer than
724ee551b73SMartin Mares	the version to be installed, don't overwrite it. Suggested by
725ee551b73SMartin Mares	Jean Delvare <[email protected]>.
726ee551b73SMartin Mares
727bc7b1d62SMartin Mares2002-03-24  Martin Mares  <[email protected]>
728bc7b1d62SMartin Mares
7295f5e6f64SMartin Mares	* lspci.c (show_pcix_bridge): Added PCI-X capability display.
7305f5e6f64SMartin Mares	Contributed by Jeff Garzik <[email protected]>.
7315f5e6f64SMartin Mares
7325f5e6f64SMartin Mares	* lib/header.h: Added PCI-X stuff. Again by Jeff.
7335f5e6f64SMartin Mares
7345f5e6f64SMartin Mares	* Makefile (CFLAGS): -Werror is gone.
7355f5e6f64SMartin Mares
736a1052f16SMartin Mares	* lspci.c (format_agp_rate): Fixed AGP rate reporting.
737a1052f16SMartin Mares
738bc7b1d62SMartin Mares	* lib/filter.c (pci_filter_parse_slot): Allow bus 0xff, slot 0x1f and
739bc7b1d62SMartin Mares	function 7.
740bc7b1d62SMartin Mares
741bc7b1d62SMartin Mares	* lib/names.c (pci_lookup_name): When printing unknown subsystem vendor
742bc7b1d62SMartin Mares	or device hexadecimally, don't confuse it with chip vendor/device ID.
743bc7b1d62SMartin Mares	First reported by Marc Boucher <[email protected]>.
744bc7b1d62SMartin Mares
745f793990cSMartin Mares2001-11-04  Martin Mares  <[email protected]>
746f793990cSMartin Mares
747ee551b73SMartin Mares	* Released as 2.1.9.
748ee551b73SMartin Mares
749f793990cSMartin Mares	* pci.ids: Synced with the PCI ID Repository at SourceForge
750f793990cSMartin Mares	(http://pciids.sourceforge.net/).
751f793990cSMartin Mares
7521d174e56SMartin Mares2000-08-25  Martin Mares  <[email protected]>
7531d174e56SMartin Mares
7541d174e56SMartin Mares	* pci.ids: Updated ID's, synced with kernel 2.4.0-test7.
7551d174e56SMartin Mares
75665b4327eSMartin Mares2000-06-13  Martin Mares  <[email protected]>
75765b4327eSMartin Mares
75865b4327eSMartin Mares	* Makefile (uninstall): Fixed.
75965b4327eSMartin Mares
76065b4327eSMartin Mares	* pci.ids: ID updates.
76165b4327eSMartin Mares
7624a219d5fSMartin Mares2000-05-20  Martin Mares  <[email protected]>
7634a219d5fSMartin Mares
7644a219d5fSMartin Mares	* Released as 2.1.8.
7654a219d5fSMartin Mares
7664a219d5fSMartin Mares	* pci.ids: ID updates.
7674a219d5fSMartin Mares
7684a219d5fSMartin Mares	* lspci.c (show_verbose): Min/max latency is now printed in nanoseconds.
7694a219d5fSMartin Mares
7704a219d5fSMartin Mares2000-05-04  Martin Mares  <[email protected]>
7714a219d5fSMartin Mares
7724a219d5fSMartin Mares	* lspci.c (show_verbose): If the header type doesn't match device
7734a219d5fSMartin Mares	class, just print a warning and still use the header type, assuming
7744a219d5fSMartin Mares	bogus class info.
7754a219d5fSMartin Mares
77610c90662SMartin Mares2000-05-01  Martin Mares  <[email protected]>
77710c90662SMartin Mares
77872b9b690SMartin Mares	* lspci.c (show_pm): Updated according to PCI PM specs 1.1.
77972b9b690SMartin Mares
78010c90662SMartin Mares	* pci.ids: Updated Contemporary Control ARCnet card entries.
78110c90662SMartin Mares
78210c90662SMartin Mares	* pci.ids: Synchronized class list with latest PCI SIG documents.
78310c90662SMartin Mares
784a239ade6SMartin Mares2000-04-29  Martin Mares  <[email protected]>
785a239ade6SMartin Mares
786a239ade6SMartin Mares	* lib/names.c (pci_lookup_name): Fixed the cheat.
787a239ade6SMartin Mares
788a239ade6SMartin Mares	* lib/internal.h: Moved UNUSED/inline hacks above all other declarations.
789a239ade6SMartin Mares
790a239ade6SMartin Mares	* pci.ids: Various ID updates.
791a239ade6SMartin Mares
7922c83b860SMartin Mares2000-04-21  Martin Mares  <[email protected]>
7932c83b860SMartin Mares
7942c83b860SMartin Mares	* Released as 2.1.7.
7952c83b860SMartin Mares
7962c83b860SMartin Mares	* pciutils.spec: Added German description.
7972c83b860SMartin Mares
7982c83b860SMartin Mares	* lib/names.c (pci_lookup_name): Added a cheat for case that subsystem ID's
7992c83b860SMartin Mares	are the same as device ID and just output subsystem name according to
8002c83b860SMartin Mares	device name.
8012c83b860SMartin Mares
8022c83b860SMartin Mares	* lib/proc.c: Use UNUSED instead of __attribute__((unused)).
8032c83b860SMartin Mares
8042c83b860SMartin Mares	* lib/pci.h: Added the correct typedefs for AIX.
8052c83b860SMartin Mares
8062c83b860SMartin Mares	* lib/generic.c (pci_generic_scan_bus): Export.
8072c83b860SMartin Mares
8082c83b860SMartin Mares	* lib/configure: Detect AIX. Use "echo '...\c'" instead of
8092c83b860SMartin Mares	"echo -n" if the shell isn't bash.
8102c83b860SMartin Mares
8112c83b860SMartin Mares	* lspci.c: Avoid using alloca() if not compiled by GCC.
8122c83b860SMartin Mares	(insert_dev): Avoid returning a void value.
8132c83b860SMartin Mares
8142c83b860SMartin Mares	* Makefile: Choose which install utility to use according to
8152c83b860SMartin Mares	OS type. Also use `-o' instead of `-or' in find arguments.
8162c83b860SMartin Mares	Part of the AIX port.
8172c83b860SMartin Mares
8182c83b860SMartin Mares	* lib/aix-device.c: Added AIX low-level interface. Contributed
8192c83b860SMartin Mares	by Dave Johnson <[email protected]>, thanks a lot!
8202c83b860SMartin Mares
8212c83b860SMartin Mares	* pci.ids: Few new ID's.
8222c83b860SMartin Mares
8232c83b860SMartin Mares	* pciutils.h, lib/internal.h: Redefine __attribute__ and inline
8242c83b860SMartin Mares	when not compiled by GCC.
8252c83b860SMartin Mares
826c1a828daSMartin Mares2000-04-17  Martin Mares  <[email protected]>
827c1a828daSMartin Mares
828c1a828daSMartin Mares	* Released as 2.1.6.
829c1a828daSMartin Mares
830c1a828daSMartin Mares	* pci.ids: Added a large batch of ID's contributed by Gunther
831c1a828daSMartin Mares	Mayer <[email protected]> and synced the
832c1a828daSMartin Mares	list with the 2.3.99pre6 kernel.
833c1a828daSMartin Mares
834e91dd3abSMartin MaresThu Mar  9 13:11:39 2000  Martin Mares  <[email protected]>
835e91dd3abSMartin Mares
836a80b79a9SMartin Mares	* lib/example.c: Added a simple example of how to use
837a80b79a9SMartin Mares	the library.
838a80b79a9SMartin Mares
83989984232SMartin Mares	* lspci.man, setpci.man: Revealed --version. Well spotted
84089984232SMartin Mares	by Adam Sulmicki.
84189984232SMartin Mares
842e91dd3abSMartin Mares	* pci.ids: Added lots of new ID's and synced with 2.3.50.
843e91dd3abSMartin Mares
84478d9c5e2SMartin MaresTue Feb 15 00:16:21 2000  Martin Mares  <[email protected]>
84578d9c5e2SMartin Mares
84678d9c5e2SMartin Mares	* Released as 2.1.5.
84778d9c5e2SMartin Mares
84878d9c5e2SMartin Mares	* pciutils.spec: Updated spec file from Andreas Jaeger. Now using
84978d9c5e2SMartin Mares	%{_mandir} to find the right location to install manual pages to.
85078d9c5e2SMartin Mares
85178d9c5e2SMartin Mares	* pci.ids: New ID's.
85278d9c5e2SMartin Mares
85378d9c5e2SMartin Mares	* setpci.c (main): Don't crash when `-s' or `-d' is given with
85478d9c5e2SMartin Mares	no argument.
85578d9c5e2SMartin Mares
856f8141ae2SMartin MaresMon Jan 24 20:04:11 2000  Andreas Jaeger  <[email protected]>
857f8141ae2SMartin Mares
858f8141ae2SMartin Mares	* lib/i386-ports.c: Include <asm/io.h> only on systems without
859f8141ae2SMartin Mares	glibc.
860f8141ae2SMartin Mares
861f8141ae2SMartin MaresMon Jan 24 11:24:43 2000  Martin Mares  <[email protected]>
862f8141ae2SMartin Mares
863f8141ae2SMartin Mares	* Makefile: Modified to work with the Linux FHS brain-damaged idea
864f8141ae2SMartin Mares	of putting man pages to /usr/share/man. Now we choose either /usr/man
865f8141ae2SMartin Mares	or /usr/share/man depending on which one exists.
866f8141ae2SMartin Mares
86759e76e8bSMartin MaresSun Jan 23 10:52:34 2000  Martin Mares  <[email protected]>
86859e76e8bSMartin Mares
86959e76e8bSMartin Mares	* pci.ids: Synced with Linux 2.3.40.
87059e76e8bSMartin Mares
87159e76e8bSMartin Mares	* Released as version 2.1.4.
87259e76e8bSMartin Mares
8732dfd48cdSMartin MaresThu Jan 20 11:08:32 2000  Martin Mares  <[email protected]>
8742dfd48cdSMartin Mares
8752715403fSMartin Mares	* lspci.c (scan_device): Fixed bug in reading of cardbus extensions.
8762715403fSMartin Mares
87781077814SMartin Mares	* lib/proc.c: pread/pwrite fixed again, this time on libc5 :(
87881077814SMartin Mares
87981077814SMartin Mares	* lspci.c (format_agp_rate): Better formatting of AGP rates.
88081077814SMartin Mares
88181077814SMartin Mares	* pci.ids: New ID's.
88281077814SMartin Mares
8832dfd48cdSMartin Mares	* lib/configure: Added configuration for ia64 (the same as for Alpha).
8842dfd48cdSMartin Mares	Patch from Stephane Eranian <[email protected]>.
8852dfd48cdSMartin Mares
8865a258860SMartin MaresThu Jan 13 23:01:52 2000  Martin Mares  <[email protected]>
8875a258860SMartin Mares
8885a258860SMartin Mares	* Released as version 2.1.3.
8895a258860SMartin Mares
8905a258860SMartin Mares	* pci.ids: New ID's.
8915a258860SMartin Mares
8925a258860SMartin Mares	* lspci.c: Alpha IO_FORMAT fix by Andrea Arcangeli.
8935a258860SMartin Mares
8945a258860SMartin Mares	* lib/access.c: Corrected order of access methods -- it's wonderful how
8955a258860SMartin Mares	long could such a bug remain unspotted. Thanks go to Andreas Schockenhoff.
8965a258860SMartin Mares
8970c047bbeSMartin MaresSat Dec 11 23:34:48 1999  Martin Mares  <[email protected]>
8980c047bbeSMartin Mares
8990c047bbeSMartin Mares	* Released as version 2.1.2.
9000c047bbeSMartin Mares
9010c047bbeSMartin Mares	* lib/names.c (pci_lookup_name): Fixed printing of unknown subsystem ID's.
9020c047bbeSMartin Mares
90333bc28a5SMartin MaresSat Dec  4 13:11:03 1999  Martin Mares  <[email protected]>
90433bc28a5SMartin Mares
90539231205SMartin Mares	* Released as version 2.1.1.
90639231205SMartin Mares
90733bc28a5SMartin Mares	* pci.ids: Several new ID's.
90833bc28a5SMartin Mares
90933bc28a5SMartin Mares	* setpci.c (exec_op): Don't forget to increment address after writing
91033bc28a5SMartin Mares	single value, so that `30.b=12,34,56,78' works as expected. Reported
91133bc28a5SMartin Mares	by Petr Soucek <[email protected]>.
91233bc28a5SMartin Mares
9138d047897SMartin MaresWed Nov  3 10:24:38 1999  Martin Mares  <[email protected]>
9148d047897SMartin Mares
9158d047897SMartin Mares	* lspci.c (show_terse): If prog-if is zero, but it's present in the
9168d047897SMartin Mares	ID list, show it.
9178d047897SMartin Mares
9186afc6538SMartin MaresSat Oct 30 11:06:35 1999  Martin Mares  <[email protected]>
9196afc6538SMartin Mares
9206afc6538SMartin Mares	* Released as version 2.1.
9216afc6538SMartin Mares
9226afc6538SMartin Mares	* pci.ids: Synced to devlist.h in 2.3.24 kernel. Merged in
9236afc6538SMartin Mares	lots of contributed entries.
9246afc6538SMartin Mares
9258f756113SMartin MaresThu Oct 14 10:40:12 1999  Dave Jones    <[email protected]>
9268f756113SMartin Mares
9278f756113SMartin Mares	* pci.ids: Added lots of subsystem definitions.
9288f756113SMartin Mares
929d4798a32SMartin MaresSat Oct  9 14:32:28 1999  Martin Mares  <[email protected]>
930d4798a32SMartin Mares
931d4798a32SMartin Mares	* setpci.man: Better example.
932d4798a32SMartin Mares
933d4798a32SMartin Mares	* lspci.c: Resolve prog-if names.
934d4798a32SMartin Mares
935d4798a32SMartin Mares	* lib/names.c: Adapted to new pci.ids syntax.
936d4798a32SMartin Mares
937d4798a32SMartin Mares	* pci.ids: Reorganized the pci.ids file. Subsystems are listed
938d4798a32SMartin Mares	under devices, classes can optionally contain prog-if information.
939d4798a32SMartin Mares	New ID's, as usually.
940d4798a32SMartin Mares
941e306e911SMartin MaresWed Sep 22 09:45:24 1999  Martin Mares  <[email protected]>
942e306e911SMartin Mares
943e306e911SMartin Mares	* pci.ids: New ID's. As usually.
944e306e911SMartin Mares
945e306e911SMartin Mares	* lspci.c (show_htype1, show_htype2): Don't show `closed' bridge windows
946e306e911SMartin Mares	unless we're vvvery verbose.
947e306e911SMartin Mares
948e306e911SMartin MaresMon Sep 20 11:22:54 1999  Martin Mares  <[email protected]>
949e306e911SMartin Mares
950e306e911SMartin Mares	* lspci.c (show_htype2): Don't forget a TAB before the "I/O window" line.
951e306e911SMartin Mares
952e64a576cSMartin MaresTue Sep 14 09:31:01 1999  Martin Mares  <[email protected]>
953e64a576cSMartin Mares
954e64a576cSMartin Mares	* pci.ids: New ID's. Again.
955e64a576cSMartin Mares
956c36c0862SMartin MaresThu Aug  5 17:45:42 1999  Martin Mares  <[email protected]>
957c36c0862SMartin Mares
958c36c0862SMartin Mares	* lspci.c (show_size): Don't show size if it's zero (usually
959c36c0862SMartin Mares	due to bus-centric mode being enabled).
960c36c0862SMartin Mares
9611ca42433SMartin MaresTue Jul 20 13:25:09 1999  Martin Mares  <[email protected]>
9621ca42433SMartin Mares
963168b4f46SMartin Mares	* lib/pci.h: Types are OS dependent.
964168b4f46SMartin Mares
965168b4f46SMartin Mares	* lib/internal.h: Byte order hacks are OS dependent.
966168b4f46SMartin Mares
967168b4f46SMartin Mares	* lib/configure: Recognize FreeBSD. Also set OS_XXX according to the OS.
968168b4f46SMartin Mares
969168b4f46SMartin Mares	* lib/Makefile, lib/access.c: Added fbsd-device target.
970168b4f46SMartin Mares
971168b4f46SMartin Mares	* pci.ids: Added an entry for PLX 9080 bridges with subsystem ID
972168b4f46SMartin Mares	incorrectly set to device ID.
973168b4f46SMartin Mares
974168b4f46SMartin Mares	* README: Added a note that we support FreeBSD.
975168b4f46SMartin Mares
976168b4f46SMartin Mares	* Makefile (PREFIX, ROOT): Set it depending on the OS.
977168b4f46SMartin Mares	(%.8): Grrr, BSD date is not able to convert date formats the same way
978168b4f46SMartin Mares	as GNU date does. Use sed instead.
979168b4f46SMartin Mares	(install): Use `-c' when calling install.
980168b4f46SMartin Mares
981168b4f46SMartin Mares	* lib/fbsd-device.c: Added FreeBSD /dev/pci access module contributed
982168b4f46SMartin Mares	by Jari Kirma <[email protected]>.
983168b4f46SMartin Mares
984bc6346dfSMartin Mares	* lib/proc.c: Rewrote the pread/pwrite things once again. Use pread
985bc6346dfSMartin Mares	and pwrite only when we are certain it's safe (i.e., glibc 2.1
986bc6346dfSMartin Mares	on all architectures or any libc on a i386 where we really know
987bc6346dfSMartin Mares	how to use syscalls directly). In all other cases, emulate it
988bc6346dfSMartin Mares	with lseek/read/write.
989bc6346dfSMartin Mares
9901ca42433SMartin Mares	* pci.ids: Some more IDs.
9911ca42433SMartin Mares
9921ca42433SMartin MaresMon Jul 19 14:10:36 1999  Martin Mares  <[email protected]>
9931ca42433SMartin Mares
9941ca42433SMartin Mares	* pci.ids: Added IDs of parallel port controller cards as sent
9951ca42433SMartin Mares	by Tim Waugh <[email protected]>.
9961ca42433SMartin Mares
997e95c8373SMartin MaresWed Jul  7 00:55:48 1999  Martin Mares  <[email protected]>
998e95c8373SMartin Mares
999e95c8373SMartin Mares	* lib/proc.c (proc_scan): HAVE_LONG_ADDRESS instead of HAVE_64BIT_ADDRESS.
1000e95c8373SMartin Mares
1001e95c8373SMartin Mares	* lspci.c: ADDR_FORMAT now depends on both HAVE_64BIT_ADDRESS and
1002e95c8373SMartin Mares	HAVE_LONG_ADDRESS.
1003e95c8373SMartin Mares
1004e95c8373SMartin Mares	* lib/configure: HAVE_64BIT_ADDRESS now doesn't imply that the addresses
1005e95c8373SMartin Mares	are represented as long long. Introduced a new flag HAVE_LONG_ADDRESS
1006e95c8373SMartin Mares	to indicate this. Both Sparc architectures now use both 64BIT_ADDRESS
1007e95c8373SMartin Mares	and LONG_ADDRESS since they have 32-bit userland, but don't set LONG_ADDRESS
1008e95c8373SMartin Mares	on Alpha.
1009e95c8373SMartin Mares
1010e95c8373SMartin Mares	* lspci.c (show_msi): Added dumping of the MSI capability.
1011e95c8373SMartin Mares	(show_slotid): The same for SlotID capability.
1012e95c8373SMartin Mares	(show_caps): Seperated capability dumping, because it should
1013e95c8373SMartin Mares	be used for both htype0 and htype1. Even PCI 2.2 doesn't mention
1014e95c8373SMartin Mares	layout of htype2, so I'm a bit unsure about it wrt capabilities
1015e95c8373SMartin Mares	-- they at least have to live somewhere else since address 0x34
1016e95c8373SMartin Mares	is already defined differently in htype2.
1017e95c8373SMartin Mares
1018e95c8373SMartin Mares	* lib/header.h (PCI_STATUS_UDF): Marked as obsolete (PCI 2.2).
1019e95c8373SMartin Mares	(PCI_BASE_ADDRESS_MEM_TYPE_1M): Ditto.
1020e95c8373SMartin Mares	(PCI_CAP_ID_*): Added some new capabilities defined in PCI 2.2.
1021e95c8373SMartin Mares
1022e95c8373SMartin Mares	* lspci.c (show_htype0): Mask out lowest 2 bits from all capability pointers
1023e95c8373SMartin Mares	(required by the PCI 2.2 specs).
1024e95c8373SMartin Mares
1025e95c8373SMartin MaresMon Jul  5 12:45:19 1999  Martin Mares  <[email protected]>
1026e95c8373SMartin Mares
1027e95c8373SMartin Mares	* lspci.c (show_size): Added new function for dumping of region sizes.
1028e95c8373SMartin Mares	(show_rom): Added. Now correctly dumps unassigned ROM addresses, disabled
1029e95c8373SMartin Mares	ROMs et cetera.
1030e95c8373SMartin Mares
1031e95c8373SMartin Mares	* lib/pci.h (struct pci_dev): known_fields moved to the public part
1032e95c8373SMartin Mares	of the structure.
1033e95c8373SMartin Mares
1034e95c8373SMartin Mares	* Added support for region sizes. Needs support in the kernel, because
1035e95c8373SMartin Mares	sizes have to be scanned before drivers initialize yourself. pci_fill_info()
1036e95c8373SMartin Mares	now returns a bitmask of what fields were really read.
1037e95c8373SMartin Mares
103882ce97c9SMartin MaresMon Jun 28 18:37:51 1999  Dave Jones    <[email protected]>
103982ce97c9SMartin Mares
104082ce97c9SMartin Mares	* Makefile:
104182ce97c9SMartin Mares	  Added `uninstall' target - removes all traces of pciutils.
104282ce97c9SMartin Mares	* pci.ids:
104382ce97c9SMartin Mares	  - Lots of cleanups in the ATI, S3, Adaptec vendors.
104482ce97c9SMartin Mares	  - Changed Compaq QVision 1280/p definitions, as it's not possible
104582ce97c9SMartin Mares	    to determine the revision from the device ID.
104682ce97c9SMartin Mares	  - Same for the Tseng ET4000.
104782ce97c9SMartin Mares	    The id's said I had a rev C, when it was actually a rev B.
104882ce97c9SMartin Mares	  - Removed some unnecessary strings
104982ce97c9SMartin Mares	    `PCI'. Unless it's an AGP card, it should be obvious that it's PCI.
105082ce97c9SMartin Mares	    `Ethernet card'. This should be determined from config space.
105182ce97c9SMartin Mares	  - Lots of other new vendors & devices
105282ce97c9SMartin Mares	  - Other additional small cleanups.
105382ce97c9SMartin Mares
10547bed2d83SMartin MaresMon Jun 21 22:11:10 1999  Martin Mares  <[email protected]>
10557bed2d83SMartin Mares
10567bed2d83SMartin Mares	* lib/names.c (pci_lookup_name): When device ID lookup
10577bed2d83SMartin Mares	fails, return hexadecimal device ID instead of vendor ID.
10587bed2d83SMartin Mares	Well spotted by Axel Bodemann <[email protected]>,
10597bed2d83SMartin Mares	I've just extended the fix to subsystem ID's.
10607bed2d83SMartin Mares
10615ba3a475SMartin MaresThu Jun 17 19:48:21 1999  Martin Mares  <[email protected]>
10625ba3a475SMartin Mares
10635ba3a475SMartin Mares	* lspci.c (show_agp): Bug fix from Petr Vandrovec
10645ba3a475SMartin Mares	<[email protected]>. The command register was displayed
10655ba3a475SMartin Mares	incorrectly.
10665ba3a475SMartin Mares
10675ba3a475SMartin MaresWed Jun  2 22:42:44 1999  Martin Mares  <[email protected]>
10685ba3a475SMartin Mares
10695ba3a475SMartin Mares	* lib/proc.c (SYS_pread, SYS_pwrite): Use hard-coded
10705ba3a475SMartin Mares	numbers if not supplied by the libc.
10715ba3a475SMartin Mares
107255c815b5SMartin MaresWed May 19 13:24:39 1999  Martin Mares  <[email protected]>
107355c815b5SMartin Mares
107455c815b5SMartin Mares	* Released the whole package as version 2.0.
107555c815b5SMartin Mares
107655c815b5SMartin MaresFri May 14 22:42:02 1999  Martin Mares  <[email protected]>
107755c815b5SMartin Mares
107855c815b5SMartin Mares	* pci.ids: Added several new ID's contributed by people
107955c815b5SMartin Mares	on the linux-pci list.
108055c815b5SMartin Mares
1081dec16943SMartin MaresMon Apr 19 15:21:08 1999  Jakub Jelinek  <[email protected]>
1082dec16943SMartin Mares
1083dec16943SMartin Mares	* lspci.c: Display I/O addresses correctly on sparc64.
1084dec16943SMartin Mares	* lib/header.h: Ditto.
1085dec16943SMartin Mares
1086dec16943SMartin Mares	* lib/configure: On sparc set HAVE_64BIT* as well, we want
1087dec16943SMartin Mares	a binary which works on both 32bit and 64bit SPARCs.
1088dec16943SMartin Mares
1089e33c9c7aSMartin MaresSun Apr 18 21:14:58 1999  Martin Mares  <[email protected]>
1090e33c9c7aSMartin Mares
1091e33c9c7aSMartin Mares	* lspci.c, lib/proc.c: Alpha compilation fixes from Matthew Jacob
1092e33c9c7aSMartin Mares	<[email protected]>.
1093e33c9c7aSMartin Mares
1094e33c9c7aSMartin Mares	* pci.ids: A lot of updates from Adam J. Richter <[email protected]>.
1095e33c9c7aSMartin Mares
1096f3395cc5SMartin MaresSun Feb 28 22:26:21 1999  Martin Mares  <[email protected]>
1097f3395cc5SMartin Mares
1098f3395cc5SMartin Mares	* lspci.c (do_map_bus): Don't dump functions 1--7 if not flagged
1099f3395cc5SMartin Mares	as a multi-function device, because several single-function devices
1100f3395cc5SMartin Mares	don't decode the function bits at all.
1101f3395cc5SMartin Mares
1102f3395cc5SMartin MaresSun Feb 14 23:48:22 1999  Martin Mares  <[email protected]>
1103f3395cc5SMartin Mares
1104f3395cc5SMartin Mares	* Makefile (install): Don't use "-o root -g root" for installation
1105f3395cc5SMartin Mares	since it breaks on machines where programs are not installed by root.
1106f3395cc5SMartin Mares	Reported by Richard Gooch <[email protected]>
1107f3395cc5SMartin Mares
1108f3395cc5SMartin MaresTue Feb  9 15:54:39 1999  Martin Mares  <[email protected]>
1109f3395cc5SMartin Mares
1110f3395cc5SMartin Mares	* lspci.c (show_bases): Use new address masking macros and pciaddr_t.
1111f3395cc5SMartin Mares
1112f3395cc5SMartin Mares	* lib/pci.h: Using pciaddr_t for bus addresses, which are 32-bit
1113f3395cc5SMartin Mares	or 64-bit depending on CPU.
1114f3395cc5SMartin Mares
1115f3395cc5SMartin Mares	* lib/pci.h (PCI_ADDR_MEM_MASK): Added macros for address masks
1116f3395cc5SMartin Mares	according to bus address width.
1117f3395cc5SMartin Mares
11181c31d620SMartin MaresThu Jan 28 20:54:16 1999  Martin Mares  <[email protected]>
11191c31d620SMartin Mares
11201c31d620SMartin Mares	* Released as 1.99.4.
11211c31d620SMartin Mares
11221c31d620SMartin Mares	* lspci.c: Capability list parser now recognizes both AGP
11231c31d620SMartin Mares	registers and PCI Power Management registers (the latter
11241c31d620SMartin Mares	is mainly guesswork based on DEC/Intel 21153 bridge specs
11251c31d620SMartin Mares	since I don't have the PCI Power Management document).
11261c31d620SMartin Mares
11271c31d620SMartin Mares	* lspci.c: Replaced numerous occurences of (x & flag) ? '+' : '-'
11281c31d620SMartin Mares	by FLAG macro.
11291c31d620SMartin Mares
11301c31d620SMartin Mares	* lspci.c: Added bridge checks to bus mapping code.
11311c31d620SMartin Mares
11321812a795SMartin MaresWed Jan 27 14:59:16 1999  Martin Mares  <[email protected]>
11331812a795SMartin Mares
11341812a795SMartin Mares	* lspci.c: Implemented bus mapping mode (-M).
11351812a795SMartin Mares
11361812a795SMartin Mares	* lspci.c (scan_devices): Split to scan_devices() and scan_device().
11371812a795SMartin Mares	(show): Split to show() and show_device().
11381812a795SMartin Mares
11391812a795SMartin Mares	* lib/access.c (pci_init): When a->method == PCI_ACCESS_AUTO,
11401812a795SMartin Mares	set it to the real access method afterwards.
11411812a795SMartin Mares
11421812a795SMartin MaresMon Jan 25 23:46:13 1999  Martin Mares  <[email protected]>
11431812a795SMartin Mares
11441812a795SMartin Mares	* lib/generic.c (pci_generic_fill_info): If in buscentric mode,
11451812a795SMartin Mares	don't check PCI_COMMAND for I/O and memory enables.
11461812a795SMartin Mares
1147f6c86928SMartin MaresMon Jan 25 21:28:49 1999  Martin Mares  <[email protected]>
1148f6c86928SMartin Mares
1149f6c86928SMartin Mares	* Makefile: Added target `release' which substitutes new version
1150f6c86928SMartin Mares	number to .spec, .lsm and README. Also rewrote target `dist'.
1151f6c86928SMartin Mares
1152f6c86928SMartin Mares	* Released as 1.99.3.
1153f6c86928SMartin Mares
1154b5137411SMartin MaresSun Jan 24 22:10:36 1999  Martin Mares  <[email protected]>
1155b5137411SMartin Mares
1156d6b297d0SMartin Mares	* lib/header.h: Until kernel adopts new layout of PCI
1157d6b297d0SMartin Mares	includes (i.e., separate declaration of header structure,
1158d6b297d0SMartin Mares	functions and device IDs), which is not going to happen
1159d6b297d0SMartin Mares	before 2.3, we'll use our own definiton of the header.
1160d6b297d0SMartin Mares
1161b5137411SMartin Mares	* lspci.c (show_verbose): Display `Cap' flag in device status.
1162b5137411SMartin Mares
1163b5137411SMartin Mares	* lspci.c (show_htype0): Display capability lists whereever
1164b5137411SMartin Mares	available. The only capability name we recognize now is `AGP'.
1165b5137411SMartin Mares	Unfortunately, capabilities are stored in device-dependent
1166b5137411SMartin Mares	portion of the configuration space and are thus available
1167b5137411SMartin Mares	only to root unless you read a dump.
1168b5137411SMartin Mares
1169b5137411SMartin Mares	* lspci.c (scan_devices): Use cache instead of buffering.
1170b5137411SMartin Mares
1171b5137411SMartin Mares	* lib/buffer.c: Removed (obsoleted by the cache).
1172b5137411SMartin Mares
1173b5137411SMartin Mares	* lib/access.c: Added general caching mechanism.
1174b5137411SMartin Mares
117581ce358dSMartin MaresSat Jan 23 21:30:54 1999  Martin Mares  <[email protected]>
117681ce358dSMartin Mares
117781ce358dSMartin Mares	* pci.ids: Added few devices.
117881ce358dSMartin Mares
1179727ce158SMartin MaresFri Jan 22 19:29:31 1999  Martin Mares  <[email protected]>
1180727ce158SMartin Mares
1181727ce158SMartin Mares	* Version string is now defined in top-level Makefile, exported
1182727ce158SMartin Mares	to the configure script and also substituted to man pages.
1183727ce158SMartin Mares
1184727ce158SMartin Mares	* lspci.c (show_bases): Rewrote displaying of 64-bit addresses.
1185727ce158SMartin Mares	(show_verbose): Rewrote interrupt display logic.
1186727ce158SMartin Mares
1187727ce158SMartin Mares	* lib/i386-ports.c: Include sys/io.h only on glibc systems.
1188727ce158SMartin Mares
1189727ce158SMartin Mares	* lib/configure: Rewrote detection of Linux versions. Now it
1190727ce158SMartin Mares	works on 2.0 kernels (only with direct/dump access, of course).
1191727ce158SMartin Mares
1192727ce158SMartin Mares	* lib/internal.h: New bytesex macros using <asm/byteorder.h>
1193727ce158SMartin Mares	whenever available.
1194727ce158SMartin Mares
1195727ce158SMartin Mares	* lib/proc.c (proc_read, proc_write): Distinguish between short
1196727ce158SMartin Mares	read/write and real errors.
1197727ce158SMartin Mares
1198727ce158SMartin Mares	* lspci.c (show_htype{0,1}): Always use d->dev->rom_base_addr since
1199727ce158SMartin Mares	libpci respects buscentric mode automatically.
1200727ce158SMartin Mares
1201727ce158SMartin Mares	* lspci.c (show_hex_dump): For CardBus bridges, print out 128
1202727ce158SMartin Mares	bytes of header (the whole standard part).
1203727ce158SMartin Mares
1204727ce158SMartin Mares	* common.c: pcilib options are now all uppercase. Also moved
1205727ce158SMartin Mares	PCI access debugging option here.
1206727ce158SMartin Mares
1207727ce158SMartin Mares	* Released as 1.99.2.
1208727ce158SMartin Mares
1209727ce158SMartin MaresWed Jan 20 22:50:35 1999  Martin Mares  <[email protected]>
1210727ce158SMartin Mares
1211727ce158SMartin Mares	* Wrote configure script and rewrote Makefiles.
1212727ce158SMartin Mares
1213727ce158SMartin Mares	* Removed few unused variables.
1214727ce158SMartin Mares
1215727ce158SMartin MaresWed Jan 20 12:21:56 1999  Martin Mares  <[email protected]>
1216727ce158SMartin Mares
1217727ce158SMartin Mares	* common.c: Moved several functions used in both setpci and lspci
1218727ce158SMartin Mares	here. This includes parsing of libpci-related options.
1219727ce158SMartin Mares
1220727ce158SMartin Mares	* More library tweaks.
1221727ce158SMartin Mares
1222727ce158SMartin Mares	* filter.c, names.c: Moved to library.
1223727ce158SMartin Mares
1224727ce158SMartin Mares	* setpci: Rewritten to use the library.
1225727ce158SMartin Mares
1226727ce158SMartin Mares	* Released as 1.99.1.
1227727ce158SMartin Mares
1228727ce158SMartin MaresTue Jan 19 23:00:12 1999  Martin Mares  <[email protected]>
1229727ce158SMartin Mares
1230727ce158SMartin Mares	* lspci.c (scan_devices): For cardbus bridges, read first 128
1231727ce158SMartin Mares	bytes of config space to get full standard header.
1232727ce158SMartin Mares
1233727ce158SMartin Mares	* Makefile (CFLAGS): Removed "-Wno-unused".
1234727ce158SMartin Mares
1235727ce158SMartin Mares	* Started the "New Generation" branch and introduced the
1236727ce158SMartin Mares	PCI library.
1237727ce158SMartin Mares
1238727ce158SMartin Mares	* lspci: Rewritten to use the library.
1239727ce158SMartin Mares
12406ece6bc6SMartin MaresTue Jan 19 22:24:08 1999  Martin Mares  <[email protected]>
12416ece6bc6SMartin Mares
12426ece6bc6SMartin Mares	* Released as version 1.10.
12436ece6bc6SMartin Mares
12446ece6bc6SMartin MaresMon Jan 18 08:51:17 1999  Martin Mares  <[email protected]>
12456ece6bc6SMartin Mares
12466ece6bc6SMartin Mares	* lspci.8, setpci.8: Miscellaneous fixes as suggested by
12476ece6bc6SMartin Mares	Dag Wieers <[email protected]>.
12486ece6bc6SMartin Mares
12491212dd6dSMartin MaresSun Nov 29 20:05:56 1998  Martin Mares  <[email protected]>
12501212dd6dSMartin Mares
12511212dd6dSMartin Mares	* pciutils.spec (Name): Update from Krzysztof G. Baranowski.
12521212dd6dSMartin Mares
1253d38471fdSMartin MaresSun Nov 22 10:49:56 1998  Martin Mares  <[email protected]>
1254d38471fdSMartin Mares
1255d38471fdSMartin Mares	* Makefile, pciutils.h: Moved pci.ids to /usr/share.
1256d38471fdSMartin Mares
1257d38471fdSMartin Mares	* Released as version 1.09.
1258d38471fdSMartin Mares
1259371f605bSMartin MaresWed Nov 18 15:47:05 1998  Martin Mares  <[email protected]>
1260371f605bSMartin Mares
1261371f605bSMartin Mares	* lspci.c (show_htype1): Fixed displaying of prefetchable memory behind
1262371f605bSMartin Mares	bridge. Thanks to Petr Vandrovec <[email protected]> for bug report.
1263371f605bSMartin Mares
126410be47abSMartin MaresFri Oct 23 18:59:19 1998  Martin Mares  <[email protected]>
126510be47abSMartin Mares
126610be47abSMartin Mares	* setpci.c: Don't include <syscall-list.h> with glibc >= 2.1.
126710be47abSMartin Mares
1268472bd340SMartin MaresMon Oct 19 21:53:30 1998  Martin Mares  <[email protected]>
1269472bd340SMartin Mares
1270472bd340SMartin Mares	* Released as version 1.08.
1271472bd340SMartin Mares
1272472bd340SMartin Mares	* setpci.c: glibc 2.1.x already defines pread() and pwrite().
1273472bd340SMartin Mares
1274472bd340SMartin Mares	* lspci.8: Changed warning about lspci -xxx.
1275472bd340SMartin Mares
1276472bd340SMartin Mares	* lspci.c: Require "-xxx" for full configuration space dump, so that
1277472bd340SMartin Mares	it's impossible to crash the machine by single typo.
1278472bd340SMartin Mares
1279472bd340SMartin Mares	* specs: Added (courtesy of Krzysztof G. Baranowski <[email protected]>).
1280472bd340SMartin Mares
1281072c77e5SMartin MaresWed Sep  9 12:03:24 1998  Martin Mares  <[email protected]>
1282072c77e5SMartin Mares
1283072c77e5SMartin Mares	* lspci.c (show_bases): Better displaying of unassigned and
1284072c77e5SMartin Mares	disabled bases. Thanks to Gabriel Paubert <[email protected]>
1285072c77e5SMartin Mares	for an idea.
1286072c77e5SMartin Mares
1287b7554856SMartin MaresWed Sep  2 10:58:01 1998  Martin Mares  <[email protected]>
1288b7554856SMartin Mares
1289b7554856SMartin Mares	* setpci.c (pread): Recognize glibc 1.99 numbered as 2.0 on the PPC.
1290b7554856SMartin Mares	(thanks to Geert Uytterhoeven for finding this out)
1291b7554856SMartin Mares
1292ce503b7fSMartin MaresFri Jul 17 10:43:30 1998  Martin Mares  <[email protected]>
1293ce503b7fSMartin Mares
1294ce503b7fSMartin Mares	* lspci.c (show_verbose): Print subsystem ID using the new resolver.
1295ce503b7fSMartin Mares	(show_machine): Print subsystem ID.
1296ce503b7fSMartin Mares
1297ce503b7fSMartin Mares	* names.c: New name resolution engine supporting subsystem IDs.
1298ce503b7fSMartin Mares
1299ce503b7fSMartin Mares	* Released as version 1.07.
1300ce503b7fSMartin Mares
130196e4f295SMartin MaresWed Jul 15 15:37:21 1998  Martin Mares  <[email protected]>
130296e4f295SMartin Mares
130396e4f295SMartin Mares	* lspci.c (show_htype2 etc.): Displaying of CardBus headers.
130496e4f295SMartin Mares	(show_bases): Honor the `cnt' argument.
130596e4f295SMartin Mares	(grow_tree): Parse CardBus headers in tree mode as well.
130696e4f295SMartin Mares
130796e4f295SMartin Mares	* pci.h: Updated CardBus header field description. I still don't
130896e4f295SMartin Mares	have the CardBus standard available, but OZ6832 specs contain
130996e4f295SMartin Mares	full description of all header fields supported by the chip.
131096e4f295SMartin Mares
13116ae3650aSMartin MaresTue Jun  9 22:53:59 1998  Martin Mares  <[email protected]>
13126ae3650aSMartin Mares
1313304f9a0bSMartin Mares	* Released as 1.06.
1314304f9a0bSMartin Mares
13156ae3650aSMartin Mares	* names.c (parse_name_list): Killed an unused variable.
13166ae3650aSMartin Mares
13176ae3650aSMartin Mares	* setpci.c (pread, pwrite): Define SYS_(pread|pwrite) as __NR_\1
13186ae3650aSMartin Mares	if they are not defined by glibc (needed for glibc built on older
13196ae3650aSMartin Mares	kernels). Ugly.
13206ae3650aSMartin Mares
13216ae3650aSMartin Mares	* setpci.c (exec_op): Fixed error messages. Thanks, Steve!
13226ae3650aSMartin Mares
13234b88a6b8SMartin MaresMon Jun  8 10:59:22 1998  Martin Mares  <[email protected]>
13244b88a6b8SMartin Mares
13254b88a6b8SMartin Mares	* Released as 1.05.
13264b88a6b8SMartin Mares
13274b88a6b8SMartin Mares	* setpci.c: Problems with pread()/pwrite() with glibc on Alpha
13284b88a6b8SMartin Mares	should be gone. Again thanks to Steve for bug report.
13294b88a6b8SMartin Mares
13304b88a6b8SMartin Mares	* filter.c (filter_parse_slot): Fixed ":x" type filters.
13314b88a6b8SMartin Mares
13324b88a6b8SMartin Mares	* pci.ids: Killed duplicate entry. Thanks to Stephen Williams
13334b88a6b8SMartin Mares	<[email protected]> for reporting this.
13344b88a6b8SMartin Mares
13354b88a6b8SMartin MaresSun Jun  7 19:27:51 1998  Martin Mares  <[email protected]>
13364b88a6b8SMartin Mares
13374b88a6b8SMartin Mares	* lspci.c (main), setpci.c (main): Implemented "--version".
13384b88a6b8SMartin Mares
13394b88a6b8SMartin Mares	* Released as 1.04.
13404b88a6b8SMartin Mares
13414b88a6b8SMartin Mares	* pciutils.h (PCIUTILS_VERSION): Added version string.
13424b88a6b8SMartin Mares
13434b88a6b8SMartin Mares	* filter.c, names.c: Extraneous #include <linux/pci.h> removed.
13444b88a6b8SMartin Mares	Thanks to Geert Uytterhoeven <[email protected]>
13454b88a6b8SMartin Mares	for bug report.
13464b88a6b8SMartin Mares
13479b306998SMartin MaresThu May 28 14:45:58 1998  Martin Mares  <[email protected]>
13489b306998SMartin Mares
13499b306998SMartin Mares	* pci.ids: More updates from Jens Maurer.
13509b306998SMartin Mares
1351b372672fSMartin MaresWed Apr 22 10:00:39 1998  Martin Mares  <[email protected]>
1352b372672fSMartin Mares
1353b372672fSMartin Mares	* pci.ids: Updates from Jens Maurer.
1354b372672fSMartin Mares
1355b2c9b373SMartin MaresSun Apr 19 11:14:25 1998  Martin Mares  <[email protected]>
1356b2c9b373SMartin Mares
1357b372672fSMartin Mares	* Released as 1.03.
1358b372672fSMartin Mares
1359b2c9b373SMartin Mares	* setpci.8: Written.
1360b2c9b373SMartin Mares
1361b2c9b373SMartin Mares	* setpci.c: Finished.
1362b2c9b373SMartin Mares
1363b2c9b373SMartin Mares	* lspci.c: Now able to fetch expansion ROM base from kernel device list
1364b2c9b373SMartin Mares	and print it if not in buscentric mode.
1365b2c9b373SMartin Mares
1366e4842ff3SMartin MaresTue Mar 31 23:11:57 1998  Martin Mares  <[email protected]>
1367e4842ff3SMartin Mares
1368e4842ff3SMartin Mares	* setpci.c: Added.
1369e4842ff3SMartin Mares
1370e4842ff3SMartin MaresSun Mar 22 15:39:08 1998  Martin Mares  <[email protected]>
1371e4842ff3SMartin Mares
1372e4842ff3SMartin Mares	* lspci.8: Updated the documentation.
1373e4842ff3SMartin Mares
1374e4842ff3SMartin Mares	* lspci.c: Modified to use the new filtering mechanism (options -f and -d).
1375e4842ff3SMartin Mares
1376e4842ff3SMartin Mares	* filter.c: Introduced new generic device filter.
1377e4842ff3SMartin Mares
1378008407bdSMartin MaresThu Mar 19 17:03:48 1998  Martin Mares  <[email protected]>
1379008407bdSMartin Mares
1380008407bdSMartin Mares	* lspci.c (grow_tree, show_tree_dev, print_it): Fixed displaying
1381008407bdSMartin Mares	of PCI-to-PCI bridges in the tree format.
1382008407bdSMartin Mares
13830a33d0ecSMartin MaresSun Feb 15 10:12:25 1998  Martin Mares  <[email protected]>
13840a33d0ecSMartin Mares
13850a33d0ecSMartin Mares	* lspci.c (show_machine): Added non-verbose mode of machine-readable
13860a33d0ecSMartin Mares	dump.
13870a33d0ecSMartin Mares
13880a33d0ecSMartin Mares	* pci.ids: Updates from Jens Maurer.
13890a33d0ecSMartin Mares
13900a33d0ecSMartin Mares	* Released as version 1.02.
13910a33d0ecSMartin Mares
13920a33d0ecSMartin MaresThu Feb 12 16:53:28 1998  Martin Mares  <[email protected]>
13930a33d0ecSMartin Mares
13940a33d0ecSMartin Mares	* lspci.c: Added a "-m" switch for dumping machine-readable
13950a33d0ecSMartin Mares	configuration data (requested by Bjoern Kriews <[email protected]>).
13960a33d0ecSMartin Mares
1397fb38eee8SMartin MaresMon Feb  9 13:17:43 1998  Martin Mares  <[email protected]>
1398fb38eee8SMartin Mares
1399fb38eee8SMartin Mares	* Makefile, pciutils.h: Include local pci.h instead of <linux/pci.h>
1400fb38eee8SMartin Mares	if available. This should avoid all problems with official kernel
1401fb38eee8SMartin Mares	not synchronized to newer PCI code in CVS -- standard distribution
1402fb38eee8SMartin Mares	of pciutils now contains pci.h from current CVS kernel, pciutils
1403fb38eee8SMartin Mares	in CVS contain no pci.h and use the correct kernel include.
1404fb38eee8SMartin Mares
1405fb38eee8SMartin Mares	* Makefile: Fixed installation path for man pages.
1406fb38eee8SMartin Mares
14072f48f637SMartin MaresSat Feb  7 15:15:46 1998  Martin Mares  <[email protected]>
14082f48f637SMartin Mares
14092f48f637SMartin Mares	* README: Updated.
14102f48f637SMartin Mares
14112f48f637SMartin Mares	* lspci.8: Created a man page.
14122f48f637SMartin Mares
14132f48f637SMartin Mares	* Releasing as version 1.0.
14142f48f637SMartin Mares
14152f48f637SMartin MaresTue Feb  3 20:56:00 1998  Martin Mares  <[email protected]>
14162f48f637SMartin Mares
14172f48f637SMartin Mares	* Makefile: Recognize architecture by calling uname and pass it as ARCH_xxx
14182f48f637SMartin Mares	to all the C sources. This should eliminate problems with 32-bit compilers
14192f48f637SMartin Mares	on sparc64.
14202f48f637SMartin Mares
14212f48f637SMartin Mares	* lspci.c (show_verbose): Recognize CardBus bridge header type.
14222f48f637SMartin Mares	(show_htype2): Stub routine.
14232f48f637SMartin Mares	(scan_config): Write sensible error message if the kernel denies reading of
14242f48f637SMartin Mares	upper part of the PCI config space.
1425