2 * The PCI Utilities -- List All PCI Devices
4 * Copyright (c) 1997--2020 Martin Mares <mj@ucw.cz>
6 * Can be freely distributed and used under the terms of the GNU GPL.
18 int verbose; /* Show detailed information */
19 static int opt_hex; /* Show contents of config space as hexadecimal numbers */
20 struct pci_filter filter; /* Device filter */
21 static int opt_filter; /* Any filter was given */
22 static int opt_tree; /* Show bus tree */
23 static int opt_path; /* Show bridge path */
24 static int opt_machine; /* Generate machine-readable output */
25 static int opt_map_mode; /* Bus mapping mode enabled */
26 static int opt_domains; /* Show domain numbers (0=disabled, 1=auto-detected, 2=requested) */
27 static int opt_kernel; /* Show kernel drivers */
28 static int opt_query_dns; /* Query the DNS (0=disabled, 1=enabled, 2=refresh cache) */
29 static int opt_query_all; /* Query the DNS for all entries */
30 char *opt_pcimap; /* Override path to Linux modules.pcimap */
32 const char program_name[] = "lspci";
34 static char options[] = "nvbxs:d:tPi:mgp:qkMDQ" GENERIC_OPTIONS ;
36 static char help_msg[] =
37 "Usage: lspci [<switches>]\n"
39 "Basic display modes:\n"
40 "-mm\t\tProduce machine-readable output (single -m for an obsolete format)\n"
41 "-t\t\tShow bus tree\n"
44 "-v\t\tBe verbose (-vv or -vvv for higher verbosity)\n"
46 "-k\t\tShow kernel drivers handling each device\n"
48 "-x\t\tShow hex-dump of the standard part of the config space\n"
49 "-xxx\t\tShow hex-dump of the whole config space (dangerous; root only)\n"
50 "-xxxx\t\tShow hex-dump of the 4096-byte extended config space (root only)\n"
51 "-b\t\tBus-centric view (addresses and IRQ's as seen by the bus)\n"
52 "-D\t\tAlways show domain numbers\n"
53 "-P\t\tDisplay bridge path in addition to bus and device number\n"
54 "-PP\t\tDisplay bus path in addition to bus and device number\n"
56 "Resolving of device ID's to names:\n"
57 "-n\t\tShow numeric ID's\n"
58 "-nn\t\tShow both textual and numeric ID's (names & numbers)\n"
60 "-q\t\tQuery the PCI ID database for unknown ID's via DNS\n"
61 "-qq\t\tAs above, but re-query locally cached entries\n"
62 "-Q\t\tQuery the PCI ID database for all ID's via DNS\n"
65 "Selection of devices:\n"
66 "-s [[[[<domain>]:]<bus>]:][<slot>][.[<func>]]\tShow only devices in selected slots\n"
67 "-d [<vendor>]:[<device>][:<class>]\t\tShow only devices with specified ID's\n"
70 "-i <file>\tUse specified ID database instead of %s\n"
72 "-p <file>\tLook up kernel modules in a given file instead of default modules.pcimap\n"
74 "-M\t\tEnable `bus mapping' mode (dangerous; root only)\n"
76 "PCI access options:\n"
80 /*** Our view of the PCI bus ***/
82 struct pci_access *pacc;
83 struct device *first_dev;
84 static int seen_errors;
85 static int need_topology;
88 config_fetch(struct device *d, unsigned int pos, unsigned int len)
90 unsigned int end = pos+len;
93 while (pos < d->config_bufsize && len && d->present[pos])
95 while (pos+len <= d->config_bufsize && len && d->present[pos+len-1])
100 if (end > d->config_bufsize)
102 int orig_size = d->config_bufsize;
103 while (end > d->config_bufsize)
104 d->config_bufsize *= 2;
105 d->config = xrealloc(d->config, d->config_bufsize);
106 d->present = xrealloc(d->present, d->config_bufsize);
107 memset(d->present + orig_size, 0, d->config_bufsize - orig_size);
109 result = pci_read_block(d->dev, pos, d->config + pos, len);
111 memset(d->present + pos, 1, len);
116 scan_device(struct pci_dev *p)
120 if (p->domain && !opt_domains)
122 if (!pci_filter_match(&filter, p) && !need_topology)
124 d = xmalloc(sizeof(struct device));
125 memset(d, 0, sizeof(*d));
127 d->config_cached = d->config_bufsize = 64;
128 d->config = xmalloc(64);
129 d->present = xmalloc(64);
130 memset(d->present, 1, 64);
131 if (!pci_read_block(p, 0, d->config, 64))
133 fprintf(stderr, "lspci: Unable to read the standard configuration space header of device %04x:%02x:%02x.%d\n",
134 p->domain, p->bus, p->dev, p->func);
138 if ((d->config[PCI_HEADER_TYPE] & 0x7f) == PCI_HEADER_TYPE_CARDBUS)
140 /* For cardbus bridges, we need to fetch 64 bytes more to get the
141 * full standard header... */
142 if (config_fetch(d, 64, 64))
143 d->config_cached += 64;
145 pci_setup_cache(p, d->config, d->config_cached);
146 pci_fill_info(p, PCI_FILL_IDENT | PCI_FILL_CLASS);
157 for (p=pacc->devices; p; p=p->next)
158 if (d = scan_device(p))
165 /*** Config space accesses ***/
168 check_conf_range(struct device *d, unsigned int pos, unsigned int len)
171 if (!d->present[pos])
172 die("Internal bug: Accessing non-read configuration byte at position %x", pos);
178 get_conf_byte(struct device *d, unsigned int pos)
180 check_conf_range(d, pos, 1);
181 return d->config[pos];
185 get_conf_word(struct device *d, unsigned int pos)
187 check_conf_range(d, pos, 2);
188 return d->config[pos] | (d->config[pos+1] << 8);
192 get_conf_long(struct device *d, unsigned int pos)
194 check_conf_range(d, pos, 4);
195 return d->config[pos] |
196 (d->config[pos+1] << 8) |
197 (d->config[pos+2] << 16) |
198 (d->config[pos+3] << 24);
204 compare_them(const void *A, const void *B)
206 const struct pci_dev *a = (*(const struct device **)A)->dev;
207 const struct pci_dev *b = (*(const struct device **)B)->dev;
209 if (a->domain < b->domain)
211 if (a->domain > b->domain)
221 if (a->func < b->func)
223 if (a->func > b->func)
231 struct device **index, **h, **last_dev;
236 for (d=first_dev; d; d=d->next)
238 h = index = alloca(sizeof(struct device *) * cnt);
239 for (d=first_dev; d; d=d->next)
241 qsort(index, cnt, sizeof(struct device *), compare_them);
242 last_dev = &first_dev;
247 last_dev = &(*h)->next;
253 /*** Normal output ***/
256 show_slot_path(struct device *d)
258 struct pci_dev *p = d->dev;
262 struct bus *bus = d->parent_bus;
263 struct bridge *br = bus->parent_bridge;
265 if (br && br->br_dev)
267 show_slot_path(br->br_dev);
269 printf("/%02x:%02x.%d", p->bus, p->dev, p->func);
271 printf("/%02x.%d", p->dev, p->func);
275 printf("%02x:%02x.%d", p->bus, p->dev, p->func);
279 show_slot_name(struct device *d)
281 struct pci_dev *p = d->dev;
283 if (!opt_machine ? opt_domains : (p->domain || opt_domains >= 2))
284 printf("%04x:", p->domain);
289 get_subid(struct device *d, word *subvp, word *subdp)
291 byte htype = get_conf_byte(d, PCI_HEADER_TYPE) & 0x7f;
293 if (htype == PCI_HEADER_TYPE_NORMAL)
295 *subvp = get_conf_word(d, PCI_SUBSYSTEM_VENDOR_ID);
296 *subdp = get_conf_word(d, PCI_SUBSYSTEM_ID);
298 else if (htype == PCI_HEADER_TYPE_CARDBUS && d->config_cached >= 128)
300 *subvp = get_conf_word(d, PCI_CB_SUBSYSTEM_VENDOR_ID);
301 *subdp = get_conf_word(d, PCI_CB_SUBSYSTEM_ID);
304 *subvp = *subdp = 0xffff;
308 show_terse(struct device *d)
311 struct pci_dev *p = d->dev;
312 char classbuf[128], devbuf[128];
316 pci_lookup_name(pacc, classbuf, sizeof(classbuf),
319 pci_lookup_name(pacc, devbuf, sizeof(devbuf),
320 PCI_LOOKUP_VENDOR | PCI_LOOKUP_DEVICE,
321 p->vendor_id, p->device_id));
322 if (c = get_conf_byte(d, PCI_REVISION_ID))
323 printf(" (rev %02x)", c);
327 c = get_conf_byte(d, PCI_CLASS_PROG);
328 x = pci_lookup_name(pacc, devbuf, sizeof(devbuf),
329 PCI_LOOKUP_PROGIF | PCI_LOOKUP_NO_NUMBERS,
333 printf(" (prog-if %02x", c);
341 if (verbose || opt_kernel)
343 word subsys_v, subsys_d;
346 pci_fill_info(p, PCI_FILL_LABEL);
349 printf("\tDeviceName: %s", p->label);
350 get_subid(d, &subsys_v, &subsys_d);
351 if (subsys_v && subsys_v != 0xffff)
352 printf("\tSubsystem: %s\n",
353 pci_lookup_name(pacc, ssnamebuf, sizeof(ssnamebuf),
354 PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_VENDOR | PCI_LOOKUP_DEVICE,
355 p->vendor_id, p->device_id, subsys_v, subsys_d));
359 /*** Verbose output ***/
364 static const char suffix[][2] = { "", "K", "M", "G", "T" };
368 for (i = 0; i < (sizeof(suffix) / sizeof(*suffix) - 1); i++) {
373 printf(" [size=%u%s]", (unsigned)x, suffix[i]);
377 show_range(char *prefix, u64 base, u64 limit, int is_64bit)
379 printf("%s:", prefix);
380 if (base <= limit || verbose > 2)
383 printf(" %016" PCI_U64_FMT_X "-%016" PCI_U64_FMT_X, base, limit);
385 printf(" %08x-%08x", (unsigned) base, (unsigned) limit);
388 show_size(limit - base + 1);
390 printf(" [disabled]");
395 show_bases(struct device *d, int cnt)
397 struct pci_dev *p = d->dev;
398 word cmd = get_conf_word(d, PCI_COMMAND);
402 for (i=0; i<cnt; i++)
404 pciaddr_t pos = p->base_addr[i];
405 pciaddr_t len = (p->known_fields & PCI_FILL_SIZES) ? p->size[i] : 0;
406 pciaddr_t ioflg = (p->known_fields & PCI_FILL_IO_FLAGS) ? p->flags[i] : 0;
407 u32 flg = get_conf_long(d, PCI_BASE_ADDRESS_0 + 4*i);
412 if (flg == 0xffffffff)
414 if (!pos && !flg && !len)
418 printf("\tRegion %d: ", i);
422 /* Read address as seen by the hardware */
423 if (flg & PCI_BASE_ADDRESS_SPACE_IO)
424 hw_lower = flg & PCI_BASE_ADDRESS_IO_MASK;
427 hw_lower = flg & PCI_BASE_ADDRESS_MEM_MASK;
428 if ((flg & PCI_BASE_ADDRESS_MEM_TYPE_MASK) == PCI_BASE_ADDRESS_MEM_TYPE_64)
435 hw_upper = get_conf_long(d, PCI_BASE_ADDRESS_0 + 4*i);
440 /* Detect virtual regions, which are reported by the OS, but unassigned in the device */
441 if (pos && !hw_lower && !hw_upper && !(ioflg & PCI_IORESOURCE_PCI_EA_BEI))
447 /* Print base address */
448 if (flg & PCI_BASE_ADDRESS_SPACE_IO)
450 pciaddr_t a = pos & PCI_BASE_ADDRESS_IO_MASK;
451 printf("I/O ports at ");
452 if (a || (cmd & PCI_COMMAND_IO))
453 printf(PCIADDR_PORT_FMT, a);
457 printf("<unassigned>");
459 printf(" [virtual]");
460 else if (!(cmd & PCI_COMMAND_IO))
461 printf(" [disabled]");
465 int t = flg & PCI_BASE_ADDRESS_MEM_TYPE_MASK;
466 pciaddr_t a = pos & PCI_ADDR_MEM_MASK;
468 printf("Memory at ");
470 printf("<broken-64-bit-slot>");
472 printf(PCIADDR_T_FMT, a);
473 else if (hw_lower || hw_upper)
476 printf("<unassigned>");
477 printf(" (%s, %sprefetchable)",
478 (t == PCI_BASE_ADDRESS_MEM_TYPE_32) ? "32-bit" :
479 (t == PCI_BASE_ADDRESS_MEM_TYPE_64) ? "64-bit" :
480 (t == PCI_BASE_ADDRESS_MEM_TYPE_1M) ? "low-1M" : "type 3",
481 (flg & PCI_BASE_ADDRESS_MEM_PREFETCH) ? "" : "non-");
483 printf(" [virtual]");
484 else if (!(cmd & PCI_COMMAND_MEMORY))
485 printf(" [disabled]");
488 if (ioflg & PCI_IORESOURCE_PCI_EA_BEI)
489 printf(" [enhanced]");
497 show_rom(struct device *d, int reg)
499 struct pci_dev *p = d->dev;
500 pciaddr_t rom = p->rom_base_addr;
501 pciaddr_t len = (p->known_fields & PCI_FILL_SIZES) ? p->rom_size : 0;
502 pciaddr_t ioflg = (p->known_fields & PCI_FILL_IO_FLAGS) ? p->rom_flags : 0;
503 u32 flg = get_conf_long(d, reg);
504 word cmd = get_conf_word(d, PCI_COMMAND);
507 if (!rom && !flg && !len)
510 if ((rom & PCI_ROM_ADDRESS_MASK) && !(flg & PCI_ROM_ADDRESS_MASK) && !(ioflg & PCI_IORESOURCE_PCI_EA_BEI))
516 printf("\tExpansion ROM at ");
517 if (rom & PCI_ROM_ADDRESS_MASK)
518 printf(PCIADDR_T_FMT, rom & PCI_ROM_ADDRESS_MASK);
519 else if (flg & PCI_ROM_ADDRESS_MASK)
522 printf("<unassigned>");
525 printf(" [virtual]");
527 if (!(flg & PCI_ROM_ADDRESS_ENABLE))
528 printf(" [disabled]");
529 else if (!virtual && !(cmd & PCI_COMMAND_MEMORY))
530 printf(" [disabled by cmd]");
532 if (ioflg & PCI_IORESOURCE_PCI_EA_BEI)
533 printf(" [enhanced]");
540 show_htype0(struct device *d)
543 show_rom(d, PCI_ROM_ADDRESS);
544 show_caps(d, PCI_CAPABILITY_LIST);
548 show_htype1(struct device *d)
550 u32 io_base = get_conf_byte(d, PCI_IO_BASE);
551 u32 io_limit = get_conf_byte(d, PCI_IO_LIMIT);
552 u32 io_type = io_base & PCI_IO_RANGE_TYPE_MASK;
553 u32 mem_base = get_conf_word(d, PCI_MEMORY_BASE);
554 u32 mem_limit = get_conf_word(d, PCI_MEMORY_LIMIT);
555 u32 mem_type = mem_base & PCI_MEMORY_RANGE_TYPE_MASK;
556 u32 pref_base = get_conf_word(d, PCI_PREF_MEMORY_BASE);
557 u32 pref_limit = get_conf_word(d, PCI_PREF_MEMORY_LIMIT);
558 u32 pref_type = pref_base & PCI_PREF_RANGE_TYPE_MASK;
559 word sec_stat = get_conf_word(d, PCI_SEC_STATUS);
560 word brc = get_conf_word(d, PCI_BRIDGE_CONTROL);
563 printf("\tBus: primary=%02x, secondary=%02x, subordinate=%02x, sec-latency=%d\n",
564 get_conf_byte(d, PCI_PRIMARY_BUS),
565 get_conf_byte(d, PCI_SECONDARY_BUS),
566 get_conf_byte(d, PCI_SUBORDINATE_BUS),
567 get_conf_byte(d, PCI_SEC_LATENCY_TIMER));
569 if (io_type != (io_limit & PCI_IO_RANGE_TYPE_MASK) ||
570 (io_type != PCI_IO_RANGE_TYPE_16 && io_type != PCI_IO_RANGE_TYPE_32))
571 printf("\t!!! Unknown I/O range types %x/%x\n", io_base, io_limit);
574 io_base = (io_base & PCI_IO_RANGE_MASK) << 8;
575 io_limit = (io_limit & PCI_IO_RANGE_MASK) << 8;
576 if (io_type == PCI_IO_RANGE_TYPE_32)
578 io_base |= (get_conf_word(d, PCI_IO_BASE_UPPER16) << 16);
579 io_limit |= (get_conf_word(d, PCI_IO_LIMIT_UPPER16) << 16);
581 show_range("\tI/O behind bridge", io_base, io_limit+0xfff, 0);
584 if (mem_type != (mem_limit & PCI_MEMORY_RANGE_TYPE_MASK) ||
586 printf("\t!!! Unknown memory range types %x/%x\n", mem_base, mem_limit);
589 mem_base = (mem_base & PCI_MEMORY_RANGE_MASK) << 16;
590 mem_limit = (mem_limit & PCI_MEMORY_RANGE_MASK) << 16;
591 show_range("\tMemory behind bridge", mem_base, mem_limit + 0xfffff, 0);
594 if (pref_type != (pref_limit & PCI_PREF_RANGE_TYPE_MASK) ||
595 (pref_type != PCI_PREF_RANGE_TYPE_32 && pref_type != PCI_PREF_RANGE_TYPE_64))
596 printf("\t!!! Unknown prefetchable memory range types %x/%x\n", pref_base, pref_limit);
599 u64 pref_base_64 = (pref_base & PCI_PREF_RANGE_MASK) << 16;
600 u64 pref_limit_64 = (pref_limit & PCI_PREF_RANGE_MASK) << 16;
601 if (pref_type == PCI_PREF_RANGE_TYPE_64)
603 pref_base_64 |= (u64) get_conf_long(d, PCI_PREF_BASE_UPPER32) << 32;
604 pref_limit_64 |= (u64) get_conf_long(d, PCI_PREF_LIMIT_UPPER32) << 32;
606 show_range("\tPrefetchable memory behind bridge", pref_base_64, pref_limit_64 + 0xfffff, (pref_type == PCI_PREF_RANGE_TYPE_64));
610 printf("\tSecondary status: 66MHz%c FastB2B%c ParErr%c DEVSEL=%s >TAbort%c <TAbort%c <MAbort%c <SERR%c <PERR%c\n",
611 FLAG(sec_stat, PCI_STATUS_66MHZ),
612 FLAG(sec_stat, PCI_STATUS_FAST_BACK),
613 FLAG(sec_stat, PCI_STATUS_PARITY),
614 ((sec_stat & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_SLOW) ? "slow" :
615 ((sec_stat & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_MEDIUM) ? "medium" :
616 ((sec_stat & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_FAST) ? "fast" : "??",
617 FLAG(sec_stat, PCI_STATUS_SIG_TARGET_ABORT),
618 FLAG(sec_stat, PCI_STATUS_REC_TARGET_ABORT),
619 FLAG(sec_stat, PCI_STATUS_REC_MASTER_ABORT),
620 FLAG(sec_stat, PCI_STATUS_SIG_SYSTEM_ERROR),
621 FLAG(sec_stat, PCI_STATUS_DETECTED_PARITY));
623 show_rom(d, PCI_ROM_ADDRESS1);
627 printf("\tBridgeCtl: Parity%c SERR%c NoISA%c VGA%c VGA16%c MAbort%c >Reset%c FastB2B%c\n",
628 FLAG(brc, PCI_BRIDGE_CTL_PARITY),
629 FLAG(brc, PCI_BRIDGE_CTL_SERR),
630 FLAG(brc, PCI_BRIDGE_CTL_NO_ISA),
631 FLAG(brc, PCI_BRIDGE_CTL_VGA),
632 FLAG(brc, PCI_BRIDGE_CTL_VGA_16BIT),
633 FLAG(brc, PCI_BRIDGE_CTL_MASTER_ABORT),
634 FLAG(brc, PCI_BRIDGE_CTL_BUS_RESET),
635 FLAG(brc, PCI_BRIDGE_CTL_FAST_BACK));
636 printf("\t\tPriDiscTmr%c SecDiscTmr%c DiscTmrStat%c DiscTmrSERREn%c\n",
637 FLAG(brc, PCI_BRIDGE_CTL_PRI_DISCARD_TIMER),
638 FLAG(brc, PCI_BRIDGE_CTL_SEC_DISCARD_TIMER),
639 FLAG(brc, PCI_BRIDGE_CTL_DISCARD_TIMER_STATUS),
640 FLAG(brc, PCI_BRIDGE_CTL_DISCARD_TIMER_SERR_EN));
643 show_caps(d, PCI_CAPABILITY_LIST);
647 show_htype2(struct device *d)
650 word cmd = get_conf_word(d, PCI_COMMAND);
651 word brc = get_conf_word(d, PCI_CB_BRIDGE_CONTROL);
653 int verb = verbose > 2;
656 printf("\tBus: primary=%02x, secondary=%02x, subordinate=%02x, sec-latency=%d\n",
657 get_conf_byte(d, PCI_CB_PRIMARY_BUS),
658 get_conf_byte(d, PCI_CB_CARD_BUS),
659 get_conf_byte(d, PCI_CB_SUBORDINATE_BUS),
660 get_conf_byte(d, PCI_CB_LATENCY_TIMER));
664 u32 base = get_conf_long(d, PCI_CB_MEMORY_BASE_0 + p);
665 u32 limit = get_conf_long(d, PCI_CB_MEMORY_LIMIT_0 + p);
666 limit = limit + 0xfff;
667 if (base <= limit || verb)
668 printf("\tMemory window %d: %08x-%08x%s%s\n", i, base, limit,
669 (cmd & PCI_COMMAND_MEMORY) ? "" : " [disabled]",
670 (brc & (PCI_CB_BRIDGE_CTL_PREFETCH_MEM0 << i)) ? " (prefetchable)" : "");
675 u32 base = get_conf_long(d, PCI_CB_IO_BASE_0 + p);
676 u32 limit = get_conf_long(d, PCI_CB_IO_LIMIT_0 + p);
677 if (!(base & PCI_IO_RANGE_TYPE_32))
682 base &= PCI_CB_IO_RANGE_MASK;
683 limit = (limit & PCI_CB_IO_RANGE_MASK) + 3;
684 if (base <= limit || verb)
685 printf("\tI/O window %d: %08x-%08x%s\n", i, base, limit,
686 (cmd & PCI_COMMAND_IO) ? "" : " [disabled]");
689 if (get_conf_word(d, PCI_CB_SEC_STATUS) & PCI_STATUS_SIG_SYSTEM_ERROR)
690 printf("\tSecondary status: SERR\n");
692 printf("\tBridgeCtl: Parity%c SERR%c ISA%c VGA%c MAbort%c >Reset%c 16bInt%c PostWrite%c\n",
693 FLAG(brc, PCI_CB_BRIDGE_CTL_PARITY),
694 FLAG(brc, PCI_CB_BRIDGE_CTL_SERR),
695 FLAG(brc, PCI_CB_BRIDGE_CTL_ISA),
696 FLAG(brc, PCI_CB_BRIDGE_CTL_VGA),
697 FLAG(brc, PCI_CB_BRIDGE_CTL_MASTER_ABORT),
698 FLAG(brc, PCI_CB_BRIDGE_CTL_CB_RESET),
699 FLAG(brc, PCI_CB_BRIDGE_CTL_16BIT_INT),
700 FLAG(brc, PCI_CB_BRIDGE_CTL_POST_WRITES));
702 if (d->config_cached < 128)
704 printf("\t<access denied to the rest>\n");
708 exca = get_conf_word(d, PCI_CB_LEGACY_MODE_BASE);
710 printf("\t16-bit legacy interface ports at %04x\n", exca);
711 show_caps(d, PCI_CB_CAPABILITY_LIST);
715 show_verbose(struct device *d)
717 struct pci_dev *p = d->dev;
718 word status = get_conf_word(d, PCI_STATUS);
719 word cmd = get_conf_word(d, PCI_COMMAND);
720 word class = p->device_class;
721 byte bist = get_conf_byte(d, PCI_BIST);
722 byte htype = get_conf_byte(d, PCI_HEADER_TYPE) & 0x7f;
723 byte latency = get_conf_byte(d, PCI_LATENCY_TIMER);
724 byte cache_line = get_conf_byte(d, PCI_CACHE_LINE_SIZE);
725 byte max_lat, min_gnt;
726 byte int_pin = get_conf_byte(d, PCI_INTERRUPT_PIN);
728 char *dt_node, *iommu_group;
732 pci_fill_info(p, PCI_FILL_IRQ | PCI_FILL_BASES | PCI_FILL_ROM_BASE | PCI_FILL_SIZES |
733 PCI_FILL_PHYS_SLOT | PCI_FILL_NUMA_NODE | PCI_FILL_DT_NODE | PCI_FILL_IOMMU_GROUP);
738 case PCI_HEADER_TYPE_NORMAL:
739 if (class == PCI_CLASS_BRIDGE_PCI)
740 printf("\t!!! Invalid class %04x for header type %02x\n", class, htype);
741 max_lat = get_conf_byte(d, PCI_MAX_LAT);
742 min_gnt = get_conf_byte(d, PCI_MIN_GNT);
744 case PCI_HEADER_TYPE_BRIDGE:
745 if ((class >> 8) != PCI_BASE_CLASS_BRIDGE)
746 printf("\t!!! Invalid class %04x for header type %02x\n", class, htype);
747 min_gnt = max_lat = 0;
749 case PCI_HEADER_TYPE_CARDBUS:
750 if ((class >> 8) != PCI_BASE_CLASS_BRIDGE)
751 printf("\t!!! Invalid class %04x for header type %02x\n", class, htype);
752 min_gnt = max_lat = 0;
755 printf("\t!!! Unknown header type %02x\n", htype);
760 printf("\tPhysical Slot: %s\n", p->phy_slot);
762 if (dt_node = pci_get_string_property(p, PCI_FILL_DT_NODE))
763 printf("\tDevice tree node: %s\n", dt_node);
767 printf("\tControl: I/O%c Mem%c BusMaster%c SpecCycle%c MemWINV%c VGASnoop%c ParErr%c Stepping%c SERR%c FastB2B%c DisINTx%c\n",
768 FLAG(cmd, PCI_COMMAND_IO),
769 FLAG(cmd, PCI_COMMAND_MEMORY),
770 FLAG(cmd, PCI_COMMAND_MASTER),
771 FLAG(cmd, PCI_COMMAND_SPECIAL),
772 FLAG(cmd, PCI_COMMAND_INVALIDATE),
773 FLAG(cmd, PCI_COMMAND_VGA_PALETTE),
774 FLAG(cmd, PCI_COMMAND_PARITY),
775 FLAG(cmd, PCI_COMMAND_WAIT),
776 FLAG(cmd, PCI_COMMAND_SERR),
777 FLAG(cmd, PCI_COMMAND_FAST_BACK),
778 FLAG(cmd, PCI_COMMAND_DISABLE_INTx));
779 printf("\tStatus: Cap%c 66MHz%c UDF%c FastB2B%c ParErr%c DEVSEL=%s >TAbort%c <TAbort%c <MAbort%c >SERR%c <PERR%c INTx%c\n",
780 FLAG(status, PCI_STATUS_CAP_LIST),
781 FLAG(status, PCI_STATUS_66MHZ),
782 FLAG(status, PCI_STATUS_UDF),
783 FLAG(status, PCI_STATUS_FAST_BACK),
784 FLAG(status, PCI_STATUS_PARITY),
785 ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_SLOW) ? "slow" :
786 ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_MEDIUM) ? "medium" :
787 ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_FAST) ? "fast" : "??",
788 FLAG(status, PCI_STATUS_SIG_TARGET_ABORT),
789 FLAG(status, PCI_STATUS_REC_TARGET_ABORT),
790 FLAG(status, PCI_STATUS_REC_MASTER_ABORT),
791 FLAG(status, PCI_STATUS_SIG_SYSTEM_ERROR),
792 FLAG(status, PCI_STATUS_DETECTED_PARITY),
793 FLAG(status, PCI_STATUS_INTx));
794 if (cmd & PCI_COMMAND_MASTER)
796 printf("\tLatency: %d", latency);
797 if (min_gnt || max_lat)
801 printf("%dns min", min_gnt*250);
802 if (min_gnt && max_lat)
805 printf("%dns max", max_lat*250);
809 printf(", Cache Line Size: %d bytes", cache_line * 4);
813 printf("\tInterrupt: pin %c routed to IRQ " PCIIRQ_FMT "\n",
814 (int_pin ? 'A' + int_pin - 1 : '?'), irq);
815 if (p->numa_node != -1)
816 printf("\tNUMA node: %d\n", p->numa_node);
817 if (iommu_group = pci_get_string_property(p, PCI_FILL_IOMMU_GROUP))
818 printf("\tIOMMU group: %s\n", iommu_group);
823 if (cmd & PCI_COMMAND_MASTER)
824 printf("bus master, ");
825 if (cmd & PCI_COMMAND_VGA_PALETTE)
826 printf("VGA palette snoop, ");
827 if (cmd & PCI_COMMAND_WAIT)
828 printf("stepping, ");
829 if (cmd & PCI_COMMAND_FAST_BACK)
830 printf("fast Back2Back, ");
831 if (status & PCI_STATUS_66MHZ)
833 if (status & PCI_STATUS_UDF)
834 printf("user-definable features, ");
836 ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_SLOW) ? "slow" :
837 ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_MEDIUM) ? "medium" :
838 ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_FAST) ? "fast" : "??");
839 if (cmd & PCI_COMMAND_MASTER)
840 printf(", latency %d", latency);
842 printf(", IRQ " PCIIRQ_FMT, irq);
843 if (p->numa_node != -1)
844 printf(", NUMA node %d", p->numa_node);
845 if (iommu_group = pci_get_string_property(p, PCI_FILL_IOMMU_GROUP))
846 printf(", IOMMU group %s", iommu_group);
850 if (bist & PCI_BIST_CAPABLE)
852 if (bist & PCI_BIST_START)
853 printf("\tBIST is running\n");
855 printf("\tBIST result: %02x\n", bist & PCI_BIST_CODE_MASK);
860 case PCI_HEADER_TYPE_NORMAL:
863 case PCI_HEADER_TYPE_BRIDGE:
866 case PCI_HEADER_TYPE_CARDBUS:
872 /*** Machine-readable dumps ***/
875 show_hex_dump(struct device *d)
879 cnt = d->config_cached;
880 if (opt_hex >= 3 && config_fetch(d, cnt, 256-cnt))
883 if (opt_hex >= 4 && config_fetch(d, 256, 4096-256))
887 for (i=0; i<cnt; i++)
891 printf(" %02x", get_conf_byte(d, i));
898 print_shell_escaped(char *c)
903 if (*c == '"' || *c == '\\')
911 show_machine(struct device *d)
913 struct pci_dev *p = d->dev;
916 char classbuf[128], vendbuf[128], devbuf[128], svbuf[128], sdbuf[128];
917 char *dt_node, *iommu_group;
919 get_subid(d, &sv_id, &sd_id);
923 pci_fill_info(p, PCI_FILL_PHYS_SLOT | PCI_FILL_NUMA_NODE | PCI_FILL_DT_NODE | PCI_FILL_IOMMU_GROUP);
924 printf((opt_machine >= 2) ? "Slot:\t" : "Device:\t");
927 printf("Class:\t%s\n",
928 pci_lookup_name(pacc, classbuf, sizeof(classbuf), PCI_LOOKUP_CLASS, p->device_class));
929 printf("Vendor:\t%s\n",
930 pci_lookup_name(pacc, vendbuf, sizeof(vendbuf), PCI_LOOKUP_VENDOR, p->vendor_id, p->device_id));
931 printf("Device:\t%s\n",
932 pci_lookup_name(pacc, devbuf, sizeof(devbuf), PCI_LOOKUP_DEVICE, p->vendor_id, p->device_id));
933 if (sv_id && sv_id != 0xffff)
935 printf("SVendor:\t%s\n",
936 pci_lookup_name(pacc, svbuf, sizeof(svbuf), PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_VENDOR, sv_id));
937 printf("SDevice:\t%s\n",
938 pci_lookup_name(pacc, sdbuf, sizeof(sdbuf), PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_DEVICE, p->vendor_id, p->device_id, sv_id, sd_id));
941 printf("PhySlot:\t%s\n", p->phy_slot);
942 if (c = get_conf_byte(d, PCI_REVISION_ID))
943 printf("Rev:\t%02x\n", c);
944 if (c = get_conf_byte(d, PCI_CLASS_PROG))
945 printf("ProgIf:\t%02x\n", c);
947 show_kernel_machine(d);
948 if (p->numa_node != -1)
949 printf("NUMANode:\t%d\n", p->numa_node);
950 if (dt_node = pci_get_string_property(p, PCI_FILL_DT_NODE))
951 printf("DTNode:\t%s\n", dt_node);
952 if (iommu_group = pci_get_string_property(p, PCI_FILL_IOMMU_GROUP))
953 printf("IOMMUGroup:\t%s\n", iommu_group);
958 print_shell_escaped(pci_lookup_name(pacc, classbuf, sizeof(classbuf), PCI_LOOKUP_CLASS, p->device_class));
959 print_shell_escaped(pci_lookup_name(pacc, vendbuf, sizeof(vendbuf), PCI_LOOKUP_VENDOR, p->vendor_id, p->device_id));
960 print_shell_escaped(pci_lookup_name(pacc, devbuf, sizeof(devbuf), PCI_LOOKUP_DEVICE, p->vendor_id, p->device_id));
961 if (c = get_conf_byte(d, PCI_REVISION_ID))
962 printf(" -r%02x", c);
963 if (c = get_conf_byte(d, PCI_CLASS_PROG))
964 printf(" -p%02x", c);
965 if (sv_id && sv_id != 0xffff)
967 print_shell_escaped(pci_lookup_name(pacc, svbuf, sizeof(svbuf), PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_VENDOR, sv_id));
968 print_shell_escaped(pci_lookup_name(pacc, sdbuf, sizeof(sdbuf), PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_DEVICE, p->vendor_id, p->device_id, sv_id, sd_id));
971 printf(" \"\" \"\"");
976 /*** Main show function ***/
979 show_device(struct device *d)
989 if (opt_kernel || verbose)
994 if (verbose || opt_hex)
1003 for (d=first_dev; d; d=d->next)
1004 if (pci_filter_match(&filter, d->dev))
1011 main(int argc, char **argv)
1016 if (argc == 2 && !strcmp(argv[1], "--version"))
1018 puts("lspci version " PCIUTILS_VERSION);
1024 pci_filter_init(pacc, &filter);
1026 while ((i = getopt(argc, argv, options)) != -1)
1030 pacc->numeric_ids++;
1036 pacc->buscentric = 1;
1039 if (msg = pci_filter_parse_slot(&filter, optarg))
1044 if (msg = pci_filter_parse_id(&filter, optarg))
1060 pci_set_name_list_path(pacc, optarg, 0);
1066 opt_pcimap = optarg;
1089 die("DNS queries are not available in this version");
1092 if (parse_generic_option(i, pacc, optarg))
1095 fprintf(stderr, help_msg, pacc->id_file_name);
1103 pacc->id_lookup_mode |= PCI_LOOKUP_NETWORK;
1104 if (opt_query_dns > 1)
1105 pacc->id_lookup_mode |= PCI_LOOKUP_REFRESH_CACHE;
1108 pacc->id_lookup_mode |= PCI_LOOKUP_NETWORK | PCI_LOOKUP_SKIP_LOCAL;
1114 die("Bus mapping mode does not recognize bus topology");
1124 show_forest(opt_filter ? &filter : NULL);
1128 show_kernel_cleanup();
1131 return (seen_errors ? 2 : 0);