xref: /pciutils/ChangeLog (revision ea4e5f5d)
1121c76c9SMartin Mares2005-08-23  Martin Mares  <[email protected]>
2121c76c9SMartin Mares
3*ea4e5f5dSMartin Mares	* lib/dump.c (dump_init): Reading of dumps works again.
4*ea4e5f5dSMartin Mares
546ea554dSMartin Mares	* setpci.man, lspci.c, README: prefer spelling "buses" over "busses".
646ea554dSMartin Mares
78afaab22SMartin Mares	* lspci.c: If alloca() is not available, use xmalloc(), not malloc().
88afaab22SMartin Mares
9121c76c9SMartin Mares	* lib/configure: Added x86_64 on Linux.
10121c76c9SMartin Mares
11c1c2c30eSMartin Mares2005-08-22  Martin Mares  <[email protected]>
12c1c2c30eSMartin Mares
13b9ca9147SMartin Mares	* lib/filter.c (pci_filter_parse_slot): Fixed parsing of domain filters.
14b9ca9147SMartin Mares	Thanks to Matthew Wilcox for bug report.
15b9ca9147SMartin Mares
16c1c2c30eSMartin Mares	* lspci.c: Corrected spelling of "Hz" (it was "hz" at several places).
17b9ca9147SMartin Mares	Thanks to Krzysztof Oledzki for pointing that out.
18c1c2c30eSMartin Mares
1926542a0bSMartin Mares2004-08-19  Martin Mares  <[email protected]>
2026542a0bSMartin Mares
2126542a0bSMartin Mares	* pciutils.spec (%attr): Setting attributes for /sbin/* is an anachronism,
2226542a0bSMartin Mares	because pciutils by default install to /usr/sbin. Update.
2326542a0bSMartin Mares
246aa54f1bSMartin Mares2004-08-13  Martin Mares  <[email protected]>
256aa54f1bSMartin Mares
26aabb0a92SMartin Mares	* Released as 2.1.99-test8.
27aabb0a92SMartin Mares
28f31412d1SMartin Mares	* lib/types.h, lib/pci.h, lib/sysdep.h: `byte' and `word' are
29f31412d1SMartin Mares	no longer exported to the outside world.
30f31412d1SMartin Mares
31ee7d8384SMartin Mares	* README.Windows: Updated.
32ee7d8384SMartin Mares
33ee7d8384SMartin Mares	* maint/release: Substitute version number in win32/config.h.
34ee7d8384SMartin Mares
35ee7d8384SMartin Mares	* win32/config.h: Added.
36ee7d8384SMartin Mares
37ee7d8384SMartin Mares	* lib/sysdep.h (bzero, strcasecmp): are macros on Windows.
38ee7d8384SMartin Mares
39ee7d8384SMartin Mares	* compat/getopt.[ch]: Added copies of getopt.[ch] from the GNU
40ee7d8384SMartin Mares	C library for use on systems where the default libraries lack
41ee7d8384SMartin Mares	proper getopt. Currently used by the Windows port.
42ee7d8384SMartin Mares
43ee7d8384SMartin Mares	* lib/sysdep.h, lib/types.h: Updates of the Windows port from
44ee7d8384SMartin Mares	Alexander Stock.
45ee7d8384SMartin Mares
46489233b4SMartin Mares	* lib/types.h: If PCI_HAVE_Uxx_TYPES is defined, libpci doesn't define
47489233b4SMartin Mares	its own u8, u16, u32, byte and word types and uses what the user
48489233b4SMartin Mares	has supplied instead. With this change, all namespace clashes should
49489233b4SMartin Mares	be gone.
50489233b4SMartin Mares
51489233b4SMartin Mares	* Makefile, lib/Makefile: Updated dependencies.
52489233b4SMartin Mares
53489233b4SMartin Mares	* pciutils.h: Include lib/sysdep.h and move NONRET et al. there.
54489233b4SMartin Mares
55489233b4SMartin Mares	* lib/sysdep.h: No need to include <sys/types.h> on FreeBSD, because
56489233b4SMartin Mares	it is included unconditionally in lib/types.h.
57489233b4SMartin Mares
58489233b4SMartin Mares	* Moved system-dependent stuff from lib/internal.h to lib/sysdep.h,
59489233b4SMartin Mares	which is also used by the utilities. Also moved type declarations
60489233b4SMartin Mares	from lib/pci.h to lib/types.h.
61489233b4SMartin Mares
62489233b4SMartin Mares	* All files: Prepend a "PCI_" prefix in front of all configuration
63489233b4SMartin Mares	defines to avoid namespace clashes. CAVEAT: If there is any libpci
64489233b4SMartin Mares	application using the (undocumented) defines, it has to be updated.
65489233b4SMartin Mares
66489233b4SMartin Mares	* lib/Makefile: Killed HAVE_OWN_HEADER_H, since we stopped sharing
67489233b4SMartin Mares	headers with the kernel a couple of years ago.
68489233b4SMartin Mares
699bb4b4eaSMartin Mares	* lib/sysfs.c (sysfs_get_resources): We have 7 resources, not 6.
709bb4b4eaSMartin Mares
716aa54f1bSMartin Mares	* lspci.c (show_rom): Use the same logic for printing disabled
726aa54f1bSMartin Mares	or unassigned ROM's as we do in show_bases() for the other BAR's.
736aa54f1bSMartin Mares
746aa54f1bSMartin Mares	* lib/generic.c (pci_generic_fill_info): Better reaction to
756aa54f1bSMartin Mares	invalid 64-bit addresses. Also d->hdrtype should not include
766aa54f1bSMartin Mares	bit 7, which caused mysterious errors on multi-function devices.
776aa54f1bSMartin Mares
786aa54f1bSMartin Mares	* lib/generic.c (pci_generic_fill_info): Fill in base addresses
796aa54f1bSMartin Mares	even if the regions are known to be disabled. It is the client's
806aa54f1bSMartin Mares	job to interpret them. (And it is not a trivial job if you want
816aa54f1bSMartin Mares	to do it correctly, since you need to check I/O and memory enables
826aa54f1bSMartin Mares	on all upstream bridges, too.) However, it could be interesting to
836aa54f1bSMartin Mares	introduce functions for interpreting the addresses and even for
846aa54f1bSMartin Mares	mapping the regions and doing I/O on them.
856aa54f1bSMartin Mares
8680e6c636SMartin Mares2004-07-30  Martin Mares  <[email protected]>
8780e6c636SMartin Mares
8880e6c636SMartin Mares	* lspci.c: HyperTransport improvements from Maciej.
8980e6c636SMartin Mares
90d6324891SMartin Mares2004-07-11  Martin Mares  <[email protected]>
91d6324891SMartin Mares
92d6324891SMartin Mares	* lib/sysfs.c (sysfs_get_resources): Arguments now correspond
93d6324891SMartin Mares	to the format string. [Patch by Bill Nottingham]
94d6324891SMartin Mares
95ec25b52dSMartin Mares2004-07-05  Martin Mares  <[email protected]>
96ec25b52dSMartin Mares
97362be683SMartin Mares	* Released as 2.1.99-test7.
98362be683SMartin Mares
99ec25b52dSMartin Mares	* lspci.c (config_fetch): Wanted to merge Matthew's bug fix, but
100ec25b52dSMartin Mares	ended up with rewriting the fetching mechanism to be fully dynamic,
101ec25b52dSMartin Mares	but avoid reading config space registers not explicitly requested.
102ec25b52dSMartin Mares
103ec25b52dSMartin Mares2004-06-29  Matthew Wilcox <[email protected]>
104ec25b52dSMartin Mares
105ec25b52dSMartin Mares	* lspci.c: More work on PCI Express dumping.
106ec25b52dSMartin Mares
107ec25b52dSMartin Mares	* lib/header.h: Updated PCI Express capability definitions.
108ec25b52dSMartin Mares
109ec25b52dSMartin Mares	* lib/proc.c (proc_read): Removed bogus warning.
110ec25b52dSMartin Mares
111ec25b52dSMartin Mares	* common.c (xrealloc): Introduced.
112ec25b52dSMartin Mares
113ec25b52dSMartin Mares	* lspci.man: Added -xxxx.
114ec25b52dSMartin Mares
11509817437SMartin Mares2004-06-27  Martin Mares  <[email protected]>
11609817437SMartin Mares
117d1fa27ebSMartin Mares	* Released as 2.1.99-test6.
118d1fa27ebSMartin Mares
1194d67aa89SMartin Mares	* lspci.c (show_msix), lib/header.h: Added dumping of MSI-X cap.
1204d67aa89SMartin Mares	Patch by Roland Dreier <[email protected]>, cleaned up by me.
1214d67aa89SMartin Mares
1224d67aa89SMartin Mares	* lspci.c (show_pcix_nobridge, show_pcix_bridge): Handle config_fetch()
1234d67aa89SMartin Mares	failures.
1244d67aa89SMartin Mares
1254d67aa89SMartin Mares	* lib/header.h: Added PCI Express extended capabilities. Again by Matthew.
1264d67aa89SMartin Mares
1274d67aa89SMartin Mares	* lspci.c (show_express): Added dumping of PCI Express cap.
1284d67aa89SMartin Mares	Patch by Matthew Wilcox.
1294d67aa89SMartin Mares
1304d67aa89SMartin Mares	* lib/header.h: Added a list of PCI 3.0 capabilities and also details
1314d67aa89SMartin Mares	on PCI Express caps. Patch by Matthew Wilcox <[email protected]>.
1324d67aa89SMartin Mares
13309817437SMartin Mares	* lspci.c (check_root): Gone. No explicit checks for root are needed,
13409817437SMartin Mares	report correct errors reported by the libpci instead.
13509817437SMartin Mares
13609817437SMartin Mares	* lspci.c: Added dumping of the extended config space on "-xxxx".
13709817437SMartin Mares	Better caching of config registers.
13809817437SMartin Mares
13909817437SMartin Mares	* setpci.c (main): Allow access to whole 4096 bytes of the config space.
14009817437SMartin Mares
14109817437SMartin Mares	* lib/sysfs.c, lib/proc.c: Don't print error messages on short reads,
14209817437SMartin Mares	just return the appropriate error code.
14309817437SMartin Mares
14409817437SMartin Mares	* lib: Added support for extended (4096-byte) configuration space,
14509817437SMartin Mares	currently implemented only in Linux proc and sysfs access methods
14609817437SMartin Mares	and of course in the dump reader.
14709817437SMartin Mares
1480d656226SMartin Mares2004-05-29  Martin Mares  <[email protected]>
1490d656226SMartin Mares
150c0eece92SMartin Mares	* Released as 2.1.99-test5.
151c0eece92SMartin Mares
152a2413560SMartin Mares	* lib/pci.h: Windows don't have the standard u_int* types.
153a2413560SMartin Mares
154a2413560SMartin Mares	* lib/internal.h: <sys/param.h> required on Windows for endianity
155a2413560SMartin Mares	macros.
156a2413560SMartin Mares
157a2413560SMartin Mares	* lib/i386-ports.c: Connected i386-io-windows.h.
158a2413560SMartin Mares
159a2413560SMartin Mares	* lspci.c (check_root): geteuid() is not available on Windows.
160a2413560SMartin Mares
161a2413560SMartin Mares	* lib/i386-io-windows.h: Added Windows port contributed by Alexander
162a2413560SMartin Mares	Stock <[email protected]>.
163a2413560SMartin Mares
164a2413560SMartin Mares	* lib/configure: Hopefully fixed SunOS port broken by various
165a2413560SMartin Mares	changes to the configure script.
166a2413560SMartin Mares
1670d656226SMartin Mares	* Makefile, lib/configure: Cross-compilation support, patch by Maciej.
1680d656226SMartin Mares
169138c0385SMartin Mares2004-05-28  Martin Mares  <[email protected]>
170138c0385SMartin Mares
1719f490382SMartin Mares	* Released as 2.1.99-test4.
1729f490382SMartin Mares
173cce2caacSMartin Mares	* lspci.c (show_verbose): Header type 1 is probably legal for all
174cce2caacSMartin Mares	types of bridges, not only for PCI-to-PCI bridges.
175cce2caacSMartin Mares
176b569ef09SMartin Mares	* lspci.c (format_agp_rate): Write "x16", not "x@".
177b569ef09SMartin Mares	(show_agp): rate[] could overflow.
178b569ef09SMartin Mares	Bugs reported by Jakub Bogusz <[email protected]>.
179b569ef09SMartin Mares
180bfc4fe7aSMartin Mares	* lspci.c (show_ht_*): Show HyperTransport capability with all its
181bfc4fe7aSMartin Mares	details. Once again code by Maciej simplified (i.e., possibly broken)
182bfc4fe7aSMartin Mares	by me.
183bfc4fe7aSMartin Mares
184bfc4fe7aSMartin Mares	* lib/header.h: Added declarations of HyperTransport capability.
185bfc4fe7aSMartin Mares	Again thanks to Maciej.
186bfc4fe7aSMartin Mares
187138c0385SMartin Mares	* lspci.c: Decode all bits of the secondary status word in type 1 headers.
188138c0385SMartin Mares	Thanks to Maciej W. Rozycki <[email protected]> for the patch.
189138c0385SMartin Mares
1908fc75dbcSMartin Mares2003-12-27  Martin Mares  <[email protected]>
1918fc75dbcSMartin Mares
19281abd2a7SMartin Mares	* Released as 2.1.99-test3.
19381abd2a7SMartin Mares
1941f7c91ccSMartin Mares	* lspci.man, setpci.man: Document domains and correct spelling.
1951f7c91ccSMartin Mares
1961f7c91ccSMartin Mares	* lib/dump.c (dump_init): Added ability to read domain numbers.
1971f7c91ccSMartin Mares
19884c8d1bbSMartin Mares	* lspci.c: Devices in domains different from 0 have their slot number
1991f7c91ccSMartin Mares	printed as "<domain>:<bus>:<slot>.<func>". Tree view supports domains
2001f7c91ccSMartin Mares	as well.
20184c8d1bbSMartin Mares
20284c8d1bbSMartin Mares	* lib/filter.c: Slot filters understand domains.
20384c8d1bbSMartin Mares
20484c8d1bbSMartin Mares	* lib/generic.c: Mention the domain in slot numbers in all error messages.
20584c8d1bbSMartin Mares
20684c8d1bbSMartin Mares	* lib/internal.h: The #ifdef for Linux <asm/byteorder.h> was wrong.
20784c8d1bbSMartin Mares
20884c8d1bbSMartin Mares	* lib/access.c (pci_get_dev): Added support for domains.
20984c8d1bbSMartin Mares
21084c8d1bbSMartin Mares	* lib/sysfs.c (sysfs_scan): Read vendor and device ID from the config
21184c8d1bbSMartin Mares	registers (or to be precise, leave it for the generic parts of the pcilib
21284c8d1bbSMartin Mares	to do so) instead of reading them from the sysfs. It's faster this way.
21384c8d1bbSMartin Mares
21484c8d1bbSMartin Mares	* lspci.c (show_pcix): Don't touch pci_dev->hdrtype, it's an internal
21584c8d1bbSMartin Mares	variable. Better read it from the config registers (it's cached anyway).
21684c8d1bbSMartin Mares
21784c8d1bbSMartin Mares	* lib/sysfs.c (sysfs_scan), lib/proc.c (proc_scan): Don't read the hdrtype.
21884c8d1bbSMartin Mares	  lib/generic.c (pci_generic_fill_info): If hdrtype is -1 (unset), read it.
21984c8d1bbSMartin Mares	  Saves lots of unnecessary file accesses.
22084c8d1bbSMartin Mares
22111f7b31bSMartin Mares	* lib/pci.h (PCIADDR_PORT_FMT): Use %llx instead of %Lx, because the latter
22211f7b31bSMartin Mares	is not supported by all C libraries.
22311f7b31bSMartin Mares
22411f7b31bSMartin Mares	* Makefile: Always enter the lib directory (remember that we don't have
22511f7b31bSMartin Mares	full dependecies for the library in the top-level Makefile; hmmm, another
22611f7b31bSMartin Mares	thing to rewrite some day).
22711f7b31bSMartin Mares
22811f7b31bSMartin Mares	* lib/sysfs.c: Added Linux sysfs access method based on the patch
22911f7b31bSMartin Mares	written by Matthew Wilcox <[email protected]>.
23011f7b31bSMartin Mares
23111f7b31bSMartin Mares	* lib/proc.c: Renamed the access method name from "/proc/bus/pci" to "Linux-proc".
23211f7b31bSMartin Mares
23311f7b31bSMartin Mares	* lib/pread.h: The hacks to support pread on various versions
23411f7b31bSMartin Mares	of Linux libc moved there.
23511f7b31bSMartin Mares
23611f7b31bSMartin Mares	* lib/proc.c (proc_setup): The return value of snprintf() varies
23711f7b31bSMartin Mares	between glibc versions, so we need to check both for a negative
23811f7b31bSMartin Mares	values and for too large values.
23911f7b31bSMartin Mares
2404284af58SMartin Mares	* Removed last few references to the "Linux PCI Utilities", the
2414284af58SMartin Mares	package is pretty cross-platform now :)
2424284af58SMartin Mares
2434284af58SMartin Mares2003-12-27  Martin Mares  <[email protected]>
2444284af58SMartin Mares
245ab12277eSMartin Mares	* Released as 2.1.99-test2.
246ab12277eSMartin Mares
247ab12277eSMartin Mares	* README, pciutils.lsm, pciutils.spec: Use @VERSION@ to make the
248ab12277eSMartin Mares	release scripts insert the current version. "make release" is gone.
249ab12277eSMartin Mares
250ab12277eSMartin Mares	* maint/release, maint/release.pm: Added a new system of scripts for
251ab12277eSMartin Mares	making releases including inter-version diffs etc.
252ab12277eSMartin Mares
253ab12277eSMartin Mares	* Makefile: Cleaned up.
254ab12277eSMartin Mares
255ab12277eSMartin Mares	* lib/fbsd-device.c: I patched another copy of this file by mistake,
256ab12277eSMartin Mares	this time the version checks should be right.
257ab12277eSMartin Mares
258ab12277eSMartin Mares2003-12-27  Martin Mares  <[email protected]>
259ab12277eSMartin Mares
2606d722cd6SMartin Mares	* Released as 2.1.99-test1.
2616d722cd6SMartin Mares
262dd33246aSMartin Mares	* pciutils.h, common.c, lspci.man, setpci.man, lib/internal.h:
263dd33246aSMartin Mares	Remove shadows of the syscall access method which was never
264dd33246aSMartin Mares	implemented.
265dd33246aSMartin Mares
26680b3121aSMartin Mares	* update-pciids.sh: Try to preserve permissions of the old file
26780b3121aSMartin Mares	if chmod supports --reference. Should close Debian Bug #223740.
26880b3121aSMartin Mares
2696aea909aSMartin Mares	* lib/proc.c (proc_setup): Increased path name length limit to 1024.
2706aea909aSMartin Mares	Thanks for Redhat and Mandrake for inspiration.
2716aea909aSMartin Mares
2726aea909aSMartin Mares	* lib/configure: Recognize ppc and ppc64, both have 64-bit addresses.
2736aea909aSMartin Mares	Grabbed from Redhat (Fedora) patches.
2746aea909aSMartin Mares
2756aea909aSMartin Mares2003-12-27  Martin Mares  <[email protected]>
2766aea909aSMartin Mares
277f701ff47SMartin Mares	Merged bug fixes from Debian patches:
278f701ff47SMartin Mares
279f701ff47SMartin Mares	* lspci.c (show_verbose): "Cache Line Size" should be capitalized.
280f701ff47SMartin Mares
281f701ff47SMartin Mares	* lspci.c (show_pcix_nobridge): Added a missing newline.
282f701ff47SMartin Mares
2832240db8cSMartin Mares	* lib/proc.c (proc_scan): When reading the header type, don't
2842240db8cSMartin Mares	forget to clear the topmost bit indicating that the device has
285f701ff47SMartin Mares	multiple functions.
2862240db8cSMartin Mares
2872240db8cSMartin Mares2003-12-27  Martin Mares  <[email protected]>
2882240db8cSMartin Mares
28945902995SMartin Mares	Updated the FreeBSD port. Thanks to Samy Al Bahra <[email protected]>
29045902995SMartin Mares	for the patches:
29145902995SMartin Mares
29245902995SMartin Mares	* lib/Makefile: Add ${FREEBSD_SYS} to the include path if it's defined.
29345902995SMartin Mares	* lib/fbsd-device.c: Select the right set of system includes according
29445902995SMartin Mares	to __FreeBSD_version.
29545902995SMartin Mares
29645902995SMartin Mares2003-12-27  Martin Mares  <[email protected]>
29745902995SMartin Mares
2988fc75dbcSMartin Mares	Merged support for Solaris on i386 by Bill Moore <[email protected]>
2998fc75dbcSMartin Mares	and cleaned up:
3008fc75dbcSMartin Mares
3018fc75dbcSMartin Mares	* lib/configure: Recognize SunOS.
3028fc75dbcSMartin Mares	* lib/internal.h: Learn how to recognize byte order on SunOS.
3038fc75dbcSMartin Mares	* lib/i386-ports.c: Split OS-dependent I/O port access from i386-ports.c.
3048fc75dbcSMartin Mares	* lib/i386-io-linux.h: Linux specific part.
3058fc75dbcSMartin Mares	* lib/i386-io-hurd.h: GNU/Hurd specific part.
3068fc75dbcSMartin Mares	* lib/i386-io-sunos.h: SunOS specific part.
3078fc75dbcSMartin Mares
3089739916eSMartin Mares2003-12-26  Martin Mares  <[email protected]>
3099739916eSMartin Mares
3109739916eSMartin Mares	* lib/header.h (PCI_*_MASK): Cast to pciaddr_t explicitly.
3119739916eSMartin Mares
3129739916eSMartin Mares	* lib/pci.h: Types declared in <sys/types.h> should be usable on all
3139739916eSMartin Mares	platforms we currently support, so kill the forest of #ifdef's and
3149739916eSMartin Mares	use them in all cases.
3159739916eSMartin Mares
3169739916eSMartin Mares	* lib/pci.h: Use ULONG_MASK to decide whether we should use long
3179739916eSMartin Mares	or long long to represent a 64-bit address. Killed HAVE_LONG_ADDRESS.
3189739916eSMartin Mares	Define format strings for addresses, port numbers and IRQ numbers
3199739916eSMartin Mares	directly in pci.h.
3209739916eSMartin Mares
3219739916eSMartin Mares	* lib/proc.c (proc_scan): Use PCIADDR_T_FMT for scanf'ing addresses.
3229739916eSMartin Mares
32380459c65SMartin Mares2003-12-26  Marco Gerards  <[email protected]>
32480459c65SMartin Mares
32580459c65SMartin Mares	Added support for the GNU Hurd (cleaned up by Martin Mares):
32680459c65SMartin Mares
32780459c65SMartin Mares	* lib/configure [GNU]: Use the i386 ports for configuration access.
32880459c65SMartin Mares	* lib/i386-ports.c: Don't call iopl() on the Hurd.
32980459c65SMartin Mares	* lib/pci.h [OS_GNU]: Include <sys/types.h> and use it for defining
33080459c65SMartin Mares	u8 to u32.
33180459c65SMartin Mares
332a85769a8SMartin Mares2003-12-26  Martin Mares  <[email protected]>
333a85769a8SMartin Mares
3347dacd9c8SMartin Mares	* lspci.c (show_pcix_bridge, show_pcix_nobridge): Don't forget to call
3357dacd9c8SMartin Mares	config_fetch() to ensure that the registers have been read. Thanks to
3367dacd9c8SMartin Mares	Bill Wood <[email protected]> for the patch.
3377dacd9c8SMartin Mares
3387dacd9c8SMartin Mares	* lspci.c: Ensure that failure of config_fetch() is handled correctly
3397dacd9c8SMartin Mares	at all places.
3407dacd9c8SMartin Mares
3414063c31cSMartin Mares	* lspci.man: There was one more explicit reference to /usr/share/pci.ids.
3424063c31cSMartin Mares	Changed to @SHAREDIR@. Patch from Maciej W. Rozycki <[email protected]>.
3434063c31cSMartin Mares
3443fe8a38dSMartin Mares	* setpci.c (main): Better error messages.
3453fe8a38dSMartin Mares
3465f5b1a7bSMartin Mares	* setpci.c (ex_op): The demo mode should disable only writing, not reading.
3475f5b1a7bSMartin Mares
3485f5b1a7bSMartin Mares	* setpci.man: The documentation was inconsistent on what should -D do.
3495f5b1a7bSMartin Mares	Document the new behaviour.
350b251f40bSMartin Mares
35191e37a49SMartin Mares	* pciutils.h, common.c, setpci.c: Introduced a NONRET macro encapsulating
35291e37a49SMartin Mares	the GCC specific __attribute__((noreturn)) and killed the hack with
35391e37a49SMartin Mares	redefining __attribute__ on non-GCC compilers.
35491e37a49SMartin Mares
3554afd29d3SMartin Mares	* Makefile: Added missing dependencies. Parallel builds work now.
3564afd29d3SMartin Mares	Problem reported by Andreas Haumer <[email protected]>, but I chose
3574afd29d3SMartin Mares	a different fix.
3584afd29d3SMartin Mares
359b0f1a03bSMartin Mares	* Makefile (MANDIR): Use `:=' instead of `=' to avoid executing the shell
360b0f1a03bSMartin Mares	command every time $(MANDIR) is referenced.
361b0f1a03bSMartin Mares
362b7fd8e19SMartin Mares	* lspci.c (main): The error message for `lspci -s' incorrectly mentioned
363b7fd8e19SMartin Mares	a `-f' switch. Reported by Steve Finney <[email protected]>.
364b7fd8e19SMartin Mares
36505bb10a2SMartin Mares	* lib/generic.c: Removed memory leak in pci_generic_bus_scan().
36605bb10a2SMartin Mares	Reported by Gary Parnes <[email protected]>.
36705bb10a2SMartin Mares
368a832f6f1SMartin Mares	* Replaced obsolete syntax of __attribute__((unused)) in the middle of
369a832f6f1SMartin Mares	parameter declarations (which is no longer supported by GCC 3.1) by the
370a832f6f1SMartin Mares	current syntax (attribute at the end). Thanks to [email protected]
371a832f6f1SMartin Mares	for reporting this problem.
372a832f6f1SMartin Mares
373a85769a8SMartin Mares	* Removed CVS $Id$ tags from all files.
374a85769a8SMartin Mares
375a85769a8SMartin Mares	* Makefile: Added some more warnings.
376a85769a8SMartin Mares
377b7351143SMartin Mares	* setpci.c: Cleaned up mask/value code.
378b7351143SMartin Mares
379b7351143SMartin Mares2003-12-08 Thayne Harbaugh <[email protected]>
380b7351143SMartin Mares
381b7351143SMartin Mares	* setpci.c: Individual bits to be set can be specified as <value>:<mask>.
382b7351143SMartin Mares
3832a5d5cf9SMartin Mares2003-11-29  Martin Mares  <[email protected]>
3842a5d5cf9SMartin Mares
3852a5d5cf9SMartin Mares	* Imported the pciutils sources to my Arch repository. Good-bye, CVS.
3862a5d5cf9SMartin Mares
387d772ef15SMartin Mares2003-01-04  Martin Mares  <[email protected]>
388d772ef15SMartin Mares
3891b95f396SMartin Mares	* Released as 2.1.11.
3901b95f396SMartin Mares
391c83293ebSMartin Mares	* Makefile: Changed configuration of installation directories --
392c83293ebSMartin Mares	all paths are now set at the top of the Makefile instead of being
393c83293ebSMartin Mares	scattered between the installation rules. The default installation
394c83293ebSMartin Mares	now goes always to /usr/local regardless of the OS as most distributions
395c83293ebSMartin Mares	already contain some version of pciutils and we don't want custom
396c83293ebSMartin Mares	installations to interfere with the default ones.
397c83293ebSMartin Mares
398c83293ebSMartin Mares	* Makefile: Removed a couple of ancient install hacks: we no longer
399c83293ebSMartin Mares	try to avoid overwriting a newer pci.ids file (users are now expected
400c83293ebSMartin Mares	to use update-ids) and we don't try to remove /etc/pci.ids (a long time
401c83293ebSMartin Mares	has passed since the last version which used it).
402c83293ebSMartin Mares
403e2875dcdSMartin Mares	* Makefile: Paths to pci.ids in man pages automatically get the right path.
404e2875dcdSMartin Mares
4051b95f396SMartin Mares	* Added the update-ids utility.
4060138a2a7SMartin Mares
407d772ef15SMartin Mares	* lib: Removed partially implemented "syscall" access method which will
408d772ef15SMartin Mares	probably never be needed.
409d772ef15SMartin Mares
410eb620239SMartin Mares2002-12-27  Martin Mares  <[email protected]>
411eb620239SMartin Mares
412130090bdSMartin Mares	* lib/nbsd-libpci.c: Cleaned up and hopefully made it endian safe.
413130090bdSMartin Mares
414eb620239SMartin Mares	* lib/generic.c (pci_generic_scan_bus): Added work-around for devices with
415eb620239SMartin Mares	discontiguous numbering of functions. This is already present in the Linux
416eb620239SMartin Mares	kernel for several years, but I forgot to update pciutils as well.
417eb620239SMartin Mares
418848b4347SMartin Mares2002-12-26  Martin Mares  <[email protected]>
419848b4347SMartin Mares
420579b19ffSMartin Mares	* lib/header.h, lspci.c: Dump AGP3 flags and speeds.
421579b19ffSMartin Mares
422579b19ffSMartin Mares	* lib/pci.h, Makefile: Removed HAVE_OWN_HEADER_H. Always use our own header,
423579b19ffSMartin Mares	there is no reason to prefer the kernel version.
424579b19ffSMartin Mares
425579b19ffSMartin Mares	* lib/proc.c (proc_scan): Don't forget to initialize hdrtype.
426579b19ffSMartin Mares
427848b4347SMartin Mares	* Added preliminary version of NetBSD support by Quentin Garnier
428848b4347SMartin Mares	<[email protected]>.
429848b4347SMartin Mares
430f0952474SMartin Mares2002-04-06  Martin Mares  <[email protected]>
431f0952474SMartin Mares
432f0952474SMartin Mares	* lspci.c: Mention "-xxx" in the help.
433f0952474SMartin Mares
434d2f666f1SMartin Mares2002-03-30  Martin Mares  <[email protected]>
435d2f666f1SMartin Mares
4369bd44bb0SMartin Mares	* Released as 2.1.10.
4379bd44bb0SMartin Mares
438a33d0eb7SMartin Mares	* Removed pci.ids from the CVS as they are now maintained separately.
439a33d0eb7SMartin Mares	They are still included in the tarball, but if you are building	pciutils
440a33d0eb7SMartin Mares	from CVS sources or you want to get a newer ID file than the one distributed,
441a33d0eb7SMartin Mares	just use "make update-ids" to download the most recent snapshot from
442a33d0eb7SMartin Mares	pciids.sf.net.
443a33d0eb7SMartin Mares
444a33d0eb7SMartin Mares	* Makefile, README: Updated accordingly.
445a33d0eb7SMartin Mares
446a33d0eb7SMartin Mares	* Makefile: Added a couple of maintenance targets.
447a33d0eb7SMartin Mares
448a33d0eb7SMartin Mares	* maint/*: Maintainer's utilities now reside here (present only in CVS,
449a33d0eb7SMartin Mares	not in the tarball).
450a33d0eb7SMartin Mares
451d2f666f1SMartin Mares	* lib/names.c (parse_name_list): End-of-line comments are no longer
452d2f666f1SMartin Mares	supported. Hashes are now perfectly valid in all names and they start
453d2f666f1SMartin Mares	a comment only at the start of the line.
454d2f666f1SMartin Mares
455ee551b73SMartin Mares2002-03-26  Martin Mares  <[email protected]>
456ee551b73SMartin Mares
45707159913SMartin Mares	* README: Rewritten.
45807159913SMartin Mares
459ee551b73SMartin Mares	* Makefile: When the currently installed pci.ids file is newer than
460ee551b73SMartin Mares	the version to be installed, don't overwrite it. Suggested by
461ee551b73SMartin Mares	Jean Delvare <[email protected]>.
462ee551b73SMartin Mares
463bc7b1d62SMartin Mares2002-03-24  Martin Mares  <[email protected]>
464bc7b1d62SMartin Mares
4655f5e6f64SMartin Mares	* lspci.c (show_pcix_bridge): Added PCI-X capability display.
4665f5e6f64SMartin Mares	Contributed by Jeff Garzik <[email protected]>.
4675f5e6f64SMartin Mares
4685f5e6f64SMartin Mares	* lib/header.h: Added PCI-X stuff. Again by Jeff.
4695f5e6f64SMartin Mares
4705f5e6f64SMartin Mares	* Makefile (CFLAGS): -Werror is gone.
4715f5e6f64SMartin Mares
472a1052f16SMartin Mares	* lspci.c (format_agp_rate): Fixed AGP rate reporting.
473a1052f16SMartin Mares
474bc7b1d62SMartin Mares	* lib/filter.c (pci_filter_parse_slot): Allow bus 0xff, slot 0x1f and
475bc7b1d62SMartin Mares	function 7.
476bc7b1d62SMartin Mares
477bc7b1d62SMartin Mares	* lib/names.c (pci_lookup_name): When printing unknown subsystem vendor
478bc7b1d62SMartin Mares	or device hexadecimally, don't confuse it with chip vendor/device ID.
479bc7b1d62SMartin Mares	First reported by Marc Boucher <[email protected]>.
480bc7b1d62SMartin Mares
481f793990cSMartin Mares2001-11-04  Martin Mares  <[email protected]>
482f793990cSMartin Mares
483ee551b73SMartin Mares	* Released as 2.1.9.
484ee551b73SMartin Mares
485f793990cSMartin Mares	* pci.ids: Synced with the PCI ID Repository at SourceForge
486f793990cSMartin Mares	(http://pciids.sourceforge.net/).
487f793990cSMartin Mares
4881d174e56SMartin Mares2000-08-25  Martin Mares  <[email protected]>
4891d174e56SMartin Mares
4901d174e56SMartin Mares	* pci.ids: Updated ID's, synced with kernel 2.4.0-test7.
4911d174e56SMartin Mares
49265b4327eSMartin Mares2000-06-13  Martin Mares  <[email protected]>
49365b4327eSMartin Mares
49465b4327eSMartin Mares	* Makefile (uninstall): Fixed.
49565b4327eSMartin Mares
49665b4327eSMartin Mares	* pci.ids: ID updates.
49765b4327eSMartin Mares
4984a219d5fSMartin Mares2000-05-20  Martin Mares  <[email protected]>
4994a219d5fSMartin Mares
5004a219d5fSMartin Mares	* Released as 2.1.8.
5014a219d5fSMartin Mares
5024a219d5fSMartin Mares	* pci.ids: ID updates.
5034a219d5fSMartin Mares
5044a219d5fSMartin Mares	* lspci.c (show_verbose): Min/max latency is now printed in nanoseconds.
5054a219d5fSMartin Mares
5064a219d5fSMartin Mares2000-05-04  Martin Mares  <[email protected]>
5074a219d5fSMartin Mares
5084a219d5fSMartin Mares	* lspci.c (show_verbose): If the header type doesn't match device
5094a219d5fSMartin Mares	class, just print a warning and still use the header type, assuming
5104a219d5fSMartin Mares	bogus class info.
5114a219d5fSMartin Mares
51210c90662SMartin Mares2000-05-01  Martin Mares  <[email protected]>
51310c90662SMartin Mares
51472b9b690SMartin Mares	* lspci.c (show_pm): Updated according to PCI PM specs 1.1.
51572b9b690SMartin Mares
51610c90662SMartin Mares	* pci.ids: Updated Contemporary Control ARCnet card entries.
51710c90662SMartin Mares
51810c90662SMartin Mares	* pci.ids: Synchronized class list with latest PCI SIG documents.
51910c90662SMartin Mares
520a239ade6SMartin Mares2000-04-29  Martin Mares  <[email protected]>
521a239ade6SMartin Mares
522a239ade6SMartin Mares	* lib/names.c (pci_lookup_name): Fixed the cheat.
523a239ade6SMartin Mares
524a239ade6SMartin Mares	* lib/internal.h: Moved UNUSED/inline hacks above all other declarations.
525a239ade6SMartin Mares
526a239ade6SMartin Mares	* pci.ids: Various ID updates.
527a239ade6SMartin Mares
5282c83b860SMartin Mares2000-04-21  Martin Mares  <[email protected]>
5292c83b860SMartin Mares
5302c83b860SMartin Mares	* Released as 2.1.7.
5312c83b860SMartin Mares
5322c83b860SMartin Mares	* pciutils.spec: Added German description.
5332c83b860SMartin Mares
5342c83b860SMartin Mares	* lib/names.c (pci_lookup_name): Added a cheat for case that subsystem ID's
5352c83b860SMartin Mares	are the same as device ID and just output subsystem name according to
5362c83b860SMartin Mares	device name.
5372c83b860SMartin Mares
5382c83b860SMartin Mares	* lib/proc.c: Use UNUSED instead of __attribute__((unused)).
5392c83b860SMartin Mares
5402c83b860SMartin Mares	* lib/pci.h: Added the correct typedefs for AIX.
5412c83b860SMartin Mares
5422c83b860SMartin Mares	* lib/generic.c (pci_generic_scan_bus): Export.
5432c83b860SMartin Mares
5442c83b860SMartin Mares	* lib/configure: Detect AIX. Use "echo '...\c'" instead of
5452c83b860SMartin Mares	"echo -n" if the shell isn't bash.
5462c83b860SMartin Mares
5472c83b860SMartin Mares	* lspci.c: Avoid using alloca() if not compiled by GCC.
5482c83b860SMartin Mares	(insert_dev): Avoid returning a void value.
5492c83b860SMartin Mares
5502c83b860SMartin Mares	* Makefile: Choose which install utility to use according to
5512c83b860SMartin Mares	OS type. Also use `-o' instead of `-or' in find arguments.
5522c83b860SMartin Mares	Part of the AIX port.
5532c83b860SMartin Mares
5542c83b860SMartin Mares	* lib/aix-device.c: Added AIX low-level interface. Contributed
5552c83b860SMartin Mares	by Dave Johnson <[email protected]>, thanks a lot!
5562c83b860SMartin Mares
5572c83b860SMartin Mares	* pci.ids: Few new ID's.
5582c83b860SMartin Mares
5592c83b860SMartin Mares	* pciutils.h, lib/internal.h: Redefine __attribute__ and inline
5602c83b860SMartin Mares	when not compiled by GCC.
5612c83b860SMartin Mares
562c1a828daSMartin Mares2000-04-17  Martin Mares  <[email protected]>
563c1a828daSMartin Mares
564c1a828daSMartin Mares	* Released as 2.1.6.
565c1a828daSMartin Mares
566c1a828daSMartin Mares	* pci.ids: Added a large batch of ID's contributed by Gunther
567c1a828daSMartin Mares	Mayer <[email protected]> and synced the
568c1a828daSMartin Mares	list with the 2.3.99pre6 kernel.
569c1a828daSMartin Mares
570e91dd3abSMartin MaresThu Mar  9 13:11:39 2000  Martin Mares  <[email protected]>
571e91dd3abSMartin Mares
572a80b79a9SMartin Mares	* lib/example.c: Added a simple example of how to use
573a80b79a9SMartin Mares	the library.
574a80b79a9SMartin Mares
57589984232SMartin Mares	* lspci.man, setpci.man: Revealed --version. Well spotted
57689984232SMartin Mares	by Adam Sulmicki.
57789984232SMartin Mares
578e91dd3abSMartin Mares	* pci.ids: Added lots of new ID's and synced with 2.3.50.
579e91dd3abSMartin Mares
58078d9c5e2SMartin MaresTue Feb 15 00:16:21 2000  Martin Mares  <[email protected]>
58178d9c5e2SMartin Mares
58278d9c5e2SMartin Mares	* Released as 2.1.5.
58378d9c5e2SMartin Mares
58478d9c5e2SMartin Mares	* pciutils.spec: Updated spec file from Andreas Jaeger. Now using
58578d9c5e2SMartin Mares	%{_mandir} to find the right location to install manual pages to.
58678d9c5e2SMartin Mares
58778d9c5e2SMartin Mares	* pci.ids: New ID's.
58878d9c5e2SMartin Mares
58978d9c5e2SMartin Mares	* setpci.c (main): Don't crash when `-s' or `-d' is given with
59078d9c5e2SMartin Mares	no argument.
59178d9c5e2SMartin Mares
592f8141ae2SMartin MaresMon Jan 24 20:04:11 2000  Andreas Jaeger  <[email protected]>
593f8141ae2SMartin Mares
594f8141ae2SMartin Mares	* lib/i386-ports.c: Include <asm/io.h> only on systems without
595f8141ae2SMartin Mares	glibc.
596f8141ae2SMartin Mares
597f8141ae2SMartin MaresMon Jan 24 11:24:43 2000  Martin Mares  <[email protected]>
598f8141ae2SMartin Mares
599f8141ae2SMartin Mares	* Makefile: Modified to work with the Linux FHS brain-damaged idea
600f8141ae2SMartin Mares	of putting man pages to /usr/share/man. Now we choose either /usr/man
601f8141ae2SMartin Mares	or /usr/share/man depending on which one exists.
602f8141ae2SMartin Mares
60359e76e8bSMartin MaresSun Jan 23 10:52:34 2000  Martin Mares  <[email protected]>
60459e76e8bSMartin Mares
60559e76e8bSMartin Mares	* pci.ids: Synced with Linux 2.3.40.
60659e76e8bSMartin Mares
60759e76e8bSMartin Mares	* Released as version 2.1.4.
60859e76e8bSMartin Mares
6092dfd48cdSMartin MaresThu Jan 20 11:08:32 2000  Martin Mares  <[email protected]>
6102dfd48cdSMartin Mares
6112715403fSMartin Mares	* lspci.c (scan_device): Fixed bug in reading of cardbus extensions.
6122715403fSMartin Mares
61381077814SMartin Mares	* lib/proc.c: pread/pwrite fixed again, this time on libc5 :(
61481077814SMartin Mares
61581077814SMartin Mares	* lspci.c (format_agp_rate): Better formatting of AGP rates.
61681077814SMartin Mares
61781077814SMartin Mares	* pci.ids: New ID's.
61881077814SMartin Mares
6192dfd48cdSMartin Mares	* lib/configure: Added configuration for ia64 (the same as for Alpha).
6202dfd48cdSMartin Mares	Patch from Stephane Eranian <[email protected]>.
6212dfd48cdSMartin Mares
6225a258860SMartin MaresThu Jan 13 23:01:52 2000  Martin Mares  <[email protected]>
6235a258860SMartin Mares
6245a258860SMartin Mares	* Released as version 2.1.3.
6255a258860SMartin Mares
6265a258860SMartin Mares	* pci.ids: New ID's.
6275a258860SMartin Mares
6285a258860SMartin Mares	* lspci.c: Alpha IO_FORMAT fix by Andrea Arcangeli.
6295a258860SMartin Mares
6305a258860SMartin Mares	* lib/access.c: Corrected order of access methods -- it's wonderful how
6315a258860SMartin Mares	long could such a bug remain unspotted. Thanks go to Andreas Schockenhoff.
6325a258860SMartin Mares
6330c047bbeSMartin MaresSat Dec 11 23:34:48 1999  Martin Mares  <[email protected]>
6340c047bbeSMartin Mares
6350c047bbeSMartin Mares	* Released as version 2.1.2.
6360c047bbeSMartin Mares
6370c047bbeSMartin Mares	* lib/names.c (pci_lookup_name): Fixed printing of unknown subsystem ID's.
6380c047bbeSMartin Mares
63933bc28a5SMartin MaresSat Dec  4 13:11:03 1999  Martin Mares  <[email protected]>
64033bc28a5SMartin Mares
64139231205SMartin Mares	* Released as version 2.1.1.
64239231205SMartin Mares
64333bc28a5SMartin Mares	* pci.ids: Several new ID's.
64433bc28a5SMartin Mares
64533bc28a5SMartin Mares	* setpci.c (exec_op): Don't forget to increment address after writing
64633bc28a5SMartin Mares	single value, so that `30.b=12,34,56,78' works as expected. Reported
64733bc28a5SMartin Mares	by Petr Soucek <[email protected]>.
64833bc28a5SMartin Mares
6498d047897SMartin MaresWed Nov  3 10:24:38 1999  Martin Mares  <[email protected]>
6508d047897SMartin Mares
6518d047897SMartin Mares	* lspci.c (show_terse): If prog-if is zero, but it's present in the
6528d047897SMartin Mares	ID list, show it.
6538d047897SMartin Mares
6546afc6538SMartin MaresSat Oct 30 11:06:35 1999  Martin Mares  <[email protected]>
6556afc6538SMartin Mares
6566afc6538SMartin Mares	* Released as version 2.1.
6576afc6538SMartin Mares
6586afc6538SMartin Mares	* pci.ids: Synced to devlist.h in 2.3.24 kernel. Merged in
6596afc6538SMartin Mares	lots of contributed entries.
6606afc6538SMartin Mares
6618f756113SMartin MaresThu Oct 14 10:40:12 1999  Dave Jones    <[email protected]>
6628f756113SMartin Mares
6638f756113SMartin Mares	* pci.ids: Added lots of subsystem definitions.
6648f756113SMartin Mares
665d4798a32SMartin MaresSat Oct  9 14:32:28 1999  Martin Mares  <[email protected]>
666d4798a32SMartin Mares
667d4798a32SMartin Mares	* setpci.man: Better example.
668d4798a32SMartin Mares
669d4798a32SMartin Mares	* lspci.c: Resolve prog-if names.
670d4798a32SMartin Mares
671d4798a32SMartin Mares	* lib/names.c: Adapted to new pci.ids syntax.
672d4798a32SMartin Mares
673d4798a32SMartin Mares	* pci.ids: Reorganized the pci.ids file. Subsystems are listed
674d4798a32SMartin Mares	under devices, classes can optionally contain prog-if information.
675d4798a32SMartin Mares	New ID's, as usually.
676d4798a32SMartin Mares
677e306e911SMartin MaresWed Sep 22 09:45:24 1999  Martin Mares  <[email protected]>
678e306e911SMartin Mares
679e306e911SMartin Mares	* pci.ids: New ID's. As usually.
680e306e911SMartin Mares
681e306e911SMartin Mares	* lspci.c (show_htype1, show_htype2): Don't show `closed' bridge windows
682e306e911SMartin Mares	unless we're vvvery verbose.
683e306e911SMartin Mares
684e306e911SMartin MaresMon Sep 20 11:22:54 1999  Martin Mares  <[email protected]>
685e306e911SMartin Mares
686e306e911SMartin Mares	* lspci.c (show_htype2): Don't forget a TAB before the "I/O window" line.
687e306e911SMartin Mares
688e64a576cSMartin MaresTue Sep 14 09:31:01 1999  Martin Mares  <[email protected]>
689e64a576cSMartin Mares
690e64a576cSMartin Mares	* pci.ids: New ID's. Again.
691e64a576cSMartin Mares
692c36c0862SMartin MaresThu Aug  5 17:45:42 1999  Martin Mares  <[email protected]>
693c36c0862SMartin Mares
694c36c0862SMartin Mares	* lspci.c (show_size): Don't show size if it's zero (usually
695c36c0862SMartin Mares	due to bus-centric mode being enabled).
696c36c0862SMartin Mares
6971ca42433SMartin MaresTue Jul 20 13:25:09 1999  Martin Mares  <[email protected]>
6981ca42433SMartin Mares
699168b4f46SMartin Mares	* lib/pci.h: Types are OS dependent.
700168b4f46SMartin Mares
701168b4f46SMartin Mares	* lib/internal.h: Byte order hacks are OS dependent.
702168b4f46SMartin Mares
703168b4f46SMartin Mares	* lib/configure: Recognize FreeBSD. Also set OS_XXX according to the OS.
704168b4f46SMartin Mares
705168b4f46SMartin Mares	* lib/Makefile, lib/access.c: Added fbsd-device target.
706168b4f46SMartin Mares
707168b4f46SMartin Mares	* pci.ids: Added an entry for PLX 9080 bridges with subsystem ID
708168b4f46SMartin Mares	incorrectly set to device ID.
709168b4f46SMartin Mares
710168b4f46SMartin Mares	* README: Added a note that we support FreeBSD.
711168b4f46SMartin Mares
712168b4f46SMartin Mares	* Makefile (PREFIX, ROOT): Set it depending on the OS.
713168b4f46SMartin Mares	(%.8): Grrr, BSD date is not able to convert date formats the same way
714168b4f46SMartin Mares	as GNU date does. Use sed instead.
715168b4f46SMartin Mares	(install): Use `-c' when calling install.
716168b4f46SMartin Mares
717168b4f46SMartin Mares	* lib/fbsd-device.c: Added FreeBSD /dev/pci access module contributed
718168b4f46SMartin Mares	by Jari Kirma <[email protected]>.
719168b4f46SMartin Mares
720bc6346dfSMartin Mares	* lib/proc.c: Rewrote the pread/pwrite things once again. Use pread
721bc6346dfSMartin Mares	and pwrite only when we are certain it's safe (i.e., glibc 2.1
722bc6346dfSMartin Mares	on all architectures or any libc on a i386 where we really know
723bc6346dfSMartin Mares	how to use syscalls directly). In all other cases, emulate it
724bc6346dfSMartin Mares	with lseek/read/write.
725bc6346dfSMartin Mares
7261ca42433SMartin Mares	* pci.ids: Some more IDs.
7271ca42433SMartin Mares
7281ca42433SMartin MaresMon Jul 19 14:10:36 1999  Martin Mares  <[email protected]>
7291ca42433SMartin Mares
7301ca42433SMartin Mares	* pci.ids: Added IDs of parallel port controller cards as sent
7311ca42433SMartin Mares	by Tim Waugh <[email protected]>.
7321ca42433SMartin Mares
733e95c8373SMartin MaresWed Jul  7 00:55:48 1999  Martin Mares  <[email protected]>
734e95c8373SMartin Mares
735e95c8373SMartin Mares	* lib/proc.c (proc_scan): HAVE_LONG_ADDRESS instead of HAVE_64BIT_ADDRESS.
736e95c8373SMartin Mares
737e95c8373SMartin Mares	* lspci.c: ADDR_FORMAT now depends on both HAVE_64BIT_ADDRESS and
738e95c8373SMartin Mares	HAVE_LONG_ADDRESS.
739e95c8373SMartin Mares
740e95c8373SMartin Mares	* lib/configure: HAVE_64BIT_ADDRESS now doesn't imply that the addresses
741e95c8373SMartin Mares	are represented as long long. Introduced a new flag HAVE_LONG_ADDRESS
742e95c8373SMartin Mares	to indicate this. Both Sparc architectures now use both 64BIT_ADDRESS
743e95c8373SMartin Mares	and LONG_ADDRESS since they have 32-bit userland, but don't set LONG_ADDRESS
744e95c8373SMartin Mares	on Alpha.
745e95c8373SMartin Mares
746e95c8373SMartin Mares	* lspci.c (show_msi): Added dumping of the MSI capability.
747e95c8373SMartin Mares	(show_slotid): The same for SlotID capability.
748e95c8373SMartin Mares	(show_caps): Seperated capability dumping, because it should
749e95c8373SMartin Mares	be used for both htype0 and htype1. Even PCI 2.2 doesn't mention
750e95c8373SMartin Mares	layout of htype2, so I'm a bit unsure about it wrt capabilities
751e95c8373SMartin Mares	-- they at least have to live somewhere else since address 0x34
752e95c8373SMartin Mares	is already defined differently in htype2.
753e95c8373SMartin Mares
754e95c8373SMartin Mares	* lib/header.h (PCI_STATUS_UDF): Marked as obsolete (PCI 2.2).
755e95c8373SMartin Mares	(PCI_BASE_ADDRESS_MEM_TYPE_1M): Ditto.
756e95c8373SMartin Mares	(PCI_CAP_ID_*): Added some new capabilities defined in PCI 2.2.
757e95c8373SMartin Mares
758e95c8373SMartin Mares	* lspci.c (show_htype0): Mask out lowest 2 bits from all capability pointers
759e95c8373SMartin Mares	(required by the PCI 2.2 specs).
760e95c8373SMartin Mares
761e95c8373SMartin MaresMon Jul  5 12:45:19 1999  Martin Mares  <[email protected]>
762e95c8373SMartin Mares
763e95c8373SMartin Mares	* lspci.c (show_size): Added new function for dumping of region sizes.
764e95c8373SMartin Mares	(show_rom): Added. Now correctly dumps unassigned ROM addresses, disabled
765e95c8373SMartin Mares	ROMs et cetera.
766e95c8373SMartin Mares
767e95c8373SMartin Mares	* lib/pci.h (struct pci_dev): known_fields moved to the public part
768e95c8373SMartin Mares	of the structure.
769e95c8373SMartin Mares
770e95c8373SMartin Mares	* Added support for region sizes. Needs support in the kernel, because
771e95c8373SMartin Mares	sizes have to be scanned before drivers initialize yourself. pci_fill_info()
772e95c8373SMartin Mares	now returns a bitmask of what fields were really read.
773e95c8373SMartin Mares
77482ce97c9SMartin MaresMon Jun 28 18:37:51 1999  Dave Jones    <[email protected]>
77582ce97c9SMartin Mares
77682ce97c9SMartin Mares	* Makefile:
77782ce97c9SMartin Mares	  Added `uninstall' target - removes all traces of pciutils.
77882ce97c9SMartin Mares	* pci.ids:
77982ce97c9SMartin Mares	  - Lots of cleanups in the ATI, S3, Adaptec vendors.
78082ce97c9SMartin Mares	  - Changed Compaq QVision 1280/p definitions, as it's not possible
78182ce97c9SMartin Mares	    to determine the revision from the device ID.
78282ce97c9SMartin Mares	  - Same for the Tseng ET4000.
78382ce97c9SMartin Mares	    The id's said I had a rev C, when it was actually a rev B.
78482ce97c9SMartin Mares	  - Removed some unnecessary strings
78582ce97c9SMartin Mares	    `PCI'. Unless it's an AGP card, it should be obvious that it's PCI.
78682ce97c9SMartin Mares	    `Ethernet card'. This should be determined from config space.
78782ce97c9SMartin Mares	  - Lots of other new vendors & devices
78882ce97c9SMartin Mares	  - Other additional small cleanups.
78982ce97c9SMartin Mares
7907bed2d83SMartin MaresMon Jun 21 22:11:10 1999  Martin Mares  <[email protected]>
7917bed2d83SMartin Mares
7927bed2d83SMartin Mares	* lib/names.c (pci_lookup_name): When device ID lookup
7937bed2d83SMartin Mares	fails, return hexadecimal device ID instead of vendor ID.
7947bed2d83SMartin Mares	Well spotted by Axel Bodemann <[email protected]>,
7957bed2d83SMartin Mares	I've just extended the fix to subsystem ID's.
7967bed2d83SMartin Mares
7975ba3a475SMartin MaresThu Jun 17 19:48:21 1999  Martin Mares  <[email protected]>
7985ba3a475SMartin Mares
7995ba3a475SMartin Mares	* lspci.c (show_agp): Bug fix from Petr Vandrovec
8005ba3a475SMartin Mares	<[email protected]>. The command register was displayed
8015ba3a475SMartin Mares	incorrectly.
8025ba3a475SMartin Mares
8035ba3a475SMartin MaresWed Jun  2 22:42:44 1999  Martin Mares  <[email protected]>
8045ba3a475SMartin Mares
8055ba3a475SMartin Mares	* lib/proc.c (SYS_pread, SYS_pwrite): Use hard-coded
8065ba3a475SMartin Mares	numbers if not supplied by the libc.
8075ba3a475SMartin Mares
80855c815b5SMartin MaresWed May 19 13:24:39 1999  Martin Mares  <[email protected]>
80955c815b5SMartin Mares
81055c815b5SMartin Mares	* Released the whole package as version 2.0.
81155c815b5SMartin Mares
81255c815b5SMartin MaresFri May 14 22:42:02 1999  Martin Mares  <[email protected]>
81355c815b5SMartin Mares
81455c815b5SMartin Mares	* pci.ids: Added several new ID's contributed by people
81555c815b5SMartin Mares	on the linux-pci list.
81655c815b5SMartin Mares
817dec16943SMartin MaresMon Apr 19 15:21:08 1999  Jakub Jelinek  <[email protected]>
818dec16943SMartin Mares
819dec16943SMartin Mares	* lspci.c: Display I/O addresses correctly on sparc64.
820dec16943SMartin Mares	* lib/header.h: Ditto.
821dec16943SMartin Mares
822dec16943SMartin Mares	* lib/configure: On sparc set HAVE_64BIT* as well, we want
823dec16943SMartin Mares	a binary which works on both 32bit and 64bit SPARCs.
824dec16943SMartin Mares
825e33c9c7aSMartin MaresSun Apr 18 21:14:58 1999  Martin Mares  <[email protected]>
826e33c9c7aSMartin Mares
827e33c9c7aSMartin Mares	* lspci.c, lib/proc.c: Alpha compilation fixes from Matthew Jacob
828e33c9c7aSMartin Mares	<[email protected]>.
829e33c9c7aSMartin Mares
830e33c9c7aSMartin Mares	* pci.ids: A lot of updates from Adam J. Richter <[email protected]>.
831e33c9c7aSMartin Mares
832f3395cc5SMartin MaresSun Feb 28 22:26:21 1999  Martin Mares  <[email protected]>
833f3395cc5SMartin Mares
834f3395cc5SMartin Mares	* lspci.c (do_map_bus): Don't dump functions 1--7 if not flagged
835f3395cc5SMartin Mares	as a multi-function device, because several single-function devices
836f3395cc5SMartin Mares	don't decode the function bits at all.
837f3395cc5SMartin Mares
838f3395cc5SMartin MaresSun Feb 14 23:48:22 1999  Martin Mares  <[email protected]>
839f3395cc5SMartin Mares
840f3395cc5SMartin Mares	* Makefile (install): Don't use "-o root -g root" for installation
841f3395cc5SMartin Mares	since it breaks on machines where programs are not installed by root.
842f3395cc5SMartin Mares	Reported by Richard Gooch <[email protected]>
843f3395cc5SMartin Mares
844f3395cc5SMartin MaresTue Feb  9 15:54:39 1999  Martin Mares  <[email protected]>
845f3395cc5SMartin Mares
846f3395cc5SMartin Mares	* lspci.c (show_bases): Use new address masking macros and pciaddr_t.
847f3395cc5SMartin Mares
848f3395cc5SMartin Mares	* lib/pci.h: Using pciaddr_t for bus addresses, which are 32-bit
849f3395cc5SMartin Mares	or 64-bit depending on CPU.
850f3395cc5SMartin Mares
851f3395cc5SMartin Mares	* lib/pci.h (PCI_ADDR_MEM_MASK): Added macros for address masks
852f3395cc5SMartin Mares	according to bus address width.
853f3395cc5SMartin Mares
8541c31d620SMartin MaresThu Jan 28 20:54:16 1999  Martin Mares  <[email protected]>
8551c31d620SMartin Mares
8561c31d620SMartin Mares	* Released as 1.99.4.
8571c31d620SMartin Mares
8581c31d620SMartin Mares	* lspci.c: Capability list parser now recognizes both AGP
8591c31d620SMartin Mares	registers and PCI Power Management registers (the latter
8601c31d620SMartin Mares	is mainly guesswork based on DEC/Intel 21153 bridge specs
8611c31d620SMartin Mares	since I don't have the PCI Power Management document).
8621c31d620SMartin Mares
8631c31d620SMartin Mares	* lspci.c: Replaced numerous occurences of (x & flag) ? '+' : '-'
8641c31d620SMartin Mares	by FLAG macro.
8651c31d620SMartin Mares
8661c31d620SMartin Mares	* lspci.c: Added bridge checks to bus mapping code.
8671c31d620SMartin Mares
8681812a795SMartin MaresWed Jan 27 14:59:16 1999  Martin Mares  <[email protected]>
8691812a795SMartin Mares
8701812a795SMartin Mares	* lspci.c: Implemented bus mapping mode (-M).
8711812a795SMartin Mares
8721812a795SMartin Mares	* lspci.c (scan_devices): Split to scan_devices() and scan_device().
8731812a795SMartin Mares	(show): Split to show() and show_device().
8741812a795SMartin Mares
8751812a795SMartin Mares	* lib/access.c (pci_init): When a->method == PCI_ACCESS_AUTO,
8761812a795SMartin Mares	set it to the real access method afterwards.
8771812a795SMartin Mares
8781812a795SMartin MaresMon Jan 25 23:46:13 1999  Martin Mares  <[email protected]>
8791812a795SMartin Mares
8801812a795SMartin Mares	* lib/generic.c (pci_generic_fill_info): If in buscentric mode,
8811812a795SMartin Mares	don't check PCI_COMMAND for I/O and memory enables.
8821812a795SMartin Mares
883f6c86928SMartin MaresMon Jan 25 21:28:49 1999  Martin Mares  <[email protected]>
884f6c86928SMartin Mares
885f6c86928SMartin Mares	* Makefile: Added target `release' which substitutes new version
886f6c86928SMartin Mares	number to .spec, .lsm and README. Also rewrote target `dist'.
887f6c86928SMartin Mares
888f6c86928SMartin Mares	* Released as 1.99.3.
889f6c86928SMartin Mares
890b5137411SMartin MaresSun Jan 24 22:10:36 1999  Martin Mares  <[email protected]>
891b5137411SMartin Mares
892d6b297d0SMartin Mares	* lib/header.h: Until kernel adopts new layout of PCI
893d6b297d0SMartin Mares	includes (i.e., separate declaration of header structure,
894d6b297d0SMartin Mares	functions and device IDs), which is not going to happen
895d6b297d0SMartin Mares	before 2.3, we'll use our own definiton of the header.
896d6b297d0SMartin Mares
897b5137411SMartin Mares	* lspci.c (show_verbose): Display `Cap' flag in device status.
898b5137411SMartin Mares
899b5137411SMartin Mares	* lspci.c (show_htype0): Display capability lists whereever
900b5137411SMartin Mares	available. The only capability name we recognize now is `AGP'.
901b5137411SMartin Mares	Unfortunately, capabilities are stored in device-dependent
902b5137411SMartin Mares	portion of the configuration space and are thus available
903b5137411SMartin Mares	only to root unless you read a dump.
904b5137411SMartin Mares
905b5137411SMartin Mares	* lspci.c (scan_devices): Use cache instead of buffering.
906b5137411SMartin Mares
907b5137411SMartin Mares	* lib/buffer.c: Removed (obsoleted by the cache).
908b5137411SMartin Mares
909b5137411SMartin Mares	* lib/access.c: Added general caching mechanism.
910b5137411SMartin Mares
91181ce358dSMartin MaresSat Jan 23 21:30:54 1999  Martin Mares  <[email protected]>
91281ce358dSMartin Mares
91381ce358dSMartin Mares	* pci.ids: Added few devices.
91481ce358dSMartin Mares
915727ce158SMartin MaresFri Jan 22 19:29:31 1999  Martin Mares  <[email protected]>
916727ce158SMartin Mares
917727ce158SMartin Mares	* Version string is now defined in top-level Makefile, exported
918727ce158SMartin Mares	to the configure script and also substituted to man pages.
919727ce158SMartin Mares
920727ce158SMartin Mares	* lspci.c (show_bases): Rewrote displaying of 64-bit addresses.
921727ce158SMartin Mares	(show_verbose): Rewrote interrupt display logic.
922727ce158SMartin Mares
923727ce158SMartin Mares	* lib/i386-ports.c: Include sys/io.h only on glibc systems.
924727ce158SMartin Mares
925727ce158SMartin Mares	* lib/configure: Rewrote detection of Linux versions. Now it
926727ce158SMartin Mares	works on 2.0 kernels (only with direct/dump access, of course).
927727ce158SMartin Mares
928727ce158SMartin Mares	* lib/internal.h: New bytesex macros using <asm/byteorder.h>
929727ce158SMartin Mares	whenever available.
930727ce158SMartin Mares
931727ce158SMartin Mares	* lib/proc.c (proc_read, proc_write): Distinguish between short
932727ce158SMartin Mares	read/write and real errors.
933727ce158SMartin Mares
934727ce158SMartin Mares	* lspci.c (show_htype{0,1}): Always use d->dev->rom_base_addr since
935727ce158SMartin Mares	libpci respects buscentric mode automatically.
936727ce158SMartin Mares
937727ce158SMartin Mares	* lspci.c (show_hex_dump): For CardBus bridges, print out 128
938727ce158SMartin Mares	bytes of header (the whole standard part).
939727ce158SMartin Mares
940727ce158SMartin Mares	* common.c: pcilib options are now all uppercase. Also moved
941727ce158SMartin Mares	PCI access debugging option here.
942727ce158SMartin Mares
943727ce158SMartin Mares	* Released as 1.99.2.
944727ce158SMartin Mares
945727ce158SMartin MaresWed Jan 20 22:50:35 1999  Martin Mares  <[email protected]>
946727ce158SMartin Mares
947727ce158SMartin Mares	* Wrote configure script and rewrote Makefiles.
948727ce158SMartin Mares
949727ce158SMartin Mares	* Removed few unused variables.
950727ce158SMartin Mares
951727ce158SMartin MaresWed Jan 20 12:21:56 1999  Martin Mares  <[email protected]>
952727ce158SMartin Mares
953727ce158SMartin Mares	* common.c: Moved several functions used in both setpci and lspci
954727ce158SMartin Mares	here. This includes parsing of libpci-related options.
955727ce158SMartin Mares
956727ce158SMartin Mares	* More library tweaks.
957727ce158SMartin Mares
958727ce158SMartin Mares	* filter.c, names.c: Moved to library.
959727ce158SMartin Mares
960727ce158SMartin Mares	* setpci: Rewritten to use the library.
961727ce158SMartin Mares
962727ce158SMartin Mares	* Released as 1.99.1.
963727ce158SMartin Mares
964727ce158SMartin MaresTue Jan 19 23:00:12 1999  Martin Mares  <[email protected]>
965727ce158SMartin Mares
966727ce158SMartin Mares	* lspci.c (scan_devices): For cardbus bridges, read first 128
967727ce158SMartin Mares	bytes of config space to get full standard header.
968727ce158SMartin Mares
969727ce158SMartin Mares	* Makefile (CFLAGS): Removed "-Wno-unused".
970727ce158SMartin Mares
971727ce158SMartin Mares	* Started the "New Generation" branch and introduced the
972727ce158SMartin Mares	PCI library.
973727ce158SMartin Mares
974727ce158SMartin Mares	* lspci: Rewritten to use the library.
975727ce158SMartin Mares
9766ece6bc6SMartin MaresTue Jan 19 22:24:08 1999  Martin Mares  <[email protected]>
9776ece6bc6SMartin Mares
9786ece6bc6SMartin Mares	* Released as version 1.10.
9796ece6bc6SMartin Mares
9806ece6bc6SMartin MaresMon Jan 18 08:51:17 1999  Martin Mares  <[email protected]>
9816ece6bc6SMartin Mares
9826ece6bc6SMartin Mares	* lspci.8, setpci.8: Miscellaneous fixes as suggested by
9836ece6bc6SMartin Mares	Dag Wieers <[email protected]>.
9846ece6bc6SMartin Mares
9851212dd6dSMartin MaresSun Nov 29 20:05:56 1998  Martin Mares  <[email protected]>
9861212dd6dSMartin Mares
9871212dd6dSMartin Mares	* pciutils.spec (Name): Update from Krzysztof G. Baranowski.
9881212dd6dSMartin Mares
989d38471fdSMartin MaresSun Nov 22 10:49:56 1998  Martin Mares  <[email protected]>
990d38471fdSMartin Mares
991d38471fdSMartin Mares	* Makefile, pciutils.h: Moved pci.ids to /usr/share.
992d38471fdSMartin Mares
993d38471fdSMartin Mares	* Released as version 1.09.
994d38471fdSMartin Mares
995371f605bSMartin MaresWed Nov 18 15:47:05 1998  Martin Mares  <[email protected]>
996371f605bSMartin Mares
997371f605bSMartin Mares	* lspci.c (show_htype1): Fixed displaying of prefetchable memory behind
998371f605bSMartin Mares	bridge. Thanks to Petr Vandrovec <[email protected]> for bug report.
999371f605bSMartin Mares
100010be47abSMartin MaresFri Oct 23 18:59:19 1998  Martin Mares  <[email protected]>
100110be47abSMartin Mares
100210be47abSMartin Mares	* setpci.c: Don't include <syscall-list.h> with glibc >= 2.1.
100310be47abSMartin Mares
1004472bd340SMartin MaresMon Oct 19 21:53:30 1998  Martin Mares  <[email protected]>
1005472bd340SMartin Mares
1006472bd340SMartin Mares	* Released as version 1.08.
1007472bd340SMartin Mares
1008472bd340SMartin Mares	* setpci.c: glibc 2.1.x already defines pread() and pwrite().
1009472bd340SMartin Mares
1010472bd340SMartin Mares	* lspci.8: Changed warning about lspci -xxx.
1011472bd340SMartin Mares
1012472bd340SMartin Mares	* lspci.c: Require "-xxx" for full configuration space dump, so that
1013472bd340SMartin Mares	it's impossible to crash the machine by single typo.
1014472bd340SMartin Mares
1015472bd340SMartin Mares	* specs: Added (courtesy of Krzysztof G. Baranowski <[email protected]>).
1016472bd340SMartin Mares
1017072c77e5SMartin MaresWed Sep  9 12:03:24 1998  Martin Mares  <[email protected]>
1018072c77e5SMartin Mares
1019072c77e5SMartin Mares	* lspci.c (show_bases): Better displaying of unassigned and
1020072c77e5SMartin Mares	disabled bases. Thanks to Gabriel Paubert <[email protected]>
1021072c77e5SMartin Mares	for an idea.
1022072c77e5SMartin Mares
1023b7554856SMartin MaresWed Sep  2 10:58:01 1998  Martin Mares  <[email protected]>
1024b7554856SMartin Mares
1025b7554856SMartin Mares	* setpci.c (pread): Recognize glibc 1.99 numbered as 2.0 on the PPC.
1026b7554856SMartin Mares	(thanks to Geert Uytterhoeven for finding this out)
1027b7554856SMartin Mares
1028ce503b7fSMartin MaresFri Jul 17 10:43:30 1998  Martin Mares  <[email protected]>
1029ce503b7fSMartin Mares
1030ce503b7fSMartin Mares	* lspci.c (show_verbose): Print subsystem ID using the new resolver.
1031ce503b7fSMartin Mares	(show_machine): Print subsystem ID.
1032ce503b7fSMartin Mares
1033ce503b7fSMartin Mares	* names.c: New name resolution engine supporting subsystem IDs.
1034ce503b7fSMartin Mares
1035ce503b7fSMartin Mares	* Released as version 1.07.
1036ce503b7fSMartin Mares
103796e4f295SMartin MaresWed Jul 15 15:37:21 1998  Martin Mares  <[email protected]>
103896e4f295SMartin Mares
103996e4f295SMartin Mares	* lspci.c (show_htype2 etc.): Displaying of CardBus headers.
104096e4f295SMartin Mares	(show_bases): Honor the `cnt' argument.
104196e4f295SMartin Mares	(grow_tree): Parse CardBus headers in tree mode as well.
104296e4f295SMartin Mares
104396e4f295SMartin Mares	* pci.h: Updated CardBus header field description. I still don't
104496e4f295SMartin Mares	have the CardBus standard available, but OZ6832 specs contain
104596e4f295SMartin Mares	full description of all header fields supported by the chip.
104696e4f295SMartin Mares
10476ae3650aSMartin MaresTue Jun  9 22:53:59 1998  Martin Mares  <[email protected]>
10486ae3650aSMartin Mares
1049304f9a0bSMartin Mares	* Released as 1.06.
1050304f9a0bSMartin Mares
10516ae3650aSMartin Mares	* names.c (parse_name_list): Killed an unused variable.
10526ae3650aSMartin Mares
10536ae3650aSMartin Mares	* setpci.c (pread, pwrite): Define SYS_(pread|pwrite) as __NR_\1
10546ae3650aSMartin Mares	if they are not defined by glibc (needed for glibc built on older
10556ae3650aSMartin Mares	kernels). Ugly.
10566ae3650aSMartin Mares
10576ae3650aSMartin Mares	* setpci.c (exec_op): Fixed error messages. Thanks, Steve!
10586ae3650aSMartin Mares
10594b88a6b8SMartin MaresMon Jun  8 10:59:22 1998  Martin Mares  <[email protected]>
10604b88a6b8SMartin Mares
10614b88a6b8SMartin Mares	* Released as 1.05.
10624b88a6b8SMartin Mares
10634b88a6b8SMartin Mares	* setpci.c: Problems with pread()/pwrite() with glibc on Alpha
10644b88a6b8SMartin Mares	should be gone. Again thanks to Steve for bug report.
10654b88a6b8SMartin Mares
10664b88a6b8SMartin Mares	* filter.c (filter_parse_slot): Fixed ":x" type filters.
10674b88a6b8SMartin Mares
10684b88a6b8SMartin Mares	* pci.ids: Killed duplicate entry. Thanks to Stephen Williams
10694b88a6b8SMartin Mares	<[email protected]> for reporting this.
10704b88a6b8SMartin Mares
10714b88a6b8SMartin MaresSun Jun  7 19:27:51 1998  Martin Mares  <[email protected]>
10724b88a6b8SMartin Mares
10734b88a6b8SMartin Mares	* lspci.c (main), setpci.c (main): Implemented "--version".
10744b88a6b8SMartin Mares
10754b88a6b8SMartin Mares	* Released as 1.04.
10764b88a6b8SMartin Mares
10774b88a6b8SMartin Mares	* pciutils.h (PCIUTILS_VERSION): Added version string.
10784b88a6b8SMartin Mares
10794b88a6b8SMartin Mares	* filter.c, names.c: Extraneous #include <linux/pci.h> removed.
10804b88a6b8SMartin Mares	Thanks to Geert Uytterhoeven <[email protected]>
10814b88a6b8SMartin Mares	for bug report.
10824b88a6b8SMartin Mares
10839b306998SMartin MaresThu May 28 14:45:58 1998  Martin Mares  <[email protected]>
10849b306998SMartin Mares
10859b306998SMartin Mares	* pci.ids: More updates from Jens Maurer.
10869b306998SMartin Mares
1087b372672fSMartin MaresWed Apr 22 10:00:39 1998  Martin Mares  <[email protected]>
1088b372672fSMartin Mares
1089b372672fSMartin Mares	* pci.ids: Updates from Jens Maurer.
1090b372672fSMartin Mares
1091b2c9b373SMartin MaresSun Apr 19 11:14:25 1998  Martin Mares  <[email protected]>
1092b2c9b373SMartin Mares
1093b372672fSMartin Mares	* Released as 1.03.
1094b372672fSMartin Mares
1095b2c9b373SMartin Mares	* setpci.8: Written.
1096b2c9b373SMartin Mares
1097b2c9b373SMartin Mares	* setpci.c: Finished.
1098b2c9b373SMartin Mares
1099b2c9b373SMartin Mares	* lspci.c: Now able to fetch expansion ROM base from kernel device list
1100b2c9b373SMartin Mares	and print it if not in buscentric mode.
1101b2c9b373SMartin Mares
1102e4842ff3SMartin MaresTue Mar 31 23:11:57 1998  Martin Mares  <[email protected]>
1103e4842ff3SMartin Mares
1104e4842ff3SMartin Mares	* setpci.c: Added.
1105e4842ff3SMartin Mares
1106e4842ff3SMartin MaresSun Mar 22 15:39:08 1998  Martin Mares  <[email protected]>
1107e4842ff3SMartin Mares
1108e4842ff3SMartin Mares	* lspci.8: Updated the documentation.
1109e4842ff3SMartin Mares
1110e4842ff3SMartin Mares	* lspci.c: Modified to use the new filtering mechanism (options -f and -d).
1111e4842ff3SMartin Mares
1112e4842ff3SMartin Mares	* filter.c: Introduced new generic device filter.
1113e4842ff3SMartin Mares
1114008407bdSMartin MaresThu Mar 19 17:03:48 1998  Martin Mares  <[email protected]>
1115008407bdSMartin Mares
1116008407bdSMartin Mares	* lspci.c (grow_tree, show_tree_dev, print_it): Fixed displaying
1117008407bdSMartin Mares	of PCI-to-PCI bridges in the tree format.
1118008407bdSMartin Mares
11190a33d0ecSMartin MaresSun Feb 15 10:12:25 1998  Martin Mares  <[email protected]>
11200a33d0ecSMartin Mares
11210a33d0ecSMartin Mares	* lspci.c (show_machine): Added non-verbose mode of machine-readable
11220a33d0ecSMartin Mares	dump.
11230a33d0ecSMartin Mares
11240a33d0ecSMartin Mares	* pci.ids: Updates from Jens Maurer.
11250a33d0ecSMartin Mares
11260a33d0ecSMartin Mares	* Released as version 1.02.
11270a33d0ecSMartin Mares
11280a33d0ecSMartin MaresThu Feb 12 16:53:28 1998  Martin Mares  <[email protected]>
11290a33d0ecSMartin Mares
11300a33d0ecSMartin Mares	* lspci.c: Added a "-m" switch for dumping machine-readable
11310a33d0ecSMartin Mares	configuration data (requested by Bjoern Kriews <[email protected]>).
11320a33d0ecSMartin Mares
1133fb38eee8SMartin MaresMon Feb  9 13:17:43 1998  Martin Mares  <[email protected]>
1134fb38eee8SMartin Mares
1135fb38eee8SMartin Mares	* Makefile, pciutils.h: Include local pci.h instead of <linux/pci.h>
1136fb38eee8SMartin Mares	if available. This should avoid all problems with official kernel
1137fb38eee8SMartin Mares	not synchronized to newer PCI code in CVS -- standard distribution
1138fb38eee8SMartin Mares	of pciutils now contains pci.h from current CVS kernel, pciutils
1139fb38eee8SMartin Mares	in CVS contain no pci.h and use the correct kernel include.
1140fb38eee8SMartin Mares
1141fb38eee8SMartin Mares	* Makefile: Fixed installation path for man pages.
1142fb38eee8SMartin Mares
11432f48f637SMartin MaresSat Feb  7 15:15:46 1998  Martin Mares  <[email protected]>
11442f48f637SMartin Mares
11452f48f637SMartin Mares	* README: Updated.
11462f48f637SMartin Mares
11472f48f637SMartin Mares	* lspci.8: Created a man page.
11482f48f637SMartin Mares
11492f48f637SMartin Mares	* Releasing as version 1.0.
11502f48f637SMartin Mares
11512f48f637SMartin MaresTue Feb  3 20:56:00 1998  Martin Mares  <[email protected]>
11522f48f637SMartin Mares
11532f48f637SMartin Mares	* Makefile: Recognize architecture by calling uname and pass it as ARCH_xxx
11542f48f637SMartin Mares	to all the C sources. This should eliminate problems with 32-bit compilers
11552f48f637SMartin Mares	on sparc64.
11562f48f637SMartin Mares
11572f48f637SMartin Mares	* lspci.c (show_verbose): Recognize CardBus bridge header type.
11582f48f637SMartin Mares	(show_htype2): Stub routine.
11592f48f637SMartin Mares	(scan_config): Write sensible error message if the kernel denies reading of
11602f48f637SMartin Mares	upper part of the PCI config space.
1161