]> mj.ucw.cz Git - pciutils.git/blob - lspci.c
Support for PCI domains finished
[pciutils.git] / lspci.c
1 /*
2  *      The PCI Utilities -- List All PCI Devices
3  *
4  *      Copyright (c) 1997--2003 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
27 static char options[] = "nvbxs:d:ti:mgM" GENERIC_OPTIONS ;
28
29 static char help_msg[] = "\
30 Usage: lspci [<switches>]\n\
31 \n\
32 -v\t\tBe verbose\n\
33 -n\t\tShow numeric ID's\n\
34 -b\t\tBus-centric view (PCI addresses and IRQ's instead of those seen by the CPU)\n\
35 -x\t\tShow hex-dump of the standard portion of config space\n\
36 -xxx\t\tShow hex-dump of the whole config space (dangerous; root only)\n\
37 -s [[[[<domain>]:]<bus>]:][<slot>][.[<func>]]\tShow only devices in selected slots\n\
38 -d [<vendor>]:[<device>]\tShow only selected devices\n\
39 -t\t\tShow bus tree\n\
40 -m\t\tProduce machine-readable output\n\
41 -i <file>\tUse specified ID database instead of %s\n\
42 -M\t\tEnable `bus mapping' mode (dangerous; root only)\n"
43 GENERIC_HELP
44 ;
45
46 /* Communication with libpci */
47
48 static struct pci_access *pacc;
49
50 /*
51  *  If we aren't being compiled by GCC, use malloc() instead of alloca().
52  *  This increases our memory footprint, but only slightly since we don't
53  *  use alloca() much.
54  */
55
56 #ifndef __GNUC__
57 #define alloca malloc
58 #endif
59
60 /* Our view of the PCI bus */
61
62 struct device {
63   struct device *next;
64   struct pci_dev *dev;
65   unsigned int config_cnt;
66   byte config[256];
67 };
68
69 static struct device *first_dev;
70
71 static struct device *
72 scan_device(struct pci_dev *p)
73 {
74   int how_much = (show_hex > 2) ? 256 : 64;
75   struct device *d;
76
77   if (!pci_filter_match(&filter, p))
78     return NULL;
79   d = xmalloc(sizeof(struct device));
80   bzero(d, sizeof(*d));
81   d->dev = p;
82   if (!pci_read_block(p, 0, d->config, how_much))
83     die("Unable to read %d bytes of configuration space.", how_much);
84   if (how_much < 128 && (d->config[PCI_HEADER_TYPE] & 0x7f) == PCI_HEADER_TYPE_CARDBUS)
85     {
86       /* For cardbus bridges, we need to fetch 64 bytes more to get the full standard header... */
87       if (!pci_read_block(p, 64, d->config+64, 64))
88         die("Unable to read cardbus bridge extension data.");
89       how_much = 128;
90     }
91   d->config_cnt = how_much;
92   pci_setup_cache(p, d->config, d->config_cnt);
93   pci_fill_info(p, PCI_FILL_IDENT | PCI_FILL_IRQ | PCI_FILL_BASES | PCI_FILL_ROM_BASE | PCI_FILL_SIZES);
94   return d;
95 }
96
97 static void
98 scan_devices(void)
99 {
100   struct device *d;
101   struct pci_dev *p;
102
103   pci_scan_bus(pacc);
104   for(p=pacc->devices; p; p=p->next)
105     if (d = scan_device(p))
106       {
107         d->next = first_dev;
108         first_dev = d;
109       }
110 }
111
112 static int
113 check_root(void)
114 {
115   static int is_root = -1;
116
117   if (is_root < 0)
118     is_root = !geteuid();
119   return is_root;
120 }
121
122 static int
123 config_fetch(struct device *d, unsigned int pos, unsigned int len)
124 {
125   if (pos + len < d->config_cnt)
126     return 1;
127   if (pacc->method != PCI_ACCESS_DUMP && !check_root())
128     return 0;
129   return pci_read_block(d->dev, pos, d->config + pos, len);
130 }
131
132 /* Config space accesses */
133
134 static inline byte
135 get_conf_byte(struct device *d, unsigned int pos)
136 {
137   return d->config[pos];
138 }
139
140 static word
141 get_conf_word(struct device *d, unsigned int pos)
142 {
143   return d->config[pos] | (d->config[pos+1] << 8);
144 }
145
146 static u32
147 get_conf_long(struct device *d, unsigned int pos)
148 {
149   return d->config[pos] |
150     (d->config[pos+1] << 8) |
151     (d->config[pos+2] << 16) |
152     (d->config[pos+3] << 24);
153 }
154
155 /* Sorting */
156
157 static int
158 compare_them(const void *A, const void *B)
159 {
160   const struct pci_dev *a = (*(const struct device **)A)->dev;
161   const struct pci_dev *b = (*(const struct device **)B)->dev;
162
163   if (a->domain < b->domain)
164     return -1;
165   if (a->domain > b->domain)
166     return 1;
167   if (a->bus < b->bus)
168     return -1;
169   if (a->bus > b->bus)
170     return 1;
171   if (a->dev < b->dev)
172     return -1;
173   if (a->dev > b->dev)
174     return 1;
175   if (a->func < b->func)
176     return -1;
177   if (a->func > b->func)
178     return 1;
179   return 0;
180 }
181
182 static void
183 sort_them(void)
184 {
185   struct device **index, **h, **last_dev;
186   int cnt;
187   struct device *d;
188
189   cnt = 0;
190   for(d=first_dev; d; d=d->next)
191     cnt++;
192   h = index = alloca(sizeof(struct device *) * cnt);
193   for(d=first_dev; d; d=d->next)
194     *h++ = d;
195   qsort(index, cnt, sizeof(struct device *), compare_them);
196   last_dev = &first_dev;
197   h = index;
198   while (cnt--)
199     {
200       *last_dev = *h;
201       last_dev = &(*h)->next;
202       h++;
203     }
204   *last_dev = NULL;
205 }
206
207 /* Normal output */
208
209 #define FLAG(x,y) ((x & y) ? '+' : '-')
210
211 static void
212 show_slot_name(struct device *d)
213 {
214   struct pci_dev *p = d->dev;
215
216   if (p->domain)
217     printf("%04x:", p->domain);
218   printf("%02x:%02x.%d", p->bus, p->dev, p->func);
219 }
220
221 static void
222 show_terse(struct device *d)
223 {
224   int c;
225   struct pci_dev *p = d->dev;
226   byte classbuf[128], devbuf[128];
227
228   show_slot_name(d);
229   printf(" %s: %s",
230          pci_lookup_name(pacc, classbuf, sizeof(classbuf),
231                          PCI_LOOKUP_CLASS,
232                          get_conf_word(d, PCI_CLASS_DEVICE), 0, 0, 0),
233          pci_lookup_name(pacc, devbuf, sizeof(devbuf),
234                          PCI_LOOKUP_VENDOR | PCI_LOOKUP_DEVICE,
235                          p->vendor_id, p->device_id, 0, 0));
236   if (c = get_conf_byte(d, PCI_REVISION_ID))
237     printf(" (rev %02x)", c);
238   if (verbose)
239     {
240       char *x;
241       c = get_conf_byte(d, PCI_CLASS_PROG);
242       x = pci_lookup_name(pacc, devbuf, sizeof(devbuf),
243                           PCI_LOOKUP_PROGIF,
244                           get_conf_word(d, PCI_CLASS_DEVICE), c, 0, 0);
245       if (c || x)
246         {
247           printf(" (prog-if %02x", c);
248           if (x)
249             printf(" [%s]", x);
250           putchar(')');
251         }
252     }
253   putchar('\n');
254 }
255
256 static void
257 show_size(pciaddr_t x)
258 {
259   if (!x)
260     return;
261   printf(" [size=");
262   if (x < 1024)
263     printf("%d", (int) x);
264   else if (x < 1048576)
265     printf("%dK", (int)(x / 1024));
266   else if (x < 0x80000000)
267     printf("%dM", (int)(x / 1048576));
268   else
269     printf(PCIADDR_T_FMT, x);
270   putchar(']');
271 }
272
273 static void
274 show_bases(struct device *d, int cnt)
275 {
276   struct pci_dev *p = d->dev;
277   word cmd = get_conf_word(d, PCI_COMMAND);
278   int i;
279
280   for(i=0; i<cnt; i++)
281     {
282       pciaddr_t pos = p->base_addr[i];
283       pciaddr_t len = (p->known_fields & PCI_FILL_SIZES) ? p->size[i] : 0;
284       u32 flg = get_conf_long(d, PCI_BASE_ADDRESS_0 + 4*i);
285       if (flg == 0xffffffff)
286         flg = 0;
287       if (!pos && !flg && !len)
288         continue;
289       if (verbose > 1)
290         printf("\tRegion %d: ", i);
291       else
292         putchar('\t');
293       if (pos && !flg)                  /* Reported by the OS, but not by the device */
294         {
295           printf("[virtual] ");
296           flg = pos;
297         }
298       if (flg & PCI_BASE_ADDRESS_SPACE_IO)
299         {
300           pciaddr_t a = pos & PCI_BASE_ADDRESS_IO_MASK;
301           printf("I/O ports at ");
302           if (a)
303             printf(PCIADDR_PORT_FMT, a);
304           else if (flg & PCI_BASE_ADDRESS_IO_MASK)
305             printf("<ignored>");
306           else
307             printf("<unassigned>");
308           if (!(cmd & PCI_COMMAND_IO))
309             printf(" [disabled]");
310         }
311       else
312         {
313           int t = flg & PCI_BASE_ADDRESS_MEM_TYPE_MASK;
314           pciaddr_t a = pos & PCI_ADDR_MEM_MASK;
315           int done = 0;
316           u32 z = 0;
317
318           printf("Memory at ");
319           if (t == PCI_BASE_ADDRESS_MEM_TYPE_64)
320             {
321               if (i >= cnt - 1)
322                 {
323                   printf("<invalid-64bit-slot>");
324                   done = 1;
325                 }
326               else
327                 {
328                   i++;
329                   z = get_conf_long(d, PCI_BASE_ADDRESS_0 + 4*i);
330                   if (buscentric_view)
331                     {
332                       if (a || z)
333                         printf("%08x" PCIADDR_T_FMT, z, a);
334                       else
335                         printf("<unassigned>");
336                       done = 1;
337                     }
338                 }
339             }
340           if (!done)
341             {
342               if (a)
343                 printf(PCIADDR_T_FMT, a);
344               else
345                 printf(((flg & PCI_BASE_ADDRESS_MEM_MASK) || z) ? "<ignored>" : "<unassigned>");
346             }
347           printf(" (%s, %sprefetchable)",
348                  (t == PCI_BASE_ADDRESS_MEM_TYPE_32) ? "32-bit" :
349                  (t == PCI_BASE_ADDRESS_MEM_TYPE_64) ? "64-bit" :
350                  (t == PCI_BASE_ADDRESS_MEM_TYPE_1M) ? "low-1M" : "type 3",
351                  (flg & PCI_BASE_ADDRESS_MEM_PREFETCH) ? "" : "non-");
352           if (!(cmd & PCI_COMMAND_MEMORY))
353             printf(" [disabled]");
354         }
355       show_size(len);
356       putchar('\n');
357     }
358 }
359
360 static void
361 show_pm(struct device *d, int where, int cap)
362 {
363   int t, b;
364   static int pm_aux_current[8] = { 0, 55, 100, 160, 220, 270, 320, 375 };
365
366   printf("Power Management version %d\n", cap & PCI_PM_CAP_VER_MASK);
367   if (verbose < 2)
368     return;
369   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",
370          FLAG(cap, PCI_PM_CAP_PME_CLOCK),
371          FLAG(cap, PCI_PM_CAP_DSI),
372          FLAG(cap, PCI_PM_CAP_D1),
373          FLAG(cap, PCI_PM_CAP_D2),
374          pm_aux_current[(cap >> 6) & 7],
375          FLAG(cap, PCI_PM_CAP_PME_D0),
376          FLAG(cap, PCI_PM_CAP_PME_D1),
377          FLAG(cap, PCI_PM_CAP_PME_D2),
378          FLAG(cap, PCI_PM_CAP_PME_D3_HOT),
379          FLAG(cap, PCI_PM_CAP_PME_D3_COLD));
380   if (!config_fetch(d, where + PCI_PM_CTRL, PCI_PM_SIZEOF - PCI_PM_CTRL))
381     return;
382   t = get_conf_word(d, where + PCI_PM_CTRL);
383   printf("\t\tStatus: D%d PME-Enable%c DSel=%d DScale=%d PME%c\n",
384          t & PCI_PM_CTRL_STATE_MASK,
385          FLAG(t, PCI_PM_CTRL_PME_ENABLE),
386          (t & PCI_PM_CTRL_DATA_SEL_MASK) >> 9,
387          (t & PCI_PM_CTRL_DATA_SCALE_MASK) >> 13,
388          FLAG(t, PCI_PM_CTRL_PME_STATUS));
389   b = get_conf_byte(d, where + PCI_PM_PPB_EXTENSIONS);
390   if (b)
391     printf("\t\tBridge: PM%c B3%c\n",
392            FLAG(t, PCI_PM_BPCC_ENABLE),
393            FLAG(~t, PCI_PM_PPB_B2_B3));
394 }
395
396 static void
397 format_agp_rate(int rate, char *buf, int agp3)
398 {
399   char *c = buf;
400   int i;
401
402   for(i=0; i<=2; i++)
403     if (rate & (1 << i))
404       {
405         if (c != buf)
406           *c++ = ',';
407         *c++ = 'x';
408         *c++ = '0' + (1 << (i + 2*agp3));
409       }
410   if (c != buf)
411     *c = 0;
412   else
413     strcpy(buf, "<none>");
414 }
415
416 static void
417 show_agp(struct device *d, int where, int cap)
418 {
419   u32 t;
420   char rate[8];
421   int ver, rev;
422   int agp3 = 0;
423
424   ver = (cap >> 4) & 0x0f;
425   rev = cap & 0x0f;
426   printf("AGP version %x.%x\n", ver, rev);
427   if (verbose < 2)
428     return;
429   if (!config_fetch(d, where + PCI_AGP_STATUS, PCI_AGP_SIZEOF - PCI_AGP_STATUS))
430     return;
431   t = get_conf_long(d, where + PCI_AGP_STATUS);
432   if (ver >= 3 && (t & PCI_AGP_STATUS_AGP3))
433     agp3 = 1;
434   format_agp_rate(t & 7, rate, agp3);
435   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",
436          ((t & PCI_AGP_STATUS_RQ_MASK) >> 24U) + 1,
437          FLAG(t, PCI_AGP_STATUS_ISOCH),
438          ((t & PCI_AGP_STATUS_ARQSZ_MASK) >> 13),
439          ((t & PCI_AGP_STATUS_CAL_MASK) >> 10),
440          FLAG(t, PCI_AGP_STATUS_SBA),
441          FLAG(t, PCI_AGP_STATUS_ITA_COH),
442          FLAG(t, PCI_AGP_STATUS_GART64),
443          FLAG(t, PCI_AGP_STATUS_HTRANS),
444          FLAG(t, PCI_AGP_STATUS_64BIT),
445          FLAG(t, PCI_AGP_STATUS_FW),
446          FLAG(t, PCI_AGP_STATUS_AGP3),
447          rate);
448   t = get_conf_long(d, where + PCI_AGP_COMMAND);
449   format_agp_rate(t & 7, rate, agp3);
450   printf("\t\tCommand: RQ=%d ArqSz=%d Cal=%d SBA%c AGP%c GART64%c 64bit%c FW%c Rate=%s\n",
451          ((t & PCI_AGP_COMMAND_RQ_MASK) >> 24U) + 1,
452          ((t & PCI_AGP_COMMAND_ARQSZ_MASK) >> 13),
453          ((t & PCI_AGP_COMMAND_CAL_MASK) >> 10),
454          FLAG(t, PCI_AGP_COMMAND_SBA),
455          FLAG(t, PCI_AGP_COMMAND_AGP),
456          FLAG(t, PCI_AGP_COMMAND_GART64),
457          FLAG(t, PCI_AGP_COMMAND_64BIT),
458          FLAG(t, PCI_AGP_COMMAND_FW),
459          rate);
460 }
461
462 static void
463 show_pcix_nobridge(struct device *d, int where)
464 {
465   u16 command;
466   u32 status;
467
468   printf("PCI-X non-bridge device.\n");
469       
470   if (verbose < 2)
471     return;
472
473   if (!config_fetch(d, where + PCI_PCIX_STATUS, 4))
474     return;
475   
476   command = get_conf_word(d, where + PCI_PCIX_COMMAND);
477   status = get_conf_long(d, where + PCI_PCIX_STATUS);
478   printf("\t\tCommand: DPERE%c ERO%c RBC=%d OST=%d\n",
479          FLAG(command, PCI_PCIX_COMMAND_DPERE),
480          FLAG(command, PCI_PCIX_COMMAND_ERO),
481          ((command & PCI_PCIX_COMMAND_MAX_MEM_READ_BYTE_COUNT) >> 2U),
482          ((command & PCI_PCIX_COMMAND_MAX_OUTSTANDING_SPLIT_TRANS) >> 4U));
483   printf("\t\tStatus: Bus=%u Dev=%u Func=%u 64bit%c 133MHz%c SCD%c USC%c, DC=%s, DMMRBC=%u, DMOST=%u, DMCRS=%u, RSCEM%c\n",
484          ((status >> 8) & 0xffU), // bus
485          ((status >> 3) & 0x1fU), // dev
486          (status & PCI_PCIX_STATUS_FUNCTION), // function
487          FLAG(status, PCI_PCIX_STATUS_64BIT),
488          FLAG(status, PCI_PCIX_STATUS_133MHZ),
489          FLAG(status, PCI_PCIX_STATUS_SC_DISCARDED),
490          FLAG(status, PCI_PCIX_STATUS_UNEXPECTED_SC),
491          ((status & PCI_PCIX_STATUS_DEVICE_COMPLEXITY) ? "bridge" : "simple"),
492          ((status >> 21) & 3U),
493          ((status >> 23) & 7U),
494          ((status >> 26) & 7U),
495          FLAG(status, PCI_PCIX_STATUS_RCVD_SC_ERR_MESS));
496 }
497
498 static void
499 show_pcix_bridge(struct device *d, int where)
500 {
501
502   u16 secstatus;
503   u32 status, upstcr, downstcr;
504   
505   printf("PCI-X bridge device.\n");
506   
507   if (verbose < 2)
508     return;
509   
510   if (!config_fetch(d, where + PCI_PCIX_BRIDGE_STATUS, 12))
511     return;
512   
513   secstatus = get_conf_word(d, where + PCI_PCIX_BRIDGE_SEC_STATUS);
514   printf("\t\tSecondary Status: 64bit%c, 133MHz%c, SCD%c, USC%c, SCO%c, SRD%c Freq=%d\n",
515          FLAG(secstatus, PCI_PCIX_BRIDGE_SEC_STATUS_64BIT),
516          FLAG(secstatus, PCI_PCIX_BRIDGE_SEC_STATUS_133MHZ),
517          FLAG(secstatus, PCI_PCIX_BRIDGE_SEC_STATUS_SC_DISCARDED),
518          FLAG(secstatus, PCI_PCIX_BRIDGE_SEC_STATUS_UNEXPECTED_SC),
519          FLAG(secstatus, PCI_PCIX_BRIDGE_SEC_STATUS_SC_OVERRUN),
520          FLAG(secstatus, PCI_PCIX_BRIDGE_SEC_STATUS_SPLIT_REQUEST_DELAYED),
521          ((secstatus >> 6) & 7));
522   status = get_conf_long(d, where + PCI_PCIX_BRIDGE_STATUS);
523   printf("\t\tStatus: Bus=%u Dev=%u Func=%u 64bit%c 133MHz%c SCD%c USC%c, SCO%c, SRD%c\n", 
524          ((status >> 8) & 0xff), // bus
525          ((status >> 3) & 0x1f), // dev
526          (status & PCI_PCIX_BRIDGE_STATUS_FUNCTION), // function
527          FLAG(status, PCI_PCIX_BRIDGE_STATUS_64BIT),
528          FLAG(status, PCI_PCIX_BRIDGE_STATUS_133MHZ),
529          FLAG(status, PCI_PCIX_BRIDGE_STATUS_SC_DISCARDED),
530          FLAG(status, PCI_PCIX_BRIDGE_STATUS_UNEXPECTED_SC),
531          FLAG(status, PCI_PCIX_BRIDGE_STATUS_SC_OVERRUN),
532          FLAG(status, PCI_PCIX_BRIDGE_STATUS_SPLIT_REQUEST_DELAYED));
533   upstcr = get_conf_long(d, where + PCI_PCIX_BRIDGE_UPSTREAM_SPLIT_TRANS_CTRL);
534   printf("\t\t: Upstream: Capacity=%u, Commitment Limit=%u\n",
535          (upstcr & PCI_PCIX_BRIDGE_STR_CAPACITY),
536          (upstcr >> 16) & 0xffff);
537   downstcr = get_conf_long(d, where + PCI_PCIX_BRIDGE_DOWNSTREAM_SPLIT_TRANS_CTRL);
538   printf("\t\t: Downstream: Capacity=%u, Commitment Limit=%u\n",
539          (downstcr & PCI_PCIX_BRIDGE_STR_CAPACITY),
540          (downstcr >> 16) & 0xffff);
541 }
542
543 static void
544 show_pcix(struct device *d, int where)
545 {
546   switch (get_conf_byte(d, PCI_HEADER_TYPE) & 0x7f)
547     {
548     case PCI_HEADER_TYPE_NORMAL:
549       show_pcix_nobridge(d, where);
550       break;
551     case PCI_HEADER_TYPE_BRIDGE:
552       show_pcix_bridge(d, where);
553       break;
554     }
555 }
556
557 static void
558 show_rom(struct device *d)
559 {
560   struct pci_dev *p = d->dev;
561   pciaddr_t rom = p->rom_base_addr;
562   pciaddr_t len = (p->known_fields & PCI_FILL_SIZES) ? p->rom_size : 0;
563
564   if (!rom && !len)
565     return;
566   printf("\tExpansion ROM at ");
567   if (rom & PCI_ROM_ADDRESS_MASK)
568     printf(PCIADDR_T_FMT, rom & PCI_ROM_ADDRESS_MASK);
569   else
570     printf("<unassigned>");
571   if (!(rom & PCI_ROM_ADDRESS_ENABLE))
572     printf(" [disabled]");
573   show_size(len);
574   putchar('\n');
575 }
576
577 static void
578 show_msi(struct device *d, int where, int cap)
579 {
580   int is64;
581   u32 t;
582   u16 w;
583
584   printf("Message Signalled Interrupts: 64bit%c Queue=%d/%d Enable%c\n",
585          FLAG(cap, PCI_MSI_FLAGS_64BIT),
586          (cap & PCI_MSI_FLAGS_QSIZE) >> 4,
587          (cap & PCI_MSI_FLAGS_QMASK) >> 1,
588          FLAG(cap, PCI_MSI_FLAGS_ENABLE));
589   if (verbose < 2)
590     return;
591   is64 = cap & PCI_MSI_FLAGS_64BIT;
592   if (!config_fetch(d, where + PCI_MSI_ADDRESS_LO, (is64 ? PCI_MSI_DATA_64 : PCI_MSI_DATA_32) + 2 - PCI_MSI_ADDRESS_LO))
593     return;
594   printf("\t\tAddress: ");
595   if (is64)
596     {
597       t = get_conf_long(d, where + PCI_MSI_ADDRESS_HI);
598       w = get_conf_word(d, where + PCI_MSI_DATA_64);
599       printf("%08x", t);
600     }
601   else
602     w = get_conf_word(d, where + PCI_MSI_DATA_32);
603   t = get_conf_long(d, where + PCI_MSI_ADDRESS_LO);
604   printf("%08x  Data: %04x\n", t, w);
605 }
606
607 static void
608 show_slotid(int cap)
609 {
610   int esr = cap & 0xff;
611   int chs = cap >> 8;
612
613   printf("Slot ID: %d slots, First%c, chassis %02x\n",
614          esr & PCI_SID_ESR_NSLOTS,
615          FLAG(esr, PCI_SID_ESR_FIC),
616          chs);
617 }
618
619 static void
620 show_caps(struct device *d)
621 {
622   if (get_conf_word(d, PCI_STATUS) & PCI_STATUS_CAP_LIST)
623     {
624       int where = get_conf_byte(d, PCI_CAPABILITY_LIST) & ~3;
625       while (where)
626         {
627           int id, next, cap;
628           printf("\tCapabilities: ");
629           if (!config_fetch(d, where, 4))
630             {
631               puts("<available only to root>");
632               break;
633             }
634           id = get_conf_byte(d, where + PCI_CAP_LIST_ID);
635           next = get_conf_byte(d, where + PCI_CAP_LIST_NEXT) & ~3;
636           cap = get_conf_word(d, where + PCI_CAP_FLAGS);
637           printf("[%02x] ", where);
638           if (id == 0xff)
639             {
640               printf("<chain broken>\n");
641               break;
642             }
643           switch (id)
644             {
645             case PCI_CAP_ID_PM:
646               show_pm(d, where, cap);
647               break;
648             case PCI_CAP_ID_AGP:
649               show_agp(d, where, cap);
650               break;
651             case PCI_CAP_ID_VPD:
652               printf("Vital Product Data\n");
653               break;
654             case PCI_CAP_ID_SLOTID:
655               show_slotid(cap);
656               break;
657             case PCI_CAP_ID_MSI:
658               show_msi(d, where, cap);
659               break;
660             case PCI_CAP_ID_PCIX:
661               show_pcix(d, where);
662               break;
663             default:
664               printf("#%02x [%04x]\n", id, cap);
665             }
666           where = next;
667         }
668     }
669 }
670
671 static void
672 show_htype0(struct device *d)
673 {
674   show_bases(d, 6);
675   show_rom(d);
676   show_caps(d);
677 }
678
679 static void
680 show_htype1(struct device *d)
681 {
682   u32 io_base = get_conf_byte(d, PCI_IO_BASE);
683   u32 io_limit = get_conf_byte(d, PCI_IO_LIMIT);
684   u32 io_type = io_base & PCI_IO_RANGE_TYPE_MASK;
685   u32 mem_base = get_conf_word(d, PCI_MEMORY_BASE);
686   u32 mem_limit = get_conf_word(d, PCI_MEMORY_LIMIT);
687   u32 mem_type = mem_base & PCI_MEMORY_RANGE_TYPE_MASK;
688   u32 pref_base = get_conf_word(d, PCI_PREF_MEMORY_BASE);
689   u32 pref_limit = get_conf_word(d, PCI_PREF_MEMORY_LIMIT);
690   u32 pref_type = pref_base & PCI_PREF_RANGE_TYPE_MASK;
691   word brc = get_conf_word(d, PCI_BRIDGE_CONTROL);
692   int verb = verbose > 2;
693
694   show_bases(d, 2);
695   printf("\tBus: primary=%02x, secondary=%02x, subordinate=%02x, sec-latency=%d\n",
696          get_conf_byte(d, PCI_PRIMARY_BUS),
697          get_conf_byte(d, PCI_SECONDARY_BUS),
698          get_conf_byte(d, PCI_SUBORDINATE_BUS),
699          get_conf_byte(d, PCI_SEC_LATENCY_TIMER));
700
701   if (io_type != (io_limit & PCI_IO_RANGE_TYPE_MASK) ||
702       (io_type != PCI_IO_RANGE_TYPE_16 && io_type != PCI_IO_RANGE_TYPE_32))
703     printf("\t!!! Unknown I/O range types %x/%x\n", io_base, io_limit);
704   else
705     {
706       io_base = (io_base & PCI_IO_RANGE_MASK) << 8;
707       io_limit = (io_limit & PCI_IO_RANGE_MASK) << 8;
708       if (io_type == PCI_IO_RANGE_TYPE_32)
709         {
710           io_base |= (get_conf_word(d, PCI_IO_BASE_UPPER16) << 16);
711           io_limit |= (get_conf_word(d, PCI_IO_LIMIT_UPPER16) << 16);
712         }
713       if (io_base <= io_limit || verb)
714         printf("\tI/O behind bridge: %08x-%08x\n", io_base, io_limit+0xfff);
715     }
716
717   if (mem_type != (mem_limit & PCI_MEMORY_RANGE_TYPE_MASK) ||
718       mem_type)
719     printf("\t!!! Unknown memory range types %x/%x\n", mem_base, mem_limit);
720   else
721     {
722       mem_base = (mem_base & PCI_MEMORY_RANGE_MASK) << 16;
723       mem_limit = (mem_limit & PCI_MEMORY_RANGE_MASK) << 16;
724       if (mem_base <= mem_limit || verb)
725         printf("\tMemory behind bridge: %08x-%08x\n", mem_base, mem_limit + 0xfffff);
726     }
727
728   if (pref_type != (pref_limit & PCI_PREF_RANGE_TYPE_MASK) ||
729       (pref_type != PCI_PREF_RANGE_TYPE_32 && pref_type != PCI_PREF_RANGE_TYPE_64))
730     printf("\t!!! Unknown prefetchable memory range types %x/%x\n", pref_base, pref_limit);
731   else
732     {
733       pref_base = (pref_base & PCI_PREF_RANGE_MASK) << 16;
734       pref_limit = (pref_limit & PCI_PREF_RANGE_MASK) << 16;
735       if (pref_base <= pref_limit || verb)
736         {
737           if (pref_type == PCI_PREF_RANGE_TYPE_32)
738             printf("\tPrefetchable memory behind bridge: %08x-%08x\n", pref_base, pref_limit + 0xfffff);
739           else
740             printf("\tPrefetchable memory behind bridge: %08x%08x-%08x%08x\n",
741                    get_conf_long(d, PCI_PREF_BASE_UPPER32),
742                    pref_base,
743                    get_conf_long(d, PCI_PREF_LIMIT_UPPER32),
744                    pref_limit);
745         }
746     }
747
748   if (get_conf_word(d, PCI_SEC_STATUS) & PCI_STATUS_SIG_SYSTEM_ERROR)
749     printf("\tSecondary status: SERR\n");
750
751   show_rom(d);
752
753   if (verbose > 1)
754     printf("\tBridgeCtl: Parity%c SERR%c NoISA%c VGA%c MAbort%c >Reset%c FastB2B%c\n",
755            FLAG(brc, PCI_BRIDGE_CTL_PARITY),
756            FLAG(brc, PCI_BRIDGE_CTL_SERR),
757            FLAG(brc, PCI_BRIDGE_CTL_NO_ISA),
758            FLAG(brc, PCI_BRIDGE_CTL_VGA),
759            FLAG(brc, PCI_BRIDGE_CTL_MASTER_ABORT),
760            FLAG(brc, PCI_BRIDGE_CTL_BUS_RESET),
761            FLAG(brc, PCI_BRIDGE_CTL_FAST_BACK));
762
763   show_caps(d);
764 }
765
766 static void
767 show_htype2(struct device *d)
768 {
769   int i;
770   word cmd = get_conf_word(d, PCI_COMMAND);
771   word brc = get_conf_word(d, PCI_CB_BRIDGE_CONTROL);
772   word exca = get_conf_word(d, PCI_CB_LEGACY_MODE_BASE);
773   int verb = verbose > 2;
774
775   show_bases(d, 1);
776   printf("\tBus: primary=%02x, secondary=%02x, subordinate=%02x, sec-latency=%d\n",
777          get_conf_byte(d, PCI_CB_PRIMARY_BUS),
778          get_conf_byte(d, PCI_CB_CARD_BUS),
779          get_conf_byte(d, PCI_CB_SUBORDINATE_BUS),
780          get_conf_byte(d, PCI_CB_LATENCY_TIMER));
781   for(i=0; i<2; i++)
782     {
783       int p = 8*i;
784       u32 base = get_conf_long(d, PCI_CB_MEMORY_BASE_0 + p);
785       u32 limit = get_conf_long(d, PCI_CB_MEMORY_LIMIT_0 + p);
786       if (limit > base || verb)
787         printf("\tMemory window %d: %08x-%08x%s%s\n", i, base, limit,
788                (cmd & PCI_COMMAND_MEMORY) ? "" : " [disabled]",
789                (brc & (PCI_CB_BRIDGE_CTL_PREFETCH_MEM0 << i)) ? " (prefetchable)" : "");
790     }
791   for(i=0; i<2; i++)
792     {
793       int p = 8*i;
794       u32 base = get_conf_long(d, PCI_CB_IO_BASE_0 + p);
795       u32 limit = get_conf_long(d, PCI_CB_IO_LIMIT_0 + p);
796       if (!(base & PCI_IO_RANGE_TYPE_32))
797         {
798           base &= 0xffff;
799           limit &= 0xffff;
800         }
801       base &= PCI_CB_IO_RANGE_MASK;
802       limit = (limit & PCI_CB_IO_RANGE_MASK) + 3;
803       if (base <= limit || verb)
804         printf("\tI/O window %d: %08x-%08x%s\n", i, base, limit,
805                (cmd & PCI_COMMAND_IO) ? "" : " [disabled]");
806     }
807
808   if (get_conf_word(d, PCI_CB_SEC_STATUS) & PCI_STATUS_SIG_SYSTEM_ERROR)
809     printf("\tSecondary status: SERR\n");
810   if (verbose > 1)
811     printf("\tBridgeCtl: Parity%c SERR%c ISA%c VGA%c MAbort%c >Reset%c 16bInt%c PostWrite%c\n",
812            FLAG(brc, PCI_CB_BRIDGE_CTL_PARITY),
813            FLAG(brc, PCI_CB_BRIDGE_CTL_SERR),
814            FLAG(brc, PCI_CB_BRIDGE_CTL_ISA),
815            FLAG(brc, PCI_CB_BRIDGE_CTL_VGA),
816            FLAG(brc, PCI_CB_BRIDGE_CTL_MASTER_ABORT),
817            FLAG(brc, PCI_CB_BRIDGE_CTL_CB_RESET),
818            FLAG(brc, PCI_CB_BRIDGE_CTL_16BIT_INT),
819            FLAG(brc, PCI_CB_BRIDGE_CTL_POST_WRITES));
820   if (exca)
821     printf("\t16-bit legacy interface ports at %04x\n", exca);
822 }
823
824 static void
825 show_verbose(struct device *d)
826 {
827   struct pci_dev *p = d->dev;
828   word status = get_conf_word(d, PCI_STATUS);
829   word cmd = get_conf_word(d, PCI_COMMAND);
830   word class = get_conf_word(d, PCI_CLASS_DEVICE);
831   byte bist = get_conf_byte(d, PCI_BIST);
832   byte htype = get_conf_byte(d, PCI_HEADER_TYPE) & 0x7f;
833   byte latency = get_conf_byte(d, PCI_LATENCY_TIMER);
834   byte cache_line = get_conf_byte(d, PCI_CACHE_LINE_SIZE);
835   byte max_lat, min_gnt;
836   byte int_pin = get_conf_byte(d, PCI_INTERRUPT_PIN);
837   unsigned int irq = p->irq;
838   word subsys_v, subsys_d;
839   char ssnamebuf[256];
840
841   show_terse(d);
842
843   switch (htype)
844     {
845     case PCI_HEADER_TYPE_NORMAL:
846       if (class == PCI_CLASS_BRIDGE_PCI)
847         printf("\t!!! Invalid class %04x for header type %02x\n", class, htype);
848       max_lat = get_conf_byte(d, PCI_MAX_LAT);
849       min_gnt = get_conf_byte(d, PCI_MIN_GNT);
850       subsys_v = get_conf_word(d, PCI_SUBSYSTEM_VENDOR_ID);
851       subsys_d = get_conf_word(d, PCI_SUBSYSTEM_ID);
852       break;
853     case PCI_HEADER_TYPE_BRIDGE:
854       if (class != PCI_CLASS_BRIDGE_PCI)
855         printf("\t!!! Invalid class %04x for header type %02x\n", class, htype);
856       irq = int_pin = min_gnt = max_lat = 0;
857       subsys_v = subsys_d = 0;
858       break;
859     case PCI_HEADER_TYPE_CARDBUS:
860       if ((class >> 8) != PCI_BASE_CLASS_BRIDGE)
861         printf("\t!!! Invalid class %04x for header type %02x\n", class, htype);
862       min_gnt = max_lat = 0;
863       subsys_v = get_conf_word(d, PCI_CB_SUBSYSTEM_VENDOR_ID);
864       subsys_d = get_conf_word(d, PCI_CB_SUBSYSTEM_ID);
865       break;
866     default:
867       printf("\t!!! Unknown header type %02x\n", htype);
868       return;
869     }
870
871   if (subsys_v && subsys_v != 0xffff)
872     printf("\tSubsystem: %s\n",
873            pci_lookup_name(pacc, ssnamebuf, sizeof(ssnamebuf),
874                            PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_VENDOR | PCI_LOOKUP_DEVICE,
875                            p->vendor_id, p->device_id, subsys_v, subsys_d));
876
877   if (verbose > 1)
878     {
879       printf("\tControl: I/O%c Mem%c BusMaster%c SpecCycle%c MemWINV%c VGASnoop%c ParErr%c Stepping%c SERR%c FastB2B%c\n",
880              FLAG(cmd, PCI_COMMAND_IO),
881              FLAG(cmd, PCI_COMMAND_MEMORY),
882              FLAG(cmd, PCI_COMMAND_MASTER),
883              FLAG(cmd, PCI_COMMAND_SPECIAL),
884              FLAG(cmd, PCI_COMMAND_INVALIDATE),
885              FLAG(cmd, PCI_COMMAND_VGA_PALETTE),
886              FLAG(cmd, PCI_COMMAND_PARITY),
887              FLAG(cmd, PCI_COMMAND_WAIT),
888              FLAG(cmd, PCI_COMMAND_SERR),
889              FLAG(cmd, PCI_COMMAND_FAST_BACK));
890       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",
891              FLAG(status, PCI_STATUS_CAP_LIST),
892              FLAG(status, PCI_STATUS_66MHZ),
893              FLAG(status, PCI_STATUS_UDF),
894              FLAG(status, PCI_STATUS_FAST_BACK),
895              FLAG(status, PCI_STATUS_PARITY),
896              ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_SLOW) ? "slow" :
897              ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_MEDIUM) ? "medium" :
898              ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_FAST) ? "fast" : "??",
899              FLAG(status, PCI_STATUS_SIG_TARGET_ABORT),
900              FLAG(status, PCI_STATUS_REC_TARGET_ABORT),
901              FLAG(status, PCI_STATUS_REC_MASTER_ABORT),
902              FLAG(status, PCI_STATUS_SIG_SYSTEM_ERROR),
903              FLAG(status, PCI_STATUS_DETECTED_PARITY));
904       if (cmd & PCI_COMMAND_MASTER)
905         {
906           printf("\tLatency: %d", latency);
907           if (min_gnt || max_lat)
908             {
909               printf(" (");
910               if (min_gnt)
911                 printf("%dns min", min_gnt*250);
912               if (min_gnt && max_lat)
913                 printf(", ");
914               if (max_lat)
915                 printf("%dns max", max_lat*250);
916               putchar(')');
917             }
918           if (cache_line)
919             printf(", Cache Line Size %02x", cache_line);
920           putchar('\n');
921         }
922       if (int_pin || irq)
923         printf("\tInterrupt: pin %c routed to IRQ " PCIIRQ_FMT "\n",
924                (int_pin ? 'A' + int_pin - 1 : '?'), irq);
925     }
926   else
927     {
928       printf("\tFlags: ");
929       if (cmd & PCI_COMMAND_MASTER)
930         printf("bus master, ");
931       if (cmd & PCI_COMMAND_VGA_PALETTE)
932         printf("VGA palette snoop, ");
933       if (cmd & PCI_COMMAND_WAIT)
934         printf("stepping, ");
935       if (cmd & PCI_COMMAND_FAST_BACK)
936         printf("fast Back2Back, ");
937       if (status & PCI_STATUS_66MHZ)
938         printf("66Mhz, ");
939       if (status & PCI_STATUS_UDF)
940         printf("user-definable features, ");
941       printf("%s devsel",
942              ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_SLOW) ? "slow" :
943              ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_MEDIUM) ? "medium" :
944              ((status & PCI_STATUS_DEVSEL_MASK) == PCI_STATUS_DEVSEL_FAST) ? "fast" : "??");
945       if (cmd & PCI_COMMAND_MASTER)
946         printf(", latency %d", latency);
947       if (irq)
948         printf(", IRQ " PCIIRQ_FMT, irq);
949       putchar('\n');
950     }
951
952   if (bist & PCI_BIST_CAPABLE)
953     {
954       if (bist & PCI_BIST_START)
955         printf("\tBIST is running\n");
956       else
957         printf("\tBIST result: %02x\n", bist & PCI_BIST_CODE_MASK);
958     }
959
960   switch (htype)
961     {
962     case PCI_HEADER_TYPE_NORMAL:
963       show_htype0(d);
964       break;
965     case PCI_HEADER_TYPE_BRIDGE:
966       show_htype1(d);
967       break;
968     case PCI_HEADER_TYPE_CARDBUS:
969       show_htype2(d);
970       break;
971     }
972 }
973
974 static void
975 show_hex_dump(struct device *d)
976 {
977   unsigned int i;
978
979   for(i=0; i<d->config_cnt; i++)
980     {
981       if (! (i & 15))
982         printf("%02x:", i);
983       printf(" %02x", get_conf_byte(d, i));
984       if ((i & 15) == 15)
985         putchar('\n');
986     }
987 }
988
989 static void
990 show_machine(struct device *d)
991 {
992   struct pci_dev *p = d->dev;
993   int c;
994   word sv_id=0, sd_id=0;
995   char classbuf[128], vendbuf[128], devbuf[128], svbuf[128], sdbuf[128];
996
997   switch (get_conf_byte(d, PCI_HEADER_TYPE) & 0x7f)
998     {
999     case PCI_HEADER_TYPE_NORMAL:
1000       sv_id = get_conf_word(d, PCI_SUBSYSTEM_VENDOR_ID);
1001       sd_id = get_conf_word(d, PCI_SUBSYSTEM_ID);
1002       break;
1003     case PCI_HEADER_TYPE_CARDBUS:
1004       sv_id = get_conf_word(d, PCI_CB_SUBSYSTEM_VENDOR_ID);
1005       sd_id = get_conf_word(d, PCI_CB_SUBSYSTEM_ID);
1006       break;
1007     }
1008
1009   if (verbose)
1010     {
1011       printf("Device:\t");
1012       show_slot_name(d);
1013       putchar('\n');
1014       printf("Class:\t%s\n",
1015              pci_lookup_name(pacc, classbuf, sizeof(classbuf), PCI_LOOKUP_CLASS, get_conf_word(d, PCI_CLASS_DEVICE), 0, 0, 0));
1016       printf("Vendor:\t%s\n",
1017              pci_lookup_name(pacc, vendbuf, sizeof(vendbuf), PCI_LOOKUP_VENDOR, p->vendor_id, p->device_id, 0, 0));
1018       printf("Device:\t%s\n",
1019              pci_lookup_name(pacc, devbuf, sizeof(devbuf), PCI_LOOKUP_DEVICE, p->vendor_id, p->device_id, 0, 0));
1020       if (sv_id && sv_id != 0xffff)
1021         {
1022           printf("SVendor:\t%s\n",
1023                  pci_lookup_name(pacc, svbuf, sizeof(svbuf), PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_VENDOR, p->vendor_id, p->device_id, sv_id, sd_id));
1024           printf("SDevice:\t%s\n",
1025                  pci_lookup_name(pacc, sdbuf, sizeof(sdbuf), PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_DEVICE, p->vendor_id, p->device_id, sv_id, sd_id));
1026         }
1027       if (c = get_conf_byte(d, PCI_REVISION_ID))
1028         printf("Rev:\t%02x\n", c);
1029       if (c = get_conf_byte(d, PCI_CLASS_PROG))
1030         printf("ProgIf:\t%02x\n", c);
1031     }
1032   else
1033     {
1034       show_slot_name(d);
1035       printf(" \"%s\" \"%s\" \"%s\"",
1036              pci_lookup_name(pacc, classbuf, sizeof(classbuf), PCI_LOOKUP_CLASS,
1037                              get_conf_word(d, PCI_CLASS_DEVICE), 0, 0, 0),
1038              pci_lookup_name(pacc, vendbuf, sizeof(vendbuf), PCI_LOOKUP_VENDOR,
1039                              p->vendor_id, p->device_id, 0, 0),
1040              pci_lookup_name(pacc, devbuf, sizeof(devbuf), PCI_LOOKUP_DEVICE,
1041                              p->vendor_id, p->device_id, 0, 0));
1042       if (c = get_conf_byte(d, PCI_REVISION_ID))
1043         printf(" -r%02x", c);
1044       if (c = get_conf_byte(d, PCI_CLASS_PROG))
1045         printf(" -p%02x", c);
1046       if (sv_id && sv_id != 0xffff)
1047         printf(" \"%s\" \"%s\"",
1048                pci_lookup_name(pacc, svbuf, sizeof(svbuf), PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_VENDOR, p->vendor_id, p->device_id, sv_id, sd_id),
1049                pci_lookup_name(pacc, sdbuf, sizeof(sdbuf), PCI_LOOKUP_SUBSYSTEM | PCI_LOOKUP_DEVICE, p->vendor_id, p->device_id, sv_id, sd_id));
1050       else
1051         printf(" \"\" \"\"");
1052       putchar('\n');
1053     }
1054 }
1055
1056 static void
1057 show_device(struct device *d)
1058 {
1059   if (machine_readable)
1060     show_machine(d);
1061   else if (verbose)
1062     show_verbose(d);
1063   else
1064     show_terse(d);
1065   if (show_hex)
1066     show_hex_dump(d);
1067   if (verbose || show_hex)
1068     putchar('\n');
1069 }
1070
1071 static void
1072 show(void)
1073 {
1074   struct device *d;
1075
1076   for(d=first_dev; d; d=d->next)
1077     show_device(d);
1078 }
1079
1080 /* Tree output */
1081
1082 struct bridge {
1083   struct bridge *chain;                 /* Single-linked list of bridges */
1084   struct bridge *next, *child;          /* Tree of bridges */
1085   struct bus *first_bus;                /* List of busses connected to this bridge */
1086   unsigned int domain;
1087   unsigned int primary, secondary, subordinate; /* Bus numbers */
1088   struct device *br_dev;
1089 };
1090
1091 struct bus {
1092   unsigned int domain;
1093   unsigned int number;
1094   struct bus *sibling;
1095   struct device *first_dev, **last_dev;
1096 };
1097
1098 static struct bridge host_bridge = { NULL, NULL, NULL, NULL, 0, ~0, 0, ~0, NULL };
1099
1100 static struct bus *
1101 find_bus(struct bridge *b, unsigned int domain, unsigned int n)
1102 {
1103   struct bus *bus;
1104
1105   for(bus=b->first_bus; bus; bus=bus->sibling)
1106     if (bus->domain == domain && bus->number == n)
1107       break;
1108   return bus;
1109 }
1110
1111 static struct bus *
1112 new_bus(struct bridge *b, unsigned int domain, unsigned int n)
1113 {
1114   struct bus *bus = xmalloc(sizeof(struct bus));
1115
1116   bus = xmalloc(sizeof(struct bus));
1117   bus->domain = domain;
1118   bus->number = n;
1119   bus->sibling = b->first_bus;
1120   bus->first_dev = NULL;
1121   bus->last_dev = &bus->first_dev;
1122   b->first_bus = bus;
1123   return bus;
1124 }
1125
1126 static void
1127 insert_dev(struct device *d, struct bridge *b)
1128 {
1129   struct pci_dev *p = d->dev;
1130   struct bus *bus;
1131
1132   if (! (bus = find_bus(b, p->domain, p->bus)))
1133     {
1134       struct bridge *c;
1135       for(c=b->child; c; c=c->next)
1136         if (c->domain == p->domain && c->secondary <= p->bus && p->bus <= c->subordinate)
1137           {
1138             insert_dev(d, c);
1139             return;
1140           }
1141       bus = new_bus(b, p->domain, p->bus);
1142     }
1143   /* Simple insertion at the end _does_ guarantee the correct order as the
1144    * original device list was sorted by (domain, bus, devfn) lexicographically
1145    * and all devices on the new list have the same bus number.
1146    */
1147   *bus->last_dev = d;
1148   bus->last_dev = &d->next;
1149   d->next = NULL;
1150 }
1151
1152 static void
1153 grow_tree(void)
1154 {
1155   struct device *d, *d2;
1156   struct bridge **last_br, *b;
1157
1158   /* Build list of bridges */
1159
1160   last_br = &host_bridge.chain;
1161   for(d=first_dev; d; d=d->next)
1162     {
1163       word class = get_conf_word(d, PCI_CLASS_DEVICE);
1164       byte ht = get_conf_byte(d, PCI_HEADER_TYPE) & 0x7f;
1165       if (class == PCI_CLASS_BRIDGE_PCI &&
1166           (ht == PCI_HEADER_TYPE_BRIDGE || ht == PCI_HEADER_TYPE_CARDBUS))
1167         {
1168           b = xmalloc(sizeof(struct bridge));
1169           b->domain = d->dev->domain;
1170           if (ht == PCI_HEADER_TYPE_BRIDGE)
1171             {
1172               b->primary = get_conf_byte(d, PCI_CB_PRIMARY_BUS);
1173               b->secondary = get_conf_byte(d, PCI_CB_CARD_BUS);
1174               b->subordinate = get_conf_byte(d, PCI_CB_SUBORDINATE_BUS);
1175             }
1176           else
1177             {
1178               b->primary = get_conf_byte(d, PCI_PRIMARY_BUS);
1179               b->secondary = get_conf_byte(d, PCI_SECONDARY_BUS);
1180               b->subordinate = get_conf_byte(d, PCI_SUBORDINATE_BUS);
1181             }
1182           *last_br = b;
1183           last_br = &b->chain;
1184           b->next = b->child = NULL;
1185           b->first_bus = NULL;
1186           b->br_dev = d;
1187         }
1188     }
1189   *last_br = NULL;
1190
1191   /* Create a bridge tree */
1192
1193   for(b=&host_bridge; b; b=b->chain)
1194     {
1195       struct bridge *c, *best;
1196       best = NULL;
1197       for(c=&host_bridge; c; c=c->chain)
1198         if (c != b && (c == &host_bridge || b->domain == c->domain) &&
1199             b->primary >= c->secondary && b->primary <= c->subordinate &&
1200             (!best || best->subordinate - best->primary > c->subordinate - c->primary))
1201           best = c;
1202       if (best)
1203         {
1204           b->next = best->child;
1205           best->child = b;
1206         }
1207     }
1208
1209   /* Insert secondary bus for each bridge */
1210
1211   for(b=&host_bridge; b; b=b->chain)
1212     if (!find_bus(b, b->domain, b->secondary))
1213       new_bus(b, b->domain, b->secondary);
1214
1215   /* Create bus structs and link devices */
1216
1217   for(d=first_dev; d;)
1218     {
1219       d2 = d->next;
1220       insert_dev(d, &host_bridge);
1221       d = d2;
1222     }
1223 }
1224
1225 static void
1226 print_it(byte *line, byte *p)
1227 {
1228   *p++ = '\n';
1229   *p = 0;
1230   fputs(line, stdout);
1231   for(p=line; *p; p++)
1232     if (*p == '+' || *p == '|')
1233       *p = '|';
1234     else
1235       *p = ' ';
1236 }
1237
1238 static void show_tree_bridge(struct bridge *, byte *, byte *);
1239
1240 static void
1241 show_tree_dev(struct device *d, byte *line, byte *p)
1242 {
1243   struct pci_dev *q = d->dev;
1244   struct bridge *b;
1245   char namebuf[256];
1246
1247   p += sprintf(p, "%02x.%x", q->dev, q->func);
1248   for(b=&host_bridge; b; b=b->chain)
1249     if (b->br_dev == d)
1250       {
1251         if (b->secondary == b->subordinate)
1252           p += sprintf(p, "-[%04x:%02x]-", b->domain, b->secondary);
1253         else
1254           p += sprintf(p, "-[%04x:%02x-%02x]-", b->domain, b->secondary, b->subordinate);
1255         show_tree_bridge(b, line, p);
1256         return;
1257       }
1258   if (verbose)
1259     p += sprintf(p, "  %s",
1260                  pci_lookup_name(pacc, namebuf, sizeof(namebuf),
1261                                  PCI_LOOKUP_VENDOR | PCI_LOOKUP_DEVICE,
1262                                  q->vendor_id, q->device_id, 0, 0));
1263   print_it(line, p);
1264 }
1265
1266 static void
1267 show_tree_bus(struct bus *b, byte *line, byte *p)
1268 {
1269   if (!b->first_dev)
1270     print_it(line, p);
1271   else if (!b->first_dev->next)
1272     {
1273       *p++ = '-';
1274       *p++ = '-';
1275       show_tree_dev(b->first_dev, line, p);
1276     }
1277   else
1278     {
1279       struct device *d = b->first_dev;
1280       while (d->next)
1281         {
1282           p[0] = '+';
1283           p[1] = '-';
1284           show_tree_dev(d, line, p+2);
1285           d = d->next;
1286         }
1287       p[0] = '\\';
1288       p[1] = '-';
1289       show_tree_dev(d, line, p+2);
1290     }
1291 }
1292
1293 static void
1294 show_tree_bridge(struct bridge *b, byte *line, byte *p)
1295 {
1296   *p++ = '-';
1297   if (!b->first_bus->sibling)
1298     {
1299       if (b == &host_bridge)
1300         p += sprintf(p, "[%04x:%02x]-", b->domain, b->first_bus->number);
1301       show_tree_bus(b->first_bus, line, p);
1302     }
1303   else
1304     {
1305       struct bus *u = b->first_bus;
1306       byte *k;
1307
1308       while (u->sibling)
1309         {
1310           k = p + sprintf(p, "+-[%04x:%02x]-", u->domain, u->number);
1311           show_tree_bus(u, line, k);
1312           u = u->sibling;
1313         }
1314       k = p + sprintf(p, "\\-[%04x:%02x]-", u->domain, u->number);
1315       show_tree_bus(u, line, k);
1316     }
1317 }
1318
1319 static void
1320 show_forest(void)
1321 {
1322   char line[256];
1323
1324   grow_tree();
1325   show_tree_bridge(&host_bridge, line, line);
1326 }
1327
1328 /* Bus mapping mode */
1329
1330 struct bus_bridge {
1331   struct bus_bridge *next;
1332   byte this, dev, func, first, last, bug;
1333 };
1334
1335 struct bus_info {
1336   byte exists;
1337   byte guestbook;
1338   struct bus_bridge *bridges, *via;
1339 };
1340
1341 static struct bus_info *bus_info;
1342
1343 static void
1344 map_bridge(struct bus_info *bi, struct device *d, int np, int ns, int nl)
1345 {
1346   struct bus_bridge *b = xmalloc(sizeof(struct bus_bridge));
1347   struct pci_dev *p = d->dev;
1348
1349   b->next = bi->bridges;
1350   bi->bridges = b;
1351   b->this = get_conf_byte(d, np);
1352   b->dev = p->dev;
1353   b->func = p->func;
1354   b->first = get_conf_byte(d, ns);
1355   b->last = get_conf_byte(d, nl);
1356   printf("## %02x.%02x:%d is a bridge from %02x to %02x-%02x\n",
1357          p->bus, p->dev, p->func, b->this, b->first, b->last);
1358   if (b->this != p->bus)
1359     printf("!!! Bridge points to invalid primary bus.\n");
1360   if (b->first > b->last)
1361     {
1362       printf("!!! Bridge points to invalid bus range.\n");
1363       b->last = b->first;
1364     }
1365 }
1366
1367 static void
1368 do_map_bus(int bus)
1369 {
1370   int dev, func;
1371   int verbose = pacc->debugging;
1372   struct bus_info *bi = bus_info + bus;
1373   struct device *d;
1374
1375   if (verbose)
1376     printf("Mapping bus %02x\n", bus);
1377   for(dev = 0; dev < 32; dev++)
1378     if (filter.slot < 0 || filter.slot == dev)
1379       {
1380         int func_limit = 1;
1381         for(func = 0; func < func_limit; func++)
1382           if (filter.func < 0 || filter.func == func)
1383             {
1384               /* XXX: Bus mapping supports only domain 0 */
1385               struct pci_dev *p = pci_get_dev(pacc, 0, bus, dev, func);
1386               u16 vendor = pci_read_word(p, PCI_VENDOR_ID);
1387               if (vendor && vendor != 0xffff)
1388                 {
1389                   if (!func && (pci_read_byte(p, PCI_HEADER_TYPE) & 0x80))
1390                     func_limit = 8;
1391                   if (verbose)
1392                     printf("Discovered device %02x:%02x.%d\n", bus, dev, func);
1393                   bi->exists = 1;
1394                   if (d = scan_device(p))
1395                     {
1396                       show_device(d);
1397                       switch (get_conf_byte(d, PCI_HEADER_TYPE) & 0x7f)
1398                         {
1399                         case PCI_HEADER_TYPE_BRIDGE:
1400                           map_bridge(bi, d, PCI_PRIMARY_BUS, PCI_SECONDARY_BUS, PCI_SUBORDINATE_BUS);
1401                           break;
1402                         case PCI_HEADER_TYPE_CARDBUS:
1403                           map_bridge(bi, d, PCI_CB_PRIMARY_BUS, PCI_CB_CARD_BUS, PCI_CB_SUBORDINATE_BUS);
1404                           break;
1405                         }
1406                       free(d);
1407                     }
1408                   else if (verbose)
1409                     printf("But it was filtered out.\n");
1410                 }
1411               pci_free_dev(p);
1412             }
1413       }
1414 }
1415
1416 static void
1417 do_map_bridges(int bus, int min, int max)
1418 {
1419   struct bus_info *bi = bus_info + bus;
1420   struct bus_bridge *b;
1421
1422   bi->guestbook = 1;
1423   for(b=bi->bridges; b; b=b->next)
1424     {
1425       if (bus_info[b->first].guestbook)
1426         b->bug = 1;
1427       else if (b->first < min || b->last > max)
1428         b->bug = 2;
1429       else
1430         {
1431           bus_info[b->first].via = b;
1432           do_map_bridges(b->first, b->first, b->last);
1433         }
1434     }
1435 }
1436
1437 static void
1438 map_bridges(void)
1439 {
1440   int i;
1441
1442   printf("\nSummary of buses:\n\n");
1443   for(i=0; i<256; i++)
1444     if (bus_info[i].exists && !bus_info[i].guestbook)
1445       do_map_bridges(i, 0, 255);
1446   for(i=0; i<256; i++)
1447     {
1448       struct bus_info *bi = bus_info + i;
1449       struct bus_bridge *b = bi->via;
1450
1451       if (bi->exists)
1452         {
1453           printf("%02x: ", i);
1454           if (b)
1455             printf("Entered via %02x:%02x.%d\n", b->this, b->dev, b->func);
1456           else if (!i)
1457             printf("Primary host bus\n");
1458           else
1459             printf("Secondary host bus (?)\n");
1460         }
1461       for(b=bi->bridges; b; b=b->next)
1462         {
1463           printf("\t%02x.%d Bridge to %02x-%02x", b->dev, b->func, b->first, b->last);
1464           switch (b->bug)
1465             {
1466             case 1:
1467               printf(" <overlap bug>");
1468               break;
1469             case 2:
1470               printf(" <crossing bug>");
1471               break;
1472             }
1473           putchar('\n');
1474         }
1475     }
1476 }
1477
1478 static void
1479 map_the_bus(void)
1480 {
1481   if (pacc->method == PCI_ACCESS_PROC_BUS_PCI ||
1482       pacc->method == PCI_ACCESS_DUMP)
1483     printf("WARNING: Bus mapping can be reliable only with direct hardware access enabled.\n\n");
1484   else if (!check_root())
1485     die("Only root can map the bus.");
1486   bus_info = xmalloc(sizeof(struct bus_info) * 256);
1487   bzero(bus_info, sizeof(struct bus_info) * 256);
1488   if (filter.bus >= 0)
1489     do_map_bus(filter.bus);
1490   else
1491     {
1492       int bus;
1493       for(bus=0; bus<256; bus++)
1494         do_map_bus(bus);
1495     }
1496   map_bridges();
1497 }
1498
1499 /* Main */
1500
1501 int
1502 main(int argc, char **argv)
1503 {
1504   int i;
1505   char *msg;
1506
1507   if (argc == 2 && !strcmp(argv[1], "--version"))
1508     {
1509       puts("lspci version " PCIUTILS_VERSION);
1510       return 0;
1511     }
1512
1513   pacc = pci_alloc();
1514   pacc->error = die;
1515   pci_filter_init(pacc, &filter);
1516
1517   while ((i = getopt(argc, argv, options)) != -1)
1518     switch (i)
1519       {
1520       case 'n':
1521         pacc->numeric_ids = 1;
1522         break;
1523       case 'v':
1524         verbose++;
1525         break;
1526       case 'b':
1527         pacc->buscentric = 1;
1528         buscentric_view = 1;
1529         break;
1530       case 's':
1531         if (msg = pci_filter_parse_slot(&filter, optarg))
1532           die("-s: %s", msg);
1533         break;
1534       case 'd':
1535         if (msg = pci_filter_parse_id(&filter, optarg))
1536           die("-d: %s", msg);
1537         break;
1538       case 'x':
1539         show_hex++;
1540         break;
1541       case 't':
1542         show_tree++;
1543         break;
1544       case 'i':
1545         pacc->id_file_name = optarg;
1546         break;
1547       case 'm':
1548         machine_readable++;
1549         break;
1550       case 'M':
1551         map_mode++;
1552         break;
1553       default:
1554         if (parse_generic_option(i, pacc, optarg))
1555           break;
1556       bad:
1557         fprintf(stderr, help_msg, pacc->id_file_name);
1558         return 1;
1559       }
1560   if (optind < argc)
1561     goto bad;
1562
1563   pci_init(pacc);
1564   if (map_mode)
1565     map_the_bus();
1566   else
1567     {
1568       scan_devices();
1569       sort_them();
1570       if (show_tree)
1571         show_forest();
1572       else
1573         show();
1574     }
1575   pci_cleanup(pacc);
1576
1577   return 0;
1578 }