summaryrefslogtreecommitdiffstats
path: root/src/usr/sbeio/runtime/test/sbeiotestRt.H
blob: c91a663bba48fd5be8b26aff52cdcc80c8854510 (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/sbeio/runtime/test/sbeiotestRt.H $                    */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2017,2020                        */
/* [+] 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                                                     */
#ifndef __TEST_SBEIOTESTRT_H
#define __TEST_SBEIOTESTRT_H

/**
 * @file SbeiotestRt.H
 *
 * @brief Unit test for runtime process SBE messages.
 */

#include <cxxtest/TestSuite.H>
#include <runtime/interface.h>
#include <sbeio/runtime/sbe_msg_passing.H>
#include <sbeio/sbeioreasoncodes.H>
#include <targeting/runtime/rt_targeting.H>
#include <targeting/common/attributes.H>
#include <targeting/common/utilFilter.H>
#include <errl/errlmanager.H>
#include <devicefw/userif.H>

#include "sbeiotestRtConstants.H"


//trace
extern trace_desc_t* g_trac_sbeio;

//#define cmpSbeHdr and cmpCmdHdr
#define cmpSbeHdr(actMsg, expMsg) \
    (((actMsg).sbeHdr.version != (expMsg).sbeHdr.version) || \
     ((actMsg).sbeHdr.msgSize != (expMsg).sbeHdr.msgSize) || \
     ((actMsg).sbeHdr.seqId != (expMsg).sbeHdr.seqId))

#define cmpCmdHdr(actMsg, expMsg) \
    (((actMsg).cmdHdr.version != (expMsg).cmdHdr.version) || \
     ((actMsg).cmdHdr.command != (expMsg).cmdHdr.command) || \
     ((actMsg).cmdHdr.dataOffset != (expMsg).cmdHdr.dataOffset) || \
     ((actMsg).cmdHdr.dataSize != (expMsg).cmdHdr.dataSize) || \
     ((actMsg).cmdHdr.status != (expMsg).cmdHdr.status))


using namespace TARGETING;
using namespace SBE_MSG;
using namespace CxxTest;



/**
 * @brief SbeMessagePassingRtTest Unit test for runtime SBE message passing.
 */
class SbeMessagePassingRtTest : public CxxTest::TestSuite
{
    public:
        uint32_t iv_seqId = 0;

        /**
         * @brief initSbeMessagePassing.
         *
         * @param[out] o_request      Pass-through command request
         * @param[out] o_expected_response  Expected pass-through cmd response
         * @param[out] o_chipId       Processor target chip ID
         * @param[out] o_sbeCommAddr  Address of SBE Communication buffer
         * @param[out] o_rt_intf      Pointer to runtime interfaces
         *
         * @return Return Code    O if Successful, otherwise not 0.
         */
        int initSbeMessagePassing(sbeMessage_t& o_request,
                                  sbeMessage_t& o_expected_response,
                                  TARGETING::rtChipId_t& o_chipId,
                                  uint64_t& o_sbeCommAddr,
                                  runtimeInterfaces_t **o_rt_intf)
        {
            // Test init entry
            TRACDCOMP(g_trac_sbeio, ENTER_MRK "SbeMessagePassingRtTest::"
                                    "initSbeMessagePassing");

            int rc = 0;

            const uint32_t l_req_dataSize = 0x00000001;
            o_request.sbeHdr.version = SBEHDRVER_LATEST;
            o_request.sbeHdr.msgSize =
                sizeof(sbeHeader_t) + sizeof(cmdHeader_t) + l_req_dataSize;
            o_request.sbeHdr.seqId = ++iv_seqId;
            o_request.cmdHdr.version = CMDHDRVER_LATEST;
            o_request.cmdHdr.status = 0; // Gets used as test option
            o_request.cmdHdr.dataOffset =
                reinterpret_cast<uint64_t>(&(o_request.data))
                - reinterpret_cast<uint64_t>(&(o_request.cmdHdr));
            o_request.cmdHdr.dataSize = l_req_dataSize;
            o_request.cmdHdr.command = PASSTHRU_HTMGT_GENERIC;
            o_request.data[0] = 0x01; // Get OCC State


            const uint32_t l_rsp_dataSize = 0x00000001;
            o_expected_response.sbeHdr.version = o_request.sbeHdr.version;
            o_expected_response.sbeHdr.msgSize =
                sizeof(sbeHeader_t) + sizeof(cmdHeader_t) + l_rsp_dataSize;
            o_expected_response.sbeHdr.seqId = o_request.sbeHdr.seqId;
            o_expected_response.cmdHdr.version = o_request.cmdHdr.version;
            o_expected_response.cmdHdr.status = 0;
            o_expected_response.cmdHdr.dataOffset =
                reinterpret_cast<uint64_t>(&(o_expected_response.data))
                - reinterpret_cast<uint64_t>(&(o_expected_response.cmdHdr));
            o_expected_response.cmdHdr.dataSize = l_rsp_dataSize;
            o_expected_response.cmdHdr.command = o_request.cmdHdr.command;
            o_expected_response.data[0] = 0x03; // Active

            do
            {
                TargetHandleList procList;
                getAllChips( procList, TYPE_PROC, true );

                // Get the first functional proc
                if(0 == procList.size())
                {
                    rc = -1;
                    TS_FAIL("Not able to get Functional proc");
                    break;
                }
                TargetHandle_t proc = procList[0];

                // Get the chip ID for the proc
                TARGETING::rtChipId_t o_chipId = 0;
                errlHndl_t err = TARGETING::getRtTarget(proc, o_chipId);
                if(nullptr != err)
                {
                    rc = -1;
                    TS_FAIL("getRtTarget() failed for 0x%08X",
                             get_huid(proc));
                    errlCommit(err, SBEIO_COMP_ID);
                    break;
                }

                // Get the address of the SBE Communication area
                o_sbeCommAddr = proc->getAttr<TARGETING::ATTR_SBE_COMM_ADDR>();
                if(NULL == o_sbeCommAddr)
                {
                    TS_INFO("SBE Communication area not available from "
                            "SBE_COMM_ADDR attribute");
                    uint64_t l_instance = proc->getAttr<ATTR_POSITION>();
                    o_sbeCommAddr = g_hostInterfaces->get_reserved_mem(
                                    HBRT_RSVD_MEM__SBE_COMM,
                                    l_instance);
                    if(NULL == o_sbeCommAddr)
                    {
                        rc = -1;
                        TS_FAIL("Not able to get SBE Communication area");
                        break;
                    }
                }

                // Get the runtime interface object
                *o_rt_intf = getRuntimeInterfaces();
                if(nullptr == *o_rt_intf)
                {
                    rc = -1;
                    TS_FAIL("Not able to get run time interface object");
                    break;
                }
            }while (0);

            // Test init exit
            TRACDCOMP(g_trac_sbeio, EXIT_MRK "SbeMessagePassingRtTest::"
                                    "initSbeMessagePassing");

            return rc;
        }

        /**
         * @brief Function to process Generic HTMGT Message pass-through command
         *
         * @param[in]  i_procTgt      HB processor target
         * @param[in]  i_reqDataSize  Pass-through command request data size
         * @param[in]  i_reqData      Pass-through command request data
         * @param[out] o_rspStatus    Pass-through command response status
         * @param[out] o_rspDataSize  Pass-through command response data size
         * @param[out] o_rspData      Pass-through command response data
         *
         * @return errlHndl_t    Error log handle on failure.
         */
        static
        errlHndl_t processGenericHtmgt(TARGETING::TargetHandle_t i_procTgt,
                                       uint32_t i_reqDataSize,
                                       uint8_t  *i_reqData,
                                       uint32_t *o_rspStatus,
                                       uint32_t *o_rspDataSize,
                                       uint8_t  *o_rspData)
        {
            errlHndl_t l_errl = nullptr;

            // Get pointers to full request and response buffers
            sbeMessage_t *l_request =
                reinterpret_cast<sbeMessage_t*>(i_reqData - sizeof(sbeHeader_t)
                                                - sizeof(cmdHeader_t));
            sbeMessage_t *l_response =
                reinterpret_cast<sbeMessage_t*>(o_rspData - sizeof(sbeHeader_t)
                                                - sizeof(cmdHeader_t));

            // Get status field from request and use as a test option
            uint32_t l_testOption = l_request->cmdHdr.status;
            if(l_testOption)
            {
                TRACDCOMP(g_trac_sbeio,
                          "processGenericHtmgt: l_testOption %d",
                          l_testOption);

                TRACDBIN( g_trac_sbeio,
                          "processGenericHtmgt: request",
                          l_request,
                          l_request->sbeHdr.msgSize);
            }

            // Set default returns
            *o_rspStatus = 0;
            *o_rspDataSize = 1;
            o_rspData[0] = 0x03;

            // Do special processing based on test option supplied
            switch(l_testOption)
            {
                // Return with excess response data size
                case 1:
                    *o_rspDataSize = SBE_MSG_SIZE;
                    break;

                 // Return with an error log
                case 2:
                    l_errl = new
                        ERRORLOG::ErrlEntry(ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                                            SBEIO::SBEIO_RUNTIME,
                                            SBEIO::SBEIO_INVALID_REASONCODE,
                                            0,
                                            0);
                    break;

                // Return with generic failure status
                case 3:
                    *o_rspStatus = 0xFE;
                    break;

                // Return with altered SBE Header version
                case 4:
                    l_response->sbeHdr.version = 0x11110000;
                    break;

                 // Return with altered SBE Header sequence ID
                case 5:
                    l_response->sbeHdr.seqId += 1;
                    break;

                 // Return with altered Command Header version
                case 6:
                    l_response->cmdHdr.version += 1;
                    break;

                 // Return with altered Command Header command
                case 7:
                    l_response->cmdHdr.command = PASSTHRU_HTMGT_GET_PSTATE;
                    break;

              // Normal processing
                case 0:
                default:
                    // Just use default returns
                    break;
            }

            if(l_testOption)
            {
                TRACDCOMP(g_trac_sbeio,
                          "processGenericHtmgt: response %p",
                          l_response);

                TRACDBIN( g_trac_sbeio,
                          "processGenericHtmgt: response",
                          l_response,
                          l_response->sbeHdr.msgSize);
            }

            return l_errl;
        }

        /**
         * @brief checkResetSbeMessagePassingCFAM.
         *
         * @param[in]  i_procChipId   Processor target chip ID
         * @param[in]  i_checkMask    Mask to check CFAM register against
         *                            defaults to 0xC0000000
         *
         * @return Return Code    O if Successful, otherwise not 0.
         */
        int checkResetSbeMessagePassingCFAM(TARGETING::rtChipId_t i_procChipId,
                                            uint32_t i_checkMask = SBE_MSG_MASK)
        {
            // Test check / reset CFAM entry
            TRACDCOMP(g_trac_sbeio, ENTER_MRK "SbeMessagePassingRtTest::"
                                    "checkResetSbeMessagePassingCFAM");

            int rc = 0;
            errlHndl_t errl = nullptr;

            TARGETING::Target *l_proc;

            uint32_t l_read_reg;
            size_t l_size = sizeof(uint64_t);
            // CFAM register SBE Message Passing bits
            //    bit 0 - Pass-through command complete
            //    bit 1 - Pass-through command in progress
            const uint32_t l_mask = SBE_MSG_MASK;

            do{
                // Get TARGETING::Target for runtime chip_id (target)
                errl = RT_TARG::getHbTarget(i_procChipId,
                                            l_proc);

                if(errl)
                {
                    TS_FAIL("Not able to get TARGETING::Target for runtime "
                            "chip_id 0x%08X", i_procChipId);

                    break;
                }

                // Read SCOM_ADDR_5003B for target proc
                errl = deviceRead(l_proc,
                                  &l_read_reg,
                                  l_size,
                                  DEVICE_SCOM_ADDRESS(SCOM_ADDR_5003B));

                if(errl)
                {
                    TS_FAIL("Not able to read CFAM SCOM_ADDR_5003B");

                    break;
                }

                // Check CFAM register
                if((l_read_reg & l_mask) != i_checkMask)
                {
                    TS_FAIL("CFAM SCOM_ADDR_5003B set incorrectly, expected "
                            "0x%08x, but read 0x%08x",
                            (l_read_reg & ~l_mask) | i_checkMask,
                            l_read_reg);
                    rc = 1;
                    break;
                }

                // Clear mask bit(s) in CFAM reg SCOM_ADDR_5003B
                l_read_reg &= ~l_mask;

                // Write SCOM_ADDR_5003B for target proc
                errl = deviceWrite(l_proc,
                                   &l_read_reg,
                                   l_size,
                                   DEVICE_SCOM_ADDRESS(SCOM_ADDR_5003B));

                if(errl)
                {
                    TS_FAIL("Not able to write CFAM SCOM_ADDR_5003B");

                    break;
                }
            }while(0);

            // Test check / reset CFAM exit
            TRACDCOMP(g_trac_sbeio, EXIT_MRK "SbeMessagePassingRtTest::"
                                    "checkResetSbeMessagePassingCFAM");

            return rc;
        }

        /**
         * @brief testSbeMessagePassing Unit test for the
         *              SBE message passing versions.
         */
        void testSbeMessagePassingVersions(void)
        {
            // Test entry
            TRACFCOMP(g_trac_sbeio, ENTER_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingVersions");
            sbeMessage_t l_request;
            sbeMessage_t l_expected_response;
            TARGETING::rtChipId_t chipId = 0;
            uint64_t l_sbeCommAddr = 0;
            runtimeInterfaces_t *rt_intf = nullptr;

            int rc = 0;

            do
            {
                // Do initializations for SBE Message passing
                rc = initSbeMessagePassing(l_request,
                                           l_expected_response,
                                           chipId,
                                           l_sbeCommAddr,
                                           &rt_intf);

                // Change SBE Header version
                l_request.sbeHdr.version += 1;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2833 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing SBE Header version for chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }

                // Restore SBE Header version
                l_request.sbeHdr.version = SBEHDRVER_LATEST;

                // Increment Total Tests
                g_TotalTests++;

                // Change CMD Header version
                l_request.cmdHdr.version -= 1;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2833 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing Command Header version for chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }
            }while (0);

            // Test exit
            TRACFCOMP(g_trac_sbeio, EXIT_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingVersions");
        }

        /**
         * @brief testSbeMessagePassing Unit test for the
         *              SBE message passing message size.
         */
        void testSbeMessagePassingMsgSize(void)
        {
            // Test entry
            TRACFCOMP(g_trac_sbeio, ENTER_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingMsgSize");

            sbeMessage_t l_request;
            sbeMessage_t l_expected_response;
            TARGETING::rtChipId_t chipId = 0;
            uint64_t l_sbeCommAddr = 0;
            runtimeInterfaces_t *rt_intf = nullptr;

            int rc = 0;

            do
            {
                // Do initializations for SBE Message passing
                rc = initSbeMessagePassing(l_request,
                                           l_expected_response,
                                           chipId,
                                           l_sbeCommAddr,
                                           &rt_intf);

                // Save size of message to copy
                uint32_t l_sbeMsgSize = l_request.sbeHdr.msgSize;

                // Change SBE Header message size
                l_request.sbeHdr.msgSize = SBE_MSG_SIZE + 128;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_sbeMsgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2834 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing message size too large for chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }
            }while (0);

            // Test exit
            TRACFCOMP(g_trac_sbeio, EXIT_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingMsgSize");
        }

        /**
         * @brief testSbeMessagePassing Unit test for the
         *              SBE message passing data offset.
         */
        void testSbeMessagePassingDataOffset(void)
        {
            // Test entry
            TRACFCOMP(g_trac_sbeio, ENTER_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingDataOffset");

            sbeMessage_t l_request;
            sbeMessage_t l_expected_response;
            TARGETING::rtChipId_t chipId = 0;
            uint64_t l_sbeCommAddr = 0;
            runtimeInterfaces_t *rt_intf = nullptr;

            int rc = 0;

            do
            {
                // Do initializations for SBE Message passing
                rc = initSbeMessagePassing(l_request,
                                           l_expected_response,
                                           chipId,
                                           l_sbeCommAddr,
                                           &rt_intf);

                // Change Command Header data offset to be too small
                l_request.cmdHdr.dataOffset = sizeof(cmdHeader_t) -
                    sizeof(l_request.cmdHdr.status);

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2835 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing data offset too small for chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }

                // Increment Total Tests
                g_TotalTests++;

                // Change Command Header data offset to be too large
                l_request.cmdHdr.dataOffset = sizeof(cmdHeader_t) + 1;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2836 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing data offset too large for chipID: 0x%08X,",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }

                // Restore Command Header data offset
                l_request.cmdHdr.dataOffset = sizeof(cmdHeader_t);

                // Increment Total Tests
                g_TotalTests++;

                // Change Command Header data size
                l_request.cmdHdr.dataSize += 1;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2836 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing data size too large for chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }

                // Restore Command Header data size
                l_request.cmdHdr.dataSize -= 1;

                // Increment Total Tests
                g_TotalTests++;

                // Save size of message to copy
                uint32_t l_sbeMsgSize = l_request.sbeHdr.msgSize;

                // Change SBE Header message size
                l_request.sbeHdr.msgSize -= 1;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_sbeMsgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2836 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected "
                            "-104 (0xFF98) SBEIO_RT_DATA_TOO_LARGE",
                            chipId, rc);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "Testing message size too small / data size too "
                            "large for chipID",
                            chipId);
                    break;
                }
            }while (0);

            // Test exit
            TRACFCOMP(g_trac_sbeio, EXIT_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingDataOffset");
        }

        /**
         * @brief testSbeMessagePassing Unit test for the
         *              SBE message passing default path.
         */
        void testSbeMessagePassingDefaultPath(void)
        {
#ifdef CONFIG_HTMGT
            // Test entry
            TRACFCOMP(g_trac_sbeio, ENTER_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingDefaultPath");

            sbeMessage_t l_request;
            sbeMessage_t l_expected_response;
            TARGETING::rtChipId_t chipId = 0;
            uint64_t l_sbeCommAddr = 0;
            runtimeInterfaces_t *rt_intf = nullptr;

            int rc = 0;

            do
            {
                // Do initializations for SBE Message passing
                rc = initSbeMessagePassing(l_request,
                                           l_expected_response,
                                           chipId,
                                           l_sbeCommAddr,
                                           &rt_intf);

                // Get the response address in the SBE Communication area
                sbeMessage_t *l_sbeCommAddr_rsp =
                    reinterpret_cast<sbeMessage_t*>(l_sbeCommAddr);

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                TRACFCOMP(g_trac_sbeio, "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingDefaultPath "
                                    "calling sbe_message_passing");
                rc = rt_intf->sbe_message_passing(chipId);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing default path for chipID: 0x%08X, rc: "
                            "0x%08x, but expected 0",
                            chipId, rc);
                    break;
                }

                // Compare test response from SBE Communication area
                if(cmpSbeHdr(*l_sbeCommAddr_rsp, l_expected_response) ||
                   cmpCmdHdr(*l_sbeCommAddr_rsp, l_expected_response))
                {
                    TRACFBIN( g_trac_sbeio,
                              "testSbeMessagePassingDefaultPath: expected rsp",
                              &l_expected_response,
                              l_expected_response.sbeHdr.msgSize);
                    TRACFBIN( g_trac_sbeio,
                              "testSbeMessagePassingDefaultPath: actual rsp",
                              l_sbeCommAddr_rsp,
                              l_sbeCommAddr_rsp->sbeHdr.msgSize);
                    TS_FAIL("Unexpected response from RT SBE message passing. "
                            "Testing default path for chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }
            }while (0);

            // Test exit
            TRACFCOMP(g_trac_sbeio, EXIT_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingDefaultPath");
#else
            TRACFCOMP(g_trac_sbeio, "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingDefaultPath skipped "
                                    "because HTMGT is not supported");
#endif
        }

        /**
         * @brief testSbeMessagePassing Unit test for the
         *              SBE message passing function.
         */
        void testSbeMessagePassingFunction(void)
        {
            // Test entry
            TRACFCOMP(g_trac_sbeio, ENTER_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingFunction");

            sbeMessage_t l_request;
            sbeMessage_t l_expected_response;
            TARGETING::rtChipId_t chipId = 0;
            uint64_t l_sbeCommAddr = 0;
            runtimeInterfaces_t *rt_intf = nullptr;

            int rc = 0;

            do
            {
                // Clear mapping for Generic HTMGT Message command
                rc = setProcessCmdFunction(PASSTHRU_HTMGT_GENERIC,
                                           nullptr);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "setProcessCmdFunction",
                            chipId, rc);
                    break;
                }

                // Do initializations for SBE Message passing
                rc = initSbeMessagePassing(l_request,
                                           l_expected_response,
                                           chipId,
                                           l_sbeCommAddr,
                                           &rt_intf);

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2831 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing function not set for chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Increment Total Tests
                g_TotalTests++;

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     0x40000000);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }

                // Erase mapping for Generic HTMGT Message command
                rc = eraseProcessCmdFunction(PASSTHRU_HTMGT_GENERIC);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "eraseProcessCmdFunction",
                            chipId, rc);
                    break;
                }

                // Do initializations for SBE Message passing
                rc = initSbeMessagePassing(l_request,
                                           l_expected_response,
                                           chipId,
                                           l_sbeCommAddr,
                                           &rt_intf);

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2839 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "Testing function not found for chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }
            }while (0);

            // Test exit
            TRACFCOMP(g_trac_sbeio, EXIT_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingFunction");
        }

        /**
         * @brief testSbeMessagePassing Unit test for the
         *              SBE message passing set function.
         */
        void testSbeMessagePassingSetFunction(void)
        {
            // Test entry
            TRACFCOMP(g_trac_sbeio, ENTER_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingSetFunction");

            int rc = 0;

            do
            {
                // Call Set Process Command Function
                rc = setProcessCmdFunction(PASSTHRU_HTMGT_GENERIC,
                                           processGenericHtmgt);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "rc: 0x%08x, but expected 0 from "
                            "setProcessCmdFunction()",
                            rc);
                    break;
                }
            }while (0);

            // Test exit
            TRACFCOMP(g_trac_sbeio, EXIT_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingSetFunction");
        }

        /**
         * @brief testSbeMessagePassing Unit test for the
         *              SBE message passing good path.
         */
        void testSbeMessagePassingGoodPath(void)
        {
            // Test entry
            TRACFCOMP(g_trac_sbeio, ENTER_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingGoodPath");

            sbeMessage_t l_request;
            sbeMessage_t l_expected_response;
            TARGETING::rtChipId_t chipId = 0;
            uint64_t l_sbeCommAddr = 0;
            runtimeInterfaces_t *rt_intf = nullptr;

            int rc = 0;

            do
            {
                // Do initializations for SBE Message passing
                rc = initSbeMessagePassing(l_request,
                                           l_expected_response,
                                           chipId,
                                           l_sbeCommAddr,
                                           &rt_intf);

                // Get the response address in the SBE Communication area
                sbeMessage_t *l_sbeCommAddr_rsp =
                    reinterpret_cast<sbeMessage_t*>(l_sbeCommAddr);

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call Set Process Command Function
                rc = setProcessCmdFunction(PASSTHRU_HTMGT_GENERIC,
                                           processGenericHtmgt);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "rc: 0x%08x, but expected 0 from "
                            "setProcessCmdFunction() for good path test",
                            rc);
                    break;
                }

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing good path for chipID: 0x%08X, rc: 0x%08x, "
                            "but expected 0",
                            chipId, rc);
                    break;
                }

                // Compare test response from SBE Communication area
                if(cmpSbeHdr(*l_sbeCommAddr_rsp, l_expected_response) ||
                   cmpCmdHdr(*l_sbeCommAddr_rsp, l_expected_response))
                {
                    TRACFBIN( g_trac_sbeio,
                              "testSbeMessagePassingGoodPath: expected rsp",
                              &l_expected_response,
                              l_expected_response.sbeHdr.msgSize);
                    TRACFBIN( g_trac_sbeio,
                              "testSbeMessagePassingGoodPath: actual rsp",
                              l_sbeCommAddr_rsp,
                              l_sbeCommAddr_rsp->sbeHdr.msgSize);
                    TS_FAIL("Unexpected response from RT SBE message passing. "
                            "Testing good path for chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_COMPLETE);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }

                // Increment Total Tests
                g_TotalTests++;

                // Increase data offset and message size and shift data
                // to verify that the data payload does not have to be
                // immediately after the Command Header
                l_request.cmdHdr.dataSize += 4;
                l_request.sbeHdr.msgSize += 4;
                uint32_t *l_req_data =
                    reinterpret_cast<uint32_t*>(&l_request.data[0]);
                l_req_data[3] = l_req_data[2];
                l_req_data[2] = l_req_data[1];
                l_req_data[1] = l_req_data[0];
                l_req_data[0] = 0;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing good path with data shifted for chipID: "
                            "0x%08X, rc: 0x%08x, but expected 0",
                            chipId, rc);
                    break;
                }

                // Compare test response from SBE Communication area
                if(cmpSbeHdr(*l_sbeCommAddr_rsp, l_expected_response) ||
                   cmpCmdHdr(*l_sbeCommAddr_rsp, l_expected_response))
                {
                    TRACFBIN( g_trac_sbeio,
                              "testSbeMessagePassingGoodPath: expected rsp",
                              &l_expected_response,
                              l_expected_response.sbeHdr.msgSize);
                    TRACFBIN( g_trac_sbeio,
                              "testSbeMessagePassingGoodPath: actual rsp",
                              l_sbeCommAddr_rsp,
                              l_sbeCommAddr_rsp->sbeHdr.msgSize);
                    TS_FAIL("Unexpected response from RT SBE message passing. "
                            "Testing good path with data shifted for chipID: "
                            "0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_COMPLETE);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }
            }while (0);

            // Test exit
            TRACFCOMP(g_trac_sbeio, EXIT_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingGoodPath");
        }

        /**
         * @brief testSbeMessagePassing Unit test for the
         *              SBE message passing error paths.
         */
        void testSbeMessagePassingErrorPaths(void)
        {
            // Test entry
            TRACFCOMP(g_trac_sbeio, ENTER_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingErrorPaths");

            sbeMessage_t l_request;
            sbeMessage_t l_expected_response;
            uint32_t l_hdrsSize = sizeof(sbeHeader_t) + sizeof(cmdHeader_t);
            TARGETING::rtChipId_t chipId = 0;
            uint64_t l_sbeCommAddr = 0;
            runtimeInterfaces_t *rt_intf = nullptr;

            int rc = 0;

            do
            {
                // Do initializations for SBE Message passing
                rc = initSbeMessagePassing(l_request,
                                           l_expected_response,
                                           chipId,
                                           l_sbeCommAddr,
                                           &rt_intf);

                // Get the response address in the SBE Communication area
                sbeMessage_t *l_sbeCommAddr_rsp =
                    reinterpret_cast<sbeMessage_t*>(l_sbeCommAddr);

                // Set the test option to excess response data size
                l_request.cmdHdr.status = 0x1;

                // Change sizes in expected response
                l_expected_response.sbeHdr.msgSize = SBE_MSG_SIZE;
                l_expected_response.cmdHdr.dataSize = SBE_MSG_SIZE;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call Set Process Command Function
                rc = setProcessCmdFunction(PASSTHRU_HTMGT_GENERIC,
                                           processGenericHtmgt);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "rc: 0x%08x, but expected 0 from "
                            "setProcessCmdFunction() for error path test",
                            rc);
                    break;
                }

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2832 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing excess response data size error path for "
                            "chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Compare test response from SBE Communication area
                if(cmpSbeHdr(*l_sbeCommAddr_rsp, l_expected_response) ||
                   cmpCmdHdr(*l_sbeCommAddr_rsp, l_expected_response))
                {
                    TRACFBIN( g_trac_sbeio,
                              "testSbeMessagePassingErrorPaths: expected rsp",
                              &l_expected_response,
                              l_hdrsSize);
                    TRACFBIN( g_trac_sbeio,
                              "testSbeMessagePassingErrorPaths: actual rsp",
                              l_sbeCommAddr_rsp,
                              l_hdrsSize);
                    TS_FAIL("Unexpected response from RT SBE message passing. "
                            "chipID: 0x%08X, response data too large",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }

                // Increment Total Tests
                g_TotalTests++;

                // Set the test option to error log
                l_request.cmdHdr.status = 0x2;

                // Change back sizes in expected response
                l_expected_response.sbeHdr.msgSize = l_hdrsSize + 1;
                l_expected_response.cmdHdr.dataSize = 1;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2800 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing error log returned for chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }

                // Increment Total Tests
                g_TotalTests++;

                // Set the test option to generic failure status
                l_request.cmdHdr.status = 0x3;

                // Change status in expected response
                l_expected_response.cmdHdr.status = 0xFE;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing failure status returned for chipID:"
                            "0x%08X, rc: 0x%08x, but expected 0",
                            chipId, rc);
                    break;
                }

                // Compare test response from SBE Communication area
                if(cmpSbeHdr(*l_sbeCommAddr_rsp, l_expected_response) ||
                   cmpCmdHdr(*l_sbeCommAddr_rsp, l_expected_response))
                {
                    TRACFBIN( g_trac_sbeio,
                              "testSbeMessagePassingErrorPaths: expected rsp",
                              &l_expected_response,
                              l_expected_response.sbeHdr.msgSize);
                    TRACFBIN( g_trac_sbeio,
                              "testSbeMessagePassingErrorPaths: actual rsp",
                              l_sbeCommAddr_rsp,
                              l_sbeCommAddr_rsp->sbeHdr.msgSize);
                    TS_FAIL("Unexpected response from RT SBE message passing. "
                            "chipID: 0x%08X, status of generic failure",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_COMPLETE);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }

                // Increment Total Tests
                g_TotalTests++;

                // Set the test option to altered SBE Header version
                l_request.cmdHdr.status = 0x4;

                // Change back status in expected response
                l_expected_response.cmdHdr.status = 0;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2837 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing altered SBE Header version for chipID: "
                            "0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }

                // Increment Total Tests
                g_TotalTests++;

                // Set the test option to altered SBE Header sequence ID
                l_request.cmdHdr.status = 0x5;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2837 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing altered SBE Header sequence ID for "
                            "chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }

                // Increment Total Tests
                g_TotalTests++;

                 // Set the test option to altered Command Header version
                l_request.cmdHdr.status = 0x6;

                // Change back status in expected response
                l_expected_response.cmdHdr.status = 0;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2837 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing altered Command Header version for "
                            "chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }

                // Increment Total Tests
                g_TotalTests++;

                // Set the test option to altered altered Command Header command
                l_request.cmdHdr.status = 0x7;

                // Copy test request into SBE Communication area
                memcpy(reinterpret_cast<void*>(l_sbeCommAddr),
                       reinterpret_cast<void*>(&l_request),
                       l_request.sbeHdr.msgSize);

                // Call the SBE message passing code
                rc = rt_intf->sbe_message_passing(chipId);
                if(0x2837 != rc)
                {
                    TS_FAIL("Unexpected return during RT SBE message passing. "
                            "Testing altered Command Header command for "
                            "chipID: 0x%08X",
                            chipId);
                    break;
                }

                // Check setting of bits in CFAM register
                rc = checkResetSbeMessagePassingCFAM(chipId,
                                                     SBE_MSG_IN_PROGRESS);
                if(0 != rc)
                {
                    TS_FAIL("Unexpected error during RT SBE message passing. "
                            "chipID: 0x%08X, rc: 0x%08x, but expected 0 for "
                            "CFAM register checking",
                            chipId, rc);
                    break;
                }
            }while (0);

            // Test exit
            TRACFCOMP(g_trac_sbeio, EXIT_MRK "SbeMessagePassingRtTest::"
                                    "testSbeMessagePassingErrorPaths");
        }

}; // class SbeMessagePassingRtTest
#endif
OpenPOWER on IntegriCloud