summaryrefslogtreecommitdiffstats
path: root/src/usr/diag/prdf/test/prdfTest_BadDqBitmap.H
blob: 4b4fa8fea6e9f7cbad353bc1abccc12de87160da (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/diag/prdf/test/prdfTest_BadDqBitmap.H $               */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2019                             */
/* [+] International Business Machines Corp.                              */
/*                                                                        */
/*                                                                        */
/* Licensed under the Apache License, Version 2.0 (the "License");        */
/* you may not use this file except in compliance with the License.       */
/* You may obtain a copy of the License at                                */
/*                                                                        */
/*     http://www.apache.org/licenses/LICENSE-2.0                         */
/*                                                                        */
/* Unless required by applicable law or agreed to in writing, software    */
/* distributed under the License is distributed on an "AS IS" BASIS,      */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or        */
/* implied. See the License for the specific language governing           */
/* permissions and limitations under the License.                         */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */

#ifndef __TEST_PRDFBADDQBITMAP_H
#define __TEST_PRDFBADDQBITMAP_H

/**
 *  @file prdfTest_BadDqBitmap.H
 *
 *  @brief prdf testing reading and writing the BAD_DQ_BITMAP attribute
 */

#ifdef __HOSTBOOT_MODULE
  #include <cxxtest/TestSuite.H>
  #include <errl/errlentry.H>
  #include <errl/errlmanager.H>
#else
  #include <cxxtest/TestSuite.h>
  #include <fsp/FipsGlobalFixture.H>
  #include <errlentry.H>
#endif

#include <prdfTrace.H>
#include <prdfMain.H>
#include "prdfsimMacros.H"
#include <prdfMemDqBitmap.H>
#include <prdfPlatServices.H>
#include <prdfTargetServices.H>

class WriteBadDqBitmap: public CxxTest::TestSuite
{

public:

    void TestNimbusReadWriteBadDqBitmap(void)
    {
        using namespace PRDF;
        using namespace TARGETING;
        using namespace PlatServices;

        TargetHandle_t masterProc = nullptr;
        targetService().masterProcChipTargetHandle(masterProc);

        // Nimbus only test
        if ( MODEL_NIMBUS == masterProc->getAttr<ATTR_MODEL>() )
        {
            TS_INFO("- TestNimbusReadWriteBadDqBitmap - Start -");

            uint32_t rc = SUCCESS;

            // Get an MCBIST
            TargetHandle_t mcb = getConnectedChild(masterProc, TYPE_MCBIST, 0);
            if ( nullptr == mcb )
            {
                TS_FAIL( "ERROR: Failed to get MCBIST" );
            }
            // Get an MCA
            TargetHandle_t mca = getConnectedChild( mcb, TYPE_MCA, 0 );
            if ( nullptr == mca )
            {
                TS_FAIL( "ERROR: Failed to get MCA" );
            }

            // Make arbitrary initial data
            MemRank rank( 0, 0 );
            const uint8_t initialBitmap[DQ_BITMAP::BITMAP_SIZE] =
                { 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0xdb, 0x00 };
            BitmapData initialData;
            memcpy( initialData[0].bitmap, initialBitmap,
                    sizeof(initialData[0].bitmap) );

            // Set with the initial data
            MemDqBitmap setBitmap( mca, rank, initialData );
            rc = setBadDqBitmap( mca, rank, setBitmap );
            if ( SUCCESS != rc )
            {
                TS_FAIL( "ERROR: setBadDqBitmap failed " );
            }

            // Read the data back
            MemDqBitmap getBitmap;
            rc = getBadDqBitmap( mca, rank, getBitmap );
            if ( SUCCESS != rc )
            {
                TS_FAIL( "ERROR: getBadDqBitmap failed" );
            }

            BitmapData newData = getBitmap.getData();

            // Compare the read data to the initial data. The last byte (byte 9)
            // is for spares so we won't worry about comparing that.
            for ( uint8_t n = 0; n < (DQ_BITMAP::BITMAP_SIZE-1); n++ )
            {
                if ( newData.at(0).bitmap[n] != initialBitmap[n] )
                {
                    TS_FAIL( "TestNimbusReadWriteBadDqBitmap: Incorrect data "
                             "found. newData[%d]=0x%x initialBitmap[%d]=0x%x",
                             n, newData.at(0).bitmap[n], n, initialBitmap[n] );
                }
            }

            // Clear the vpd just in case
            rc = clearBadDqBitmap( mca, rank );
            if ( SUCCESS != rc )
            {
                TS_FAIL( "ERROR: clearBadDqBitmap failed" );
            }

            TS_INFO("- TestNimbusReadWriteBadDqBitmap - End -");
        }

    }

    void TestAxoneReadWriteBadDqBitmap(void)
    {
        using namespace PRDF;
        using namespace TARGETING;
        using namespace PlatServices;

        TargetHandle_t masterProc = nullptr;
        targetService().masterProcChipTargetHandle(masterProc);

        // Axone only test
        if ( MODEL_AXONE == masterProc->getAttr<ATTR_MODEL>() )
        {
            TS_INFO("- TestAxoneReadWriteBadDqBitmap - Start -");

            uint32_t rc = SUCCESS;

            // Get an OCMB
            TargetHandle_t mc = getConnectedChild( masterProc, TYPE_MC, 0 );
            if ( nullptr == mc )
            {
                TS_FAIL( "ERROR: Failed to get MC" );
            }
            TargetHandle_t omic = getConnectedChild( mc, TYPE_OMIC, 0 );
            if ( nullptr == omic )
            {
                TS_FAIL( "ERROR: Failed to get OMIC" );
            }
            TargetHandle_t omi  = getConnectedChild( omic, TYPE_OMI, 0 );
            if ( nullptr == omi )
            {
                TS_FAIL( "ERROR: Failed to get OMI" );
            }
            TargetHandle_t ocmb = getConnectedChild( omi, TYPE_OCMB_CHIP, 0 );
            if ( nullptr == ocmb )
            {
                TS_FAIL( "ERROR: Failed to get OCMB" );
            }
            // Make arbitrary initial data
            MemRank rank( 0 );
            const uint8_t initialBitmap[DQ_BITMAP::BITMAP_SIZE] =
                { 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0xab, 0x00 };
            BitmapData initialData;
            memcpy( initialData[0].bitmap, initialBitmap,
                    sizeof(initialData[0].bitmap) );

            // Set with the initial data
            MemDqBitmap setBitmap( ocmb, rank, initialData );
            rc = setBadDqBitmap( ocmb, rank, setBitmap );
            if ( SUCCESS != rc )
            {
                TS_FAIL( "ERROR: setBadDqBitmap failed " );
            }

            // Read the data back
            MemDqBitmap getBitmap;
            rc = getBadDqBitmap( ocmb, rank, getBitmap );
            if ( SUCCESS != rc )
            {
                TS_FAIL( "ERROR: getBadDqBitmap failed" );
            }

            BitmapData newData = getBitmap.getData();

            // Compare the read data to the initial data. The last byte (byte 9)
            // is for spares so we won't worry about comparing that.
            for ( uint8_t n = 0; n < (DQ_BITMAP::BITMAP_SIZE-1); n++ )
            {
                if ( newData.at(0).bitmap[n] != initialBitmap[n] )
                {
                    TS_FAIL( "TestAxoneReadWriteBadDqBitmap: Incorrect data "
                             "found. newData[%d]=0x%x initialBitmap[%d]=0x%x",
                             n, newData.at(0).bitmap[n], n, initialBitmap[n] );
                }
            }

            // Clear the vpd just in case
            rc = clearBadDqBitmap( ocmb, rank );
            if ( SUCCESS != rc )
            {
                TS_FAIL( "ERROR: clearBadDqBitmap failed" );
            }

            TS_INFO("- TestAxoneReadWriteBadDqBitmap - End -");

        }

    }

//------------------------------------------------------------------------------

};
#endif
OpenPOWER on IntegriCloud