summaryrefslogtreecommitdiffstats
path: root/src/usr/hwpf/hwp/dimmBadDqBitmapAccessHwp.C
blob: 98f9bf92e4af6bc5d25ff15d67ce3dc641631cee (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/hwpf/hwp/dimmBadDqBitmapAccessHwp.C $                 */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2012,2015                        */
/* [+] 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                                                     */
// $Id: dimmBadDqBitmapAccessHwp.C,v 1.16 2015/04/22 20:09:16 cswenson Exp $
/**
 *  @file dimmBadDqBitmapAccessHwp.C
 *
 *  @brief FW Team HWP that accesses the Bad DQ Bitmap.
 */

/*
 * Change Log ******************************************************************
 * Flag     Defect/Feature  User        Date        Description
 * ------   --------------  ----------  ----------- ----------------------------
 *                          mjjones     02/17/2012  Created.
 *                          mjjones     01/30/2013  Cope with platform endian
 *                                                  differences
 *                          dedahle     06/22/2013  Show unconnected DQ lines
 *                          dedahle     09/20/2013  Temporarily use
 *                                                  ATTR_EFF_DIMM_SPARE
 *                          dedahle     09/20/2013  Support manufacturing mode
 *                          dedahle     10/11/2013  Add memset for gcc version
 *                                                  constructor syntax issue
 *                          dedahle     12/01/2013  Fix
 *                                                  dimmUpdateDqBitmapSpareByte
 *                                                  to not set bits for
 *                                                  connected DQs
 *                          dedahle     01/08/2014  Switch back to reading
 *                                                  ATTR_VPD_DIMM_SPARE
 *                          smcprek     01/14/2014  Perform Reconfig Loop on
 *                                                  Bad DQ set
 *                          whs         02/24/2014  Capture bad DQs as FFDC
 *                                                  in mnfg error logs
 *                          whs         03/27/2014  fix current FFDC bit map
 *                          cswenson    04/22/2014  fix spare byte translate
 */

#include <dimmBadDqBitmapAccessHwp.H>
#include <config.h>

// DQ Data format in DIMM SPD
const uint32_t DIMM_BAD_DQ_MAGIC_NUMBER = 0xbadd4471;
const uint8_t DIMM_BAD_DQ_VERSION = 1;
const uint8_t ECC_DQ_BYTE_NUMBER_INDEX = 8;
const uint8_t SPARE_DRAM_DQ_BYTE_NUMBER_INDEX = 9;

struct dimmBadDqDataFormat
{
    uint32_t iv_magicNumber;
    uint8_t  iv_version;
    uint8_t  iv_reserved1;
    uint8_t  iv_reserved2;
    uint8_t  iv_reserved3;
    uint8_t  iv_bitmaps[DIMM_DQ_MAX_DIMM_RANKS][DIMM_DQ_RANK_BITMAP_SIZE];
};

extern "C"
{

/**
 * @brief Returns bits for unconnected spare DRAM.
 *
 *
 * @param[in] i_mba       Reference to MBA Target.
 * @param[in] i_dimm      Reference to DIMM Target.
 * @param[o]  o_spareByte Reference to the spare byte returned to caller.
 *
 * @return ReturnCode
 */
fapi::ReturnCode dimmGetDqBitmapSpareByte(
    const fapi::Target & i_mba,
    const fapi::Target & i_dimm,
    uint8_t (&o_spareByte)[DIMM_DQ_MAX_DIMM_RANKS])
{
    fapi::ReturnCode l_rc;

    do
    {
        // Spare DRAM Attribute: Returns spare DRAM availability for
        // all DIMMs associated with the target MBA.
        uint8_t l_mbaSpare[DIMM_DQ_MAX_MBA_PORTS][DIMM_DQ_MAX_MBAPORT_DIMMS]
                                                 [DIMM_DQ_MAX_DIMM_RANKS] = {};

        l_rc = FAPI_ATTR_GET(ATTR_VPD_DIMM_SPARE, &i_mba, l_mbaSpare);
        if (l_rc)
        {
            FAPI_ERR("dimmGetDqBitmapSpareByte: "
                     "Error getting DRAM Spare data");
            break;
        }
        // Find the mba port this dimm is connected to
        uint8_t l_mbaPort = 0;
        l_rc = FAPI_ATTR_GET(ATTR_MBA_PORT, &i_dimm, l_mbaPort);
        if (l_rc)
        {
            FAPI_ERR("dimmGetDqBitmapSpareByte: "
                     "Error getting MBA port number");
            break;
        }
        // Find the dimm number associated with this dimm
        uint8_t l_dimm = 0;
        l_rc = FAPI_ATTR_GET(ATTR_MBA_DIMM, &i_dimm, l_dimm);
        if (l_rc)
        {
            FAPI_ERR("dimmGetDqBitmapSpareByte: "
                     "Error getting dimm number");
            break;
        }
        // Iterate through each rank of this DIMM
        for (uint8_t i = 0; i < DIMM_DQ_MAX_DIMM_RANKS; i++)
        {
            // Handle spare DRAM configuration cases
            switch (l_mbaSpare[l_mbaPort][l_dimm][i])
            {
                case fapi::ENUM_ATTR_VPD_DIMM_SPARE_NO_SPARE:
                    // Set DQ bits reflecting unconnected
                    // spare DRAM in caller's data
                    o_spareByte[i] = 0xFF;
                    break;

                case fapi::ENUM_ATTR_VPD_DIMM_SPARE_LOW_NIBBLE:
                    o_spareByte[i] = 0x0F;
                    break;

                case fapi::ENUM_ATTR_VPD_DIMM_SPARE_HIGH_NIBBLE:
                    o_spareByte[i] = 0xF0;
                    break;

                // As erroneous value will not be encountered.
                case fapi::ENUM_ATTR_VPD_DIMM_SPARE_FULL_BYTE:
                default:
                    o_spareByte[i] = 0x0;
                    break;
            }
        }
    }while(0);
    return l_rc;
}

/**
 * @brief Called by dimmBadDqBitmapAccessHwp() to query ATTR_EFF_DIMM_SPARE
 * and set bits for unconnected spare DRAM in caller's data.
 *
 *
 * @param[in] i_mba       Reference to MBA Target.
 * @param[in] i_dimm      Reference to DIMM Target.
 * @param[o]  o_data      Reference to Bad DQ Bitmap set by
 *                        the caller.  Only the SPARE_DRAM_DQ_BYTE_NUMBER_INDEX
 *                        byte is modified by this function.
 *
 * @return ReturnCode
 */

fapi::ReturnCode dimmUpdateDqBitmapSpareByte(
    const fapi::Target & i_mba,
    const fapi::Target & i_dimm,
    uint8_t (&o_data)[DIMM_DQ_MAX_DIMM_RANKS][DIMM_DQ_RANK_BITMAP_SIZE])
{
    fapi::ReturnCode l_rc;

    uint8_t spareByte[DIMM_DQ_MAX_DIMM_RANKS];
    memset(spareByte, 0, sizeof(spareByte));

    l_rc = dimmGetDqBitmapSpareByte(i_mba,i_dimm,spareByte);
    if (l_rc)
    {
        FAPI_ERR("dimmUpdateDqBitmapSpareByte: "
                 "Error getting spare byte");
        return l_rc;
    }

    for (uint32_t i=0; i<DIMM_DQ_MAX_DIMM_RANKS; i++)
    {
        o_data[i][SPARE_DRAM_DQ_BYTE_NUMBER_INDEX] |= spareByte[i];
    }
    return l_rc;
}

/**
 * @brief Called by dimmBadDqBitmapAccessHwp() to query
 * ATTR_SPD_MODULE_MEMORY_BUS_WIDTH in order to determine
 * ECC support for this DIMM.  This function will set
 * bits in the caller's data if ECC lines are not present.
 *
 *
 * @param[in] i_dimm      Reference to DIMM Target.
 * @param[o]  o_data      Reference to Bad DQ Bitmap set by
 *                        the caller.  Only the ECC_DQ_BYTE_NUMBER_INDEX
 *                        byte is modified by this function.
 *
 * @return ReturnCode
 */

fapi::ReturnCode dimmUpdateDqBitmapEccByte(
    const fapi::Target & i_dimm,
    uint8_t (&o_data)[DIMM_DQ_MAX_DIMM_RANKS][DIMM_DQ_RANK_BITMAP_SIZE])
{
    fapi::ReturnCode l_rc;

    do
    {
        // Memory Bus Width Attribute
        uint8_t l_eccBits = 0;
        l_rc = FAPI_ATTR_GET(ATTR_SPD_MODULE_MEMORY_BUS_WIDTH,
                                         &i_dimm, l_eccBits);
        if (l_rc)
        {
            FAPI_ERR("dimmUpdateDqBitmapEccByte: "
                     "Error getting ECC data");
            break;
        }
        // The ATTR_SPD_MODULE_MEMORY_BUS_WIDTH contains ENUM values
        // for bus widths of 8, 16, 32, and 64 bits both with ECC
        // and without ECC.  WExx ENUMS deonote the ECC extension
        // is present, and all have bit 3 set.  Therefore,
        // it is only required to check against the WE8 = 0x08 ENUM
        // value in order to determine if ECC lines are present.

        // If ECCs are disconnected
        if (!(fapi::ENUM_ATTR_SPD_MODULE_MEMORY_BUS_WIDTH_WE8 &
              l_eccBits))
        {
            // Iterate through each rank and set DQ bits in
            // caller's data.
            for (uint8_t i = 0; i < DIMM_DQ_MAX_DIMM_RANKS; i++)
            {
                // Set DQ bits in caller's data
                o_data[i][ECC_DQ_BYTE_NUMBER_INDEX] = 0xFF;
            }
        }

    }while(0);
    return l_rc;
}

/**
 * @brief Called by dimmBadDqBitmapAccessHwp() to query ATTR_SPD_BAD_DQ_DATA
 *
 *
 * @param[in] i_mba             Reference to MBA Target.
 * @param[in] i_dimm            Reference to DIMM Target.
 * @param[o]  o_data            Reference to Bad DQ Bitmap set by this function
 * @param[in] i_wiringData      Reference to Centaur DQ to DIMM Connector
 *                              DQ Wiring attribute.
 * @param[in] i_allMnfgFlags    Manufacturing flags bitmap
 *
 * @return ReturnCode
 */

fapi::ReturnCode dimmBadDqBitmapGet(
    const fapi::Target & i_mba,
    const fapi::Target & i_dimm,
    uint8_t (&o_data)[DIMM_DQ_MAX_DIMM_RANKS][DIMM_DQ_RANK_BITMAP_SIZE],
    const uint8_t (&i_wiringData)[DIMM_DQ_NUM_DQS],
    uint64_t i_allMnfgFlags)
{
    fapi::ReturnCode l_rc;

    // DQ SPD Attribute
    uint8_t (&l_spdData)[DIMM_DQ_SPD_DATA_SIZE] =
        *(reinterpret_cast<uint8_t(*)[DIMM_DQ_SPD_DATA_SIZE]>
            (new uint8_t[DIMM_DQ_SPD_DATA_SIZE]()));

    // memset to avoid known syntax issue with previous compiler versions
    // and ensure zero initialized array.
    memset(l_spdData, 0, sizeof(l_spdData));

    dimmBadDqDataFormat * l_pSpdData =
        reinterpret_cast<dimmBadDqDataFormat *>(l_spdData);

    // Pointer which will be used to initialize a clean bitmap during
    // manufacturing mode
    uint8_t (*l_pBuf)[DIMM_DQ_RANK_BITMAP_SIZE] = NULL;

    do
    {
        // Get the SPD DQ attribute
        l_rc = FAPI_ATTR_GET(ATTR_SPD_BAD_DQ_DATA, &i_dimm, l_spdData);

        if (l_rc)
        {
            FAPI_ERR("dimmBadDqBitmapAccessHwp: Error getting SPD data");
            break;
        }
        // Zero caller's data
        memset(o_data, 0, sizeof(o_data));
        // Check the magic number and version number. Note that the
        // magic number is stored in SPD in big endian format and
        // platforms of any endianness can access it
        if ((FAPI_BE32TOH(l_pSpdData->iv_magicNumber) !=
               DIMM_BAD_DQ_MAGIC_NUMBER) ||
            (l_pSpdData->iv_version != DIMM_BAD_DQ_VERSION))
        {
            FAPI_INF("dimmBadDqBitmapAccessHwp: SPD DQ not initialized");
        }
        else
        {
            // Translate bitmap from DIMM DQ to Centaur DQ point of view
            // for each rank
            for (uint8_t i = 0; i < DIMM_DQ_MAX_DIMM_RANKS; i++)
            {
                // Iterate through all the DQ bits in the rank
                for (uint8_t j = 0; j < DIMM_DQ_NUM_DQS; j++)
                {
                    // There is a byte for each 8 DQs, j/8 gives the
                    // byte number. The MSB in each byte is the lowest
                    // DQ, (0x80 >> (j % 8)) gives the bit mask
                    // corresponding to the DQ within the byte
                    if ((l_pSpdData->iv_bitmaps[i][j/8]) &
                        (0x80 >> (j % 8)))
                    {
                        // DIMM DQ bit is set in SPD data.
                        // Set Centaur DQ bit in caller's data.
                        // The wiring data maps Centaur DQ to DIMM DQ
                        // Find the Centaur DQ that maps to this DIMM DQ
                        uint8_t k = 0;
                        for (; k < DIMM_DQ_NUM_DQS; k++)
                        {
                            if (i_wiringData[k] == j)
                            {
                                o_data[i][k/8] |= (0x80 >> (k % 8));
                                break;
                            }
                        }

                        if (k == DIMM_DQ_NUM_DQS)
                        {
                            FAPI_INF("dimmBadDqBitmapAccessHwp: "
                                     "Centaur DQ not found for %d!",j);
                        }
                    }
                }
            }
        }
        // Set bits for any unconnected DQs.
        // First, check ECC.
        l_rc = dimmUpdateDqBitmapEccByte(i_dimm, o_data);
        if (l_rc)
        {
            FAPI_ERR("dimmBadDqBitmapAccessHwp: "
                     "Error getting ECC data");
            break;
        }
        // Check spare DRAM
        l_rc = dimmUpdateDqBitmapSpareByte(i_mba, i_dimm, o_data);
        if (l_rc)
        {
            FAPI_ERR("dimmBadDqBitmapAccessHwp: "
                     "Error getting spare DRAM data");
            break;
        }
        // If system is in DISABLE_DRAM_REPAIRS mode
        if (i_allMnfgFlags &
            fapi::ENUM_ATTR_MNFG_FLAGS_MNFG_DISABLE_DRAM_REPAIRS)
        {

            // Flag to set if the discrepancies (described below)
            // are found
            bool mfgModeBadBitsPresent = false;
            // Create a local zero-initialized bad dq bitmap
            l_pBuf = new uint8_t[DIMM_DQ_MAX_DIMM_RANKS]
                                         [DIMM_DQ_RANK_BITMAP_SIZE]();
            uint8_t (&l_data)[DIMM_DQ_MAX_DIMM_RANKS]
                                 [DIMM_DQ_RANK_BITMAP_SIZE] =
            *(reinterpret_cast<uint8_t(*)[DIMM_DQ_MAX_DIMM_RANKS]
                                 [DIMM_DQ_RANK_BITMAP_SIZE]>(l_pBuf));
            // memset to avoid known syntax issue with previous
            // compiler versions and ensure zero initialized array.
            memset(l_data, 0, sizeof(l_data));

            // Check ECC.
            l_rc = dimmUpdateDqBitmapEccByte(i_dimm, l_data);
            if (l_rc)
            {
                FAPI_ERR("dimmBadDqBitmapAccessHwp: "
                         "Error getting ECC data (Mfg mode)");
                break;
            }
            // Check spare DRAM
            l_rc = dimmUpdateDqBitmapSpareByte(i_mba, i_dimm, l_data);
            if (l_rc)
            {
                FAPI_ERR("dimmBadDqBitmapAccessHwp: "
                         "Error getting spare DRAM data (Mfg mode)");
                break;
            }
            // Compare l_data, which represents a bad dq bitmap with the
            // appropriate spare/ECC bits set (if any) and all other DQ
            // lines functional, to caller's o_data.
            // If discrepancies are found, we know this is the result of
            // a manufacturing mode process and these bits should not be
            // recorded.
            for (uint8_t i = 0; i < DIMM_DQ_MAX_DIMM_RANKS; i++)
            {
                for (uint8_t j = 0; j < (DIMM_DQ_RANK_BITMAP_SIZE); j++)
                {
                    if (o_data[i][j] != l_data[i][j])
                    {
                        mfgModeBadBitsPresent = true;
                        break ;
                    }
                }
                if (mfgModeBadBitsPresent)
                {
                    break;
                }
            }
            // Create and log fapi error if discrepancies were found
            if (mfgModeBadBitsPresent)
            {
                // Get this DIMM's position
                uint32_t l_dimmPos = 0;
                l_rc = FAPI_ATTR_GET(ATTR_POS, &i_dimm, l_dimmPos);
                if (l_rc)
                {
                    FAPI_ERR("dimmBadDqBitmapAccessHwp: "
                             "Error getting DIMM position,"
                             " reporting as 0xFFFFFFFF");
                    l_dimmPos = 0xFFFFFFFF;
                }
                FAPI_ERR("dimmBadDqBitmapAccessHwp: Read requested while"
                         " in DISABLE_DRAM_REPAIRS mode found"
                         " extra bad bits set for DIMM: %d",
                         l_dimmPos);
                const fapi::Target & DIMM = i_dimm;
                uint8_t (&CLEAN_BAD_DQ_BITMAP_RANK0)
                    [DIMM_DQ_RANK_BITMAP_SIZE] = l_data[0];
                uint8_t (&CLEAN_BAD_DQ_BITMAP_RANK1)
                    [DIMM_DQ_RANK_BITMAP_SIZE] = l_data[1];
                uint8_t (&CLEAN_BAD_DQ_BITMAP_RANK2)
                    [DIMM_DQ_RANK_BITMAP_SIZE] = l_data[2];
                uint8_t (&CLEAN_BAD_DQ_BITMAP_RANK3)
                    [DIMM_DQ_RANK_BITMAP_SIZE] = l_data[3];
                uint8_t (&CURRENT_BAD_DQ_BITMAP_RANK0)
                    [DIMM_DQ_RANK_BITMAP_SIZE] = o_data[0];
                uint8_t (&CURRENT_BAD_DQ_BITMAP_RANK1)
                    [DIMM_DQ_RANK_BITMAP_SIZE] = o_data[1];
                uint8_t (&CURRENT_BAD_DQ_BITMAP_RANK2)
                    [DIMM_DQ_RANK_BITMAP_SIZE] = o_data[2];
                uint8_t (&CURRENT_BAD_DQ_BITMAP_RANK3)
                    [DIMM_DQ_RANK_BITMAP_SIZE] = o_data[3];
                FAPI_SET_HWP_ERROR(l_rc,
                    RC_BAD_DQ_MFG_MODE_BITS_FOUND_DURING_GET);
                fapiLogError(l_rc);

                // correct the output bit map
                for (uint8_t i = 0; i < DIMM_DQ_MAX_DIMM_RANKS; i++)
                {
                    for (uint8_t j = 0; j < (DIMM_DQ_RANK_BITMAP_SIZE); j++)
                    {
                        o_data[i][j] = l_data[i][j];
                    }
                }
            }
        }
    } while(0);
    delete [] &l_spdData;
    delete [] l_pBuf;
    return l_rc;
}

/**
 * @brief Called by dimmBadDqBitmapAccessHwp() to set ATTR_SPD_BAD_DQ_DATA
 * Also checks if a bad Dq bit is set by first calling dimmBadDqBitmapGet()
 * and sets ATTR_RECONFIGURE_LOOP with the 'OR' of the current value and
 * the fapi enum BAD_DQ_BIT_SET if appropriate
 *
 * @param[in] i_mba             Reference to MBA Target.
 * @param[in] i_dimm            Reference to DIMM Target.
 * @param[in] i_data            Reference to Bad DQ Bitmap set by the caller
 * @param[in] i_wiringData      Reference to Centaur DQ to DIMM Connector
 *                              DQ Wiring attribute.
 * @param[in] i_allMnfgFlags    Manufacturing flags bitmap
 *
 * @return ReturnCode
 */

fapi::ReturnCode dimmBadDqBitmapSet(
    const fapi::Target & i_mba,
    const fapi::Target & i_dimm,
    const uint8_t (&i_data)[DIMM_DQ_MAX_DIMM_RANKS][DIMM_DQ_RANK_BITMAP_SIZE],
    const uint8_t (&i_wiringData)[DIMM_DQ_NUM_DQS],
    uint64_t i_allMnfgFlags)
{
    fapi::ReturnCode l_rc;

    // Read current BadDqBitmap into l_prev_data
    uint8_t (l_prev_data)[DIMM_DQ_MAX_DIMM_RANKS]
                         [DIMM_DQ_RANK_BITMAP_SIZE];
    bool badDQSet = false;
    l_rc = dimmBadDqBitmapGet(i_mba, i_dimm, l_prev_data, i_wiringData,
                              i_allMnfgFlags);
    if (l_rc)
    {
        FAPI_ERR("dimmBadDqBitmapAccessHwp: Error getting DQ bitmap");
        return l_rc;
    }

    // Check if Bad DQ bit set
    for (uint8_t i = 0; i < DIMM_DQ_MAX_DIMM_RANKS; i++)
    {
        for (uint8_t j = 0; j < (DIMM_DQ_RANK_BITMAP_SIZE); j++)
        {
            if (i_data[i][j] != l_prev_data[i][j])
            {
                badDQSet = true;
                break;
            }
        }
        if (badDQSet)
        {
            break;
        }
    }

    // Set ATTR_RECONFIGURE_LOOP to indicate a bad DqBitMap was set
    if (badDQSet)
    {
        FAPI_INF("dimmBadDqBitmapAccessHwp: Reconfigure needed, Bad DQ set");

        fapi::ATTR_RECONFIGURE_LOOP_Type l_reconfigAttr = 0;
        l_rc = FAPI_ATTR_GET(ATTR_RECONFIGURE_LOOP, NULL, l_reconfigAttr);
        if (l_rc)
        {
            FAPI_ERR("dimmBadDqBitmapAccessHwp: Error getting "
                     "ATTR_RECONFIGURE_LOOP");
            return l_rc;
        }

        // 'OR' values in case of multiple reasons for reconfigure
        l_reconfigAttr |= fapi::ENUM_ATTR_RECONFIGURE_LOOP_BAD_DQ_BIT_SET;

#ifndef CONFIG_VPD_GETMACRO_USE_EFF_ATTR
        l_rc = FAPI_ATTR_SET(ATTR_RECONFIGURE_LOOP, NULL, l_reconfigAttr);
        if (l_rc)
        {
            FAPI_ERR("dimmBadDqBitmapAccessHwp: Error setting "
                     "ATTR_RECONFIGURE_LOOP");
            return l_rc;
        }
#endif
    }

    // DQ SPD Attribute
    uint8_t (&l_spdData)[DIMM_DQ_SPD_DATA_SIZE] =
        *(reinterpret_cast<uint8_t(*)[DIMM_DQ_SPD_DATA_SIZE]>
            (new uint8_t[DIMM_DQ_SPD_DATA_SIZE]()));

    // memset to avoid known syntax issue with previous compiler versions
    // and ensure zero initialized array.
    memset(l_spdData, 0, sizeof(l_spdData));

    dimmBadDqDataFormat * l_pSpdData =
        reinterpret_cast<dimmBadDqDataFormat *>(l_spdData);

    // Pointer which will be used to initialize a clean bitmap during
    // manufacturing mode
    uint8_t (*l_pBuf)[DIMM_DQ_RANK_BITMAP_SIZE] = NULL;

    do
    {
        // If system is in DISABLE_DRAM_REPAIRS mode
        if (i_allMnfgFlags &
            fapi::ENUM_ATTR_MNFG_FLAGS_MNFG_DISABLE_DRAM_REPAIRS)
        {
            // Flag to set if the discrepancies (described below)
            // are found
            bool mfgModeBadBitsPresent = false;
            // Create a local zero-initialized bad dq bitmap
            l_pBuf = new uint8_t[DIMM_DQ_MAX_DIMM_RANKS]
                                         [DIMM_DQ_RANK_BITMAP_SIZE]();
            uint8_t (&l_data)[DIMM_DQ_MAX_DIMM_RANKS]
                                 [DIMM_DQ_RANK_BITMAP_SIZE] =
            *(reinterpret_cast<uint8_t(*)[DIMM_DQ_MAX_DIMM_RANKS]
                                 [DIMM_DQ_RANK_BITMAP_SIZE]>(l_pBuf));
            // memset to avoid known syntax issue with previous
            // compiler versions and ensure zero initialized array.
            memset(l_data, 0, sizeof(l_data));

            // Check ECC.
            l_rc = dimmUpdateDqBitmapEccByte(i_dimm, l_data);
            if (l_rc)
            {
                FAPI_ERR("dimmBadDqBitmapAccessHwp: "
                         "Error getting ECC data (Mfg mode)");
                break;
            }
            // Check spare DRAM
            l_rc = dimmUpdateDqBitmapSpareByte(i_mba, i_dimm, l_data);
            if (l_rc)
            {
                FAPI_ERR("dimmBadDqBitmapAccessHwp: "
                         "Error getting spare DRAM data (Mfg mode)");
                break;
            }
            // Compare l_data, which represents a bad dq bitmap with the
            // appropriate spare/ECC bits set (if any) and all other DQ
            // lines functional, to caller's i_data.
            // If discrepancies are found, we know this is the result of
            // a manufacturing mode process and these bits should not be
            // recorded.
            for (uint8_t i = 0; i < DIMM_DQ_MAX_DIMM_RANKS; i++)
            {
                for (uint8_t j = 0; j < (DIMM_DQ_RANK_BITMAP_SIZE); j++)
                {
                    if (i_data[i][j] != l_data[i][j])
                    {
                        mfgModeBadBitsPresent = true;
                        break;
                    }
                }
                // Break out of this section when first
                // discrepancy is noticed
                if (mfgModeBadBitsPresent)
                {
                    break;
                }
            }
            // Create and log fapi error if discrepancies were found
            if (mfgModeBadBitsPresent)
            {
                // Get this DIMM's position
                uint32_t l_dimmPos = 0;
                l_rc = FAPI_ATTR_GET(ATTR_POS, &i_dimm, l_dimmPos);
                if (l_rc)
                {
                    FAPI_ERR("dimmBadDqBitmapAccessHwp: "
                             "Error getting DIMM position,"
                             " reporting as 0xFFFFFFFF");
                    l_dimmPos = 0xFFFFFFFF;
                }
                FAPI_ERR("dimmBadDqBitmapAccessHwp: Write requested while"
                         " in DISABLE_DRAM_REPAIRS mode found"
                         " extra bad bits set for DIMM: %d",
                         l_dimmPos);
                const fapi::Target & DIMM = i_dimm;
                uint8_t (&CLEAN_BAD_DQ_BITMAP_RANK0)
                    [DIMM_DQ_RANK_BITMAP_SIZE] = l_data[0];
                uint8_t (&CLEAN_BAD_DQ_BITMAP_RANK1)
                    [DIMM_DQ_RANK_BITMAP_SIZE] = l_data[1];
                uint8_t (&CLEAN_BAD_DQ_BITMAP_RANK2)
                    [DIMM_DQ_RANK_BITMAP_SIZE] = l_data[2];
                uint8_t (&CLEAN_BAD_DQ_BITMAP_RANK3)
                    [DIMM_DQ_RANK_BITMAP_SIZE] = l_data[3];
                uint8_t (&UPDATE_BAD_DQ_BITMAP_RANK0)
                    [DIMM_DQ_RANK_BITMAP_SIZE] =
                       const_cast< uint8_t (&)
                    [DIMM_DQ_RANK_BITMAP_SIZE]>(i_data[0]);
                uint8_t (&UPDATE_BAD_DQ_BITMAP_RANK1)
                    [DIMM_DQ_RANK_BITMAP_SIZE] =
                       const_cast< uint8_t (&)
                    [DIMM_DQ_RANK_BITMAP_SIZE]>(i_data[1]);
                uint8_t (&UPDATE_BAD_DQ_BITMAP_RANK2)
                    [DIMM_DQ_RANK_BITMAP_SIZE] =
                       const_cast< uint8_t (&)
                    [DIMM_DQ_RANK_BITMAP_SIZE]>(i_data[2]);
                uint8_t (&UPDATE_BAD_DQ_BITMAP_RANK3)
                    [DIMM_DQ_RANK_BITMAP_SIZE] =
                       const_cast< uint8_t (&)
                    [DIMM_DQ_RANK_BITMAP_SIZE]>(i_data[3]);
                FAPI_SET_HWP_ERROR(l_rc,
                    RC_BAD_DQ_MFG_MODE_BITS_FOUND_DURING_SET);
                fapiLogError(l_rc);
            }
            // Don't write bad dq bitmap,
            // Break out of do {...} while(0)
            break;
        }

        // Set up the data to write to SPD
        l_pSpdData->iv_magicNumber = FAPI_HTOBE32(DIMM_BAD_DQ_MAGIC_NUMBER);
        l_pSpdData->iv_version = DIMM_BAD_DQ_VERSION;
        l_pSpdData->iv_reserved1 = 0;
        l_pSpdData->iv_reserved2 = 0;
        l_pSpdData->iv_reserved3 = 0;
        memset(l_pSpdData->iv_bitmaps, 0, sizeof(l_pSpdData->iv_bitmaps));

        // Get the spare byte
        uint8_t spareByte[DIMM_DQ_MAX_DIMM_RANKS];
        memset(spareByte, 0, sizeof(spareByte));

        l_rc = dimmGetDqBitmapSpareByte(i_mba,i_dimm,spareByte);
        if (l_rc)
        {
            FAPI_ERR("dimmBadDqBitmapAccessHwp: "
                    "Error getting spare byte");
            break;
        }

        // Translate bitmap from Centaur DQ to DIMM DQ point of view for
        // each rank
        for (uint8_t i = 0; i < DIMM_DQ_MAX_DIMM_RANKS; i++)
        {
            // Iterate through all the DQ bits in the rank
            for (uint8_t j = 0; j < DIMM_DQ_NUM_DQS; j++)
            {
                if ((j/8) == SPARE_DRAM_DQ_BYTE_NUMBER_INDEX)
                {
                    // The spareByte can be one of: 0x00 0x0F 0xF0 0xFF
                    // If a bit is set, then that spare is unconnected
                    // so continue to the next num_dqs, do not translate
                    if (spareByte[i] & (0x80 >> (j % 8)))
                    {
                        continue;
                    }
                }
                if ((i_data[i][j/8]) & (0x80 >> (j % 8)))
                {
                    // Centaur DQ bit set in callers data.
                    // Set DIMM DQ bit in SPD data.
                    // The wiring data maps Centaur DQ to DIMM DQ
                    uint8_t dBit = i_wiringData[j];
                    l_pSpdData->iv_bitmaps[i][dBit/8] |=
                        (0x80 >> (dBit % 8));
                }
            }
        }

        // Set the SPD DQ attribute
        l_rc = FAPI_ATTR_SET(ATTR_SPD_BAD_DQ_DATA, &i_dimm, l_spdData);

        if (l_rc)
        {
            FAPI_ERR("dimmBadDqBitmapAccessHwp: Error setting SPD data");
            break;
        }
    } while(0);
    delete [] &l_spdData;
    delete [] l_pBuf;
    return l_rc;
}

}

extern "C"
{

fapi::ReturnCode dimmBadDqBitmapAccessHwp(
    const fapi::Target & i_mba,
    const fapi::Target & i_dimm,
    uint8_t (&io_data)[DIMM_DQ_MAX_DIMM_RANKS][DIMM_DQ_RANK_BITMAP_SIZE],
    const bool i_get)
{
    if (i_get)
    {
        FAPI_INF(">>dimmBadDqBitmapAccessHwp: Getting bitmap");
    }
    else
    {
        FAPI_INF(">>dimmBadDqBitmapAccessHwp: Setting bitmap");
    }

    fapi::ReturnCode l_rc;

    // Note the use of heap based arrays to avoid large stack allocations

    // Centaur DQ to DIMM Connector DQ Wiring attribute.
    uint8_t (&l_wiringData)[DIMM_DQ_NUM_DQS] =
        *(reinterpret_cast<uint8_t(*)[DIMM_DQ_NUM_DQS]>
            (new uint8_t[DIMM_DQ_NUM_DQS]()));

    // memset to avoid known syntax issue with previous compiler versions
    // and ensure zero initialized array.
    memset(l_wiringData, 0, sizeof(l_wiringData));

    do
    {
        // Manufacturing flags attribute
        uint64_t l_allMnfgFlags = 0;
        // Get the manufacturing flags bitmap to be used in both get and set
        l_rc = FAPI_ATTR_GET(ATTR_MNFG_FLAGS, NULL, l_allMnfgFlags);
        if(l_rc)
        {
            FAPI_ERR("dimmBadDqBitmapAccessHwp: Unable to read attribute"
                     " - ATTR_MNFG_FLAGS");
            break;
        }
        // Get the Centaur DQ to DIMM Connector DQ Wiring attribute.
        // Note that for C-DIMMs, this will return a simple 1:1 mapping.
        // This code cannot tell the difference between C-DIMMs and IS-DIMMs.
        l_rc = FAPI_ATTR_GET(ATTR_CEN_DQ_TO_DIMM_CONN_DQ,
                             &i_dimm, l_wiringData);

        if (l_rc)
        {
            FAPI_ERR("dimmBadDqBitmapAccessHwp: "
                     "Error getting wiring attribute");
            break;
        }

        if (i_get)
        {
            l_rc = dimmBadDqBitmapGet(i_mba, i_dimm, io_data, l_wiringData,
                                      l_allMnfgFlags);
            if (l_rc)
            {
                FAPI_ERR("dimmBadDqBitmapAccessHwp: "
                        "Error getting DQ bitmap");
                break;
            }
        }
        else
        {
            l_rc = dimmBadDqBitmapSet(i_mba, i_dimm, io_data, l_wiringData,
                                      l_allMnfgFlags);
            if (l_rc)
            {
                FAPI_ERR("dimmBadDqBitmapAccessHwp: "
                        "Error setting DQ bitmap");
                break;
            }
        }

    }while(0);

    delete [] &l_wiringData;
    FAPI_INF("<<dimmBadDqBitmapAccessHwp");
    return l_rc;
}

}
OpenPOWER on IntegriCloud