]> mj.ucw.cz Git - pciutils.git/blob - lspci.c
alloca() needs <alloca.h>.
[pciutils.git] / lspci.c
1 /*
2  *      The PCI Utilities -- List All PCI Devices
3  *
4  *      Copyright (c) 1997--2007 Martin Mares <mj@ucw.cz>
5  *
6  *      Can be freely distributed and used under the terms of the GNU GPL.
7  */
8
9 #include <stdio.h>
10 #include <string.h>
11 #include <stdlib.h>
12 #include <stdarg.h>
13 #include <unistd.h>
14
15 #include "pciutils.h"
16
17 /* Options */
18
19 static int verbose;                     /* Show detailed information */
20 static int buscentric_view;             /* Show bus addresses/IRQ's instead of CPU-visible ones */
21 static int show_hex;                    /* Show contents of config space as hexadecimal numbers */
22 static struct pci_filter filter;        /* Device filter */
23 static int show_tree;                   /* Show bus tree */
24 static int machine_readable;            /* Generate machine-readable output */
25 static int map_mode;                    /* Bus mapping mode enabled */
26 static int show_domains;                /* Show domain numbers (0=disabled, 1=auto-detected, 2=requested) */
27
28 const char program_name[] = "lspci";
29
30 static char options[] = "nvbxs:d:ti:mgMD" GENERIC_OPTIONS ;
31
32 static char help_msg[] = "\
33 Usage: lspci [<switches>]\n\
34 \n\
35 -v\t\tBe verbose\n\
36 -n\t\tShow numeric ID's\n\
37 -nn\t\tShow both textual and numeric ID's (names & numbers)\n\
38 -b\t\tBus-centric view (PCI addresses and IRQ's instead of those seen by the CPU)\n\
39 -x\t\tShow hex-dump of the standard portion of config space\n\
40 -xxx\t\tShow hex-dump of the whole config space (dangerous; root only)\n\
41 -xxxx\t\tShow hex-dump of the 4096-byte extended config space (root only)\n\
42 -s [[[[<domain>]:]<bus>]:][<slot>][.[<func>]]\tShow only devices in selected slots\n\
43 -d [<vendor>]:[<device>]\tShow only selected devices\n\
44 -t\t\tShow bus tree\n\
45 -m\t\tProduce machine-readable output\n\
46 -i <file>\tUse specified ID database instead of %s\n\
47 -D\t\tAlways show domain numbers\n\
48 -M\t\tEnable `bus mapping' mode (dangerous; root only)\n"
49 GENERIC_HELP
50 ;
51
52 /* Communication with libpci */
53
54 static struct pci_access *pacc;
55
56 /*
57  *  If we aren't being compiled by GCC, use xmalloc() instead of alloca().
58  *  This increases our memory footprint, but only slightly since we don't
59  *  use alloca() much.
60  */
61
62 #ifdef __GNUC__
63 #include <alloca.h>
64 #else
65 #undef alloca
66 #define alloca xmalloc
67 #endif
68
69 /* Our view of the PCI bus */
70
71 struct device {
72   struct device *next;
73   struct pci_dev *dev;
74   unsigned int config_cached, config_bufsize;
75   byte *config;                         /* Cached configuration space data */
76   byte *present;                        /* Maps which configuration bytes are present */
77 };
78
79 static struct device *first_dev;
80 static int seen_errors;
81
82 static int
83 config_fetch(struct device *d, unsigned int pos, unsigned int len)
84 {
85   unsigned int end = pos+len;
86   int result;
87
88   while (pos < d->config_bufsize && len && d->present[pos])
89     pos++, len--;
90   while (pos+len <= d->config_bufsize && len && d->present[pos+len-1])
91     len--;
92   if (!len)
93     return 1;
94
95   if (end > d->config_bufsize)
96     {
97       int orig_size = d->config_bufsize;
98       while (end > d->config_bufsize)
99         d->config_bufsize *= 2;
100       d->config = xrealloc(d->config, d->config_bufsize);
101       d->present = xrealloc(d->present, d->config_bufsize);
102       bzero(d->present + orig_size, d->config_bufsize - orig_size);
103     }
104   result = pci_read_block(d->dev, pos, d->config + pos, len);
105   if (result)
106     memset(d->present + pos, 1, len);
107   return result;
108 }
109
110 static struct device *
111 scan_device(struct pci_dev *p)
112 {
113   struct device *d;
114
115   if (p->domain && !show_domains)
116     show_domains = 1;
117   if (!pci_filter_match(&filter, p))
118     return NULL;
119   d = xmalloc(sizeof(struct device));
120   bzero(d, sizeof(*d));
121   d->dev = p;
122   d->config_cached = d->config_bufsize = 64;
123   d->config = xmalloc(64);
124   d->present = xmalloc(64);
125   memset(d->present, 1, 64);
126   if (!pci_read_block(p, 0, d->config, 64))
127     {
128       fprintf(stderr, "lspci: Unable to read the standard configuration space header of device %04x:%02x:%02x.%d\n",
129               p->domain, p->bus, p->dev, p->func);
130       seen_errors++;
131       return NULL;
132     }
133   if ((d->config[PCI_HEADER_TYPE] & 0x7f) == PCI_HEADER_TYPE_CARDBUS)
134     {
135       /* For cardbus bridges, we need to fetch 64 bytes more to get the
136        * full standard header... */
137       if (config_fetch(d, 64, 64))
138         d->config_cached += 64;
139     }
140   pci_setup_cache(p, d->config, d->config_cached);
141   pci_fill_info(p, PCI_FILL_IDENT | PCI_FILL_CLASS | PCI_FILL_IRQ | PCI_FILL_BASES | PCI_FILL_ROM_BASE | PCI_FILL_SIZES);
142   return d;
143 }
144
145 static void
146 scan_devices(void)
147 {
148   struct device *d;
149   struct pci_dev *p;
150
151   pci_scan_bus(pacc);
152   for(p=pacc->devices; p; p=p->next)
153     if (d = scan_device(p))
154       {
155         d->next = first_dev;
156         first_dev = d;
157       }
158 }
159
160 /* Config space accesses */
161
162 static void
163 check_conf_range(struct device *d, unsigned int pos, unsigned int len)
164 {
165   while (len)
166     if (!d->present[pos])
167       die("Internal bug: Accessing non-read configuration byte at position %x", pos);
168     else
169       pos++, len--;
170 }
171
172 static inline byte
173 get_conf_byte(struct device *d, unsigned int pos)
174 {
175   check_conf_range(d, pos, 1);
176   return d->config[pos];
177 }
178
179 static word
180 get_conf_word(struct device *d, unsigned int pos)
181 {
182   check_conf_range(d, pos, 2);
183   return d->config[pos] | (d->config[pos+1] << 8);
184 }
185
186 static u32
187 get_conf_long(struct device *d, unsigned int pos)
188 {
189   check_conf_range(d, pos, 4);
190   return d->config[pos] |
191     (d->config[pos+1] << 8) |
192     (d->config[pos+2] << 16) |
193     (d->config[pos+3] << 24);
194 }
195
196 /* Sorting */
197
198 static int
199 compare_them(const void *A, const void *B)
200 {
201   const struct pci_dev *a = (*(const struct device **)A)->dev;
202   const struct pci_dev *b = (*(const struct device **)B)->dev;
203
204   if (a->domain < b->domain)
205     return -1;
206   if (a->domain > b->domain)
207     return 1;
208   if (a->bus < b->bus)
209     return -1;
210   if (a->bus > b->bus)
211     return 1;
212   if (a->dev < b->dev)
213     return -1;
214   if (a->dev > b->dev)
215     return 1;
216   if (a->func < b->func)
217     return -1;
218   if (a->func > b->func)
219     return 1;
220   return 0;
221 }
222
223 static void
224 sort_them(void)
225 {
226   struct device **index, **h, **last_dev;
227   int cnt;
228   struct device *d;
229
230   cnt = 0;
231   for(d=first_dev; d; d=d->next)
232     cnt++;
233   h = index = alloca(sizeof(struct device *) * cnt);
234   for(d=first_dev; d; d=d->next)
235     *h++ = d;
236   qsort(index, cnt, sizeof(struct device *), compare_them);
237   last_dev = &first_dev;
238   h = index;
239   while (cnt--)
240     {
241       *last_dev = *h;
242       last_dev = &(*h)->next;
243       h++;
244     }
245   *last_dev = NULL;
246 }
247
248 /* Normal output */
249
250 #define FLAG(x,y) ((x & y) ? '+' : '-')
251
252 static void
253 show_slot_name(struct device *d)
254 {
255   struct pci_dev *p = d->dev;
256
257   if (!machine_readable ? show_domains : (p->domain || show_domains >= 2))
258     printf("%04x:", p->domain);
259   printf("%02x:%02x.%d", p->bus, p->dev, p->func);
260 }
261
262 static void
263 show_terse(struct device *d)
264 {
265   int c;
266   struct pci_dev *p = d->dev;
267   char classbuf[128], devbuf[128];
268
269   show_slot_name(d);
270   printf(" %s: %s",
271          pci_lookup_name(pacc, classbuf, sizeof(classbuf),
272                          PCI_LOOKUP_CLASS,
273                          p->device_class),
274          pci_lookup_name(pacc, devbuf, sizeof(devbuf),
275                          PCI_LOOKUP_VENDOR | PCI_LOOKUP_DEVICE,
276                          p->vendor_id, p->device_id));
277   if (c = get_conf_byte(d, PCI_REVISION_ID))
278     printf(" (rev %02x)", c);
279   if (verbose)
280     {
281       char *x;
282       c = get_conf_byte(d, PCI_CLASS_PROG);
283       x = pci_lookup_name(pacc, devbuf, sizeof(devbuf),
284                           PCI_LOOKUP_PROGIF | PCI_LOOKUP_NO_NUMBERS,
285                           p->device_class, c);
286       if (c || x)
287         {
288           printf(" (prog-if %02x", c);
289           if (x)
290             printf(" [%s]", x);
291           putchar(')');
292         }
293     }
294   putchar('\n');
295 }
296
297 static void
298 show_size(pciaddr_t x)
299 {
300   if (!x)
301     return;
302   printf(" [size=");
303   if (x < 1024)
304     printf("%d", (int) x);
305   else if (x < 1048576)
306     printf("%dK", (int)(x / 1024));
307   else if (x < 0x80000000)
308     printf("%dM", (int)(x / 1048576));
309   else
310     printf(PCIADDR_T_FMT, x);
311   putchar(']');
312 }
313
314 static void
315 show_bases(struct device *d, int cnt)
316 {
317   struct pci_dev *p = d->dev;
318   word cmd = get_conf_word(d, PCI_COMMAND);
319   int i;
320
321   for(i=0; i<cnt; i++)
322     {
323       pciaddr_t pos = p->base_addr[i];
324       pciaddr_t len = (p->known_fields & PCI_FILL_SIZES) ? p->size[i] : 0;
325       u32 flg = get_conf_long(d, PCI_BASE_ADDRESS_0 + 4*i);
326       if (flg == 0xffffffff)
327         flg = 0;
328       if (!pos && !flg && !len)
329         continue;
330       if (verbose > 1)
331         printf("\tRegion %d: ", i);
332       else
333         putchar('\t');
334       if (pos && !flg)                  /* Reported by the OS, but not by the device */
335         {
336           printf("[virtual] ");
337           flg = pos;
338         }
339       if (flg & PCI_BASE_ADDRESS_SPACE_IO)
340         {
341           pciaddr_t a = pos & PCI_BASE_ADDRESS_IO_MASK;
342           printf("I/O ports at ");
343           if (a)
344             printf(PCIADDR_PORT_FMT, a);
345           else if (flg & PCI_BASE_ADDRESS_IO_MASK)
346             printf("<ignored>");
347           else
348             printf("<unassigned>");
349           if (!(cmd & PCI_COMMAND_IO))
350             printf(" [disabled]");
351         }
352       else
353         {
354           int t = flg & PCI_BASE_ADDRESS_MEM_TYPE_MASK;
355           pciaddr_t a = pos & PCI_ADDR_MEM_MASK;
356           int done = 0;
357           u32 z = 0;
358
359           printf("Memory at ");
360           if (t == PCI_BASE_ADDRESS_MEM_TYPE_64)
361             {
362               if (i >= cnt - 1)
363                 {
364                   printf("<invalid-64bit-slot>");
365                   done = 1;
366                 }
367               else
368                 {
369                   i++;
370                   z = get_conf_long(d, PCI_BASE_ADDRESS_0 + 4*i);
371                   if (buscentric_view)
372                     {
373                       u32 y = a & 0xffffffff;
374                       if (a || z)
375                         printf("%08x%08x", z, y);
376                       else
377                         printf("<unassigned>");
378                       done = 1;
379                     }
380                 }
381             }
382           if (!done)
383             {
384               if (a)
385                 printf(PCIADDR_T_FMT, a);
386               else
387                 printf(((flg & PCI_BASE_ADDRESS_MEM_MASK) || z) ? "<ignored>" : "<unassigned>");
388             }
389           printf(" (%s, %sprefetchable)",
390                  (t == PCI_BASE_ADDRESS_MEM_TYPE_32) ? "32-bit" :
391                  (t == PCI_BASE_ADDRESS_MEM_TYPE_64) ? "64-bit" :
392                  (t == PCI_BASE_ADDRESS_MEM_TYPE_1M) ? "low-1M" : "type 3",
393                  (flg & PCI_BASE_ADDRESS_MEM_PREFETCH) ? "" : "non-");
394           if (!(cmd & PCI_COMMAND_MEMORY))
395             printf(" [disabled]");
396         }
397       show_size(len);
398       putchar('\n');
399     }
400 }
401
402 static void
403 show_pm(struct device *d, int where, int cap)
404 {
405   int t, b;
406   static int pm_aux_current[8] = { 0, 55, 100, 160, 220, 270, 320, 375 };
407
408   printf("Power Management version %d\n", cap & PCI_PM_CAP_VER_MASK);
409   if (verbose < 2)
410     return;
411   printf("\t\tFlags: PMEClk%c DSI%c D1%c D2%c AuxCurrent=%dmA PME(D0%c,D1%c,D2%c,D3hot%c,D3cold%c)\n",
412          FLAG(cap, PCI_PM_CAP_PME_CLOCK),
413          FLAG(cap, PCI_PM_CAP_DSI),
414          FLAG(cap, PCI_PM_CAP_D1),
415          FLAG(cap, PCI_PM_CAP_D2),
416          pm_aux_current[(cap >> 6) & 7],
417          FLAG(cap, PCI_PM_CAP_PME_D0),
418          FLAG(cap, PCI_PM_CAP_PME_D1),
419          FLAG(cap, PCI_PM_CAP_PME_D2),
420          FLAG(cap, PCI_PM_CAP_PME_D3_HOT),
421          FLAG(cap, PCI_PM_CAP_PME_D3_COLD));
422   if (!config_fetch(d, where + PCI_PM_CTRL, PCI_PM_SIZEOF - PCI_PM_CTRL))
423     return;
424   t = get_conf_word(d, where + PCI_PM_CTRL);
425   printf("\t\tStatus: D%d PME-Enable%c DSel=%d DScale=%d PME%c\n",
426          t & PCI_PM_CTRL_STATE_MASK,
427          FLAG(t, PCI_PM_CTRL_PME_ENABLE),
428          (t & PCI_PM_CTRL_DATA_SEL_MASK) >> 9,
429          (t & PCI_PM_CTRL_DATA_SCALE_MASK) >> 13,
430          FLAG(t, PCI_PM_CTRL_PME_STATUS));
431   b = get_conf_byte(d, where + PCI_PM_PPB_EXTENSIONS);
432   if (b)
433     printf("\t\tBridge: PM%c B3%c\n",
434            FLAG(t, PCI_PM_BPCC_ENABLE),
435            FLAG(~t, PCI_PM_PPB_B2_B3));
436 }
437
438 static void
439 format_agp_rate(int rate, char *buf, int agp3)
440 {
441   char *c = buf;
442   int i;
443
444   for(i=0; i<=2; i++)
445     if (rate & (1 << i))
446       {
447         if (c != buf)
448           *c++ = ',';
449         c += sprintf(c, "x%d", 1 << (i + 2*agp3));
450       }
451   if (c != buf)
452     *c = 0;
453   else
454     strcpy(buf, "<none>");
455 }
456
457 static void
458 show_agp(struct device *d, int where, int cap)
459 {
460   u32 t;
461   char rate[16];
462   int ver, rev;
463   int agp3 = 0;
464
465   ver = (cap >> 4) & 0x0f;
466   rev = cap & 0x0f;
467   printf("AGP version %x.%x\n", ver, rev);
468   if (verbose < 2)
469     return;
470   if (!config_fetch(d, where + PCI_AGP_STATUS, PCI_AGP_SIZEOF - PCI_AGP_STATUS))
471     return;
472   t = get_conf_long(d, where + PCI_AGP_STATUS);
473   if (ver >= 3 && (t & PCI_AGP_STATUS_AGP3))
474     agp3 = 1;
475   format_agp_rate(t & 7, rate, agp3);
476   printf("\t\tStatus: RQ=%d Iso%c ArqSz=%d Cal=%d SBA%c ITACoh%c GART64%c HTrans%c 64bit%c FW%c AGP3%c Rate=%s\n",
477          ((t & PCI_AGP_STATUS_RQ_MASK) >> 24U) + 1,
478          FLAG(t, PCI_AGP_STATUS_ISOCH),
479          ((t & PCI_AGP_STATUS_ARQSZ_MASK) >> 13),
480          ((t & PCI_AGP_STATUS_CAL_MASK) >> 10),
481          FLAG(t, PCI_AGP_STATUS_SBA),
482          FLAG(t, PCI_AGP_STATUS_ITA_COH),
483          FLAG(t, PCI_AGP_STATUS_GART64),
484          FLAG(t, PCI_AGP_STATUS_HTRANS),
485          FLAG(t, PCI_AGP_STATUS_64BIT),
486          FLAG(t, PCI_AGP_STATUS_FW),
487          FLAG(t, PCI_AGP_STATUS_AGP3),
488          rate);
489   t = get_conf_long(d, where + PCI_AGP_COMMAND);
490   format_agp_rate(t & 7, rate, agp3);
491   printf("\t\tCommand: RQ=%d ArqSz=%d Cal=%d SBA%c AGP%c GART64%c 64bit%c FW%c Rate=%s\n",
492          ((t & PCI_AGP_COMMAND_RQ_MASK) >> 24U) + 1,
493          ((t & PCI_AGP_COMMAND_ARQSZ_MASK) >> 13),
494          ((t & PCI_AGP_COMMAND_CAL_MASK) >> 10),
495          FLAG(t, PCI_AGP_COMMAND_SBA),
496          FLAG(t, PCI_AGP_COMMAND_AGP),
497          FLAG(t, PCI_AGP_COMMAND_GART64),
498          FLAG(t, PCI_AGP_COMMAND_64BIT),
499          FLAG(t, PCI_AGP_COMMAND_FW),
500          rate);
501 }
502
503 static void
504 show_pcix_nobridge(struct device *d, int where)
505 {
506   u16 command;
507   u32 status;
508   static const byte max_outstanding[8] = { 1, 2, 3, 4, 8, 12, 16, 32 };
509
510   printf("PCI-X non-bridge device\n");
511
512   if (verbose < 2)
513     return;
514
515   if (!config_fetch(d, where + PCI_PCIX_STATUS, 4))
516     return;
517
518   command = get_conf_word(d, where + PCI_PCIX_COMMAND);
519   status = get_conf_long(d, where + PCI_PCIX_STATUS);
520   printf("\t\tCommand: DPERE%c ERO%c RBC=%d OST=%d\n",
521          FLAG(command, PCI_PCIX_COMMAND_DPERE),
522          FLAG(command, PCI_PCIX_COMMAND_ERO),
523          1 << (9 + ((command & PCI_PCIX_COMMAND_MAX_MEM_READ_BYTE_COUNT) >> 2U)),
524          max_outstanding[(command & PCI_PCIX_COMMAND_MAX_OUTSTANDING_SPLIT_TRANS) >> 4U]);
525   printf("\t\tStatus: Dev=%02x:%02x.%d 64bit%c 133MHz%c SCD%c USC%c DC=%s DMMRBC=%u DMOST=%u DMCRS=%u RSCEM%c 266MHz%c 533MHz%c\n",
526          ((status >> 8) & 0xff),
527          ((status >> 3) & 0x1f),
528          (status & PCI_PCIX_STATUS_FUNCTION),
529          FLAG(status, PCI_PCIX_STATUS_64BIT),
530          FLAG(status, PCI_PCIX_STATUS_133MHZ),
531          FLAG(status, PCI_PCIX_STATUS_SC_DISCARDED),
532          FLAG(status, PCI_PCIX_STATUS_UNEXPECTED_SC),
533          ((status & PCI_PCIX_STATUS_DEVICE_COMPLEXITY) ? "bridge" : "simple"),
534          1 << (9 + ((status >> 21) & 3U)),
535          max_outstanding[(status >> 23) & 7U],
536          1 << (3 + ((status >> 26) & 7U)),
537          FLAG(status, PCI_PCIX_STATUS_RCVD_SC_ERR_MESS),
538          FLAG(status, PCI_PCIX_STATUS_266MHZ),
539          FLAG(status, PCI_PCIX_STATUS_533MHZ));
540 }
541
542 static void
543 show_pcix_bridge(struct device *d, int where)
544 {
545   static const char * const sec_clock_freq[8] = { "conv", "66MHz", "100MHz", "133MHz", "?4", "?5", "?6", "?7" };
546   u16 secstatus;
547   u32 status, upstcr, downstcr;
548
549   printf("PCI-X bridge device\n");
550
551   if (verbose < 2)
552     return;
553
554   if (!config_fetch(d, where + PCI_PCIX_BRIDGE_STATUS, 12))
555     return;
556
557   secstatus = get_conf_word(d, where + PCI_PCIX_BRIDGE_SEC_STATUS);
558   printf("\t\tSecondary Status: 64bit%c 133MHz%c SCD%c USC%c SCO%c SRD%c Freq=%s\n",
559          FLAG(secstatus, PCI_PCIX_BRIDGE_SEC_STATUS_64BIT),
560          FLAG(secstatus, PCI_PCIX_BRIDGE_SEC_STATUS_133MHZ),
561          FLAG(secstatus, PCI_PCIX_BRIDGE_SEC_STATUS_SC_DISCARDED),
562          FLAG(secstatus, PCI_PCIX_BRIDGE_SEC_STATUS_UNEXPECTED_SC),
563          FLAG(secstatus, PCI_PCIX_BRIDGE_SEC_STATUS_SC_OVERRUN),
564          FLAG(secstatus, PCI_PCIX_BRIDGE_SEC_STATUS_SPLIT_REQUEST_DELAYED),
565          sec_clock_freq[(secstatus >> 6) & 7]);
566   status = get_conf_long(d, where + PCI_PCIX_BRIDGE_STATUS);
567   printf("\t\tStatus: Dev=%02x:%02x.%d 64bit%c 133MHz%c SCD%c USC%c SCO%c SRD%c\n",
568          ((status >> 8) & 0xff),
569          ((status >> 3) & 0x1f),
570          (status & PCI_PCIX_BRIDGE_STATUS_FUNCTION),
571          FLAG(status, PCI_PCIX_BRIDGE_STATUS_64BIT),
572          FLAG(status, PCI_PCIX_BRIDGE_STATUS_133MHZ),
573          FLAG(status, PCI_PCIX_BRIDGE_STATUS_SC_DISCARDED),
574          FLAG(status, PCI_PCIX_BRIDGE_STATUS_UNEXPECTED_SC),
575          FLAG(status, PCI_PCIX_BRIDGE_STATUS_SC_OVERRUN),
576          FLAG(status, PCI_PCIX_BRIDGE_STATUS_SPLIT_REQUEST_DELAYED));
577   upstcr = get_conf_long(d, where + PCI_PCIX_BRIDGE_UPSTREAM_SPLIT_TRANS_CTRL);
578   printf("\t\tUpstream: Capacity=%u CommitmentLimit=%u\n",
579          (upstcr & PCI_PCIX_BRIDGE_STR_CAPACITY),
580          (upstcr >> 16) & 0xffff);
581   downstcr = get_conf_long(d, where + PCI_PCIX_BRIDGE_DOWNSTREAM_SPLIT_TRANS_CTRL);
582   printf("\t\tDownstream: Capacity=%u CommitmentLimit=%u\n",
583          (downstcr & PCI_PCIX_BRIDGE_STR_CAPACITY),
584          (downstcr >> 16) & 0xffff);
585 }
586
587 static void
588 show_pcix(struct device *d, int where)
589 {
590   switch (get_conf_byte(d, PCI_HEADER_TYPE) & 0x7f)
591     {
592     case PCI_HEADER_TYPE_NORMAL:
593       show_pcix_nobridge(d, where);
594       break;
595     case PCI_HEADER_TYPE_BRIDGE:
596       show_pcix_bridge(d, where);
597       break;
598     }
599 }
600
601 static inline char *
602 ht_link_width(unsigned width)
603 {
604   static char * const widths[8] = { "8bit", "16bit", "[2]", "32bit", "2bit", "4bit", "[6]", "N/C" };
605   return widths[width];
606 }
607
608 static inline char *
609 ht_link_freq(unsigned freq)
610 {
611   static char * const freqs[16] = { "200MHz", "300MHz", "400MHz", "500MHz", "600MHz", "800MHz", "1.0GHz", "1.2GHz",
612                                     "1.4GHz", "1.6GHz", "[a]", "[b]", "[c]", "[d]", "[e]", "Vend" };
613   return freqs[freq];
614 }
615
616 static void
617 show_ht_pri(struct device *d, int where, int cmd)
618 {
619   u16 lctr0, lcnf0, lctr1, lcnf1, eh;
620   u8 rid, lfrer0, lfcap0, ftr, lfrer1, lfcap1, mbu, mlu, bn;
621   char *fmt;
622
623   printf("HyperTransport: Slave or Primary Interface\n");
624   if (verbose < 2)
625     return;
626
627   if (!config_fetch(d, where + PCI_HT_PRI_LCTR0, PCI_HT_PRI_SIZEOF - PCI_HT_PRI_LCTR0))
628     return;
629   rid = get_conf_byte(d, where + PCI_HT_PRI_RID);
630   if (rid < 0x23 && rid > 0x11)
631     printf("\t\t!!! Possibly incomplete decoding\n");
632
633   if (rid >= 0x23)
634     fmt = "\t\tCommand: BaseUnitID=%u UnitCnt=%u MastHost%c DefDir%c DUL%c\n";
635   else
636     fmt = "\t\tCommand: BaseUnitID=%u UnitCnt=%u MastHost%c DefDir%c\n";
637   printf(fmt,
638          (cmd & PCI_HT_PRI_CMD_BUID),
639          (cmd & PCI_HT_PRI_CMD_UC) >> 5,
640          FLAG(cmd, PCI_HT_PRI_CMD_MH),
641          FLAG(cmd, PCI_HT_PRI_CMD_DD),
642          FLAG(cmd, PCI_HT_PRI_CMD_DUL));
643   lctr0 = get_conf_word(d, where + PCI_HT_PRI_LCTR0);
644   if (rid >= 0x23)
645     fmt = "\t\tLink Control 0: CFlE%c CST%c CFE%c <LkFail%c Init%c EOC%c TXO%c <CRCErr=%x IsocEn%c LSEn%c ExtCTL%c 64b%c\n";
646   else
647     fmt = "\t\tLink Control 0: CFlE%c CST%c CFE%c <LkFail%c Init%c EOC%c TXO%c <CRCErr=%x\n";
648   printf(fmt,
649          FLAG(lctr0, PCI_HT_LCTR_CFLE),
650          FLAG(lctr0, PCI_HT_LCTR_CST),
651          FLAG(lctr0, PCI_HT_LCTR_CFE),
652          FLAG(lctr0, PCI_HT_LCTR_LKFAIL),
653          FLAG(lctr0, PCI_HT_LCTR_INIT),
654          FLAG(lctr0, PCI_HT_LCTR_EOC),
655          FLAG(lctr0, PCI_HT_LCTR_TXO),
656          (lctr0 & PCI_HT_LCTR_CRCERR) >> 8,
657          FLAG(lctr0, PCI_HT_LCTR_ISOCEN),
658          FLAG(lctr0, PCI_HT_LCTR_LSEN),
659          FLAG(lctr0, PCI_HT_LCTR_EXTCTL),
660          FLAG(lctr0, PCI_HT_LCTR_64B));
661   lcnf0 = get_conf_word(d, where + PCI_HT_PRI_LCNF0);
662   if (rid >= 0x23)
663     fmt = "\t\tLink Config 0: MLWI=%1$s DwFcIn%5$c MLWO=%2$s DwFcOut%6$c LWI=%3$s DwFcInEn%7$c LWO=%4$s DwFcOutEn%8$c\n";
664   else
665     fmt = "\t\tLink Config 0: MLWI=%s MLWO=%s LWI=%s LWO=%s\n";
666   printf(fmt,
667          ht_link_width(lcnf0 & PCI_HT_LCNF_MLWI),
668          ht_link_width((lcnf0 & PCI_HT_LCNF_MLWO) >> 4),
669          ht_link_width((lcnf0 & PCI_HT_LCNF_LWI) >> 8),
670          ht_link_width((lcnf0 & PCI_HT_LCNF_LWO) >> 12),
671          FLAG(lcnf0, PCI_HT_LCNF_DFI),
672          FLAG(lcnf0, PCI_HT_LCNF_DFO),
673          FLAG(lcnf0, PCI_HT_LCNF_DFIE),
674          FLAG(lcnf0, PCI_HT_LCNF_DFOE));
675   lctr1 = get_conf_word(d, where + PCI_HT_PRI_LCTR1);
676   if (rid >= 0x23)
677     fmt = "\t\tLink Control 1: CFlE%c CST%c CFE%c <LkFail%c Init%c EOC%c TXO%c <CRCErr=%x IsocEn%c LSEn%c ExtCTL%c 64b%c\n";
678   else
679     fmt = "\t\tLink Control 1: CFlE%c CST%c CFE%c <LkFail%c Init%c EOC%c TXO%c <CRCErr=%x\n";
680   printf(fmt,
681          FLAG(lctr1, PCI_HT_LCTR_CFLE),
682          FLAG(lctr1, PCI_HT_LCTR_CST),
683          FLAG(lctr1, PCI_HT_LCTR_CFE),
684          FLAG(lctr1, PCI_HT_LCTR_LKFAIL),
685          FLAG(lctr1, PCI_HT_LCTR_INIT),
686          FLAG(lctr1, PCI_HT_LCTR_EOC),
687          FLAG(lctr1, PCI_HT_LCTR_TXO),
688          (lctr1 & PCI_HT_LCTR_CRCERR) >> 8,
689          FLAG(lctr1, PCI_HT_LCTR_ISOCEN),
690          FLAG(lctr1, PCI_HT_LCTR_LSEN),
691          FLAG(lctr1, PCI_HT_LCTR_EXTCTL),
692          FLAG(lctr1, PCI_HT_LCTR_64B));
693   lcnf1 = get_conf_word(d, where + PCI_HT_PRI_LCNF1);
694   if (rid >= 0x23)
695     fmt = "\t\tLink Config 1: MLWI=%1$s DwFcIn%5$c MLWO=%2$s DwFcOut%6$c LWI=%3$s DwFcInEn%7$c LWO=%4$s DwFcOutEn%8$c\n";
696   else
697     fmt = "\t\tLink Config 1: MLWI=%s MLWO=%s LWI=%s LWO=%s\n";
698   printf(fmt,
699          ht_link_width(lcnf1 & PCI_HT_LCNF_MLWI),
700          ht_link_width((lcnf1 & PCI_HT_LCNF_MLWO) >> 4),
701          ht_link_width((lcnf1 & PCI_HT_LCNF_LWI) >> 8),
702          ht_link_width((lcnf1 & PCI_HT_LCNF_LWO) >> 12),
703          FLAG(lcnf1, PCI_HT_LCNF_DFI),
704          FLAG(lcnf1, PCI_HT_LCNF_DFO),
705          FLAG(lcnf1, PCI_HT_LCNF_DFIE),
706          FLAG(lcnf1, PCI_HT_LCNF_DFOE));
707   printf("\t\tRevision ID: %u.%02u\n",
708          (rid & PCI_HT_RID_MAJ) >> 5, (rid & PCI_HT_RID_MIN));
709   if (rid < 0x23)
710     return;
711   lfrer0 = get_conf_byte(d, where + PCI_HT_PRI_LFRER0);
712   printf("\t\tLink Frequency 0: %s\n", ht_link_freq(lfrer0 & PCI_HT_LFRER_FREQ));
713   printf("\t\tLink Error 0: <Prot%c <Ovfl%c <EOC%c CTLTm%c\n",
714          FLAG(lfrer0, PCI_HT_LFRER_PROT),
715          FLAG(lfrer0, PCI_HT_LFRER_OV),
716          FLAG(lfrer0, PCI_HT_LFRER_EOC),
717          FLAG(lfrer0, PCI_HT_LFRER_CTLT));
718   lfcap0 = get_conf_byte(d, where + PCI_HT_PRI_LFCAP0);
719   printf("\t\tLink Frequency Capability 0: 200MHz%c 300MHz%c 400MHz%c 500MHz%c 600MHz%c 800MHz%c 1.0GHz%c 1.2GHz%c 1.4GHz%c 1.6GHz%c Vend%c\n",
720          FLAG(lfcap0, PCI_HT_LFCAP_200),
721          FLAG(lfcap0, PCI_HT_LFCAP_300),
722          FLAG(lfcap0, PCI_HT_LFCAP_400),
723          FLAG(lfcap0, PCI_HT_LFCAP_500),
724          FLAG(lfcap0, PCI_HT_LFCAP_600),
725          FLAG(lfcap0, PCI_HT_LFCAP_800),
726          FLAG(lfcap0, PCI_HT_LFCAP_1000),
727          FLAG(lfcap0, PCI_HT_LFCAP_1200),
728          FLAG(lfcap0, PCI_HT_LFCAP_1400),
729          FLAG(lfcap0, PCI_HT_LFCAP_1600),
730          FLAG(lfcap0, PCI_HT_LFCAP_VEND));
731   ftr = get_conf_byte(d, where + PCI_HT_PRI_FTR);
732   printf("\t\tFeature Capability: IsocFC%c LDTSTOP%c CRCTM%c ECTLT%c 64bA%c UIDRD%c\n",
733          FLAG(ftr, PCI_HT_FTR_ISOCFC),
734          FLAG(ftr, PCI_HT_FTR_LDTSTOP),
735          FLAG(ftr, PCI_HT_FTR_CRCTM),
736          FLAG(ftr, PCI_HT_FTR_ECTLT),
737          FLAG(ftr, PCI_HT_FTR_64BA),
738          FLAG(ftr, PCI_HT_FTR_UIDRD));
739   lfrer1 = get_conf_byte(d, where + PCI_HT_PRI_LFRER1);
740   printf("\t\tLink Frequency 1: %s\n", ht_link_freq(lfrer1 & PCI_HT_LFRER_FREQ));
741   printf("\t\tLink Error 1: <Prot%c <Ovfl%c <EOC%c CTLTm%c\n",
742          FLAG(lfrer1, PCI_HT_LFRER_PROT),
743          FLAG(lfrer1, PCI_HT_LFRER_OV),
744          FLAG(lfrer1, PCI_HT_LFRER_EOC),
745          FLAG(lfrer1, PCI_HT_LFRER_CTLT));
746   lfcap1 = get_conf_byte(d, where + PCI_HT_PRI_LFCAP1);
747   printf("\t\tLink Frequency Capability 1: 200MHz%c 300MHz%c 400MHz%c 500MHz%c 600MHz%c 800MHz%c 1.0GHz%c 1.2GHz%c 1.4GHz%c 1.6GHz%c Vend%c\n",
748          FLAG(lfcap1, PCI_HT_LFCAP_200),
749          FLAG(lfcap1, PCI_HT_LFCAP_300),
750          FLAG(lfcap1, PCI_HT_LFCAP_400),
751          FLAG(lfcap1, PCI_HT_LFCAP_500),
752          FLAG(lfcap1, PCI_HT_LFCAP_600),
753          FLAG(lfcap1, PCI_HT_LFCAP_800),
754          FLAG(lfcap1, PCI_HT_LFCAP_1000),
755          FLAG(lfcap1, PCI_HT_LFCAP_1200),
756          FLAG(lfcap1, PCI_HT_LFCAP_1400),
757          FLAG(lfcap1, PCI_HT_LFCAP_1600),
758          FLAG(lfcap1, PCI_HT_LFCAP_VEND));
759   eh = get_conf_word(d, where + PCI_HT_PRI_EH);
760   printf("\t\tError Handling: PFlE%c OFlE%c PFE%c OFE%c EOCFE%c RFE%c CRCFE%c SERRFE%c CF%c RE%c PNFE%c ONFE%c EOCNFE%c RNFE%c CRCNFE%c SERRNFE%c\n",
761          FLAG(eh, PCI_HT_EH_PFLE),
762          FLAG(eh, PCI_HT_EH_OFLE),
763          FLAG(eh, PCI_HT_EH_PFE),
764          FLAG(eh, PCI_HT_EH_OFE),
765          FLAG(eh, PCI_HT_EH_EOCFE),
766          FLAG(eh, PCI_HT_EH_RFE),
767          FLAG(eh, PCI_HT_EH_CRCFE),
768          FLAG(eh, PCI_HT_EH_SERRFE),
769          FLAG(eh, PCI_HT_EH_CF),
770          FLAG(eh, PCI_HT_EH_RE),
771          FLAG(eh, PCI_HT_EH_PNFE),
772          FLAG(eh, PCI_HT_EH_ONFE),
773          FLAG(eh, PCI_HT_EH_EOCNFE),
774          FLAG(eh, PCI_HT_EH_RNFE),
775          FLAG(eh, PCI_HT_EH_CRCNFE),
776          FLAG(eh, PCI_HT_EH_SERRNFE));
777   mbu = get_conf_byte(d, where + PCI_HT_PRI_MBU);
778   mlu = get_conf_byte(d, where + PCI_HT_PRI_MLU);
779   printf("\t\tPrefetchable memory behind bridge Upper: %02x-%02x\n", mbu, mlu);
780   bn = get_conf_byte(d, where + PCI_HT_PRI_BN);
781   printf("\t\tBus Number: %02x\n", bn);
782 }
783
784 static void
785 show_ht_sec(struct device *d, int where, int cmd)
786 {
787   u16 lctr, lcnf, ftr, eh;
788   u8 rid, lfrer, lfcap, mbu, mlu;
789   char *fmt;
790
791   printf("HyperTransport: Host or Secondary Interface\n");
792   if (verbose < 2)
793     return;
794
795   if (!config_fetch(d, where + PCI_HT_SEC_LCTR, PCI_HT_SEC_SIZEOF - PCI_HT_SEC_LCTR))
796     return;
797   rid = get_conf_byte(d, where + PCI_HT_SEC_RID);
798   if (rid < 0x23 && rid > 0x11)
799     printf("\t\t!!! Possibly incomplete decoding\n");
800
801   if (rid >= 0x23)
802     fmt = "\t\tCommand: WarmRst%c DblEnd%c DevNum=%u ChainSide%c HostHide%c Slave%c <EOCErr%c DUL%c\n";
803   else
804     fmt = "\t\tCommand: WarmRst%c DblEnd%c\n";
805   printf(fmt,
806          FLAG(cmd, PCI_HT_SEC_CMD_WR),
807          FLAG(cmd, PCI_HT_SEC_CMD_DE),
808          (cmd & PCI_HT_SEC_CMD_DN) >> 2,
809          FLAG(cmd, PCI_HT_SEC_CMD_CS),
810          FLAG(cmd, PCI_HT_SEC_CMD_HH),
811          FLAG(cmd, PCI_HT_SEC_CMD_AS),
812          FLAG(cmd, PCI_HT_SEC_CMD_HIECE),
813          FLAG(cmd, PCI_HT_SEC_CMD_DUL));
814   lctr = get_conf_word(d, where + PCI_HT_SEC_LCTR);
815   if (rid >= 0x23)
816     fmt = "\t\tLink Control: CFlE%c CST%c CFE%c <LkFail%c Init%c EOC%c TXO%c <CRCErr=%x IsocEn%c LSEn%c ExtCTL%c 64b%c\n";
817   else
818     fmt = "\t\tLink Control: CFlE%c CST%c CFE%c <LkFail%c Init%c EOC%c TXO%c <CRCErr=%x\n";
819   printf(fmt,
820          FLAG(lctr, PCI_HT_LCTR_CFLE),
821          FLAG(lctr, PCI_HT_LCTR_CST),
822          FLAG(lctr, PCI_HT_LCTR_CFE),
823          FLAG(lctr, PCI_HT_LCTR_LKFAIL),
824          FLAG(lctr, PCI_HT_LCTR_INIT),
825          FLAG(lctr, PCI_HT_LCTR_EOC),
826          FLAG(lctr, PCI_HT_LCTR_TXO),
827          (lctr & PCI_HT_LCTR_CRCERR) >> 8,
828          FLAG(lctr, PCI_HT_LCTR_ISOCEN),
829          FLAG(lctr, PCI_HT_LCTR_LSEN),
830          FLAG(lctr, PCI_HT_LCTR_EXTCTL),
831          FLAG(lctr, PCI_HT_LCTR_64B));
832   lcnf = get_conf_word(d, where + PCI_HT_SEC_LCNF);
833   if (rid >= 0x23)
834     fmt = "\t\tLink Config: MLWI=%1$s DwFcIn%5$c MLWO=%2$s DwFcOut%6$c LWI=%3$s DwFcInEn%7$c LWO=%4$s DwFcOutEn%8$c\n";
835   else
836     fmt = "\t\tLink Config: MLWI=%s MLWO=%s LWI=%s LWO=%s\n";
837   printf(fmt,
838          ht_link_width(lcnf & PCI_HT_LCNF_MLWI),
839          ht_link_width((lcnf & PCI_HT_LCNF_MLWO) >> 4),
840          ht_link_width((lcnf & PCI_HT_LCNF_LWI) >> 8),
841          ht_link_width((lcnf & PCI_HT_LCNF_LWO) >> 12),
842          FLAG(lcnf, PCI_HT_LCNF_DFI),
843          FLAG(lcnf, PCI_HT_LCNF_DFO),
844          FLAG(lcnf, PCI_HT_LCNF_DFIE),
845          FLAG(lcnf, PCI_HT_LCNF_DFOE));
846   printf("\t\tRevision ID: %u.%02u\n",
847          (rid & PCI_HT_RID_MAJ) >> 5, (rid & PCI_HT_RID_MIN));
848   if (rid < 0x23)
849     return;
850   lfrer = get_conf_byte(d, where + PCI_HT_SEC_LFRER);
851   printf("\t\tLink Frequency: %s\n", ht_link_freq(lfrer & PCI_HT_LFRER_FREQ));
852   printf("\t\tLink Error: <Prot%c <Ovfl%c <EOC%c CTLTm%c\n",
853          FLAG(lfrer, PCI_HT_LFRER_PROT),
854          FLAG(lfrer, PCI_HT_LFRER_OV),
855          FLAG(lfrer, PCI_HT_LFRER_EOC),
856          FLAG(lfrer, PCI_HT_LFRER_CTLT));
857   lfcap = get_conf_byte(d, where + PCI_HT_SEC_LFCAP);
858   printf("\t\tLink Frequency Capability: 200MHz%c 300MHz%c 400MHz%c 500MHz%c 600MHz%c 800MHz%c 1.0GHz%c 1.2GHz%c 1.4GHz%c 1.6GHz%c Vend%c\n",
859          FLAG(lfcap, PCI_HT_LFCAP_200),
860          FLAG(lfcap, PCI_HT_LFCAP_300),
861          FLAG(lfcap, PCI_HT_LFCAP_400),
862          FLAG(lfcap, PCI_HT_LFCAP_500),
863          FLAG(lfcap, PCI_HT_LFCAP_600),
864          FLAG(lfcap, PCI_HT_LFCAP_800),
865          FLAG(lfcap, PCI_HT_LFCAP_1000),
866          FLAG(lfcap, PCI_HT_LFCAP_1200),
867          FLAG(lfcap, PCI_HT_LFCAP_1400),
868          FLAG(lfcap, PCI_HT_LFCAP_1600),
869          FLAG(lfcap, PCI_HT_LFCAP_VEND));
870   ftr = get_conf_word(d, where + PCI_HT_SEC_FTR);
871   printf("\t\tFeature Capability: IsocFC%c LDTSTOP%c CRCTM%c ECTLT%c 64bA%c UIDRD%c ExtRS%c UCnfE%c\n",
872          FLAG(ftr, PCI_HT_FTR_ISOCFC),
873          FLAG(ftr, PCI_HT_FTR_LDTSTOP),
874          FLAG(ftr, PCI_HT_FTR_CRCTM),
875          FLAG(ftr, PCI_HT_FTR_ECTLT),
876          FLAG(ftr, PCI_HT_FTR_64BA),
877          FLAG(ftr, PCI_HT_FTR_UIDRD),
878          FLAG(ftr, PCI_HT_SEC_FTR_EXTRS),
879          FLAG(ftr, PCI_HT_SEC_FTR_UCNFE));
880   if (ftr & PCI_HT_SEC_FTR_EXTRS)
881     {
882       eh = get_conf_word(d, where + PCI_HT_SEC_EH);
883       printf("\t\tError Handling: PFlE%c OFlE%c PFE%c OFE%c EOCFE%c RFE%c CRCFE%c SERRFE%c CF%c RE%c PNFE%c ONFE%c EOCNFE%c RNFE%c CRCNFE%c SERRNFE%c\n",
884              FLAG(eh, PCI_HT_EH_PFLE),
885              FLAG(eh, PCI_HT_EH_OFLE),
886              FLAG(eh, PCI_HT_EH_PFE),
887              FLAG(eh, PCI_HT_EH_OFE),
888              FLAG(eh, PCI_HT_EH_EOCFE),
889              FLAG(eh, PCI_HT_EH_RFE),
890              FLAG(eh, PCI_HT_EH_CRCFE),
891              FLAG(eh, PCI_HT_EH_SERRFE),
892              FLAG(eh, PCI_HT_EH_CF),
893              FLAG(eh, PCI_HT_EH_RE),
894              FLAG(eh, PCI_HT_EH_PNFE),
895              FLAG(eh, PCI_HT_EH_ONFE),
896              FLAG(eh, PCI_HT_EH_EOCNFE),
897              FLAG(eh, PCI_HT_EH_RNFE),
898              FLAG(eh, PCI_HT_EH_CRCNFE),
899              FLAG(eh, PCI_HT_EH_SERRNFE));
900       mbu = get_conf_byte(d, where + PCI_HT_SEC_MBU);
901       mlu = get_conf_byte(d, where + PCI_HT_SEC_MLU);
902       printf("\t\tPrefetchable memory behind bridge Upper: %02x-%02x\n", mbu, mlu);
903     }
904 }
905
906 static void
907 show_ht(struct device *d, int where, int cmd)
908 {
909   int type;
910
911   switch (cmd & PCI_HT_CMD_TYP_HI)
912     {
913     case PCI_HT_CMD_TYP_HI_PRI:
914       show_ht_pri(d, where, cmd);
915       return;
916     case PCI_HT_CMD_TYP_HI_SEC:
917       show_ht_sec(d, where, cmd);
918       return;
919     }
920
921   type = cmd & PCI_HT_CMD_TYP;
922   switch (type)
923     {
924     case PCI_HT_CMD_TYP_SW:
925       printf("HyperTransport: Switch\n");
926       break;
927     case PCI_HT_CMD_TYP_IDC:
928       printf("HyperTransport: Interrupt Discovery and Configuration\n");
929       break;
930     case PCI_HT_CMD_TYP_RID:
931       printf("HyperTransport: Revision ID: %u.%02u\n",
932              (cmd & PCI_HT_RID_MAJ) >> 5, (cmd & PCI_HT_RID_MIN));
933       break;
934     case PCI_HT_CMD_TYP_UIDC:
935       printf("HyperTransport: UnitID Clumping\n");
936       break;
937     case PCI_HT_CMD_TYP_ECSA:
938       printf("HyperTransport: Extended Configuration Space Access\n");
939       break;
940     case PCI_HT_CMD_TYP_AM:
941       printf("HyperTransport: Address Mapping\n");
942       break;
943     case PCI_HT_CMD_TYP_MSIM:
944       printf("HyperTransport: MSI Mapping\n");
945       break;
946     case PCI_HT_CMD_TYP_DR:
947       printf("HyperTransport: DirectRoute\n");
948       break;
949     case PCI_HT_CMD_TYP_VCS:
950       printf("HyperTransport: VCSet\n");
951       break;
952     case PCI_HT_CMD_TYP_RM:
953       printf("HyperTransport: Retry Mode\n");
954       break;
955     case PCI_HT_CMD_TYP_X86:
956       printf("HyperTransport: X86 (reserved)\n");
957       break;
958     default:
959       printf("HyperTransport: #%02x\n", type >> 11);
960     }
961 }
962
963 static void
964 show_rom(struct device *d, int reg)
965 {
966   struct pci_dev *p = d->dev;
967   pciaddr_t rom = p->rom_base_addr;
968   pciaddr_t len = (p->known_fields & PCI_FILL_SIZES) ? p->rom_size : 0;
969   u32 flg = get_conf_long(d, reg);
970   word cmd = get_conf_word(d, PCI_COMMAND);
971
972   if (!rom && !flg && !len)
973     return;
974   putchar('\t');
975   if ((rom & PCI_ROM_ADDRESS_MASK) && !(flg & PCI_ROM_ADDRESS_MASK))
976     {
977       printf("[virtual] ");
978       flg = rom;
979     }
980   printf("Expansion ROM at ");
981   if (rom & PCI_ROM_ADDRESS_MASK)
982     printf(PCIADDR_T_FMT, rom & PCI_ROM_ADDRESS_MASK);
983   else if (flg & PCI_ROM_ADDRESS_MASK)
984     printf("<ignored>");
985   else
986     printf("<unassigned>");
987   if (!(flg & PCI_ROM_ADDRESS_ENABLE))
988     printf(" [disabled]");
989   else if (!(cmd & PCI_COMMAND_MEMORY))
990     printf(" [disabled by cmd]");
991   show_size(len);
992   putchar('\n');
993 }
994
995 static void
996 show_msi(struct device *d, int where, int cap)
997 {
998   int is64;
999   u32 t;
1000   u16 w;
1001
1002   printf("Message Signalled Interrupts: Mask%c 64bit%c Queue=%d/%d Enable%c\n",
1003          FLAG(cap, PCI_MSI_FLAGS_MASK_BIT),
1004          FLAG(cap, PCI_MSI_FLAGS_64BIT),
1005          (cap & PCI_MSI_FLAGS_QSIZE) >> 4,
1006          (cap & PCI_MSI_FLAGS_QMASK) >> 1,
1007          FLAG(cap, PCI_MSI_FLAGS_ENABLE));
1008   if (verbose < 2)
1009     return;
1010   is64 = cap & PCI_MSI_FLAGS_64BIT;
1011   if (!config_fetch(d, where + PCI_MSI_ADDRESS_LO, (is64 ? PCI_MSI_DATA_64 : PCI_MSI_DATA_32) + 2 - PCI_MSI_ADDRESS_LO))
1012     return;
1013   printf("\t\tAddress: ");
1014   if (is64)
1015     {
1016       t = get_conf_long(d, where + PCI_MSI_ADDRESS_HI);
1017       w = get_conf_word(d, where + PCI_MSI_DATA_64);
1018       printf("%08x", t);
1019     }
1020   else
1021     w = get_conf_word(d, where + PCI_MSI_DATA_32);
1022   t = get_conf_long(d, where + PCI_MSI_ADDRESS_LO);
1023   printf("%08x  Data: %04x\n", t, w);
1024   if (cap & PCI_MSI_FLAGS_MASK_BIT)
1025     {
1026       u32 mask, pending;
1027
1028       if (is64)
1029         {
1030           if (!config_fetch(d, where + PCI_MSI_MASK_BIT_64, 8))
1031             return;
1032           mask = get_conf_long(d, where + PCI_MSI_MASK_BIT_64);
1033           pending = get_conf_long(d, where + PCI_MSI_PENDING_64);
1034         }
1035       else
1036         {
1037           if (!config_fetch(d, where + PCI_MSI_MASK_BIT_32, 8))
1038             return;
1039           mask = get_conf_long(d, where + PCI_MSI_MASK_BIT_32);
1040           pending = get_conf_long(d, where + PCI_MSI_PENDING_32);
1041         }
1042       printf("\t\tMasking: %08x  Pending: %08x\n", mask, pending);
1043     }
1044 }
1045
1046 static void show_vendor(void)
1047 {
1048   printf("Vendor Specific Information\n");
1049 }
1050
1051 static void show_debug(void)
1052 {
1053   printf("Debug port\n");
1054 }
1055
1056 static float power_limit(int value, int scale)
1057 {
1058   static const float scales[4] = { 1.0, 0.1, 0.01, 0.001 };
1059   return value * scales[scale];
1060 }
1061
1062 static const char *latency_l0s(int value)
1063 {
1064   static const char *latencies[] = { "<64ns", "<128ns", "<256ns", "<512ns", "<1us", "<2us", "<4us", "unlimited" };
1065   return latencies[value];
1066 }
1067
1068 static const char *latency_l1(int value)
1069 {
1070   static const char *latencies[] = { "<1us", "<2us", "<4us", "<8us", "<16us", "<32us", "<64us", "unlimited" };
1071   return latencies[value];
1072 }
1073
1074 static void show_express_dev(struct device *d, int where, int type)
1075 {
1076   u32 t;
1077   u16 w;
1078
1079   t = get_conf_long(d, where + PCI_EXP_DEVCAP);
1080   printf("\t\tDevice: Supported: MaxPayload %d bytes, PhantFunc %d, ExtTag%c\n",
1081         128 << (t & PCI_EXP_DEVCAP_PAYLOAD),
1082         (1 << ((t & PCI_EXP_DEVCAP_PHANTOM) >> 3)) - 1,
1083         FLAG(t, PCI_EXP_DEVCAP_EXT_TAG));
1084   printf("\t\tDevice: Latency L0s %s, L1 %s\n",
1085         latency_l0s((t & PCI_EXP_DEVCAP_L0S) >> 6),
1086         latency_l1((t & PCI_EXP_DEVCAP_L1) >> 9));
1087   if ((type == PCI_EXP_TYPE_ENDPOINT) || (type == PCI_EXP_TYPE_LEG_END) ||
1088       (type == PCI_EXP_TYPE_UPSTREAM) || (type == PCI_EXP_TYPE_PCI_BRIDGE))
1089     printf("\t\tDevice: AtnBtn%c AtnInd%c PwrInd%c\n",
1090         FLAG(t, PCI_EXP_DEVCAP_ATN_BUT),
1091         FLAG(t, PCI_EXP_DEVCAP_ATN_IND), FLAG(t, PCI_EXP_DEVCAP_PWR_IND));
1092   if (type == PCI_EXP_TYPE_UPSTREAM)
1093     printf("\t\tDevice: SlotPowerLimit %f\n",
1094         power_limit((t & PCI_EXP_DEVCAP_PWR_VAL) >> 18,
1095                     (t & PCI_EXP_DEVCAP_PWR_SCL) >> 26));
1096
1097   w = get_conf_word(d, where + PCI_EXP_DEVCTL);
1098   printf("\t\tDevice: Errors: Correctable%c Non-Fatal%c Fatal%c Unsupported%c\n",
1099         FLAG(w, PCI_EXP_DEVCTL_CERE),
1100         FLAG(w, PCI_EXP_DEVCTL_NFERE),
1101         FLAG(w, PCI_EXP_DEVCTL_FERE),
1102         FLAG(w, PCI_EXP_DEVCTL_URRE));
1103   printf("\t\tDevice: RlxdOrd%c ExtTag%c PhantFunc%c AuxPwr%c NoSnoop%c\n",
1104         FLAG(w, PCI_EXP_DEVCTL_RELAXED),
1105         FLAG(w, PCI_EXP_DEVCTL_EXT_TAG),
1106         FLAG(w, PCI_EXP_DEVCTL_PHANTOM),
1107         FLAG(w, PCI_EXP_DEVCTL_AUX_PME),
1108         FLAG(w, PCI_EXP_DEVCTL_NOSNOOP));
1109   printf("\t\tDevice: MaxPayload %d bytes, MaxReadReq %d bytes\n",
1110         128 << ((w & PCI_EXP_DEVCTL_PAYLOAD) >> 5),
1111         128 << ((w & PCI_EXP_DEVCTL_READRQ) >> 12));
1112 }
1113
1114 static char *link_speed(int speed)
1115 {
1116   switch (speed)
1117     {
1118       case 1:
1119         return "2.5Gb/s";
1120       default:
1121         return "unknown";
1122     }
1123 }
1124
1125 static char *aspm_support(int code)
1126 {
1127   switch (code)
1128     {
1129       case 1:
1130         return "L0s";
1131       case 3:
1132         return "L0s L1";
1133       default:
1134         return "unknown";
1135     }
1136 }
1137
1138 static const char *aspm_enabled(int code)
1139 {
1140   static const char *desc[] = { "Disabled", "L0s Enabled", "L1 Enabled", "L0s L1 Enabled" };
1141   return desc[code];
1142 }
1143
1144 static void show_express_link(struct device *d, int where, int type)
1145 {
1146   u32 t;
1147   u16 w;
1148
1149   t = get_conf_long(d, where + PCI_EXP_LNKCAP);
1150   printf("\t\tLink: Supported Speed %s, Width x%d, ASPM %s, Port %d\n",
1151         link_speed(t & PCI_EXP_LNKCAP_SPEED), (t & PCI_EXP_LNKCAP_WIDTH) >> 4,
1152         aspm_support((t & PCI_EXP_LNKCAP_ASPM) >> 10),
1153         t >> 24);
1154   printf("\t\tLink: Latency L0s %s, L1 %s\n",
1155         latency_l0s((t & PCI_EXP_LNKCAP_L0S) >> 12),
1156         latency_l1((t & PCI_EXP_LNKCAP_L1) >> 15));
1157   w = get_conf_word(d, where + PCI_EXP_LNKCTL);
1158   printf("\t\tLink: ASPM %s", aspm_enabled(w & PCI_EXP_LNKCTL_ASPM));
1159   if ((type == PCI_EXP_TYPE_ROOT_PORT) || (type == PCI_EXP_TYPE_ENDPOINT) ||
1160       (type == PCI_EXP_TYPE_LEG_END))
1161     printf(" RCB %d bytes", w & PCI_EXP_LNKCTL_RCB ? 128 : 64);
1162   if (w & PCI_EXP_LNKCTL_DISABLE)
1163     printf(" Disabled");
1164   printf(" CommClk%c ExtSynch%c\n", FLAG(w, PCI_EXP_LNKCTL_CLOCK),
1165         FLAG(w, PCI_EXP_LNKCTL_XSYNCH));
1166   w = get_conf_word(d, where + PCI_EXP_LNKSTA);
1167   printf("\t\tLink: Speed %s, Width x%d\n",
1168         link_speed(w & PCI_EXP_LNKSTA_SPEED), (w & PCI_EXP_LNKSTA_WIDTH) >> 4);
1169 }
1170
1171 static const char *indicator(int code)
1172 {
1173   static const char *names[] = { "Unknown", "On", "Blink", "Off" };
1174   return names[code];
1175 }
1176
1177 static void show_express_slot(struct device *d, int where)
1178 {
1179   u32 t;
1180   u16 w;
1181
1182   t = get_conf_long(d, where + PCI_EXP_SLTCAP);
1183   printf("\t\tSlot: AtnBtn%c PwrCtrl%c MRL%c AtnInd%c PwrInd%c HotPlug%c Surpise%c\n",
1184         FLAG(t, PCI_EXP_SLTCAP_ATNB),
1185         FLAG(t, PCI_EXP_SLTCAP_PWRC),
1186         FLAG(t, PCI_EXP_SLTCAP_MRL),
1187         FLAG(t, PCI_EXP_SLTCAP_ATNI),
1188         FLAG(t, PCI_EXP_SLTCAP_PWRI),
1189         FLAG(t, PCI_EXP_SLTCAP_HPC),
1190         FLAG(t, PCI_EXP_SLTCAP_HPS));
1191   printf("\t\tSlot: Number %d, PowerLimit %f\n", t >> 19,
1192                 power_limit((t & PCI_EXP_SLTCAP_PWR_VAL) >> 7,
1193                         (t & PCI_EXP_SLTCAP_PWR_SCL) >> 15));
1194   w = get_conf_word(d, where + PCI_EXP_SLTCTL);
1195   printf("\t\tSlot: Enabled AtnBtn%c PwrFlt%c MRL%c PresDet%c CmdCplt%c HPIrq%c\n",
1196         FLAG(w, PCI_EXP_SLTCTL_ATNB),
1197         FLAG(w, PCI_EXP_SLTCTL_PWRF),
1198         FLAG(w, PCI_EXP_SLTCTL_MRLS),
1199         FLAG(w, PCI_EXP_SLTCTL_PRSD),
1200         FLAG(w, PCI_EXP_SLTCTL_CMDC),
1201         FLAG(w, PCI_EXP_SLTCTL_HPIE));
1202   printf("\t\tSlot: AttnInd %s, PwrInd %s, Power%c\n",
1203         indicator((w & PCI_EXP_SLTCTL_ATNI) >> 6),
1204         indicator((w & PCI_EXP_SLTCTL_PWRI) >> 8),
1205         FLAG(w, w & PCI_EXP_SLTCTL_PWRC));
1206 }
1207
1208 static void show_express_root(struct device *d, int where)
1209 {
1210   u16 w = get_conf_word(d, where + PCI_EXP_RTCTL);
1211   printf("\t\tRoot: Correctable%c Non-Fatal%c Fatal%c PME%c\n",
1212         FLAG(w, PCI_EXP_RTCTL_SECEE),
1213         FLAG(w, PCI_EXP_RTCTL_SENFEE),
1214         FLAG(w, PCI_EXP_RTCTL_SEFEE),
1215         FLAG(w, PCI_EXP_RTCTL_PMEIE));
1216 }
1217
1218 static void
1219 show_express(struct device *d, int where, int cap)
1220 {
1221   int type = (cap & PCI_EXP_FLAGS_TYPE) >> 4;
1222   int size;
1223   int slot = 0;
1224
1225   printf("Express ");
1226   switch (type)
1227     {
1228     case PCI_EXP_TYPE_ENDPOINT:
1229       printf("Endpoint");
1230       break;
1231     case PCI_EXP_TYPE_LEG_END:
1232       printf("Legacy Endpoint");
1233       break;
1234     case PCI_EXP_TYPE_ROOT_PORT:
1235       slot = cap & PCI_EXP_FLAGS_SLOT;
1236       printf("Root Port (Slot%c)", FLAG(cap, PCI_EXP_FLAGS_SLOT));
1237       break;
1238     case PCI_EXP_TYPE_UPSTREAM:
1239       printf("Upstream Port");
1240       break;
1241     case PCI_EXP_TYPE_DOWNSTREAM:
1242       slot = cap & PCI_EXP_FLAGS_SLOT;
1243       printf("Downstream Port (Slot%c)", FLAG(cap, PCI_EXP_FLAGS_SLOT));
1244       break;
1245     case PCI_EXP_TYPE_PCI_BRIDGE:
1246       printf("PCI/PCI-X Bridge");
1247       break;
1248     default:
1249       printf("Unknown type");
1250   }
1251   printf(" IRQ %d\n", (cap & PCI_EXP_FLAGS_IRQ) >> 9);
1252   if (verbose < 2)
1253     return;
1254
1255   size = 16;
1256   if (slot)
1257     size = 24;
1258   if (type == PCI_EXP_TYPE_ROOT_PORT)
1259     size = 32;
1260   if (!config_fetch(d, where + PCI_EXP_DEVCAP, size))
1261     return;
1262
1263   show_express_dev(d, where, type);
1264   show_express_link(d, where, type);
1265   if (slot)
1266     show_express_slot(d, where);
1267   if (type == PCI_EXP_TYPE_ROOT_PORT)
1268     show_express_root(d, where);
1269 }
1270
1271 static void
1272 show_msix(struct device *d, int where, int cap)
1273 {
1274   u32 off;
1275
1276   printf("MSI-X: Enable%c Mask%c TabSize=%d\n",
1277          FLAG(cap, PCI_MSIX_ENABLE),
1278          FLAG(cap, PCI_MSIX_MASK),
1279          (cap & PCI_MSIX_TABSIZE) + 1);
1280   if (verbose < 2 || !config_fetch(d, where + PCI_MSIX_TABLE, 8))
1281     return;
1282
1283   off = get_conf_long(d, where + PCI_MSIX_TABLE);
1284   printf("\t\tVector table: BAR=%d offset=%08x\n",
1285          off & PCI_MSIX_BIR, off & ~PCI_MSIX_BIR);
1286   off = get_conf_long(d, where + PCI_MSIX_PBA);
1287   printf("\t\tPBA: BAR=%d offset=%08x\n",
1288          off & PCI_MSIX_BIR, off & ~PCI_MSIX_BIR);
1289 }
1290
1291 static void
1292 show_slotid(int cap)
1293 {
1294   int esr = cap & 0xff;
1295   int chs = cap >> 8;
1296
1297   printf("Slot ID: %d slots, First%c, chassis %02x\n",
1298          esr & PCI_SID_ESR_NSLOTS,
1299          FLAG(esr, PCI_SID_ESR_FIC),
1300          chs);
1301 }
1302
1303 static void
1304 show_ssvid(struct device *d, int where)
1305 {
1306   u16 subsys_v, subsys_d;
1307   char ssnamebuf[256];
1308
1309   if (!config_fetch(d, where, 8))
1310     return;
1311   subsys_v = get_conf_word(d, where + PCI_SSVID_VENDOR);
1312   subsys_d = get_conf_word(d, where + PCI_SSVID_DEVICE);
1313   printf("Subsystem: %s\n",
1314            pci_lookup_name(pacc, ssnamebuf, sizeof(ssnamebuf),
1315                            PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_VENDOR | PCI_LOOKUP_DEVICE,
1316                            d->dev->vendor_id, d->dev->device_id, subsys_v, subsys_d));
1317 }
1318
1319 static void
1320 show_aer(struct device *d UNUSED, int where UNUSED)
1321 {
1322   printf("Advanced Error Reporting\n");
1323 }
1324
1325 static void
1326 show_vc(struct device *d UNUSED, int where UNUSED)
1327 {
1328   printf("Virtual Channel\n");
1329 }
1330
1331 static void
1332 show_dsn(struct device *d, int where)
1333 {
1334   u32 t1, t2;
1335   if (!config_fetch(d, where + 4, 8))
1336     return;
1337   t1 = get_conf_long(d, where + 4);
1338   t2 = get_conf_long(d, where + 8);
1339   printf("Device Serial Number %02x-%02x-%02x-%02x-%02x-%02x-%02x-%02x\n",
1340         t1 & 0xff, (t1 >> 8) & 0xff, (t1 >> 16) & 0xff, t1 >> 24,
1341         t2 & 0xff, (t2 >> 8) & 0xff, (t2 >> 16) & 0xff, t2 >> 24);
1342 }
1343
1344 static void
1345 show_pb(struct device *d UNUSED, int where UNUSED)
1346 {
1347   printf("Power Budgeting\n");
1348 }
1349
1350 static void
1351 show_ext_caps(struct device *d)
1352 {
1353   int where = 0x100;
1354   do
1355     {
1356       u32 header;
1357       int id;
1358
1359       if (!config_fetch(d, where, 4))
1360         break;
1361       header = get_conf_long(d, where);
1362       if (!header)
1363         break;
1364       id = header & 0xffff;
1365       printf("\tCapabilities: [%03x] ", where);
1366       switch (id)
1367         {
1368           case PCI_EXT_CAP_ID_AER:
1369             show_aer(d, where);
1370             break;
1371           case PCI_EXT_CAP_ID_VC:
1372             show_vc(d, where);
1373             break;
1374           case PCI_EXT_CAP_ID_DSN:
1375             show_dsn(d, where);
1376             break;
1377           case PCI_EXT_CAP_ID_PB:
1378             show_pb(d, where);
1379             break;
1380           default:
1381             printf("Unknown (%d)\n", id);
1382             break;
1383         }
1384       where = header >> 20;
1385     } while (where);
1386 }
1387
1388 static void
1389 show_caps(struct device *d)
1390 {
1391   int can_have_ext_caps = 0;
1392
1393   if (get_conf_word(d, PCI_STATUS) & PCI_STATUS_CAP_LIST)
1394     {
1395       int where = get_conf_byte(d, PCI_CAPABILITY_LIST) & ~3;
1396       while (where)
1397         {
1398           int id, next, cap;
1399           printf("\tCapabilities: ");
1400           if (!config_fetch(d, where, 4))
1401             {
1402               puts("<access denied>");
1403               break;
1404             }
1405           id = get_conf_byte(d, where + PCI_CAP_LIST_ID);
1406           next = get_conf_byte(d, where + PCI_CAP_LIST_NEXT) & ~3;
1407           cap = get_conf_word(d, where + PCI_CAP_FLAGS);
1408           printf("[%02x] ", where);
1409           if (id == 0xff)
1410             {
1411               printf("<chain broken>\n");
1412               break;
1413             }
1414           switch (id)
1415             {
1416             case PCI_CAP_ID_PM:
1417               show_pm(d, where, cap);
1418               break;
1419             case PCI_CAP_ID_AGP:
1420               show_agp(d, where, cap);
1421               break;
1422             case PCI_CAP_ID_VPD:
1423               printf("Vital Product Data\n");
1424               break;
1425             case PCI_CAP_ID_SLOTID:
1426               show_slotid(cap);
1427               break;
1428             case PCI_CAP_ID_MSI:
1429               show_msi(d, where, cap);
1430               break;
1431             case PCI_CAP_ID_PCIX:
1432               show_pcix(d, where);
1433               can_have_ext_caps = 1;
1434               break;
1435             case PCI_CAP_ID_HT:
1436               show_ht(d, where, cap);
1437               break;
1438             case PCI_CAP_ID_VNDR:
1439               show_vendor();
1440               break;
1441             case PCI_CAP_ID_DBG:
1442               show_debug();
1443               break;
1444             case PCI_CAP_ID_SSVID:
1445               show_ssvid(d, where);
1446               break;
1447             case PCI_CAP_ID_EXP:
1448               show_express(d, where, cap);
1449               can_have_ext_caps = 1;
1450               break;
1451             case PCI_CAP_ID_MSIX:
1452               show_msix(d, where, cap);
1453               break;
1454             default:
1455               printf("#%02x [%04x]\n", id, cap);
1456             }
1457           where = next;
1458         }
1459     }
1460   if (can_have_ext_caps)
1461     show_ext_caps(d);
1462 }
1463
1464 static void
1465 show_htype0(struct device *d)
1466 {
1467   show_bases(d, 6);
1468   show_rom(d, PCI_ROM_ADDRESS);
1469   show_caps(d);
1470 }
1471
1472 static void
1473 show_htype1(struct device *d)
1474 {
1475   u32 io_base = get_conf_byte(d, PCI_IO_BASE);
1476   u32 io_limit = get_conf_byte(d, PCI_IO_LIMIT);
1477   u32 io_type = io_base & PCI_IO_RANGE_TYPE_MASK;
1478   u32 mem_base = get_conf_word(d, PCI_MEMORY_BASE);
1479   u32 mem_limit = get_conf_word(d, PCI_MEMORY_LIMIT);
1480   u32 mem_type = mem_base & PCI_MEMORY_RANGE_TYPE_MASK;
1481   u32 pref_base = get_conf_word(d, PCI_PREF_MEMORY_BASE);
1482   u32 pref_limit = get_conf_word(d, PCI_PREF_MEMORY_LIMIT);
1483   u32 pref_type = pref_base & PCI_PREF_RANGE_TYPE_MASK;
1484   word sec_stat = get_conf_word(d, PCI_SEC_STATUS);
1485   word brc = get_conf_word(d, PCI_BRIDGE_CONTROL);
1486   int verb = verbose > 2;
1487
1488   show_bases(d, 2);
1489   printf("\tBus: primary=%02x, secondary=%02x, subordinate=%02x, sec-latency=%d\n",
1490          get_conf_byte(d, PCI_PRIMARY_BUS),
1491          get_conf_byte(d, PCI_SECONDARY_BUS),
1492          get_conf_byte(d, PCI_SUBORDINATE_BUS),
1493          get_conf_byte(d, PCI_SEC_LATENCY_TIMER));
1494
1495   if (io_type != (io_limit & PCI_IO_RANGE_TYPE_MASK) ||
1496       (io_type != PCI_IO_RANGE_TYPE_16 && io_type != PCI_IO_RANGE_TYPE_32))
1497     printf("\t!!! Unknown I/O range types %x/%x\n", io_base, io_limit);
1498   else
1499     {
1500       io_base = (io_base & PCI_IO_RANGE_MASK) << 8;
1501       io_limit = (io_limit & PCI_IO_RANGE_MASK) << 8;
1502       if (io_type == PCI_IO_RANGE_TYPE_32)
1503         {
1504           io_base |= (get_conf_word(d, PCI_IO_BASE_UPPER16) << 16);
1505           io_limit |= (get_conf_word(d, PCI_IO_LIMIT_UPPER16) << 16);
1506         }
1507       if (io_base <= io_limit || verb)
1508         printf("\tI/O behind bridge: %08x-%08x\n", io_base, io_limit+0xfff);
1509     }
1510
1511   if (mem_type != (mem_limit & PCI_MEMORY_RANGE_TYPE_MASK) ||
1512       mem_type)
1513     printf("\t!!! Unknown memory range types %x/%x\n", mem_base, mem_limit);
1514   else
1515     {
1516       mem_base = (mem_base & PCI_MEMORY_RANGE_MASK) << 16;
1517       mem_limit = (mem_limit & PCI_MEMORY_RANGE_MASK) << 16;
1518       if (mem_base <= mem_limit || verb)
1519         printf("\tMemory behind bridge: %08x-%08x\n", mem_base, mem_limit + 0xfffff);
1520     }
1521
1522   if (pref_type != (pref_limit & PCI_PREF_RANGE_TYPE_MASK) ||
1523       (pref_type != PCI_PREF_RANGE_TYPE_32 && pref_type != PCI_PREF_RANGE_TYPE_64))
1524     printf("\t!!! Unknown prefetchable memory range types %x/%x\n", pref_base, pref_limit);
1525   else
1526     {
1527       pref_base = (pref_base & PCI_PREF_RANGE_MASK) << 16;
1528       pref_limit = (pref_limit & PCI_PREF_RANGE_MASK) << 16;
1529       if (pref_base <= pref_limit || verb)
1530         {
1531           if (pref_type == PCI_PREF_RANGE_TYPE_32)
1532             printf("\tPrefetchable memory behind bridge: %08x-%08x\n", pref_base, pref_limit + 0xfffff);
1533           else
1534             printf("\tPrefetchable memory behind bridge: %08x%08x-%08x%08x\n",
1535                    get_conf_long(d, PCI_PREF_BASE_UPPER32),
1536                    pref_base,
1537                    get_conf_long(d, PCI_PREF_LIMIT_UPPER32),
1538                    pref_limit + 0xfffff);
1539         }
1540     }
1541
1542   if (verbose > 1)
1543     printf("\tSecondary status: 66MHz%c FastB2B%c ParErr%c DEVSEL=%s >TAbort%c <TAbort%c <MAbort%c <SERR%c <PERR%c\n",
1544              FLAG(sec_stat, PCI_STATUS_66MHZ),
1545              FLAG(sec_stat, PCI_STATUS_FAST_BACK),
1546              FLAG(sec_stat, PCI_STATUS_PARITY),
1547              ((sec_stat & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_SLOW) ? "slow" :
1548              ((sec_stat & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_MEDIUM) ? "medium" :
1549              ((sec_stat & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_FAST) ? "fast" : "??",
1550              FLAG(sec_stat, PCI_STATUS_SIG_TARGET_ABORT),
1551              FLAG(sec_stat, PCI_STATUS_REC_TARGET_ABORT),
1552              FLAG(sec_stat, PCI_STATUS_REC_MASTER_ABORT),
1553              FLAG(sec_stat, PCI_STATUS_SIG_SYSTEM_ERROR),
1554              FLAG(sec_stat, PCI_STATUS_DETECTED_PARITY));
1555
1556   show_rom(d, PCI_ROM_ADDRESS1);
1557
1558   if (verbose > 1)
1559     printf("\tBridgeCtl: Parity%c SERR%c NoISA%c VGA%c MAbort%c >Reset%c FastB2B%c\n",
1560            FLAG(brc, PCI_BRIDGE_CTL_PARITY),
1561            FLAG(brc, PCI_BRIDGE_CTL_SERR),
1562            FLAG(brc, PCI_BRIDGE_CTL_NO_ISA),
1563            FLAG(brc, PCI_BRIDGE_CTL_VGA),
1564            FLAG(brc, PCI_BRIDGE_CTL_MASTER_ABORT),
1565            FLAG(brc, PCI_BRIDGE_CTL_BUS_RESET),
1566            FLAG(brc, PCI_BRIDGE_CTL_FAST_BACK));
1567
1568   show_caps(d);
1569 }
1570
1571 static void
1572 show_htype2(struct device *d)
1573 {
1574   int i;
1575   word cmd = get_conf_word(d, PCI_COMMAND);
1576   word brc = get_conf_word(d, PCI_CB_BRIDGE_CONTROL);
1577   word exca;
1578   int verb = verbose > 2;
1579
1580   show_bases(d, 1);
1581   printf("\tBus: primary=%02x, secondary=%02x, subordinate=%02x, sec-latency=%d\n",
1582          get_conf_byte(d, PCI_CB_PRIMARY_BUS),
1583          get_conf_byte(d, PCI_CB_CARD_BUS),
1584          get_conf_byte(d, PCI_CB_SUBORDINATE_BUS),
1585          get_conf_byte(d, PCI_CB_LATENCY_TIMER));
1586   for(i=0; i<2; i++)
1587     {
1588       int p = 8*i;
1589       u32 base = get_conf_long(d, PCI_CB_MEMORY_BASE_0 + p);
1590       u32 limit = get_conf_long(d, PCI_CB_MEMORY_LIMIT_0 + p);
1591       if (limit > base || verb)
1592         printf("\tMemory window %d: %08x-%08x%s%s\n", i, base, limit,
1593                (cmd & PCI_COMMAND_MEMORY) ? "" : " [disabled]",
1594                (brc & (PCI_CB_BRIDGE_CTL_PREFETCH_MEM0 << i)) ? " (prefetchable)" : "");
1595     }
1596   for(i=0; i<2; i++)
1597     {
1598       int p = 8*i;
1599       u32 base = get_conf_long(d, PCI_CB_IO_BASE_0 + p);
1600       u32 limit = get_conf_long(d, PCI_CB_IO_LIMIT_0 + p);
1601       if (!(base & PCI_IO_RANGE_TYPE_32))
1602         {
1603           base &= 0xffff;
1604           limit &= 0xffff;
1605         }
1606       base &= PCI_CB_IO_RANGE_MASK;
1607       limit = (limit & PCI_CB_IO_RANGE_MASK) + 3;
1608       if (base <= limit || verb)
1609         printf("\tI/O window %d: %08x-%08x%s\n", i, base, limit,
1610                (cmd & PCI_COMMAND_IO) ? "" : " [disabled]");
1611     }
1612
1613   if (get_conf_word(d, PCI_CB_SEC_STATUS) & PCI_STATUS_SIG_SYSTEM_ERROR)
1614     printf("\tSecondary status: SERR\n");
1615   if (verbose > 1)
1616     printf("\tBridgeCtl: Parity%c SERR%c ISA%c VGA%c MAbort%c >Reset%c 16bInt%c PostWrite%c\n",
1617            FLAG(brc, PCI_CB_BRIDGE_CTL_PARITY),
1618            FLAG(brc, PCI_CB_BRIDGE_CTL_SERR),
1619            FLAG(brc, PCI_CB_BRIDGE_CTL_ISA),
1620            FLAG(brc, PCI_CB_BRIDGE_CTL_VGA),
1621            FLAG(brc, PCI_CB_BRIDGE_CTL_MASTER_ABORT),
1622            FLAG(brc, PCI_CB_BRIDGE_CTL_CB_RESET),
1623            FLAG(brc, PCI_CB_BRIDGE_CTL_16BIT_INT),
1624            FLAG(brc, PCI_CB_BRIDGE_CTL_POST_WRITES));
1625
1626   if (d->config_cached < 128)
1627     {
1628       printf("\t<access denied to the rest>\n");
1629       return;
1630     }
1631
1632   exca = get_conf_word(d, PCI_CB_LEGACY_MODE_BASE);
1633   if (exca)
1634     printf("\t16-bit legacy interface ports at %04x\n", exca);
1635 }
1636
1637 static void
1638 show_verbose(struct device *d)
1639 {
1640   struct pci_dev *p = d->dev;
1641   word status = get_conf_word(d, PCI_STATUS);
1642   word cmd = get_conf_word(d, PCI_COMMAND);
1643   word class = p->device_class;
1644   byte bist = get_conf_byte(d, PCI_BIST);
1645   byte htype = get_conf_byte(d, PCI_HEADER_TYPE) & 0x7f;
1646   byte latency = get_conf_byte(d, PCI_LATENCY_TIMER);
1647   byte cache_line = get_conf_byte(d, PCI_CACHE_LINE_SIZE);
1648   byte max_lat, min_gnt;
1649   byte int_pin = get_conf_byte(d, PCI_INTERRUPT_PIN);
1650   unsigned int irq = p->irq;
1651   word subsys_v = 0, subsys_d = 0;
1652   char ssnamebuf[256];
1653
1654   show_terse(d);
1655
1656   switch (htype)
1657     {
1658     case PCI_HEADER_TYPE_NORMAL:
1659       if (class == PCI_CLASS_BRIDGE_PCI)
1660         printf("\t!!! Invalid class %04x for header type %02x\n", class, htype);
1661       max_lat = get_conf_byte(d, PCI_MAX_LAT);
1662       min_gnt = get_conf_byte(d, PCI_MIN_GNT);
1663       subsys_v = get_conf_word(d, PCI_SUBSYSTEM_VENDOR_ID);
1664       subsys_d = get_conf_word(d, PCI_SUBSYSTEM_ID);
1665       break;
1666     case PCI_HEADER_TYPE_BRIDGE:
1667       if ((class >> 8) != PCI_BASE_CLASS_BRIDGE)
1668         printf("\t!!! Invalid class %04x for header type %02x\n", class, htype);
1669       irq = int_pin = min_gnt = max_lat = 0;
1670       break;
1671     case PCI_HEADER_TYPE_CARDBUS:
1672       if ((class >> 8) != PCI_BASE_CLASS_BRIDGE)
1673         printf("\t!!! Invalid class %04x for header type %02x\n", class, htype);
1674       min_gnt = max_lat = 0;
1675       if (d->config_cached >= 128)
1676         {
1677           subsys_v = get_conf_word(d, PCI_CB_SUBSYSTEM_VENDOR_ID);
1678           subsys_d = get_conf_word(d, PCI_CB_SUBSYSTEM_ID);
1679         }
1680       break;
1681     default:
1682       printf("\t!!! Unknown header type %02x\n", htype);
1683       return;
1684     }
1685
1686   if (subsys_v && subsys_v != 0xffff)
1687     printf("\tSubsystem: %s\n",
1688            pci_lookup_name(pacc, ssnamebuf, sizeof(ssnamebuf),
1689                            PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_VENDOR | PCI_LOOKUP_DEVICE,
1690                            p->vendor_id, p->device_id, subsys_v, subsys_d));
1691
1692   if (verbose > 1)
1693     {
1694       printf("\tControl: I/O%c Mem%c BusMaster%c SpecCycle%c MemWINV%c VGASnoop%c ParErr%c Stepping%c SERR%c FastB2B%c\n",
1695              FLAG(cmd, PCI_COMMAND_IO),
1696              FLAG(cmd, PCI_COMMAND_MEMORY),
1697              FLAG(cmd, PCI_COMMAND_MASTER),
1698              FLAG(cmd, PCI_COMMAND_SPECIAL),
1699              FLAG(cmd, PCI_COMMAND_INVALIDATE),
1700              FLAG(cmd, PCI_COMMAND_VGA_PALETTE),
1701              FLAG(cmd, PCI_COMMAND_PARITY),
1702              FLAG(cmd, PCI_COMMAND_WAIT),
1703              FLAG(cmd, PCI_COMMAND_SERR),
1704              FLAG(cmd, PCI_COMMAND_FAST_BACK));
1705       printf("\tStatus: Cap%c 66MHz%c UDF%c FastB2B%c ParErr%c DEVSEL=%s >TAbort%c <TAbort%c <MAbort%c >SERR%c <PERR%c\n",
1706              FLAG(status, PCI_STATUS_CAP_LIST),
1707              FLAG(status, PCI_STATUS_66MHZ),
1708              FLAG(status, PCI_STATUS_UDF),
1709              FLAG(status, PCI_STATUS_FAST_BACK),
1710              FLAG(status, PCI_STATUS_PARITY),
1711              ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_SLOW) ? "slow" :
1712              ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_MEDIUM) ? "medium" :
1713              ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_FAST) ? "fast" : "??",
1714              FLAG(status, PCI_STATUS_SIG_TARGET_ABORT),
1715              FLAG(status, PCI_STATUS_REC_TARGET_ABORT),
1716              FLAG(status, PCI_STATUS_REC_MASTER_ABORT),
1717              FLAG(status, PCI_STATUS_SIG_SYSTEM_ERROR),
1718              FLAG(status, PCI_STATUS_DETECTED_PARITY));
1719       if (cmd & PCI_COMMAND_MASTER)
1720         {
1721           printf("\tLatency: %d", latency);
1722           if (min_gnt || max_lat)
1723             {
1724               printf(" (");
1725               if (min_gnt)
1726                 printf("%dns min", min_gnt*250);
1727               if (min_gnt && max_lat)
1728                 printf(", ");
1729               if (max_lat)
1730                 printf("%dns max", max_lat*250);
1731               putchar(')');
1732             }
1733           if (cache_line)
1734             printf(", Cache Line Size: %d bytes", cache_line * 4);
1735           putchar('\n');
1736         }
1737       if (int_pin || irq)
1738         printf("\tInterrupt: pin %c routed to IRQ " PCIIRQ_FMT "\n",
1739                (int_pin ? 'A' + int_pin - 1 : '?'), irq);
1740     }
1741   else
1742     {
1743       printf("\tFlags: ");
1744       if (cmd & PCI_COMMAND_MASTER)
1745         printf("bus master, ");
1746       if (cmd & PCI_COMMAND_VGA_PALETTE)
1747         printf("VGA palette snoop, ");
1748       if (cmd & PCI_COMMAND_WAIT)
1749         printf("stepping, ");
1750       if (cmd & PCI_COMMAND_FAST_BACK)
1751         printf("fast Back2Back, ");
1752       if (status & PCI_STATUS_66MHZ)
1753         printf("66MHz, ");
1754       if (status & PCI_STATUS_UDF)
1755         printf("user-definable features, ");
1756       printf("%s devsel",
1757              ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_SLOW) ? "slow" :
1758              ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_MEDIUM) ? "medium" :
1759              ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_FAST) ? "fast" : "??");
1760       if (cmd & PCI_COMMAND_MASTER)
1761         printf(", latency %d", latency);
1762       if (irq)
1763         printf(", IRQ " PCIIRQ_FMT, irq);
1764       putchar('\n');
1765     }
1766
1767   if (bist & PCI_BIST_CAPABLE)
1768     {
1769       if (bist & PCI_BIST_START)
1770         printf("\tBIST is running\n");
1771       else
1772         printf("\tBIST result: %02x\n", bist & PCI_BIST_CODE_MASK);
1773     }
1774
1775   switch (htype)
1776     {
1777     case PCI_HEADER_TYPE_NORMAL:
1778       show_htype0(d);
1779       break;
1780     case PCI_HEADER_TYPE_BRIDGE:
1781       show_htype1(d);
1782       break;
1783     case PCI_HEADER_TYPE_CARDBUS:
1784       show_htype2(d);
1785       break;
1786     }
1787 }
1788
1789 static void
1790 show_hex_dump(struct device *d)
1791 {
1792   unsigned int i, cnt;
1793
1794   cnt = d->config_cached;
1795   if (show_hex >= 3 && config_fetch(d, cnt, 256-cnt))
1796     {
1797       cnt = 256;
1798       if (show_hex >= 4 && config_fetch(d, 256, 4096-256))
1799         cnt = 4096;
1800     }
1801
1802   for(i=0; i<cnt; i++)
1803     {
1804       if (! (i & 15))
1805         printf("%02x:", i);
1806       printf(" %02x", get_conf_byte(d, i));
1807       if ((i & 15) == 15)
1808         putchar('\n');
1809     }
1810 }
1811
1812 static void
1813 print_shell_escaped(char *c)
1814 {
1815   printf(" \"");
1816   while (*c)
1817     {
1818       if (*c == '"' || *c == '\\')
1819         putchar('\\');
1820       putchar(*c++);
1821     }
1822   putchar('"');
1823 }
1824
1825 static void
1826 show_machine(struct device *d)
1827 {
1828   struct pci_dev *p = d->dev;
1829   int c;
1830   word sv_id=0, sd_id=0;
1831   char classbuf[128], vendbuf[128], devbuf[128], svbuf[128], sdbuf[128];
1832
1833   switch (get_conf_byte(d, PCI_HEADER_TYPE) & 0x7f)
1834     {
1835     case PCI_HEADER_TYPE_NORMAL:
1836       sv_id = get_conf_word(d, PCI_SUBSYSTEM_VENDOR_ID);
1837       sd_id = get_conf_word(d, PCI_SUBSYSTEM_ID);
1838       break;
1839     case PCI_HEADER_TYPE_CARDBUS:
1840       if (d->config_cached >= 128)
1841         {
1842           sv_id = get_conf_word(d, PCI_CB_SUBSYSTEM_VENDOR_ID);
1843           sd_id = get_conf_word(d, PCI_CB_SUBSYSTEM_ID);
1844         }
1845       break;
1846     }
1847
1848   if (verbose)
1849     {
1850       printf((machine_readable >= 2) ? "Slot:\t" : "Device:\t");
1851       show_slot_name(d);
1852       putchar('\n');
1853       printf("Class:\t%s\n",
1854              pci_lookup_name(pacc, classbuf, sizeof(classbuf), PCI_LOOKUP_CLASS, p->device_class));
1855       printf("Vendor:\t%s\n",
1856              pci_lookup_name(pacc, vendbuf, sizeof(vendbuf), PCI_LOOKUP_VENDOR, p->vendor_id, p->device_id));
1857       printf("Device:\t%s\n",
1858              pci_lookup_name(pacc, devbuf, sizeof(devbuf), PCI_LOOKUP_DEVICE, p->vendor_id, p->device_id));
1859       if (sv_id && sv_id != 0xffff)
1860         {
1861           printf("SVendor:\t%s\n",
1862                  pci_lookup_name(pacc, svbuf, sizeof(svbuf), PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_VENDOR, sv_id));
1863           printf("SDevice:\t%s\n",
1864                  pci_lookup_name(pacc, sdbuf, sizeof(sdbuf), PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_DEVICE, p->vendor_id, p->device_id, sv_id, sd_id));
1865         }
1866       if (c = get_conf_byte(d, PCI_REVISION_ID))
1867         printf("Rev:\t%02x\n", c);
1868       if (c = get_conf_byte(d, PCI_CLASS_PROG))
1869         printf("ProgIf:\t%02x\n", c);
1870     }
1871   else
1872     {
1873       show_slot_name(d);
1874       print_shell_escaped(pci_lookup_name(pacc, classbuf, sizeof(classbuf), PCI_LOOKUP_CLASS, p->device_class));
1875       print_shell_escaped(pci_lookup_name(pacc, vendbuf, sizeof(vendbuf), PCI_LOOKUP_VENDOR, p->vendor_id, p->device_id));
1876       print_shell_escaped(pci_lookup_name(pacc, devbuf, sizeof(devbuf), PCI_LOOKUP_DEVICE, p->vendor_id, p->device_id));
1877       if (c = get_conf_byte(d, PCI_REVISION_ID))
1878         printf(" -r%02x", c);
1879       if (c = get_conf_byte(d, PCI_CLASS_PROG))
1880         printf(" -p%02x", c);
1881       if (sv_id && sv_id != 0xffff)
1882         {
1883           print_shell_escaped(pci_lookup_name(pacc, svbuf, sizeof(svbuf), PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_VENDOR, sv_id));
1884           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));
1885         }
1886       else
1887         printf(" \"\" \"\"");
1888       putchar('\n');
1889     }
1890 }
1891
1892 static void
1893 show_device(struct device *d)
1894 {
1895   if (machine_readable)
1896     show_machine(d);
1897   else if (verbose)
1898     show_verbose(d);
1899   else
1900     show_terse(d);
1901   if (show_hex)
1902     show_hex_dump(d);
1903   if (verbose || show_hex)
1904     putchar('\n');
1905 }
1906
1907 static void
1908 show(void)
1909 {
1910   struct device *d;
1911
1912   for(d=first_dev; d; d=d->next)
1913     show_device(d);
1914 }
1915
1916 /* Tree output */
1917
1918 struct bridge {
1919   struct bridge *chain;                 /* Single-linked list of bridges */
1920   struct bridge *next, *child;          /* Tree of bridges */
1921   struct bus *first_bus;                /* List of buses connected to this bridge */
1922   unsigned int domain;
1923   unsigned int primary, secondary, subordinate; /* Bus numbers */
1924   struct device *br_dev;
1925 };
1926
1927 struct bus {
1928   unsigned int domain;
1929   unsigned int number;
1930   struct bus *sibling;
1931   struct device *first_dev, **last_dev;
1932 };
1933
1934 static struct bridge host_bridge = { NULL, NULL, NULL, NULL, 0, ~0, 0, ~0, NULL };
1935
1936 static struct bus *
1937 find_bus(struct bridge *b, unsigned int domain, unsigned int n)
1938 {
1939   struct bus *bus;
1940
1941   for(bus=b->first_bus; bus; bus=bus->sibling)
1942     if (bus->domain == domain && bus->number == n)
1943       break;
1944   return bus;
1945 }
1946
1947 static struct bus *
1948 new_bus(struct bridge *b, unsigned int domain, unsigned int n)
1949 {
1950   struct bus *bus = xmalloc(sizeof(struct bus));
1951   bus->domain = domain;
1952   bus->number = n;
1953   bus->sibling = b->first_bus;
1954   bus->first_dev = NULL;
1955   bus->last_dev = &bus->first_dev;
1956   b->first_bus = bus;
1957   return bus;
1958 }
1959
1960 static void
1961 insert_dev(struct device *d, struct bridge *b)
1962 {
1963   struct pci_dev *p = d->dev;
1964   struct bus *bus;
1965
1966   if (! (bus = find_bus(b, p->domain, p->bus)))
1967     {
1968       struct bridge *c;
1969       for(c=b->child; c; c=c->next)
1970         if (c->domain == p->domain && c->secondary <= p->bus && p->bus <= c->subordinate)
1971           {
1972             insert_dev(d, c);
1973             return;
1974           }
1975       bus = new_bus(b, p->domain, p->bus);
1976     }
1977   /* Simple insertion at the end _does_ guarantee the correct order as the
1978    * original device list was sorted by (domain, bus, devfn) lexicographically
1979    * and all devices on the new list have the same bus number.
1980    */
1981   *bus->last_dev = d;
1982   bus->last_dev = &d->next;
1983   d->next = NULL;
1984 }
1985
1986 static void
1987 grow_tree(void)
1988 {
1989   struct device *d, *d2;
1990   struct bridge **last_br, *b;
1991
1992   /* Build list of bridges */
1993
1994   last_br = &host_bridge.chain;
1995   for(d=first_dev; d; d=d->next)
1996     {
1997       word class = d->dev->device_class;
1998       byte ht = get_conf_byte(d, PCI_HEADER_TYPE) & 0x7f;
1999       if (class == PCI_CLASS_BRIDGE_PCI &&
2000           (ht == PCI_HEADER_TYPE_BRIDGE || ht == PCI_HEADER_TYPE_CARDBUS))
2001         {
2002           b = xmalloc(sizeof(struct bridge));
2003           b->domain = d->dev->domain;
2004           if (ht == PCI_HEADER_TYPE_BRIDGE)
2005             {
2006               b->primary = get_conf_byte(d, PCI_CB_PRIMARY_BUS);
2007               b->secondary = get_conf_byte(d, PCI_CB_CARD_BUS);
2008               b->subordinate = get_conf_byte(d, PCI_CB_SUBORDINATE_BUS);
2009             }
2010           else
2011             {
2012               b->primary = get_conf_byte(d, PCI_PRIMARY_BUS);
2013               b->secondary = get_conf_byte(d, PCI_SECONDARY_BUS);
2014               b->subordinate = get_conf_byte(d, PCI_SUBORDINATE_BUS);
2015             }
2016           *last_br = b;
2017           last_br = &b->chain;
2018           b->next = b->child = NULL;
2019           b->first_bus = NULL;
2020           b->br_dev = d;
2021         }
2022     }
2023   *last_br = NULL;
2024
2025   /* Create a bridge tree */
2026
2027   for(b=&host_bridge; b; b=b->chain)
2028     {
2029       struct bridge *c, *best;
2030       best = NULL;
2031       for(c=&host_bridge; c; c=c->chain)
2032         if (c != b && (c == &host_bridge || b->domain == c->domain) &&
2033             b->primary >= c->secondary && b->primary <= c->subordinate &&
2034             (!best || best->subordinate - best->primary > c->subordinate - c->primary))
2035           best = c;
2036       if (best)
2037         {
2038           b->next = best->child;
2039           best->child = b;
2040         }
2041     }
2042
2043   /* Insert secondary bus for each bridge */
2044
2045   for(b=&host_bridge; b; b=b->chain)
2046     if (!find_bus(b, b->domain, b->secondary))
2047       new_bus(b, b->domain, b->secondary);
2048
2049   /* Create bus structs and link devices */
2050
2051   for(d=first_dev; d;)
2052     {
2053       d2 = d->next;
2054       insert_dev(d, &host_bridge);
2055       d = d2;
2056     }
2057 }
2058
2059 static void
2060 print_it(char *line, char *p)
2061 {
2062   *p++ = '\n';
2063   *p = 0;
2064   fputs(line, stdout);
2065   for(p=line; *p; p++)
2066     if (*p == '+' || *p == '|')
2067       *p = '|';
2068     else
2069       *p = ' ';
2070 }
2071
2072 static void show_tree_bridge(struct bridge *, char *, char *);
2073
2074 static void
2075 show_tree_dev(struct device *d, char *line, char *p)
2076 {
2077   struct pci_dev *q = d->dev;
2078   struct bridge *b;
2079   char namebuf[256];
2080
2081   p += sprintf(p, "%02x.%x", q->dev, q->func);
2082   for(b=&host_bridge; b; b=b->chain)
2083     if (b->br_dev == d)
2084       {
2085         if (b->secondary == b->subordinate)
2086           p += sprintf(p, "-[%04x:%02x]-", b->domain, b->secondary);
2087         else
2088           p += sprintf(p, "-[%04x:%02x-%02x]-", b->domain, b->secondary, b->subordinate);
2089         show_tree_bridge(b, line, p);
2090         return;
2091       }
2092   if (verbose)
2093     p += sprintf(p, "  %s",
2094                  pci_lookup_name(pacc, namebuf, sizeof(namebuf),
2095                                  PCI_LOOKUP_VENDOR | PCI_LOOKUP_DEVICE,
2096                                  q->vendor_id, q->device_id));
2097   print_it(line, p);
2098 }
2099
2100 static void
2101 show_tree_bus(struct bus *b, char *line, char *p)
2102 {
2103   if (!b->first_dev)
2104     print_it(line, p);
2105   else if (!b->first_dev->next)
2106     {
2107       *p++ = '-';
2108       *p++ = '-';
2109       show_tree_dev(b->first_dev, line, p);
2110     }
2111   else
2112     {
2113       struct device *d = b->first_dev;
2114       while (d->next)
2115         {
2116           p[0] = '+';
2117           p[1] = '-';
2118           show_tree_dev(d, line, p+2);
2119           d = d->next;
2120         }
2121       p[0] = '\\';
2122       p[1] = '-';
2123       show_tree_dev(d, line, p+2);
2124     }
2125 }
2126
2127 static void
2128 show_tree_bridge(struct bridge *b, char *line, char *p)
2129 {
2130   *p++ = '-';
2131   if (!b->first_bus->sibling)
2132     {
2133       if (b == &host_bridge)
2134         p += sprintf(p, "[%04x:%02x]-", b->domain, b->first_bus->number);
2135       show_tree_bus(b->first_bus, line, p);
2136     }
2137   else
2138     {
2139       struct bus *u = b->first_bus;
2140       char *k;
2141
2142       while (u->sibling)
2143         {
2144           k = p + sprintf(p, "+-[%04x:%02x]-", u->domain, u->number);
2145           show_tree_bus(u, line, k);
2146           u = u->sibling;
2147         }
2148       k = p + sprintf(p, "\\-[%04x:%02x]-", u->domain, u->number);
2149       show_tree_bus(u, line, k);
2150     }
2151 }
2152
2153 static void
2154 show_forest(void)
2155 {
2156   char line[256];
2157
2158   grow_tree();
2159   show_tree_bridge(&host_bridge, line, line);
2160 }
2161
2162 /* Bus mapping mode */
2163
2164 struct bus_bridge {
2165   struct bus_bridge *next;
2166   byte this, dev, func, first, last, bug;
2167 };
2168
2169 struct bus_info {
2170   byte exists;
2171   byte guestbook;
2172   struct bus_bridge *bridges, *via;
2173 };
2174
2175 static struct bus_info *bus_info;
2176
2177 static void
2178 map_bridge(struct bus_info *bi, struct device *d, int np, int ns, int nl)
2179 {
2180   struct bus_bridge *b = xmalloc(sizeof(struct bus_bridge));
2181   struct pci_dev *p = d->dev;
2182
2183   b->next = bi->bridges;
2184   bi->bridges = b;
2185   b->this = get_conf_byte(d, np);
2186   b->dev = p->dev;
2187   b->func = p->func;
2188   b->first = get_conf_byte(d, ns);
2189   b->last = get_conf_byte(d, nl);
2190   printf("## %02x.%02x:%d is a bridge from %02x to %02x-%02x\n",
2191          p->bus, p->dev, p->func, b->this, b->first, b->last);
2192   if (b->this != p->bus)
2193     printf("!!! Bridge points to invalid primary bus.\n");
2194   if (b->first > b->last)
2195     {
2196       printf("!!! Bridge points to invalid bus range.\n");
2197       b->last = b->first;
2198     }
2199 }
2200
2201 static void
2202 do_map_bus(int bus)
2203 {
2204   int dev, func;
2205   int verbose = pacc->debugging;
2206   struct bus_info *bi = bus_info + bus;
2207   struct device *d;
2208
2209   if (verbose)
2210     printf("Mapping bus %02x\n", bus);
2211   for(dev = 0; dev < 32; dev++)
2212     if (filter.slot < 0 || filter.slot == dev)
2213       {
2214         int func_limit = 1;
2215         for(func = 0; func < func_limit; func++)
2216           if (filter.func < 0 || filter.func == func)
2217             {
2218               /* XXX: Bus mapping supports only domain 0 */
2219               struct pci_dev *p = pci_get_dev(pacc, 0, bus, dev, func);
2220               u16 vendor = pci_read_word(p, PCI_VENDOR_ID);
2221               if (vendor && vendor != 0xffff)
2222                 {
2223                   if (!func && (pci_read_byte(p, PCI_HEADER_TYPE) & 0x80))
2224                     func_limit = 8;
2225                   if (verbose)
2226                     printf("Discovered device %02x:%02x.%d\n", bus, dev, func);
2227                   bi->exists = 1;
2228                   if (d = scan_device(p))
2229                     {
2230                       show_device(d);
2231                       switch (get_conf_byte(d, PCI_HEADER_TYPE) & 0x7f)
2232                         {
2233                         case PCI_HEADER_TYPE_BRIDGE:
2234                           map_bridge(bi, d, PCI_PRIMARY_BUS, PCI_SECONDARY_BUS, PCI_SUBORDINATE_BUS);
2235                           break;
2236                         case PCI_HEADER_TYPE_CARDBUS:
2237                           map_bridge(bi, d, PCI_CB_PRIMARY_BUS, PCI_CB_CARD_BUS, PCI_CB_SUBORDINATE_BUS);
2238                           break;
2239                         }
2240                       free(d);
2241                     }
2242                   else if (verbose)
2243                     printf("But it was filtered out.\n");
2244                 }
2245               pci_free_dev(p);
2246             }
2247       }
2248 }
2249
2250 static void
2251 do_map_bridges(int bus, int min, int max)
2252 {
2253   struct bus_info *bi = bus_info + bus;
2254   struct bus_bridge *b;
2255
2256   bi->guestbook = 1;
2257   for(b=bi->bridges; b; b=b->next)
2258     {
2259       if (bus_info[b->first].guestbook)
2260         b->bug = 1;
2261       else if (b->first < min || b->last > max)
2262         b->bug = 2;
2263       else
2264         {
2265           bus_info[b->first].via = b;
2266           do_map_bridges(b->first, b->first, b->last);
2267         }
2268     }
2269 }
2270
2271 static void
2272 map_bridges(void)
2273 {
2274   int i;
2275
2276   printf("\nSummary of buses:\n\n");
2277   for(i=0; i<256; i++)
2278     if (bus_info[i].exists && !bus_info[i].guestbook)
2279       do_map_bridges(i, 0, 255);
2280   for(i=0; i<256; i++)
2281     {
2282       struct bus_info *bi = bus_info + i;
2283       struct bus_bridge *b = bi->via;
2284
2285       if (bi->exists)
2286         {
2287           printf("%02x: ", i);
2288           if (b)
2289             printf("Entered via %02x:%02x.%d\n", b->this, b->dev, b->func);
2290           else if (!i)
2291             printf("Primary host bus\n");
2292           else
2293             printf("Secondary host bus (?)\n");
2294         }
2295       for(b=bi->bridges; b; b=b->next)
2296         {
2297           printf("\t%02x.%d Bridge to %02x-%02x", b->dev, b->func, b->first, b->last);
2298           switch (b->bug)
2299             {
2300             case 1:
2301               printf(" <overlap bug>");
2302               break;
2303             case 2:
2304               printf(" <crossing bug>");
2305               break;
2306             }
2307           putchar('\n');
2308         }
2309     }
2310 }
2311
2312 static void
2313 map_the_bus(void)
2314 {
2315   if (pacc->method == PCI_ACCESS_PROC_BUS_PCI ||
2316       pacc->method == PCI_ACCESS_DUMP)
2317     printf("WARNING: Bus mapping can be reliable only with direct hardware access enabled.\n\n");
2318   bus_info = xmalloc(sizeof(struct bus_info) * 256);
2319   bzero(bus_info, sizeof(struct bus_info) * 256);
2320   if (filter.bus >= 0)
2321     do_map_bus(filter.bus);
2322   else
2323     {
2324       int bus;
2325       for(bus=0; bus<256; bus++)
2326         do_map_bus(bus);
2327     }
2328   map_bridges();
2329 }
2330
2331 /* Main */
2332
2333 int
2334 main(int argc, char **argv)
2335 {
2336   int i;
2337   char *msg;
2338
2339   if (argc == 2 && !strcmp(argv[1], "--version"))
2340     {
2341       puts("lspci version " PCIUTILS_VERSION);
2342       return 0;
2343     }
2344
2345   pacc = pci_alloc();
2346   pacc->error = die;
2347   pci_filter_init(pacc, &filter);
2348
2349   while ((i = getopt(argc, argv, options)) != -1)
2350     switch (i)
2351       {
2352       case 'n':
2353         pacc->numeric_ids++;
2354         break;
2355       case 'v':
2356         verbose++;
2357         break;
2358       case 'b':
2359         pacc->buscentric = 1;
2360         buscentric_view = 1;
2361         break;
2362       case 's':
2363         if (msg = pci_filter_parse_slot(&filter, optarg))
2364           die("-s: %s", msg);
2365         break;
2366       case 'd':
2367         if (msg = pci_filter_parse_id(&filter, optarg))
2368           die("-d: %s", msg);
2369         break;
2370       case 'x':
2371         show_hex++;
2372         break;
2373       case 't':
2374         show_tree++;
2375         break;
2376       case 'i':
2377         pci_set_name_list_path(pacc, optarg, 0);
2378         break;
2379       case 'm':
2380         machine_readable++;
2381         break;
2382       case 'M':
2383         map_mode++;
2384         break;
2385       case 'D':
2386         show_domains = 2;
2387         break;
2388       default:
2389         if (parse_generic_option(i, pacc, optarg))
2390           break;
2391       bad:
2392         fprintf(stderr, help_msg, pacc->id_file_name);
2393         return 1;
2394       }
2395   if (optind < argc)
2396     goto bad;
2397
2398   pci_init(pacc);
2399   if (map_mode)
2400     map_the_bus();
2401   else
2402     {
2403       scan_devices();
2404       sort_them();
2405       if (show_tree)
2406         show_forest();
2407       else
2408         show();
2409     }
2410   pci_cleanup(pacc);
2411
2412   return (seen_errors ? 2 : 0);
2413 }