xref: /pciutils/ChangeLog (revision f701ff47)
18fc75dbcSMartin Mares2003-12-27  Martin Mares  <[email protected]>
28fc75dbcSMartin Mares
3*f701ff47SMartin Mares	Merged bug fixes from Debian patches:
4*f701ff47SMartin Mares
5*f701ff47SMartin Mares	* lspci.c (show_verbose): "Cache Line Size" should be capitalized.
6*f701ff47SMartin Mares
7*f701ff47SMartin Mares	* lspci.c (show_pcix_nobridge): Added a missing newline.
8*f701ff47SMartin Mares
92240db8cSMartin Mares	* lib/proc.c (proc_scan): When reading the header type, don't
102240db8cSMartin Mares	forget to clear the topmost bit indicating that the device has
11*f701ff47SMartin Mares	multiple functions.
122240db8cSMartin Mares
132240db8cSMartin Mares2003-12-27  Martin Mares  <[email protected]>
142240db8cSMartin Mares
1545902995SMartin Mares	Updated the FreeBSD port. Thanks to Samy Al Bahra <[email protected]>
1645902995SMartin Mares	for the patches:
1745902995SMartin Mares
1845902995SMartin Mares	* lib/Makefile: Add ${FREEBSD_SYS} to the include path if it's defined.
1945902995SMartin Mares	* lib/fbsd-device.c: Select the right set of system includes according
2045902995SMartin Mares	to __FreeBSD_version.
2145902995SMartin Mares
2245902995SMartin Mares2003-12-27  Martin Mares  <[email protected]>
2345902995SMartin Mares
248fc75dbcSMartin Mares	Merged support for Solaris on i386 by Bill Moore <[email protected]>
258fc75dbcSMartin Mares	and cleaned up:
268fc75dbcSMartin Mares
278fc75dbcSMartin Mares	* lib/configure: Recognize SunOS.
288fc75dbcSMartin Mares	* lib/internal.h: Learn how to recognize byte order on SunOS.
298fc75dbcSMartin Mares	* lib/i386-ports.c: Split OS-dependent I/O port access from i386-ports.c.
308fc75dbcSMartin Mares	* lib/i386-io-linux.h: Linux specific part.
318fc75dbcSMartin Mares	* lib/i386-io-hurd.h: GNU/Hurd specific part.
328fc75dbcSMartin Mares	* lib/i386-io-sunos.h: SunOS specific part.
338fc75dbcSMartin Mares
349739916eSMartin Mares2003-12-26  Martin Mares  <[email protected]>
359739916eSMartin Mares
369739916eSMartin Mares	* lib/header.h (PCI_*_MASK): Cast to pciaddr_t explicitly.
379739916eSMartin Mares
389739916eSMartin Mares	* lib/pci.h: Types declared in <sys/types.h> should be usable on all
399739916eSMartin Mares	platforms we currently support, so kill the forest of #ifdef's and
409739916eSMartin Mares	use them in all cases.
419739916eSMartin Mares
429739916eSMartin Mares	* lib/pci.h: Use ULONG_MASK to decide whether we should use long
439739916eSMartin Mares	or long long to represent a 64-bit address. Killed HAVE_LONG_ADDRESS.
449739916eSMartin Mares	Define format strings for addresses, port numbers and IRQ numbers
459739916eSMartin Mares	directly in pci.h.
469739916eSMartin Mares
479739916eSMartin Mares	* lib/proc.c (proc_scan): Use PCIADDR_T_FMT for scanf'ing addresses.
489739916eSMartin Mares
4980459c65SMartin Mares2003-12-26  Marco Gerards  <[email protected]>
5080459c65SMartin Mares
5180459c65SMartin Mares	Added support for the GNU Hurd (cleaned up by Martin Mares):
5280459c65SMartin Mares
5380459c65SMartin Mares	* lib/configure [GNU]: Use the i386 ports for configuration access.
5480459c65SMartin Mares	* lib/i386-ports.c: Don't call iopl() on the Hurd.
5580459c65SMartin Mares	* lib/pci.h [OS_GNU]: Include <sys/types.h> and use it for defining
5680459c65SMartin Mares	u8 to u32.
5780459c65SMartin Mares
58a85769a8SMartin Mares2003-12-26  Martin Mares  <[email protected]>
59a85769a8SMartin Mares
607dacd9c8SMartin Mares	* lspci.c (show_pcix_bridge, show_pcix_nobridge): Don't forget to call
617dacd9c8SMartin Mares	config_fetch() to ensure that the registers have been read. Thanks to
627dacd9c8SMartin Mares	Bill Wood <[email protected]> for the patch.
637dacd9c8SMartin Mares
647dacd9c8SMartin Mares	* lspci.c: Ensure that failure of config_fetch() is handled correctly
657dacd9c8SMartin Mares	at all places.
667dacd9c8SMartin Mares
674063c31cSMartin Mares	* lspci.man: There was one more explicit reference to /usr/share/pci.ids.
684063c31cSMartin Mares	Changed to @SHAREDIR@. Patch from Maciej W. Rozycki <[email protected]>.
694063c31cSMartin Mares
703fe8a38dSMartin Mares	* setpci.c (main): Better error messages.
713fe8a38dSMartin Mares
725f5b1a7bSMartin Mares	* setpci.c (ex_op): The demo mode should disable only writing, not reading.
735f5b1a7bSMartin Mares
745f5b1a7bSMartin Mares	* setpci.man: The documentation was inconsistent on what should -D do.
755f5b1a7bSMartin Mares	Document the new behaviour.
76b251f40bSMartin Mares
7791e37a49SMartin Mares	* pciutils.h, common.c, setpci.c: Introduced a NONRET macro encapsulating
7891e37a49SMartin Mares	the GCC specific __attribute__((noreturn)) and killed the hack with
7991e37a49SMartin Mares	redefining __attribute__ on non-GCC compilers.
8091e37a49SMartin Mares
814afd29d3SMartin Mares	* Makefile: Added missing dependencies. Parallel builds work now.
824afd29d3SMartin Mares	Problem reported by Andreas Haumer <[email protected]>, but I chose
834afd29d3SMartin Mares	a different fix.
844afd29d3SMartin Mares
85b0f1a03bSMartin Mares	* Makefile (MANDIR): Use `:=' instead of `=' to avoid executing the shell
86b0f1a03bSMartin Mares	command every time $(MANDIR) is referenced.
87b0f1a03bSMartin Mares
88b7fd8e19SMartin Mares	* lspci.c (main): The error message for `lspci -s' incorrectly mentioned
89b7fd8e19SMartin Mares	a `-f' switch. Reported by Steve Finney <[email protected]>.
90b7fd8e19SMartin Mares
9105bb10a2SMartin Mares	* lib/generic.c: Removed memory leak in pci_generic_bus_scan().
9205bb10a2SMartin Mares	Reported by Gary Parnes <[email protected]>.
9305bb10a2SMartin Mares
94a832f6f1SMartin Mares	* Replaced obsolete syntax of __attribute__((unused)) in the middle of
95a832f6f1SMartin Mares	parameter declarations (which is no longer supported by GCC 3.1) by the
96a832f6f1SMartin Mares	current syntax (attribute at the end). Thanks to [email protected]
97a832f6f1SMartin Mares	for reporting this problem.
98a832f6f1SMartin Mares
99a85769a8SMartin Mares	* Removed CVS $Id$ tags from all files.
100a85769a8SMartin Mares
101a85769a8SMartin Mares	* Makefile: Added some more warnings.
102a85769a8SMartin Mares
103b7351143SMartin Mares	* setpci.c: Cleaned up mask/value code.
104b7351143SMartin Mares
105b7351143SMartin Mares2003-12-08 Thayne Harbaugh <[email protected]>
106b7351143SMartin Mares
107b7351143SMartin Mares	* setpci.c: Individual bits to be set can be specified as <value>:<mask>.
108b7351143SMartin Mares
1092a5d5cf9SMartin Mares2003-11-29  Martin Mares  <[email protected]>
1102a5d5cf9SMartin Mares
1112a5d5cf9SMartin Mares	* Imported the pciutils sources to my Arch repository. Good-bye, CVS.
1122a5d5cf9SMartin Mares
113d772ef15SMartin Mares2003-01-04  Martin Mares  <[email protected]>
114d772ef15SMartin Mares
1151b95f396SMartin Mares	* Released as 2.1.11.
1161b95f396SMartin Mares
117c83293ebSMartin Mares	* Makefile: Changed configuration of installation directories --
118c83293ebSMartin Mares	all paths are now set at the top of the Makefile instead of being
119c83293ebSMartin Mares	scattered between the installation rules. The default installation
120c83293ebSMartin Mares	now goes always to /usr/local regardless of the OS as most distributions
121c83293ebSMartin Mares	already contain some version of pciutils and we don't want custom
122c83293ebSMartin Mares	installations to interfere with the default ones.
123c83293ebSMartin Mares
124c83293ebSMartin Mares	* Makefile: Removed a couple of ancient install hacks: we no longer
125c83293ebSMartin Mares	try to avoid overwriting a newer pci.ids file (users are now expected
126c83293ebSMartin Mares	to use update-ids) and we don't try to remove /etc/pci.ids (a long time
127c83293ebSMartin Mares	has passed since the last version which used it).
128c83293ebSMartin Mares
129e2875dcdSMartin Mares	* Makefile: Paths to pci.ids in man pages automatically get the right path.
130e2875dcdSMartin Mares
1311b95f396SMartin Mares	* Added the update-ids utility.
1320138a2a7SMartin Mares
133d772ef15SMartin Mares	* lib: Removed partially implemented "syscall" access method which will
134d772ef15SMartin Mares	probably never be needed.
135d772ef15SMartin Mares
136eb620239SMartin Mares2002-12-27  Martin Mares  <[email protected]>
137eb620239SMartin Mares
138130090bdSMartin Mares	* lib/nbsd-libpci.c: Cleaned up and hopefully made it endian safe.
139130090bdSMartin Mares
140eb620239SMartin Mares	* lib/generic.c (pci_generic_scan_bus): Added work-around for devices with
141eb620239SMartin Mares	discontiguous numbering of functions. This is already present in the Linux
142eb620239SMartin Mares	kernel for several years, but I forgot to update pciutils as well.
143eb620239SMartin Mares
144848b4347SMartin Mares2002-12-26  Martin Mares  <[email protected]>
145848b4347SMartin Mares
146579b19ffSMartin Mares	* lib/header.h, lspci.c: Dump AGP3 flags and speeds.
147579b19ffSMartin Mares
148579b19ffSMartin Mares	* lib/pci.h, Makefile: Removed HAVE_OWN_HEADER_H. Always use our own header,
149579b19ffSMartin Mares	there is no reason to prefer the kernel version.
150579b19ffSMartin Mares
151579b19ffSMartin Mares	* lib/proc.c (proc_scan): Don't forget to initialize hdrtype.
152579b19ffSMartin Mares
153848b4347SMartin Mares	* Added preliminary version of NetBSD support by Quentin Garnier
154848b4347SMartin Mares	<[email protected]>.
155848b4347SMartin Mares
156f0952474SMartin Mares2002-04-06  Martin Mares  <[email protected]>
157f0952474SMartin Mares
158f0952474SMartin Mares	* lspci.c: Mention "-xxx" in the help.
159f0952474SMartin Mares
160d2f666f1SMartin Mares2002-03-30  Martin Mares  <[email protected]>
161d2f666f1SMartin Mares
1629bd44bb0SMartin Mares	* Released as 2.1.10.
1639bd44bb0SMartin Mares
164a33d0eb7SMartin Mares	* Removed pci.ids from the CVS as they are now maintained separately.
165a33d0eb7SMartin Mares	They are still included in the tarball, but if you are building	pciutils
166a33d0eb7SMartin Mares	from CVS sources or you want to get a newer ID file than the one distributed,
167a33d0eb7SMartin Mares	just use "make update-ids" to download the most recent snapshot from
168a33d0eb7SMartin Mares	pciids.sf.net.
169a33d0eb7SMartin Mares
170a33d0eb7SMartin Mares	* Makefile, README: Updated accordingly.
171a33d0eb7SMartin Mares
172a33d0eb7SMartin Mares	* Makefile: Added a couple of maintenance targets.
173a33d0eb7SMartin Mares
174a33d0eb7SMartin Mares	* maint/*: Maintainer's utilities now reside here (present only in CVS,
175a33d0eb7SMartin Mares	not in the tarball).
176a33d0eb7SMartin Mares
177d2f666f1SMartin Mares	* lib/names.c (parse_name_list): End-of-line comments are no longer
178d2f666f1SMartin Mares	supported. Hashes are now perfectly valid in all names and they start
179d2f666f1SMartin Mares	a comment only at the start of the line.
180d2f666f1SMartin Mares
181ee551b73SMartin Mares2002-03-26  Martin Mares  <[email protected]>
182ee551b73SMartin Mares
18307159913SMartin Mares	* README: Rewritten.
18407159913SMartin Mares
185ee551b73SMartin Mares	* Makefile: When the currently installed pci.ids file is newer than
186ee551b73SMartin Mares	the version to be installed, don't overwrite it. Suggested by
187ee551b73SMartin Mares	Jean Delvare <[email protected]>.
188ee551b73SMartin Mares
189bc7b1d62SMartin Mares2002-03-24  Martin Mares  <[email protected]>
190bc7b1d62SMartin Mares
1915f5e6f64SMartin Mares	* lspci.c (show_pcix_bridge): Added PCI-X capability display.
1925f5e6f64SMartin Mares	Contributed by Jeff Garzik <[email protected]>.
1935f5e6f64SMartin Mares
1945f5e6f64SMartin Mares	* lib/header.h: Added PCI-X stuff. Again by Jeff.
1955f5e6f64SMartin Mares
1965f5e6f64SMartin Mares	* Makefile (CFLAGS): -Werror is gone.
1975f5e6f64SMartin Mares
198a1052f16SMartin Mares	* lspci.c (format_agp_rate): Fixed AGP rate reporting.
199a1052f16SMartin Mares
200bc7b1d62SMartin Mares	* lib/filter.c (pci_filter_parse_slot): Allow bus 0xff, slot 0x1f and
201bc7b1d62SMartin Mares	function 7.
202bc7b1d62SMartin Mares
203bc7b1d62SMartin Mares	* lib/names.c (pci_lookup_name): When printing unknown subsystem vendor
204bc7b1d62SMartin Mares	or device hexadecimally, don't confuse it with chip vendor/device ID.
205bc7b1d62SMartin Mares	First reported by Marc Boucher <[email protected]>.
206bc7b1d62SMartin Mares
207f793990cSMartin Mares2001-11-04  Martin Mares  <[email protected]>
208f793990cSMartin Mares
209ee551b73SMartin Mares	* Released as 2.1.9.
210ee551b73SMartin Mares
211f793990cSMartin Mares	* pci.ids: Synced with the PCI ID Repository at SourceForge
212f793990cSMartin Mares	(http://pciids.sourceforge.net/).
213f793990cSMartin Mares
2141d174e56SMartin Mares2000-08-25  Martin Mares  <[email protected]>
2151d174e56SMartin Mares
2161d174e56SMartin Mares	* pci.ids: Updated ID's, synced with kernel 2.4.0-test7.
2171d174e56SMartin Mares
21865b4327eSMartin Mares2000-06-13  Martin Mares  <[email protected]>
21965b4327eSMartin Mares
22065b4327eSMartin Mares	* Makefile (uninstall): Fixed.
22165b4327eSMartin Mares
22265b4327eSMartin Mares	* pci.ids: ID updates.
22365b4327eSMartin Mares
2244a219d5fSMartin Mares2000-05-20  Martin Mares  <[email protected]>
2254a219d5fSMartin Mares
2264a219d5fSMartin Mares	* Released as 2.1.8.
2274a219d5fSMartin Mares
2284a219d5fSMartin Mares	* pci.ids: ID updates.
2294a219d5fSMartin Mares
2304a219d5fSMartin Mares	* lspci.c (show_verbose): Min/max latency is now printed in nanoseconds.
2314a219d5fSMartin Mares
2324a219d5fSMartin Mares2000-05-04  Martin Mares  <[email protected]>
2334a219d5fSMartin Mares
2344a219d5fSMartin Mares	* lspci.c (show_verbose): If the header type doesn't match device
2354a219d5fSMartin Mares	class, just print a warning and still use the header type, assuming
2364a219d5fSMartin Mares	bogus class info.
2374a219d5fSMartin Mares
23810c90662SMartin Mares2000-05-01  Martin Mares  <[email protected]>
23910c90662SMartin Mares
24072b9b690SMartin Mares	* lspci.c (show_pm): Updated according to PCI PM specs 1.1.
24172b9b690SMartin Mares
24210c90662SMartin Mares	* pci.ids: Updated Contemporary Control ARCnet card entries.
24310c90662SMartin Mares
24410c90662SMartin Mares	* pci.ids: Synchronized class list with latest PCI SIG documents.
24510c90662SMartin Mares
246a239ade6SMartin Mares2000-04-29  Martin Mares  <[email protected]>
247a239ade6SMartin Mares
248a239ade6SMartin Mares	* lib/names.c (pci_lookup_name): Fixed the cheat.
249a239ade6SMartin Mares
250a239ade6SMartin Mares	* lib/internal.h: Moved UNUSED/inline hacks above all other declarations.
251a239ade6SMartin Mares
252a239ade6SMartin Mares	* pci.ids: Various ID updates.
253a239ade6SMartin Mares
2542c83b860SMartin Mares2000-04-21  Martin Mares  <[email protected]>
2552c83b860SMartin Mares
2562c83b860SMartin Mares	* Released as 2.1.7.
2572c83b860SMartin Mares
2582c83b860SMartin Mares	* pciutils.spec: Added German description.
2592c83b860SMartin Mares
2602c83b860SMartin Mares	* lib/names.c (pci_lookup_name): Added a cheat for case that subsystem ID's
2612c83b860SMartin Mares	are the same as device ID and just output subsystem name according to
2622c83b860SMartin Mares	device name.
2632c83b860SMartin Mares
2642c83b860SMartin Mares	* lib/proc.c: Use UNUSED instead of __attribute__((unused)).
2652c83b860SMartin Mares
2662c83b860SMartin Mares	* lib/pci.h: Added the correct typedefs for AIX.
2672c83b860SMartin Mares
2682c83b860SMartin Mares	* lib/generic.c (pci_generic_scan_bus): Export.
2692c83b860SMartin Mares
2702c83b860SMartin Mares	* lib/configure: Detect AIX. Use "echo '...\c'" instead of
2712c83b860SMartin Mares	"echo -n" if the shell isn't bash.
2722c83b860SMartin Mares
2732c83b860SMartin Mares	* lspci.c: Avoid using alloca() if not compiled by GCC.
2742c83b860SMartin Mares	(insert_dev): Avoid returning a void value.
2752c83b860SMartin Mares
2762c83b860SMartin Mares	* Makefile: Choose which install utility to use according to
2772c83b860SMartin Mares	OS type. Also use `-o' instead of `-or' in find arguments.
2782c83b860SMartin Mares	Part of the AIX port.
2792c83b860SMartin Mares
2802c83b860SMartin Mares	* lib/aix-device.c: Added AIX low-level interface. Contributed
2812c83b860SMartin Mares	by Dave Johnson <[email protected]>, thanks a lot!
2822c83b860SMartin Mares
2832c83b860SMartin Mares	* pci.ids: Few new ID's.
2842c83b860SMartin Mares
2852c83b860SMartin Mares	* pciutils.h, lib/internal.h: Redefine __attribute__ and inline
2862c83b860SMartin Mares	when not compiled by GCC.
2872c83b860SMartin Mares
288c1a828daSMartin Mares2000-04-17  Martin Mares  <[email protected]>
289c1a828daSMartin Mares
290c1a828daSMartin Mares	* Released as 2.1.6.
291c1a828daSMartin Mares
292c1a828daSMartin Mares	* pci.ids: Added a large batch of ID's contributed by Gunther
293c1a828daSMartin Mares	Mayer <[email protected]> and synced the
294c1a828daSMartin Mares	list with the 2.3.99pre6 kernel.
295c1a828daSMartin Mares
296e91dd3abSMartin MaresThu Mar  9 13:11:39 2000  Martin Mares  <[email protected]>
297e91dd3abSMartin Mares
298a80b79a9SMartin Mares	* lib/example.c: Added a simple example of how to use
299a80b79a9SMartin Mares	the library.
300a80b79a9SMartin Mares
30189984232SMartin Mares	* lspci.man, setpci.man: Revealed --version. Well spotted
30289984232SMartin Mares	by Adam Sulmicki.
30389984232SMartin Mares
304e91dd3abSMartin Mares	* pci.ids: Added lots of new ID's and synced with 2.3.50.
305e91dd3abSMartin Mares
30678d9c5e2SMartin MaresTue Feb 15 00:16:21 2000  Martin Mares  <[email protected]>
30778d9c5e2SMartin Mares
30878d9c5e2SMartin Mares	* Released as 2.1.5.
30978d9c5e2SMartin Mares
31078d9c5e2SMartin Mares	* pciutils.spec: Updated spec file from Andreas Jaeger. Now using
31178d9c5e2SMartin Mares	%{_mandir} to find the right location to install manual pages to.
31278d9c5e2SMartin Mares
31378d9c5e2SMartin Mares	* pci.ids: New ID's.
31478d9c5e2SMartin Mares
31578d9c5e2SMartin Mares	* setpci.c (main): Don't crash when `-s' or `-d' is given with
31678d9c5e2SMartin Mares	no argument.
31778d9c5e2SMartin Mares
318f8141ae2SMartin MaresMon Jan 24 20:04:11 2000  Andreas Jaeger  <[email protected]>
319f8141ae2SMartin Mares
320f8141ae2SMartin Mares	* lib/i386-ports.c: Include <asm/io.h> only on systems without
321f8141ae2SMartin Mares	glibc.
322f8141ae2SMartin Mares
323f8141ae2SMartin MaresMon Jan 24 11:24:43 2000  Martin Mares  <[email protected]>
324f8141ae2SMartin Mares
325f8141ae2SMartin Mares	* Makefile: Modified to work with the Linux FHS brain-damaged idea
326f8141ae2SMartin Mares	of putting man pages to /usr/share/man. Now we choose either /usr/man
327f8141ae2SMartin Mares	or /usr/share/man depending on which one exists.
328f8141ae2SMartin Mares
32959e76e8bSMartin MaresSun Jan 23 10:52:34 2000  Martin Mares  <[email protected]>
33059e76e8bSMartin Mares
33159e76e8bSMartin Mares	* pci.ids: Synced with Linux 2.3.40.
33259e76e8bSMartin Mares
33359e76e8bSMartin Mares	* Released as version 2.1.4.
33459e76e8bSMartin Mares
3352dfd48cdSMartin MaresThu Jan 20 11:08:32 2000  Martin Mares  <[email protected]>
3362dfd48cdSMartin Mares
3372715403fSMartin Mares	* lspci.c (scan_device): Fixed bug in reading of cardbus extensions.
3382715403fSMartin Mares
33981077814SMartin Mares	* lib/proc.c: pread/pwrite fixed again, this time on libc5 :(
34081077814SMartin Mares
34181077814SMartin Mares	* lspci.c (format_agp_rate): Better formatting of AGP rates.
34281077814SMartin Mares
34381077814SMartin Mares	* pci.ids: New ID's.
34481077814SMartin Mares
3452dfd48cdSMartin Mares	* lib/configure: Added configuration for ia64 (the same as for Alpha).
3462dfd48cdSMartin Mares	Patch from Stephane Eranian <[email protected]>.
3472dfd48cdSMartin Mares
3485a258860SMartin MaresThu Jan 13 23:01:52 2000  Martin Mares  <[email protected]>
3495a258860SMartin Mares
3505a258860SMartin Mares	* Released as version 2.1.3.
3515a258860SMartin Mares
3525a258860SMartin Mares	* pci.ids: New ID's.
3535a258860SMartin Mares
3545a258860SMartin Mares	* lspci.c: Alpha IO_FORMAT fix by Andrea Arcangeli.
3555a258860SMartin Mares
3565a258860SMartin Mares	* lib/access.c: Corrected order of access methods -- it's wonderful how
3575a258860SMartin Mares	long could such a bug remain unspotted. Thanks go to Andreas Schockenhoff.
3585a258860SMartin Mares
3590c047bbeSMartin MaresSat Dec 11 23:34:48 1999  Martin Mares  <[email protected]>
3600c047bbeSMartin Mares
3610c047bbeSMartin Mares	* Released as version 2.1.2.
3620c047bbeSMartin Mares
3630c047bbeSMartin Mares	* lib/names.c (pci_lookup_name): Fixed printing of unknown subsystem ID's.
3640c047bbeSMartin Mares
36533bc28a5SMartin MaresSat Dec  4 13:11:03 1999  Martin Mares  <[email protected]>
36633bc28a5SMartin Mares
36739231205SMartin Mares	* Released as version 2.1.1.
36839231205SMartin Mares
36933bc28a5SMartin Mares	* pci.ids: Several new ID's.
37033bc28a5SMartin Mares
37133bc28a5SMartin Mares	* setpci.c (exec_op): Don't forget to increment address after writing
37233bc28a5SMartin Mares	single value, so that `30.b=12,34,56,78' works as expected. Reported
37333bc28a5SMartin Mares	by Petr Soucek <[email protected]>.
37433bc28a5SMartin Mares
3758d047897SMartin MaresWed Nov  3 10:24:38 1999  Martin Mares  <[email protected]>
3768d047897SMartin Mares
3778d047897SMartin Mares	* lspci.c (show_terse): If prog-if is zero, but it's present in the
3788d047897SMartin Mares	ID list, show it.
3798d047897SMartin Mares
3806afc6538SMartin MaresSat Oct 30 11:06:35 1999  Martin Mares  <[email protected]>
3816afc6538SMartin Mares
3826afc6538SMartin Mares	* Released as version 2.1.
3836afc6538SMartin Mares
3846afc6538SMartin Mares	* pci.ids: Synced to devlist.h in 2.3.24 kernel. Merged in
3856afc6538SMartin Mares	lots of contributed entries.
3866afc6538SMartin Mares
3878f756113SMartin MaresThu Oct 14 10:40:12 1999  Dave Jones    <[email protected]>
3888f756113SMartin Mares
3898f756113SMartin Mares	* pci.ids: Added lots of subsystem definitions.
3908f756113SMartin Mares
391d4798a32SMartin MaresSat Oct  9 14:32:28 1999  Martin Mares  <[email protected]>
392d4798a32SMartin Mares
393d4798a32SMartin Mares	* setpci.man: Better example.
394d4798a32SMartin Mares
395d4798a32SMartin Mares	* lspci.c: Resolve prog-if names.
396d4798a32SMartin Mares
397d4798a32SMartin Mares	* lib/names.c: Adapted to new pci.ids syntax.
398d4798a32SMartin Mares
399d4798a32SMartin Mares	* pci.ids: Reorganized the pci.ids file. Subsystems are listed
400d4798a32SMartin Mares	under devices, classes can optionally contain prog-if information.
401d4798a32SMartin Mares	New ID's, as usually.
402d4798a32SMartin Mares
403e306e911SMartin MaresWed Sep 22 09:45:24 1999  Martin Mares  <[email protected]>
404e306e911SMartin Mares
405e306e911SMartin Mares	* pci.ids: New ID's. As usually.
406e306e911SMartin Mares
407e306e911SMartin Mares	* lspci.c (show_htype1, show_htype2): Don't show `closed' bridge windows
408e306e911SMartin Mares	unless we're vvvery verbose.
409e306e911SMartin Mares
410e306e911SMartin MaresMon Sep 20 11:22:54 1999  Martin Mares  <[email protected]>
411e306e911SMartin Mares
412e306e911SMartin Mares	* lspci.c (show_htype2): Don't forget a TAB before the "I/O window" line.
413e306e911SMartin Mares
414e64a576cSMartin MaresTue Sep 14 09:31:01 1999  Martin Mares  <[email protected]>
415e64a576cSMartin Mares
416e64a576cSMartin Mares	* pci.ids: New ID's. Again.
417e64a576cSMartin Mares
418c36c0862SMartin MaresThu Aug  5 17:45:42 1999  Martin Mares  <[email protected]>
419c36c0862SMartin Mares
420c36c0862SMartin Mares	* lspci.c (show_size): Don't show size if it's zero (usually
421c36c0862SMartin Mares	due to bus-centric mode being enabled).
422c36c0862SMartin Mares
4231ca42433SMartin MaresTue Jul 20 13:25:09 1999  Martin Mares  <[email protected]>
4241ca42433SMartin Mares
425168b4f46SMartin Mares	* lib/pci.h: Types are OS dependent.
426168b4f46SMartin Mares
427168b4f46SMartin Mares	* lib/internal.h: Byte order hacks are OS dependent.
428168b4f46SMartin Mares
429168b4f46SMartin Mares	* lib/configure: Recognize FreeBSD. Also set OS_XXX according to the OS.
430168b4f46SMartin Mares
431168b4f46SMartin Mares	* lib/Makefile, lib/access.c: Added fbsd-device target.
432168b4f46SMartin Mares
433168b4f46SMartin Mares	* pci.ids: Added an entry for PLX 9080 bridges with subsystem ID
434168b4f46SMartin Mares	incorrectly set to device ID.
435168b4f46SMartin Mares
436168b4f46SMartin Mares	* README: Added a note that we support FreeBSD.
437168b4f46SMartin Mares
438168b4f46SMartin Mares	* Makefile (PREFIX, ROOT): Set it depending on the OS.
439168b4f46SMartin Mares	(%.8): Grrr, BSD date is not able to convert date formats the same way
440168b4f46SMartin Mares	as GNU date does. Use sed instead.
441168b4f46SMartin Mares	(install): Use `-c' when calling install.
442168b4f46SMartin Mares
443168b4f46SMartin Mares	* lib/fbsd-device.c: Added FreeBSD /dev/pci access module contributed
444168b4f46SMartin Mares	by Jari Kirma <[email protected]>.
445168b4f46SMartin Mares
446bc6346dfSMartin Mares	* lib/proc.c: Rewrote the pread/pwrite things once again. Use pread
447bc6346dfSMartin Mares	and pwrite only when we are certain it's safe (i.e., glibc 2.1
448bc6346dfSMartin Mares	on all architectures or any libc on a i386 where we really know
449bc6346dfSMartin Mares	how to use syscalls directly). In all other cases, emulate it
450bc6346dfSMartin Mares	with lseek/read/write.
451bc6346dfSMartin Mares
4521ca42433SMartin Mares	* pci.ids: Some more IDs.
4531ca42433SMartin Mares
4541ca42433SMartin MaresMon Jul 19 14:10:36 1999  Martin Mares  <[email protected]>
4551ca42433SMartin Mares
4561ca42433SMartin Mares	* pci.ids: Added IDs of parallel port controller cards as sent
4571ca42433SMartin Mares	by Tim Waugh <[email protected]>.
4581ca42433SMartin Mares
459e95c8373SMartin MaresWed Jul  7 00:55:48 1999  Martin Mares  <[email protected]>
460e95c8373SMartin Mares
461e95c8373SMartin Mares	* lib/proc.c (proc_scan): HAVE_LONG_ADDRESS instead of HAVE_64BIT_ADDRESS.
462e95c8373SMartin Mares
463e95c8373SMartin Mares	* lspci.c: ADDR_FORMAT now depends on both HAVE_64BIT_ADDRESS and
464e95c8373SMartin Mares	HAVE_LONG_ADDRESS.
465e95c8373SMartin Mares
466e95c8373SMartin Mares	* lib/configure: HAVE_64BIT_ADDRESS now doesn't imply that the addresses
467e95c8373SMartin Mares	are represented as long long. Introduced a new flag HAVE_LONG_ADDRESS
468e95c8373SMartin Mares	to indicate this. Both Sparc architectures now use both 64BIT_ADDRESS
469e95c8373SMartin Mares	and LONG_ADDRESS since they have 32-bit userland, but don't set LONG_ADDRESS
470e95c8373SMartin Mares	on Alpha.
471e95c8373SMartin Mares
472e95c8373SMartin Mares	* lspci.c (show_msi): Added dumping of the MSI capability.
473e95c8373SMartin Mares	(show_slotid): The same for SlotID capability.
474e95c8373SMartin Mares	(show_caps): Seperated capability dumping, because it should
475e95c8373SMartin Mares	be used for both htype0 and htype1. Even PCI 2.2 doesn't mention
476e95c8373SMartin Mares	layout of htype2, so I'm a bit unsure about it wrt capabilities
477e95c8373SMartin Mares	-- they at least have to live somewhere else since address 0x34
478e95c8373SMartin Mares	is already defined differently in htype2.
479e95c8373SMartin Mares
480e95c8373SMartin Mares	* lib/header.h (PCI_STATUS_UDF): Marked as obsolete (PCI 2.2).
481e95c8373SMartin Mares	(PCI_BASE_ADDRESS_MEM_TYPE_1M): Ditto.
482e95c8373SMartin Mares	(PCI_CAP_ID_*): Added some new capabilities defined in PCI 2.2.
483e95c8373SMartin Mares
484e95c8373SMartin Mares	* lspci.c (show_htype0): Mask out lowest 2 bits from all capability pointers
485e95c8373SMartin Mares	(required by the PCI 2.2 specs).
486e95c8373SMartin Mares
487e95c8373SMartin MaresMon Jul  5 12:45:19 1999  Martin Mares  <[email protected]>
488e95c8373SMartin Mares
489e95c8373SMartin Mares	* lspci.c (show_size): Added new function for dumping of region sizes.
490e95c8373SMartin Mares	(show_rom): Added. Now correctly dumps unassigned ROM addresses, disabled
491e95c8373SMartin Mares	ROMs et cetera.
492e95c8373SMartin Mares
493e95c8373SMartin Mares	* lib/pci.h (struct pci_dev): known_fields moved to the public part
494e95c8373SMartin Mares	of the structure.
495e95c8373SMartin Mares
496e95c8373SMartin Mares	* Added support for region sizes. Needs support in the kernel, because
497e95c8373SMartin Mares	sizes have to be scanned before drivers initialize yourself. pci_fill_info()
498e95c8373SMartin Mares	now returns a bitmask of what fields were really read.
499e95c8373SMartin Mares
50082ce97c9SMartin MaresMon Jun 28 18:37:51 1999  Dave Jones    <[email protected]>
50182ce97c9SMartin Mares
50282ce97c9SMartin Mares	* Makefile:
50382ce97c9SMartin Mares	  Added `uninstall' target - removes all traces of pciutils.
50482ce97c9SMartin Mares	* pci.ids:
50582ce97c9SMartin Mares	  - Lots of cleanups in the ATI, S3, Adaptec vendors.
50682ce97c9SMartin Mares	  - Changed Compaq QVision 1280/p definitions, as it's not possible
50782ce97c9SMartin Mares	    to determine the revision from the device ID.
50882ce97c9SMartin Mares	  - Same for the Tseng ET4000.
50982ce97c9SMartin Mares	    The id's said I had a rev C, when it was actually a rev B.
51082ce97c9SMartin Mares	  - Removed some unnecessary strings
51182ce97c9SMartin Mares	    `PCI'. Unless it's an AGP card, it should be obvious that it's PCI.
51282ce97c9SMartin Mares	    `Ethernet card'. This should be determined from config space.
51382ce97c9SMartin Mares	  - Lots of other new vendors & devices
51482ce97c9SMartin Mares	  - Other additional small cleanups.
51582ce97c9SMartin Mares
5167bed2d83SMartin MaresMon Jun 21 22:11:10 1999  Martin Mares  <[email protected]>
5177bed2d83SMartin Mares
5187bed2d83SMartin Mares	* lib/names.c (pci_lookup_name): When device ID lookup
5197bed2d83SMartin Mares	fails, return hexadecimal device ID instead of vendor ID.
5207bed2d83SMartin Mares	Well spotted by Axel Bodemann <[email protected]>,
5217bed2d83SMartin Mares	I've just extended the fix to subsystem ID's.
5227bed2d83SMartin Mares
5235ba3a475SMartin MaresThu Jun 17 19:48:21 1999  Martin Mares  <[email protected]>
5245ba3a475SMartin Mares
5255ba3a475SMartin Mares	* lspci.c (show_agp): Bug fix from Petr Vandrovec
5265ba3a475SMartin Mares	<[email protected]>. The command register was displayed
5275ba3a475SMartin Mares	incorrectly.
5285ba3a475SMartin Mares
5295ba3a475SMartin MaresWed Jun  2 22:42:44 1999  Martin Mares  <[email protected]>
5305ba3a475SMartin Mares
5315ba3a475SMartin Mares	* lib/proc.c (SYS_pread, SYS_pwrite): Use hard-coded
5325ba3a475SMartin Mares	numbers if not supplied by the libc.
5335ba3a475SMartin Mares
53455c815b5SMartin MaresWed May 19 13:24:39 1999  Martin Mares  <[email protected]>
53555c815b5SMartin Mares
53655c815b5SMartin Mares	* Released the whole package as version 2.0.
53755c815b5SMartin Mares
53855c815b5SMartin MaresFri May 14 22:42:02 1999  Martin Mares  <[email protected]>
53955c815b5SMartin Mares
54055c815b5SMartin Mares	* pci.ids: Added several new ID's contributed by people
54155c815b5SMartin Mares	on the linux-pci list.
54255c815b5SMartin Mares
543dec16943SMartin MaresMon Apr 19 15:21:08 1999  Jakub Jelinek  <[email protected]>
544dec16943SMartin Mares
545dec16943SMartin Mares	* lspci.c: Display I/O addresses correctly on sparc64.
546dec16943SMartin Mares	* lib/header.h: Ditto.
547dec16943SMartin Mares
548dec16943SMartin Mares	* lib/configure: On sparc set HAVE_64BIT* as well, we want
549dec16943SMartin Mares	a binary which works on both 32bit and 64bit SPARCs.
550dec16943SMartin Mares
551e33c9c7aSMartin MaresSun Apr 18 21:14:58 1999  Martin Mares  <[email protected]>
552e33c9c7aSMartin Mares
553e33c9c7aSMartin Mares	* lspci.c, lib/proc.c: Alpha compilation fixes from Matthew Jacob
554e33c9c7aSMartin Mares	<[email protected]>.
555e33c9c7aSMartin Mares
556e33c9c7aSMartin Mares	* pci.ids: A lot of updates from Adam J. Richter <[email protected]>.
557e33c9c7aSMartin Mares
558f3395cc5SMartin MaresSun Feb 28 22:26:21 1999  Martin Mares  <[email protected]>
559f3395cc5SMartin Mares
560f3395cc5SMartin Mares	* lspci.c (do_map_bus): Don't dump functions 1--7 if not flagged
561f3395cc5SMartin Mares	as a multi-function device, because several single-function devices
562f3395cc5SMartin Mares	don't decode the function bits at all.
563f3395cc5SMartin Mares
564f3395cc5SMartin MaresSun Feb 14 23:48:22 1999  Martin Mares  <[email protected]>
565f3395cc5SMartin Mares
566f3395cc5SMartin Mares	* Makefile (install): Don't use "-o root -g root" for installation
567f3395cc5SMartin Mares	since it breaks on machines where programs are not installed by root.
568f3395cc5SMartin Mares	Reported by Richard Gooch <[email protected]>
569f3395cc5SMartin Mares
570f3395cc5SMartin MaresTue Feb  9 15:54:39 1999  Martin Mares  <[email protected]>
571f3395cc5SMartin Mares
572f3395cc5SMartin Mares	* lspci.c (show_bases): Use new address masking macros and pciaddr_t.
573f3395cc5SMartin Mares
574f3395cc5SMartin Mares	* lib/pci.h: Using pciaddr_t for bus addresses, which are 32-bit
575f3395cc5SMartin Mares	or 64-bit depending on CPU.
576f3395cc5SMartin Mares
577f3395cc5SMartin Mares	* lib/pci.h (PCI_ADDR_MEM_MASK): Added macros for address masks
578f3395cc5SMartin Mares	according to bus address width.
579f3395cc5SMartin Mares
5801c31d620SMartin MaresThu Jan 28 20:54:16 1999  Martin Mares  <[email protected]>
5811c31d620SMartin Mares
5821c31d620SMartin Mares	* Released as 1.99.4.
5831c31d620SMartin Mares
5841c31d620SMartin Mares	* lspci.c: Capability list parser now recognizes both AGP
5851c31d620SMartin Mares	registers and PCI Power Management registers (the latter
5861c31d620SMartin Mares	is mainly guesswork based on DEC/Intel 21153 bridge specs
5871c31d620SMartin Mares	since I don't have the PCI Power Management document).
5881c31d620SMartin Mares
5891c31d620SMartin Mares	* lspci.c: Replaced numerous occurences of (x & flag) ? '+' : '-'
5901c31d620SMartin Mares	by FLAG macro.
5911c31d620SMartin Mares
5921c31d620SMartin Mares	* lspci.c: Added bridge checks to bus mapping code.
5931c31d620SMartin Mares
5941812a795SMartin MaresWed Jan 27 14:59:16 1999  Martin Mares  <[email protected]>
5951812a795SMartin Mares
5961812a795SMartin Mares	* lspci.c: Implemented bus mapping mode (-M).
5971812a795SMartin Mares
5981812a795SMartin Mares	* lspci.c (scan_devices): Split to scan_devices() and scan_device().
5991812a795SMartin Mares	(show): Split to show() and show_device().
6001812a795SMartin Mares
6011812a795SMartin Mares	* lib/access.c (pci_init): When a->method == PCI_ACCESS_AUTO,
6021812a795SMartin Mares	set it to the real access method afterwards.
6031812a795SMartin Mares
6041812a795SMartin MaresMon Jan 25 23:46:13 1999  Martin Mares  <[email protected]>
6051812a795SMartin Mares
6061812a795SMartin Mares	* lib/generic.c (pci_generic_fill_info): If in buscentric mode,
6071812a795SMartin Mares	don't check PCI_COMMAND for I/O and memory enables.
6081812a795SMartin Mares
609f6c86928SMartin MaresMon Jan 25 21:28:49 1999  Martin Mares  <[email protected]>
610f6c86928SMartin Mares
611f6c86928SMartin Mares	* Makefile: Added target `release' which substitutes new version
612f6c86928SMartin Mares	number to .spec, .lsm and README. Also rewrote target `dist'.
613f6c86928SMartin Mares
614f6c86928SMartin Mares	* Released as 1.99.3.
615f6c86928SMartin Mares
616b5137411SMartin MaresSun Jan 24 22:10:36 1999  Martin Mares  <[email protected]>
617b5137411SMartin Mares
618d6b297d0SMartin Mares	* lib/header.h: Until kernel adopts new layout of PCI
619d6b297d0SMartin Mares	includes (i.e., separate declaration of header structure,
620d6b297d0SMartin Mares	functions and device IDs), which is not going to happen
621d6b297d0SMartin Mares	before 2.3, we'll use our own definiton of the header.
622d6b297d0SMartin Mares
623b5137411SMartin Mares	* lspci.c (show_verbose): Display `Cap' flag in device status.
624b5137411SMartin Mares
625b5137411SMartin Mares	* lspci.c (show_htype0): Display capability lists whereever
626b5137411SMartin Mares	available. The only capability name we recognize now is `AGP'.
627b5137411SMartin Mares	Unfortunately, capabilities are stored in device-dependent
628b5137411SMartin Mares	portion of the configuration space and are thus available
629b5137411SMartin Mares	only to root unless you read a dump.
630b5137411SMartin Mares
631b5137411SMartin Mares	* lspci.c (scan_devices): Use cache instead of buffering.
632b5137411SMartin Mares
633b5137411SMartin Mares	* lib/buffer.c: Removed (obsoleted by the cache).
634b5137411SMartin Mares
635b5137411SMartin Mares	* lib/access.c: Added general caching mechanism.
636b5137411SMartin Mares
63781ce358dSMartin MaresSat Jan 23 21:30:54 1999  Martin Mares  <[email protected]>
63881ce358dSMartin Mares
63981ce358dSMartin Mares	* pci.ids: Added few devices.
64081ce358dSMartin Mares
641727ce158SMartin MaresFri Jan 22 19:29:31 1999  Martin Mares  <[email protected]>
642727ce158SMartin Mares
643727ce158SMartin Mares	* Version string is now defined in top-level Makefile, exported
644727ce158SMartin Mares	to the configure script and also substituted to man pages.
645727ce158SMartin Mares
646727ce158SMartin Mares	* lspci.c (show_bases): Rewrote displaying of 64-bit addresses.
647727ce158SMartin Mares	(show_verbose): Rewrote interrupt display logic.
648727ce158SMartin Mares
649727ce158SMartin Mares	* lib/i386-ports.c: Include sys/io.h only on glibc systems.
650727ce158SMartin Mares
651727ce158SMartin Mares	* lib/configure: Rewrote detection of Linux versions. Now it
652727ce158SMartin Mares	works on 2.0 kernels (only with direct/dump access, of course).
653727ce158SMartin Mares
654727ce158SMartin Mares	* lib/internal.h: New bytesex macros using <asm/byteorder.h>
655727ce158SMartin Mares	whenever available.
656727ce158SMartin Mares
657727ce158SMartin Mares	* lib/proc.c (proc_read, proc_write): Distinguish between short
658727ce158SMartin Mares	read/write and real errors.
659727ce158SMartin Mares
660727ce158SMartin Mares	* lspci.c (show_htype{0,1}): Always use d->dev->rom_base_addr since
661727ce158SMartin Mares	libpci respects buscentric mode automatically.
662727ce158SMartin Mares
663727ce158SMartin Mares	* lspci.c (show_hex_dump): For CardBus bridges, print out 128
664727ce158SMartin Mares	bytes of header (the whole standard part).
665727ce158SMartin Mares
666727ce158SMartin Mares	* common.c: pcilib options are now all uppercase. Also moved
667727ce158SMartin Mares	PCI access debugging option here.
668727ce158SMartin Mares
669727ce158SMartin Mares	* Released as 1.99.2.
670727ce158SMartin Mares
671727ce158SMartin MaresWed Jan 20 22:50:35 1999  Martin Mares  <[email protected]>
672727ce158SMartin Mares
673727ce158SMartin Mares	* Wrote configure script and rewrote Makefiles.
674727ce158SMartin Mares
675727ce158SMartin Mares	* Removed few unused variables.
676727ce158SMartin Mares
677727ce158SMartin MaresWed Jan 20 12:21:56 1999  Martin Mares  <[email protected]>
678727ce158SMartin Mares
679727ce158SMartin Mares	* common.c: Moved several functions used in both setpci and lspci
680727ce158SMartin Mares	here. This includes parsing of libpci-related options.
681727ce158SMartin Mares
682727ce158SMartin Mares	* More library tweaks.
683727ce158SMartin Mares
684727ce158SMartin Mares	* filter.c, names.c: Moved to library.
685727ce158SMartin Mares
686727ce158SMartin Mares	* setpci: Rewritten to use the library.
687727ce158SMartin Mares
688727ce158SMartin Mares	* Released as 1.99.1.
689727ce158SMartin Mares
690727ce158SMartin MaresTue Jan 19 23:00:12 1999  Martin Mares  <[email protected]>
691727ce158SMartin Mares
692727ce158SMartin Mares	* lspci.c (scan_devices): For cardbus bridges, read first 128
693727ce158SMartin Mares	bytes of config space to get full standard header.
694727ce158SMartin Mares
695727ce158SMartin Mares	* Makefile (CFLAGS): Removed "-Wno-unused".
696727ce158SMartin Mares
697727ce158SMartin Mares	* Started the "New Generation" branch and introduced the
698727ce158SMartin Mares	PCI library.
699727ce158SMartin Mares
700727ce158SMartin Mares	* lspci: Rewritten to use the library.
701727ce158SMartin Mares
7026ece6bc6SMartin MaresTue Jan 19 22:24:08 1999  Martin Mares  <[email protected]>
7036ece6bc6SMartin Mares
7046ece6bc6SMartin Mares	* Released as version 1.10.
7056ece6bc6SMartin Mares
7066ece6bc6SMartin MaresMon Jan 18 08:51:17 1999  Martin Mares  <[email protected]>
7076ece6bc6SMartin Mares
7086ece6bc6SMartin Mares	* lspci.8, setpci.8: Miscellaneous fixes as suggested by
7096ece6bc6SMartin Mares	Dag Wieers <[email protected]>.
7106ece6bc6SMartin Mares
7111212dd6dSMartin MaresSun Nov 29 20:05:56 1998  Martin Mares  <[email protected]>
7121212dd6dSMartin Mares
7131212dd6dSMartin Mares	* pciutils.spec (Name): Update from Krzysztof G. Baranowski.
7141212dd6dSMartin Mares
715d38471fdSMartin MaresSun Nov 22 10:49:56 1998  Martin Mares  <[email protected]>
716d38471fdSMartin Mares
717d38471fdSMartin Mares	* Makefile, pciutils.h: Moved pci.ids to /usr/share.
718d38471fdSMartin Mares
719d38471fdSMartin Mares	* Released as version 1.09.
720d38471fdSMartin Mares
721371f605bSMartin MaresWed Nov 18 15:47:05 1998  Martin Mares  <[email protected]>
722371f605bSMartin Mares
723371f605bSMartin Mares	* lspci.c (show_htype1): Fixed displaying of prefetchable memory behind
724371f605bSMartin Mares	bridge. Thanks to Petr Vandrovec <[email protected]> for bug report.
725371f605bSMartin Mares
72610be47abSMartin MaresFri Oct 23 18:59:19 1998  Martin Mares  <[email protected]>
72710be47abSMartin Mares
72810be47abSMartin Mares	* setpci.c: Don't include <syscall-list.h> with glibc >= 2.1.
72910be47abSMartin Mares
730472bd340SMartin MaresMon Oct 19 21:53:30 1998  Martin Mares  <[email protected]>
731472bd340SMartin Mares
732472bd340SMartin Mares	* Released as version 1.08.
733472bd340SMartin Mares
734472bd340SMartin Mares	* setpci.c: glibc 2.1.x already defines pread() and pwrite().
735472bd340SMartin Mares
736472bd340SMartin Mares	* lspci.8: Changed warning about lspci -xxx.
737472bd340SMartin Mares
738472bd340SMartin Mares	* lspci.c: Require "-xxx" for full configuration space dump, so that
739472bd340SMartin Mares	it's impossible to crash the machine by single typo.
740472bd340SMartin Mares
741472bd340SMartin Mares	* specs: Added (courtesy of Krzysztof G. Baranowski <[email protected]>).
742472bd340SMartin Mares
743072c77e5SMartin MaresWed Sep  9 12:03:24 1998  Martin Mares  <[email protected]>
744072c77e5SMartin Mares
745072c77e5SMartin Mares	* lspci.c (show_bases): Better displaying of unassigned and
746072c77e5SMartin Mares	disabled bases. Thanks to Gabriel Paubert <[email protected]>
747072c77e5SMartin Mares	for an idea.
748072c77e5SMartin Mares
749b7554856SMartin MaresWed Sep  2 10:58:01 1998  Martin Mares  <[email protected]>
750b7554856SMartin Mares
751b7554856SMartin Mares	* setpci.c (pread): Recognize glibc 1.99 numbered as 2.0 on the PPC.
752b7554856SMartin Mares	(thanks to Geert Uytterhoeven for finding this out)
753b7554856SMartin Mares
754ce503b7fSMartin MaresFri Jul 17 10:43:30 1998  Martin Mares  <[email protected]>
755ce503b7fSMartin Mares
756ce503b7fSMartin Mares	* lspci.c (show_verbose): Print subsystem ID using the new resolver.
757ce503b7fSMartin Mares	(show_machine): Print subsystem ID.
758ce503b7fSMartin Mares
759ce503b7fSMartin Mares	* names.c: New name resolution engine supporting subsystem IDs.
760ce503b7fSMartin Mares
761ce503b7fSMartin Mares	* Released as version 1.07.
762ce503b7fSMartin Mares
76396e4f295SMartin MaresWed Jul 15 15:37:21 1998  Martin Mares  <[email protected]>
76496e4f295SMartin Mares
76596e4f295SMartin Mares	* lspci.c (show_htype2 etc.): Displaying of CardBus headers.
76696e4f295SMartin Mares	(show_bases): Honor the `cnt' argument.
76796e4f295SMartin Mares	(grow_tree): Parse CardBus headers in tree mode as well.
76896e4f295SMartin Mares
76996e4f295SMartin Mares	* pci.h: Updated CardBus header field description. I still don't
77096e4f295SMartin Mares	have the CardBus standard available, but OZ6832 specs contain
77196e4f295SMartin Mares	full description of all header fields supported by the chip.
77296e4f295SMartin Mares
7736ae3650aSMartin MaresTue Jun  9 22:53:59 1998  Martin Mares  <[email protected]>
7746ae3650aSMartin Mares
775304f9a0bSMartin Mares	* Released as 1.06.
776304f9a0bSMartin Mares
7776ae3650aSMartin Mares	* names.c (parse_name_list): Killed an unused variable.
7786ae3650aSMartin Mares
7796ae3650aSMartin Mares	* setpci.c (pread, pwrite): Define SYS_(pread|pwrite) as __NR_\1
7806ae3650aSMartin Mares	if they are not defined by glibc (needed for glibc built on older
7816ae3650aSMartin Mares	kernels). Ugly.
7826ae3650aSMartin Mares
7836ae3650aSMartin Mares	* setpci.c (exec_op): Fixed error messages. Thanks, Steve!
7846ae3650aSMartin Mares
7854b88a6b8SMartin MaresMon Jun  8 10:59:22 1998  Martin Mares  <[email protected]>
7864b88a6b8SMartin Mares
7874b88a6b8SMartin Mares	* Released as 1.05.
7884b88a6b8SMartin Mares
7894b88a6b8SMartin Mares	* setpci.c: Problems with pread()/pwrite() with glibc on Alpha
7904b88a6b8SMartin Mares	should be gone. Again thanks to Steve for bug report.
7914b88a6b8SMartin Mares
7924b88a6b8SMartin Mares	* filter.c (filter_parse_slot): Fixed ":x" type filters.
7934b88a6b8SMartin Mares
7944b88a6b8SMartin Mares	* pci.ids: Killed duplicate entry. Thanks to Stephen Williams
7954b88a6b8SMartin Mares	<[email protected]> for reporting this.
7964b88a6b8SMartin Mares
7974b88a6b8SMartin MaresSun Jun  7 19:27:51 1998  Martin Mares  <[email protected]>
7984b88a6b8SMartin Mares
7994b88a6b8SMartin Mares	* lspci.c (main), setpci.c (main): Implemented "--version".
8004b88a6b8SMartin Mares
8014b88a6b8SMartin Mares	* Released as 1.04.
8024b88a6b8SMartin Mares
8034b88a6b8SMartin Mares	* pciutils.h (PCIUTILS_VERSION): Added version string.
8044b88a6b8SMartin Mares
8054b88a6b8SMartin Mares	* filter.c, names.c: Extraneous #include <linux/pci.h> removed.
8064b88a6b8SMartin Mares	Thanks to Geert Uytterhoeven <[email protected]>
8074b88a6b8SMartin Mares	for bug report.
8084b88a6b8SMartin Mares
8099b306998SMartin MaresThu May 28 14:45:58 1998  Martin Mares  <[email protected]>
8109b306998SMartin Mares
8119b306998SMartin Mares	* pci.ids: More updates from Jens Maurer.
8129b306998SMartin Mares
813b372672fSMartin MaresWed Apr 22 10:00:39 1998  Martin Mares  <[email protected]>
814b372672fSMartin Mares
815b372672fSMartin Mares	* pci.ids: Updates from Jens Maurer.
816b372672fSMartin Mares
817b2c9b373SMartin MaresSun Apr 19 11:14:25 1998  Martin Mares  <[email protected]>
818b2c9b373SMartin Mares
819b372672fSMartin Mares	* Released as 1.03.
820b372672fSMartin Mares
821b2c9b373SMartin Mares	* setpci.8: Written.
822b2c9b373SMartin Mares
823b2c9b373SMartin Mares	* setpci.c: Finished.
824b2c9b373SMartin Mares
825b2c9b373SMartin Mares	* lspci.c: Now able to fetch expansion ROM base from kernel device list
826b2c9b373SMartin Mares	and print it if not in buscentric mode.
827b2c9b373SMartin Mares
828e4842ff3SMartin MaresTue Mar 31 23:11:57 1998  Martin Mares  <[email protected]>
829e4842ff3SMartin Mares
830e4842ff3SMartin Mares	* setpci.c: Added.
831e4842ff3SMartin Mares
832e4842ff3SMartin MaresSun Mar 22 15:39:08 1998  Martin Mares  <[email protected]>
833e4842ff3SMartin Mares
834e4842ff3SMartin Mares	* lspci.8: Updated the documentation.
835e4842ff3SMartin Mares
836e4842ff3SMartin Mares	* lspci.c: Modified to use the new filtering mechanism (options -f and -d).
837e4842ff3SMartin Mares
838e4842ff3SMartin Mares	* filter.c: Introduced new generic device filter.
839e4842ff3SMartin Mares
840008407bdSMartin MaresThu Mar 19 17:03:48 1998  Martin Mares  <[email protected]>
841008407bdSMartin Mares
842008407bdSMartin Mares	* lspci.c (grow_tree, show_tree_dev, print_it): Fixed displaying
843008407bdSMartin Mares	of PCI-to-PCI bridges in the tree format.
844008407bdSMartin Mares
8450a33d0ecSMartin MaresSun Feb 15 10:12:25 1998  Martin Mares  <[email protected]>
8460a33d0ecSMartin Mares
8470a33d0ecSMartin Mares	* lspci.c (show_machine): Added non-verbose mode of machine-readable
8480a33d0ecSMartin Mares	dump.
8490a33d0ecSMartin Mares
8500a33d0ecSMartin Mares	* pci.ids: Updates from Jens Maurer.
8510a33d0ecSMartin Mares
8520a33d0ecSMartin Mares	* Released as version 1.02.
8530a33d0ecSMartin Mares
8540a33d0ecSMartin MaresThu Feb 12 16:53:28 1998  Martin Mares  <[email protected]>
8550a33d0ecSMartin Mares
8560a33d0ecSMartin Mares	* lspci.c: Added a "-m" switch for dumping machine-readable
8570a33d0ecSMartin Mares	configuration data (requested by Bjoern Kriews <[email protected]>).
8580a33d0ecSMartin Mares
859fb38eee8SMartin MaresMon Feb  9 13:17:43 1998  Martin Mares  <[email protected]>
860fb38eee8SMartin Mares
861fb38eee8SMartin Mares	* Makefile, pciutils.h: Include local pci.h instead of <linux/pci.h>
862fb38eee8SMartin Mares	if available. This should avoid all problems with official kernel
863fb38eee8SMartin Mares	not synchronized to newer PCI code in CVS -- standard distribution
864fb38eee8SMartin Mares	of pciutils now contains pci.h from current CVS kernel, pciutils
865fb38eee8SMartin Mares	in CVS contain no pci.h and use the correct kernel include.
866fb38eee8SMartin Mares
867fb38eee8SMartin Mares	* Makefile: Fixed installation path for man pages.
868fb38eee8SMartin Mares
8692f48f637SMartin MaresSat Feb  7 15:15:46 1998  Martin Mares  <[email protected]>
8702f48f637SMartin Mares
8712f48f637SMartin Mares	* README: Updated.
8722f48f637SMartin Mares
8732f48f637SMartin Mares	* lspci.8: Created a man page.
8742f48f637SMartin Mares
8752f48f637SMartin Mares	* Releasing as version 1.0.
8762f48f637SMartin Mares
8772f48f637SMartin MaresTue Feb  3 20:56:00 1998  Martin Mares  <[email protected]>
8782f48f637SMartin Mares
8792f48f637SMartin Mares	* Makefile: Recognize architecture by calling uname and pass it as ARCH_xxx
8802f48f637SMartin Mares	to all the C sources. This should eliminate problems with 32-bit compilers
8812f48f637SMartin Mares	on sparc64.
8822f48f637SMartin Mares
8832f48f637SMartin Mares	* lspci.c (show_verbose): Recognize CardBus bridge header type.
8842f48f637SMartin Mares	(show_htype2): Stub routine.
8852f48f637SMartin Mares	(scan_config): Write sensible error message if the kernel denies reading of
8862f48f637SMartin Mares	upper part of the PCI config space.
887