]> mj.ucw.cz Git - pciutils.git/blob - ls-ecaps.c
5e18e0693eafc92a2f6e88b66231721bd49f7cc5
[pciutils.git] / ls-ecaps.c
1 /*
2  *      The PCI Utilities -- Show Extended Capabilities
3  *
4  *      Copyright (c) 1997--2010 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
12 #include "lspci.h"
13
14 static void
15 cap_tph(struct device *d, int where)
16 {
17   u32 tph_cap;
18   printf("Transaction Processing Hints\n");
19   if (verbose < 2)
20     return;
21
22   if (!config_fetch(d, where + PCI_TPH_CAPABILITIES, 4))
23     return;
24
25   tph_cap = get_conf_long(d, where + PCI_TPH_CAPABILITIES);
26
27   if (tph_cap & PCI_TPH_INTVEC_SUP)
28     printf("\t\tInterrupt vector mode supported\n");
29   if (tph_cap & PCI_TPH_DEV_SUP)
30     printf("\t\tDevice specific mode supported\n");
31   if (tph_cap & PCI_TPH_EXT_REQ_SUP)
32     printf("\t\tExtended requester support\n");
33
34   switch (tph_cap & PCI_TPH_ST_LOC_MASK) {
35   case PCI_TPH_ST_NONE:
36     printf("\t\tNo steering table available\n");
37     break;
38   case PCI_TPH_ST_CAP:
39     printf("\t\tSteering table in TPH capability structure\n");
40     break;
41   case PCI_TPH_ST_MSIX:
42     printf("\t\tSteering table in MSI-X table\n");
43     break;
44   default:
45     printf("\t\tReserved steering table location\n");
46     break;
47   }
48 }
49
50 static u32
51 cap_ltr_scale(u8 scale)
52 {
53   return 1 << (scale * 5);
54 }
55
56 static void
57 cap_ltr(struct device *d, int where)
58 {
59   u32 scale;
60   u16 snoop, nosnoop;
61   printf("Latency Tolerance Reporting\n");
62   if (verbose < 2)
63     return;
64
65   if (!config_fetch(d, where + PCI_LTR_MAX_SNOOP, 4))
66     return;
67
68   snoop = get_conf_word(d, where + PCI_LTR_MAX_SNOOP);
69   scale = cap_ltr_scale((snoop >> PCI_LTR_SCALE_SHIFT) & PCI_LTR_SCALE_MASK);
70   printf("\t\tMax snoop latency: %lldns\n",
71          ((unsigned long long)snoop & PCI_LTR_VALUE_MASK) * scale);
72
73   nosnoop = get_conf_word(d, where + PCI_LTR_MAX_NOSNOOP);
74   scale = cap_ltr_scale((nosnoop >> PCI_LTR_SCALE_SHIFT) & PCI_LTR_SCALE_MASK);
75   printf("\t\tMax no snoop latency: %lldns\n",
76          ((unsigned long long)nosnoop & PCI_LTR_VALUE_MASK) * scale);
77 }
78
79 static void
80 cap_dsn(struct device *d, int where)
81 {
82   u32 t1, t2;
83   if (!config_fetch(d, where + 4, 8))
84     return;
85   t1 = get_conf_long(d, where + 4);
86   t2 = get_conf_long(d, where + 8);
87   printf("Device Serial Number %02x-%02x-%02x-%02x-%02x-%02x-%02x-%02x\n",
88         t2 >> 24, (t2 >> 16) & 0xff, (t2 >> 8) & 0xff, t2 & 0xff,
89         t1 >> 24, (t1 >> 16) & 0xff, (t1 >> 8) & 0xff, t1 & 0xff);
90 }
91
92 static void
93 cap_aer(struct device *d, int where)
94 {
95   u32 l;
96
97   printf("Advanced Error Reporting\n");
98   if (verbose < 2)
99     return;
100
101   if (!config_fetch(d, where + PCI_ERR_UNCOR_STATUS, 24))
102     return;
103
104   l = get_conf_long(d, where + PCI_ERR_UNCOR_STATUS);
105   printf("\t\tUESta:\tDLP%c SDES%c TLP%c FCP%c CmpltTO%c CmpltAbrt%c UnxCmplt%c RxOF%c "
106         "MalfTLP%c ECRC%c UnsupReq%c ACSViol%c\n",
107         FLAG(l, PCI_ERR_UNC_DLP), FLAG(l, PCI_ERR_UNC_SDES), FLAG(l, PCI_ERR_UNC_POISON_TLP),
108         FLAG(l, PCI_ERR_UNC_FCP), FLAG(l, PCI_ERR_UNC_COMP_TIME), FLAG(l, PCI_ERR_UNC_COMP_ABORT),
109         FLAG(l, PCI_ERR_UNC_UNX_COMP), FLAG(l, PCI_ERR_UNC_RX_OVER), FLAG(l, PCI_ERR_UNC_MALF_TLP),
110         FLAG(l, PCI_ERR_UNC_ECRC), FLAG(l, PCI_ERR_UNC_UNSUP), FLAG(l, PCI_ERR_UNC_ACS_VIOL));
111   l = get_conf_long(d, where + PCI_ERR_UNCOR_MASK);
112   printf("\t\tUEMsk:\tDLP%c SDES%c TLP%c FCP%c CmpltTO%c CmpltAbrt%c UnxCmplt%c RxOF%c "
113         "MalfTLP%c ECRC%c UnsupReq%c ACSViol%c\n",
114         FLAG(l, PCI_ERR_UNC_DLP), FLAG(l, PCI_ERR_UNC_SDES), FLAG(l, PCI_ERR_UNC_POISON_TLP),
115         FLAG(l, PCI_ERR_UNC_FCP), FLAG(l, PCI_ERR_UNC_COMP_TIME), FLAG(l, PCI_ERR_UNC_COMP_ABORT),
116         FLAG(l, PCI_ERR_UNC_UNX_COMP), FLAG(l, PCI_ERR_UNC_RX_OVER), FLAG(l, PCI_ERR_UNC_MALF_TLP),
117         FLAG(l, PCI_ERR_UNC_ECRC), FLAG(l, PCI_ERR_UNC_UNSUP), FLAG(l, PCI_ERR_UNC_ACS_VIOL));
118   l = get_conf_long(d, where + PCI_ERR_UNCOR_SEVER);
119   printf("\t\tUESvrt:\tDLP%c SDES%c TLP%c FCP%c CmpltTO%c CmpltAbrt%c UnxCmplt%c RxOF%c "
120         "MalfTLP%c ECRC%c UnsupReq%c ACSViol%c\n",
121         FLAG(l, PCI_ERR_UNC_DLP), FLAG(l, PCI_ERR_UNC_SDES), FLAG(l, PCI_ERR_UNC_POISON_TLP),
122         FLAG(l, PCI_ERR_UNC_FCP), FLAG(l, PCI_ERR_UNC_COMP_TIME), FLAG(l, PCI_ERR_UNC_COMP_ABORT),
123         FLAG(l, PCI_ERR_UNC_UNX_COMP), FLAG(l, PCI_ERR_UNC_RX_OVER), FLAG(l, PCI_ERR_UNC_MALF_TLP),
124         FLAG(l, PCI_ERR_UNC_ECRC), FLAG(l, PCI_ERR_UNC_UNSUP), FLAG(l, PCI_ERR_UNC_ACS_VIOL));
125   l = get_conf_long(d, where + PCI_ERR_COR_STATUS);
126   printf("\t\tCESta:\tRxErr%c BadTLP%c BadDLLP%c Rollover%c Timeout%c NonFatalErr%c\n",
127         FLAG(l, PCI_ERR_COR_RCVR), FLAG(l, PCI_ERR_COR_BAD_TLP), FLAG(l, PCI_ERR_COR_BAD_DLLP),
128         FLAG(l, PCI_ERR_COR_REP_ROLL), FLAG(l, PCI_ERR_COR_REP_TIMER), FLAG(l, PCI_ERR_COR_REP_ANFE));
129   l = get_conf_long(d, where + PCI_ERR_COR_MASK);
130   printf("\t\tCEMsk:\tRxErr%c BadTLP%c BadDLLP%c Rollover%c Timeout%c NonFatalErr%c\n",
131         FLAG(l, PCI_ERR_COR_RCVR), FLAG(l, PCI_ERR_COR_BAD_TLP), FLAG(l, PCI_ERR_COR_BAD_DLLP),
132         FLAG(l, PCI_ERR_COR_REP_ROLL), FLAG(l, PCI_ERR_COR_REP_TIMER), FLAG(l, PCI_ERR_COR_REP_ANFE));
133   l = get_conf_long(d, where + PCI_ERR_CAP);
134   printf("\t\tAERCap:\tFirst Error Pointer: %02x, GenCap%c CGenEn%c ChkCap%c ChkEn%c\n",
135         PCI_ERR_CAP_FEP(l), FLAG(l, PCI_ERR_CAP_ECRC_GENC), FLAG(l, PCI_ERR_CAP_ECRC_GENE),
136         FLAG(l, PCI_ERR_CAP_ECRC_CHKC), FLAG(l, PCI_ERR_CAP_ECRC_CHKE));
137
138 }
139
140 static void cap_dpc(struct device *d, int where)
141 {
142   u16 l;
143
144   printf("Downstream Port Containment\n");
145   if (verbose < 2)
146     return;
147
148   if (!config_fetch(d, where + PCI_DPC_CAP, 8))
149     return;
150
151   l = get_conf_word(d, where + PCI_DPC_CAP);
152   printf("\t\tDpcCap:\tINT Msg #%d, RPExt%c PoisonedTLP%c SwTrigger%c RP PIO Log %d, DL_ActiveErr%c\n",
153     PCI_DPC_CAP_INT_MSG(l), FLAG(l, PCI_DPC_CAP_RP_EXT), FLAG(l, PCI_DPC_CAP_TLP_BLOCK),
154     FLAG(l, PCI_DPC_CAP_SW_TRIGGER), PCI_DPC_CAP_RP_LOG(l), FLAG(l, PCI_DPC_CAP_DL_ACT_ERR));
155
156   l = get_conf_word(d, where + PCI_DPC_CTL);
157   printf("\t\tDpcCtl:\tTrigger:%x Cmpl%c INT%c ErrCor%c PoisonedTLP%c SwTrigger%c DL_ActiveErr%c\n",
158     PCI_DPC_CTL_TRIGGER(l), FLAG(l, PCI_DPC_CTL_CMPL), FLAG(l, PCI_DPC_CTL_INT),
159     FLAG(l, PCI_DPC_CTL_ERR_COR), FLAG(l, PCI_DPC_CTL_TLP), FLAG(l, PCI_DPC_CTL_SW_TRIGGER),
160     FLAG(l, PCI_DPC_CTL_DL_ACTIVE));
161
162   l = get_conf_word(d, where + PCI_DPC_STATUS);
163   printf("\t\tDpcSta:\tTrigger%c Reason:%02x INT%c RPBusy%c TriggerExt:%02x RP PIO ErrPtr:%02x\n",
164     FLAG(l, PCI_DPC_STS_TRIGGER), PCI_DPC_STS_REASON(l), FLAG(l, PCI_DPC_STS_INT),
165     FLAG(l, PCI_DPC_STS_RP_BUSY), PCI_DPC_STS_TRIGGER_EXT(l), PCI_DPC_STS_PIO_FEP(l));
166
167   l = get_conf_word(d, where + PCI_DPC_SOURCE);
168   printf("\t\tSource:\t%04x\n", l);
169 }
170
171 static void
172 cap_acs(struct device *d, int where)
173 {
174   u16 w;
175
176   printf("Access Control Services\n");
177   if (verbose < 2)
178     return;
179
180   if (!config_fetch(d, where + PCI_ACS_CAP, 4))
181     return;
182
183   w = get_conf_word(d, where + PCI_ACS_CAP);
184   printf("\t\tACSCap:\tSrcValid%c TransBlk%c ReqRedir%c CmpltRedir%c UpstreamFwd%c EgressCtrl%c "
185         "DirectTrans%c\n",
186         FLAG(w, PCI_ACS_CAP_VALID), FLAG(w, PCI_ACS_CAP_BLOCK), FLAG(w, PCI_ACS_CAP_REQ_RED),
187         FLAG(w, PCI_ACS_CAP_CMPLT_RED), FLAG(w, PCI_ACS_CAP_FORWARD), FLAG(w, PCI_ACS_CAP_EGRESS),
188         FLAG(w, PCI_ACS_CAP_TRANS));
189   w = get_conf_word(d, where + PCI_ACS_CTRL);
190   printf("\t\tACSCtl:\tSrcValid%c TransBlk%c ReqRedir%c CmpltRedir%c UpstreamFwd%c EgressCtrl%c "
191         "DirectTrans%c\n",
192         FLAG(w, PCI_ACS_CTRL_VALID), FLAG(w, PCI_ACS_CTRL_BLOCK), FLAG(w, PCI_ACS_CTRL_REQ_RED),
193         FLAG(w, PCI_ACS_CTRL_CMPLT_RED), FLAG(w, PCI_ACS_CTRL_FORWARD), FLAG(w, PCI_ACS_CTRL_EGRESS),
194         FLAG(w, PCI_ACS_CTRL_TRANS));
195 }
196
197 static void
198 cap_ari(struct device *d, int where)
199 {
200   u16 w;
201
202   printf("Alternative Routing-ID Interpretation (ARI)\n");
203   if (verbose < 2)
204     return;
205
206   if (!config_fetch(d, where + PCI_ARI_CAP, 4))
207     return;
208
209   w = get_conf_word(d, where + PCI_ARI_CAP);
210   printf("\t\tARICap:\tMFVC%c ACS%c, Next Function: %d\n",
211         FLAG(w, PCI_ARI_CAP_MFVC), FLAG(w, PCI_ARI_CAP_ACS),
212         PCI_ARI_CAP_NFN(w));
213   w = get_conf_word(d, where + PCI_ARI_CTRL);
214   printf("\t\tARICtl:\tMFVC%c ACS%c, Function Group: %d\n",
215         FLAG(w, PCI_ARI_CTRL_MFVC), FLAG(w, PCI_ARI_CTRL_ACS),
216         PCI_ARI_CTRL_FG(w));
217 }
218
219 static void
220 cap_ats(struct device *d, int where)
221 {
222   u16 w;
223
224   printf("Address Translation Service (ATS)\n");
225   if (verbose < 2)
226     return;
227
228   if (!config_fetch(d, where + PCI_ATS_CAP, 4))
229     return;
230
231   w = get_conf_word(d, where + PCI_ATS_CAP);
232   printf("\t\tATSCap:\tInvalidate Queue Depth: %02x\n", PCI_ATS_CAP_IQD(w));
233   w = get_conf_word(d, where + PCI_ATS_CTRL);
234   printf("\t\tATSCtl:\tEnable%c, Smallest Translation Unit: %02x\n",
235         FLAG(w, PCI_ATS_CTRL_ENABLE), PCI_ATS_CTRL_STU(w));
236 }
237
238 static void
239 cap_pri(struct device *d, int where)
240 {
241   u16 w;
242   u32 l;
243
244   printf("Page Request Interface (PRI)\n");
245   if (verbose < 2)
246     return;
247
248   if (!config_fetch(d, where + PCI_PRI_CTRL, 0xc))
249     return;
250
251   w = get_conf_word(d, where + PCI_PRI_CTRL);
252   printf("\t\tPRICtl: Enable%c Reset%c\n",
253         FLAG(w, PCI_PRI_CTRL_ENABLE), FLAG(w, PCI_PRI_CTRL_RESET));
254   w = get_conf_word(d, where + PCI_PRI_STATUS);
255   printf("\t\tPRISta: RF%c UPRGI%c Stopped%c\n",
256         FLAG(w, PCI_PRI_STATUS_RF), FLAG(w, PCI_PRI_STATUS_UPRGI),
257         FLAG(w, PCI_PRI_STATUS_STOPPED));
258   l = get_conf_long(d, where + PCI_PRI_MAX_REQ);
259   printf("\t\tPage Request Capacity: %08x, ", l);
260   l = get_conf_long(d, where + PCI_PRI_ALLOC_REQ);
261   printf("Page Request Allocation: %08x\n", l);
262 }
263
264 static void
265 cap_pasid(struct device *d, int where)
266 {
267   u16 w;
268
269   printf("Process Address Space ID (PASID)\n");
270   if (verbose < 2)
271     return;
272
273   if (!config_fetch(d, where + PCI_PASID_CAP, 4))
274     return;
275
276   w = get_conf_word(d, where + PCI_PASID_CAP);
277   printf("\t\tPASIDCap: Exec%c Priv%c, Max PASID Width: %02x\n",
278         FLAG(w, PCI_PASID_CAP_EXEC), FLAG(w, PCI_PASID_CAP_PRIV),
279         PCI_PASID_CAP_WIDTH(w));
280   w = get_conf_word(d, where + PCI_PASID_CTRL);
281   printf("\t\tPASIDCtl: Enable%c Exec%c Priv%c\n",
282         FLAG(w, PCI_PASID_CTRL_ENABLE), FLAG(w, PCI_PASID_CTRL_EXEC),
283         FLAG(w, PCI_PASID_CTRL_PRIV));
284 }
285
286 static void
287 cap_sriov(struct device *d, int where)
288 {
289   u16 b;
290   u16 w;
291   u32 l;
292   int i;
293
294   printf("Single Root I/O Virtualization (SR-IOV)\n");
295   if (verbose < 2)
296     return;
297
298   if (!config_fetch(d, where + PCI_IOV_CAP, 0x3c))
299     return;
300
301   l = get_conf_long(d, where + PCI_IOV_CAP);
302   printf("\t\tIOVCap:\tMigration%c, Interrupt Message Number: %03x\n",
303         FLAG(l, PCI_IOV_CAP_VFM), PCI_IOV_CAP_IMN(l));
304   w = get_conf_word(d, where + PCI_IOV_CTRL);
305   printf("\t\tIOVCtl:\tEnable%c Migration%c Interrupt%c MSE%c ARIHierarchy%c\n",
306         FLAG(w, PCI_IOV_CTRL_VFE), FLAG(w, PCI_IOV_CTRL_VFME),
307         FLAG(w, PCI_IOV_CTRL_VFMIE), FLAG(w, PCI_IOV_CTRL_MSE),
308         FLAG(w, PCI_IOV_CTRL_ARI));
309   w = get_conf_word(d, where + PCI_IOV_STATUS);
310   printf("\t\tIOVSta:\tMigration%c\n", FLAG(w, PCI_IOV_STATUS_MS));
311   w = get_conf_word(d, where + PCI_IOV_INITIALVF);
312   printf("\t\tInitial VFs: %d, ", w);
313   w = get_conf_word(d, where + PCI_IOV_TOTALVF);
314   printf("Total VFs: %d, ", w);
315   w = get_conf_word(d, where + PCI_IOV_NUMVF);
316   printf("Number of VFs: %d, ", w);
317   b = get_conf_byte(d, where + PCI_IOV_FDL);
318   printf("Function Dependency Link: %02x\n", b);
319   w = get_conf_word(d, where + PCI_IOV_OFFSET);
320   printf("\t\tVF offset: %d, ", w);
321   w = get_conf_word(d, where + PCI_IOV_STRIDE);
322   printf("stride: %d, ", w);
323   w = get_conf_word(d, where + PCI_IOV_DID);
324   printf("Device ID: %04x\n", w);
325   l = get_conf_long(d, where + PCI_IOV_SUPPS);
326   printf("\t\tSupported Page Size: %08x, ", l);
327   l = get_conf_long(d, where + PCI_IOV_SYSPS);
328   printf("System Page Size: %08x\n", l);
329
330   for (i=0; i < PCI_IOV_NUM_BAR; i++)
331     {
332       u32 addr;
333       int type;
334       u32 h;
335       l = get_conf_long(d, where + PCI_IOV_BAR_BASE + 4*i);
336       if (l == 0xffffffff)
337         l = 0;
338       if (!l)
339         continue;
340       printf("\t\tRegion %d: Memory at ", i);
341       addr = l & PCI_ADDR_MEM_MASK;
342       type = l & PCI_BASE_ADDRESS_MEM_TYPE_MASK;
343       if (type == PCI_BASE_ADDRESS_MEM_TYPE_64)
344         {
345           i++;
346           h = get_conf_long(d, where + PCI_IOV_BAR_BASE + (i*4));
347           printf("%08x", h);
348         }
349       printf("%08x (%s-bit, %sprefetchable)\n",
350         addr,
351         (type == PCI_BASE_ADDRESS_MEM_TYPE_32) ? "32" : "64",
352         (l & PCI_BASE_ADDRESS_MEM_PREFETCH) ? "" : "non-");
353     }
354
355   l = get_conf_long(d, where + PCI_IOV_MSAO);
356   printf("\t\tVF Migration: offset: %08x, BIR: %x\n", PCI_IOV_MSA_OFFSET(l),
357         PCI_IOV_MSA_BIR(l));
358 }
359
360 static void
361 cap_vc(struct device *d, int where)
362 {
363   u32 cr1, cr2;
364   u16 ctrl, status;
365   int evc_cnt;
366   int arb_table_pos;
367   int i, j;
368   static const char ref_clocks[][6] = { "100ns" };
369   static const char arb_selects[8][7] = { "Fixed", "WRR32", "WRR64", "WRR128", "??4", "??5", "??6", "??7" };
370   static const char vc_arb_selects[8][8] = { "Fixed", "WRR32", "WRR64", "WRR128", "TWRR128", "WRR256", "??6", "??7" };
371   char buf[8];
372
373   printf("Virtual Channel\n");
374   if (verbose < 2)
375     return;
376
377   if (!config_fetch(d, where + 4, 0x1c - 4))
378     return;
379
380   cr1 = get_conf_long(d, where + PCI_VC_PORT_REG1);
381   cr2 = get_conf_long(d, where + PCI_VC_PORT_REG2);
382   ctrl = get_conf_word(d, where + PCI_VC_PORT_CTRL);
383   status = get_conf_word(d, where + PCI_VC_PORT_STATUS);
384
385   evc_cnt = BITS(cr1, 0, 3);
386   printf("\t\tCaps:\tLPEVC=%d RefClk=%s PATEntryBits=%d\n",
387     BITS(cr1, 4, 3),
388     TABLE(ref_clocks, BITS(cr1, 8, 2), buf),
389     1 << BITS(cr1, 10, 2));
390
391   printf("\t\tArb:");
392   for (i=0; i<8; i++)
393     if (arb_selects[i][0] != '?' || cr2 & (1 << i))
394       printf("%c%s%c", (i ? ' ' : '\t'), arb_selects[i], FLAG(cr2, 1 << i));
395   arb_table_pos = BITS(cr2, 24, 8);
396
397   printf("\n\t\tCtrl:\tArbSelect=%s\n", TABLE(arb_selects, BITS(ctrl, 1, 3), buf));
398   printf("\t\tStatus:\tInProgress%c\n", FLAG(status, 1));
399
400   if (arb_table_pos)
401     {
402       arb_table_pos = where + 16*arb_table_pos;
403       printf("\t\tPort Arbitration Table [%x] <?>\n", arb_table_pos);
404     }
405
406   for (i=0; i<=evc_cnt; i++)
407     {
408       int pos = where + PCI_VC_RES_CAP + 12*i;
409       u32 rcap, rctrl;
410       u16 rstatus;
411       int pat_pos;
412
413       printf("\t\tVC%d:\t", i);
414       if (!config_fetch(d, pos, 12))
415         {
416           printf("<unreadable>\n");
417           continue;
418         }
419       rcap = get_conf_long(d, pos);
420       rctrl = get_conf_long(d, pos+4);
421       rstatus = get_conf_word(d, pos+10);
422
423       pat_pos = BITS(rcap, 24, 8);
424       printf("Caps:\tPATOffset=%02x MaxTimeSlots=%d RejSnoopTrans%c\n",
425         pat_pos,
426         BITS(rcap, 16, 6) + 1,
427         FLAG(rcap, 1 << 15));
428
429       printf("\t\t\tArb:");
430       for (j=0; j<8; j++)
431         if (vc_arb_selects[j][0] != '?' || rcap & (1 << j))
432           printf("%c%s%c", (j ? ' ' : '\t'), vc_arb_selects[j], FLAG(rcap, 1 << j));
433
434       printf("\n\t\t\tCtrl:\tEnable%c ID=%d ArbSelect=%s TC/VC=%02x\n",
435         FLAG(rctrl, 1 << 31),
436         BITS(rctrl, 24, 3),
437         TABLE(vc_arb_selects, BITS(rctrl, 17, 3), buf),
438         BITS(rctrl, 0, 8));
439
440       printf("\t\t\tStatus:\tNegoPending%c InProgress%c\n",
441         FLAG(rstatus, 2),
442         FLAG(rstatus, 1));
443
444       if (pat_pos)
445         printf("\t\t\tPort Arbitration Table <?>\n");
446     }
447 }
448
449 static void
450 cap_rclink(struct device *d, int where)
451 {
452   u32 esd;
453   int num_links;
454   int i;
455   static const char elt_types[][9] = { "Config", "Egress", "Internal" };
456   char buf[8];
457
458   printf("Root Complex Link\n");
459   if (verbose < 2)
460     return;
461
462   if (!config_fetch(d, where + 4, PCI_RCLINK_LINK1 - 4))
463     return;
464
465   esd = get_conf_long(d, where + PCI_RCLINK_ESD);
466   num_links = BITS(esd, 8, 8);
467   printf("\t\tDesc:\tPortNumber=%02x ComponentID=%02x EltType=%s\n",
468     BITS(esd, 24, 8),
469     BITS(esd, 16, 8),
470     TABLE(elt_types, BITS(esd, 0, 8), buf));
471
472   for (i=0; i<num_links; i++)
473     {
474       int pos = where + PCI_RCLINK_LINK1 + i*PCI_RCLINK_LINK_SIZE;
475       u32 desc;
476       u32 addr_lo, addr_hi;
477
478       printf("\t\tLink%d:\t", i);
479       if (!config_fetch(d, pos, PCI_RCLINK_LINK_SIZE))
480         {
481           printf("<unreadable>\n");
482           return;
483         }
484       desc = get_conf_long(d, pos + PCI_RCLINK_LINK_DESC);
485       addr_lo = get_conf_long(d, pos + PCI_RCLINK_LINK_ADDR);
486       addr_hi = get_conf_long(d, pos + PCI_RCLINK_LINK_ADDR + 4);
487
488       printf("Desc:\tTargetPort=%02x TargetComponent=%02x AssocRCRB%c LinkType=%s LinkValid%c\n",
489         BITS(desc, 24, 8),
490         BITS(desc, 16, 8),
491         FLAG(desc, 4),
492         ((desc & 2) ? "Config" : "MemMapped"),
493         FLAG(desc, 1));
494
495       if (desc & 2)
496         {
497           int n = addr_lo & 7;
498           if (!n)
499             n = 8;
500           printf("\t\t\tAddr:\t%02x:%02x.%d  CfgSpace=%08x%08x\n",
501             BITS(addr_lo, 20, n),
502             BITS(addr_lo, 15, 5),
503             BITS(addr_lo, 12, 3),
504             addr_hi, addr_lo);
505         }
506       else
507         printf("\t\t\tAddr:\t%08x%08x\n", addr_hi, addr_lo);
508     }
509 }
510
511 static void
512 cap_evendor(struct device *d, int where)
513 {
514   u32 hdr;
515
516   printf("Vendor Specific Information: ");
517   if (!config_fetch(d, where + PCI_EVNDR_HEADER, 4))
518     {
519       printf("<unreadable>\n");
520       return;
521     }
522
523   hdr = get_conf_long(d, where + PCI_EVNDR_HEADER);
524   printf("ID=%04x Rev=%d Len=%03x <?>\n",
525     BITS(hdr, 0, 16),
526     BITS(hdr, 16, 4),
527     BITS(hdr, 20, 12));
528 }
529
530 static void
531 cap_l1pm(struct device *d, int where)
532 {
533   u32 l1_cap;
534   int power_on_scale;
535
536   printf("L1 PM Substates\n");
537
538   if (verbose < 2)
539     return;
540
541   if (!config_fetch(d, where + 4, 4))
542     {
543       printf("\t\t<unreadable>\n");
544       return;
545     }
546
547   l1_cap = get_conf_long(d, where + 4);
548   printf("\t\tL1SubCap: ");
549   printf("PCI-PM_L1.2%c PCI-PM_L1.1%c ASPM_L1.2%c ASPM_L1.1%c L1_PM_Substates%c\n",
550     FLAG(l1_cap, 1),
551     FLAG(l1_cap, 2),
552     FLAG(l1_cap, 4),
553     FLAG(l1_cap, 8),
554     FLAG(l1_cap, 16));
555
556   if (BITS(l1_cap, 0, 1) || BITS(l1_cap, 2, 1))
557     {
558       printf("\t\t\t  PortCommonModeRestoreTime=%dus ",
559         BITS(l1_cap, 8,8));
560
561       power_on_scale = BITS(l1_cap, 16, 2);
562
563       printf("PortTPowerOnTime=");
564       switch (power_on_scale)
565         {
566           case 0:
567             printf("%dus\n", BITS(l1_cap, 19, 5) * 2);
568             break;
569           case 1:
570             printf("%dus\n", BITS(l1_cap, 19, 5) * 10);
571             break;
572           case 2:
573             printf("%dus\n", BITS(l1_cap, 19, 5) * 100);
574             break;
575           default:
576             printf("<error>\n");
577             break;
578         }
579     }
580 }
581
582 static void
583 cap_ptm(struct device *d, int where)
584 {
585   u32 buff;
586   u16 clock;
587
588   printf("Precision Time Measurement\n");
589
590   if (verbose < 2)
591     return;
592
593   if (!config_fetch(d, where + 4, 8))
594     {
595       printf("\t\t<unreadable>\n");
596       return;
597     }
598
599   buff = get_conf_long(d, where + 4);
600   printf("\t\tPTMCap: ");
601   printf("Requester:%c Responder:%c Root:%c\n",
602     FLAG(buff, 0x1),
603     FLAG(buff, 0x2),
604     FLAG(buff, 0x4));
605
606   clock = BITS(buff, 8, 8);
607   printf("\t\tPTMClockGranularity: ");
608   switch (clock)
609     {
610       case 0x00:
611         printf("Unimplemented\n");
612         break;
613       case 0xff:
614         printf("Greater than 254ns\n");
615         break;
616       default:
617         printf("%huns\n", clock);
618     }
619
620   buff = get_conf_long(d, where + 8);
621   printf("\t\tPTMControl: ");
622   printf("Enabled:%c RootSelected:%c\n",
623     FLAG(buff, 0x1),
624     FLAG(buff, 0x2));
625
626   clock = BITS(buff, 8, 8);
627   printf("\t\tPTMEffectiveGranularity: ");
628   switch (clock)
629     {
630       case 0x00:
631         printf("Unknown\n");
632         break;
633       case 0xff:
634         printf("Greater than 254ns\n");
635         break;
636       default:
637         printf("%huns\n", clock);
638     }
639 }
640
641 void
642 show_ext_caps(struct device *d)
643 {
644   int where = 0x100;
645   char been_there[0x1000];
646   memset(been_there, 0, 0x1000);
647   do
648     {
649       u32 header;
650       int id, version;
651
652       if (!config_fetch(d, where, 4))
653         break;
654       header = get_conf_long(d, where);
655       if (!header)
656         break;
657       id = header & 0xffff;
658       version = (header >> 16) & 0xf;
659       printf("\tCapabilities: [%03x", where);
660       if (verbose > 1)
661         printf(" v%d", version);
662       printf("] ");
663       if (been_there[where]++)
664         {
665           printf("<chain looped>\n");
666           break;
667         }
668       switch (id)
669         {
670           case PCI_EXT_CAP_ID_AER:
671             cap_aer(d, where);
672             break;
673           case PCI_EXT_CAP_ID_DPC:
674             cap_dpc(d, where);
675             break;
676           case PCI_EXT_CAP_ID_VC:
677           case PCI_EXT_CAP_ID_VC2:
678             cap_vc(d, where);
679             break;
680           case PCI_EXT_CAP_ID_DSN:
681             cap_dsn(d, where);
682             break;
683           case PCI_EXT_CAP_ID_PB:
684             printf("Power Budgeting <?>\n");
685             break;
686           case PCI_EXT_CAP_ID_RCLINK:
687             cap_rclink(d, where);
688             break;
689           case PCI_EXT_CAP_ID_RCILINK:
690             printf("Root Complex Internal Link <?>\n");
691             break;
692           case PCI_EXT_CAP_ID_RCECOLL:
693             printf("Root Complex Event Collector <?>\n");
694             break;
695           case PCI_EXT_CAP_ID_MFVC:
696             printf("Multi-Function Virtual Channel <?>\n");
697             break;
698           case PCI_EXT_CAP_ID_RBCB:
699             printf("Root Bridge Control Block <?>\n");
700             break;
701           case PCI_EXT_CAP_ID_VNDR:
702             cap_evendor(d, where);
703             break;
704           case PCI_EXT_CAP_ID_ACS:
705             cap_acs(d, where);
706             break;
707           case PCI_EXT_CAP_ID_ARI:
708             cap_ari(d, where);
709             break;
710           case PCI_EXT_CAP_ID_ATS:
711             cap_ats(d, where);
712             break;
713           case PCI_EXT_CAP_ID_SRIOV:
714             cap_sriov(d, where);
715             break;
716           case PCI_EXT_CAP_ID_PRI:
717             cap_pri(d, where);
718             break;
719           case PCI_EXT_CAP_ID_TPH:
720             cap_tph(d, where);
721             break;
722           case PCI_EXT_CAP_ID_LTR:
723             cap_ltr(d, where);
724             break;
725           case PCI_EXT_CAP_ID_PASID:
726             cap_pasid(d, where);
727             break;
728           case PCI_EXT_CAP_ID_L1PM:
729             cap_l1pm(d, where);
730             break;
731           case PCI_EXT_CAP_ID_PTM:
732             cap_ptm(d, where);
733             break;
734           default:
735             printf("#%02x\n", id);
736             break;
737         }
738       where = (header >> 20) & ~3;
739     } while (where);
740 }