summaryrefslogtreecommitdiffstats
path: root/src/usr/fapi2/plat_utils.C
blob: 5c4871a26961cc7376e28b2f6669cb4e68087c51 (plain)
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
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/fapi2/plat_utils.C $                                  */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2015,2019                        */
/* [+] International Business Machines Corp.                              */
/*                                                                        */
/*                                                                        */
/* Licensed under the Apache License, Version 2.0 (the "License");        */
/* you may not use this file except in compliance with the License.       */
/* You may obtain a copy of the License at                                */
/*                                                                        */
/*     http://www.apache.org/licenses/LICENSE-2.0                         */
/*                                                                        */
/* Unless required by applicable law or agreed to in writing, software    */
/* distributed under the License is distributed on an "AS IS" BASIS,      */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or        */
/* implied. See the License for the specific language governing           */
/* permissions and limitations under the License.                         */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
///
/// @file plat_utils.C
///
/// @brief Implements the plat_utils.H utility functions.
///
/// Note that platform code must provide the implementation.
///

#include <sys/time.h>
#include <utils.H>
#include <plat_trace.H>
#include <return_code.H>
#include <error_info.H>
#include <assert.h>
#include <plat_utils.H>
#include <hw_access.H>
#include <errl/errlentry.H>
#include <errl/errlmanager.H>
#include <hwpf_fapi2_reasoncodes.H>
#include <attributeenums.H>
#include <pnor/pnorif.H>
#include <p9_xip_image.h>
#include <p9_tor.H>
#include <p9_scan_compression.H>
#include <cen_ringId.H>
#include <scom/wakeup.H>
#include <util/misc.H>

//******************************************************************************
// Trace descriptors
//******************************************************************************
trace_desc_t* g_fapiTd;
trace_desc_t* g_fapiImpTd;
trace_desc_t* g_fapiScanTd;
trace_desc_t* g_fapiDbgTd;
trace_desc_t* g_fapiMfgTd;


//******************************************************************************
// Global TracInit objects. Construction will initialize the trace buffer
//******************************************************************************
TRAC_INIT(&g_fapiTd, FAPI_TRACE_NAME, 2*KILOBYTE);
TRAC_INIT(&g_fapiImpTd, FAPI_IMP_TRACE_NAME, 2*KILOBYTE);
TRAC_INIT(&g_fapiScanTd, FAPI_SCAN_TRACE_NAME, 4*KILOBYTE);
TRAC_INIT(&g_fapiDbgTd, FAPI_DBG_TRACE_NAME, 4*KILOBYTE);
TRAC_INIT(&g_fapiMfgTd, FAPI_MFG_TRACE_NAME, 4*KILOBYTE);
namespace fapi2
{

// Define global current_err
#ifndef PLAT_NO_THREAD_LOCAL_STORAGE
thread_local ReturnCode current_err;
#else
ReturnCode current_err;
#endif

///
/// @brief Retrieve the ring data from the centaur hw image
///        for a given ring id
///
/// @param[in]  i_target - TARGET_TYPE_MEMBUF_CHIP
/// @param[in]  i_ringId - Ring id to extract from hw image
/// @param[out] o_ringdata - uncompressed ring data
/// @param[out] o_ringLength - length of uncompressd ring in bits
/// @param[out] o_ringAddress - scom address of ring
///
/// @return fapi2::ReturnCode
///

template<>
ReturnCode  get_ring(Target<TARGET_TYPE_MEMBUF_CHIP>i_target,
        const RingId_t i_ringId,
        unsigned char *&o_ringData,
        size_t  &o_ringLength,
        uint64_t &o_ringAddress)
{

    FAPI_INF(">>>get_ring()");
    fapi2::ReturnCode l_fapi2Rc;

    errlHndl_t l_err = NULL;

    PNOR::SectionInfo_t l_info;

    P9XipSection l_ringSection;

    o_ringLength  = 0;
    o_ringAddress = 0;

    // buffer as the max size
    uint32_t l_ringBufSizeInBytes   = MAX_CENTAUR_RING_SIZE;

    // create some work spaces
    // max ring size in centaur is 76490 bits - allocate 10k buffers
    uint8_t * care  = (uint8_t*)malloc(l_ringBufSizeInBytes);

    void    * l_rs4RingData = malloc(l_ringBufSizeInBytes);

    do
    {
        // setup pointers to hw image data
        // Get Centaur hw image PNOR section info from PNOR RP
        l_err = PNOR::getSectionInfo( PNOR::CENTAUR_HW_IMG, l_info );

        if( l_err )
        {
            FAPI_ERR("get_ring() - call to getSectionInfo("
                    "PNOR::CENTAUR_HW_IMG failed");

            l_fapi2Rc.setPlatDataPtr(reinterpret_cast<void *>(l_err));
            break;
        }

        // local pointer to the centaur hw image
        char * l_centaurHwImageAddr = reinterpret_cast<char*>(l_info.vaddr);

        FAPI_DBG("CENTAUR_HW_IMG addr = 0x%.16llX ",
                l_centaurHwImageAddr);

         TRACDBIN(g_fapiImpTd,"Centaur Image Header: ",
                  l_centaurHwImageAddr, sizeof(P9XipHeader));

        if(((P9XipHeader*)l_centaurHwImageAddr)->iv_magic
                                                == P9_XIP_MAGIC_CENTAUR)
        {
            uint8_t  l_ddLevel    = UNDEFINED_DD_LEVEL;
            MyBool_t l_bDdSupport = UNDEFINED_BOOLEAN;

            int l_rc =  p9_xip_dd_section_support(l_centaurHwImageAddr,
                                        P9_XIP_SECTION_HW_RINGS, &l_bDdSupport);

            if( l_rc != INFRASTRUCT_RC_SUCCESS )
            {
                FAPI_INF("get_ring() - call to p9_xip_dd_section_support()"
                        " call failed with rc = %d ",l_rc);
                /*@
                 * @errortype
                 * @moduleid     fapi2::MOD_FAPI2_GET_RING
                 * @reasoncode   fapi2::RC_DD_SUPPORT_CHECK_FAILED
                 * @userdata1    requested section id
                 * @userdata2    return code from p9_xip_dd_section_support
                 * @devdesc      Call to p9_xip_dd_section_support failed.
                 * @custdesc     Internal firmware error
                 */
                l_err = new ERRORLOG::ErrlEntry(
                        ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                        fapi2::MOD_FAPI2_GET_RING,
                        fapi2::RC_DD_SUPPORT_CHECK_FAILED,
                        P9_XIP_SECTION_HW_RINGS,
                        l_rc,
                        true /*SW error*/);

                l_err->collectTrace(FAPI_TRACE_NAME);

                l_fapi2Rc.setPlatDataPtr(reinterpret_cast<void *>(l_err));

                break;
            }

            // if there is ddcontainer support, then set dd level to 20
            // since that is the only value centaur currently supports
            if( l_bDdSupport == true )
            {
                l_ddLevel = 0x20;
            }

            // get the offset to the ring section for the tor_get_ring call
            l_rc = p9_xip_get_section((const void*)l_centaurHwImageAddr,
                    P9_XIP_SECTION_HW_RINGS, &l_ringSection, l_ddLevel);

            if( l_rc != INFRASTRUCT_RC_SUCCESS )
            {
                FAPI_INF("get_ring() - call to p9_xip_get_section()"
                        " call failed with rc = %d ",l_rc);
                /*@
                 * @errortype
                 * @moduleid     fapi2::MOD_FAPI2_GET_RING
                 * @reasoncode   fapi2::RC_GET_RING_SECTION_FAILED
                 * @userdata1    requested section id
                 * @userdata2    return code from p9_xip_get_section
                 * @devdesc      Call to p9_xip_get_section to retrieve
                 *               the hw rings section has failed. See
                 *               userdata2 for the return code value.
                 * @custdesc     Internal firmware error
                 */
                l_err = new ERRORLOG::ErrlEntry(
                        ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                        fapi2::MOD_FAPI2_GET_RING,
                        fapi2::RC_GET_RING_SECTION_FAILED,
                        P9_XIP_SECTION_HW_RINGS,
                        l_rc,
                        true /*SW error*/);

                l_err->collectTrace(FAPI_TRACE_NAME);

                l_fapi2Rc.setPlatDataPtr(reinterpret_cast<void *>(l_err));

                break;
            }

            FAPI_INF("get_ring() - got the ring section..");

            char ringName[MAX_RING_NAME_LENGTH] = {0};

            // only a single instance for centaur
            uint8_t instanceId = 1;

            // only base rings in centaur image
            RingVariant_t ringVariant = RV_BASE;

            // default ppe type
            PpeType_t ppeType = PT_SBE;

            // extract rs4 ring info from the hw image - pass in a big buffer
            // and skip the extra call to get the compressed ring size
            int rc = tor_access_ring(l_ringSection.iv_offset +
                    l_centaurHwImageAddr,
                    i_ringId,
                    l_ddLevel,
                    ppeType,
                    ringVariant,
                    instanceId,
                    GET_SINGLE_RING,
                    &l_rs4RingData,
                    l_ringBufSizeInBytes,  //compressed ring size here..
                    ringName,
                    0 );

            if( rc != 0 )
            {
                FAPI_ERR("get_ring() - call to tor_access_ring()"
                        " call failed with rc = %d ",rc);

                if( rc != TOR_RING_NOT_FOUND )
                {
                    /*@
                     * @errortype
                     * @moduleid     fapi2::MOD_FAPI2_GET_RING
                     * @reasoncode   fapi2::RC_ACCESS_RING_FAILED
                     * @userdata1    requested ring id
                     * @userdata2    return code from tor_access_ring
                     * @devdesc      A call to the tor_access_ring function
                     *               failed. There could be an issue with the
                     *               centaur hardware image. See userdata2 for
                     *               the return code value.
                     *
                     * @custdesc     Internal firmware error
                     */
                    l_err = new ERRORLOG::ErrlEntry(
                            ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                            fapi2::MOD_FAPI2_GET_RING,
                            fapi2::RC_ACCESS_RING_FAILED,
                            i_ringId,
                            rc,
                            true /*SW error*/);

                    l_err->collectTrace(FAPI_TRACE_NAME);

                    l_fapi2Rc.setPlatDataPtr(reinterpret_cast<void *>(l_err));
                }
                break;
            };

            FAPI_INF("Found the ring:" \
                    "  Name: %s" \
                    "  Compressed size: %d bytes",
                    ringName, l_ringBufSizeInBytes);

            CompressedScanData *rs4 = (CompressedScanData*)l_rs4RingData;

            RingId_t l_ringId   = be16toh(rs4->iv_ringId);

            if( l_ringId == i_ringId )
            {
                FAPI_DBG("get_ring() - its the correct ring....");

                // reset to the buffer size, it was modified above
                // in the tor call
                l_ringBufSizeInBytes = MAX_CENTAUR_RING_SIZE;


                uint32_t l_ringSizeInBits = 0;

                // expand the ring
                rc = _rs4_decompress(o_ringData, care, l_ringBufSizeInBytes,
                        &l_ringSizeInBits, rs4);

                if( rc != SCAN_COMPRESSION_OK )
                {
                    FAPI_ERR("get_ring() - call to _rs4_decompress()"
                           " failed rc = %d",rc);
                    /*@
                     * @errortype
                     * @moduleid     fapi2::MOD_FAPI2_GET_RING
                     * @reasoncode   fapi2::RC_FAILED_TO_DECOMPRESS_RING
                     * @userdata1    return code from scan compression
                     * @devdesc      There was an error returned from the
                     *               RS4 decompression routine see userdata1
                     *               for return code value.
                     * @custdesc     Internal firmware error
                     */
                    l_err = new ERRORLOG::ErrlEntry(
                            ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                            fapi2::MOD_FAPI2_GET_RING,
                            fapi2::RC_FAILED_TO_DECOMPRESS_RING,
                            rc,
                            0,
                            true /*SW error*/);

                    l_err->collectTrace(FAPI_TRACE_NAME);

                    l_fapi2Rc.setPlatDataPtr(reinterpret_cast<void *>(l_err));

                    break;
                }

                FAPI_DBG("get_ring() - call to _rs4_decompress() worked.."
                        " ring size in bits %d",l_ringSizeInBits );

                // return the ring lenght in bits
                o_ringLength    = l_ringSizeInBits;

                // grab the address from the Generic ring id list
                GenRingIdList* l_idList;

                rc = ringid_get_ring_list(CT_CEN, l_ringId, &l_idList);

                if (rc != INFRASTRUCT_RC_SUCCESS)
                {
                    FAPI_ERR("get_ring() - call to ringid_get_ring_list() "
                             "failed w/rc=%d", rc);

                    /*@
                     * @errortype
                     * @moduleid     fapi2::MOD_FAPI2_GET_RING
                     * @reasoncode   fapi2::RC_FAILED_TO_GET_RING_LIST
                     * @userdata1    return code from ringid_get_ring_list
                     * @devdesc      There was an error returned from the
                     *               common ringid_get_ring_list API - see
                     *               userdata1 for return code value.
                     * @custdesc     Internal firmware error
                     */
                    l_err = new ERRORLOG::ErrlEntry(
                            ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                            fapi2::MOD_FAPI2_GET_RING,
                            fapi2::RC_FAILED_TO_GET_RING_LIST,
                            rc,
                            0,
                            true /*SW error*/);

                    l_err->collectTrace(FAPI_TRACE_NAME);

                    l_fapi2Rc.setPlatDataPtr(reinterpret_cast<void *>(l_err));

                    break;
                }

                o_ringAddress = l_idList->scanScomAddress;

            }
            else
            {
                // didnt find the ring
                FAPI_INF("get_ring() - Ring not found, ringId = %d ",i_ringId);

            }
        }
        else
        {
            FAPI_INF("get_ring() - not a centaur hw image magic = 0x%llx ",
                    ((P9XipHeader*)l_centaurHwImageAddr)->iv_magic);
            /*@
             * @errortype
             * @moduleid     fapi2::MOD_FAPI2_GET_RING
             * @reasoncode   fapi2::RC_INCORRECT_HW_IMAGE_TYPE
             * @userdata1    expected HW image type
             * @userdata2    actual HW image type
             * @devdesc      The magic header for the hw image is not
             *               correct - expected value is "XIP CNTR"
             * @custdesc     Internal firmware error
             */
            l_err = new ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                    fapi2::MOD_FAPI2_GET_RING,
                    fapi2::RC_INCORRECT_HW_IMAGE_TYPE,
                    P9_XIP_MAGIC_CENTAUR,
                    ((P9XipHeader*)l_centaurHwImageAddr)->iv_magic,
                    true /*SW error*/);

            l_err->collectTrace(FAPI_TRACE_NAME);

            l_fapi2Rc.setPlatDataPtr(reinterpret_cast<void *>(l_err));
        }

    }while(0);

    // free the compressed ring buffer and the care buffer,
    // caller will need to free the actual ring data buffer.
    free(l_rs4RingData);
    free(care);

    FAPI_INF("<<<get_ring()");

    return l_fapi2Rc;
}

///
/// @brief Translates a FAPI callout priority to an HWAS callout priority
///
/// @param[i] i_fapiPri FAPI callout priority
///
/// @return HWAS callout priority
///
HWAS::callOutPriority xlateCalloutPriority(
        const fapi2::CalloutPriorities::CalloutPriority i_fapiPri)
{
    // Use the CalloutPriority enum value as an index
    HWAS::callOutPriority l_priority = HWAS::SRCI_PRIORITY_HIGH;
    size_t l_index = i_fapiPri;

    const HWAS::callOutPriority HWAS_PRI[] = {HWAS::SRCI_PRIORITY_LOW,
        HWAS::SRCI_PRIORITY_MED,
        HWAS::SRCI_PRIORITY_HIGH,
        HWAS::SRCI_PRIORITY_NONE};

    if (l_index < (sizeof(HWAS_PRI)/sizeof(HWAS::callOutPriority)))
    {
        l_priority = HWAS_PRI[l_index];
    }
    else
    {
        FAPI_ERR("fapi2::xlateCalloutPriority: Unknown priority 0x%x, assuming HIGH",
                i_fapiPri);
    }

    return l_priority;
}

///
/// * @brief Translates a FAPI Clock HW callout to an HWAS clock callout
///
/// * @param[i] i_fapiClock FAPI Clock HW callout
///
/// * @return HWAS Clock HW callout
///
HWAS::clockTypeEnum xlateClockHwCallout(
        const fapi2::HwCallouts::HwCallout i_fapiClock)
{
    // Use the HwCallout enum value as an index
    HWAS::clockTypeEnum l_clock = HWAS::TODCLK_TYPE;
    size_t l_index = i_fapiClock;

    const HWAS::clockTypeEnum HWAS_CLOCK[] = {
        HWAS::TODCLK_TYPE,
        HWAS::MEMCLK_TYPE,
        HWAS::OSCREFCLK_TYPE,
        HWAS::OSCPCICLK_TYPE};

    if (l_index < (sizeof(HWAS_CLOCK)/sizeof(HWAS::clockTypeEnum)))
    {
        l_clock = HWAS_CLOCK[l_index];
    }
    else
    {
        FAPI_ERR("fapi::xlateClockHwCallout: Unknown clock 0x%x, assuming TOD",
                i_fapiClock);
    }

    return l_clock;
}

///
/// * @brief Translates a FAPI Part HW callout to an HWAS part callout
///
/// * @param[i] i_fapiPart FAPI part HW callout
///
/// * @return HWAS part HW callout
///
HWAS::partTypeEnum xlatePartHwCallout(
        const fapi2::HwCallouts::HwCallout i_fapiPart)
{
    // Use the HwCallout enum value as an index
    HWAS::partTypeEnum l_part = HWAS::NO_PART_TYPE;

    // clock xlate function above assumes indexes match
    // between 2 enums.  seems better to do it explicitly

    switch (i_fapiPart)
    {
        case HwCallouts::FLASH_CONTROLLER_PART:
            l_part = HWAS::FLASH_CONTROLLER_PART_TYPE;
            break;
        case HwCallouts::PNOR_PART:
            l_part = HWAS::PNOR_PART_TYPE;
            break;
        case HwCallouts::SBE_SEEPROM_PART:
            l_part = HWAS::SBE_SEEPROM_PART_TYPE;
            break;
        case HwCallouts::VPD_PART:
            l_part = HWAS::VPD_PART_TYPE;
            break;
        case HwCallouts::LPC_SLAVE_PART:
            l_part = HWAS::LPC_SLAVE_PART_TYPE;
            break;
        case HwCallouts::GPIO_EXPANDER_PART:
            l_part = HWAS::GPIO_EXPANDER_PART_TYPE;
            break;
        case HwCallouts::SPIVID_SLAVE_PART:
            l_part = HWAS::SPIVID_SLAVE_PART_TYPE;
            break;
        case HwCallouts::TOD_CLOCK:
            l_part = HWAS::TOD_CLOCK;
            break;
        case HwCallouts::MEM_REF_CLOCK:
            l_part = HWAS::MEM_REF_CLOCK;
            break;
        case HwCallouts::PROC_REF_CLOCK:
            l_part = HWAS::PROC_REF_CLOCK;
            break;
        case HwCallouts::PCI_REF_CLOCK:
            l_part = HWAS::PCI_REF_CLOCK;
            break;

    }

    return l_part;
}

///
/// * @brief Translates a FAPI procedure callout to an HWAS procedure callout
///
/// * @param[i] i_fapiProc FAPI procedure callout
///
/// * @return HWAS procedure callout
///
HWAS::epubProcedureID xlateProcedureCallout(
        const fapi2::ProcedureCallouts::ProcedureCallout i_fapiProc)
{
    // Use the ProcedureCallout enum value as an index
    HWAS::epubProcedureID l_proc = HWAS::EPUB_PRC_HB_CODE;
    size_t l_index = i_fapiProc;

    //@TODO RTC:124673 - need to verify the order still matches
    const HWAS::epubProcedureID HWAS_PROC[] = {
        HWAS::EPUB_PRC_HB_CODE,
        HWAS::EPUB_PRC_LVL_SUPP,
        HWAS::EPUB_PRC_MEMORY_PLUGGING_ERROR,
        HWAS::EPUB_PRC_EIBUS_ERROR};

    if (l_index < (sizeof(HWAS_PROC)/sizeof(HWAS::epubProcedureID)))
    {
        l_proc = HWAS_PROC[l_index];
    }
    else
    {
        FAPI_ERR("fapi2::xlateProcedureCallout: Unknown proc 0x%x, assuming CODE",
                i_fapiProc);
    }

    return l_proc;
}

///
/// * @brief Translates a FAPI2 target type to a Targeting target type
///
/// * @param[i] i_targetType FAPI2 target type
/// * @param[o] o_class      Targeting class
/// * @param[o] o_type       Targeting type
///
void xlateTargetType(const fapi2::TargetType i_targetType,
        TARGETING::CLASS & o_class,
        TARGETING::TYPE & o_type)
{
    switch (i_targetType)
    {
        case fapi2::TARGET_TYPE_SYSTEM:
            o_class = TARGETING::CLASS_SYS;
            o_type = TARGETING::TYPE_SYS;
            break;
        case fapi2::TARGET_TYPE_DIMM:
            o_class = TARGETING::CLASS_LOGICAL_CARD;
            o_type = TARGETING::TYPE_DIMM;
            break;
        case fapi2::TARGET_TYPE_PROC_CHIP:
            o_class = TARGETING::CLASS_CHIP;
            o_type = TARGETING::TYPE_PROC;
            break;
        case fapi2::TARGET_TYPE_MEMBUF_CHIP:
            o_class = TARGETING::CLASS_CHIP;
            o_type = TARGETING::TYPE_MEMBUF;
            break;
        case fapi2::TARGET_TYPE_EX:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_EX;
            break;
        case fapi2::TARGET_TYPE_MBA:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_MBA;
            break;
        case fapi2::TARGET_TYPE_MCS:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_MCS;
            break;
        case fapi2::TARGET_TYPE_XBUS:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_XBUS;
            break;
        case fapi2::TARGET_TYPE_L4:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_L4;
            break;
        case fapi2::TARGET_TYPE_CORE:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_CORE;
            break;
        case fapi2::TARGET_TYPE_EQ:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_EQ;
            break;
        case fapi2::TARGET_TYPE_MCA:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_MCA;
            break;
        case fapi2::TARGET_TYPE_MCBIST:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_MCBIST;
            break;
        case fapi2::TARGET_TYPE_MI:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_MI;
            break;
        case fapi2::TARGET_TYPE_CAPP:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_CAPP;
            break;
        case fapi2::TARGET_TYPE_DMI:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_DMI;
            break;
        case fapi2::TARGET_TYPE_OBUS:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_OBUS;
            break;
        case fapi2::TARGET_TYPE_OBUS_BRICK:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_OBUS_BRICK;
            break;
        case fapi2::TARGET_TYPE_SBE:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_SBE;
            break;
        case fapi2::TARGET_TYPE_PPE:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_PPE;
            break;
        case fapi2::TARGET_TYPE_PERV:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_PERV;
            break;
        case fapi2::TARGET_TYPE_PEC:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_PEC;
            break;
        case fapi2::TARGET_TYPE_PHB:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_PHB;
            break;
        case fapi2::TARGET_TYPE_MC:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_MC;
            break;
        case fapi2::TARGET_TYPE_OMI:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_OMI;
            break;
        case fapi2::TARGET_TYPE_OMIC:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_OMIC;
            break;
        case fapi2::TARGET_TYPE_MCC:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_MCC;
            break;
        case fapi2::TARGET_TYPE_OCMB_CHIP:
            o_class = TARGETING::CLASS_CHIP;
            o_type = TARGETING::TYPE_OCMB_CHIP;
            break;
        case fapi2::TARGET_TYPE_MEM_PORT:
            o_class = TARGETING::CLASS_UNIT;
            o_type = TARGETING::TYPE_MEM_PORT;
            break;
        default:
            o_class = TARGETING::CLASS_NA;
            o_type = TARGETING::TYPE_NA;
    }
}

///
/// @brief Is this target type pair a physical parent <-> child?
/// @return Return true if the types have physically parent <-> child
///         relationship; false otherwise.
///
bool isPhysParentChild(const TargetType i_parentType,
                       const TargetType i_childType)
{
    bool l_result = false;
    if (i_parentType == TARGET_TYPE_PROC_CHIP)
    {
        if ( (i_childType & (TARGET_TYPE_EX     |
                             TARGET_TYPE_MCS    |
                             TARGET_TYPE_XBUS   |
                             TARGET_TYPE_ABUS   |
                             TARGET_TYPE_CORE   |
                             TARGET_TYPE_EQ     |
                             TARGET_TYPE_MCA    |
                             TARGET_TYPE_MCBIST |
                             TARGET_TYPE_MC     |
                             TARGET_TYPE_MCC    |
                             TARGET_TYPE_OMIC   |
                             TARGET_TYPE_OMI    |
                             TARGET_TYPE_MI     |
                             TARGET_TYPE_CAPP   |
                             TARGET_TYPE_DMI    |
                             TARGET_TYPE_OBUS   |
                             TARGET_TYPE_OBUS_BRICK     |
                             TARGET_TYPE_SBE    |
                             TARGET_TYPE_PPE    |
                             TARGET_TYPE_PERV   |
                             TARGET_TYPE_PEC)) != 0 )
        {
            l_result = true;
        }
    }
    else if (i_parentType == TARGET_TYPE_MEMBUF_CHIP)
    {
        if ( (i_childType & (TARGET_TYPE_MBA | TARGET_TYPE_L4)) != 0 )
        {
            l_result = true;
        }
    }
    else if (i_parentType == TARGET_TYPE_OCMB_CHIP)
    {
        if ( (i_childType & (TARGET_TYPE_MEM_PORT)) != 0 )
        {
            l_result = true;
        }
    }
    return l_result;
}

///
/// @brief Processes any FFDC in the ReturnCode Error Information and adds them
/// to the error log
///
/// @param[i] i_errInfo  Reference to ReturnCode Error Information
/// @param[io] io_pError Errorlog Handle
///
void processEIFfdcs(const ErrorInfo & i_errInfo,
                    errlHndl_t io_pError)
{
    // Iterate through the FFDC sections, adding each to the error log
    uint32_t l_size = 0;

    for (auto itr = i_errInfo.iv_ffdcs.begin();
         itr != i_errInfo.iv_ffdcs.end(); ++itr)
    {
        const void * l_pFfdc = (*itr)->getData(l_size);
        uint32_t l_ffdcId = (*itr)->getFfdcId();

        // Add the FFDC ID as the first word, then the FFDC data
        FAPI_DBG("processEIFfdcs: Adding %d bytes of FFDC (id:0x%08x)", l_size,
                 l_ffdcId);
        ERRORLOG::ErrlUD * l_pUD = io_pError->addFFDC(
            HWPF_COMP_ID, &l_ffdcId, sizeof(l_ffdcId), 1,
            HWPF_FAPI2_UDT_HWP_FFDC);

        if (l_pUD)
        {
            io_pError->appendToFFDC(l_pUD, l_pFfdc, l_size);
        }
    }
}

///
/// @brief Processes any HW callouts requests in the ReturnCode Error
///        Information and adds them to the error log
///
/// @param[i] i_errInfo  Reference to ReturnCode Error Information
/// @param[io] io_pError Errorlog Handle
///
void processEIHwCallouts(const ErrorInfo & i_errInfo,
                         errlHndl_t io_pError)
{
    // Iterate through the HW callout requests, adding each to the error log
    for (auto itr = i_errInfo.iv_hwCallouts.begin();
         itr != i_errInfo.iv_hwCallouts.end(); ++itr)
    {
        HWAS::callOutPriority l_priority =
            xlateCalloutPriority((*itr)->iv_calloutPriority);

        HwCallouts::HwCallout l_hw = ((*itr)->iv_hw);

        TARGETING::Target * l_pRefTarget =
            reinterpret_cast<TARGETING::Target*>((*itr)->iv_refTarget.get());

        if ( ((l_hw == HwCallouts::TOD_CLOCK) ||
              (l_hw == HwCallouts::MEM_REF_CLOCK) ||
              (l_hw == HwCallouts::PROC_REF_CLOCK) ||
              (l_hw == HwCallouts::PCI_REF_CLOCK)) &&
             l_pRefTarget != NULL)
        {
            HWAS::clockTypeEnum l_clock =
                xlateClockHwCallout((*itr)->iv_hw);

            FAPI_ERR("processEIHwCallouts: Adding clock-callout"
                     " (clock:%d, pri:%d)",
                     l_clock, l_priority);

            //  Force PCI clocks to be deconfigured and garded
            if( l_hw == HwCallouts::PCI_REF_CLOCK )
            {
                io_pError->addClockCallout(l_pRefTarget,
                                           l_clock,
                                           l_priority,
                                           HWAS::DECONFIG,
                                           HWAS::GARD_Predictive);
            }
            else
            {
                io_pError->addClockCallout(l_pRefTarget, l_clock, l_priority);
            }
        }
        else if ( (l_hw == HwCallouts::FLASH_CONTROLLER_PART) ||
                  (l_hw == HwCallouts::PNOR_PART) ||
                  (l_hw == HwCallouts::SBE_SEEPROM_PART) ||
                  (l_hw == HwCallouts::VPD_PART) ||
                  (l_hw == HwCallouts::LPC_SLAVE_PART) ||
                  (l_hw == HwCallouts::GPIO_EXPANDER_PART) ||
                  (l_hw == HwCallouts::SPIVID_SLAVE_PART) )
        {
            HWAS::partTypeEnum l_part =
                xlatePartHwCallout((*itr)->iv_hw);

            FAPI_ERR("processEIHwCallouts: Adding part-callout"
                     " (part:%d, pri:%d)",
                     l_part, l_priority);
            io_pError->addPartCallout(l_pRefTarget, l_part, l_priority);
        }
        else
        {
            FAPI_ERR("processEIHwCallouts: Unsupported HW callout (%d)", l_hw);
            io_pError->addPartCallout(l_pRefTarget, HWAS::NO_PART_TYPE,
                     l_priority);
            io_pError->addProcedureCallout( HWAS::EPUB_PRC_HB_CODE, l_priority);
        }
    }
}

///
/// @brief Processes any Procedure callouts requests in the ReturnCode Error
///        Information and adds them to the error log
///
/// @param[i] i_errInfo  Reference to ReturnCode Error Information
/// @param[io] io_pError Errorlog Handle
///
void processEIProcCallouts(const ErrorInfo & i_errInfo,
                           errlHndl_t io_pError)
{
    // Iterate through the procedure callout requests, adding each to the error
    // log
    for (auto itr = i_errInfo.iv_procedureCallouts.begin();
         itr != i_errInfo.iv_procedureCallouts.end(); ++itr)
    {
        HWAS::epubProcedureID l_procedure =
            xlateProcedureCallout((*itr)->iv_procedure);

        HWAS::callOutPriority l_priority =
            xlateCalloutPriority((*itr)->iv_calloutPriority);

        FAPI_DBG("processEIProcCallouts: Adding proc-callout"
                 " (proc:0x%02x, pri:%d)",
                 l_procedure, l_priority);
        io_pError->addProcedureCallout(l_procedure, l_priority);
    }
}

///
/// @brief Processes any Bus callouts requests in the ReturnCode Error
///        Information and adds them to the error log
///
/// @param[i] i_errInfo  Reference to ReturnCode Error Information
/// @param[io] io_pError Errorlog Handle
///
void processEIBusCallouts(const ErrorInfo & i_errInfo,
                          errlHndl_t io_pError)
{
    // Iterate through the bus callout requests, adding each to the error log
    for (auto itr = i_errInfo.iv_busCallouts.begin();
         itr != i_errInfo.iv_busCallouts.end(); ++itr)
    {
        TARGETING::Target * l_pTarget1 =
            reinterpret_cast<TARGETING::Target*>((*itr)->iv_target1.get());

        TARGETING::Target * l_pTarget2 =
            reinterpret_cast<TARGETING::Target*>((*itr)->iv_target2.get());

        HWAS::callOutPriority l_priority =
            xlateCalloutPriority((*itr)->iv_calloutPriority);

        bool l_busTypeValid = true;
        HWAS::busTypeEnum l_busType = HWAS::FSI_BUS_TYPE;
        TARGETING::TYPE l_type1 = l_pTarget1->getAttr<TARGETING::ATTR_TYPE>();
        TARGETING::TYPE l_type2 = l_pTarget2->getAttr<TARGETING::ATTR_TYPE>();

        if ( ((l_type1 == TARGETING::TYPE_MCS) &&
              (l_type2 == TARGETING::TYPE_MEMBUF)) ||
             ((l_type1 == TARGETING::TYPE_MEMBUF) &&
              (l_type2 == TARGETING::TYPE_MCS)) )
        {
            l_busType = HWAS::DMI_BUS_TYPE;
        }
        else if ( ((l_type1 == TARGETING::TYPE_DMI) &&
                   (l_type2 == TARGETING::TYPE_MEMBUF)) ||
                  ((l_type1 == TARGETING::TYPE_MEMBUF) &&
                   (l_type2 == TARGETING::TYPE_DMI)) )
        {
            l_busType = HWAS::DMI_BUS_TYPE;
        }
        else if ((l_type1 == TARGETING::TYPE_ABUS) &&
                 (l_type2 == TARGETING::TYPE_ABUS))
        {
            l_busType = HWAS::A_BUS_TYPE;
        }
        else if ((l_type1 == TARGETING::TYPE_XBUS) &&
                 (l_type2 == TARGETING::TYPE_XBUS))
        {
            l_busType = HWAS::X_BUS_TYPE;
        }
        else if ((l_type1 == TARGETING::TYPE_OBUS) &&
                 (l_type2 == TARGETING::TYPE_OBUS))
        {
            l_busType = HWAS::O_BUS_TYPE;
        }
        else
        {
            FAPI_ERR("processEIBusCallouts: Bus between target types not known (0x%08x:0x%08x)",
                     l_type1, l_type2);
            l_busTypeValid = false;
        }

        if (l_busTypeValid)
        {
            FAPI_DBG("processEIBusCallouts: Adding bus-callout"
                     " (bus:%d, pri:%d)",
                     l_busType, l_priority);
            io_pError->addBusCallout(l_pTarget1, l_pTarget2, l_busType,
                                     l_priority);
        }
    }
}

///
/// @brief Processes any Callout/Deconfigure/GARD requests in the
///        ReturnCode Error Information and adds them to the error log
///
/// @param[i] i_errInfo  Reference to ReturnCode Error Information
/// @param[io] io_pError Errorlog Handle
///
void processEICDGs(const ErrorInfo & i_errInfo,
                   errlHndl_t io_pError)
{
    // Iterate through the CGD requests, adding each to the error log
    for (auto itr = i_errInfo.iv_CDGs.begin();
         itr != i_errInfo.iv_CDGs.end(); ++itr)
    {
        TARGETING::Target * l_pTarget =
            reinterpret_cast<TARGETING::Target*>((*itr)->iv_target.get());

        HWAS::callOutPriority l_priority =
            xlateCalloutPriority((*itr)->iv_calloutPriority);

        HWAS::DeconfigEnum l_deconfig = HWAS::NO_DECONFIG;
        if ((*itr)->iv_deconfigure)
        {
            l_deconfig = HWAS::DELAYED_DECONFIG;
        }

        HWAS::GARD_ErrorType l_gard = HWAS::GARD_NULL;
        if ((*itr)->iv_gard)
        {
            l_gard = HWAS::GARD_Unrecoverable;
        }

        FAPI_DBG("processEICDGs: Calling out target"
                 " (huid:%.8x, pri:%d, deconf:%d, gard:%d)",
                 TARGETING::get_huid(l_pTarget), l_priority, l_deconfig,
                 l_gard);
        io_pError->addHwCallout(l_pTarget, l_priority, l_deconfig, l_gard);
    }

}

///
/// @brief Returns child targets to Callout/Deconfigure/GARD
///
/// @param[i] i_parentTarget FAPI2 Parent Target
/// @param[i] i_childType    FAPI2 Child Type
/// @param[i] i_childPort    Child Port Number
///                            For DIMMs: MBA Port Number
///                            Else unused
/// @param[i] i_childNum     Child Number
///                            For DIMMs: DIMM Socket Number
///                            For Chips: Chip Position
///                            For Chiplets: Chiplet Position
/// @param[o] o_childTargets List of child targets matching input
///                            criteria.
///
void getChildTargetsForCDG(
             const fapi2::Target<fapi2::TARGET_TYPE_ALL>& i_parentTarget,
             const fapi2::TargetType i_childType,
             const uint8_t i_childPort,
             const uint8_t i_childNum,
             TARGETING::TargetHandleList & o_childTargets)
{
    o_childTargets.clear();

    do
    {
        // Get the parent TARGETING::Target
        TARGETING::Target * l_pTargParent =
            reinterpret_cast<TARGETING::Target *>(i_parentTarget.get());

        if (l_pTargParent == NULL)
        {
            FAPI_ERR("getChildTargetsForCDG: NULL Target pointer");
            break;
        }

        // Find if the child target type is a dimm, chip or chiplet
        bool l_childIsDimm = false;
        bool l_childIsChip = false;
        bool l_childIsChiplet = false;

        if (i_childType == fapi2::TARGET_TYPE_DIMM)
        {
            l_childIsDimm = true;
        }
        else
        {
            l_childIsChip = fapi2::Target<TARGET_TYPE_ALL>::isChip(i_childType);
            if (!l_childIsChip)
            {
                l_childIsChiplet = fapi2::Target<TARGET_TYPE_ALL>::
                                               isChiplet(i_childType);
            }
        }

        // Translate the FAPI child target type into TARGETING Class/Type
        TARGETING::CLASS l_targChildClass = TARGETING::CLASS_NA;
        TARGETING::TYPE l_targChildType = TARGETING::TYPE_NA;
        xlateTargetType(i_childType, l_targChildClass, l_targChildType);

        if (l_targChildType == TARGETING::TYPE_NA)
        {
            FAPI_ERR("getChildTargetsForCDG: Could not xlate child type (0x%08x)",
                     i_childType);
            break;
        }

        // Get the child targets
        TARGETING::TargetHandleList l_targChildList;

        if ( isPhysParentChild(i_parentTarget.getType(), i_childType) )
        {
            // Child by containment
            TARGETING::getChildChiplets(l_targChildList, l_pTargParent,
                                        l_targChildType);
            FAPI_ERR("getChildTargetsForCDG: Got %d candidate children by containment",
                     l_targChildList.size());
        }
        else
        {
            // Assumption is child by affinity
            TARGETING::getChildAffinityTargets(l_targChildList, l_pTargParent,
                                               l_targChildClass,
                                               l_targChildType);
            FAPI_ERR("getChildTargetsForCDG: Got %d candidate children by affinity",
                     l_targChildList.size());
        }

        // Filter out child targets based on type and input port/number
        for (TARGETING::TargetHandleList::const_iterator
                l_itr = l_targChildList.begin();
             l_itr != l_targChildList.end(); ++l_itr)
        {
            if (l_childIsDimm)
            {
                // Match i_childPort and i_childNum
                if ( ((i_childPort == ErrorInfoChildrenCDG::ALL_CHILD_PORTS) ||
                      (i_childPort ==
                           (*l_itr)->getAttr<TARGETING::ATTR_CEN_MBA_PORT>()))
                &&
                     ((i_childNum == ErrorInfoChildrenCDG::ALL_CHILD_NUMBERS) ||
                      (i_childNum ==
                           (*l_itr)->getAttr<TARGETING::ATTR_CEN_MBA_DIMM>())) )
                {
                    o_childTargets.push_back(*l_itr);
                }
            }
            else if (l_childIsChip)
            {
                // Match i_childNum
                if ((i_childNum == ErrorInfoChildrenCDG::ALL_CHILD_NUMBERS) ||
                    (i_childNum ==
                         (*l_itr)->getAttr<TARGETING::ATTR_POSITION>()))
                {
                    o_childTargets.push_back(*l_itr);
                }
            }
            else if (l_childIsChiplet)
            {
                // Match i_childNum
                if ((i_childNum == ErrorInfoChildrenCDG::ALL_CHILD_NUMBERS) ||
                    (i_childNum ==
                         (*l_itr)->getAttr<TARGETING::ATTR_CHIP_UNIT>()))
                {
                    o_childTargets.push_back(*l_itr);
                }
            }
            else
            {
                // Do not match on anything
                o_childTargets.push_back(*l_itr);
            }
        }
    } while(0);
}

///
/// @brief Processes any Children Callout/Deconfigure/GARD requests in the
///        ReturnCode Error Information and adds them to the error log
///
/// @param[i] i_errInfo  Reference to ReturnCode Error Information
/// @param[io] io_pError Errorlog Handle
///
void processEIChildrenCDGs(const ErrorInfo & i_errInfo,
                           errlHndl_t io_pError)
{
    // Iterate through the Child CGD requests, adding each to the error log
    for (auto itr = i_errInfo.iv_childrenCDGs.begin();
         itr != i_errInfo.iv_childrenCDGs.end(); ++itr)
    {
        HWAS::callOutPriority l_priority =
            xlateCalloutPriority((*itr)->iv_calloutPriority);

        HWAS::DeconfigEnum l_deconfig = HWAS::NO_DECONFIG;
        if ((*itr)->iv_deconfigure)
        {
            l_deconfig = HWAS::DELAYED_DECONFIG;
        }

        HWAS::GARD_ErrorType l_gard = HWAS::GARD_NULL;
        if ((*itr)->iv_gard)
        {
            l_gard = HWAS::GARD_Unrecoverable;
        }

        // Get a list of children to callout
        TARGETING::TargetHandleList l_children;
        getChildTargetsForCDG((*itr)->iv_parent,
                              (*itr)->iv_childType,
                              (*itr)->iv_childPort,
                              (*itr)->iv_childNumber,
                              l_children);

        // Callout/Deconfigure/GARD each child as appropriate
        for (TARGETING::TargetHandleList::const_iterator
                itr = l_children.begin();
                itr != l_children.end(); ++itr)
        {
            FAPI_DBG("processEIChildrenCDGs: Calling out target"
                     " (huid:%.8x, pri:%d, deconf:%d, gard:%d)",
                     TARGETING::get_huid(*itr), l_priority, l_deconfig,
                     l_gard);
            io_pError->addHwCallout(*itr, l_priority, l_deconfig, l_gard);
        }
    }
}

///
/// @brief Converts a fapi2::ReturnCode to a HostBoot PLAT error log
/// See doxygen in plat_utils.H
///
errlHndl_t rcToErrl(ReturnCode & io_rc,
                    ERRORLOG::errlSeverity_t i_sev)
{
    errlHndl_t l_pError = NULL;

    FAPI_DBG("Entering rcToErrl");

    if (io_rc)
    {
        uint32_t l_rcValue = io_rc;

        // ReturnCode contains an error. Find out which component of the HWPF
        // created the error
        ReturnCode::returnCodeCreator l_creator = io_rc.getCreator();
        l_pError = reinterpret_cast<errlHndl_t>(io_rc.getPlatDataPtr());

        if (l_creator == ReturnCode::CREATOR_PLAT)
        {
            // PLAT error, get the platform data from the return code
            FAPI_ERR("rcToErrl: PLAT error: 0x%08x", l_rcValue);
        }
        else if (nullptr == l_pError)
        {
            if (l_creator == ReturnCode::CREATOR_HWP)
            {
                // HWP Error. Create an error log
                FAPI_ERR("rcToErrl: HWP error: 0x%08x", l_rcValue);

                /*@
                 * @errortype
                 * @moduleid     MOD_FAPI2_RC_TO_ERRL
                 * @reasoncode   RC_HWP_GENERATED_ERROR
                 * @userdata1    RC value from HWP
                 * @userdata2    <unused>
                 * @devdesc      HW Procedure generated error. See User Data.
                 * @custdesc     Error initializing processor/memory subsystem
                 *               during boot. See FRU list for repair actions
                 */
                l_pError = new ERRORLOG::ErrlEntry(i_sev,
                                                   MOD_FAPI2_RC_TO_ERRL,
                                                   RC_HWP_GENERATED_ERROR,
                                                   l_rcValue);
                // Note - If location of RC value changes, must update
                //   ErrlEntry::getFapiRC accordingly

                // Add the rcValue as FFDC. This will explain what the error was
                l_pError->addFFDC(HWPF_COMP_ID, &l_rcValue, sizeof(l_rcValue),
                                                1, HWPF_FAPI2_UDT_HWP_RCVALUE);

                // Get the Error Information Pointer
                const ErrorInfo* l_pErrorInfo =  io_rc.getErrorInfo();
                if (l_pErrorInfo)
                {
                    // There is error information associated with the ReturnCode
                    processEIFfdcs(*l_pErrorInfo, l_pError);
                    processEIProcCallouts(*l_pErrorInfo, l_pError);
                    processEIBusCallouts(*l_pErrorInfo, l_pError);
                    processEICDGs(*l_pErrorInfo, l_pError);
                    processEIChildrenCDGs(*l_pErrorInfo, l_pError);
                    processEIHwCallouts(*l_pErrorInfo, l_pError);
                }
                else
                {
                    FAPI_ERR("rcToErrl: No Error Information");
                }
            }
            else
            {
                // FAPI error. Create an error log
                FAPI_ERR("rcToErrl: FAPI error: 0x%08x", l_rcValue);

                // The errlog reason code is the HWPF compID and the rcValue LSB
                uint16_t l_reasonCode = l_rcValue;
                l_reasonCode &= 0xff;
                l_reasonCode |= HWPF_COMP_ID;

                // HostBoot errlog tags for FAPI errors are in hwpfReasonCodes.H
                l_pError = new ERRORLOG::ErrlEntry(i_sev,
                                                   MOD_FAPI2_RC_TO_ERRL,
                                                   l_reasonCode);

                // FAPI may have added Error Information.
                // Get the Error Information Pointer
                const ErrorInfo* l_pErrorInfo =  io_rc.getErrorInfo();
                if (l_pErrorInfo)
                {
                    processEIFfdcs(*l_pErrorInfo, l_pError);
                    processEIProcCallouts(*l_pErrorInfo, l_pError);
                    processEIBusCallouts(*l_pErrorInfo, l_pError);
                    processEICDGs(*l_pErrorInfo, l_pError);
                    processEIChildrenCDGs(*l_pErrorInfo, l_pError);
                    processEIHwCallouts(*l_pErrorInfo, l_pError);
                }
            }
        } // else if no elog yet

        // add the fapi traces to the elog
        l_pError->collectTrace(FAPI_TRACE_NAME, 256 );
        l_pError->collectTrace(FAPI_IMP_TRACE_NAME, 384 );
        l_pError->collectTrace(FAPI_SCAN_TRACE_NAME, 256 );
        l_pError->collectTrace(FAPI_DBG_TRACE_NAME, 256 );

        // Make sure the severity is set correctly for all errors.
        // The severity of PLAT errors is not set above, so set it here.
        l_pError->setSev(i_sev);
    }

    FAPI_DBG("Exiting rcToErrl");
    return l_pError;
}

// Convert the RC passed in to a platform error log and
// assign it to the platform data pointer of the RC
void createPlatLog(
        fapi2::ReturnCode & io_rc,
        fapi2::errlSeverity_t i_sev
        )
{

    FAPI_DBG("Entering createLog");

    errlHndl_t l_pError = NULL;

    // Convert a FAPI severity to a ERRORLOG severity
    ERRORLOG::errlSeverity_t l_sev = ERRORLOG::ERRL_SEV_UNRECOVERABLE;
    switch (i_sev)
    {
        case fapi2::FAPI2_ERRL_SEV_RECOVERED:
            l_sev = ERRORLOG::ERRL_SEV_RECOVERED;
            break;
        case fapi2::FAPI2_ERRL_SEV_PREDICTIVE:
            l_sev = ERRORLOG::ERRL_SEV_PREDICTIVE;
            break;
        case fapi2::FAPI2_ERRL_SEV_UNRECOVERABLE:
            // l_sev set above
            break;
        default:
            FAPI_ERR("severity (i_sev) of %d is unknown",i_sev);
            break;
    }

    // Convert the return code to an error log.
    // This will set the return code to FAPI2_RC_SUCCESS and clear any
    // PLAT Data, HWP FFDC data, and Error Target associated with it.
    l_pError = rcToErrl(io_rc, l_sev);

    io_rc.setPlatDataPtr(reinterpret_cast<void *>(l_pError));

}

///
/// @brief Log an error - Create a platform error from the passed
//                        RC passed in and commit it.
///
void logError(
    fapi2::ReturnCode & io_rc,
    fapi2::errlSeverity_t i_sev,
    bool i_unitTestError )
{
    FAPI_INF("logError(rc=%x, sev=%d)", (uint32_t)io_rc, i_sev );

    createPlatLog( io_rc, i_sev );

    errlHndl_t l_pError = reinterpret_cast<errlHndl_t>(io_rc.getPlatDataPtr());

    // Commit the error log. This will delete the error log and set the handle
    // to NULL.
    if (i_unitTestError)
    {
        errlCommit(l_pError, CXXTEST_COMP_ID);
    }
    else
    {
        errlCommit(l_pError, HWPF_COMP_ID);
    }

    // error log is deleted so need to make sure nobody uses it again
    io_rc.forgetData();

    //error is committed, no current error
    fapi2::current_err = fapi2::FAPI2_RC_SUCCESS;
    return;
}
///
/// @brief Free platform log ptr - free a platform error from the
///                                 passed in RC.
///
void deletePlatformDataPointer(fapi2::ReturnCode & io_rc)
{
    delete(reinterpret_cast<errlHndl_t>(io_rc.getPlatDataPtr()));
}

///
/// @brief Internal Function associates PRD and HW elogs
/// Used by log_related_error
///
void set_log_id( const Target<TARGET_TYPE_ALL>& i_fapiTrgt,
                 fapi2::ReturnCode& io_rc,
                 fapi2::errlSeverity_t i_sev )
{
    do
    {
        // Get TARGETING target.
        TARGETING::Target* attrTrgt =
                        reinterpret_cast<TARGETING::Target*>(i_fapiTrgt.get());
        if ( nullptr == attrTrgt )
        {
            FAPI_ERR( "[set_log_id] attrTrgt is null" );
            break;
        }

        // Create an error log for this FAPI error.
        createPlatLog( io_rc, i_sev );

        // Get the PLID from this error log.
        errlHndl_t errl = reinterpret_cast<errlHndl_t>(io_rc.getPlatDataPtr());
        uint32_t plid = ERRL_GETPLID_SAFE(errl);

        io_rc.setPlatDataPtr(reinterpret_cast<void*>(errl));

        // Set the PLID in this attribute.
        if ( ! attrTrgt->trySetAttr<TARGETING::ATTR_PRD_HWP_PLID>(plid) )
        {
            FAPI_ERR( "[set_log_id] failed to set ATTR_PRD_HWP_PLID on 0x%08x",
                      TARGETING::get_huid(attrTrgt) );
            break;
        }

    } while (0);

} // end set_log_id

///
/// @brief Associate an error to PRD PLID.
/// Used to connect HW error log to the PRD log.
///
void log_related_error(
    const Target<TARGET_TYPE_ALL>& i_target,
    fapi2::ReturnCode& io_rc,
    const fapi2::errlSeverity_t i_sev,
    const bool i_unitTestError )
{
    // This call will associate the FAPI and PRD logs
    set_log_id( i_target, io_rc, i_sev );
    // Commit the log
    logError( io_rc, i_sev, i_unitTestError );
} // end log_related_error

///
/// @brief Delay this thread. Hostboot will use the nanoseconds parameter
/// and make a syscall to nanosleep. While in the syscall, the hostboot
/// kernel will continue to consume CPU cycles as it looks for a runnable
/// task.  When the delay time expires, the task becomes runnable and will soon
/// return from the syscall.  Callers of delay() in the hostboot environment
/// will likely have to know the mHz clock speed they are running on and
/// compute a non-zero value for i_nanoSeconds.
///
ReturnCode delay(uint64_t i_nanoSeconds,
                 uint64_t i_simCycles,
                 bool i_fixed)
{
    //Note: i_fixed is deliberately ignored

    // We don't need to waste time for hardware delays if we're running in Simics
    if( !Util::isSimicsRunning() )
    {
        nanosleep( 0, i_nanoSeconds );
    }
    return FAPI2_RC_SUCCESS;
}

///
/// @brief Assert a condition, and halt
///
/// @param[in] a boolean representing the assertion
///
void Assert(bool i_expression)
{
    assert(i_expression);
}

bool platIsScanTraceEnabled()
{
  // SCAN trace can be dynamically turned on/off, always return true here
  return 1;
}

//******************************************************************************
// platSpecialWakeup
//******************************************************************************
fapi2::ReturnCode platSpecialWakeup(const Target<TARGET_TYPE_ALL>& i_target,
                                    const bool i_enable)
{
    fapi2::ReturnCode fapi_rc = fapi2::FAPI2_RC_SUCCESS;

    TARGETING::Target* l_target =
        reinterpret_cast<TARGETING::Target*>(i_target.get());
    FAPI_INF("platSpecialWakeup : HUID=%.8X, enable=%d", TARGETING::get_huid(l_target), i_enable);

    WAKEUP::HandleOptions_t l_option = WAKEUP::DISABLE;
    if( i_enable )
    {
        l_option = WAKEUP::ENABLE;
    }

    errlHndl_t err_SW = WAKEUP::handleSpecialWakeup(l_target,l_option);
    if(err_SW)
    {
        fapi_rc.setPlatDataPtr(reinterpret_cast<void *>(err_SW));
    }

    // On Hostboot, processor cores cannot sleep so return success to the
    // fapiSpecialWakeup enable/disable calls
    return fapi_rc;
}

///
/// @brief Resets all HWP thread_local variables
///
void hwpResetGlobals(void)
{
    // Reset all HWP thread_local vars
    fapi2::current_err = fapi2::FAPI2_RC_SUCCESS;
    fapi2::opMode = fapi2::NORMAL;
    fapi2::setPIBErrorMask(0);
}


} //end namespace
OpenPOWER on IntegriCloud