summaryrefslogtreecommitdiffstats
path: root/src/usr/hwpf/hwp/activate_powerbus/proc_build_smp/proc_build_smp_epsilon.C
blob: 16f920c4e22d2ae62b1db22f88a0029278019694 (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/hwpf/hwp/activate_powerbus/proc_build_smp/proc_build_smp_epsilon.C $ */
/*                                                                        */
/* IBM CONFIDENTIAL                                                       */
/*                                                                        */
/* COPYRIGHT International Business Machines Corp. 2012,2013              */
/*                                                                        */
/* p1                                                                     */
/*                                                                        */
/* Object Code Only (OCO) source materials                                */
/* Licensed Internal Code Source Materials                                */
/* IBM HostBoot Licensed Internal Code                                    */
/*                                                                        */
/* The source code for this program is not published or otherwise         */
/* divested of its trade secrets, irrespective of what has been           */
/* deposited with the U.S. Copyright Office.                              */
/*                                                                        */
/* Origin: 30                                                             */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
// $Id: proc_build_smp_epsilon.C,v 1.8 2013/07/30 23:52:27 jmcgill Exp $
// $Source: /afs/awd/projects/eclipz/KnowledgeBase/.cvsroot/eclipz/chips/p8/working/procedures/ipl/fapi/proc_build_smp_epsilon.C,v $
//------------------------------------------------------------------------------
// *|
// *! (C) Copyright International Business Machines Corp. 2011
// *! All Rights Reserved -- Property of IBM
// *! *** IBM Confidential ***
// *|
// *! TITLE       : proc_build_smp_epsilon.C
// *! DESCRIPTION : Epsilon calculation/application functions (FAPI)
// *!
// *! OWNER NAME  : Joe McGill    Email: jmcgill@us.ibm.com
// *!
//------------------------------------------------------------------------------


//------------------------------------------------------------------------------
// Includes
//------------------------------------------------------------------------------
#include "proc_build_smp_epsilon.H"

extern "C" {


//------------------------------------------------------------------------------
// Function definitions
//------------------------------------------------------------------------------


//------------------------------------------------------------------------------
// function: utility function to round to ceiling
// parameters: i_n => numerator
//             i_d => denominator
// returns: ceiling of i_n / i_d (integer)
//------------------------------------------------------------------------------
uint32_t proc_build_smp_round_ceiling(
    uint32_t i_n,
    uint32_t i_d)
{
    return((i_n / i_d) + ((i_n % i_d)?(1):(0)));
}


//------------------------------------------------------------------------------
// function: utility function to apply positive/negative scaing factor
//           to base epsilon value
// parameters: i_gb_positive   => set guardband direction (true=positive,
//                                false=negative)
//             i_gb_percentage => scaling factor (e.g. 20% = 20)
//             io_target_value => target epsilon value, after
//                                application of scaling factor
//                                NOTE: scaling will be clamped to
//                                minimum/maximum value
// returns: void
//------------------------------------------------------------------------------
void proc_build_smp_guardband_epsilon(
    const bool i_gb_positive,
    const uint8_t i_gb_percentage,
    uint32_t & io_target_value)
{
    uint32_t delta = proc_build_smp_round_ceiling(io_target_value * i_gb_percentage, 100);

    // mark function entry
    FAPI_DBG("proc_build_smp_guardband_epsilon: Start");

    // apply guardband
    if (i_gb_positive)
    {
        // clamp to maximum value if necessary
        if (delta > (PROC_BUILD_SMP_EPSILON_MAX_VALUE - io_target_value))
        {
            FAPI_DBG("proc_build_smp_guardband_epsilon: Guardband application generated out-of-range target value, clamping to maximum value!");
            io_target_value = PROC_BUILD_SMP_EPSILON_MAX_VALUE;
        }
        else
        {
            io_target_value += delta;
        }
    }
    else
    {
        // clamp to minimum value if necessary
        if (delta >= io_target_value)
        {
            FAPI_DBG("proc_build_smp_guardband_epsilon: Guardband application generated out-of-range target value, clamping to minimum value!");
            io_target_value = PROC_BUILD_SMP_EPSILON_MIN_VALUE;
        }
        else
        {
            io_target_value -= delta;
        }
    }

    // mark function exit
    FAPI_DBG("proc_build_smp_guardband_epsilon: End");
    return;
}


//------------------------------------------------------------------------------
// function: check if target epsilon value is less than maximum realizable
//           value given underlying register storage
// parameters: i_target_value => desired epsilon value
//             i_max_hw_value => largest value which can be represented by
//                               underlying register storage
//             i_must_fit     => raise error if true and target value
//                               cannot be represented in underlying storage
//             o_does_fit     => boolean indicating comparison result
// returns: FAPI_RC_SUCCESS if value can be represented in HW storage (or
//              i_must_fit is false)
//          RC_PROC_BUILD_SMP_EPSILON_RANGE_ERR if value is out of range and
//              i_must_fit is true
//------------------------------------------------------------------------------
fapi::ReturnCode proc_build_smp_check_epsilon(
    const uint32_t i_target_value,
    const uint32_t i_max_hw_value,
    const bool i_must_fit,
    bool& o_does_fit)
{
    fapi::ReturnCode rc;

    // mark function entry
    FAPI_DBG("proc_build_smp_check_epsilon: Start");

    do
    {
        o_does_fit = (i_max_hw_value > i_target_value);

        if (i_must_fit && !o_does_fit)
        {
            FAPI_ERR("proc_build_smp_check_epsilon: Desired value (= %d) is greater than maximum value supported by HW (= %d)",
                     i_target_value, i_max_hw_value);
            const uint32_t& VALUE = i_target_value;
            const uint32_t& MAX_HW_VALUE = i_max_hw_value;
            FAPI_SET_HWP_ERROR(rc, RC_PROC_BUILD_SMP_EPSILON_RANGE_ERR);
            break;
        }
    } while(0);

    // mark function exit
    FAPI_DBG("proc_build_smp_check_epsilon: End");
    return rc;
}


//------------------------------------------------------------------------------
// function: set L2 unit epsilon configuration attributes
// parameters: i_eps_cfg => system epsilon configuration structure
// returns: ECMD_SUCCESS if all attributes are set to valid values,
//          RC_PROC_BUILD_SMP_EPSILON_RANGE_ERR if any target value is out of
//              range given underlying HW storage,
//          else error
//------------------------------------------------------------------------------
fapi::ReturnCode proc_build_smp_set_epsilons_l2(
    const proc_build_smp_eps_cfg & i_eps_cfg)
{
    fapi::ReturnCode rc;
    bool r_t0_fits = false;
    bool r_t1_fits = false;
    bool r_t2_fits = false;
    bool w_t2_fits = false;
    uint8_t l2_force_t2_attr_value;
    uint32_t l2_r_t0_attr_value;
    uint32_t l2_r_t1_attr_value;
    uint32_t l2_r_t2_attr_value;
    uint32_t l2_w_attr_value;

    // mark function entry
    FAPI_DBG("proc_build_smp_set_epsilons_l2: Start");

    do
    {
        //
        // NOTE: L2 epsilon valus will only be pushed into attributes by
        //       this procedure.  Hostboot will run on scan flush (safe) values,
        //       and runtime values pushed into attributes will be applied
        //       via winkle image.
        //
        // 10012814 = L2 Epsilon Config Register
        //   0:8  = r_t0 (MAX = all 0s =  512, MIN = 1, HW = target_value+1)
        //   9:17 = r_t1 (MAX = all 0s =  512, MIN = 1, HW = target_value+1)
        //  18:28 = r_t2 (MAX = all 0s = 2048, MIN = 1, HW = target_value+1)
        //  29:35 = w_t2 (MAX = all 0s =  128, MIN = 1, HW = target_value+1)
        //     36 = force t2 (0 = MODE1 = use scope to choose tier,
        //                    1 = MODE2 = use r_t2 value for all read protection
        //

        // target read tier2 & write tier2 epsilon values must be representable
        // in HW storage, error out if not
        rc = proc_build_smp_check_epsilon(
            i_eps_cfg.r_t2,
            PROC_BUILD_SMP_EPSILON_L2_MAX_VALUE_R_T2,
            true,
            r_t2_fits);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l2: Error from proc_build_smp_check_epsilon (r_t2)");
            break;
        }

        rc = proc_build_smp_check_epsilon(
            i_eps_cfg.w_t2,
            PROC_BUILD_SMP_EPSILON_L2_MAX_VALUE_W_T2,
            true,
            w_t2_fits);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l2: Error from proc_build_smp_check_epsilon (w_t2)");
            break;
        }

        // check read tier0, read tier1 target values
        // don't error if these don't fit, as we will just force use of tier2
        // in this case
        (void) proc_build_smp_check_epsilon(
            i_eps_cfg.r_t0,
            PROC_BUILD_SMP_EPSILON_L2_MAX_VALUE_R_T0,
            false,
            r_t0_fits);
        (void) proc_build_smp_check_epsilon(
            i_eps_cfg.r_t1,
            PROC_BUILD_SMP_EPSILON_L2_MAX_VALUE_R_T1,
            false,
            r_t1_fits);

        // set attributes based on unit implementation
        FAPI_DBG("proc_build_smp_set_epsilons_l2: Writing ATTR_L2_R_T2_EPS");
        l2_r_t2_attr_value = ((i_eps_cfg.r_t2 == PROC_BUILD_SMP_EPSILON_L2_MAX_VALUE_R_T2)?
                              (0):(i_eps_cfg.r_t2+1));
        rc = FAPI_ATTR_SET(
            ATTR_L2_R_T2_EPS,
            NULL,
            l2_r_t2_attr_value);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l2: Error from FAPI_ATTR_SET (ATTR_L2_R_T2_EPS)");
            break;
        }

        FAPI_DBG("proc_build_smp_set_epsilons_l2: Writing ATTR_L2_W_EPS");
        l2_w_attr_value = ((i_eps_cfg.w_t2 == PROC_BUILD_SMP_EPSILON_L2_MAX_VALUE_W_T2)?
                           (0):(i_eps_cfg.w_t2+1));
        rc = FAPI_ATTR_SET(
            ATTR_L2_W_EPS,
            NULL,
            l2_w_attr_value);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l2: Error from FAPI_ATTR_SET (ATTR_L2_W_EPS)");
            break;
        }

        // force tier2 if necessary
        if (!r_t0_fits || !r_t1_fits)
        {
            l2_force_t2_attr_value = fapi::ENUM_ATTR_L2_FORCE_R_T2_EPS_ON;
            l2_r_t0_attr_value = 0;
            l2_r_t1_attr_value = 0;
        }
        // otherwise, write explicit read tier0, read tier1 attribute values
        else
        {
            l2_force_t2_attr_value = fapi::ENUM_ATTR_L2_FORCE_R_T2_EPS_OFF;
            l2_r_t0_attr_value = ((i_eps_cfg.r_t0 == PROC_BUILD_SMP_EPSILON_L2_MAX_VALUE_R_T0)?
                                  (0):(i_eps_cfg.r_t0+1));
            l2_r_t1_attr_value = ((i_eps_cfg.r_t1 == PROC_BUILD_SMP_EPSILON_L2_MAX_VALUE_R_T1)?
                                  (0):(i_eps_cfg.r_t1+1));
        }

        FAPI_DBG("proc_build_smp_set_epsilons_l2: Writing ATTR_L2_FORCE_R_T2_EPS");
        rc = FAPI_ATTR_SET(
            ATTR_L2_FORCE_R_T2_EPS,
            NULL,
            l2_force_t2_attr_value);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l2: Error from FAPI_ATTR_SET (ATTR_L2_FORCE_R_T2_EPS)");
            break;
        }

        FAPI_DBG("proc_build_smp_set_epsilons_l2: Writing ATTR_L2_R_T0_EPS");
        rc = FAPI_ATTR_SET(
            ATTR_L2_R_T0_EPS,
            NULL,
            l2_r_t0_attr_value);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l2: Error from FAPI_ATTR_SET (ATTR_L2_R_T0_EPS)");
            break;
        }

        FAPI_DBG("proc_build_smp_set_epsilons_l2: Writing ATTR_L2_R_T1_EPS");
        rc = FAPI_ATTR_SET(
            ATTR_L2_R_T1_EPS,
            NULL,
            l2_r_t1_attr_value);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l2: Error from FAPI_ATTR_SET (ATTR_L2_R_T1_EPS)");
            break;
        }
    } while(0);

    // mark function exit
    FAPI_DBG("proc_build_smp_set_epsilons_l2: End");
    return rc;
}


//------------------------------------------------------------------------------
// function: set L3 unit epsilon configuration attributes
// parameters: i_eps_cfg => system epsilon configuration structure
// returns: ECMD_SUCCESS if all attributes are set to valid values,
//          RC_PROC_BUILD_SMP_EPSILON_RANGE_ERR if any target value is out of
//              range given underlying HW storage,
//          else error
//------------------------------------------------------------------------------
fapi::ReturnCode proc_build_smp_set_epsilons_l3(
    const proc_build_smp_eps_cfg & i_eps_cfg)
{
    fapi::ReturnCode rc;
    bool r_t0_fits = false;
    bool r_t1_fits = false;
    bool r_t2_fits = false;
    bool w_t2_fits = false;

    uint8_t l3_force_t2_attr_value;
    uint32_t l3_r_t0_attr_value;
    uint32_t l3_r_t1_attr_value;
    uint32_t l3_r_t2_attr_value;
    uint32_t l3_w_attr_value;

    // mark function entry
    FAPI_DBG("proc_build_smp_set_epsilons_l3: Start");

    do
    {
        //
        // NOTE: L3 epsilon valus will only be pushed into attributes by
        //       this procedure.  Hostboot will run on scan flush (safe) values,
        //       and runtime values pushed into attributes will be applied
        //       via winkle image.
        //
        // 10010829 = L3 Read Epsilon Config Register
        //    0:8 = r_t0 (MAX = all 0s =  512, MIN = 1, HW = target_value+1)
        //   9:17 = r_t1 (MAX = all 0s =  512, MIN = 1, HW = target_value+1)
        //  18:28 = r_t2 (MAX = all 0s = 2048, MIN = 1, HW = target_value+1)
        //  29:30 = force t2 (00 = MODE1 = use scope to choose tier,
        //                    01 = MODE2 = use r_t2 value for all read protection
        //
        // 1001082A = L3 Write Epsilon Config Register
        //    0:6 = w_t2 (MAX = all 0s =  128, MIN = 1, HW = target value+1)
        //

        // target read tier2 & write epsilon values must be representable
        // in HW storage, error if not
        rc = proc_build_smp_check_epsilon(
            i_eps_cfg.r_t2,
            PROC_BUILD_SMP_EPSILON_L3_MAX_VALUE_R_T2,
            true,
            r_t2_fits);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l3: Error from proc_build_smp_check_epsilon (r_t2)");
            break;
        }

        rc = proc_build_smp_check_epsilon(
            i_eps_cfg.w_t2,
            PROC_BUILD_SMP_EPSILON_L3_MAX_VALUE_W_T2,
            true,
            w_t2_fits);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l3: Error from proc_build_smp_check_epsilon (w_t2)");
            break;
        }

        // check read tier0, read tier1 target values
        // don't error if these don't fit, as we will just force use of tier2
        // in this case
        (void) proc_build_smp_check_epsilon(
            i_eps_cfg.r_t0,
            PROC_BUILD_SMP_EPSILON_L3_MAX_VALUE_R_T0,
            false,
            r_t0_fits);
        (void) proc_build_smp_check_epsilon(
            i_eps_cfg.r_t1,
            PROC_BUILD_SMP_EPSILON_L3_MAX_VALUE_R_T1,
            false,
            r_t1_fits);

        // set attributes based on unit implementation
        FAPI_DBG("proc_build_smp_set_epsilons_l3: Writing ATTR_L3_R_T2_EPS");
        l3_r_t2_attr_value = ((i_eps_cfg.r_t2 == PROC_BUILD_SMP_EPSILON_L3_MAX_VALUE_R_T2)?
                              (0):(i_eps_cfg.r_t2+1));
        rc = FAPI_ATTR_SET(
            ATTR_L3_R_T2_EPS,
            NULL,
            l3_r_t2_attr_value);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l3: Error from FAPI_ATTR_SET (ATTR_L3_R_T2_EPS)");
            break;
        }

        FAPI_DBG("proc_build_smp_set_epsilons_l3: Writing ATTR_L3_W_EPS");
        l3_w_attr_value = ((i_eps_cfg.w_t2 == PROC_BUILD_SMP_EPSILON_L3_MAX_VALUE_W_T2)?
                           (0):(i_eps_cfg.w_t2+1));
        rc = FAPI_ATTR_SET(
            ATTR_L3_W_EPS,
            NULL,
            l3_w_attr_value);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l3: Error from FAPI_ATTR_SET (ATTR_L3_W_EPS");
            break;
        }

        // force tier2 if necessary
        if (!r_t0_fits || !r_t1_fits)
        {
            l3_force_t2_attr_value = fapi::ENUM_ATTR_L3_FORCE_R_T2_EPS_ON;
            l3_r_t0_attr_value = 0;
            l3_r_t1_attr_value = 0;
        }
        // otherwise, write explicit read tier0, read tier1 attribute values
        else
        {
            l3_force_t2_attr_value = fapi::ENUM_ATTR_L2_FORCE_R_T2_EPS_OFF;
            l3_r_t0_attr_value = ((i_eps_cfg.r_t0 == PROC_BUILD_SMP_EPSILON_L3_MAX_VALUE_R_T0)?
                                  (0):(i_eps_cfg.r_t0+1));
            l3_r_t1_attr_value = ((i_eps_cfg.r_t1 == PROC_BUILD_SMP_EPSILON_L3_MAX_VALUE_R_T1)?
                                  (0):(i_eps_cfg.r_t1+1));
        }

        FAPI_DBG("proc_build_smp_set_epsilons_l3: Writing ATTR_L3_FORCE_R_T2_EPS");
        rc = FAPI_ATTR_SET(
            ATTR_L3_FORCE_R_T2_EPS,
            NULL,
            l3_force_t2_attr_value);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l3: Error from FAPI_ATTR_SET (ATTR_L3_FORCE_R_T2_EPS)");
            break;
        }

        FAPI_DBG("proc_build_smp_set_epsilons_l3: Writing ATTR_L3_R_T0_EPS");
        rc = FAPI_ATTR_SET(
            ATTR_L3_R_T0_EPS,
            NULL,
            l3_r_t0_attr_value);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l3: Error from FAPI_ATTR_SET (ATTR_L3_R_T0_EPS)");
            break;
        }

        FAPI_DBG("proc_build_smp_set_epsilons_l3: Writing ATTR_L3_R_T1_EPS");
        rc = FAPI_ATTR_SET(
            ATTR_L3_R_T1_EPS,
            NULL,
            l3_r_t1_attr_value);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_l3: Error from FAPI_ATTR_SET (ATTR_L3_R_T1_EPS)");
            break;
        }
    } while(0);

    // mark function exit
    FAPI_DBG("proc_build_smp_set_epsilons_l3: End");
    return rc;
}


//------------------------------------------------------------------------------
// function: set MCS unit epsilon registers for all configured chiplets
//           on target chip
// parameters: i_target  => chip target
//             i_eps_cfg => system epsilon configuration structure
// returns: ECMD_SUCCESS if all settings are programmed correctly,
//          RC_PROC_BUILD_SMP_EPSILON_RANGE_ERR if any target value is out of
//              range given underlying HW storage,
//          else error
//------------------------------------------------------------------------------
fapi::ReturnCode proc_build_smp_set_epsilons_mcs(
    fapi::Target & i_target,
    const proc_build_smp_eps_cfg & i_eps_cfg)
{
    fapi::ReturnCode rc;
    uint32_t rc_ecmd = 0x0;
    bool r_t0_fits = false;
    bool r_t1_fits = false;
    bool r_t2_fits = false;
    bool r_f_fits  = false;
    ecmdDataBufferBase data(64);
    std::vector<fapi::Target> mcs_chiplets;

    // mark function entry
    FAPI_DBG("proc_build_smp_set_epsilons_mcs: Start");

    do
    {
        //
        // 02011816 = MCS Epsilon Register
        //    0:7 = jitter (MAX = all 1s = 1016, MIN = all 0s = 0, HW = [target value/4]+1)
        //   8:15 = r_t0   (MAX = all 1s = 1016, MIN = all 0s = 0, HW = [target value/4]+1)
        //  16:23 = r_t1   (MAX = all 1s = 1016, MIN = all 0s = 0, HW = [target value/4]+1)
        //  24:31 = r_t2   (MAX = all 1s = 1016, MIN = all 0s = 0, HW = [target value/4]+1)
        //  32:39 = r_f    (MAX = all 1s = 1016, MIN = all 0s = 0, HW = [target value/4]+1)
        //

        // all target values must be representable in HW storage, error if not
        rc = proc_build_smp_check_epsilon(
            i_eps_cfg.r_t0,
            PROC_BUILD_SMP_EPSILON_MCS_MAX_VALUE_R_T0,
            true,
            r_t0_fits);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_mcs: Error from proc_build_smp_check_epsilon (r_t0)");
            break;
        }

        rc = proc_build_smp_check_epsilon(
            i_eps_cfg.r_t1,
            PROC_BUILD_SMP_EPSILON_MCS_MAX_VALUE_R_T1,
            true,
            r_t1_fits);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_mcs: Error from proc_build_smp_check_epsilon (r_t1)");
            break;
        }

        rc = proc_build_smp_check_epsilon(
            i_eps_cfg.r_t2,
            PROC_BUILD_SMP_EPSILON_MCS_MAX_VALUE_R_T2,
            true,
            r_t2_fits);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_mcs: Error from proc_build_smp_check_epsilon (r_t2)");
            break;
        }

        rc = proc_build_smp_check_epsilon(
            i_eps_cfg.r_f,
            PROC_BUILD_SMP_EPSILON_MCS_MAX_VALUE_R_F,
            true,
            r_f_fits);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_mcs: Error from proc_build_smp_check_epsilon (r_f)");
            break;
        }

        // form data buffer
        rc_ecmd |= data.insertFromRight(
            PROC_BUILD_SMP_EPSILON_MCS_JITTER,
            MCEPS_JITTER_EPSILON_START_BIT,
            (MCEPS_JITTER_EPSILON_END_BIT-
             MCEPS_JITTER_EPSILON_START_BIT+1));

        rc_ecmd |= data.insertFromRight(
            proc_build_smp_round_ceiling(i_eps_cfg.r_t0, 4)+1,
            MCEPS_NODAL_EPSILON_START_BIT,
            (MCEPS_NODAL_EPSILON_END_BIT-
             MCEPS_NODAL_EPSILON_START_BIT+1));

        rc_ecmd |= data.insertFromRight(
            proc_build_smp_round_ceiling(i_eps_cfg.r_t1, 4)+1,
            MCEPS_GROUP_EPSILON_START_BIT,
            (MCEPS_GROUP_EPSILON_END_BIT-
             MCEPS_GROUP_EPSILON_START_BIT+1));

        rc_ecmd |= data.insertFromRight(
            proc_build_smp_round_ceiling(i_eps_cfg.r_t2, 4)+1,
            MCEPS_SYSTEM_EPSILON_START_BIT,
            (MCEPS_SYSTEM_EPSILON_END_BIT-
             MCEPS_SYSTEM_EPSILON_START_BIT+1));

        rc_ecmd |= data.insertFromRight(
            proc_build_smp_round_ceiling(i_eps_cfg.r_f, 4)+1,
            MCEPS_FOREIGN_EPSILON_START_BIT,
            (MCEPS_FOREIGN_EPSILON_END_BIT-
             MCEPS_FOREIGN_EPSILON_START_BIT+1));

        if (rc_ecmd)
        {
            FAPI_ERR("proc_build_smp_set_epsilons_mcs: Error 0x%x setting up MCEPS data buffer",
                     rc_ecmd);
            rc.setEcmdError(rc_ecmd);
            break;
        }

        // determine configured MCS chiplets
        rc = fapiGetChildChiplets(i_target,
                                  fapi::TARGET_TYPE_MCS_CHIPLET,
                                  mcs_chiplets);
        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_mcs: Error from fapiGetChildChiplets");
            break;

        }

        // loop over configured MCS chiplets and set epsilon configuration
        for (std::vector<fapi::Target>::iterator i = mcs_chiplets.begin();
             i != mcs_chiplets.end();
             i++)
        {
            rc = fapiPutScom(*i, MCS_MCEPS_0x02011816, data);

            if (!rc.ok())
            {
                FAPI_ERR("proc_build_smp_set_epsilons_mcs: fapiPutScom error (MCS_MCEPS_0x02011816)");
                break;
            }
        }
        if (!rc.ok())
        {
            break;
        }
    } while(0);

    // mark function exit
    FAPI_DBG("proc_build_smp_set_epsilons_mcs: End");
    return rc;
}


//------------------------------------------------------------------------------
// function: set NX CQ (NX/AS) unit epsilon registers
// parameters: i_target  => chip target
//             i_eps_cfg => system epsilon configuration structure
// returns: ECMD_SUCCESS if all settings are programmed correctly,
//          RC_PROC_BUILD_SMP_EPSILON_RANGE_ERR if any target value is out of
//              range given underlying HW storage,
//          else error
//------------------------------------------------------------------------------
fapi::ReturnCode proc_build_smp_set_epsilons_nx(
    fapi::Target & i_target,
    const proc_build_smp_eps_cfg & i_eps_cfg)
{
    fapi::ReturnCode rc;
    uint32_t rc_ecmd = 0x0;
    bool w_t2_fits = false;
    ecmdDataBufferBase data(64), mask(64);

    // mark function entry
    FAPI_DBG("proc_build_smp_set_epsilons_nx: Start");

    do
    {
        //
        // 0201309D = NX CQ Epsilon Scale register
        //    0:5 = w_t2 (MAX = all 0s =  448, MIN = 1, HW = target_value/7)
        //

        // target write tier2 epsilon value must be representable
        // in HW storage, error out if not
        rc = proc_build_smp_check_epsilon(
            i_eps_cfg.w_t2,
            PROC_BUILD_SMP_EPSILON_NX_MAX_VALUE_W_T2,
            true,
            w_t2_fits);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_nx: Error from proc_build_smp_check_epsilon (w_t2)");
            break;
        }

        // program write epsilon register based on unit implementation
        uint32_t hw_value = proc_build_smp_round_ceiling(i_eps_cfg.w_t2, 7);
        if (hw_value == 64)
        {
            hw_value = 0;
        }

        rc_ecmd |= data.insertFromRight(
            hw_value,
            NX_CQ_EPSILON_SCALE_EPSILON_START_BIT,
            (NX_CQ_EPSILON_SCALE_EPSILON_END_BIT-
             NX_CQ_EPSILON_SCALE_EPSILON_START_BIT+1));
        rc_ecmd |= mask.setBit(
            NX_CQ_EPSILON_SCALE_EPSILON_START_BIT,
            (NX_CQ_EPSILON_SCALE_EPSILON_END_BIT-
             NX_CQ_EPSILON_SCALE_EPSILON_START_BIT+1));

        if (rc_ecmd)
        {
            FAPI_ERR("proc_build_smp_set_epsilons_nx: Error 0x%x setting up NX CQ Epsilon Scale register data buffer",
                     rc_ecmd);
            rc.setEcmdError(rc_ecmd);
            break;
        }

        // write register (use mask to avoid overriding other configuration
        // settings in register)
        rc = fapiPutScomUnderMask(i_target,
                                  NX_CQ_EPS_0x0201309D,
                                  data,
                                  mask);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_nx: fapiPutScomUnderMask error (NX_CQ_EPS_0x0201309D)");
            break;
        }
    } while(0);

    // mark function entry
    FAPI_DBG("proc_build_smp_set_epsilons_nx: End");
    return rc;
}


//------------------------------------------------------------------------------
// function: set HCA unit epsilon registers
// parameters: i_target  => chip target
//             i_eps_cfg => system epsilon configuration structure
// returns: ECMD_SUCCESS if all settings are programmed correctly,
//          RC_PROC_BUILD_SMP_EPSILON_RANGE_ERR if any target value is out of
//              range given underlying HW storage,
//          else error
//------------------------------------------------------------------------------
fapi::ReturnCode proc_build_smp_set_epsilons_hca(
    fapi::Target & i_target,
    const proc_build_smp_eps_cfg & i_eps_cfg)
{
    fapi::ReturnCode rc;
    uint32_t rc_ecmd = 0x0;
    bool w_t2_fits = false;
    ecmdDataBufferBase data(64), mask(64);

    // mark function entry
    FAPI_DBG("proc_build_smp_set_epsilons_hca: Start");

    do
    {
        //
        // 0201094F = HCA Mode Register
        //  21:29 = w_t2 (MAX = all 0s =  512, MIN = 1, HW = target_value+1)
        //

        // all target values must be representable in HW storage, error if not
        rc = proc_build_smp_check_epsilon(
            i_eps_cfg.w_t2,
            PROC_BUILD_SMP_EPSILON_HCA_MAX_VALUE_W_T2,
            true,
            w_t2_fits);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_hca: Error from proc_build_smp_check_epsilon (w_t2)");
            break;
        }

        // form data buffer
        rc_ecmd |= data.insertFromRight(
            ((i_eps_cfg.w_t2 == PROC_BUILD_SMP_EPSILON_HCA_MAX_VALUE_W_T2)?
             (0):(i_eps_cfg.w_t2+1)),
            HCA_MODE_EPSILON_START_BIT,
            (HCA_MODE_EPSILON_END_BIT-
             HCA_MODE_EPSILON_START_BIT+1));
        rc_ecmd |= mask.setBit(
            HCA_MODE_EPSILON_START_BIT,
            (HCA_MODE_EPSILON_END_BIT-
             HCA_MODE_EPSILON_START_BIT+1));

        if (rc_ecmd)
        {
            FAPI_ERR("proc_build_smp_set_epsilons_hca: Error 0x%x setting up HCA Mode data buffer",
                     rc_ecmd);
            rc.setEcmdError(rc_ecmd);
            break;
        }

        // write register (use mask to avoid overriding other configuration
        // settings in register)
        rc = fapiPutScomUnderMask(i_target, HCA_MODE_0x0201094F, data, mask);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_hca: fapiPutScomUnderMask error (HCA_MODE_0x0201094F)");
            break;
        }

    } while(0);

    // mark function exit
    FAPI_DBG("proc_build_smp_set_epsilons_hca: End");
    return rc;
}


//------------------------------------------------------------------------------
// function: set CAPP unit epsilon registers
// parameters: i_target  => chip target
//             i_eps_cfg => system epsilon configuration structure
// returns: ECMD_SUCCESS if all settings are programmed correctly,
//          RC_PROC_BUILD_SMP_EPSILON_RANGE_ERR if any target value is out of
//              range given underlying HW storage,
//          else error
//------------------------------------------------------------------------------
fapi::ReturnCode proc_build_smp_set_epsilons_capp(
    fapi::Target & i_target,
    const proc_build_smp_eps_cfg & i_eps_cfg)
{
    fapi::ReturnCode rc;
    uint32_t rc_ecmd = 0x0;
    bool r_t0_fits = false;
    bool r_t1_fits = false;
    bool r_t2_fits = false;
    bool w_t2_fits = false;
    ecmdDataBufferBase data(64), mask(64);

    // mark function entry
    FAPI_DBG("proc_build_smp_set_epsilons_capp: Start");

    do
    {
        //
        // 0201301B = CAPP CXA Snoop Control register
        //   3:11 = r_t0 (MAX = all 0s =  512, MIN = 1, HW = target_value+1)
        //  15:23 = r_t1 (MAX = all 0s =  512, MIN = 1, HW = target_value+1)
        //  25:35 = r_t2 (MAX = all 0s = 2048, MIN = 1, HW = target_value+1)
        //      0 = force t2 (0 = MODE1 = use scope to choose tier,
        //                    0 = MODE2 = use r_t2 value for all read protection
        //
        // 02013018 = CAPP APC Master PB Control register
        //  39:45 = w_t2 (MAX = all 0s =  128, MIN = 1, HW = target value+1)
        //

        // target read tier2 & write tier2 epsilon values must be representable
        // in HW storage, error out if not
        rc = proc_build_smp_check_epsilon(
            i_eps_cfg.r_t2,
            PROC_BUILD_SMP_EPSILON_CAPP_MAX_VALUE_R_T2,
            true,
            r_t2_fits);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_capp: Error from proc_build_smp_check_epsilon (r_t2)");
            break;
        }

        rc = proc_build_smp_check_epsilon(
            i_eps_cfg.w_t2,
            PROC_BUILD_SMP_EPSILON_CAPP_MAX_VALUE_W_T2,
            true,
            w_t2_fits);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_capp: Error from proc_build_smp_check_epsilon (w_t2)");
            break;
        }

        // check read tier0, read tier1 target values
        // don't error if these don't fit, as we will just force use of tier2
        // in this case
        (void) proc_build_smp_check_epsilon(
            i_eps_cfg.r_t0,
            PROC_BUILD_SMP_EPSILON_CAPP_MAX_VALUE_R_T0,
            false,
            r_t0_fits);
        (void) proc_build_smp_check_epsilon(
            i_eps_cfg.r_t1,
            PROC_BUILD_SMP_EPSILON_CAPP_MAX_VALUE_R_T1,
            false,
            r_t1_fits);

        // program write epsilon register based on unit implementation
        rc_ecmd |= data.insertFromRight(
            ((i_eps_cfg.w_t2 == PROC_BUILD_SMP_EPSILON_CAPP_MAX_VALUE_W_T2)?
             (0):(i_eps_cfg.w_t2+1)),
            CAPP_APC_MASTER_CONTROL_EPSILON_START_BIT,
            (CAPP_APC_MASTER_CONTROL_EPSILON_END_BIT-
             CAPP_APC_MASTER_CONTROL_EPSILON_START_BIT+1));
        rc_ecmd |= mask.setBit(
            CAPP_APC_MASTER_CONTROL_EPSILON_START_BIT,
            (CAPP_APC_MASTER_CONTROL_EPSILON_END_BIT-
             CAPP_APC_MASTER_CONTROL_EPSILON_START_BIT+1));

        if (rc_ecmd)
        {
            FAPI_ERR("proc_build_smp_set_epsilons_capp: Error 0x%x setting up CAPP APC Master Control register data buffer",
                     rc_ecmd);
            rc.setEcmdError(rc_ecmd);
            break;
        }

        // write register (use mask to avoid overriding other configuration
        // settings in register)
        rc = fapiPutScomUnderMask(i_target,
                                  CAPP_APC_MASTER_PB_CTL_0x02013018,
                                  data,
                                  mask);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_capp: fapiPutScomUnderMask error (CAPP_APC_MASTER_PB_CTL_0x02013018)");
            break;
        }

        // program read epsilon register based on unit implementation
        rc_ecmd = data.flushTo0();
        rc_ecmd = mask.flushTo0();

        rc_ecmd |= data.insertFromRight(
            ((i_eps_cfg.r_t2 == PROC_BUILD_SMP_EPSILON_CAPP_MAX_VALUE_R_T2)?
             (0):(i_eps_cfg.r_t2+1)),
            CAPP_CXA_SNP_READ_EPSILON_TIER2_START_BIT,
            (CAPP_CXA_SNP_READ_EPSILON_TIER2_END_BIT-
             CAPP_CXA_SNP_READ_EPSILON_TIER2_START_BIT+1));
        rc_ecmd |= mask.setBit(
            CAPP_CXA_SNP_READ_EPSILON_TIER2_START_BIT,
            (CAPP_CXA_SNP_READ_EPSILON_TIER2_END_BIT-
             CAPP_CXA_SNP_READ_EPSILON_TIER2_START_BIT+1));

        // force tier2 if necessary
        if (!r_t0_fits || !r_t1_fits)
        {
            rc_ecmd |= data.writeBit(
                CAPP_CXA_SNP_READ_EPSILON_MODE_BIT,
                PROC_BUILD_SMP_EPSILON_CAPP_FORCE_T2);
            rc_ecmd |= mask.setBit(
                CAPP_CXA_SNP_READ_EPSILON_MODE_BIT);
        }
        else
        {
            rc_ecmd |= data.insertFromRight(
                ((i_eps_cfg.r_t0 == PROC_BUILD_SMP_EPSILON_CAPP_MAX_VALUE_R_T0)?
                 (0):(i_eps_cfg.r_t0+1)),
                CAPP_CXA_SNP_READ_EPSILON_TIER0_START_BIT,
                (CAPP_CXA_SNP_READ_EPSILON_TIER0_END_BIT-
                 CAPP_CXA_SNP_READ_EPSILON_TIER0_START_BIT+1));
            rc_ecmd |= mask.setBit(
                CAPP_CXA_SNP_READ_EPSILON_TIER0_START_BIT,
                (CAPP_CXA_SNP_READ_EPSILON_TIER0_END_BIT-
                 CAPP_CXA_SNP_READ_EPSILON_TIER0_START_BIT+1));

            rc_ecmd |= data.insertFromRight(
                ((i_eps_cfg.r_t1 == PROC_BUILD_SMP_EPSILON_CAPP_MAX_VALUE_R_T1)?
                 (0):(i_eps_cfg.r_t1+1)),
                CAPP_CXA_SNP_READ_EPSILON_TIER1_START_BIT,
                (CAPP_CXA_SNP_READ_EPSILON_TIER1_END_BIT-
                 CAPP_CXA_SNP_READ_EPSILON_TIER1_START_BIT+1));
            rc_ecmd |= mask.setBit(
                CAPP_CXA_SNP_READ_EPSILON_TIER1_START_BIT,
                (CAPP_CXA_SNP_READ_EPSILON_TIER1_END_BIT-
                 CAPP_CXA_SNP_READ_EPSILON_TIER1_START_BIT+1));
        }

        if (rc_ecmd)
        {
            FAPI_ERR("proc_build_smp_set_epsilons_capp: Error 0x%x setting up CAPP CXA Snoop Control register data buffer",
                     rc_ecmd);
            rc.setEcmdError(rc_ecmd);
            break;
        }

        // write register (use mask to avoid overriding other configuration
        // settings in register)
        rc = fapiPutScomUnderMask(i_target,
                                  CAPP_CXA_SNOOP_CTL_0x0201301B,
                                  data,
                                  mask);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_capp: fapiPutScomUnderMask error (CAPP_CXA_SNOOP_CTL_0x0201301B)");
            break;
        }

    } while(0);

    // mark function exit
    FAPI_DBG("proc_build_smp_set_epsilons_capp: End");
    return rc;
}


//------------------------------------------------------------------------------
// function: set MCD unit epsilon registers
// parameters: i_target  => chip target
//             i_eps_cfg => system epsilon configuration structure
// returns: ECMD_SUCCESS if all settings are programmed correctly,
//          RC_PROC_BUILD_SMP_EPSILON_RANGE_ERR if any target value is out of
//              range given underlying HW storage,
//          else error
//------------------------------------------------------------------------------
fapi::ReturnCode proc_build_smp_set_epsilons_mcd(
    fapi::Target & i_target,
    const proc_build_smp_eps_cfg & i_eps_cfg)
{
    fapi::ReturnCode rc;
    uint32_t rc_ecmd = 0x0;
    bool p_fits = false;
    ecmdDataBufferBase data(64), mask(64);

    // mark function entry
    FAPI_DBG("proc_build_smp_set_epsilons_mcd: Start");

    do
    {
        //
        // 0201340B = MCD Recovery Pre Epsilon Configuration register
        //  52:63 = p (MAX = all 1s = 66520, MIN = 0, HW = target_value/16)
        //

        // target pre epsilon value must be representable
        // in HW storage, error out if not
        rc = proc_build_smp_check_epsilon(
            i_eps_cfg.p,
            PROC_BUILD_SMP_EPSILON_MCD_MAX_VALUE_P,
            true,
            p_fits);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_mcd: Error from proc_build_smp_check_epsilon (p)");
            break;
        }

        // program write epsilon register based on unit implementation
        rc_ecmd |= data.insertFromRight(
            proc_build_smp_round_ceiling(i_eps_cfg.p, 16),
            MCD_RECOVERY_PRE_EPS_CONFIG_EPSILON_START_BIT,
            (MCD_RECOVERY_PRE_EPS_CONFIG_EPSILON_END_BIT-
             MCD_RECOVERY_PRE_EPS_CONFIG_EPSILON_START_BIT+1));
        rc_ecmd |= mask.setBit(
            MCD_RECOVERY_PRE_EPS_CONFIG_EPSILON_START_BIT,
            (MCD_RECOVERY_PRE_EPS_CONFIG_EPSILON_END_BIT-
             MCD_RECOVERY_PRE_EPS_CONFIG_EPSILON_START_BIT+1));

        if (rc_ecmd)
        {
            FAPI_ERR("proc_build_smp_set_epsilons_mcd: Error 0x%x setting up MCD Recovery Pre Epsilon Configuration register data buffer",
                     rc_ecmd);
            rc.setEcmdError(rc_ecmd);
            break;
        }

        // write register (use mask to avoid overriding other configuration
        // settings in register)
        rc = fapiPutScomUnderMask(i_target,
                                  MCD_PRE_EPS_0x0201340B,
                                  data,
                                  mask);

        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons_mcd: fapiPutScomUnderMask error (MCD_PRE_EPS_0x0201340B)");
            break;
        }

    } while(0);

    // mark function exit
    FAPI_DBG("proc_build_smp_set_epsilons_mcd: End");
    return rc;
}


//------------------------------------------------------------------------------
// function: calculate target epsilon settings to apply based on
//           system configuration
// parameters: io_smp => structure encapsulating SMP (including system
//                       frequency/epsilon configuration parameter values),
//                       target epsilon values will be filled by this subroutine
// returns: FAPI_RC_SUCCESS if target settings are valid,
//          RC_PROC_BUILD_SMP_EPSILON_INVALID_TABLE_ERR if invalid epsilon
//              table type/content is detected,
//          else error
//------------------------------------------------------------------------------
fapi::ReturnCode proc_build_smp_calc_epsilons(
    proc_build_smp_system & io_smp)
{
    fapi::ReturnCode rc;

    // mark function entry
    FAPI_DBG("proc_build_smp_calc_epsilons: Start");

    do
    {
        // perform table lookup based on system table type
        FAPI_DBG("proc_build_smp_calc_epsilons: core floor freq = %d, PB freq = %d, table index = %d",
                 io_smp.freq_core_floor,
                 io_smp.freq_pb,
                 io_smp.core_floor_ratio);

        switch(io_smp.eps_cfg.table_type)
        {
            case PROC_FAB_SMP_EPSILON_TABLE_TYPE_HE:
                if (io_smp.pump_mode == PROC_FAB_SMP_PUMP_MODE1)
                {
                    io_smp.eps_cfg.r_t0 = PROC_BUILD_SMP_EPSILON_R_T0_HE[io_smp.core_floor_ratio];
                }
                else
                {
                    io_smp.eps_cfg.r_t0 = PROC_BUILD_SMP_EPSILON_R_T1_HE[io_smp.core_floor_ratio];
                }
                io_smp.eps_cfg.r_t1 = PROC_BUILD_SMP_EPSILON_R_T1_HE[io_smp.core_floor_ratio];
                io_smp.eps_cfg.r_t2 = PROC_BUILD_SMP_EPSILON_R_T2_HE[io_smp.core_floor_ratio];
                io_smp.eps_cfg.r_f  = PROC_BUILD_SMP_EPSILON_R_F_HE[io_smp.core_floor_ratio];
                io_smp.eps_cfg.w_t2 = PROC_BUILD_SMP_EPSILON_W_HE[io_smp.core_floor_ratio];
                io_smp.eps_cfg.w_f  = PROC_BUILD_SMP_EPSILON_W_F_HE[io_smp.core_floor_ratio];
                io_smp.eps_cfg.p    = PROC_BUILD_SMP_EPSILON_P_HE[io_smp.core_floor_ratio];
                break;
            case PROC_FAB_SMP_EPSILON_TABLE_TYPE_LE:
                if (io_smp.pump_mode == PROC_FAB_SMP_PUMP_MODE1)
                {
                    io_smp.eps_cfg.r_t0 = PROC_BUILD_SMP_EPSILON_R_T0_LE[io_smp.core_floor_ratio];
                }
                else
                {
                    io_smp.eps_cfg.r_t0 = PROC_BUILD_SMP_EPSILON_R_T1_LE[io_smp.core_floor_ratio];
                }
                io_smp.eps_cfg.r_t1 = PROC_BUILD_SMP_EPSILON_R_T1_LE[io_smp.core_floor_ratio];
                io_smp.eps_cfg.r_t2 = PROC_BUILD_SMP_EPSILON_R_T2_LE[io_smp.core_floor_ratio];
                io_smp.eps_cfg.r_f  = PROC_BUILD_SMP_EPSILON_R_F_LE[io_smp.core_floor_ratio];
                io_smp.eps_cfg.w_t2 = PROC_BUILD_SMP_EPSILON_W_LE[io_smp.core_floor_ratio];
                io_smp.eps_cfg.w_f  = PROC_BUILD_SMP_EPSILON_W_F_LE[io_smp.core_floor_ratio];
                io_smp.eps_cfg.p    = PROC_BUILD_SMP_EPSILON_P_LE[io_smp.core_floor_ratio];
                break;
            case PROC_FAB_SMP_EPSILON_TABLE_TYPE_1S:
                if (io_smp.pump_mode == PROC_FAB_SMP_PUMP_MODE1)
                {
                    io_smp.eps_cfg.r_t0 = PROC_BUILD_SMP_EPSILON_R_T0_1S[io_smp.core_floor_ratio];
                }
                else
                {
                    io_smp.eps_cfg.r_t0 = PROC_BUILD_SMP_EPSILON_R_T1_1S[io_smp.core_floor_ratio];
                }
                io_smp.eps_cfg.r_t1 = PROC_BUILD_SMP_EPSILON_R_T1_1S[io_smp.core_floor_ratio];
                io_smp.eps_cfg.r_t2 = PROC_BUILD_SMP_EPSILON_R_T2_1S[io_smp.core_floor_ratio];
                io_smp.eps_cfg.r_f  = PROC_BUILD_SMP_EPSILON_R_F_1S[io_smp.core_floor_ratio];
                io_smp.eps_cfg.w_t2 = PROC_BUILD_SMP_EPSILON_W_1S[io_smp.core_floor_ratio];
                io_smp.eps_cfg.w_f  = PROC_BUILD_SMP_EPSILON_W_F_1S[io_smp.core_floor_ratio];
                io_smp.eps_cfg.p    = PROC_BUILD_SMP_EPSILON_P_1S[io_smp.core_floor_ratio];
                break;
            default:
                FAPI_ERR("proc_build_smp_calc_epsilons: Invalid epsilon table type");
                FAPI_SET_HWP_ERROR(rc, RC_PROC_BUILD_SMP_EPSILON_INVALID_TABLE_ERR);
                break;
        }
        if (!rc.ok())
        {
            break;
        }

        // dump base epsilon values
        FAPI_DBG("proc_build_smp_calc_epsilons: Base epsilon values read from table:");
        FAPI_DBG("proc_build_smp_calc_epsilons:  R_T0 = %d", io_smp.eps_cfg.r_t0);
        FAPI_DBG("proc_build_smp_calc_epsilons:  R_T1 = %d", io_smp.eps_cfg.r_t1);
        FAPI_DBG("proc_build_smp_calc_epsilons:  R_T2 = %d", io_smp.eps_cfg.r_t2);
        FAPI_DBG("proc_build_smp_calc_epsilons:   R_F = %d", io_smp.eps_cfg.r_f);
        FAPI_DBG("proc_build_smp_calc_epsilons:  W_T2 = %d", io_smp.eps_cfg.w_t2);
        FAPI_DBG("proc_build_smp_calc_epsilons:   W_F = %d", io_smp.eps_cfg.w_f);
        FAPI_DBG("proc_build_smp_calc_epsilons:     P = %d", io_smp.eps_cfg.p);

        // apply guardband to base epsilon values
        proc_build_smp_guardband_epsilon(
            io_smp.eps_cfg.gb_positive,
            io_smp.eps_cfg.gb_percentage,
            io_smp.eps_cfg.r_t0);
        proc_build_smp_guardband_epsilon(
            io_smp.eps_cfg.gb_positive,
            io_smp.eps_cfg.gb_percentage,
            io_smp.eps_cfg.r_t1);
        proc_build_smp_guardband_epsilon(
            io_smp.eps_cfg.gb_positive,
            io_smp.eps_cfg.gb_percentage,
            io_smp.eps_cfg.r_t2);
        proc_build_smp_guardband_epsilon(
            io_smp.eps_cfg.gb_positive,
            io_smp.eps_cfg.gb_percentage,
            io_smp.eps_cfg.r_f);
        proc_build_smp_guardband_epsilon(
            io_smp.eps_cfg.gb_positive,
            io_smp.eps_cfg.gb_percentage,
            io_smp.eps_cfg.w_t2);
        proc_build_smp_guardband_epsilon(
            io_smp.eps_cfg.gb_positive,
            io_smp.eps_cfg.gb_percentage,
            io_smp.eps_cfg.w_f);
        proc_build_smp_guardband_epsilon(
            io_smp.eps_cfg.gb_positive,
            io_smp.eps_cfg.gb_percentage,
            io_smp.eps_cfg.p);

        // dump scaled epsilon values
        FAPI_DBG("proc_build_smp_calc_epsilons: Scaled epsilon values based on %s%d%% guardband:",
                 (io_smp.eps_cfg.gb_positive)?("+"):("-"),
                 io_smp.eps_cfg.gb_percentage);
        FAPI_DBG("proc_build_smp_calc_epsilons:  R_T0 = %d", io_smp.eps_cfg.r_t0);
        FAPI_DBG("proc_build_smp_calc_epsilons:  R_T1 = %d", io_smp.eps_cfg.r_t1);
        FAPI_DBG("proc_build_smp_calc_epsilons:  R_T2 = %d", io_smp.eps_cfg.r_t2);
        FAPI_DBG("proc_build_smp_calc_epsilons:   R_F = %d", io_smp.eps_cfg.r_f);
        FAPI_DBG("proc_build_smp_calc_epsilons:  W_T2 = %d", io_smp.eps_cfg.w_t2);
        FAPI_DBG("proc_build_smp_calc_epsilons:   W_F = %d", io_smp.eps_cfg.w_f);
        FAPI_DBG("proc_build_smp_calc_epsilons:     P = %d", io_smp.eps_cfg.p);

        // check relationship of epsilon counters
        // rules:
        //   read tier values are strictly increasing
        //   read tier2 value is greater than read foreign value
        //   write tier2 value is greater than write foreign value
        if ((io_smp.eps_cfg.r_t0 > io_smp.eps_cfg.r_t1) ||
            (io_smp.eps_cfg.r_t1 > io_smp.eps_cfg.r_t2) ||
            ((io_smp.eps_cfg.r_f  > io_smp.eps_cfg.r_t2) && (io_smp.eps_cfg.table_type != PROC_FAB_SMP_EPSILON_TABLE_TYPE_1S)) ||
            ((io_smp.eps_cfg.w_f  > io_smp.eps_cfg.w_t2) && (io_smp.eps_cfg.table_type != PROC_FAB_SMP_EPSILON_TABLE_TYPE_1S)))
        {
            FAPI_ERR("proc_build_smp_calc_epsilons: Invalid relationship between base epsilon values");
            FAPI_SET_HWP_ERROR(rc, RC_PROC_BUILD_SMP_EPSILON_INVALID_TABLE_ERR);
            break;
        }

    } while(0);

    // mark function exit
    FAPI_DBG("proc_build_smp_calc_epsilons: End");
    return rc;
}


// NOTE: see comments above function prototype in header
fapi::ReturnCode proc_build_smp_set_epsilons(
    proc_build_smp_system & i_smp)
{
    fapi::ReturnCode rc;
    std::map<proc_fab_smp_node_id, proc_build_smp_node>::iterator n_iter;
    std::map<proc_fab_smp_chip_id, proc_build_smp_chip>::iterator p_iter;

    // mark function entry
    FAPI_DBG("proc_build_smp_set_epsilons: Start");

    do
    {
        // calculate epsilons
        rc = proc_build_smp_calc_epsilons(i_smp);
        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons: Error from proc_build_smp_calc_epsilons");
            break;
        }

        // set system level attributes
        // L2
        rc = proc_build_smp_set_epsilons_l2(i_smp.eps_cfg);
        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons: Error from proc_build_smp_set_epsilons_l2");
            break;
        }

        // L3
        rc = proc_build_smp_set_epsilons_l3(i_smp.eps_cfg);
        if (!rc.ok())
        {
            FAPI_ERR("proc_build_smp_set_epsilons: Error from proc_build_smp_set_epsilons_l3");
            break;
        }

        // process each chip in SMP, program unit epsilon registers
        for (n_iter = i_smp.nodes.begin();
             (n_iter != i_smp.nodes.end()) && (rc.ok());
             n_iter++)
        {
            for (p_iter = n_iter->second.chips.begin();
                 (p_iter != n_iter->second.chips.end()) && (rc.ok());
                 p_iter++)
            {
                fapi::Target target = p_iter->second.chip->this_chip;

                // MCS
                rc = proc_build_smp_set_epsilons_mcs(target, i_smp.eps_cfg);
                if (!rc.ok())
                {
                    FAPI_ERR("proc_build_smp_set_epsilons: Error from proc_build_smp_set_epsilons_mcs");
                    break;
                }

                // HCA
                rc = proc_build_smp_set_epsilons_hca(target, i_smp.eps_cfg);
                if (!rc.ok())
                {
                    FAPI_ERR("proc_build_smp_set_epsilons: Error from proc_build_smp_set_epsilons_hca");
                    break;
                }

                // set epsilons for NX regions only if partial good attribute is set
                if (p_iter->second.nx_enabled)
                {
                    // NX
                    rc = proc_build_smp_set_epsilons_nx(target, i_smp.eps_cfg);
                    if (!rc.ok())
                    {
                        FAPI_ERR("proc_build_smp_set_epsilons: Error from proc_build_smp_set_epsilons_nx");
                        break;
                    }

                    // CAPP
                    rc = proc_build_smp_set_epsilons_capp(target, i_smp.eps_cfg);
                    if (!rc.ok())
                    {
                        FAPI_ERR("proc_build_smp_set_epsilons: Error from proc_build_smp_set_epsilons_capp");
                        break;
                    }
                }

                // MCD
                rc = proc_build_smp_set_epsilons_mcd(target, i_smp.eps_cfg);
                if (!rc.ok())
                {
                    FAPI_ERR("proc_build_smp_set_epsilons: Error from proc_build_smp_set_epsilons_mcd");
                    break;
                }
            }
        }
    } while(0);

    // mark function exit
    FAPI_DBG("proc_build_smp_set_epsilons: End");
    return rc;
}


} // extern "C"
OpenPOWER on IntegriCloud