xref: /pciutils/ChangeLog (revision b569ef09)
1138c0385SMartin Mares2004-05-28  Martin Mares  <[email protected]>
2138c0385SMartin Mares
3*b569ef09SMartin Mares	* lspci.c (format_agp_rate): Write "x16", not "x@".
4*b569ef09SMartin Mares	(show_agp): rate[] could overflow.
5*b569ef09SMartin Mares	Bugs reported by Jakub Bogusz <[email protected]>.
6*b569ef09SMartin Mares
7bfc4fe7aSMartin Mares	* lspci.c (show_ht_*): Show HyperTransport capability with all its
8bfc4fe7aSMartin Mares	details. Once again code by Maciej simplified (i.e., possibly broken)
9bfc4fe7aSMartin Mares	by me.
10bfc4fe7aSMartin Mares
11bfc4fe7aSMartin Mares	* lib/header.h: Added declarations of HyperTransport capability.
12bfc4fe7aSMartin Mares	Again thanks to Maciej.
13bfc4fe7aSMartin Mares
14138c0385SMartin Mares	* lspci.c: Decode all bits of the secondary status word in type 1 headers.
15138c0385SMartin Mares	Thanks to Maciej W. Rozycki <[email protected]> for the patch.
16138c0385SMartin Mares
178fc75dbcSMartin Mares2003-12-27  Martin Mares  <[email protected]>
188fc75dbcSMartin Mares
1981abd2a7SMartin Mares	* Released as 2.1.99-test3.
2081abd2a7SMartin Mares
211f7c91ccSMartin Mares	* lspci.man, setpci.man: Document domains and correct spelling.
221f7c91ccSMartin Mares
231f7c91ccSMartin Mares	* lib/dump.c (dump_init): Added ability to read domain numbers.
241f7c91ccSMartin Mares
2584c8d1bbSMartin Mares	* lspci.c: Devices in domains different from 0 have their slot number
261f7c91ccSMartin Mares	printed as "<domain>:<bus>:<slot>.<func>". Tree view supports domains
271f7c91ccSMartin Mares	as well.
2884c8d1bbSMartin Mares
2984c8d1bbSMartin Mares	* lib/filter.c: Slot filters understand domains.
3084c8d1bbSMartin Mares
3184c8d1bbSMartin Mares	* lib/generic.c: Mention the domain in slot numbers in all error messages.
3284c8d1bbSMartin Mares
3384c8d1bbSMartin Mares	* lib/internal.h: The #ifdef for Linux <asm/byteorder.h> was wrong.
3484c8d1bbSMartin Mares
3584c8d1bbSMartin Mares	* lib/access.c (pci_get_dev): Added support for domains.
3684c8d1bbSMartin Mares
3784c8d1bbSMartin Mares	* lib/sysfs.c (sysfs_scan): Read vendor and device ID from the config
3884c8d1bbSMartin Mares	registers (or to be precise, leave it for the generic parts of the pcilib
3984c8d1bbSMartin Mares	to do so) instead of reading them from the sysfs. It's faster this way.
4084c8d1bbSMartin Mares
4184c8d1bbSMartin Mares	* lspci.c (show_pcix): Don't touch pci_dev->hdrtype, it's an internal
4284c8d1bbSMartin Mares	variable. Better read it from the config registers (it's cached anyway).
4384c8d1bbSMartin Mares
4484c8d1bbSMartin Mares	* lib/sysfs.c (sysfs_scan), lib/proc.c (proc_scan): Don't read the hdrtype.
4584c8d1bbSMartin Mares	  lib/generic.c (pci_generic_fill_info): If hdrtype is -1 (unset), read it.
4684c8d1bbSMartin Mares	  Saves lots of unnecessary file accesses.
4784c8d1bbSMartin Mares
4811f7b31bSMartin Mares	* lib/pci.h (PCIADDR_PORT_FMT): Use %llx instead of %Lx, because the latter
4911f7b31bSMartin Mares	is not supported by all C libraries.
5011f7b31bSMartin Mares
5111f7b31bSMartin Mares	* Makefile: Always enter the lib directory (remember that we don't have
5211f7b31bSMartin Mares	full dependecies for the library in the top-level Makefile; hmmm, another
5311f7b31bSMartin Mares	thing to rewrite some day).
5411f7b31bSMartin Mares
5511f7b31bSMartin Mares	* lib/sysfs.c: Added Linux sysfs access method based on the patch
5611f7b31bSMartin Mares	written by Matthew Wilcox <[email protected]>.
5711f7b31bSMartin Mares
5811f7b31bSMartin Mares	* lib/proc.c: Renamed the access method name from "/proc/bus/pci" to "Linux-proc".
5911f7b31bSMartin Mares
6011f7b31bSMartin Mares	* lib/pread.h: The hacks to support pread on various versions
6111f7b31bSMartin Mares	of Linux libc moved there.
6211f7b31bSMartin Mares
6311f7b31bSMartin Mares	* lib/proc.c (proc_setup): The return value of snprintf() varies
6411f7b31bSMartin Mares	between glibc versions, so we need to check both for a negative
6511f7b31bSMartin Mares	values and for too large values.
6611f7b31bSMartin Mares
674284af58SMartin Mares	* Removed last few references to the "Linux PCI Utilities", the
684284af58SMartin Mares	package is pretty cross-platform now :)
694284af58SMartin Mares
704284af58SMartin Mares2003-12-27  Martin Mares  <[email protected]>
714284af58SMartin Mares
72ab12277eSMartin Mares	* Released as 2.1.99-test2.
73ab12277eSMartin Mares
74ab12277eSMartin Mares	* README, pciutils.lsm, pciutils.spec: Use @VERSION@ to make the
75ab12277eSMartin Mares	release scripts insert the current version. "make release" is gone.
76ab12277eSMartin Mares
77ab12277eSMartin Mares	* maint/release, maint/release.pm: Added a new system of scripts for
78ab12277eSMartin Mares	making releases including inter-version diffs etc.
79ab12277eSMartin Mares
80ab12277eSMartin Mares	* Makefile: Cleaned up.
81ab12277eSMartin Mares
82ab12277eSMartin Mares	* lib/fbsd-device.c: I patched another copy of this file by mistake,
83ab12277eSMartin Mares	this time the version checks should be right.
84ab12277eSMartin Mares
85ab12277eSMartin Mares2003-12-27  Martin Mares  <[email protected]>
86ab12277eSMartin Mares
876d722cd6SMartin Mares	* Released as 2.1.99-test1.
886d722cd6SMartin Mares
89dd33246aSMartin Mares	* pciutils.h, common.c, lspci.man, setpci.man, lib/internal.h:
90dd33246aSMartin Mares	Remove shadows of the syscall access method which was never
91dd33246aSMartin Mares	implemented.
92dd33246aSMartin Mares
9380b3121aSMartin Mares	* update-pciids.sh: Try to preserve permissions of the old file
9480b3121aSMartin Mares	if chmod supports --reference. Should close Debian Bug #223740.
9580b3121aSMartin Mares
966aea909aSMartin Mares	* lib/proc.c (proc_setup): Increased path name length limit to 1024.
976aea909aSMartin Mares	Thanks for Redhat and Mandrake for inspiration.
986aea909aSMartin Mares
996aea909aSMartin Mares	* lib/configure: Recognize ppc and ppc64, both have 64-bit addresses.
1006aea909aSMartin Mares	Grabbed from Redhat (Fedora) patches.
1016aea909aSMartin Mares
1026aea909aSMartin Mares2003-12-27  Martin Mares  <[email protected]>
1036aea909aSMartin Mares
104f701ff47SMartin Mares	Merged bug fixes from Debian patches:
105f701ff47SMartin Mares
106f701ff47SMartin Mares	* lspci.c (show_verbose): "Cache Line Size" should be capitalized.
107f701ff47SMartin Mares
108f701ff47SMartin Mares	* lspci.c (show_pcix_nobridge): Added a missing newline.
109f701ff47SMartin Mares
1102240db8cSMartin Mares	* lib/proc.c (proc_scan): When reading the header type, don't
1112240db8cSMartin Mares	forget to clear the topmost bit indicating that the device has
112f701ff47SMartin Mares	multiple functions.
1132240db8cSMartin Mares
1142240db8cSMartin Mares2003-12-27  Martin Mares  <[email protected]>
1152240db8cSMartin Mares
11645902995SMartin Mares	Updated the FreeBSD port. Thanks to Samy Al Bahra <[email protected]>
11745902995SMartin Mares	for the patches:
11845902995SMartin Mares
11945902995SMartin Mares	* lib/Makefile: Add ${FREEBSD_SYS} to the include path if it's defined.
12045902995SMartin Mares	* lib/fbsd-device.c: Select the right set of system includes according
12145902995SMartin Mares	to __FreeBSD_version.
12245902995SMartin Mares
12345902995SMartin Mares2003-12-27  Martin Mares  <[email protected]>
12445902995SMartin Mares
1258fc75dbcSMartin Mares	Merged support for Solaris on i386 by Bill Moore <[email protected]>
1268fc75dbcSMartin Mares	and cleaned up:
1278fc75dbcSMartin Mares
1288fc75dbcSMartin Mares	* lib/configure: Recognize SunOS.
1298fc75dbcSMartin Mares	* lib/internal.h: Learn how to recognize byte order on SunOS.
1308fc75dbcSMartin Mares	* lib/i386-ports.c: Split OS-dependent I/O port access from i386-ports.c.
1318fc75dbcSMartin Mares	* lib/i386-io-linux.h: Linux specific part.
1328fc75dbcSMartin Mares	* lib/i386-io-hurd.h: GNU/Hurd specific part.
1338fc75dbcSMartin Mares	* lib/i386-io-sunos.h: SunOS specific part.
1348fc75dbcSMartin Mares
1359739916eSMartin Mares2003-12-26  Martin Mares  <[email protected]>
1369739916eSMartin Mares
1379739916eSMartin Mares	* lib/header.h (PCI_*_MASK): Cast to pciaddr_t explicitly.
1389739916eSMartin Mares
1399739916eSMartin Mares	* lib/pci.h: Types declared in <sys/types.h> should be usable on all
1409739916eSMartin Mares	platforms we currently support, so kill the forest of #ifdef's and
1419739916eSMartin Mares	use them in all cases.
1429739916eSMartin Mares
1439739916eSMartin Mares	* lib/pci.h: Use ULONG_MASK to decide whether we should use long
1449739916eSMartin Mares	or long long to represent a 64-bit address. Killed HAVE_LONG_ADDRESS.
1459739916eSMartin Mares	Define format strings for addresses, port numbers and IRQ numbers
1469739916eSMartin Mares	directly in pci.h.
1479739916eSMartin Mares
1489739916eSMartin Mares	* lib/proc.c (proc_scan): Use PCIADDR_T_FMT for scanf'ing addresses.
1499739916eSMartin Mares
15080459c65SMartin Mares2003-12-26  Marco Gerards  <[email protected]>
15180459c65SMartin Mares
15280459c65SMartin Mares	Added support for the GNU Hurd (cleaned up by Martin Mares):
15380459c65SMartin Mares
15480459c65SMartin Mares	* lib/configure [GNU]: Use the i386 ports for configuration access.
15580459c65SMartin Mares	* lib/i386-ports.c: Don't call iopl() on the Hurd.
15680459c65SMartin Mares	* lib/pci.h [OS_GNU]: Include <sys/types.h> and use it for defining
15780459c65SMartin Mares	u8 to u32.
15880459c65SMartin Mares
159a85769a8SMartin Mares2003-12-26  Martin Mares  <[email protected]>
160a85769a8SMartin Mares
1617dacd9c8SMartin Mares	* lspci.c (show_pcix_bridge, show_pcix_nobridge): Don't forget to call
1627dacd9c8SMartin Mares	config_fetch() to ensure that the registers have been read. Thanks to
1637dacd9c8SMartin Mares	Bill Wood <[email protected]> for the patch.
1647dacd9c8SMartin Mares
1657dacd9c8SMartin Mares	* lspci.c: Ensure that failure of config_fetch() is handled correctly
1667dacd9c8SMartin Mares	at all places.
1677dacd9c8SMartin Mares
1684063c31cSMartin Mares	* lspci.man: There was one more explicit reference to /usr/share/pci.ids.
1694063c31cSMartin Mares	Changed to @SHAREDIR@. Patch from Maciej W. Rozycki <[email protected]>.
1704063c31cSMartin Mares
1713fe8a38dSMartin Mares	* setpci.c (main): Better error messages.
1723fe8a38dSMartin Mares
1735f5b1a7bSMartin Mares	* setpci.c (ex_op): The demo mode should disable only writing, not reading.
1745f5b1a7bSMartin Mares
1755f5b1a7bSMartin Mares	* setpci.man: The documentation was inconsistent on what should -D do.
1765f5b1a7bSMartin Mares	Document the new behaviour.
177b251f40bSMartin Mares
17891e37a49SMartin Mares	* pciutils.h, common.c, setpci.c: Introduced a NONRET macro encapsulating
17991e37a49SMartin Mares	the GCC specific __attribute__((noreturn)) and killed the hack with
18091e37a49SMartin Mares	redefining __attribute__ on non-GCC compilers.
18191e37a49SMartin Mares
1824afd29d3SMartin Mares	* Makefile: Added missing dependencies. Parallel builds work now.
1834afd29d3SMartin Mares	Problem reported by Andreas Haumer <[email protected]>, but I chose
1844afd29d3SMartin Mares	a different fix.
1854afd29d3SMartin Mares
186b0f1a03bSMartin Mares	* Makefile (MANDIR): Use `:=' instead of `=' to avoid executing the shell
187b0f1a03bSMartin Mares	command every time $(MANDIR) is referenced.
188b0f1a03bSMartin Mares
189b7fd8e19SMartin Mares	* lspci.c (main): The error message for `lspci -s' incorrectly mentioned
190b7fd8e19SMartin Mares	a `-f' switch. Reported by Steve Finney <[email protected]>.
191b7fd8e19SMartin Mares
19205bb10a2SMartin Mares	* lib/generic.c: Removed memory leak in pci_generic_bus_scan().
19305bb10a2SMartin Mares	Reported by Gary Parnes <[email protected]>.
19405bb10a2SMartin Mares
195a832f6f1SMartin Mares	* Replaced obsolete syntax of __attribute__((unused)) in the middle of
196a832f6f1SMartin Mares	parameter declarations (which is no longer supported by GCC 3.1) by the
197a832f6f1SMartin Mares	current syntax (attribute at the end). Thanks to [email protected]
198a832f6f1SMartin Mares	for reporting this problem.
199a832f6f1SMartin Mares
200a85769a8SMartin Mares	* Removed CVS $Id$ tags from all files.
201a85769a8SMartin Mares
202a85769a8SMartin Mares	* Makefile: Added some more warnings.
203a85769a8SMartin Mares
204b7351143SMartin Mares	* setpci.c: Cleaned up mask/value code.
205b7351143SMartin Mares
206b7351143SMartin Mares2003-12-08 Thayne Harbaugh <[email protected]>
207b7351143SMartin Mares
208b7351143SMartin Mares	* setpci.c: Individual bits to be set can be specified as <value>:<mask>.
209b7351143SMartin Mares
2102a5d5cf9SMartin Mares2003-11-29  Martin Mares  <[email protected]>
2112a5d5cf9SMartin Mares
2122a5d5cf9SMartin Mares	* Imported the pciutils sources to my Arch repository. Good-bye, CVS.
2132a5d5cf9SMartin Mares
214d772ef15SMartin Mares2003-01-04  Martin Mares  <[email protected]>
215d772ef15SMartin Mares
2161b95f396SMartin Mares	* Released as 2.1.11.
2171b95f396SMartin Mares
218c83293ebSMartin Mares	* Makefile: Changed configuration of installation directories --
219c83293ebSMartin Mares	all paths are now set at the top of the Makefile instead of being
220c83293ebSMartin Mares	scattered between the installation rules. The default installation
221c83293ebSMartin Mares	now goes always to /usr/local regardless of the OS as most distributions
222c83293ebSMartin Mares	already contain some version of pciutils and we don't want custom
223c83293ebSMartin Mares	installations to interfere with the default ones.
224c83293ebSMartin Mares
225c83293ebSMartin Mares	* Makefile: Removed a couple of ancient install hacks: we no longer
226c83293ebSMartin Mares	try to avoid overwriting a newer pci.ids file (users are now expected
227c83293ebSMartin Mares	to use update-ids) and we don't try to remove /etc/pci.ids (a long time
228c83293ebSMartin Mares	has passed since the last version which used it).
229c83293ebSMartin Mares
230e2875dcdSMartin Mares	* Makefile: Paths to pci.ids in man pages automatically get the right path.
231e2875dcdSMartin Mares
2321b95f396SMartin Mares	* Added the update-ids utility.
2330138a2a7SMartin Mares
234d772ef15SMartin Mares	* lib: Removed partially implemented "syscall" access method which will
235d772ef15SMartin Mares	probably never be needed.
236d772ef15SMartin Mares
237eb620239SMartin Mares2002-12-27  Martin Mares  <[email protected]>
238eb620239SMartin Mares
239130090bdSMartin Mares	* lib/nbsd-libpci.c: Cleaned up and hopefully made it endian safe.
240130090bdSMartin Mares
241eb620239SMartin Mares	* lib/generic.c (pci_generic_scan_bus): Added work-around for devices with
242eb620239SMartin Mares	discontiguous numbering of functions. This is already present in the Linux
243eb620239SMartin Mares	kernel for several years, but I forgot to update pciutils as well.
244eb620239SMartin Mares
245848b4347SMartin Mares2002-12-26  Martin Mares  <[email protected]>
246848b4347SMartin Mares
247579b19ffSMartin Mares	* lib/header.h, lspci.c: Dump AGP3 flags and speeds.
248579b19ffSMartin Mares
249579b19ffSMartin Mares	* lib/pci.h, Makefile: Removed HAVE_OWN_HEADER_H. Always use our own header,
250579b19ffSMartin Mares	there is no reason to prefer the kernel version.
251579b19ffSMartin Mares
252579b19ffSMartin Mares	* lib/proc.c (proc_scan): Don't forget to initialize hdrtype.
253579b19ffSMartin Mares
254848b4347SMartin Mares	* Added preliminary version of NetBSD support by Quentin Garnier
255848b4347SMartin Mares	<[email protected]>.
256848b4347SMartin Mares
257f0952474SMartin Mares2002-04-06  Martin Mares  <[email protected]>
258f0952474SMartin Mares
259f0952474SMartin Mares	* lspci.c: Mention "-xxx" in the help.
260f0952474SMartin Mares
261d2f666f1SMartin Mares2002-03-30  Martin Mares  <[email protected]>
262d2f666f1SMartin Mares
2639bd44bb0SMartin Mares	* Released as 2.1.10.
2649bd44bb0SMartin Mares
265a33d0eb7SMartin Mares	* Removed pci.ids from the CVS as they are now maintained separately.
266a33d0eb7SMartin Mares	They are still included in the tarball, but if you are building	pciutils
267a33d0eb7SMartin Mares	from CVS sources or you want to get a newer ID file than the one distributed,
268a33d0eb7SMartin Mares	just use "make update-ids" to download the most recent snapshot from
269a33d0eb7SMartin Mares	pciids.sf.net.
270a33d0eb7SMartin Mares
271a33d0eb7SMartin Mares	* Makefile, README: Updated accordingly.
272a33d0eb7SMartin Mares
273a33d0eb7SMartin Mares	* Makefile: Added a couple of maintenance targets.
274a33d0eb7SMartin Mares
275a33d0eb7SMartin Mares	* maint/*: Maintainer's utilities now reside here (present only in CVS,
276a33d0eb7SMartin Mares	not in the tarball).
277a33d0eb7SMartin Mares
278d2f666f1SMartin Mares	* lib/names.c (parse_name_list): End-of-line comments are no longer
279d2f666f1SMartin Mares	supported. Hashes are now perfectly valid in all names and they start
280d2f666f1SMartin Mares	a comment only at the start of the line.
281d2f666f1SMartin Mares
282ee551b73SMartin Mares2002-03-26  Martin Mares  <[email protected]>
283ee551b73SMartin Mares
28407159913SMartin Mares	* README: Rewritten.
28507159913SMartin Mares
286ee551b73SMartin Mares	* Makefile: When the currently installed pci.ids file is newer than
287ee551b73SMartin Mares	the version to be installed, don't overwrite it. Suggested by
288ee551b73SMartin Mares	Jean Delvare <[email protected]>.
289ee551b73SMartin Mares
290bc7b1d62SMartin Mares2002-03-24  Martin Mares  <[email protected]>
291bc7b1d62SMartin Mares
2925f5e6f64SMartin Mares	* lspci.c (show_pcix_bridge): Added PCI-X capability display.
2935f5e6f64SMartin Mares	Contributed by Jeff Garzik <[email protected]>.
2945f5e6f64SMartin Mares
2955f5e6f64SMartin Mares	* lib/header.h: Added PCI-X stuff. Again by Jeff.
2965f5e6f64SMartin Mares
2975f5e6f64SMartin Mares	* Makefile (CFLAGS): -Werror is gone.
2985f5e6f64SMartin Mares
299a1052f16SMartin Mares	* lspci.c (format_agp_rate): Fixed AGP rate reporting.
300a1052f16SMartin Mares
301bc7b1d62SMartin Mares	* lib/filter.c (pci_filter_parse_slot): Allow bus 0xff, slot 0x1f and
302bc7b1d62SMartin Mares	function 7.
303bc7b1d62SMartin Mares
304bc7b1d62SMartin Mares	* lib/names.c (pci_lookup_name): When printing unknown subsystem vendor
305bc7b1d62SMartin Mares	or device hexadecimally, don't confuse it with chip vendor/device ID.
306bc7b1d62SMartin Mares	First reported by Marc Boucher <[email protected]>.
307bc7b1d62SMartin Mares
308f793990cSMartin Mares2001-11-04  Martin Mares  <[email protected]>
309f793990cSMartin Mares
310ee551b73SMartin Mares	* Released as 2.1.9.
311ee551b73SMartin Mares
312f793990cSMartin Mares	* pci.ids: Synced with the PCI ID Repository at SourceForge
313f793990cSMartin Mares	(http://pciids.sourceforge.net/).
314f793990cSMartin Mares
3151d174e56SMartin Mares2000-08-25  Martin Mares  <[email protected]>
3161d174e56SMartin Mares
3171d174e56SMartin Mares	* pci.ids: Updated ID's, synced with kernel 2.4.0-test7.
3181d174e56SMartin Mares
31965b4327eSMartin Mares2000-06-13  Martin Mares  <[email protected]>
32065b4327eSMartin Mares
32165b4327eSMartin Mares	* Makefile (uninstall): Fixed.
32265b4327eSMartin Mares
32365b4327eSMartin Mares	* pci.ids: ID updates.
32465b4327eSMartin Mares
3254a219d5fSMartin Mares2000-05-20  Martin Mares  <[email protected]>
3264a219d5fSMartin Mares
3274a219d5fSMartin Mares	* Released as 2.1.8.
3284a219d5fSMartin Mares
3294a219d5fSMartin Mares	* pci.ids: ID updates.
3304a219d5fSMartin Mares
3314a219d5fSMartin Mares	* lspci.c (show_verbose): Min/max latency is now printed in nanoseconds.
3324a219d5fSMartin Mares
3334a219d5fSMartin Mares2000-05-04  Martin Mares  <[email protected]>
3344a219d5fSMartin Mares
3354a219d5fSMartin Mares	* lspci.c (show_verbose): If the header type doesn't match device
3364a219d5fSMartin Mares	class, just print a warning and still use the header type, assuming
3374a219d5fSMartin Mares	bogus class info.
3384a219d5fSMartin Mares
33910c90662SMartin Mares2000-05-01  Martin Mares  <[email protected]>
34010c90662SMartin Mares
34172b9b690SMartin Mares	* lspci.c (show_pm): Updated according to PCI PM specs 1.1.
34272b9b690SMartin Mares
34310c90662SMartin Mares	* pci.ids: Updated Contemporary Control ARCnet card entries.
34410c90662SMartin Mares
34510c90662SMartin Mares	* pci.ids: Synchronized class list with latest PCI SIG documents.
34610c90662SMartin Mares
347a239ade6SMartin Mares2000-04-29  Martin Mares  <[email protected]>
348a239ade6SMartin Mares
349a239ade6SMartin Mares	* lib/names.c (pci_lookup_name): Fixed the cheat.
350a239ade6SMartin Mares
351a239ade6SMartin Mares	* lib/internal.h: Moved UNUSED/inline hacks above all other declarations.
352a239ade6SMartin Mares
353a239ade6SMartin Mares	* pci.ids: Various ID updates.
354a239ade6SMartin Mares
3552c83b860SMartin Mares2000-04-21  Martin Mares  <[email protected]>
3562c83b860SMartin Mares
3572c83b860SMartin Mares	* Released as 2.1.7.
3582c83b860SMartin Mares
3592c83b860SMartin Mares	* pciutils.spec: Added German description.
3602c83b860SMartin Mares
3612c83b860SMartin Mares	* lib/names.c (pci_lookup_name): Added a cheat for case that subsystem ID's
3622c83b860SMartin Mares	are the same as device ID and just output subsystem name according to
3632c83b860SMartin Mares	device name.
3642c83b860SMartin Mares
3652c83b860SMartin Mares	* lib/proc.c: Use UNUSED instead of __attribute__((unused)).
3662c83b860SMartin Mares
3672c83b860SMartin Mares	* lib/pci.h: Added the correct typedefs for AIX.
3682c83b860SMartin Mares
3692c83b860SMartin Mares	* lib/generic.c (pci_generic_scan_bus): Export.
3702c83b860SMartin Mares
3712c83b860SMartin Mares	* lib/configure: Detect AIX. Use "echo '...\c'" instead of
3722c83b860SMartin Mares	"echo -n" if the shell isn't bash.
3732c83b860SMartin Mares
3742c83b860SMartin Mares	* lspci.c: Avoid using alloca() if not compiled by GCC.
3752c83b860SMartin Mares	(insert_dev): Avoid returning a void value.
3762c83b860SMartin Mares
3772c83b860SMartin Mares	* Makefile: Choose which install utility to use according to
3782c83b860SMartin Mares	OS type. Also use `-o' instead of `-or' in find arguments.
3792c83b860SMartin Mares	Part of the AIX port.
3802c83b860SMartin Mares
3812c83b860SMartin Mares	* lib/aix-device.c: Added AIX low-level interface. Contributed
3822c83b860SMartin Mares	by Dave Johnson <[email protected]>, thanks a lot!
3832c83b860SMartin Mares
3842c83b860SMartin Mares	* pci.ids: Few new ID's.
3852c83b860SMartin Mares
3862c83b860SMartin Mares	* pciutils.h, lib/internal.h: Redefine __attribute__ and inline
3872c83b860SMartin Mares	when not compiled by GCC.
3882c83b860SMartin Mares
389c1a828daSMartin Mares2000-04-17  Martin Mares  <[email protected]>
390c1a828daSMartin Mares
391c1a828daSMartin Mares	* Released as 2.1.6.
392c1a828daSMartin Mares
393c1a828daSMartin Mares	* pci.ids: Added a large batch of ID's contributed by Gunther
394c1a828daSMartin Mares	Mayer <[email protected]> and synced the
395c1a828daSMartin Mares	list with the 2.3.99pre6 kernel.
396c1a828daSMartin Mares
397e91dd3abSMartin MaresThu Mar  9 13:11:39 2000  Martin Mares  <[email protected]>
398e91dd3abSMartin Mares
399a80b79a9SMartin Mares	* lib/example.c: Added a simple example of how to use
400a80b79a9SMartin Mares	the library.
401a80b79a9SMartin Mares
40289984232SMartin Mares	* lspci.man, setpci.man: Revealed --version. Well spotted
40389984232SMartin Mares	by Adam Sulmicki.
40489984232SMartin Mares
405e91dd3abSMartin Mares	* pci.ids: Added lots of new ID's and synced with 2.3.50.
406e91dd3abSMartin Mares
40778d9c5e2SMartin MaresTue Feb 15 00:16:21 2000  Martin Mares  <[email protected]>
40878d9c5e2SMartin Mares
40978d9c5e2SMartin Mares	* Released as 2.1.5.
41078d9c5e2SMartin Mares
41178d9c5e2SMartin Mares	* pciutils.spec: Updated spec file from Andreas Jaeger. Now using
41278d9c5e2SMartin Mares	%{_mandir} to find the right location to install manual pages to.
41378d9c5e2SMartin Mares
41478d9c5e2SMartin Mares	* pci.ids: New ID's.
41578d9c5e2SMartin Mares
41678d9c5e2SMartin Mares	* setpci.c (main): Don't crash when `-s' or `-d' is given with
41778d9c5e2SMartin Mares	no argument.
41878d9c5e2SMartin Mares
419f8141ae2SMartin MaresMon Jan 24 20:04:11 2000  Andreas Jaeger  <[email protected]>
420f8141ae2SMartin Mares
421f8141ae2SMartin Mares	* lib/i386-ports.c: Include <asm/io.h> only on systems without
422f8141ae2SMartin Mares	glibc.
423f8141ae2SMartin Mares
424f8141ae2SMartin MaresMon Jan 24 11:24:43 2000  Martin Mares  <[email protected]>
425f8141ae2SMartin Mares
426f8141ae2SMartin Mares	* Makefile: Modified to work with the Linux FHS brain-damaged idea
427f8141ae2SMartin Mares	of putting man pages to /usr/share/man. Now we choose either /usr/man
428f8141ae2SMartin Mares	or /usr/share/man depending on which one exists.
429f8141ae2SMartin Mares
43059e76e8bSMartin MaresSun Jan 23 10:52:34 2000  Martin Mares  <[email protected]>
43159e76e8bSMartin Mares
43259e76e8bSMartin Mares	* pci.ids: Synced with Linux 2.3.40.
43359e76e8bSMartin Mares
43459e76e8bSMartin Mares	* Released as version 2.1.4.
43559e76e8bSMartin Mares
4362dfd48cdSMartin MaresThu Jan 20 11:08:32 2000  Martin Mares  <[email protected]>
4372dfd48cdSMartin Mares
4382715403fSMartin Mares	* lspci.c (scan_device): Fixed bug in reading of cardbus extensions.
4392715403fSMartin Mares
44081077814SMartin Mares	* lib/proc.c: pread/pwrite fixed again, this time on libc5 :(
44181077814SMartin Mares
44281077814SMartin Mares	* lspci.c (format_agp_rate): Better formatting of AGP rates.
44381077814SMartin Mares
44481077814SMartin Mares	* pci.ids: New ID's.
44581077814SMartin Mares
4462dfd48cdSMartin Mares	* lib/configure: Added configuration for ia64 (the same as for Alpha).
4472dfd48cdSMartin Mares	Patch from Stephane Eranian <[email protected]>.
4482dfd48cdSMartin Mares
4495a258860SMartin MaresThu Jan 13 23:01:52 2000  Martin Mares  <[email protected]>
4505a258860SMartin Mares
4515a258860SMartin Mares	* Released as version 2.1.3.
4525a258860SMartin Mares
4535a258860SMartin Mares	* pci.ids: New ID's.
4545a258860SMartin Mares
4555a258860SMartin Mares	* lspci.c: Alpha IO_FORMAT fix by Andrea Arcangeli.
4565a258860SMartin Mares
4575a258860SMartin Mares	* lib/access.c: Corrected order of access methods -- it's wonderful how
4585a258860SMartin Mares	long could such a bug remain unspotted. Thanks go to Andreas Schockenhoff.
4595a258860SMartin Mares
4600c047bbeSMartin MaresSat Dec 11 23:34:48 1999  Martin Mares  <[email protected]>
4610c047bbeSMartin Mares
4620c047bbeSMartin Mares	* Released as version 2.1.2.
4630c047bbeSMartin Mares
4640c047bbeSMartin Mares	* lib/names.c (pci_lookup_name): Fixed printing of unknown subsystem ID's.
4650c047bbeSMartin Mares
46633bc28a5SMartin MaresSat Dec  4 13:11:03 1999  Martin Mares  <[email protected]>
46733bc28a5SMartin Mares
46839231205SMartin Mares	* Released as version 2.1.1.
46939231205SMartin Mares
47033bc28a5SMartin Mares	* pci.ids: Several new ID's.
47133bc28a5SMartin Mares
47233bc28a5SMartin Mares	* setpci.c (exec_op): Don't forget to increment address after writing
47333bc28a5SMartin Mares	single value, so that `30.b=12,34,56,78' works as expected. Reported
47433bc28a5SMartin Mares	by Petr Soucek <[email protected]>.
47533bc28a5SMartin Mares
4768d047897SMartin MaresWed Nov  3 10:24:38 1999  Martin Mares  <[email protected]>
4778d047897SMartin Mares
4788d047897SMartin Mares	* lspci.c (show_terse): If prog-if is zero, but it's present in the
4798d047897SMartin Mares	ID list, show it.
4808d047897SMartin Mares
4816afc6538SMartin MaresSat Oct 30 11:06:35 1999  Martin Mares  <[email protected]>
4826afc6538SMartin Mares
4836afc6538SMartin Mares	* Released as version 2.1.
4846afc6538SMartin Mares
4856afc6538SMartin Mares	* pci.ids: Synced to devlist.h in 2.3.24 kernel. Merged in
4866afc6538SMartin Mares	lots of contributed entries.
4876afc6538SMartin Mares
4888f756113SMartin MaresThu Oct 14 10:40:12 1999  Dave Jones    <[email protected]>
4898f756113SMartin Mares
4908f756113SMartin Mares	* pci.ids: Added lots of subsystem definitions.
4918f756113SMartin Mares
492d4798a32SMartin MaresSat Oct  9 14:32:28 1999  Martin Mares  <[email protected]>
493d4798a32SMartin Mares
494d4798a32SMartin Mares	* setpci.man: Better example.
495d4798a32SMartin Mares
496d4798a32SMartin Mares	* lspci.c: Resolve prog-if names.
497d4798a32SMartin Mares
498d4798a32SMartin Mares	* lib/names.c: Adapted to new pci.ids syntax.
499d4798a32SMartin Mares
500d4798a32SMartin Mares	* pci.ids: Reorganized the pci.ids file. Subsystems are listed
501d4798a32SMartin Mares	under devices, classes can optionally contain prog-if information.
502d4798a32SMartin Mares	New ID's, as usually.
503d4798a32SMartin Mares
504e306e911SMartin MaresWed Sep 22 09:45:24 1999  Martin Mares  <[email protected]>
505e306e911SMartin Mares
506e306e911SMartin Mares	* pci.ids: New ID's. As usually.
507e306e911SMartin Mares
508e306e911SMartin Mares	* lspci.c (show_htype1, show_htype2): Don't show `closed' bridge windows
509e306e911SMartin Mares	unless we're vvvery verbose.
510e306e911SMartin Mares
511e306e911SMartin MaresMon Sep 20 11:22:54 1999  Martin Mares  <[email protected]>
512e306e911SMartin Mares
513e306e911SMartin Mares	* lspci.c (show_htype2): Don't forget a TAB before the "I/O window" line.
514e306e911SMartin Mares
515e64a576cSMartin MaresTue Sep 14 09:31:01 1999  Martin Mares  <[email protected]>
516e64a576cSMartin Mares
517e64a576cSMartin Mares	* pci.ids: New ID's. Again.
518e64a576cSMartin Mares
519c36c0862SMartin MaresThu Aug  5 17:45:42 1999  Martin Mares  <[email protected]>
520c36c0862SMartin Mares
521c36c0862SMartin Mares	* lspci.c (show_size): Don't show size if it's zero (usually
522c36c0862SMartin Mares	due to bus-centric mode being enabled).
523c36c0862SMartin Mares
5241ca42433SMartin MaresTue Jul 20 13:25:09 1999  Martin Mares  <[email protected]>
5251ca42433SMartin Mares
526168b4f46SMartin Mares	* lib/pci.h: Types are OS dependent.
527168b4f46SMartin Mares
528168b4f46SMartin Mares	* lib/internal.h: Byte order hacks are OS dependent.
529168b4f46SMartin Mares
530168b4f46SMartin Mares	* lib/configure: Recognize FreeBSD. Also set OS_XXX according to the OS.
531168b4f46SMartin Mares
532168b4f46SMartin Mares	* lib/Makefile, lib/access.c: Added fbsd-device target.
533168b4f46SMartin Mares
534168b4f46SMartin Mares	* pci.ids: Added an entry for PLX 9080 bridges with subsystem ID
535168b4f46SMartin Mares	incorrectly set to device ID.
536168b4f46SMartin Mares
537168b4f46SMartin Mares	* README: Added a note that we support FreeBSD.
538168b4f46SMartin Mares
539168b4f46SMartin Mares	* Makefile (PREFIX, ROOT): Set it depending on the OS.
540168b4f46SMartin Mares	(%.8): Grrr, BSD date is not able to convert date formats the same way
541168b4f46SMartin Mares	as GNU date does. Use sed instead.
542168b4f46SMartin Mares	(install): Use `-c' when calling install.
543168b4f46SMartin Mares
544168b4f46SMartin Mares	* lib/fbsd-device.c: Added FreeBSD /dev/pci access module contributed
545168b4f46SMartin Mares	by Jari Kirma <[email protected]>.
546168b4f46SMartin Mares
547bc6346dfSMartin Mares	* lib/proc.c: Rewrote the pread/pwrite things once again. Use pread
548bc6346dfSMartin Mares	and pwrite only when we are certain it's safe (i.e., glibc 2.1
549bc6346dfSMartin Mares	on all architectures or any libc on a i386 where we really know
550bc6346dfSMartin Mares	how to use syscalls directly). In all other cases, emulate it
551bc6346dfSMartin Mares	with lseek/read/write.
552bc6346dfSMartin Mares
5531ca42433SMartin Mares	* pci.ids: Some more IDs.
5541ca42433SMartin Mares
5551ca42433SMartin MaresMon Jul 19 14:10:36 1999  Martin Mares  <[email protected]>
5561ca42433SMartin Mares
5571ca42433SMartin Mares	* pci.ids: Added IDs of parallel port controller cards as sent
5581ca42433SMartin Mares	by Tim Waugh <[email protected]>.
5591ca42433SMartin Mares
560e95c8373SMartin MaresWed Jul  7 00:55:48 1999  Martin Mares  <[email protected]>
561e95c8373SMartin Mares
562e95c8373SMartin Mares	* lib/proc.c (proc_scan): HAVE_LONG_ADDRESS instead of HAVE_64BIT_ADDRESS.
563e95c8373SMartin Mares
564e95c8373SMartin Mares	* lspci.c: ADDR_FORMAT now depends on both HAVE_64BIT_ADDRESS and
565e95c8373SMartin Mares	HAVE_LONG_ADDRESS.
566e95c8373SMartin Mares
567e95c8373SMartin Mares	* lib/configure: HAVE_64BIT_ADDRESS now doesn't imply that the addresses
568e95c8373SMartin Mares	are represented as long long. Introduced a new flag HAVE_LONG_ADDRESS
569e95c8373SMartin Mares	to indicate this. Both Sparc architectures now use both 64BIT_ADDRESS
570e95c8373SMartin Mares	and LONG_ADDRESS since they have 32-bit userland, but don't set LONG_ADDRESS
571e95c8373SMartin Mares	on Alpha.
572e95c8373SMartin Mares
573e95c8373SMartin Mares	* lspci.c (show_msi): Added dumping of the MSI capability.
574e95c8373SMartin Mares	(show_slotid): The same for SlotID capability.
575e95c8373SMartin Mares	(show_caps): Seperated capability dumping, because it should
576e95c8373SMartin Mares	be used for both htype0 and htype1. Even PCI 2.2 doesn't mention
577e95c8373SMartin Mares	layout of htype2, so I'm a bit unsure about it wrt capabilities
578e95c8373SMartin Mares	-- they at least have to live somewhere else since address 0x34
579e95c8373SMartin Mares	is already defined differently in htype2.
580e95c8373SMartin Mares
581e95c8373SMartin Mares	* lib/header.h (PCI_STATUS_UDF): Marked as obsolete (PCI 2.2).
582e95c8373SMartin Mares	(PCI_BASE_ADDRESS_MEM_TYPE_1M): Ditto.
583e95c8373SMartin Mares	(PCI_CAP_ID_*): Added some new capabilities defined in PCI 2.2.
584e95c8373SMartin Mares
585e95c8373SMartin Mares	* lspci.c (show_htype0): Mask out lowest 2 bits from all capability pointers
586e95c8373SMartin Mares	(required by the PCI 2.2 specs).
587e95c8373SMartin Mares
588e95c8373SMartin MaresMon Jul  5 12:45:19 1999  Martin Mares  <[email protected]>
589e95c8373SMartin Mares
590e95c8373SMartin Mares	* lspci.c (show_size): Added new function for dumping of region sizes.
591e95c8373SMartin Mares	(show_rom): Added. Now correctly dumps unassigned ROM addresses, disabled
592e95c8373SMartin Mares	ROMs et cetera.
593e95c8373SMartin Mares
594e95c8373SMartin Mares	* lib/pci.h (struct pci_dev): known_fields moved to the public part
595e95c8373SMartin Mares	of the structure.
596e95c8373SMartin Mares
597e95c8373SMartin Mares	* Added support for region sizes. Needs support in the kernel, because
598e95c8373SMartin Mares	sizes have to be scanned before drivers initialize yourself. pci_fill_info()
599e95c8373SMartin Mares	now returns a bitmask of what fields were really read.
600e95c8373SMartin Mares
60182ce97c9SMartin MaresMon Jun 28 18:37:51 1999  Dave Jones    <[email protected]>
60282ce97c9SMartin Mares
60382ce97c9SMartin Mares	* Makefile:
60482ce97c9SMartin Mares	  Added `uninstall' target - removes all traces of pciutils.
60582ce97c9SMartin Mares	* pci.ids:
60682ce97c9SMartin Mares	  - Lots of cleanups in the ATI, S3, Adaptec vendors.
60782ce97c9SMartin Mares	  - Changed Compaq QVision 1280/p definitions, as it's not possible
60882ce97c9SMartin Mares	    to determine the revision from the device ID.
60982ce97c9SMartin Mares	  - Same for the Tseng ET4000.
61082ce97c9SMartin Mares	    The id's said I had a rev C, when it was actually a rev B.
61182ce97c9SMartin Mares	  - Removed some unnecessary strings
61282ce97c9SMartin Mares	    `PCI'. Unless it's an AGP card, it should be obvious that it's PCI.
61382ce97c9SMartin Mares	    `Ethernet card'. This should be determined from config space.
61482ce97c9SMartin Mares	  - Lots of other new vendors & devices
61582ce97c9SMartin Mares	  - Other additional small cleanups.
61682ce97c9SMartin Mares
6177bed2d83SMartin MaresMon Jun 21 22:11:10 1999  Martin Mares  <[email protected]>
6187bed2d83SMartin Mares
6197bed2d83SMartin Mares	* lib/names.c (pci_lookup_name): When device ID lookup
6207bed2d83SMartin Mares	fails, return hexadecimal device ID instead of vendor ID.
6217bed2d83SMartin Mares	Well spotted by Axel Bodemann <[email protected]>,
6227bed2d83SMartin Mares	I've just extended the fix to subsystem ID's.
6237bed2d83SMartin Mares
6245ba3a475SMartin MaresThu Jun 17 19:48:21 1999  Martin Mares  <[email protected]>
6255ba3a475SMartin Mares
6265ba3a475SMartin Mares	* lspci.c (show_agp): Bug fix from Petr Vandrovec
6275ba3a475SMartin Mares	<[email protected]>. The command register was displayed
6285ba3a475SMartin Mares	incorrectly.
6295ba3a475SMartin Mares
6305ba3a475SMartin MaresWed Jun  2 22:42:44 1999  Martin Mares  <[email protected]>
6315ba3a475SMartin Mares
6325ba3a475SMartin Mares	* lib/proc.c (SYS_pread, SYS_pwrite): Use hard-coded
6335ba3a475SMartin Mares	numbers if not supplied by the libc.
6345ba3a475SMartin Mares
63555c815b5SMartin MaresWed May 19 13:24:39 1999  Martin Mares  <[email protected]>
63655c815b5SMartin Mares
63755c815b5SMartin Mares	* Released the whole package as version 2.0.
63855c815b5SMartin Mares
63955c815b5SMartin MaresFri May 14 22:42:02 1999  Martin Mares  <[email protected]>
64055c815b5SMartin Mares
64155c815b5SMartin Mares	* pci.ids: Added several new ID's contributed by people
64255c815b5SMartin Mares	on the linux-pci list.
64355c815b5SMartin Mares
644dec16943SMartin MaresMon Apr 19 15:21:08 1999  Jakub Jelinek  <[email protected]>
645dec16943SMartin Mares
646dec16943SMartin Mares	* lspci.c: Display I/O addresses correctly on sparc64.
647dec16943SMartin Mares	* lib/header.h: Ditto.
648dec16943SMartin Mares
649dec16943SMartin Mares	* lib/configure: On sparc set HAVE_64BIT* as well, we want
650dec16943SMartin Mares	a binary which works on both 32bit and 64bit SPARCs.
651dec16943SMartin Mares
652e33c9c7aSMartin MaresSun Apr 18 21:14:58 1999  Martin Mares  <[email protected]>
653e33c9c7aSMartin Mares
654e33c9c7aSMartin Mares	* lspci.c, lib/proc.c: Alpha compilation fixes from Matthew Jacob
655e33c9c7aSMartin Mares	<[email protected]>.
656e33c9c7aSMartin Mares
657e33c9c7aSMartin Mares	* pci.ids: A lot of updates from Adam J. Richter <[email protected]>.
658e33c9c7aSMartin Mares
659f3395cc5SMartin MaresSun Feb 28 22:26:21 1999  Martin Mares  <[email protected]>
660f3395cc5SMartin Mares
661f3395cc5SMartin Mares	* lspci.c (do_map_bus): Don't dump functions 1--7 if not flagged
662f3395cc5SMartin Mares	as a multi-function device, because several single-function devices
663f3395cc5SMartin Mares	don't decode the function bits at all.
664f3395cc5SMartin Mares
665f3395cc5SMartin MaresSun Feb 14 23:48:22 1999  Martin Mares  <[email protected]>
666f3395cc5SMartin Mares
667f3395cc5SMartin Mares	* Makefile (install): Don't use "-o root -g root" for installation
668f3395cc5SMartin Mares	since it breaks on machines where programs are not installed by root.
669f3395cc5SMartin Mares	Reported by Richard Gooch <[email protected]>
670f3395cc5SMartin Mares
671f3395cc5SMartin MaresTue Feb  9 15:54:39 1999  Martin Mares  <[email protected]>
672f3395cc5SMartin Mares
673f3395cc5SMartin Mares	* lspci.c (show_bases): Use new address masking macros and pciaddr_t.
674f3395cc5SMartin Mares
675f3395cc5SMartin Mares	* lib/pci.h: Using pciaddr_t for bus addresses, which are 32-bit
676f3395cc5SMartin Mares	or 64-bit depending on CPU.
677f3395cc5SMartin Mares
678f3395cc5SMartin Mares	* lib/pci.h (PCI_ADDR_MEM_MASK): Added macros for address masks
679f3395cc5SMartin Mares	according to bus address width.
680f3395cc5SMartin Mares
6811c31d620SMartin MaresThu Jan 28 20:54:16 1999  Martin Mares  <[email protected]>
6821c31d620SMartin Mares
6831c31d620SMartin Mares	* Released as 1.99.4.
6841c31d620SMartin Mares
6851c31d620SMartin Mares	* lspci.c: Capability list parser now recognizes both AGP
6861c31d620SMartin Mares	registers and PCI Power Management registers (the latter
6871c31d620SMartin Mares	is mainly guesswork based on DEC/Intel 21153 bridge specs
6881c31d620SMartin Mares	since I don't have the PCI Power Management document).
6891c31d620SMartin Mares
6901c31d620SMartin Mares	* lspci.c: Replaced numerous occurences of (x & flag) ? '+' : '-'
6911c31d620SMartin Mares	by FLAG macro.
6921c31d620SMartin Mares
6931c31d620SMartin Mares	* lspci.c: Added bridge checks to bus mapping code.
6941c31d620SMartin Mares
6951812a795SMartin MaresWed Jan 27 14:59:16 1999  Martin Mares  <[email protected]>
6961812a795SMartin Mares
6971812a795SMartin Mares	* lspci.c: Implemented bus mapping mode (-M).
6981812a795SMartin Mares
6991812a795SMartin Mares	* lspci.c (scan_devices): Split to scan_devices() and scan_device().
7001812a795SMartin Mares	(show): Split to show() and show_device().
7011812a795SMartin Mares
7021812a795SMartin Mares	* lib/access.c (pci_init): When a->method == PCI_ACCESS_AUTO,
7031812a795SMartin Mares	set it to the real access method afterwards.
7041812a795SMartin Mares
7051812a795SMartin MaresMon Jan 25 23:46:13 1999  Martin Mares  <[email protected]>
7061812a795SMartin Mares
7071812a795SMartin Mares	* lib/generic.c (pci_generic_fill_info): If in buscentric mode,
7081812a795SMartin Mares	don't check PCI_COMMAND for I/O and memory enables.
7091812a795SMartin Mares
710f6c86928SMartin MaresMon Jan 25 21:28:49 1999  Martin Mares  <[email protected]>
711f6c86928SMartin Mares
712f6c86928SMartin Mares	* Makefile: Added target `release' which substitutes new version
713f6c86928SMartin Mares	number to .spec, .lsm and README. Also rewrote target `dist'.
714f6c86928SMartin Mares
715f6c86928SMartin Mares	* Released as 1.99.3.
716f6c86928SMartin Mares
717b5137411SMartin MaresSun Jan 24 22:10:36 1999  Martin Mares  <[email protected]>
718b5137411SMartin Mares
719d6b297d0SMartin Mares	* lib/header.h: Until kernel adopts new layout of PCI
720d6b297d0SMartin Mares	includes (i.e., separate declaration of header structure,
721d6b297d0SMartin Mares	functions and device IDs), which is not going to happen
722d6b297d0SMartin Mares	before 2.3, we'll use our own definiton of the header.
723d6b297d0SMartin Mares
724b5137411SMartin Mares	* lspci.c (show_verbose): Display `Cap' flag in device status.
725b5137411SMartin Mares
726b5137411SMartin Mares	* lspci.c (show_htype0): Display capability lists whereever
727b5137411SMartin Mares	available. The only capability name we recognize now is `AGP'.
728b5137411SMartin Mares	Unfortunately, capabilities are stored in device-dependent
729b5137411SMartin Mares	portion of the configuration space and are thus available
730b5137411SMartin Mares	only to root unless you read a dump.
731b5137411SMartin Mares
732b5137411SMartin Mares	* lspci.c (scan_devices): Use cache instead of buffering.
733b5137411SMartin Mares
734b5137411SMartin Mares	* lib/buffer.c: Removed (obsoleted by the cache).
735b5137411SMartin Mares
736b5137411SMartin Mares	* lib/access.c: Added general caching mechanism.
737b5137411SMartin Mares
73881ce358dSMartin MaresSat Jan 23 21:30:54 1999  Martin Mares  <[email protected]>
73981ce358dSMartin Mares
74081ce358dSMartin Mares	* pci.ids: Added few devices.
74181ce358dSMartin Mares
742727ce158SMartin MaresFri Jan 22 19:29:31 1999  Martin Mares  <[email protected]>
743727ce158SMartin Mares
744727ce158SMartin Mares	* Version string is now defined in top-level Makefile, exported
745727ce158SMartin Mares	to the configure script and also substituted to man pages.
746727ce158SMartin Mares
747727ce158SMartin Mares	* lspci.c (show_bases): Rewrote displaying of 64-bit addresses.
748727ce158SMartin Mares	(show_verbose): Rewrote interrupt display logic.
749727ce158SMartin Mares
750727ce158SMartin Mares	* lib/i386-ports.c: Include sys/io.h only on glibc systems.
751727ce158SMartin Mares
752727ce158SMartin Mares	* lib/configure: Rewrote detection of Linux versions. Now it
753727ce158SMartin Mares	works on 2.0 kernels (only with direct/dump access, of course).
754727ce158SMartin Mares
755727ce158SMartin Mares	* lib/internal.h: New bytesex macros using <asm/byteorder.h>
756727ce158SMartin Mares	whenever available.
757727ce158SMartin Mares
758727ce158SMartin Mares	* lib/proc.c (proc_read, proc_write): Distinguish between short
759727ce158SMartin Mares	read/write and real errors.
760727ce158SMartin Mares
761727ce158SMartin Mares	* lspci.c (show_htype{0,1}): Always use d->dev->rom_base_addr since
762727ce158SMartin Mares	libpci respects buscentric mode automatically.
763727ce158SMartin Mares
764727ce158SMartin Mares	* lspci.c (show_hex_dump): For CardBus bridges, print out 128
765727ce158SMartin Mares	bytes of header (the whole standard part).
766727ce158SMartin Mares
767727ce158SMartin Mares	* common.c: pcilib options are now all uppercase. Also moved
768727ce158SMartin Mares	PCI access debugging option here.
769727ce158SMartin Mares
770727ce158SMartin Mares	* Released as 1.99.2.
771727ce158SMartin Mares
772727ce158SMartin MaresWed Jan 20 22:50:35 1999  Martin Mares  <[email protected]>
773727ce158SMartin Mares
774727ce158SMartin Mares	* Wrote configure script and rewrote Makefiles.
775727ce158SMartin Mares
776727ce158SMartin Mares	* Removed few unused variables.
777727ce158SMartin Mares
778727ce158SMartin MaresWed Jan 20 12:21:56 1999  Martin Mares  <[email protected]>
779727ce158SMartin Mares
780727ce158SMartin Mares	* common.c: Moved several functions used in both setpci and lspci
781727ce158SMartin Mares	here. This includes parsing of libpci-related options.
782727ce158SMartin Mares
783727ce158SMartin Mares	* More library tweaks.
784727ce158SMartin Mares
785727ce158SMartin Mares	* filter.c, names.c: Moved to library.
786727ce158SMartin Mares
787727ce158SMartin Mares	* setpci: Rewritten to use the library.
788727ce158SMartin Mares
789727ce158SMartin Mares	* Released as 1.99.1.
790727ce158SMartin Mares
791727ce158SMartin MaresTue Jan 19 23:00:12 1999  Martin Mares  <[email protected]>
792727ce158SMartin Mares
793727ce158SMartin Mares	* lspci.c (scan_devices): For cardbus bridges, read first 128
794727ce158SMartin Mares	bytes of config space to get full standard header.
795727ce158SMartin Mares
796727ce158SMartin Mares	* Makefile (CFLAGS): Removed "-Wno-unused".
797727ce158SMartin Mares
798727ce158SMartin Mares	* Started the "New Generation" branch and introduced the
799727ce158SMartin Mares	PCI library.
800727ce158SMartin Mares
801727ce158SMartin Mares	* lspci: Rewritten to use the library.
802727ce158SMartin Mares
8036ece6bc6SMartin MaresTue Jan 19 22:24:08 1999  Martin Mares  <[email protected]>
8046ece6bc6SMartin Mares
8056ece6bc6SMartin Mares	* Released as version 1.10.
8066ece6bc6SMartin Mares
8076ece6bc6SMartin MaresMon Jan 18 08:51:17 1999  Martin Mares  <[email protected]>
8086ece6bc6SMartin Mares
8096ece6bc6SMartin Mares	* lspci.8, setpci.8: Miscellaneous fixes as suggested by
8106ece6bc6SMartin Mares	Dag Wieers <[email protected]>.
8116ece6bc6SMartin Mares
8121212dd6dSMartin MaresSun Nov 29 20:05:56 1998  Martin Mares  <[email protected]>
8131212dd6dSMartin Mares
8141212dd6dSMartin Mares	* pciutils.spec (Name): Update from Krzysztof G. Baranowski.
8151212dd6dSMartin Mares
816d38471fdSMartin MaresSun Nov 22 10:49:56 1998  Martin Mares  <[email protected]>
817d38471fdSMartin Mares
818d38471fdSMartin Mares	* Makefile, pciutils.h: Moved pci.ids to /usr/share.
819d38471fdSMartin Mares
820d38471fdSMartin Mares	* Released as version 1.09.
821d38471fdSMartin Mares
822371f605bSMartin MaresWed Nov 18 15:47:05 1998  Martin Mares  <[email protected]>
823371f605bSMartin Mares
824371f605bSMartin Mares	* lspci.c (show_htype1): Fixed displaying of prefetchable memory behind
825371f605bSMartin Mares	bridge. Thanks to Petr Vandrovec <[email protected]> for bug report.
826371f605bSMartin Mares
82710be47abSMartin MaresFri Oct 23 18:59:19 1998  Martin Mares  <[email protected]>
82810be47abSMartin Mares
82910be47abSMartin Mares	* setpci.c: Don't include <syscall-list.h> with glibc >= 2.1.
83010be47abSMartin Mares
831472bd340SMartin MaresMon Oct 19 21:53:30 1998  Martin Mares  <[email protected]>
832472bd340SMartin Mares
833472bd340SMartin Mares	* Released as version 1.08.
834472bd340SMartin Mares
835472bd340SMartin Mares	* setpci.c: glibc 2.1.x already defines pread() and pwrite().
836472bd340SMartin Mares
837472bd340SMartin Mares	* lspci.8: Changed warning about lspci -xxx.
838472bd340SMartin Mares
839472bd340SMartin Mares	* lspci.c: Require "-xxx" for full configuration space dump, so that
840472bd340SMartin Mares	it's impossible to crash the machine by single typo.
841472bd340SMartin Mares
842472bd340SMartin Mares	* specs: Added (courtesy of Krzysztof G. Baranowski <[email protected]>).
843472bd340SMartin Mares
844072c77e5SMartin MaresWed Sep  9 12:03:24 1998  Martin Mares  <[email protected]>
845072c77e5SMartin Mares
846072c77e5SMartin Mares	* lspci.c (show_bases): Better displaying of unassigned and
847072c77e5SMartin Mares	disabled bases. Thanks to Gabriel Paubert <[email protected]>
848072c77e5SMartin Mares	for an idea.
849072c77e5SMartin Mares
850b7554856SMartin MaresWed Sep  2 10:58:01 1998  Martin Mares  <[email protected]>
851b7554856SMartin Mares
852b7554856SMartin Mares	* setpci.c (pread): Recognize glibc 1.99 numbered as 2.0 on the PPC.
853b7554856SMartin Mares	(thanks to Geert Uytterhoeven for finding this out)
854b7554856SMartin Mares
855ce503b7fSMartin MaresFri Jul 17 10:43:30 1998  Martin Mares  <[email protected]>
856ce503b7fSMartin Mares
857ce503b7fSMartin Mares	* lspci.c (show_verbose): Print subsystem ID using the new resolver.
858ce503b7fSMartin Mares	(show_machine): Print subsystem ID.
859ce503b7fSMartin Mares
860ce503b7fSMartin Mares	* names.c: New name resolution engine supporting subsystem IDs.
861ce503b7fSMartin Mares
862ce503b7fSMartin Mares	* Released as version 1.07.
863ce503b7fSMartin Mares
86496e4f295SMartin MaresWed Jul 15 15:37:21 1998  Martin Mares  <[email protected]>
86596e4f295SMartin Mares
86696e4f295SMartin Mares	* lspci.c (show_htype2 etc.): Displaying of CardBus headers.
86796e4f295SMartin Mares	(show_bases): Honor the `cnt' argument.
86896e4f295SMartin Mares	(grow_tree): Parse CardBus headers in tree mode as well.
86996e4f295SMartin Mares
87096e4f295SMartin Mares	* pci.h: Updated CardBus header field description. I still don't
87196e4f295SMartin Mares	have the CardBus standard available, but OZ6832 specs contain
87296e4f295SMartin Mares	full description of all header fields supported by the chip.
87396e4f295SMartin Mares
8746ae3650aSMartin MaresTue Jun  9 22:53:59 1998  Martin Mares  <[email protected]>
8756ae3650aSMartin Mares
876304f9a0bSMartin Mares	* Released as 1.06.
877304f9a0bSMartin Mares
8786ae3650aSMartin Mares	* names.c (parse_name_list): Killed an unused variable.
8796ae3650aSMartin Mares
8806ae3650aSMartin Mares	* setpci.c (pread, pwrite): Define SYS_(pread|pwrite) as __NR_\1
8816ae3650aSMartin Mares	if they are not defined by glibc (needed for glibc built on older
8826ae3650aSMartin Mares	kernels). Ugly.
8836ae3650aSMartin Mares
8846ae3650aSMartin Mares	* setpci.c (exec_op): Fixed error messages. Thanks, Steve!
8856ae3650aSMartin Mares
8864b88a6b8SMartin MaresMon Jun  8 10:59:22 1998  Martin Mares  <[email protected]>
8874b88a6b8SMartin Mares
8884b88a6b8SMartin Mares	* Released as 1.05.
8894b88a6b8SMartin Mares
8904b88a6b8SMartin Mares	* setpci.c: Problems with pread()/pwrite() with glibc on Alpha
8914b88a6b8SMartin Mares	should be gone. Again thanks to Steve for bug report.
8924b88a6b8SMartin Mares
8934b88a6b8SMartin Mares	* filter.c (filter_parse_slot): Fixed ":x" type filters.
8944b88a6b8SMartin Mares
8954b88a6b8SMartin Mares	* pci.ids: Killed duplicate entry. Thanks to Stephen Williams
8964b88a6b8SMartin Mares	<[email protected]> for reporting this.
8974b88a6b8SMartin Mares
8984b88a6b8SMartin MaresSun Jun  7 19:27:51 1998  Martin Mares  <[email protected]>
8994b88a6b8SMartin Mares
9004b88a6b8SMartin Mares	* lspci.c (main), setpci.c (main): Implemented "--version".
9014b88a6b8SMartin Mares
9024b88a6b8SMartin Mares	* Released as 1.04.
9034b88a6b8SMartin Mares
9044b88a6b8SMartin Mares	* pciutils.h (PCIUTILS_VERSION): Added version string.
9054b88a6b8SMartin Mares
9064b88a6b8SMartin Mares	* filter.c, names.c: Extraneous #include <linux/pci.h> removed.
9074b88a6b8SMartin Mares	Thanks to Geert Uytterhoeven <[email protected]>
9084b88a6b8SMartin Mares	for bug report.
9094b88a6b8SMartin Mares
9109b306998SMartin MaresThu May 28 14:45:58 1998  Martin Mares  <[email protected]>
9119b306998SMartin Mares
9129b306998SMartin Mares	* pci.ids: More updates from Jens Maurer.
9139b306998SMartin Mares
914b372672fSMartin MaresWed Apr 22 10:00:39 1998  Martin Mares  <[email protected]>
915b372672fSMartin Mares
916b372672fSMartin Mares	* pci.ids: Updates from Jens Maurer.
917b372672fSMartin Mares
918b2c9b373SMartin MaresSun Apr 19 11:14:25 1998  Martin Mares  <[email protected]>
919b2c9b373SMartin Mares
920b372672fSMartin Mares	* Released as 1.03.
921b372672fSMartin Mares
922b2c9b373SMartin Mares	* setpci.8: Written.
923b2c9b373SMartin Mares
924b2c9b373SMartin Mares	* setpci.c: Finished.
925b2c9b373SMartin Mares
926b2c9b373SMartin Mares	* lspci.c: Now able to fetch expansion ROM base from kernel device list
927b2c9b373SMartin Mares	and print it if not in buscentric mode.
928b2c9b373SMartin Mares
929e4842ff3SMartin MaresTue Mar 31 23:11:57 1998  Martin Mares  <[email protected]>
930e4842ff3SMartin Mares
931e4842ff3SMartin Mares	* setpci.c: Added.
932e4842ff3SMartin Mares
933e4842ff3SMartin MaresSun Mar 22 15:39:08 1998  Martin Mares  <[email protected]>
934e4842ff3SMartin Mares
935e4842ff3SMartin Mares	* lspci.8: Updated the documentation.
936e4842ff3SMartin Mares
937e4842ff3SMartin Mares	* lspci.c: Modified to use the new filtering mechanism (options -f and -d).
938e4842ff3SMartin Mares
939e4842ff3SMartin Mares	* filter.c: Introduced new generic device filter.
940e4842ff3SMartin Mares
941008407bdSMartin MaresThu Mar 19 17:03:48 1998  Martin Mares  <[email protected]>
942008407bdSMartin Mares
943008407bdSMartin Mares	* lspci.c (grow_tree, show_tree_dev, print_it): Fixed displaying
944008407bdSMartin Mares	of PCI-to-PCI bridges in the tree format.
945008407bdSMartin Mares
9460a33d0ecSMartin MaresSun Feb 15 10:12:25 1998  Martin Mares  <[email protected]>
9470a33d0ecSMartin Mares
9480a33d0ecSMartin Mares	* lspci.c (show_machine): Added non-verbose mode of machine-readable
9490a33d0ecSMartin Mares	dump.
9500a33d0ecSMartin Mares
9510a33d0ecSMartin Mares	* pci.ids: Updates from Jens Maurer.
9520a33d0ecSMartin Mares
9530a33d0ecSMartin Mares	* Released as version 1.02.
9540a33d0ecSMartin Mares
9550a33d0ecSMartin MaresThu Feb 12 16:53:28 1998  Martin Mares  <[email protected]>
9560a33d0ecSMartin Mares
9570a33d0ecSMartin Mares	* lspci.c: Added a "-m" switch for dumping machine-readable
9580a33d0ecSMartin Mares	configuration data (requested by Bjoern Kriews <[email protected]>).
9590a33d0ecSMartin Mares
960fb38eee8SMartin MaresMon Feb  9 13:17:43 1998  Martin Mares  <[email protected]>
961fb38eee8SMartin Mares
962fb38eee8SMartin Mares	* Makefile, pciutils.h: Include local pci.h instead of <linux/pci.h>
963fb38eee8SMartin Mares	if available. This should avoid all problems with official kernel
964fb38eee8SMartin Mares	not synchronized to newer PCI code in CVS -- standard distribution
965fb38eee8SMartin Mares	of pciutils now contains pci.h from current CVS kernel, pciutils
966fb38eee8SMartin Mares	in CVS contain no pci.h and use the correct kernel include.
967fb38eee8SMartin Mares
968fb38eee8SMartin Mares	* Makefile: Fixed installation path for man pages.
969fb38eee8SMartin Mares
9702f48f637SMartin MaresSat Feb  7 15:15:46 1998  Martin Mares  <[email protected]>
9712f48f637SMartin Mares
9722f48f637SMartin Mares	* README: Updated.
9732f48f637SMartin Mares
9742f48f637SMartin Mares	* lspci.8: Created a man page.
9752f48f637SMartin Mares
9762f48f637SMartin Mares	* Releasing as version 1.0.
9772f48f637SMartin Mares
9782f48f637SMartin MaresTue Feb  3 20:56:00 1998  Martin Mares  <[email protected]>
9792f48f637SMartin Mares
9802f48f637SMartin Mares	* Makefile: Recognize architecture by calling uname and pass it as ARCH_xxx
9812f48f637SMartin Mares	to all the C sources. This should eliminate problems with 32-bit compilers
9822f48f637SMartin Mares	on sparc64.
9832f48f637SMartin Mares
9842f48f637SMartin Mares	* lspci.c (show_verbose): Recognize CardBus bridge header type.
9852f48f637SMartin Mares	(show_htype2): Stub routine.
9862f48f637SMartin Mares	(scan_config): Write sensible error message if the kernel denies reading of
9872f48f637SMartin Mares	upper part of the PCI config space.
988