1/*
2 * Copyright 1996 Massachusetts Institute of Technology
3 *
4 * Permission to use, copy, modify, and distribute this software and
5 * its documentation for any purpose and without fee is hereby
6 * granted, provided that both the above copyright notice and this
7 * permission notice appear in all copies, that both the above
8 * copyright notice and this permission notice appear in all
9 * supporting documentation, and that the name of M.I.T. not be used
10 * in advertising or publicity pertaining to distribution of the
11 * software without specific, written prior permission.  M.I.T. makes
12 * no representations about the suitability of this software for any
13 * purpose.  It is provided "as is" without express or implied
14 * warranty.
15 *
16 * THIS SOFTWARE IS PROVIDED BY M.I.T. ``AS IS''.  M.I.T. DISCLAIMS
17 * ALL EXPRESS OR IMPLIED WARRANTIES WITH REGARD TO THIS SOFTWARE,
18 * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
19 * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT
20 * SHALL M.I.T. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
21 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
22 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
23 * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
24 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
25 * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
26 * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27 * SUCH DAMAGE.
28 */
29
30#ifndef lint
31static const char rcsid[] =
32  "$FreeBSD: stable/11/usr.sbin/pciconf/pciconf.c 358362 2020-02-27 00:57:36Z kib $";
33#endif /* not lint */
34
35#include <sys/types.h>
36#include <sys/fcntl.h>
37
38#include <assert.h>
39#include <ctype.h>
40#include <err.h>
41#include <inttypes.h>
42#include <stdbool.h>
43#include <stdlib.h>
44#include <stdio.h>
45#include <string.h>
46#include <unistd.h>
47#include <sys/pciio.h>
48#include <sys/queue.h>
49
50#include <dev/pci/pcireg.h>
51
52#include "pathnames.h"
53#include "pciconf.h"
54
55struct pci_device_info
56{
57    TAILQ_ENTRY(pci_device_info)	link;
58    int					id;
59    char				*desc;
60};
61
62struct pci_vendor_info
63{
64    TAILQ_ENTRY(pci_vendor_info)	link;
65    TAILQ_HEAD(,pci_device_info)	devs;
66    int					id;
67    char				*desc;
68};
69
70static TAILQ_HEAD(,pci_vendor_info)	pci_vendors;
71
72static struct pcisel getsel(const char *str);
73static void list_bridge(int fd, struct pci_conf *p);
74static void list_bars(int fd, struct pci_conf *p);
75static void list_devs(const char *name, int verbose, int bars, int bridge,
76    int caps, int errors, int vpd);
77static void list_verbose(struct pci_conf *p);
78static void list_vpd(int fd, struct pci_conf *p);
79static const char *guess_class(struct pci_conf *p);
80static const char *guess_subclass(struct pci_conf *p);
81static int load_vendors(void);
82static void readit(const char *, const char *, int);
83static void writeit(const char *, const char *, const char *, int);
84static void chkattached(const char *);
85
86static int exitstatus = 0;
87
88static void
89usage(void)
90{
91	fprintf(stderr, "%s\n%s\n%s\n%s\n",
92		"usage: pciconf -l [-BbcevV] [device]",
93		"       pciconf -a device",
94		"       pciconf -r [-b | -h] device addr[:addr2]",
95		"       pciconf -w [-b | -h] device addr value");
96	exit (1);
97}
98
99int
100main(int argc, char **argv)
101{
102	int c;
103	int listmode, readmode, writemode, attachedmode;
104	int bars, bridge, caps, errors, verbose, vpd;
105	int byte, isshort;
106
107	listmode = readmode = writemode = attachedmode = 0;
108	bars = bridge = caps = errors = verbose = vpd = byte = isshort = 0;
109
110	while ((c = getopt(argc, argv, "aBbcehlrwVv")) != -1) {
111		switch(c) {
112		case 'a':
113			attachedmode = 1;
114			break;
115
116		case 'B':
117			bridge = 1;
118			break;
119
120		case 'b':
121			bars = 1;
122			byte = 1;
123			break;
124
125		case 'c':
126			caps = 1;
127			break;
128
129		case 'e':
130			errors = 1;
131			break;
132
133		case 'h':
134			isshort = 1;
135			break;
136
137		case 'l':
138			listmode = 1;
139			break;
140
141		case 'r':
142			readmode = 1;
143			break;
144
145		case 'w':
146			writemode = 1;
147			break;
148
149		case 'v':
150			verbose = 1;
151			break;
152
153		case 'V':
154			vpd = 1;
155			break;
156
157		default:
158			usage();
159		}
160	}
161
162	if ((listmode && optind >= argc + 1)
163	    || (writemode && optind + 3 != argc)
164	    || (readmode && optind + 2 != argc)
165	    || (attachedmode && optind + 1 != argc))
166		usage();
167
168	if (listmode) {
169		list_devs(optind + 1 == argc ? argv[optind] : NULL, verbose,
170		    bars, bridge, caps, errors, vpd);
171	} else if (attachedmode) {
172		chkattached(argv[optind]);
173	} else if (readmode) {
174		readit(argv[optind], argv[optind + 1],
175		    byte ? 1 : isshort ? 2 : 4);
176	} else if (writemode) {
177		writeit(argv[optind], argv[optind + 1], argv[optind + 2],
178		    byte ? 1 : isshort ? 2 : 4);
179	} else {
180		usage();
181	}
182
183	return exitstatus;
184}
185
186static void
187list_devs(const char *name, int verbose, int bars, int bridge, int caps,
188    int errors, int vpd)
189{
190	int fd;
191	struct pci_conf_io pc;
192	struct pci_conf conf[255], *p;
193	struct pci_match_conf patterns[1];
194	int none_count = 0;
195
196	if (verbose)
197		load_vendors();
198
199	fd = open(_PATH_DEVPCI, (bridge || caps || errors) ? O_RDWR : O_RDONLY,
200	    0);
201	if (fd < 0)
202		err(1, "%s", _PATH_DEVPCI);
203
204	bzero(&pc, sizeof(struct pci_conf_io));
205	pc.match_buf_len = sizeof(conf);
206	pc.matches = conf;
207	if (name != NULL) {
208		bzero(&patterns, sizeof(patterns));
209		patterns[0].pc_sel = getsel(name);
210		patterns[0].flags = PCI_GETCONF_MATCH_DOMAIN |
211		    PCI_GETCONF_MATCH_BUS | PCI_GETCONF_MATCH_DEV |
212		    PCI_GETCONF_MATCH_FUNC;
213		pc.num_patterns = 1;
214		pc.pat_buf_len = sizeof(patterns);
215		pc.patterns = patterns;
216	}
217
218	do {
219		if (ioctl(fd, PCIOCGETCONF, &pc) == -1)
220			err(1, "ioctl(PCIOCGETCONF)");
221
222		/*
223		 * 255 entries should be more than enough for most people,
224		 * but if someone has more devices, and then changes things
225		 * around between ioctls, we'll do the cheesy thing and
226		 * just bail.  The alternative would be to go back to the
227		 * beginning of the list, and print things twice, which may
228		 * not be desirable.
229		 */
230		if (pc.status == PCI_GETCONF_LIST_CHANGED) {
231			warnx("PCI device list changed, please try again");
232			exitstatus = 1;
233			close(fd);
234			return;
235		} else if (pc.status ==  PCI_GETCONF_ERROR) {
236			warnx("error returned from PCIOCGETCONF ioctl");
237			exitstatus = 1;
238			close(fd);
239			return;
240		}
241		for (p = conf; p < &conf[pc.num_matches]; p++) {
242			printf("%s%d@pci%d:%d:%d:%d:\tclass=0x%06x card=0x%08x "
243			    "chip=0x%08x rev=0x%02x hdr=0x%02x\n",
244			    *p->pd_name ? p->pd_name :
245			    "none",
246			    *p->pd_name ? (int)p->pd_unit :
247			    none_count++, p->pc_sel.pc_domain,
248			    p->pc_sel.pc_bus, p->pc_sel.pc_dev,
249			    p->pc_sel.pc_func, (p->pc_class << 16) |
250			    (p->pc_subclass << 8) | p->pc_progif,
251			    (p->pc_subdevice << 16) | p->pc_subvendor,
252			    (p->pc_device << 16) | p->pc_vendor,
253			    p->pc_revid, p->pc_hdr);
254			if (verbose)
255				list_verbose(p);
256			if (bars)
257				list_bars(fd, p);
258			if (bridge)
259				list_bridge(fd, p);
260			if (caps)
261				list_caps(fd, p);
262			if (errors)
263				list_errors(fd, p);
264			if (vpd)
265				list_vpd(fd, p);
266		}
267	} while (pc.status == PCI_GETCONF_MORE_DEVS);
268
269	close(fd);
270}
271
272static void
273print_bus_range(int fd, struct pci_conf *p, int secreg, int subreg)
274{
275	uint8_t secbus, subbus;
276
277	secbus = read_config(fd, &p->pc_sel, secreg, 1);
278	subbus = read_config(fd, &p->pc_sel, subreg, 1);
279	printf("    bus range  = %u-%u\n", secbus, subbus);
280}
281
282static void
283print_window(int reg, const char *type, int range, uint64_t base,
284    uint64_t limit)
285{
286
287	printf("    window[%02x] = type %s, range %2d, addr %#jx-%#jx, %s\n",
288	    reg, type, range, (uintmax_t)base, (uintmax_t)limit,
289	    base < limit ? "enabled" : "disabled");
290}
291
292static void
293print_special_decode(bool isa, bool vga, bool subtractive)
294{
295	bool comma;
296
297	if (isa || vga || subtractive) {
298		comma = false;
299		printf("    decode     = ");
300		if (isa) {
301			printf("ISA");
302			comma = true;
303		}
304		if (vga) {
305			printf("%sVGA", comma ? ", " : "");
306			comma = true;
307		}
308		if (subtractive)
309			printf("%ssubtractive", comma ? ", " : "");
310		printf("\n");
311	}
312}
313
314static void
315print_bridge_windows(int fd, struct pci_conf *p)
316{
317	uint64_t base, limit;
318	uint32_t val;
319	uint16_t bctl;
320	bool subtractive;
321	int range;
322
323	/*
324	 * XXX: This assumes that a window with a base and limit of 0
325	 * is not implemented.  In theory a window might be programmed
326	 * at the smallest size with a base of 0, but those do not seem
327	 * common in practice.
328	 */
329	val = read_config(fd, &p->pc_sel, PCIR_IOBASEL_1, 1);
330	if (val != 0 || read_config(fd, &p->pc_sel, PCIR_IOLIMITL_1, 1) != 0) {
331		if ((val & PCIM_BRIO_MASK) == PCIM_BRIO_32) {
332			base = PCI_PPBIOBASE(
333			    read_config(fd, &p->pc_sel, PCIR_IOBASEH_1, 2),
334			    val);
335			limit = PCI_PPBIOLIMIT(
336			    read_config(fd, &p->pc_sel, PCIR_IOLIMITH_1, 2),
337			    read_config(fd, &p->pc_sel, PCIR_IOLIMITL_1, 1));
338			range = 32;
339		} else {
340			base = PCI_PPBIOBASE(0, val);
341			limit = PCI_PPBIOLIMIT(0,
342			    read_config(fd, &p->pc_sel, PCIR_IOLIMITL_1, 1));
343			range = 16;
344		}
345		print_window(PCIR_IOBASEL_1, "I/O Port", range, base, limit);
346	}
347
348	base = PCI_PPBMEMBASE(0,
349	    read_config(fd, &p->pc_sel, PCIR_MEMBASE_1, 2));
350	limit = PCI_PPBMEMLIMIT(0,
351	    read_config(fd, &p->pc_sel, PCIR_MEMLIMIT_1, 2));
352	print_window(PCIR_MEMBASE_1, "Memory", 32, base, limit);
353
354	val = read_config(fd, &p->pc_sel, PCIR_PMBASEL_1, 2);
355	if (val != 0 || read_config(fd, &p->pc_sel, PCIR_PMLIMITL_1, 2) != 0) {
356		if ((val & PCIM_BRPM_MASK) == PCIM_BRPM_64) {
357			base = PCI_PPBMEMBASE(
358			    read_config(fd, &p->pc_sel, PCIR_PMBASEH_1, 4),
359			    val);
360			limit = PCI_PPBMEMLIMIT(
361			    read_config(fd, &p->pc_sel, PCIR_PMLIMITH_1, 4),
362			    read_config(fd, &p->pc_sel, PCIR_PMLIMITL_1, 2));
363			range = 64;
364		} else {
365			base = PCI_PPBMEMBASE(0, val);
366			limit = PCI_PPBMEMLIMIT(0,
367			    read_config(fd, &p->pc_sel, PCIR_PMLIMITL_1, 2));
368			range = 32;
369		}
370		print_window(PCIR_PMBASEL_1, "Prefetchable Memory", range, base,
371		    limit);
372	}
373
374	/*
375	 * XXX: This list of bridges that are subtractive but do not set
376	 * progif to indicate it is copied from pci_pci.c.
377	 */
378	subtractive = p->pc_progif == PCIP_BRIDGE_PCI_SUBTRACTIVE;
379	switch (p->pc_device << 16 | p->pc_vendor) {
380	case 0xa002177d:		/* Cavium ThunderX */
381	case 0x124b8086:		/* Intel 82380FB Mobile */
382	case 0x060513d7:		/* Toshiba ???? */
383		subtractive = true;
384	}
385	if (p->pc_vendor == 0x8086 && (p->pc_device & 0xff00) == 0x2400)
386		subtractive = true;
387
388	bctl = read_config(fd, &p->pc_sel, PCIR_BRIDGECTL_1, 2);
389	print_special_decode(bctl & PCIB_BCR_ISA_ENABLE,
390	    bctl & PCIB_BCR_VGA_ENABLE, subtractive);
391}
392
393static void
394print_cardbus_mem_window(int fd, struct pci_conf *p, int basereg, int limitreg,
395    bool prefetch)
396{
397
398	print_window(basereg, prefetch ? "Prefetchable Memory" : "Memory", 32,
399	    PCI_CBBMEMBASE(read_config(fd, &p->pc_sel, basereg, 4)),
400	    PCI_CBBMEMLIMIT(read_config(fd, &p->pc_sel, limitreg, 4)));
401}
402
403static void
404print_cardbus_io_window(int fd, struct pci_conf *p, int basereg, int limitreg)
405{
406	uint32_t base, limit;
407	uint32_t val;
408	int range;
409
410	val = read_config(fd, &p->pc_sel, basereg, 2);
411	if ((val & PCIM_CBBIO_MASK) == PCIM_CBBIO_32) {
412		base = PCI_CBBIOBASE(read_config(fd, &p->pc_sel, basereg, 4));
413		limit = PCI_CBBIOBASE(read_config(fd, &p->pc_sel, limitreg, 4));
414		range = 32;
415	} else {
416		base = PCI_CBBIOBASE(val);
417		limit = PCI_CBBIOBASE(read_config(fd, &p->pc_sel, limitreg, 2));
418		range = 16;
419	}
420	print_window(basereg, "I/O Port", range, base, limit);
421}
422
423static void
424print_cardbus_windows(int fd, struct pci_conf *p)
425{
426	uint16_t bctl;
427
428	bctl = read_config(fd, &p->pc_sel, PCIR_BRIDGECTL_2, 2);
429	print_cardbus_mem_window(fd, p, PCIR_MEMBASE0_2, PCIR_MEMLIMIT0_2,
430	    bctl & CBB_BCR_PREFETCH_0_ENABLE);
431	print_cardbus_mem_window(fd, p, PCIR_MEMBASE1_2, PCIR_MEMLIMIT1_2,
432	    bctl & CBB_BCR_PREFETCH_1_ENABLE);
433	print_cardbus_io_window(fd, p, PCIR_IOBASE0_2, PCIR_IOLIMIT0_2);
434	print_cardbus_io_window(fd, p, PCIR_IOBASE1_2, PCIR_IOLIMIT1_2);
435	print_special_decode(bctl & CBB_BCR_ISA_ENABLE,
436	    bctl & CBB_BCR_VGA_ENABLE, false);
437}
438
439static void
440list_bridge(int fd, struct pci_conf *p)
441{
442
443	switch (p->pc_hdr & PCIM_HDRTYPE) {
444	case PCIM_HDRTYPE_BRIDGE:
445		print_bus_range(fd, p, PCIR_SECBUS_1, PCIR_SUBBUS_1);
446		print_bridge_windows(fd, p);
447		break;
448	case PCIM_HDRTYPE_CARDBUS:
449		print_bus_range(fd, p, PCIR_SECBUS_2, PCIR_SUBBUS_2);
450		print_cardbus_windows(fd, p);
451		break;
452	}
453}
454
455static void
456list_bars(int fd, struct pci_conf *p)
457{
458	int i, max;
459
460	switch (p->pc_hdr & PCIM_HDRTYPE) {
461	case PCIM_HDRTYPE_NORMAL:
462		max = PCIR_MAX_BAR_0;
463		break;
464	case PCIM_HDRTYPE_BRIDGE:
465		max = PCIR_MAX_BAR_1;
466		break;
467	case PCIM_HDRTYPE_CARDBUS:
468		max = PCIR_MAX_BAR_2;
469		break;
470	default:
471		return;
472	}
473
474	for (i = 0; i <= max; i++)
475		print_bar(fd, p, "bar   ", PCIR_BAR(i));
476}
477
478void
479print_bar(int fd, struct pci_conf *p, const char *label, uint16_t bar_offset)
480{
481	uint64_t base;
482	const char *type;
483	struct pci_bar_io bar;
484	int range;
485
486	bar.pbi_sel = p->pc_sel;
487	bar.pbi_reg = bar_offset;
488	if (ioctl(fd, PCIOCGETBAR, &bar) < 0)
489		return;
490	if (PCI_BAR_IO(bar.pbi_base)) {
491		type = "I/O Port";
492		range = 32;
493		base = bar.pbi_base & PCIM_BAR_IO_BASE;
494	} else {
495		if (bar.pbi_base & PCIM_BAR_MEM_PREFETCH)
496			type = "Prefetchable Memory";
497		else
498			type = "Memory";
499		switch (bar.pbi_base & PCIM_BAR_MEM_TYPE) {
500		case PCIM_BAR_MEM_32:
501			range = 32;
502			break;
503		case PCIM_BAR_MEM_1MB:
504			range = 20;
505			break;
506		case PCIM_BAR_MEM_64:
507			range = 64;
508			break;
509		default:
510			range = -1;
511		}
512		base = bar.pbi_base & ~((uint64_t)0xf);
513	}
514	printf("    %s[%02x] = type %s, range %2d, base %#jx, ",
515	    label, bar_offset, type, range, (uintmax_t)base);
516	printf("size %ju, %s\n", (uintmax_t)bar.pbi_length,
517	    bar.pbi_enabled ? "enabled" : "disabled");
518}
519
520static void
521list_verbose(struct pci_conf *p)
522{
523	struct pci_vendor_info	*vi;
524	struct pci_device_info	*di;
525	const char *dp;
526
527	TAILQ_FOREACH(vi, &pci_vendors, link) {
528		if (vi->id == p->pc_vendor) {
529			printf("    vendor     = '%s'\n", vi->desc);
530			break;
531		}
532	}
533	if (vi == NULL) {
534		di = NULL;
535	} else {
536		TAILQ_FOREACH(di, &vi->devs, link) {
537			if (di->id == p->pc_device) {
538				printf("    device     = '%s'\n", di->desc);
539				break;
540			}
541		}
542	}
543	if ((dp = guess_class(p)) != NULL)
544		printf("    class      = %s\n", dp);
545	if ((dp = guess_subclass(p)) != NULL)
546		printf("    subclass   = %s\n", dp);
547}
548
549static void
550list_vpd(int fd, struct pci_conf *p)
551{
552	struct pci_list_vpd_io list;
553	struct pci_vpd_element *vpd, *end;
554
555	list.plvi_sel = p->pc_sel;
556	list.plvi_len = 0;
557	list.plvi_data = NULL;
558	if (ioctl(fd, PCIOCLISTVPD, &list) < 0 || list.plvi_len == 0)
559		return;
560
561	list.plvi_data = malloc(list.plvi_len);
562	if (ioctl(fd, PCIOCLISTVPD, &list) < 0) {
563		free(list.plvi_data);
564		return;
565	}
566
567	vpd = list.plvi_data;
568	end = (struct pci_vpd_element *)((char *)vpd + list.plvi_len);
569	for (; vpd < end; vpd = PVE_NEXT(vpd)) {
570		if (vpd->pve_flags == PVE_FLAG_IDENT) {
571			printf("    VPD ident  = '%.*s'\n",
572			    (int)vpd->pve_datalen, vpd->pve_data);
573			continue;
574		}
575
576		/* Ignore the checksum keyword. */
577		if (!(vpd->pve_flags & PVE_FLAG_RW) &&
578		    memcmp(vpd->pve_keyword, "RV", 2) == 0)
579			continue;
580
581		/* Ignore remaining read-write space. */
582		if (vpd->pve_flags & PVE_FLAG_RW &&
583		    memcmp(vpd->pve_keyword, "RW", 2) == 0)
584			continue;
585
586		/* Handle extended capability keyword. */
587		if (!(vpd->pve_flags & PVE_FLAG_RW) &&
588		    memcmp(vpd->pve_keyword, "CP", 2) == 0) {
589			printf("    VPD ro CP  = ID %02x in map 0x%x[0x%x]\n",
590			    (unsigned int)vpd->pve_data[0],
591			    PCIR_BAR((unsigned int)vpd->pve_data[1]),
592			    (unsigned int)vpd->pve_data[3] << 8 |
593			    (unsigned int)vpd->pve_data[2]);
594			continue;
595		}
596
597		/* Remaining keywords should all have ASCII values. */
598		printf("    VPD %s %c%c  = '%.*s'\n",
599		    vpd->pve_flags & PVE_FLAG_RW ? "rw" : "ro",
600		    vpd->pve_keyword[0], vpd->pve_keyword[1],
601		    (int)vpd->pve_datalen, vpd->pve_data);
602	}
603	free(list.plvi_data);
604}
605
606/*
607 * This is a direct cut-and-paste from the table in sys/dev/pci/pci.c.
608 */
609static struct
610{
611	int	class;
612	int	subclass;
613	const char *desc;
614} pci_nomatch_tab[] = {
615	{PCIC_OLD,		-1,			"old"},
616	{PCIC_OLD,		PCIS_OLD_NONVGA,	"non-VGA display device"},
617	{PCIC_OLD,		PCIS_OLD_VGA,		"VGA-compatible display device"},
618	{PCIC_STORAGE,		-1,			"mass storage"},
619	{PCIC_STORAGE,		PCIS_STORAGE_SCSI,	"SCSI"},
620	{PCIC_STORAGE,		PCIS_STORAGE_IDE,	"ATA"},
621	{PCIC_STORAGE,		PCIS_STORAGE_FLOPPY,	"floppy disk"},
622	{PCIC_STORAGE,		PCIS_STORAGE_IPI,	"IPI"},
623	{PCIC_STORAGE,		PCIS_STORAGE_RAID,	"RAID"},
624	{PCIC_STORAGE,		PCIS_STORAGE_ATA_ADMA,	"ATA (ADMA)"},
625	{PCIC_STORAGE,		PCIS_STORAGE_SATA,	"SATA"},
626	{PCIC_STORAGE,		PCIS_STORAGE_SAS,	"SAS"},
627	{PCIC_STORAGE,		PCIS_STORAGE_NVM,	"NVM"},
628	{PCIC_STORAGE,		PCIS_STORAGE_UFS,	"UFS"},
629	{PCIC_NETWORK,		-1,			"network"},
630	{PCIC_NETWORK,		PCIS_NETWORK_ETHERNET,	"ethernet"},
631	{PCIC_NETWORK,		PCIS_NETWORK_TOKENRING,	"token ring"},
632	{PCIC_NETWORK,		PCIS_NETWORK_FDDI,	"fddi"},
633	{PCIC_NETWORK,		PCIS_NETWORK_ATM,	"ATM"},
634	{PCIC_NETWORK,		PCIS_NETWORK_ISDN,	"ISDN"},
635	{PCIC_NETWORK,		PCIS_NETWORK_WORLDFIP,	"WorldFip"},
636	{PCIC_NETWORK,		PCIS_NETWORK_PICMG,	"PICMG"},
637	{PCIC_NETWORK,		PCIS_NETWORK_INFINIBAND,	"InfiniBand"},
638	{PCIC_NETWORK,		PCIS_NETWORK_HFC,	"host fabric"},
639	{PCIC_DISPLAY,		-1,			"display"},
640	{PCIC_DISPLAY,		PCIS_DISPLAY_VGA,	"VGA"},
641	{PCIC_DISPLAY,		PCIS_DISPLAY_XGA,	"XGA"},
642	{PCIC_DISPLAY,		PCIS_DISPLAY_3D,	"3D"},
643	{PCIC_MULTIMEDIA,	-1,			"multimedia"},
644	{PCIC_MULTIMEDIA,	PCIS_MULTIMEDIA_VIDEO,	"video"},
645	{PCIC_MULTIMEDIA,	PCIS_MULTIMEDIA_AUDIO,	"audio"},
646	{PCIC_MULTIMEDIA,	PCIS_MULTIMEDIA_TELE,	"telephony"},
647	{PCIC_MULTIMEDIA,	PCIS_MULTIMEDIA_HDA,	"HDA"},
648	{PCIC_MEMORY,		-1,			"memory"},
649	{PCIC_MEMORY,		PCIS_MEMORY_RAM,	"RAM"},
650	{PCIC_MEMORY,		PCIS_MEMORY_FLASH,	"flash"},
651	{PCIC_BRIDGE,		-1,			"bridge"},
652	{PCIC_BRIDGE,		PCIS_BRIDGE_HOST,	"HOST-PCI"},
653	{PCIC_BRIDGE,		PCIS_BRIDGE_ISA,	"PCI-ISA"},
654	{PCIC_BRIDGE,		PCIS_BRIDGE_EISA,	"PCI-EISA"},
655	{PCIC_BRIDGE,		PCIS_BRIDGE_MCA,	"PCI-MCA"},
656	{PCIC_BRIDGE,		PCIS_BRIDGE_PCI,	"PCI-PCI"},
657	{PCIC_BRIDGE,		PCIS_BRIDGE_PCMCIA,	"PCI-PCMCIA"},
658	{PCIC_BRIDGE,		PCIS_BRIDGE_NUBUS,	"PCI-NuBus"},
659	{PCIC_BRIDGE,		PCIS_BRIDGE_CARDBUS,	"PCI-CardBus"},
660	{PCIC_BRIDGE,		PCIS_BRIDGE_RACEWAY,	"PCI-RACEway"},
661	{PCIC_BRIDGE,		PCIS_BRIDGE_PCI_TRANSPARENT,
662	    "Semi-transparent PCI-to-PCI"},
663	{PCIC_BRIDGE,		PCIS_BRIDGE_INFINIBAND,	"InfiniBand-PCI"},
664	{PCIC_BRIDGE,		PCIS_BRIDGE_AS_PCI,
665	    "AdvancedSwitching-PCI"},
666	{PCIC_SIMPLECOMM,	-1,			"simple comms"},
667	{PCIC_SIMPLECOMM,	PCIS_SIMPLECOMM_UART,	"UART"},	/* could detect 16550 */
668	{PCIC_SIMPLECOMM,	PCIS_SIMPLECOMM_PAR,	"parallel port"},
669	{PCIC_SIMPLECOMM,	PCIS_SIMPLECOMM_MULSER,	"multiport serial"},
670	{PCIC_SIMPLECOMM,	PCIS_SIMPLECOMM_MODEM,	"generic modem"},
671	{PCIC_BASEPERIPH,	-1,			"base peripheral"},
672	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_PIC,	"interrupt controller"},
673	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_DMA,	"DMA controller"},
674	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_TIMER,	"timer"},
675	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_RTC,	"realtime clock"},
676	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_PCIHOT,	"PCI hot-plug controller"},
677	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_SDHC,	"SD host controller"},
678	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_IOMMU,	"IOMMU"},
679	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_RCEC,
680	    "Root Complex Event Collector"},
681	{PCIC_INPUTDEV,		-1,			"input device"},
682	{PCIC_INPUTDEV,		PCIS_INPUTDEV_KEYBOARD,	"keyboard"},
683	{PCIC_INPUTDEV,		PCIS_INPUTDEV_DIGITIZER,"digitizer"},
684	{PCIC_INPUTDEV,		PCIS_INPUTDEV_MOUSE,	"mouse"},
685	{PCIC_INPUTDEV,		PCIS_INPUTDEV_SCANNER,	"scanner"},
686	{PCIC_INPUTDEV,		PCIS_INPUTDEV_GAMEPORT,	"gameport"},
687	{PCIC_DOCKING,		-1,			"docking station"},
688	{PCIC_PROCESSOR,	-1,			"processor"},
689	{PCIC_SERIALBUS,	-1,			"serial bus"},
690	{PCIC_SERIALBUS,	PCIS_SERIALBUS_FW,	"FireWire"},
691	{PCIC_SERIALBUS,	PCIS_SERIALBUS_ACCESS,	"AccessBus"},
692	{PCIC_SERIALBUS,	PCIS_SERIALBUS_SSA,	"SSA"},
693	{PCIC_SERIALBUS,	PCIS_SERIALBUS_USB,	"USB"},
694	{PCIC_SERIALBUS,	PCIS_SERIALBUS_FC,	"Fibre Channel"},
695	{PCIC_SERIALBUS,	PCIS_SERIALBUS_SMBUS,	"SMBus"},
696	{PCIC_SERIALBUS,	PCIS_SERIALBUS_INFINIBAND,	"InfiniBand"},
697	{PCIC_SERIALBUS,	PCIS_SERIALBUS_IPMI,	"IPMI"},
698	{PCIC_SERIALBUS,	PCIS_SERIALBUS_SERCOS,	"SERCOS"},
699	{PCIC_SERIALBUS,	PCIS_SERIALBUS_CANBUS,	"CANbus"},
700	{PCIC_SERIALBUS,	PCIS_SERIALBUS_MIPI_I3C,	"MIPI I3C"},
701	{PCIC_WIRELESS,		-1,			"wireless controller"},
702	{PCIC_WIRELESS,		PCIS_WIRELESS_IRDA,	"iRDA"},
703	{PCIC_WIRELESS,		PCIS_WIRELESS_IR,	"IR"},
704	{PCIC_WIRELESS,		PCIS_WIRELESS_RF,	"RF"},
705	{PCIC_WIRELESS,		PCIS_WIRELESS_BLUETOOTH,	"bluetooth"},
706	{PCIC_WIRELESS,		PCIS_WIRELESS_BROADBAND,	"broadband"},
707	{PCIC_WIRELESS,		PCIS_WIRELESS_80211A,	"ethernet 802.11a"},
708	{PCIC_WIRELESS,		PCIS_WIRELESS_80211B,	"ethernet 802.11b"},
709	{PCIC_WIRELESS,		PCIS_WIRELESS_CELL,
710	    "cellular controller/modem"},
711	{PCIC_WIRELESS,		PCIS_WIRELESS_CELL_E,
712	    "cellular controller/modem plus ethernet"},
713	{PCIC_INTELLIIO,	-1,			"intelligent I/O controller"},
714	{PCIC_INTELLIIO,	PCIS_INTELLIIO_I2O,	"I2O"},
715	{PCIC_SATCOM,		-1,			"satellite communication"},
716	{PCIC_SATCOM,		PCIS_SATCOM_TV,		"sat TV"},
717	{PCIC_SATCOM,		PCIS_SATCOM_AUDIO,	"sat audio"},
718	{PCIC_SATCOM,		PCIS_SATCOM_VOICE,	"sat voice"},
719	{PCIC_SATCOM,		PCIS_SATCOM_DATA,	"sat data"},
720	{PCIC_CRYPTO,		-1,			"encrypt/decrypt"},
721	{PCIC_CRYPTO,		PCIS_CRYPTO_NETCOMP,	"network/computer crypto"},
722	{PCIC_CRYPTO,		PCIS_CRYPTO_NETCOMP,	"entertainment crypto"},
723	{PCIC_DASP,		-1,			"dasp"},
724	{PCIC_DASP,		PCIS_DASP_DPIO,		"DPIO module"},
725	{PCIC_DASP,		PCIS_DASP_PERFCNTRS,	"performance counters"},
726	{PCIC_DASP,		PCIS_DASP_COMM_SYNC,	"communication synchronizer"},
727	{PCIC_DASP,		PCIS_DASP_MGMT_CARD,	"signal processing management"},
728	{PCIC_ACCEL,		-1,			"processing accelerators"},
729	{PCIC_ACCEL,		PCIS_ACCEL_PROCESSING,	"processing accelerators"},
730	{PCIC_INSTRUMENT,	-1,			"non-essential instrumentation"},
731	{0, 0,		NULL}
732};
733
734static const char *
735guess_class(struct pci_conf *p)
736{
737	int	i;
738
739	for (i = 0; pci_nomatch_tab[i].desc != NULL; i++) {
740		if (pci_nomatch_tab[i].class == p->pc_class)
741			return(pci_nomatch_tab[i].desc);
742	}
743	return(NULL);
744}
745
746static const char *
747guess_subclass(struct pci_conf *p)
748{
749	int	i;
750
751	for (i = 0; pci_nomatch_tab[i].desc != NULL; i++) {
752		if ((pci_nomatch_tab[i].class == p->pc_class) &&
753		    (pci_nomatch_tab[i].subclass == p->pc_subclass))
754			return(pci_nomatch_tab[i].desc);
755	}
756	return(NULL);
757}
758
759static int
760load_vendors(void)
761{
762	const char *dbf;
763	FILE *db;
764	struct pci_vendor_info *cv;
765	struct pci_device_info *cd;
766	char buf[1024], str[1024];
767	char *ch;
768	int id, error;
769
770	/*
771	 * Locate the database and initialise.
772	 */
773	TAILQ_INIT(&pci_vendors);
774	if ((dbf = getenv("PCICONF_VENDOR_DATABASE")) == NULL)
775		dbf = _PATH_LPCIVDB;
776	if ((db = fopen(dbf, "r")) == NULL) {
777		dbf = _PATH_PCIVDB;
778		if ((db = fopen(dbf, "r")) == NULL)
779			return(1);
780	}
781	cv = NULL;
782	cd = NULL;
783	error = 0;
784
785	/*
786	 * Scan input lines from the database
787	 */
788	for (;;) {
789		if (fgets(buf, sizeof(buf), db) == NULL)
790			break;
791
792		if ((ch = strchr(buf, '#')) != NULL)
793			*ch = '\0';
794		ch = strchr(buf, '\0') - 1;
795		while (ch > buf && isspace(*ch))
796			*ch-- = '\0';
797		if (ch <= buf)
798			continue;
799
800		/* Can't handle subvendor / subdevice entries yet */
801		if (buf[0] == '\t' && buf[1] == '\t')
802			continue;
803
804		/* Check for vendor entry */
805		if (buf[0] != '\t' && sscanf(buf, "%04x %[^\n]", &id, str) == 2) {
806			if ((id == 0) || (strlen(str) < 1))
807				continue;
808			if ((cv = malloc(sizeof(struct pci_vendor_info))) == NULL) {
809				warn("allocating vendor entry");
810				error = 1;
811				break;
812			}
813			if ((cv->desc = strdup(str)) == NULL) {
814				free(cv);
815				warn("allocating vendor description");
816				error = 1;
817				break;
818			}
819			cv->id = id;
820			TAILQ_INIT(&cv->devs);
821			TAILQ_INSERT_TAIL(&pci_vendors, cv, link);
822			continue;
823		}
824
825		/* Check for device entry */
826		if (buf[0] == '\t' && sscanf(buf + 1, "%04x %[^\n]", &id, str) == 2) {
827			if ((id == 0) || (strlen(str) < 1))
828				continue;
829			if (cv == NULL) {
830				warnx("device entry with no vendor!");
831				continue;
832			}
833			if ((cd = malloc(sizeof(struct pci_device_info))) == NULL) {
834				warn("allocating device entry");
835				error = 1;
836				break;
837			}
838			if ((cd->desc = strdup(str)) == NULL) {
839				free(cd);
840				warn("allocating device description");
841				error = 1;
842				break;
843			}
844			cd->id = id;
845			TAILQ_INSERT_TAIL(&cv->devs, cd, link);
846			continue;
847		}
848
849		/* It's a comment or junk, ignore it */
850	}
851	if (ferror(db))
852		error = 1;
853	fclose(db);
854
855	return(error);
856}
857
858uint32_t
859read_config(int fd, struct pcisel *sel, long reg, int width)
860{
861	struct pci_io pi;
862
863	pi.pi_sel = *sel;
864	pi.pi_reg = reg;
865	pi.pi_width = width;
866
867	if (ioctl(fd, PCIOCREAD, &pi) < 0)
868		err(1, "ioctl(PCIOCREAD)");
869
870	return (pi.pi_data);
871}
872
873static struct pcisel
874getdevice(const char *name)
875{
876	struct pci_conf_io pc;
877	struct pci_conf conf[1];
878	struct pci_match_conf patterns[1];
879	char *cp;
880	int fd;
881
882	fd = open(_PATH_DEVPCI, O_RDONLY, 0);
883	if (fd < 0)
884		err(1, "%s", _PATH_DEVPCI);
885
886	bzero(&pc, sizeof(struct pci_conf_io));
887	pc.match_buf_len = sizeof(conf);
888	pc.matches = conf;
889
890	bzero(&patterns, sizeof(patterns));
891
892	/*
893	 * The pattern structure requires the unit to be split out from
894	 * the driver name.  Walk backwards from the end of the name to
895	 * find the start of the unit.
896	 */
897	if (name[0] == '\0')
898		errx(1, "Empty device name");
899	cp = strchr(name, '\0');
900	assert(cp != NULL && cp != name);
901	cp--;
902	while (cp != name && isdigit(cp[-1]))
903		cp--;
904	if (cp == name || !isdigit(*cp))
905		errx(1, "Invalid device name");
906	if ((size_t)(cp - name) + 1 > sizeof(patterns[0].pd_name))
907		errx(1, "Device name is too long");
908	memcpy(patterns[0].pd_name, name, cp - name);
909	patterns[0].pd_unit = strtol(cp, &cp, 10);
910	assert(*cp == '\0');
911	patterns[0].flags = PCI_GETCONF_MATCH_NAME | PCI_GETCONF_MATCH_UNIT;
912	pc.num_patterns = 1;
913	pc.pat_buf_len = sizeof(patterns);
914	pc.patterns = patterns;
915
916	if (ioctl(fd, PCIOCGETCONF, &pc) == -1)
917		err(1, "ioctl(PCIOCGETCONF)");
918	if (pc.status != PCI_GETCONF_LAST_DEVICE &&
919	    pc.status != PCI_GETCONF_MORE_DEVS)
920		errx(1, "error returned from PCIOCGETCONF ioctl");
921	close(fd);
922	if (pc.num_matches == 0)
923		errx(1, "Device not found");
924	return (conf[0].pc_sel);
925}
926
927static struct pcisel
928parsesel(const char *str)
929{
930	const char *ep;
931	char *eppos;
932	struct pcisel sel;
933	unsigned long selarr[4];
934	int i;
935
936	ep = strchr(str, '@');
937	if (ep != NULL)
938		ep++;
939	else
940		ep = str;
941
942	if (strncmp(ep, "pci", 3) == 0) {
943		ep += 3;
944		i = 0;
945		while (isdigit(*ep) && i < 4) {
946			selarr[i++] = strtoul(ep, &eppos, 10);
947			ep = eppos;
948			if (*ep == ':')
949				ep++;
950		}
951		if (i > 0 && *ep == '\0') {
952			sel.pc_func = (i > 2) ? selarr[--i] : 0;
953			sel.pc_dev = (i > 0) ? selarr[--i] : 0;
954			sel.pc_bus = (i > 0) ? selarr[--i] : 0;
955			sel.pc_domain = (i > 0) ? selarr[--i] : 0;
956			return (sel);
957		}
958	}
959	errx(1, "cannot parse selector %s", str);
960}
961
962static struct pcisel
963getsel(const char *str)
964{
965
966	/*
967	 * No device names contain colons and selectors always contain
968	 * at least one colon.
969	 */
970	if (strchr(str, ':') == NULL)
971		return (getdevice(str));
972	else
973		return (parsesel(str));
974}
975
976static void
977readone(int fd, struct pcisel *sel, long reg, int width)
978{
979
980	printf("%0*x", width*2, read_config(fd, sel, reg, width));
981}
982
983static void
984readit(const char *name, const char *reg, int width)
985{
986	long rstart;
987	long rend;
988	long r;
989	char *end;
990	int i;
991	int fd;
992	struct pcisel sel;
993
994	fd = open(_PATH_DEVPCI, O_RDWR, 0);
995	if (fd < 0)
996		err(1, "%s", _PATH_DEVPCI);
997
998	rend = rstart = strtol(reg, &end, 0);
999	if (end && *end == ':') {
1000		end++;
1001		rend = strtol(end, (char **) 0, 0);
1002	}
1003	sel = getsel(name);
1004	for (i = 1, r = rstart; r <= rend; i++, r += width) {
1005		readone(fd, &sel, r, width);
1006		if (i && !(i % 8))
1007			putchar(' ');
1008		putchar(i % (16/width) ? ' ' : '\n');
1009	}
1010	if (i % (16/width) != 1)
1011		putchar('\n');
1012	close(fd);
1013}
1014
1015static void
1016writeit(const char *name, const char *reg, const char *data, int width)
1017{
1018	int fd;
1019	struct pci_io pi;
1020
1021	pi.pi_sel = getsel(name);
1022	pi.pi_reg = strtoul(reg, (char **)0, 0); /* XXX error check */
1023	pi.pi_width = width;
1024	pi.pi_data = strtoul(data, (char **)0, 0); /* XXX error check */
1025
1026	fd = open(_PATH_DEVPCI, O_RDWR, 0);
1027	if (fd < 0)
1028		err(1, "%s", _PATH_DEVPCI);
1029
1030	if (ioctl(fd, PCIOCWRITE, &pi) < 0)
1031		err(1, "ioctl(PCIOCWRITE)");
1032	close(fd);
1033}
1034
1035static void
1036chkattached(const char *name)
1037{
1038	int fd;
1039	struct pci_io pi;
1040
1041	pi.pi_sel = getsel(name);
1042
1043	fd = open(_PATH_DEVPCI, O_RDWR, 0);
1044	if (fd < 0)
1045		err(1, "%s", _PATH_DEVPCI);
1046
1047	if (ioctl(fd, PCIOCATTACHED, &pi) < 0)
1048		err(1, "ioctl(PCIOCATTACHED)");
1049
1050	exitstatus = pi.pi_data ? 0 : 2; /* exit(2), if NOT attached */
1051	printf("%s: %s%s\n", name, pi.pi_data == 0 ? "not " : "", "attached");
1052	close(fd);
1053}
1054