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
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
|
/** @file
PPTT Table Generator
Copyright (c) 2021, ARM Limited. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent
@par Reference(s):
- ACPI 6.4 Specification, January 2021
@par Glossary:
- Cm or CM - Configuration Manager
- Obj or OBJ - Object
**/
#include <Library/AcpiLib.h>
#include <Library/BaseLib.h>
#include <Library/DebugLib.h>
#include <Library/MemoryAllocationLib.h>
#include <Protocol/AcpiTable.h>
// Module specific include files.
#include <AcpiTableGenerator.h>
#include <ConfigurationManagerObject.h>
#include <ConfigurationManagerHelper.h>
#include <Library/TableHelperLib.h>
#include <Protocol/ConfigurationManagerProtocol.h>
#include "PpttGenerator.h"
/**
ARM standard PPTT Generator
Requirements:
The following Configuration Manager Object(s) are used by this Generator:
- EArchCommonObjProcHierarchyInfo (REQUIRED)
- EArmObjCacheInfo
- EArchCommonObjCmRef
- EArmObjGicCInfo (REQUIRED)
*/
/**
This macro expands to a function that retrieves the Processor Hierarchy
information from the Configuration Manager.
*/
GET_OBJECT_LIST (
EObjNameSpaceArchCommon,
EArchCommonObjProcHierarchyInfo,
CM_ARCH_COMMON_PROC_HIERARCHY_INFO
);
/**
This macro expands to a function that retrieves the cache information
from the Configuration Manager.
*/
GET_OBJECT_LIST (
EObjNameSpaceArm,
EArmObjCacheInfo,
CM_ARM_CACHE_INFO
);
/**
This macro expands to a function that retrieves the cross-CM-object-
reference information from the Configuration Manager.
*/
GET_OBJECT_LIST (
EObjNameSpaceArchCommon,
EArchCommonObjCmRef,
CM_ARCH_COMMON_OBJ_REF
);
/**
This macro expands to a function that retrieves the GIC CPU interface
information from the Configuration Manager.
*/
GET_OBJECT_LIST (
EObjNameSpaceArm,
EArmObjGicCInfo,
CM_ARM_GICC_INFO
);
/**
Returns the size of the PPTT Processor Hierarchy Node (Type 0) given a
Processor Hierarchy Info CM object.
@param [in] Node Pointer to Processor Hierarchy Info CM object which
represents the Processor Hierarchy Node to be generated.
@retval Size of the Processor Hierarchy Node in bytes.
**/
STATIC
UINT32
GetProcHierarchyNodeSize (
IN CONST CM_ARCH_COMMON_PROC_HIERARCHY_INFO *Node
)
{
ASSERT (Node != NULL);
// <size of Processor Hierarchy Node> + <size of Private Resources array>
return sizeof (EFI_ACPI_6_4_PPTT_STRUCTURE_PROCESSOR) +
(Node->NoOfPrivateResources * sizeof (UINT32));
}
/**
This macro expands to a function that retrieves the amount of memory required
to store the Processor Hierarchy Nodes (Type 0) and updates the Node Indexer.
*/
GET_SIZE_OF_PPTT_STRUCTS (
ProcHierarchyNodes,
GetProcHierarchyNodeSize (NodesToIndex),
CM_ARCH_COMMON_PROC_HIERARCHY_INFO
);
/**
This macro expands to a function that retrieves the amount of memory required
to store the Cache Type Structures (Type 1) and updates the Node Indexer.
*/
GET_SIZE_OF_PPTT_STRUCTS (
CacheTypeStructs,
sizeof (EFI_ACPI_6_4_PPTT_STRUCTURE_CACHE),
CM_ARM_CACHE_INFO
);
/**
Search the Node Indexer and return the indexed PPTT node with the given
Token.
@param [in] NodeIndexer Pointer to the Node Indexer array.
@param [in] NodeCount Number of elements in Node Indexer.
@param [in] SearchToken Token used for Node Indexer lookup.
@param [out] IndexedNodeFound Pointer to the Node Indexer array element
with the given Token.
@retval EFI_SUCCESS Success.
@retval EFI_NOT_FOUND No element with a matching token was
found in the Node Indexer array.
**/
STATIC
EFI_STATUS
GetPpttNodeReferencedByToken (
IN PPTT_NODE_INDEXER *NodeIndexer,
IN UINT32 NodeCount,
IN CONST CM_OBJECT_TOKEN SearchToken,
OUT PPTT_NODE_INDEXER **IndexedNodeFound
)
{
EFI_STATUS Status;
ASSERT (NodeIndexer != NULL);
DEBUG ((
DEBUG_INFO,
"PPTT: Node Indexer: SearchToken = %p\n",
SearchToken
));
while (NodeCount-- != 0) {
DEBUG ((
DEBUG_INFO,
"PPTT: Node Indexer: NodeIndexer->Token = %p. Offset = %d\n",
NodeIndexer->Token,
NodeIndexer->Offset
));
if (NodeIndexer->Token == SearchToken) {
*IndexedNodeFound = NodeIndexer;
Status = EFI_SUCCESS;
DEBUG ((
DEBUG_INFO,
"PPTT: Node Indexer: Token = %p. Found, Status = %r\n",
SearchToken,
Status
));
return Status;
}
NodeIndexer++;
}
Status = EFI_NOT_FOUND;
DEBUG ((
DEBUG_ERROR,
"PPTT: Node Indexer: SearchToken = %p. Status = %r\n",
SearchToken,
Status
));
return Status;
}
/**
Detect cycles in the processor and cache topology graph represented in
the PPTT table.
@param [in] Generator Pointer to the PPTT Generator.
@retval EFI_SUCCESS There are no cyclic references in the graph.
@retval EFI_INVALID_PARAMETER Processor or cache references form a cycle.
**/
STATIC
EFI_STATUS
DetectCyclesInTopology (
IN CONST ACPI_PPTT_GENERATOR *CONST Generator
)
{
EFI_STATUS Status;
PPTT_NODE_INDEXER *Iterator;
PPTT_NODE_INDEXER *CycleDetector;
UINT32 NodesRemaining;
ASSERT (Generator != NULL);
Iterator = Generator->NodeIndexer;
NodesRemaining = Generator->ProcTopologyStructCount;
while (NodesRemaining != 0) {
DEBUG ((
DEBUG_INFO,
"INFO: PPTT: Cycle detection for element with index %d\n",
Generator->ProcTopologyStructCount - NodesRemaining
));
CycleDetector = Iterator;
// Walk the topology tree
while (CycleDetector->TopologyParent != NULL) {
DEBUG ((
DEBUG_INFO,
"INFO: PPTT: %p -> %p\n",
CycleDetector->Token,
CycleDetector->TopologyParent->Token
));
// Check if we have already visited this node
if (CycleDetector->CycleDetectionStamp == NodesRemaining) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Cycle in processor and cache topology detected for " \
"a chain of references originating from a node with: Token = %p " \
"Status = %r\n",
Iterator->Token,
Status
));
return Status;
}
// Stamp the visited node
CycleDetector->CycleDetectionStamp = NodesRemaining;
CycleDetector = CycleDetector->TopologyParent;
} // Continue topology tree walk
Iterator++;
NodesRemaining--;
} // Next Node Indexer
return EFI_SUCCESS;
}
/**
Update the array of private resources for a given Processor Hierarchy Node.
@param [in] Generator Pointer to the PPTT Generator.
@param [in] CfgMgrProtocol Pointer to the Configuration Manager
Protocol Interface.
@param [in] PrivResArray Pointer to the array of private resources.
@param [in] PrivResCount Number of private resources.
@param [in] PrivResArrayToken Reference Token for the CM_ARCH_COMMON_OBJ_REF
array describing node's private resources.
@retval EFI_SUCCESS Array updated successfully.
@retval EFI_INVALID_PARAMETER A parameter is invalid.
@retval EFI_NOT_FOUND A private resource was not found.
**/
STATIC
EFI_STATUS
AddPrivateResources (
IN CONST ACPI_PPTT_GENERATOR *CONST Generator,
IN CONST EDKII_CONFIGURATION_MANAGER_PROTOCOL *CONST CfgMgrProtocol,
IN UINT32 *PrivResArray,
IN UINT32 PrivResCount,
IN CONST CM_OBJECT_TOKEN PrivResArrayToken
)
{
EFI_STATUS Status;
CM_ARCH_COMMON_OBJ_REF *CmObjRefs;
UINT32 CmObjRefCount;
PPTT_NODE_INDEXER *PpttNodeFound;
ASSERT (
(Generator != NULL) &&
(CfgMgrProtocol != NULL) &&
(PrivResArray != NULL) &&
(PrivResCount != 0)
);
// Validate input arguments
if (PrivResArrayToken == CM_NULL_TOKEN) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: The number of private resources is %d while " \
"PrivResToken = CM_NULL_TOKEN. Status = %r\n",
PrivResCount,
Status
));
return Status;
}
CmObjRefCount = 0;
// Get the CM Object References
Status = GetEArchCommonObjCmRef (
CfgMgrProtocol,
PrivResArrayToken,
&CmObjRefs,
&CmObjRefCount
);
if (EFI_ERROR (Status)) {
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to get CM Object References. " \
"PrivResToken = %p. Status = %r\n",
PrivResArrayToken,
Status
));
return Status;
}
if (CmObjRefCount != PrivResCount) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: The number of CM Object References retrieved and the " \
"number of private resources don't match. CmObjRefCount = %d. " \
"PrivResourceCount = %d. PrivResToken = %p. Status = %r\n",
CmObjRefCount,
PrivResCount,
PrivResArrayToken,
Status
));
return Status;
}
while (PrivResCount-- != 0) {
if (CmObjRefs->ReferenceToken == CM_NULL_TOKEN) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: CM_NULL_TOKEN provided as reference token for a " \
"private resource. Status = %r\n",
Status
));
return Status;
}
// The Node indexer has the Processor hierarchy nodes at the begining
// followed by the cache structs. Therefore we can skip the Processor
// hierarchy nodes in the node indexer search.
Status = GetPpttNodeReferencedByToken (
Generator->CacheStructIndexedList,
(Generator->ProcTopologyStructCount -
Generator->ProcHierarchyNodeCount),
CmObjRefs->ReferenceToken,
&PpttNodeFound
);
if (EFI_ERROR (Status)) {
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to get a private resource with Token = %p from " \
"Node Indexer. Status = %r\n",
CmObjRefs->ReferenceToken,
Status
));
return Status;
}
// Update the offset of the private resources in the Processor
// Hierarchy Node structure
*(PrivResArray++) = PpttNodeFound->Offset;
CmObjRefs++;
}
return EFI_SUCCESS;
}
/**
Function to test if two indexed Processor Hierarchy Info objects map to the
same GIC CPU Interface Info object.
This is a callback function that can be invoked by FindDuplicateValue ().
@param [in] Object1 Pointer to the first indexed Processor Hierarchy
Info object.
@param [in] Object2 Pointer to the second indexed Processor Hierarchy
Info object.
@param [in] Index1 Index of Object1 to be displayed for debugging
purposes.
@param [in] Index2 Index of Object2 to be displayed for debugging
purposes.
@retval TRUE Object1 and Object2 have the same
AcpiIdObjectToken.
@retval FALSE Object1 and Object2 have different
AcpiIdObjectTokens.
**/
BOOLEAN
EFIAPI
IsAcpiIdObjectTokenEqual (
IN CONST VOID *Object1,
IN CONST VOID *Object2,
IN UINTN Index1,
IN UINTN Index2
)
{
PPTT_NODE_INDEXER *IndexedObject1;
PPTT_NODE_INDEXER *IndexedObject2;
CM_ARCH_COMMON_PROC_HIERARCHY_INFO *ProcNode1;
CM_ARCH_COMMON_PROC_HIERARCHY_INFO *ProcNode2;
ASSERT (
(Object1 != NULL) &&
(Object2 != NULL)
);
IndexedObject1 = (PPTT_NODE_INDEXER *)Object1;
IndexedObject2 = (PPTT_NODE_INDEXER *)Object2;
ProcNode1 = (CM_ARCH_COMMON_PROC_HIERARCHY_INFO *)IndexedObject1->Object;
ProcNode2 = (CM_ARCH_COMMON_PROC_HIERARCHY_INFO *)IndexedObject2->Object;
if (IS_ACPI_PROC_ID_VALID (ProcNode1) &&
IS_ACPI_PROC_ID_VALID (ProcNode2) &&
(ProcNode1->AcpiIdObjectToken != CM_NULL_TOKEN) &&
(ProcNode2->AcpiIdObjectToken != CM_NULL_TOKEN) &&
(ProcNode1->AcpiIdObjectToken == ProcNode2->AcpiIdObjectToken))
{
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Two Processor Hierarchy Info objects (%d and %d) map to " \
"the same ACPI ID reference object. ACPI Processor IDs are not unique. " \
"AcpiIdObjectToken = %p.\n",
Index1,
Index2,
ProcNode1->AcpiIdObjectToken
));
return TRUE;
}
return FALSE;
}
/**
Update the Processor Hierarchy Node (Type 0) information.
This function populates the Processor Hierarchy Nodes with information from
the Configuration Manager and adds this information to the PPTT table.
@param [in] Generator Pointer to the PPTT Generator.
@param [in] CfgMgrProtocol Pointer to the Configuration Manager
Protocol Interface.
@param [in] Pptt Pointer to PPTT table structure.
@param [in] NodesStartOffset Offset from the start of PPTT table to the
start of Processor Hierarchy Nodes.
@retval EFI_SUCCESS Node updated successfully.
@retval EFI_INVALID_PARAMETER A parameter is invalid.
@retval EFI_NOT_FOUND The required object was not found.
**/
STATIC
EFI_STATUS
AddProcHierarchyNodes (
IN CONST ACPI_PPTT_GENERATOR *CONST Generator,
IN CONST EDKII_CONFIGURATION_MANAGER_PROTOCOL *CONST CfgMgrProtocol,
IN CONST EFI_ACPI_6_4_PROCESSOR_PROPERTIES_TOPOLOGY_TABLE_HEADER *Pptt,
IN CONST UINT32 NodesStartOffset
)
{
EFI_STATUS Status;
EFI_ACPI_6_4_PPTT_STRUCTURE_PROCESSOR *ProcStruct;
UINT32 *PrivateResources;
BOOLEAN IsAcpiIdObjectTokenDuplicated;
CM_ARM_GICC_INFO *GicCInfoList;
UINT32 GicCInfoCount;
UINT32 UniqueGicCRefCount;
PPTT_NODE_INDEXER *PpttNodeFound;
CM_ARCH_COMMON_PROC_HIERARCHY_INFO *ProcInfoNode;
PPTT_NODE_INDEXER *ProcNodeIterator;
UINT32 NodeCount;
UINT32 Length;
ASSERT (
(Generator != NULL) &&
(CfgMgrProtocol != NULL) &&
(Pptt != NULL)
);
ProcStruct = (EFI_ACPI_6_4_PPTT_STRUCTURE_PROCESSOR *)((UINT8 *)Pptt +
NodesStartOffset);
ProcNodeIterator = Generator->ProcHierarchyNodeIndexedList;
NodeCount = Generator->ProcHierarchyNodeCount;
// Check if every GICC Object is referenced by onlu one Proc Node
IsAcpiIdObjectTokenDuplicated = FindDuplicateValue (
ProcNodeIterator,
NodeCount,
sizeof (PPTT_NODE_INDEXER),
IsAcpiIdObjectTokenEqual
);
// Duplicate GIC CPU Interface Token was found so two PPTT Processor Hierarchy
// Nodes map to the same MADT GICC structure
if (IsAcpiIdObjectTokenDuplicated) {
return EFI_INVALID_PARAMETER;
}
UniqueGicCRefCount = 0;
while (NodeCount-- != 0) {
ProcInfoNode = (CM_ARCH_COMMON_PROC_HIERARCHY_INFO *)ProcNodeIterator->Object;
// Check if the private resource count is within the size limit
// imposed on the Processor Hierarchy node by the specification.
// Note: The length field is 8 bit wide while the number of private
// resource field is 32 bit wide.
Length = GetProcHierarchyNodeSize (ProcInfoNode);
if (Length > MAX_UINT8) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Too many private resources. Count = %d. " \
"Maximum supported Processor Node size exceeded. " \
"Token = %p. Status = %r\n",
ProcInfoNode->NoOfPrivateResources,
ProcInfoNode->ParentToken,
Status
));
return Status;
}
// Populate the node header
ProcStruct->Type = EFI_ACPI_6_4_PPTT_TYPE_PROCESSOR;
ProcStruct->Length = (UINT8)Length;
ProcStruct->Reserved[0] = EFI_ACPI_RESERVED_BYTE;
ProcStruct->Reserved[1] = EFI_ACPI_RESERVED_BYTE;
// Populate the flags
ProcStruct->Flags.PhysicalPackage = ProcInfoNode->Flags & BIT0;
ProcStruct->Flags.AcpiProcessorIdValid = (ProcInfoNode->Flags & BIT1) >> 1;
ProcStruct->Flags.ProcessorIsAThread = (ProcInfoNode->Flags & BIT2) >> 2;
ProcStruct->Flags.NodeIsALeaf = (ProcInfoNode->Flags & BIT3) >> 3;
ProcStruct->Flags.IdenticalImplementation =
(ProcInfoNode->Flags & BIT4) >> 4;
ProcStruct->Flags.Reserved = 0;
// Populate the parent reference
if (ProcInfoNode->ParentToken == CM_NULL_TOKEN) {
ProcStruct->Parent = 0;
} else {
Status = GetPpttNodeReferencedByToken (
Generator->ProcHierarchyNodeIndexedList,
Generator->ProcHierarchyNodeCount,
ProcInfoNode->ParentToken,
&PpttNodeFound
);
if (EFI_ERROR (Status)) {
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to get parent processor hierarchy node " \
"reference. ParentToken = %p. ChildToken = %p. Status = %r\n",
ProcInfoNode->ParentToken,
ProcInfoNode->Token,
Status
));
return Status;
}
// Test if the reference is to a 'leaf' node
if (IS_PROC_NODE_LEAF (
((CM_ARCH_COMMON_PROC_HIERARCHY_INFO *)PpttNodeFound->Object)
))
{
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Reference to a leaf Processor Hierarchy Node. " \
"ParentToken = %p. ChildToken = %p. Status = %r\n",
ProcInfoNode->ParentToken,
ProcInfoNode->Token,
Status
));
return Status;
}
// Update Proc Structure with the offset of the parent node
ProcStruct->Parent = PpttNodeFound->Offset;
// Store the reference for the parent node in the Node Indexer
// so that this can be used later for cycle detection
ProcNodeIterator->TopologyParent = PpttNodeFound;
}
// Populate ACPI Processor ID
if (!IS_ACPI_PROC_ID_VALID (ProcInfoNode)) {
// Default invalid ACPI Processor ID to 0
ProcStruct->AcpiProcessorId = 0;
} else if (ProcInfoNode->AcpiIdObjectToken == CM_NULL_TOKEN) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: The 'ACPI Processor ID valid' flag is set but no " \
"ACPI ID Reference object token was provided. " \
"AcpiIdObjectToken = %p. RequestorToken = %p. Status = %r\n",
ProcInfoNode->AcpiIdObjectToken,
ProcInfoNode->Token,
Status
));
return Status;
} else {
Status = GetEArmObjGicCInfo (
CfgMgrProtocol,
ProcInfoNode->AcpiIdObjectToken,
&GicCInfoList,
&GicCInfoCount
);
if (EFI_ERROR (Status)) {
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to get ACPI ID Reference object token. " \
"ACPI Processor ID can't be populated. " \
"AcpiIdObjectToken = %p. RequestorToken = %p. Status = %r\n",
ProcInfoNode->AcpiIdObjectToken,
ProcInfoNode->Token,
Status
));
return Status;
}
if (GicCInfoCount != 1) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to find a unique GICC structure. " \
"ACPI Processor ID can't be populated. " \
"GICC Structure Count = %d. AcpiIdObjectToken = %p. RequestorToken = %p " \
"Status = %r\n",
GicCInfoCount,
ProcInfoNode->AcpiIdObjectToken,
ProcInfoNode->Token,
Status
));
return Status;
}
// Update the ACPI Processor Id
ProcStruct->AcpiProcessorId = GicCInfoList->AcpiProcessorUid;
// Increment the reference count for the number of
// Unique GICC objects that were retrieved.
UniqueGicCRefCount++;
}
ProcStruct->NumberOfPrivateResources = ProcInfoNode->NoOfPrivateResources;
PrivateResources = (UINT32 *)((UINT8 *)ProcStruct +
sizeof (EFI_ACPI_6_4_PPTT_STRUCTURE_PROCESSOR));
if (ProcStruct->NumberOfPrivateResources != 0) {
// Populate the private resources array
Status = AddPrivateResources (
Generator,
CfgMgrProtocol,
PrivateResources,
ProcStruct->NumberOfPrivateResources,
ProcInfoNode->PrivateResourcesArrayToken
);
if (EFI_ERROR (Status)) {
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to populate the private resources array. " \
"Status = %r\n",
Status
));
return Status;
}
}
// Next Processor Hierarchy Node
ProcStruct = (EFI_ACPI_6_4_PPTT_STRUCTURE_PROCESSOR *)((UINT8 *)ProcStruct +
ProcStruct->Length);
ProcNodeIterator++;
} // Processor Hierarchy Node
// Knowing the total number of GICC references made and that all GICC Token
// references are unique, we can test if no GICC instances have been left out.
Status = GetEArmObjGicCInfo (
CfgMgrProtocol,
CM_NULL_TOKEN,
&GicCInfoList,
&GicCInfoCount
);
if (EFI_ERROR (Status)) {
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to get GICC Info. Status = %r\n",
Status
));
return Status;
}
// MADT - PPTT cross validation
// This checks that one and only one GICC structure is referenced by a
// Processor Hierarchy Node in the PPTT.
// Since we have already checked that the GICC objects referenced by the
// Proc Nodes are unique, the UniqueGicCRefCount cannot be greater than
// the total number of GICC objects in the platform.
if (GicCInfoCount > UniqueGicCRefCount) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: %d GICC structure(s) exposed by MADT don't have " \
"a corresponding Processor Hierarchy Node. Status = %r\n",
GicCInfoCount - UniqueGicCRefCount,
Status
));
}
return Status;
}
/**
Test whether CacheId is unique among the CacheIdList.
@param [in] CacheId Cache ID to check.
@param [in] CacheIdList List of already existing cache IDs.
@param [in] CacheIdListSize Size of CacheIdList.
@retval TRUE CacheId does not exist in CacheIdList.
@retval FALSE CacheId already exists in CacheIdList.
**/
STATIC
BOOLEAN
IsCacheIdUnique (
IN CONST UINT32 CacheId,
IN CONST UINT32 *CacheIdList,
IN CONST UINT32 CacheIdListSize
)
{
UINT32 Index;
for (Index = 0; Index < CacheIdListSize; Index++) {
if (CacheIdList[Index] == CacheId) {
return FALSE;
}
}
return TRUE;
}
/**
Update the Cache Type Structure (Type 1) information.
This function populates the Cache Type Structures with information from
the Configuration Manager and adds this information to the PPTT table.
@param [in] Generator Pointer to the PPTT Generator.
@param [in] CfgMgrProtocol Pointer to the Configuration Manager
Protocol Interface.
@param [in] Pptt Pointer to PPTT table structure.
@param [in] NodesStartOffset Offset from the start of PPTT table to the
start of Cache Type Structures.
@param [in] Revision Revision of the PPTT table being requested.
@retval EFI_SUCCESS Structures updated successfully.
@retval EFI_INVALID_PARAMETER A parameter is invalid.
@retval EFI_NOT_FOUND A required object was not found.
@retval EFI_OUT_OF_RESOURCES Out of resources.
**/
STATIC
EFI_STATUS
AddCacheTypeStructures (
IN CONST ACPI_PPTT_GENERATOR *CONST Generator,
IN CONST EDKII_CONFIGURATION_MANAGER_PROTOCOL *CONST CfgMgrProtocol,
IN CONST EFI_ACPI_6_4_PROCESSOR_PROPERTIES_TOPOLOGY_TABLE_HEADER *Pptt,
IN CONST UINT32 NodesStartOffset,
IN CONST UINT32 Revision
)
{
EFI_STATUS Status;
EFI_ACPI_6_4_PPTT_STRUCTURE_CACHE *CacheStruct;
PPTT_NODE_INDEXER *PpttNodeFound;
CM_ARM_CACHE_INFO *CacheInfoNode;
PPTT_NODE_INDEXER *CacheNodeIterator;
UINT32 NodeCount;
BOOLEAN CacheIdUnique;
UINT32 NodeIndex;
UINT32 *FoundCacheIds;
ASSERT (
(Generator != NULL) &&
(CfgMgrProtocol != NULL) &&
(Pptt != NULL)
);
CacheStruct = (EFI_ACPI_6_4_PPTT_STRUCTURE_CACHE *)((UINT8 *)Pptt +
NodesStartOffset);
CacheNodeIterator = Generator->CacheStructIndexedList;
NodeCount = Generator->CacheStructCount;
FoundCacheIds = AllocateZeroPool (NodeCount * sizeof (*FoundCacheIds));
if (FoundCacheIds == NULL) {
DEBUG ((DEBUG_ERROR, "ERROR: PPTT: Failed to allocate resources.\n"));
return EFI_OUT_OF_RESOURCES;
}
for (NodeIndex = 0; NodeIndex < NodeCount; NodeIndex++) {
CacheInfoNode = (CM_ARM_CACHE_INFO *)CacheNodeIterator->Object;
// Populate the node header
CacheStruct->Type = EFI_ACPI_6_4_PPTT_TYPE_CACHE;
CacheStruct->Length = sizeof (EFI_ACPI_6_4_PPTT_STRUCTURE_CACHE);
CacheStruct->Reserved[0] = EFI_ACPI_RESERVED_BYTE;
CacheStruct->Reserved[1] = EFI_ACPI_RESERVED_BYTE;
// "On Arm-based systems, all cache properties must be provided in the
// table." (ACPI 6.4, Section 5.2.29.2)
CacheStruct->Flags.SizePropertyValid = 1;
CacheStruct->Flags.NumberOfSetsValid = 1;
CacheStruct->Flags.AssociativityValid = 1;
CacheStruct->Flags.AllocationTypeValid = 1;
CacheStruct->Flags.CacheTypeValid = 1;
CacheStruct->Flags.WritePolicyValid = 1;
CacheStruct->Flags.LineSizeValid = 1;
CacheStruct->Flags.CacheIdValid = 1;
CacheStruct->Flags.Reserved = 0;
// Populate the reference to the next level of cache
if (CacheInfoNode->NextLevelOfCacheToken == CM_NULL_TOKEN) {
CacheStruct->NextLevelOfCache = 0;
} else {
Status = GetPpttNodeReferencedByToken (
Generator->CacheStructIndexedList,
Generator->CacheStructCount,
CacheInfoNode->NextLevelOfCacheToken,
&PpttNodeFound
);
if (EFI_ERROR (Status)) {
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to get the reference to the Next Level of " \
"Cache. NextLevelOfCacheToken = %p. RequestorToken = %p. " \
"Status = %r\n",
CacheInfoNode->NextLevelOfCacheToken,
CacheInfoNode->Token,
Status
));
goto cleanup;
}
// Update Cache Structure with the offset for the next level of cache
CacheStruct->NextLevelOfCache = PpttNodeFound->Offset;
// Store the next level of cache information in the Node Indexer
// so that this can be used later for cycle detection
CacheNodeIterator->TopologyParent = PpttNodeFound;
}
CacheStruct->Size = CacheInfoNode->Size;
// Validate and populate the 'Number of sets' field
if (CacheInfoNode->NumberOfSets > PPTT_ARM_CCIDX_CACHE_NUMBER_OF_SETS_MAX) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: When ARMv8.3-CCIDX is implemented the maximum number " \
"of sets can be %d. NumberOfSets = %d. Status = %r\n",
PPTT_ARM_CCIDX_CACHE_NUMBER_OF_SETS_MAX,
CacheInfoNode->NumberOfSets,
Status
));
goto cleanup;
}
if (CacheInfoNode->NumberOfSets > PPTT_ARM_CACHE_NUMBER_OF_SETS_MAX) {
DEBUG ((
DEBUG_INFO,
"INFO: PPTT: When ARMv8.3-CCIDX is not implemented the maximum " \
"number of sets can be %d. NumberOfSets = %d\n",
PPTT_ARM_CACHE_NUMBER_OF_SETS_MAX,
CacheInfoNode->NumberOfSets
));
}
CacheStruct->NumberOfSets = CacheInfoNode->NumberOfSets;
// Validate Associativity field based on maximum associativity
// supported by ACPI Cache type structure.
if (CacheInfoNode->Associativity > MAX_UINT8) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: The maximum associativity supported by ACPI " \
"Cache type structure is %d. Associativity = %d, Status = %r\n",
MAX_UINT8,
CacheInfoNode->Associativity,
Status
));
goto cleanup;
}
// Validate the Associativity field based on the architecture specification
// The architecture supports much larger associativity values than the
// current ACPI specification.
// These checks will be needed in the future when the ACPI specification
// is extended. Disabling this code for now.
#if 0
if (CacheInfoNode->Associativity > PPTT_ARM_CCIDX_CACHE_ASSOCIATIVITY_MAX) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: When ARMv8.3-CCIDX is implemented the maximum cache " \
"associativity can be %d. Associativity = %d. Status = %r\n",
PPTT_ARM_CCIDX_CACHE_ASSOCIATIVITY_MAX,
CacheInfoNode->Associativity,
Status
));
goto cleanup;
}
if (CacheInfoNode->Associativity > PPTT_ARM_CACHE_ASSOCIATIVITY_MAX) {
DEBUG ((
DEBUG_INFO,
"INFO: PPTT: When ARMv8.3-CCIDX is not implemented the maximum " \
"cache associativity can be %d. Associativity = %d\n",
PPTT_ARM_CACHE_ASSOCIATIVITY_MAX,
CacheInfoNode->Associativity
));
}
#endif
// Note a typecast is needed as the maximum associativity
// supported by ACPI Cache type structure is MAX_UINT8.
CacheStruct->Associativity = (UINT8)CacheInfoNode->Associativity;
// Populate cache attributes
CacheStruct->Attributes.AllocationType =
CacheInfoNode->Attributes & (BIT0 | BIT1);
CacheStruct->Attributes.CacheType =
(CacheInfoNode->Attributes & (BIT2 | BIT3)) >> 2;
CacheStruct->Attributes.WritePolicy =
(CacheInfoNode->Attributes & BIT4) >> 4;
CacheStruct->Attributes.Reserved = 0;
// Validate and populate cache line size
if ((CacheInfoNode->LineSize < PPTT_ARM_CACHE_LINE_SIZE_MIN) ||
(CacheInfoNode->LineSize > PPTT_ARM_CACHE_LINE_SIZE_MAX))
{
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: The cache line size must be between %d and %d bytes " \
"on ARM Platforms. LineSize = %d. Status = %r\n",
PPTT_ARM_CACHE_LINE_SIZE_MIN,
PPTT_ARM_CACHE_LINE_SIZE_MAX,
CacheInfoNode->LineSize,
Status
));
goto cleanup;
}
if ((CacheInfoNode->LineSize & (CacheInfoNode->LineSize - 1)) != 0) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: The cache line size is not a power of 2. " \
"LineSize = %d. Status = %r\n",
CacheInfoNode->LineSize,
Status
));
goto cleanup;
}
CacheStruct->LineSize = CacheInfoNode->LineSize;
if (Revision >= 3) {
// Validate and populate cache id
if (CacheInfoNode->CacheId == 0) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: The cache id cannot be zero. Status = %r\n",
Status
));
goto cleanup;
}
CacheIdUnique = IsCacheIdUnique (
CacheInfoNode->CacheId,
FoundCacheIds,
NodeIndex
);
if (!CacheIdUnique) {
Status = EFI_INVALID_PARAMETER;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: The cache id is not unique. " \
"CacheId = %d. Status = %r\n",
CacheInfoNode->CacheId,
Status
));
goto cleanup;
}
// Store the cache id so we can check future cache ids for uniqueness
FoundCacheIds[NodeIndex] = CacheInfoNode->CacheId;
CacheStruct->CacheId = CacheInfoNode->CacheId;
}
// Next Cache Type Structure
CacheStruct = (EFI_ACPI_6_4_PPTT_STRUCTURE_CACHE *)((UINT8 *)CacheStruct +
CacheStruct->Length);
CacheNodeIterator++;
} // for Cache Type Structure
Status = EFI_SUCCESS;
cleanup:
FreePool (FoundCacheIds);
return Status;
}
/**
Construct the PPTT ACPI table.
This function invokes the Configuration Manager protocol interface
to get the required hardware information for generating the ACPI
table.
If this function allocates any resources then they must be freed
in the FreeXXXXTableResources function.
@param [in] This Pointer to the table generator.
@param [in] AcpiTableInfo Pointer to the ACPI table generator to be used.
@param [in] CfgMgrProtocol Pointer to the Configuration Manager
Protocol Interface.
@param [out] Table Pointer to the constructed ACPI Table.
@retval EFI_SUCCESS Table generated successfully.
@retval EFI_INVALID_PARAMETER A parameter is invalid.
@retval EFI_NOT_FOUND The required object was not found.
@retval EFI_BAD_BUFFER_SIZE The size returned by the Configuration
Manager is less than the Object size for
the requested object.
**/
STATIC
EFI_STATUS
EFIAPI
BuildPpttTable (
IN CONST ACPI_TABLE_GENERATOR *CONST This,
IN CONST CM_STD_OBJ_ACPI_TABLE_INFO *CONST AcpiTableInfo,
IN CONST EDKII_CONFIGURATION_MANAGER_PROTOCOL *CONST CfgMgrProtocol,
OUT EFI_ACPI_DESCRIPTION_HEADER **CONST Table
)
{
EFI_STATUS Status;
UINT32 TableSize;
UINT32 ProcTopologyStructCount;
UINT32 ProcHierarchyNodeCount;
UINT32 CacheStructCount;
UINT32 ProcHierarchyNodeOffset;
UINT32 CacheStructOffset;
CM_ARCH_COMMON_PROC_HIERARCHY_INFO *ProcHierarchyNodeList;
CM_ARM_CACHE_INFO *CacheStructList;
ACPI_PPTT_GENERATOR *Generator;
// Pointer to the Node Indexer array
PPTT_NODE_INDEXER *NodeIndexer;
EFI_ACPI_6_4_PROCESSOR_PROPERTIES_TOPOLOGY_TABLE_HEADER *Pptt;
ASSERT (
(This != NULL) &&
(AcpiTableInfo != NULL) &&
(CfgMgrProtocol != NULL) &&
(Table != NULL) &&
(AcpiTableInfo->TableGeneratorId == This->GeneratorID) &&
(AcpiTableInfo->AcpiTableSignature == This->AcpiTableSignature)
);
if ((AcpiTableInfo->AcpiTableRevision < This->MinAcpiTableRevision) ||
(AcpiTableInfo->AcpiTableRevision > This->AcpiTableRevision))
{
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Requested table revision = %d is not supported. "
"Supported table revisions: Minimum = %d. Maximum = %d\n",
AcpiTableInfo->AcpiTableRevision,
This->MinAcpiTableRevision,
This->AcpiTableRevision
));
return EFI_INVALID_PARAMETER;
}
Generator = (ACPI_PPTT_GENERATOR *)This;
*Table = NULL;
// Get the processor hierarchy info and update the processor topology
// structure count with Processor Hierarchy Nodes (Type 0)
Status = GetEArchCommonObjProcHierarchyInfo (
CfgMgrProtocol,
CM_NULL_TOKEN,
&ProcHierarchyNodeList,
&ProcHierarchyNodeCount
);
if (EFI_ERROR (Status)) {
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to get processor hierarchy info. Status = %r\n",
Status
));
goto error_handler;
}
ProcTopologyStructCount = ProcHierarchyNodeCount;
Generator->ProcHierarchyNodeCount = ProcHierarchyNodeCount;
// Get the cache info and update the processor topology structure count with
// Cache Type Structures (Type 1)
Status = GetEArmObjCacheInfo (
CfgMgrProtocol,
CM_NULL_TOKEN,
&CacheStructList,
&CacheStructCount
);
if (EFI_ERROR (Status) && (Status != EFI_NOT_FOUND)) {
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to get cache info. Status = %r\n",
Status
));
goto error_handler;
}
ProcTopologyStructCount += CacheStructCount;
Generator->CacheStructCount = CacheStructCount;
// Allocate Node Indexer array
NodeIndexer = (PPTT_NODE_INDEXER *)AllocateZeroPool (
sizeof (PPTT_NODE_INDEXER) *
ProcTopologyStructCount
);
if (NodeIndexer == NULL) {
Status = EFI_OUT_OF_RESOURCES;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to allocate memory for Node Indexer. Status = %r\n ",
Status
));
goto error_handler;
}
DEBUG ((DEBUG_INFO, "INFO: NodeIndexer = %p\n", NodeIndexer));
Generator->ProcTopologyStructCount = ProcTopologyStructCount;
Generator->NodeIndexer = NodeIndexer;
// Calculate the size of the PPTT table
TableSize = sizeof (EFI_ACPI_6_4_PROCESSOR_PROPERTIES_TOPOLOGY_TABLE_HEADER);
// Include the size of Processor Hierarchy Nodes and index them
if (Generator->ProcHierarchyNodeCount != 0) {
ProcHierarchyNodeOffset = TableSize;
Generator->ProcHierarchyNodeIndexedList = NodeIndexer;
TableSize += GetSizeofProcHierarchyNodes (
ProcHierarchyNodeOffset,
ProcHierarchyNodeList,
Generator->ProcHierarchyNodeCount,
&NodeIndexer
);
DEBUG ((
DEBUG_INFO,
" ProcHierarchyNodeCount = %d\n" \
" ProcHierarchyNodeOffset = 0x%x\n" \
" ProcHierarchyNodeIndexedList = 0x%p\n",
Generator->ProcHierarchyNodeCount,
ProcHierarchyNodeOffset,
Generator->ProcHierarchyNodeIndexedList
));
}
// Include the size of Cache Type Structures and index them
if (Generator->CacheStructCount != 0) {
CacheStructOffset = TableSize;
Generator->CacheStructIndexedList = NodeIndexer;
TableSize += GetSizeofCacheTypeStructs (
CacheStructOffset,
CacheStructList,
Generator->CacheStructCount,
&NodeIndexer
);
DEBUG ((
DEBUG_INFO,
" CacheStructCount = %d\n" \
" CacheStructOffset = 0x%x\n" \
" CacheStructIndexedList = 0x%p\n",
Generator->CacheStructCount,
CacheStructOffset,
Generator->CacheStructIndexedList
));
}
DEBUG ((
DEBUG_INFO,
"INFO: PPTT:\n" \
" ProcTopologyStructCount = %d\n" \
" TableSize = %d\n",
ProcTopologyStructCount,
TableSize
));
// Allocate the Buffer for the PPTT table
*Table = (EFI_ACPI_DESCRIPTION_HEADER *)AllocateZeroPool (TableSize);
if (*Table == NULL) {
Status = EFI_OUT_OF_RESOURCES;
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to allocate memory for PPTT Table. " \
"Size = %d. Status = %r\n",
TableSize,
Status
));
goto error_handler;
}
Pptt = (EFI_ACPI_6_4_PROCESSOR_PROPERTIES_TOPOLOGY_TABLE_HEADER *)*Table;
DEBUG ((
DEBUG_INFO,
"PPTT: Pptt = 0x%p. TableSize = 0x%x\n",
Pptt,
TableSize
));
// Add ACPI header
Status = AddAcpiHeader (
CfgMgrProtocol,
This,
&Pptt->Header,
AcpiTableInfo,
TableSize
);
if (EFI_ERROR (Status)) {
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to add ACPI header. Status = %r\n",
Status
));
goto error_handler;
}
// Add Processor Hierarchy Nodes (Type 0) to the generated table
if (Generator->ProcHierarchyNodeCount != 0) {
Status = AddProcHierarchyNodes (
Generator,
CfgMgrProtocol,
Pptt,
ProcHierarchyNodeOffset
);
if (EFI_ERROR (Status)) {
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to add Processor Hierarchy Nodes. Status = %r\n",
Status
));
goto error_handler;
}
}
// Add Cache Type Structures (Type 1) to the generated table
if (Generator->CacheStructCount != 0) {
Status = AddCacheTypeStructures (
Generator,
CfgMgrProtocol,
Pptt,
CacheStructOffset,
AcpiTableInfo->AcpiTableRevision
);
if (EFI_ERROR (Status)) {
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Failed to add Cache Type Structures. Status = %r\n",
Status
));
goto error_handler;
}
}
// Validate CM object cross-references in PPTT
Status = DetectCyclesInTopology (Generator);
if (EFI_ERROR (Status)) {
DEBUG ((
DEBUG_ERROR,
"ERROR: PPTT: Invalid processor and cache topology. Status = %r\n",
Status
));
goto error_handler;
}
return Status;
error_handler:
if (Generator->NodeIndexer != NULL) {
FreePool (Generator->NodeIndexer);
Generator->NodeIndexer = NULL;
}
if (*Table != NULL) {
FreePool (*Table);
*Table = NULL;
}
return Status;
}
/**
Free any resources allocated for constructing the PPTT
@param [in] This Pointer to the table generator.
@param [in] AcpiTableInfo Pointer to the ACPI Table Info.
@param [in] CfgMgrProtocol Pointer to the Configuration Manager
Protocol Interface.
@param [in, out] Table Pointer to the ACPI Table.
@retval EFI_SUCCESS The resources were freed successfully.
@retval EFI_INVALID_PARAMETER The table pointer is NULL or invalid.
**/
STATIC
EFI_STATUS
FreePpttTableResources (
IN CONST ACPI_TABLE_GENERATOR *CONST This,
IN CONST CM_STD_OBJ_ACPI_TABLE_INFO *CONST AcpiTableInfo,
IN CONST EDKII_CONFIGURATION_MANAGER_PROTOCOL *CONST CfgMgrProtocol,
IN OUT EFI_ACPI_DESCRIPTION_HEADER **CONST Table
)
{
ACPI_PPTT_GENERATOR *Generator;
ASSERT (
(This != NULL) &&
(AcpiTableInfo != NULL) &&
(CfgMgrProtocol != NULL) &&
(AcpiTableInfo->TableGeneratorId == This->GeneratorID) &&
(AcpiTableInfo->AcpiTableSignature == This->AcpiTableSignature)
);
Generator = (ACPI_PPTT_GENERATOR *)This;
// Free any memory allocated by the generator
if (Generator->NodeIndexer != NULL) {
FreePool (Generator->NodeIndexer);
Generator->NodeIndexer = NULL;
}
if ((Table == NULL) || (*Table == NULL)) {
DEBUG ((DEBUG_ERROR, "ERROR: PPTT: Invalid Table Pointer\n"));
ASSERT (
(Table != NULL) &&
(*Table != NULL)
);
return EFI_INVALID_PARAMETER;
}
FreePool (*Table);
*Table = NULL;
return EFI_SUCCESS;
}
/** The PPTT Table Generator revision.
*/
#define PPTT_GENERATOR_REVISION CREATE_REVISION (1, 0)
/** The interface for the PPTT Table Generator.
*/
STATIC
ACPI_PPTT_GENERATOR PpttGenerator = {
// ACPI table generator header
{
// Generator ID
CREATE_STD_ACPI_TABLE_GEN_ID (EStdAcpiTableIdPptt),
// Generator Description
L"ACPI.STD.PPTT.GENERATOR",
// ACPI Table Signature
EFI_ACPI_6_4_PROCESSOR_PROPERTIES_TOPOLOGY_TABLE_STRUCTURE_SIGNATURE,
// ACPI Table Revision supported by this Generator
EFI_ACPI_6_4_PROCESSOR_PROPERTIES_TOPOLOGY_TABLE_REVISION,
// Minimum supported ACPI Table Revision
EFI_ACPI_6_3_PROCESSOR_PROPERTIES_TOPOLOGY_TABLE_REVISION,
// Creator ID
TABLE_GENERATOR_CREATOR_ID_ARM,
// Creator Revision
PPTT_GENERATOR_REVISION,
// Build Table function
BuildPpttTable,
// Free Resource function
FreePpttTableResources,
// Extended build function not needed
NULL,
// Extended build function not implemented by the generator.
// Hence extended free resource function is not required.
NULL
},
// PPTT Generator private data
// Processor topology node count
0,
// Count of Processor Hierarchy Nodes
0,
// Count of Cache Structures
0,
// Pointer to PPTT Node Indexer
NULL
};
/**
Register the Generator with the ACPI Table Factory.
@param [in] ImageHandle The handle to the image.
@param [in] SystemTable Pointer to the System Table.
@retval EFI_SUCCESS The Generator is registered.
@retval EFI_INVALID_PARAMETER A parameter is invalid.
@retval EFI_ALREADY_STARTED The Generator for the Table ID
is already registered.
**/
EFI_STATUS
EFIAPI
AcpiPpttLibConstructor (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
{
EFI_STATUS Status;
Status = RegisterAcpiTableGenerator (&PpttGenerator.Header);
DEBUG ((DEBUG_INFO, "PPTT: Register Generator. Status = %r\n", Status));
ASSERT_EFI_ERROR (Status);
return Status;
}
/**
Deregister the Generator from the ACPI Table Factory.
@param [in] ImageHandle The handle to the image.
@param [in] SystemTable Pointer to the System Table.
@retval EFI_SUCCESS The Generator is deregistered.
@retval EFI_INVALID_PARAMETER A parameter is invalid.
@retval EFI_NOT_FOUND The Generator is not registered.
**/
EFI_STATUS
EFIAPI
AcpiPpttLibDestructor (
IN EFI_HANDLE ImageHandle,
IN EFI_SYSTEM_TABLE *SystemTable
)
{
EFI_STATUS Status;
Status = DeregisterAcpiTableGenerator (&PpttGenerator.Header);
DEBUG ((DEBUG_INFO, "PPTT: Deregister Generator. Status = %r\n", Status));
ASSERT_EFI_ERROR (Status);
return Status;
}
|