xref: /freebsd/usr.sbin/pciconf/pciconf.c (revision 09a53ad8f1318c5daae6cfb19d97f4f6459f0013)
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
31 static const char rcsid[] =
32   "$FreeBSD$";
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 
55 struct pci_device_info
56 {
57     TAILQ_ENTRY(pci_device_info)	link;
58     int					id;
59     char				*desc;
60 };
61 
62 struct 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 
70 static TAILQ_HEAD(,pci_vendor_info)	pci_vendors;
71 
72 static struct pcisel getsel(const char *str);
73 static void list_bridge(int fd, struct pci_conf *p);
74 static void list_bars(int fd, struct pci_conf *p);
75 static void list_devs(const char *name, int verbose, int bars, int bridge,
76     int caps, int errors, int vpd);
77 static void list_verbose(struct pci_conf *p);
78 static void list_vpd(int fd, struct pci_conf *p);
79 static const char *guess_class(struct pci_conf *p);
80 static const char *guess_subclass(struct pci_conf *p);
81 static int load_vendors(void);
82 static void readit(const char *, const char *, int);
83 static void writeit(const char *, const char *, const char *, int);
84 static void chkattached(const char *);
85 
86 static int exitstatus = 0;
87 
88 static void
89 usage(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 
99 int
100 main(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 
186 static void
187 list_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 
272 static void
273 print_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 
282 static void
283 print_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 
292 static void
293 print_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 
314 static void
315 print_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 
393 static void
394 print_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 
403 static void
404 print_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 
423 static void
424 print_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 
439 static void
440 list_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 
455 static void
456 list_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 
478 void
479 print_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 
520 static void
521 list_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 
549 static void
550 list_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  */
609 static 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_NETWORK,		-1,			"network"},
629 	{PCIC_NETWORK,		PCIS_NETWORK_ETHERNET,	"ethernet"},
630 	{PCIC_NETWORK,		PCIS_NETWORK_TOKENRING,	"token ring"},
631 	{PCIC_NETWORK,		PCIS_NETWORK_FDDI,	"fddi"},
632 	{PCIC_NETWORK,		PCIS_NETWORK_ATM,	"ATM"},
633 	{PCIC_NETWORK,		PCIS_NETWORK_ISDN,	"ISDN"},
634 	{PCIC_DISPLAY,		-1,			"display"},
635 	{PCIC_DISPLAY,		PCIS_DISPLAY_VGA,	"VGA"},
636 	{PCIC_DISPLAY,		PCIS_DISPLAY_XGA,	"XGA"},
637 	{PCIC_DISPLAY,		PCIS_DISPLAY_3D,	"3D"},
638 	{PCIC_MULTIMEDIA,	-1,			"multimedia"},
639 	{PCIC_MULTIMEDIA,	PCIS_MULTIMEDIA_VIDEO,	"video"},
640 	{PCIC_MULTIMEDIA,	PCIS_MULTIMEDIA_AUDIO,	"audio"},
641 	{PCIC_MULTIMEDIA,	PCIS_MULTIMEDIA_TELE,	"telephony"},
642 	{PCIC_MULTIMEDIA,	PCIS_MULTIMEDIA_HDA,	"HDA"},
643 	{PCIC_MEMORY,		-1,			"memory"},
644 	{PCIC_MEMORY,		PCIS_MEMORY_RAM,	"RAM"},
645 	{PCIC_MEMORY,		PCIS_MEMORY_FLASH,	"flash"},
646 	{PCIC_BRIDGE,		-1,			"bridge"},
647 	{PCIC_BRIDGE,		PCIS_BRIDGE_HOST,	"HOST-PCI"},
648 	{PCIC_BRIDGE,		PCIS_BRIDGE_ISA,	"PCI-ISA"},
649 	{PCIC_BRIDGE,		PCIS_BRIDGE_EISA,	"PCI-EISA"},
650 	{PCIC_BRIDGE,		PCIS_BRIDGE_MCA,	"PCI-MCA"},
651 	{PCIC_BRIDGE,		PCIS_BRIDGE_PCI,	"PCI-PCI"},
652 	{PCIC_BRIDGE,		PCIS_BRIDGE_PCMCIA,	"PCI-PCMCIA"},
653 	{PCIC_BRIDGE,		PCIS_BRIDGE_NUBUS,	"PCI-NuBus"},
654 	{PCIC_BRIDGE,		PCIS_BRIDGE_CARDBUS,	"PCI-CardBus"},
655 	{PCIC_BRIDGE,		PCIS_BRIDGE_RACEWAY,	"PCI-RACEway"},
656 	{PCIC_SIMPLECOMM,	-1,			"simple comms"},
657 	{PCIC_SIMPLECOMM,	PCIS_SIMPLECOMM_UART,	"UART"},	/* could detect 16550 */
658 	{PCIC_SIMPLECOMM,	PCIS_SIMPLECOMM_PAR,	"parallel port"},
659 	{PCIC_SIMPLECOMM,	PCIS_SIMPLECOMM_MULSER,	"multiport serial"},
660 	{PCIC_SIMPLECOMM,	PCIS_SIMPLECOMM_MODEM,	"generic modem"},
661 	{PCIC_BASEPERIPH,	-1,			"base peripheral"},
662 	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_PIC,	"interrupt controller"},
663 	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_DMA,	"DMA controller"},
664 	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_TIMER,	"timer"},
665 	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_RTC,	"realtime clock"},
666 	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_PCIHOT,	"PCI hot-plug controller"},
667 	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_SDHC,	"SD host controller"},
668 	{PCIC_BASEPERIPH,	PCIS_BASEPERIPH_IOMMU,	"IOMMU"},
669 	{PCIC_INPUTDEV,		-1,			"input device"},
670 	{PCIC_INPUTDEV,		PCIS_INPUTDEV_KEYBOARD,	"keyboard"},
671 	{PCIC_INPUTDEV,		PCIS_INPUTDEV_DIGITIZER,"digitizer"},
672 	{PCIC_INPUTDEV,		PCIS_INPUTDEV_MOUSE,	"mouse"},
673 	{PCIC_INPUTDEV,		PCIS_INPUTDEV_SCANNER,	"scanner"},
674 	{PCIC_INPUTDEV,		PCIS_INPUTDEV_GAMEPORT,	"gameport"},
675 	{PCIC_DOCKING,		-1,			"docking station"},
676 	{PCIC_PROCESSOR,	-1,			"processor"},
677 	{PCIC_SERIALBUS,	-1,			"serial bus"},
678 	{PCIC_SERIALBUS,	PCIS_SERIALBUS_FW,	"FireWire"},
679 	{PCIC_SERIALBUS,	PCIS_SERIALBUS_ACCESS,	"AccessBus"},
680 	{PCIC_SERIALBUS,	PCIS_SERIALBUS_SSA,	"SSA"},
681 	{PCIC_SERIALBUS,	PCIS_SERIALBUS_USB,	"USB"},
682 	{PCIC_SERIALBUS,	PCIS_SERIALBUS_FC,	"Fibre Channel"},
683 	{PCIC_SERIALBUS,	PCIS_SERIALBUS_SMBUS,	"SMBus"},
684 	{PCIC_WIRELESS,		-1,			"wireless controller"},
685 	{PCIC_WIRELESS,		PCIS_WIRELESS_IRDA,	"iRDA"},
686 	{PCIC_WIRELESS,		PCIS_WIRELESS_IR,	"IR"},
687 	{PCIC_WIRELESS,		PCIS_WIRELESS_RF,	"RF"},
688 	{PCIC_INTELLIIO,	-1,			"intelligent I/O controller"},
689 	{PCIC_INTELLIIO,	PCIS_INTELLIIO_I2O,	"I2O"},
690 	{PCIC_SATCOM,		-1,			"satellite communication"},
691 	{PCIC_SATCOM,		PCIS_SATCOM_TV,		"sat TV"},
692 	{PCIC_SATCOM,		PCIS_SATCOM_AUDIO,	"sat audio"},
693 	{PCIC_SATCOM,		PCIS_SATCOM_VOICE,	"sat voice"},
694 	{PCIC_SATCOM,		PCIS_SATCOM_DATA,	"sat data"},
695 	{PCIC_CRYPTO,		-1,			"encrypt/decrypt"},
696 	{PCIC_CRYPTO,		PCIS_CRYPTO_NETCOMP,	"network/computer crypto"},
697 	{PCIC_CRYPTO,		PCIS_CRYPTO_NETCOMP,	"entertainment crypto"},
698 	{PCIC_DASP,		-1,			"dasp"},
699 	{PCIC_DASP,		PCIS_DASP_DPIO,		"DPIO module"},
700 	{0, 0,		NULL}
701 };
702 
703 static const char *
704 guess_class(struct pci_conf *p)
705 {
706 	int	i;
707 
708 	for (i = 0; pci_nomatch_tab[i].desc != NULL; i++) {
709 		if (pci_nomatch_tab[i].class == p->pc_class)
710 			return(pci_nomatch_tab[i].desc);
711 	}
712 	return(NULL);
713 }
714 
715 static const char *
716 guess_subclass(struct pci_conf *p)
717 {
718 	int	i;
719 
720 	for (i = 0; pci_nomatch_tab[i].desc != NULL; i++) {
721 		if ((pci_nomatch_tab[i].class == p->pc_class) &&
722 		    (pci_nomatch_tab[i].subclass == p->pc_subclass))
723 			return(pci_nomatch_tab[i].desc);
724 	}
725 	return(NULL);
726 }
727 
728 static int
729 load_vendors(void)
730 {
731 	const char *dbf;
732 	FILE *db;
733 	struct pci_vendor_info *cv;
734 	struct pci_device_info *cd;
735 	char buf[1024], str[1024];
736 	char *ch;
737 	int id, error;
738 
739 	/*
740 	 * Locate the database and initialise.
741 	 */
742 	TAILQ_INIT(&pci_vendors);
743 	if ((dbf = getenv("PCICONF_VENDOR_DATABASE")) == NULL)
744 		dbf = _PATH_LPCIVDB;
745 	if ((db = fopen(dbf, "r")) == NULL) {
746 		dbf = _PATH_PCIVDB;
747 		if ((db = fopen(dbf, "r")) == NULL)
748 			return(1);
749 	}
750 	cv = NULL;
751 	cd = NULL;
752 	error = 0;
753 
754 	/*
755 	 * Scan input lines from the database
756 	 */
757 	for (;;) {
758 		if (fgets(buf, sizeof(buf), db) == NULL)
759 			break;
760 
761 		if ((ch = strchr(buf, '#')) != NULL)
762 			*ch = '\0';
763 		ch = strchr(buf, '\0') - 1;
764 		while (ch > buf && isspace(*ch))
765 			*ch-- = '\0';
766 		if (ch <= buf)
767 			continue;
768 
769 		/* Can't handle subvendor / subdevice entries yet */
770 		if (buf[0] == '\t' && buf[1] == '\t')
771 			continue;
772 
773 		/* Check for vendor entry */
774 		if (buf[0] != '\t' && sscanf(buf, "%04x %[^\n]", &id, str) == 2) {
775 			if ((id == 0) || (strlen(str) < 1))
776 				continue;
777 			if ((cv = malloc(sizeof(struct pci_vendor_info))) == NULL) {
778 				warn("allocating vendor entry");
779 				error = 1;
780 				break;
781 			}
782 			if ((cv->desc = strdup(str)) == NULL) {
783 				free(cv);
784 				warn("allocating vendor description");
785 				error = 1;
786 				break;
787 			}
788 			cv->id = id;
789 			TAILQ_INIT(&cv->devs);
790 			TAILQ_INSERT_TAIL(&pci_vendors, cv, link);
791 			continue;
792 		}
793 
794 		/* Check for device entry */
795 		if (buf[0] == '\t' && sscanf(buf + 1, "%04x %[^\n]", &id, str) == 2) {
796 			if ((id == 0) || (strlen(str) < 1))
797 				continue;
798 			if (cv == NULL) {
799 				warnx("device entry with no vendor!");
800 				continue;
801 			}
802 			if ((cd = malloc(sizeof(struct pci_device_info))) == NULL) {
803 				warn("allocating device entry");
804 				error = 1;
805 				break;
806 			}
807 			if ((cd->desc = strdup(str)) == NULL) {
808 				free(cd);
809 				warn("allocating device description");
810 				error = 1;
811 				break;
812 			}
813 			cd->id = id;
814 			TAILQ_INSERT_TAIL(&cv->devs, cd, link);
815 			continue;
816 		}
817 
818 		/* It's a comment or junk, ignore it */
819 	}
820 	if (ferror(db))
821 		error = 1;
822 	fclose(db);
823 
824 	return(error);
825 }
826 
827 uint32_t
828 read_config(int fd, struct pcisel *sel, long reg, int width)
829 {
830 	struct pci_io pi;
831 
832 	pi.pi_sel = *sel;
833 	pi.pi_reg = reg;
834 	pi.pi_width = width;
835 
836 	if (ioctl(fd, PCIOCREAD, &pi) < 0)
837 		err(1, "ioctl(PCIOCREAD)");
838 
839 	return (pi.pi_data);
840 }
841 
842 static struct pcisel
843 getdevice(const char *name)
844 {
845 	struct pci_conf_io pc;
846 	struct pci_conf conf[1];
847 	struct pci_match_conf patterns[1];
848 	char *cp;
849 	int fd;
850 
851 	fd = open(_PATH_DEVPCI, O_RDONLY, 0);
852 	if (fd < 0)
853 		err(1, "%s", _PATH_DEVPCI);
854 
855 	bzero(&pc, sizeof(struct pci_conf_io));
856 	pc.match_buf_len = sizeof(conf);
857 	pc.matches = conf;
858 
859 	bzero(&patterns, sizeof(patterns));
860 
861 	/*
862 	 * The pattern structure requires the unit to be split out from
863 	 * the driver name.  Walk backwards from the end of the name to
864 	 * find the start of the unit.
865 	 */
866 	if (name[0] == '\0')
867 		errx(1, "Empty device name");
868 	cp = strchr(name, '\0');
869 	assert(cp != NULL && cp != name);
870 	cp--;
871 	while (cp != name && isdigit(cp[-1]))
872 		cp--;
873 	if (cp == name || !isdigit(*cp))
874 		errx(1, "Invalid device name");
875 	if ((size_t)(cp - name) + 1 > sizeof(patterns[0].pd_name))
876 		errx(1, "Device name is too long");
877 	memcpy(patterns[0].pd_name, name, cp - name);
878 	patterns[0].pd_unit = strtol(cp, &cp, 10);
879 	assert(*cp == '\0');
880 	patterns[0].flags = PCI_GETCONF_MATCH_NAME | PCI_GETCONF_MATCH_UNIT;
881 	pc.num_patterns = 1;
882 	pc.pat_buf_len = sizeof(patterns);
883 	pc.patterns = patterns;
884 
885 	if (ioctl(fd, PCIOCGETCONF, &pc) == -1)
886 		err(1, "ioctl(PCIOCGETCONF)");
887 	if (pc.status != PCI_GETCONF_LAST_DEVICE &&
888 	    pc.status != PCI_GETCONF_MORE_DEVS)
889 		errx(1, "error returned from PCIOCGETCONF ioctl");
890 	close(fd);
891 	if (pc.num_matches == 0)
892 		errx(1, "Device not found");
893 	return (conf[0].pc_sel);
894 }
895 
896 static struct pcisel
897 parsesel(const char *str)
898 {
899 	const char *ep;
900 	char *eppos;
901 	struct pcisel sel;
902 	unsigned long selarr[4];
903 	int i;
904 
905 	ep = strchr(str, '@');
906 	if (ep != NULL)
907 		ep++;
908 	else
909 		ep = str;
910 
911 	if (strncmp(ep, "pci", 3) == 0) {
912 		ep += 3;
913 		i = 0;
914 		while (isdigit(*ep) && i < 4) {
915 			selarr[i++] = strtoul(ep, &eppos, 10);
916 			ep = eppos;
917 			if (*ep == ':') {
918 				ep++;
919 				if (*ep  == '\0')
920 					i = 0;
921 			}
922 		}
923 		if (i > 0 && *ep == '\0') {
924 			sel.pc_func = (i > 2) ? selarr[--i] : 0;
925 			sel.pc_dev = (i > 0) ? selarr[--i] : 0;
926 			sel.pc_bus = (i > 0) ? selarr[--i] : 0;
927 			sel.pc_domain = (i > 0) ? selarr[--i] : 0;
928 			return (sel);
929 		}
930 	}
931 	errx(1, "cannot parse selector %s", str);
932 }
933 
934 static struct pcisel
935 getsel(const char *str)
936 {
937 
938 	/*
939 	 * No device names contain colons and selectors always contain
940 	 * at least one colon.
941 	 */
942 	if (strchr(str, ':') == NULL)
943 		return (getdevice(str));
944 	else
945 		return (parsesel(str));
946 }
947 
948 static void
949 readone(int fd, struct pcisel *sel, long reg, int width)
950 {
951 
952 	printf("%0*x", width*2, read_config(fd, sel, reg, width));
953 }
954 
955 static void
956 readit(const char *name, const char *reg, int width)
957 {
958 	long rstart;
959 	long rend;
960 	long r;
961 	char *end;
962 	int i;
963 	int fd;
964 	struct pcisel sel;
965 
966 	fd = open(_PATH_DEVPCI, O_RDWR, 0);
967 	if (fd < 0)
968 		err(1, "%s", _PATH_DEVPCI);
969 
970 	rend = rstart = strtol(reg, &end, 0);
971 	if (end && *end == ':') {
972 		end++;
973 		rend = strtol(end, (char **) 0, 0);
974 	}
975 	sel = getsel(name);
976 	for (i = 1, r = rstart; r <= rend; i++, r += width) {
977 		readone(fd, &sel, r, width);
978 		if (i && !(i % 8))
979 			putchar(' ');
980 		putchar(i % (16/width) ? ' ' : '\n');
981 	}
982 	if (i % (16/width) != 1)
983 		putchar('\n');
984 	close(fd);
985 }
986 
987 static void
988 writeit(const char *name, const char *reg, const char *data, int width)
989 {
990 	int fd;
991 	struct pci_io pi;
992 
993 	pi.pi_sel = getsel(name);
994 	pi.pi_reg = strtoul(reg, (char **)0, 0); /* XXX error check */
995 	pi.pi_width = width;
996 	pi.pi_data = strtoul(data, (char **)0, 0); /* XXX error check */
997 
998 	fd = open(_PATH_DEVPCI, O_RDWR, 0);
999 	if (fd < 0)
1000 		err(1, "%s", _PATH_DEVPCI);
1001 
1002 	if (ioctl(fd, PCIOCWRITE, &pi) < 0)
1003 		err(1, "ioctl(PCIOCWRITE)");
1004 }
1005 
1006 static void
1007 chkattached(const char *name)
1008 {
1009 	int fd;
1010 	struct pci_io pi;
1011 
1012 	pi.pi_sel = getsel(name);
1013 
1014 	fd = open(_PATH_DEVPCI, O_RDWR, 0);
1015 	if (fd < 0)
1016 		err(1, "%s", _PATH_DEVPCI);
1017 
1018 	if (ioctl(fd, PCIOCATTACHED, &pi) < 0)
1019 		err(1, "ioctl(PCIOCATTACHED)");
1020 
1021 	exitstatus = pi.pi_data ? 0 : 2; /* exit(2), if NOT attached */
1022 	printf("%s: %s%s\n", name, pi.pi_data == 0 ? "not " : "", "attached");
1023 }
1024