1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
|
/** @file
Work with PCI capabilities in PCI config space.
Provides functions to parse capabilities lists, and to locate, describe, read
and write capabilities. PCI config space access is abstracted away.
Copyright (C) 2018, Red Hat, Inc.
SPDX-License-Identifier: BSD-2-Clause-Patent
**/
#include <IndustryStandard/PciExpress21.h>
#include <Library/BaseMemoryLib.h>
#include <Library/DebugLib.h>
#include <Library/MemoryAllocationLib.h>
#include "BasePciCapLib.h"
/**
Compare a standalone PCI_CAP_KEY against a PCI_CAP containing an embedded
PCI_CAP_KEY.
@param[in] PciCapKey Pointer to the bare PCI_CAP_KEY.
@param[in] PciCap Pointer to the PCI_CAP with the embedded PCI_CAP_KEY.
@retval <0 If PciCapKey compares less than PciCap->Key.
@retval 0 If PciCapKey compares equal to PciCap->Key.
@retval >0 If PciCapKey compares greater than PciCap->Key.
**/
STATIC
INTN
EFIAPI
ComparePciCapKey (
IN CONST VOID *PciCapKey,
IN CONST VOID *PciCap
)
{
CONST PCI_CAP_KEY *Key1;
CONST PCI_CAP_KEY *Key2;
Key1 = PciCapKey;
Key2 = &((CONST PCI_CAP *)PciCap)->Key;
if (Key1->Domain < Key2->Domain) {
return -1;
}
if (Key1->Domain > Key2->Domain) {
return 1;
}
if (Key1->CapId < Key2->CapId) {
return -1;
}
if (Key1->CapId > Key2->CapId) {
return 1;
}
if (Key1->Instance < Key2->Instance) {
return -1;
}
if (Key1->Instance > Key2->Instance) {
return 1;
}
return 0;
}
/**
Compare two PCI_CAP objects based on PCI_CAP.Key.
@param[in] PciCap1 Pointer to the first PCI_CAP.
@param[in] PciCap2 Pointer to the second PCI_CAP.
@retval <0 If PciCap1 compares less than PciCap2.
@retval 0 If PciCap1 compares equal to PciCap2.
@retval >0 If PciCap1 compares greater than PciCap2.
**/
STATIC
INTN
EFIAPI
ComparePciCap (
IN CONST VOID *PciCap1,
IN CONST VOID *PciCap2
)
{
CONST PCI_CAP_KEY *PciCap1Key;
PciCap1Key = &((CONST PCI_CAP *)PciCap1)->Key;
return ComparePciCapKey (PciCap1Key, PciCap2);
}
/**
Compare the standalone UINT16 config space offset of a capability header
against a PCI_CAP containing an embedded Offset.
@param[in] CapHdrOffset Pointer to the bare UINT16 config space offset.
@param[in] PciCap Pointer to the PCI_CAP with the embedded Offset.
@retval <0 If CapHdrOffset compares less than PciCap->Offset.
@retval 0 If CapHdrOffset compares equal to PciCap->Offset.
@retval >0 If CapHdrOffset compares greater than PciCap->Offset.
**/
STATIC
INTN
EFIAPI
ComparePciCapOffsetKey (
IN CONST VOID *CapHdrOffset,
IN CONST VOID *PciCap
)
{
UINT16 Offset1;
UINT16 Offset2;
Offset1 = *(CONST UINT16 *)CapHdrOffset;
Offset2 = ((CONST PCI_CAP *)PciCap)->Offset;
//
// Note: both Offset1 and Offset2 are promoted to INT32 below, and the
// subtraction takes place between INT32 values.
//
return Offset1 - Offset2;
}
/**
Compare two PCI_CAP objects based on PCI_CAP.Offset.
@param[in] PciCap1 Pointer to the first PCI_CAP.
@param[in] PciCap2 Pointer to the second PCI_CAP.
@retval <0 If PciCap1 compares less than PciCap2.
@retval 0 If PciCap1 compares equal to PciCap2.
@retval >0 If PciCap1 compares greater than PciCap2.
**/
STATIC
INTN
EFIAPI
ComparePciCapOffset (
IN CONST VOID *PciCap1,
IN CONST VOID *PciCap2
)
{
UINT16 Offset1;
UINT16 Offset2;
Offset1 = ((CONST PCI_CAP *)PciCap1)->Offset;
Offset2 = ((CONST PCI_CAP *)PciCap2)->Offset;
//
// Note: both Offset1 and Offset2 are promoted to INT32 below, and the
// subtraction takes place between INT32 values.
//
return Offset1 - Offset2;
}
/**
Insert a new instance of the PCI capability given by (Domain, CapId) in
CapList.
@param[in,out] CapList The PCI_CAP_LIST into which the new PCI_CAP
should be inserted. CapList will own the new
PCI_CAP structure.
@param[in,out] CapHdrOffsets Link the new PCI_CAP structure into the
(non-owning) CapHdrOffsets collection as well.
CapHdrOffsets orders the PCI_CAP structures
based on the PCI_CAP.Offset member, and enables
the calculation of PCI_CAP.MaxSizeHint.
@param[in] Domain Whether the capability is normal or extended.
@param[in] CapId Capability ID (specific to Domain).
@param[in] Offset Config space offset at which the standard
header of the capability starts. The caller is
responsible for ensuring that Offset be DWORD
aligned. The caller is also responsible for
ensuring that Offset be within the config space
identified by Domain.
@param[in] Version The version number of the capability. The
caller is responsible for passing 0 as Version
if Domain is PciCapNormal.
@retval RETURN_SUCCESS Insertion successful.
@retval RETURN_OUT_OF_RESOURCES Memory allocation failed.
@retval RETURN_DEVICE_ERROR A PCI_CAP with Offset is already linked by
CapHdrOffsets. This indicates a loop in the
capabilities list being parsed.
**/
STATIC
RETURN_STATUS
InsertPciCap (
IN OUT PCI_CAP_LIST *CapList,
IN OUT ORDERED_COLLECTION *CapHdrOffsets,
IN PCI_CAP_DOMAIN Domain,
IN UINT16 CapId,
IN UINT16 Offset,
IN UINT8 Version
)
{
PCI_CAP *PciCap;
RETURN_STATUS Status;
ORDERED_COLLECTION_ENTRY *PciCapEntry;
PCI_CAP *InstanceZero;
ASSERT ((Offset & 0x3) == 0);
ASSERT (Offset < (Domain == PciCapNormal ?
PCI_MAX_CONFIG_OFFSET : PCI_EXP_MAX_CONFIG_OFFSET));
ASSERT (Domain == PciCapExtended || Version == 0);
//
// Set InstanceZero to suppress incorrect compiler/analyzer warnings.
//
InstanceZero = NULL;
//
// Allocate PciCap, and populate it assuming it is the first occurrence of
// (Domain, CapId). Note that PciCap->MaxSizeHint is not assigned the final
// value just yet.
//
PciCap = AllocatePool (sizeof *PciCap);
if (PciCap == NULL) {
return RETURN_OUT_OF_RESOURCES;
}
PciCap->Key.Domain = Domain;
PciCap->Key.CapId = CapId;
PciCap->Key.Instance = 0;
PciCap->NumInstancesUnion.NumInstances = 1;
PciCap->Offset = Offset;
PciCap->MaxSizeHint = 0;
PciCap->Version = Version;
//
// Add PciCap to CapList.
//
Status = OrderedCollectionInsert (CapList->Capabilities, &PciCapEntry,
PciCap);
if (RETURN_ERROR (Status)) {
if (Status == RETURN_OUT_OF_RESOURCES) {
goto FreePciCap;
}
ASSERT (Status == RETURN_ALREADY_STARTED);
//
// PciCap is not the first instance of (Domain, CapId). Add it as a new
// instance, taking the current instance count from Instance#0. Note that
// we don't bump the instance count maintained in Instance#0 just yet, to
// keep rollback on errors simple.
//
InstanceZero = OrderedCollectionUserStruct (PciCapEntry);
PciCap->Key.Instance = InstanceZero->NumInstancesUnion.NumInstances;
PciCap->NumInstancesUnion.InstanceZero = InstanceZero;
ASSERT (PciCap->Key.Instance > 0);
Status = OrderedCollectionInsert (CapList->Capabilities, &PciCapEntry,
PciCap);
if (Status == RETURN_OUT_OF_RESOURCES) {
goto FreePciCap;
}
}
//
// At this point, PciCap has been inserted in CapList->Capabilities, either
// with Instance==0 or with Instance>0. PciCapEntry is the iterator that
// links PciCap.
//
ASSERT_RETURN_ERROR (Status);
//
// Link PciCap into CapHdrOffsets too, to order it globally based on config
// space offset. Note that partial overlaps between capability headers is not
// possible: Offset is DWORD aligned, normal capability headers are 16-bit
// wide, and extended capability headers are 32-bit wide. Therefore any two
// capability headers either are distinct or start at the same offset
// (implying a loop in the respective capabilities list).
//
Status = OrderedCollectionInsert (CapHdrOffsets, NULL, PciCap);
if (RETURN_ERROR (Status)) {
if (Status == RETURN_ALREADY_STARTED) {
//
// Loop found; map return status accordingly.
//
Status = RETURN_DEVICE_ERROR;
}
goto DeletePciCapFromCapList;
}
//
// Now we can bump the instance count maintained in Instance#0, if PciCap is
// not the first instance of (Domain, CapId).
//
if (PciCap->Key.Instance > 0) {
//
// Suppress invalid "nullptr dereference" compiler/analyzer warnings: the
// only way for "PciCap->Key.Instance" to be positive here is for it to
// have been assigned *from* dereferencing "InstanceZero" above.
//
ASSERT (InstanceZero != NULL);
InstanceZero->NumInstancesUnion.NumInstances++;
}
return RETURN_SUCCESS;
DeletePciCapFromCapList:
OrderedCollectionDelete (CapList->Capabilities, PciCapEntry, NULL);
FreePciCap:
FreePool (PciCap);
return Status;
}
/**
Calculate the MaxSizeHint member for a PCI_CAP object.
CalculatePciCapMaxSizeHint() may only be called once all capability instances
have been successfully processed by InsertPciCap().
@param[in,out] PciCap The PCI_CAP object for which to calculate the
MaxSizeHint member. The caller is responsible for
passing a PCI_CAP object that has been created by a
successful invocation of InsertPciCap().
@param[in] NextPciCap If NextPciCap is NULL, then the caller is responsible
for PciCap to represent the capability instance with
the highest header offset in all config space. If
NextPciCap is not NULL, then the caller is responsible
for (a) having created NextPciCap with a successful
invocation of InsertPciCap(), and (b) NextPciCap being
the direct successor of PciCap in config space offset
order, as ordered by ComparePciCapOffset().
**/
STATIC
VOID
CalculatePciCapMaxSizeHint (
IN OUT PCI_CAP *PciCap,
IN PCI_CAP *NextPciCap OPTIONAL
)
{
UINT16 ConfigSpaceSize;
ConfigSpaceSize = (PciCap->Key.Domain == PciCapNormal ?
PCI_MAX_CONFIG_OFFSET : PCI_EXP_MAX_CONFIG_OFFSET);
//
// The following is guaranteed by the interface contract on
// CalculatePciCapMaxSizeHint().
//
ASSERT (NextPciCap == NULL || PciCap->Offset < NextPciCap->Offset);
//
// The following is guaranteed by the interface contract on InsertPciCap().
//
ASSERT (PciCap->Offset < ConfigSpaceSize);
//
// Thus we can safely subtract PciCap->Offset from either of
// - ConfigSpaceSize
// - and NextPciCap->Offset (if NextPciCap is not NULL).
//
// PciCap extends from PciCap->Offset to NextPciCap->Offset (if any), except
// it cannot cross config space boundary.
//
if (NextPciCap == NULL || NextPciCap->Offset >= ConfigSpaceSize) {
PciCap->MaxSizeHint = ConfigSpaceSize - PciCap->Offset;
return;
}
PciCap->MaxSizeHint = NextPciCap->Offset - PciCap->Offset;
}
/**
Debug dump a PCI_CAP_LIST object at the DEBUG_VERBOSE level.
@param[in] CapList The PCI_CAP_LIST object to dump.
**/
STATIC
VOID
EFIAPI
DebugDumpPciCapList (
IN PCI_CAP_LIST *CapList
)
{
DEBUG_CODE_BEGIN ();
ORDERED_COLLECTION_ENTRY *PciCapEntry;
for (PciCapEntry = OrderedCollectionMin (CapList->Capabilities);
PciCapEntry != NULL;
PciCapEntry = OrderedCollectionNext (PciCapEntry)) {
PCI_CAP *PciCap;
RETURN_STATUS Status;
PCI_CAP_INFO Info;
PciCap = OrderedCollectionUserStruct (PciCapEntry);
Status = PciCapGetInfo (PciCap, &Info);
//
// PciCapGetInfo() cannot fail in this library instance.
//
ASSERT_RETURN_ERROR (Status);
DEBUG ((DEBUG_VERBOSE,
"%a:%a: %a 0x%04x %03u/%03u v0x%x @0x%03x+0x%03x\n", gEfiCallerBaseName,
__FUNCTION__, (Info.Domain == PciCapNormal ? "Norm" : "Extd"),
Info.CapId, Info.Instance, Info.NumInstances, Info.Version, Info.Offset,
Info.MaxSizeHint));
}
DEBUG_CODE_END ();
}
/**
Empty a collection of PCI_CAP structures, optionally releasing the referenced
PCI_CAP structures themselves. Release the collection at last.
@param[in,out] PciCapCollection The collection to empty and release.
@param[in] FreePciCap TRUE if the PCI_CAP structures linked by
PciCapCollection should be released. When
FALSE, the caller is responsible for
retaining at least one reference to each
PCI_CAP structure originally linked by
PciCapCollection.
**/
STATIC
VOID
EmptyAndUninitPciCapCollection (
IN OUT ORDERED_COLLECTION *PciCapCollection,
IN BOOLEAN FreePciCap
)
{
ORDERED_COLLECTION_ENTRY *PciCapEntry;
ORDERED_COLLECTION_ENTRY *NextEntry;
for (PciCapEntry = OrderedCollectionMin (PciCapCollection);
PciCapEntry != NULL;
PciCapEntry = NextEntry) {
PCI_CAP *PciCap;
NextEntry = OrderedCollectionNext (PciCapEntry);
OrderedCollectionDelete (PciCapCollection, PciCapEntry, (VOID **)&PciCap);
if (FreePciCap) {
FreePool (PciCap);
}
}
OrderedCollectionUninit (PciCapCollection);
}
/**
Parse the capabilities lists (both normal and extended, as applicable) of a
PCI device.
If the PCI device has no capabilities, that per se will not fail
PciCapListInit(); an empty capabilities list will be represented.
If the PCI device is found to be PCI Express, then an attempt will be made to
parse the extended capabilities list as well. If the first extended config
space access -- via PciDevice->ReadConfig() with SourceOffset=0x100 and
Size=4 -- fails, that per se will not fail PciCapListInit(); the device will
be assumed to have no extended capabilities.
@param[in] PciDevice Implementation-specific unique representation of the
PCI device in the PCI hierarchy.
@param[out] CapList Opaque data structure that holds an in-memory
representation of the parsed capabilities lists of
PciDevice.
@retval RETURN_SUCCESS The capabilities lists have been parsed from
config space.
@retval RETURN_OUT_OF_RESOURCES Memory allocation failed.
@retval RETURN_DEVICE_ERROR A loop or some other kind of invalid pointer
was detected in the capabilities lists of
PciDevice.
@return Error codes propagated from
PciDevice->ReadConfig().
**/
RETURN_STATUS
EFIAPI
PciCapListInit (
IN PCI_CAP_DEV *PciDevice,
OUT PCI_CAP_LIST **CapList
)
{
PCI_CAP_LIST *OutCapList;
RETURN_STATUS Status;
ORDERED_COLLECTION *CapHdrOffsets;
UINT16 PciStatusReg;
BOOLEAN DeviceIsExpress;
ORDERED_COLLECTION_ENTRY *OffsetEntry;
//
// Allocate the output structure.
//
OutCapList = AllocatePool (sizeof *OutCapList);
if (OutCapList == NULL) {
return RETURN_OUT_OF_RESOURCES;
}
//
// The OutCapList->Capabilities collection owns the PCI_CAP structures and
// orders them based on PCI_CAP.Key.
//
OutCapList->Capabilities = OrderedCollectionInit (ComparePciCap,
ComparePciCapKey);
if (OutCapList->Capabilities == NULL) {
Status = RETURN_OUT_OF_RESOURCES;
goto FreeOutCapList;
}
//
// The (temporary) CapHdrOffsets collection only references PCI_CAP
// structures, and orders them based on PCI_CAP.Offset.
//
CapHdrOffsets = OrderedCollectionInit (ComparePciCapOffset,
ComparePciCapOffsetKey);
if (CapHdrOffsets == NULL) {
Status = RETURN_OUT_OF_RESOURCES;
goto FreeCapabilities;
}
//
// Whether the device is PCI Express depends on the normal capability with
// identifier EFI_PCI_CAPABILITY_ID_PCIEXP.
//
DeviceIsExpress = FALSE;
//
// Check whether a normal capabilities list is present. If there's none,
// that's not an error; we'll just return OutCapList->Capabilities empty.
//
Status = PciDevice->ReadConfig (PciDevice, PCI_PRIMARY_STATUS_OFFSET,
&PciStatusReg, sizeof PciStatusReg);
if (RETURN_ERROR (Status)) {
goto FreeCapHdrOffsets;
}
if ((PciStatusReg & EFI_PCI_STATUS_CAPABILITY) != 0) {
UINT8 NormalCapHdrOffset;
//
// Fetch the start offset of the normal capabilities list.
//
Status = PciDevice->ReadConfig (PciDevice, PCI_CAPBILITY_POINTER_OFFSET,
&NormalCapHdrOffset, sizeof NormalCapHdrOffset);
if (RETURN_ERROR (Status)) {
goto FreeCapHdrOffsets;
}
//
// Traverse the normal capabilities list.
//
NormalCapHdrOffset &= 0xFC;
while (NormalCapHdrOffset > 0) {
EFI_PCI_CAPABILITY_HDR NormalCapHdr;
Status = PciDevice->ReadConfig (PciDevice, NormalCapHdrOffset,
&NormalCapHdr, sizeof NormalCapHdr);
if (RETURN_ERROR (Status)) {
goto FreeCapHdrOffsets;
}
Status = InsertPciCap (OutCapList, CapHdrOffsets, PciCapNormal,
NormalCapHdr.CapabilityID, NormalCapHdrOffset, 0);
if (RETURN_ERROR (Status)) {
goto FreeCapHdrOffsets;
}
if (NormalCapHdr.CapabilityID == EFI_PCI_CAPABILITY_ID_PCIEXP) {
DeviceIsExpress = TRUE;
}
NormalCapHdrOffset = NormalCapHdr.NextItemPtr & 0xFC;
}
}
//
// If the device has been found PCI Express, attempt to traverse the extended
// capabilities list. It starts right after the normal config space.
//
if (DeviceIsExpress) {
UINT16 ExtendedCapHdrOffset;
ExtendedCapHdrOffset = PCI_MAX_CONFIG_OFFSET;
while (ExtendedCapHdrOffset > 0) {
PCI_EXPRESS_EXTENDED_CAPABILITIES_HEADER ExtendedCapHdr;
Status = PciDevice->ReadConfig (PciDevice, ExtendedCapHdrOffset,
&ExtendedCapHdr, sizeof ExtendedCapHdr);
//
// If the first extended config space access fails, assume the device has
// no extended capabilities. If the first extended config space access
// succeeds but we read an "all bits zero" extended capability header,
// that means (by spec) the device has no extended capabilities.
//
if (ExtendedCapHdrOffset == PCI_MAX_CONFIG_OFFSET &&
(RETURN_ERROR (Status) ||
IsZeroBuffer (&ExtendedCapHdr, sizeof ExtendedCapHdr))) {
break;
}
if (RETURN_ERROR (Status)) {
goto FreeCapHdrOffsets;
}
Status = InsertPciCap (OutCapList, CapHdrOffsets, PciCapExtended,
(UINT16)ExtendedCapHdr.CapabilityId, ExtendedCapHdrOffset,
(UINT8)ExtendedCapHdr.CapabilityVersion);
if (RETURN_ERROR (Status)) {
goto FreeCapHdrOffsets;
}
ExtendedCapHdrOffset = ExtendedCapHdr.NextCapabilityOffset & 0xFFC;
if (ExtendedCapHdrOffset > 0 &&
ExtendedCapHdrOffset < PCI_MAX_CONFIG_OFFSET) {
//
// Invalid capability pointer.
//
Status = RETURN_DEVICE_ERROR;
goto FreeCapHdrOffsets;
}
}
}
//
// Both capabilities lists have been parsed; compute the PCI_CAP.MaxSizeHint
// members if at least one capability has been found. In parallel, evacuate
// the CapHdrOffsets collection.
//
// At first, set OffsetEntry to the iterator of the PCI_CAP object with the
// lowest Offset (if such exists).
//
OffsetEntry = OrderedCollectionMin (CapHdrOffsets);
if (OffsetEntry != NULL) {
ORDERED_COLLECTION_ENTRY *NextOffsetEntry;
PCI_CAP *PciCap;
//
// Initialize NextOffsetEntry to the iterator of the PCI_CAP object with
// the second lowest Offset (if such exists).
//
NextOffsetEntry = OrderedCollectionNext (OffsetEntry);
//
// Calculate MaxSizeHint for all PCI_CAP objects except the one with the
// highest Offset.
//
while (NextOffsetEntry != NULL) {
PCI_CAP *NextPciCap;
OrderedCollectionDelete (CapHdrOffsets, OffsetEntry, (VOID **)&PciCap);
NextPciCap = OrderedCollectionUserStruct (NextOffsetEntry);
CalculatePciCapMaxSizeHint (PciCap, NextPciCap);
OffsetEntry = NextOffsetEntry;
NextOffsetEntry = OrderedCollectionNext (OffsetEntry);
}
//
// Calculate MaxSizeHint for the PCI_CAP object with the highest Offset.
//
OrderedCollectionDelete (CapHdrOffsets, OffsetEntry, (VOID **)&PciCap);
CalculatePciCapMaxSizeHint (PciCap, NULL);
}
ASSERT (OrderedCollectionIsEmpty (CapHdrOffsets));
OrderedCollectionUninit (CapHdrOffsets);
DebugDumpPciCapList (OutCapList);
*CapList = OutCapList;
return RETURN_SUCCESS;
FreeCapHdrOffsets:
EmptyAndUninitPciCapCollection (CapHdrOffsets, FALSE);
FreeCapabilities:
EmptyAndUninitPciCapCollection (OutCapList->Capabilities, TRUE);
FreeOutCapList:
FreePool (OutCapList);
ASSERT (RETURN_ERROR (Status));
DEBUG ((DEBUG_ERROR, "%a:%a: %r\n", gEfiCallerBaseName, __FUNCTION__,
Status));
return Status;
}
/**
Free the resources used by CapList.
@param[in] CapList The PCI_CAP_LIST object to free, originally produced by
PciCapListInit().
**/
VOID
EFIAPI
PciCapListUninit (
IN PCI_CAP_LIST *CapList
)
{
EmptyAndUninitPciCapCollection (CapList->Capabilities, TRUE);
FreePool (CapList);
}
/**
Locate a capability instance in the parsed capabilities lists.
@param[in] CapList The PCI_CAP_LIST object produced by PciCapListInit().
@param[in] Domain Distinguishes whether CapId is 8-bit wide and
interpreted in normal config space, or 16-bit wide and
interpreted in extended config space. Capability ID
definitions are relative to domain.
@param[in] CapId Capability identifier to look up.
@param[in] Instance Domain and CapId may identify a multi-instance
capability. When Instance is zero, the first instance of
the capability is located (in list traversal order --
which may not mean increasing config space offset
order). Higher Instance values locate subsequent
instances of the same capability (in list traversal
order).
@param[out] Cap The capability instance that matches the search
criteria. Cap is owned by CapList and becomes invalid
when CapList is freed with PciCapListUninit().
PciCapListFindCap() may be called with Cap set to NULL,
in order to test the existence of a specific capability
instance.
@retval RETURN_SUCCESS The capability instance identified by (Domain,
CapId, Instance) has been found.
@retval RETURN_NOT_FOUND The requested (Domain, CapId, Instance) capability
instance does not exist.
**/
RETURN_STATUS
EFIAPI
PciCapListFindCap (
IN PCI_CAP_LIST *CapList,
IN PCI_CAP_DOMAIN Domain,
IN UINT16 CapId,
IN UINT16 Instance,
OUT PCI_CAP **Cap OPTIONAL
)
{
PCI_CAP_KEY Key;
ORDERED_COLLECTION_ENTRY *PciCapEntry;
Key.Domain = Domain;
Key.CapId = CapId;
Key.Instance = Instance;
PciCapEntry = OrderedCollectionFind (CapList->Capabilities, &Key);
if (PciCapEntry == NULL) {
return RETURN_NOT_FOUND;
}
if (Cap != NULL) {
*Cap = OrderedCollectionUserStruct (PciCapEntry);
}
return RETURN_SUCCESS;
}
/**
Locate the first instance of the capability given by (Domain, CapId) such
that the instance's Version is greater than or equal to MinVersion.
This is a convenience function that may save client code calls to
PciCapListFindCap() and PciCapGetInfo().
@param[in] CapList The PCI_CAP_LIST object produced by PciCapListInit().
@param[in] Domain Distinguishes whether CapId is 8-bit wide and
interpreted in normal config space, or 16-bit wide and
interpreted in extended config space. Capability ID
definitions are relative to domain.
@param[in] CapId Capability identifier to look up.
@param[in] MinVersion The minimum version that the capability instance is
required to have. Note that all capability instances
in Domain=PciCapNormal have Version=0.
@param[out] Cap The first capability instance that matches the search
criteria. Cap is owned by CapList and becomes invalid
when CapList is freed with PciCapListUninit().
PciCapListFindCapVersion() may be called with Cap set
to NULL, in order just to test whether the search
criteria are satisfiable.
@retval RETURN_SUCCESS The first capability instance matching (Domain,
CapId, MinVersion) has been located.
@retval RETURN_NOT_FOUND No capability instance matches (Domain, CapId,
MinVersion).
**/
RETURN_STATUS
EFIAPI
PciCapListFindCapVersion (
IN PCI_CAP_LIST *CapList,
IN PCI_CAP_DOMAIN Domain,
IN UINT16 CapId,
IN UINT8 MinVersion,
OUT PCI_CAP **Cap OPTIONAL
)
{
PCI_CAP_KEY Key;
ORDERED_COLLECTION_ENTRY *PciCapEntry;
//
// Start the version checks at Instance#0 of (Domain, CapId).
//
Key.Domain = Domain;
Key.CapId = CapId;
Key.Instance = 0;
for (PciCapEntry = OrderedCollectionFind (CapList->Capabilities, &Key);
PciCapEntry != NULL;
PciCapEntry = OrderedCollectionNext (PciCapEntry)) {
PCI_CAP *PciCap;
PciCap = OrderedCollectionUserStruct (PciCapEntry);
//
// PCI_CAP.Key ordering keeps instances of the same (Domain, CapId)
// adjacent to each other, so stop searching if either Domain or CapId
// changes.
//
if (PciCap->Key.Domain != Domain || PciCap->Key.CapId != CapId) {
break;
}
if (PciCap->Version >= MinVersion) {
//
// Match found.
//
if (Cap != NULL) {
*Cap = PciCap;
}
return RETURN_SUCCESS;
}
}
return RETURN_NOT_FOUND;
}
/**
Get information about a PCI Capability instance.
@param[in] Cap The capability instance to get info about, located with
PciCapListFindCap*().
@param[out] Info A PCI_CAP_INFO structure that describes the properties of
Cap.
@retval RETURN_SUCCESS Fields of Info have been set.
@return Unspecified error codes, if filling in Info failed
for some reason.
**/
RETURN_STATUS
EFIAPI
PciCapGetInfo (
IN PCI_CAP *Cap,
OUT PCI_CAP_INFO *Info
)
{
PCI_CAP *InstanceZero;
ASSERT (Info != NULL);
InstanceZero = (Cap->Key.Instance == 0 ? Cap :
Cap->NumInstancesUnion.InstanceZero);
Info->Domain = Cap->Key.Domain;
Info->CapId = Cap->Key.CapId;
Info->NumInstances = InstanceZero->NumInstancesUnion.NumInstances;
Info->Instance = Cap->Key.Instance;
Info->Offset = Cap->Offset;
Info->MaxSizeHint = Cap->MaxSizeHint;
Info->Version = Cap->Version;
return RETURN_SUCCESS;
}
/**
Read a slice of a capability instance.
The function performs as few config space accesses as possible (without
attempting 64-bit wide accesses). PciCapRead() performs bounds checking on
SourceOffsetInCap and Size, and only invokes PciDevice->ReadConfig() if the
requested transfer falls within Cap.
@param[in] PciDevice Implementation-specific unique representation
of the PCI device in the PCI hierarchy.
@param[in] Cap The capability instance to read, located with
PciCapListFindCap*().
@param[in] SourceOffsetInCap Source offset relative to the capability
header to start reading from. A zero value
refers to the first byte of the capability
header.
@param[out] DestinationBuffer Buffer to store the read data to.
@param[in] Size The number of bytes to transfer.
@retval RETURN_SUCCESS Size bytes have been transferred from Cap to
DestinationBuffer.
@retval RETURN_BAD_BUFFER_SIZE Reading Size bytes starting from
SourceOffsetInCap would not (entirely) be
contained within Cap, as suggested by
PCI_CAP_INFO.MaxSizeHint. No bytes have been
read.
@return Error codes propagated from
PciDevice->ReadConfig(). Fewer than Size
bytes may have been read.
**/
RETURN_STATUS
EFIAPI
PciCapRead (
IN PCI_CAP_DEV *PciDevice,
IN PCI_CAP *Cap,
IN UINT16 SourceOffsetInCap,
OUT VOID *DestinationBuffer,
IN UINT16 Size
)
{
//
// Note: all UINT16 values are promoted to INT32 below, and addition and
// comparison take place between INT32 values.
//
if (SourceOffsetInCap + Size > Cap->MaxSizeHint) {
return RETURN_BAD_BUFFER_SIZE;
}
return PciDevice->ReadConfig (PciDevice, Cap->Offset + SourceOffsetInCap,
DestinationBuffer, Size);
}
/**
Write a slice of a capability instance.
The function performs as few config space accesses as possible (without
attempting 64-bit wide accesses). PciCapWrite() performs bounds checking on
DestinationOffsetInCap and Size, and only invokes PciDevice->WriteConfig() if
the requested transfer falls within Cap.
@param[in] PciDevice Implementation-specific unique
representation of the PCI device in the
PCI hierarchy.
@param[in] Cap The capability instance to write, located
with PciCapListFindCap*().
@param[in] DestinationOffsetInCap Destination offset relative to the
capability header to start writing at. A
zero value refers to the first byte of the
capability header.
@param[in] SourceBuffer Buffer to read the data to be stored from.
@param[in] Size The number of bytes to transfer.
@retval RETURN_SUCCESS Size bytes have been transferred from
SourceBuffer to Cap.
@retval RETURN_BAD_BUFFER_SIZE Writing Size bytes starting at
DestinationOffsetInCap would not (entirely)
be contained within Cap, as suggested by
PCI_CAP_INFO.MaxSizeHint. No bytes have been
written.
@return Error codes propagated from
PciDevice->WriteConfig(). Fewer than Size
bytes may have been written.
**/
RETURN_STATUS
EFIAPI
PciCapWrite (
IN PCI_CAP_DEV *PciDevice,
IN PCI_CAP *Cap,
IN UINT16 DestinationOffsetInCap,
IN VOID *SourceBuffer,
IN UINT16 Size
)
{
//
// Note: all UINT16 values are promoted to INT32 below, and addition and
// comparison take place between INT32 values.
//
if (DestinationOffsetInCap + Size > Cap->MaxSizeHint) {
return RETURN_BAD_BUFFER_SIZE;
}
return PciDevice->WriteConfig (PciDevice,
Cap->Offset + DestinationOffsetInCap, SourceBuffer,
Size);
}
|