summaryrefslogtreecommitdiffstats
path: root/src/usr/htmgt/htmgt_poll.C
blob: af863b1e53a8ff031b3719932bc8d181d40c1430 (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/htmgt/htmgt_poll.C $                                  */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2014,2017                        */
/* [+] 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                                                     */

#include <htmgt/htmgt.H>
#include <htmgt/htmgt_reasoncodes.H>
#include "htmgt_utility.H"
#include "htmgt_activate.H"
#include "htmgt_poll.H"
#include "htmgt_occcmd.H"
#include "htmgt_cfgdata.H"
#include "occError.H"
#include <console/consoleif.H>

//  Targeting support
#include <targeting/common/commontargeting.H>
#include <targeting/common/utilFilter.H>
#include <targeting/common/attributes.H>
#include <targeting/common/targetservice.H>


namespace HTMGT
{

    errlHndl_t OccManager::_sendOccPoll(const bool i_flushAllErrors,
                                        TARGETING::Target * i_occTarget,
                                        const bool onlyIfEstablished)
    {
        errlHndl_t l_err = nullptr;

        TMGT_INF("sendOccPoll(flush=%c)", i_flushAllErrors?'y':'n');

        for( const auto & l_occ : iv_occArray )
        {
            if(nullptr == i_occTarget || l_occ->iv_target == i_occTarget)
            {
                if ((l_occ->iv_commEstablished) ||
                    (onlyIfEstablished == false))
                {
                    errlHndl_t poll_err=l_occ->pollForErrors(i_flushAllErrors);
                    if (poll_err != nullptr)
                    {
                        if (l_err == nullptr)
                        {
                            // Only return 1st error (continue to poll others)
                            l_err = poll_err;
                            poll_err = nullptr;
                        }
                        else
                        {
                            ERRORLOG::errlCommit(poll_err, HTMGT_COMP_ID);
                        }
                    }
                }
            }
        }

        if (occNeedsReset())
        {
            TMGT_ERR("_sendOccPoll(): OCCs need to be reset");
        }

        return l_err;
    }


    errlHndl_t OccManager::sendOccPoll(const bool i_flushAllErrors,
                                       TARGETING::Target * i_occTarget)
    {
        return
            Singleton<OccManager>::instance()._sendOccPoll(i_flushAllErrors,
                                                           i_occTarget);
    }


    errlHndl_t Occ::pollForErrors(const bool i_flushAllErrors)
    {
        errlHndl_t err = nullptr;
        uint8_t * poll_rsp = nullptr;

        // Only send poll if OCC has not logged an exception
        if (0 == iv_exceptionLogged)
        {
            TMGT_INF("pollForErrors: Polling OCC%d", iv_instance);
            bool continuePolling = false;
            size_t elogCount = 10;

            do
            {
                // create 1 byte buffer for poll command data
                const uint8_t l_cmdData[1] = { 0x20 /*version*/ };

                OccCmd cmd(this,
                           OCC_CMD_POLL,
                           sizeof(l_cmdData),
                           l_cmdData);

                err = cmd.sendOccCmd();
                if (err != nullptr)
                {
                    // Poll failed
                    TMGT_ERR("pollForErrors: OCC%d poll failed with rc=0x%04X",
                             iv_instance,
                             err->reasonCode());

                    continuePolling = false;
                }
                else
                {
                    // Poll succeeded, check response
                    uint32_t poll_rsp_size = cmd.getResponseData(poll_rsp);
                    if (poll_rsp_size >= OCC_POLL_DATA_MIN_SIZE)
                    {
                        if (i_flushAllErrors)
                        {
                            const occPollRspStruct_t *currentPollRsp =
                                (occPollRspStruct_t *) poll_rsp;
                            if (currentPollRsp->errorId != 0)
                            {
                                if (--elogCount > 0)
                                {
                                    // An error was returned, keep polling OCC
                                    continuePolling = true;
                                }
                                else
                                {
                                    // Limit number of elogs retrieved so
                                    // we do not get stuck in loop
                                    TMGT_INF("pollForErrors: OCC%d still has"
                                             "more errors to report.",
                                             iv_instance);
                                    continuePolling = false;
                                }
                            }
                            else
                            {
                                continuePolling = false;
                            }
                        }
                        pollRspHandler(poll_rsp, poll_rsp_size);
                    }
                    else
                    {
                        TMGT_ERR("pollForErrors: OCC%d poll command response "
                                 "failed with invalid data length %d",
                                 iv_instance, poll_rsp_size);
                        /*@
                         * @errortype
                         * @reasoncode HTMGT_RC_INVALID_LENGTH
                         * @moduleid  HTMGT_MOD_OCC_POLL
                         * @userdata1 OCC instance
                         * @devdesc Invalid POLL response length
                         */
                        bldErrLog(err,
                                  HTMGT_MOD_OCC_POLL,
                                  HTMGT_RC_INVALID_LENGTH,
                                  iv_instance, 0, 0, 0,
                                  ERRORLOG::ERRL_SEV_INFORMATIONAL);

                        continuePolling = false;
                    }
                }
            }
            while (continuePolling);
        }

        return err;
    }


    // Handle OCC poll response
    void Occ::pollRspHandler(const uint8_t * i_pollResponse,
                             const uint16_t i_pollResponseSize)
    {
        static uint32_t L_elog_retry_count = 0;
        TMGT_DBG("OCC Poll Response", i_pollResponse, i_pollResponseSize);

        const occPollRspStruct_t *pollRsp =
            (occPollRspStruct_t *) i_pollResponse;
        const occPollRspStruct_t *lastPollRsp =
            (occPollRspStruct_t *) iv_lastPollResponse;

        // Trace if any data changed
        if ((false == iv_lastPollValid) ||
            (memcmp(pollRsp,
                    lastPollRsp,
                    OCC_POLL_DATA_MIN_SIZE) != 0))
        {
            TMGT_INF("OCC%d Poll change: Status:%04X Occs:%02X Cfg:%02X "
                     "State:%02X Error:%06X/%08X",
                     iv_instance,
                     (pollRsp->status << 8) | pollRsp->extStatus,
                     pollRsp->occsPresent,
                     pollRsp->requestedCfg, pollRsp->state,
                     (pollRsp->errorId<<16) | pollRsp->errorLength,
                     pollRsp->errorAddress);
#ifdef CONFIG_CONSOLE_OUTPUT_OCC_COMM
            TMGT_CONSOLE("OCC%d Poll change: Status:%04X Occs:%02X Cfg:%02X "
                         "State:%02X Error:%06X/%08X",
                         iv_instance,
                         (pollRsp->status << 8) | pollRsp->extStatus,
                         pollRsp->occsPresent,
                         pollRsp->requestedCfg, pollRsp->state,
                         (pollRsp->errorId<<16) | pollRsp->errorLength,
                         pollRsp->errorAddress);
#endif
        }

        do
        {
            if (false == iv_commEstablished)
            {
                // 1st poll response, so comm has been established for this OCC
                iv_commEstablished = true;
                TMGT_INF("pollRspHandler: FW Level for OCC%d: %.16s",
                         iv_instance, pollRsp->codeLevel);
            }

            // Check for Error Logs
            if (pollRsp->errorId != 0)
            {
                if ((pollRsp->errorId != lastPollRsp->errorId) ||
                    (L_elog_retry_count < 3))

                {
                    if (pollRsp->errorId == lastPollRsp->errorId)
                    {
                        // Only retry same errorId a few times...
                        L_elog_retry_count++;
                        TMGT_ERR("pollRspHandler: Requesting elog 0x%02X"
                                 " (retry %d)",
                                 pollRsp->errorId, L_elog_retry_count);
                    }
                    else
                    {
                        L_elog_retry_count = 0;
                    }

                    // Handle a new error log from the OCC
                    occProcessElog(pollRsp->errorId,
                                   pollRsp->errorAddress,
                                   pollRsp->errorLength);
                    if (iv_needsReset)
                    {
                        // Update state if changed...
                        // (since dropping out of poll rsp handler)
                        if (iv_state != pollRsp->state)
                        {
                            iv_state = (occStateId)pollRsp->state;
                            TMGT_INF("pollRspHandler: Need reset. "
                                     "updating OCC%d state to %s",
                                     iv_instance, state_string(iv_state));
                        }
                        break;
                    }
                }
            }

            if ((OCC_STATE_ACTIVE == pollRsp->state) ||
                (OCC_STATE_OBSERVATION == pollRsp->state) ||
                (OCC_STATE_CHARACTERIZATION == pollRsp->state))
            {
                errlHndl_t l_err = nullptr;

                // Check role status
                if (((OCC_ROLE_SLAVE == iv_role) &&
                     ((pollRsp->status & OCC_STATUS_MASTER) != 0)) ||
                    ((OCC_ROLE_MASTER == iv_role) &&
                     ((pollRsp->status & OCC_STATUS_MASTER) == 0)))
                {
                    TMGT_ERR("pollRspHandler: OCC%d Status role mismatch"
                             " (role:0x%02X, status:0x%02X 0x%02X)",
                             iv_instance, iv_role, pollRsp->status,
                             pollRsp->extStatus);
                    iv_needsReset = true;
                    /*@
                     * @errortype
                     * @reasoncode HTMGT_RC_INVALID_ROLE
                     * @moduleid  HTMGT_MOD_OCC_POLL
                     * @userdata1[0-15] OCC instance
                     * @userdata[16-31] response state
                     * @userdata2[0-15] expected role
                     * @userdata2[16-31] response status byte
                     * @devdesc Invalid role is POLL response
                     */
                    bldErrLog(l_err, HTMGT_MOD_OCC_POLL,
                              HTMGT_RC_INVALID_ROLE,
                              iv_instance, pollRsp->state,
                              iv_role, pollRsp->status,
                              ERRORLOG::ERRL_SEV_INFORMATIONAL);
                    ERRORLOG::errlCommit(l_err, HTMGT_COMP_ID);
                    iv_resetReason = OCC_RESET_REASON_ERROR;
                    break;
                }

                if (pollRsp->occsPresent != iv_occsPresent)
                {
                    TMGT_ERR("pollRspHandler: OCC%d present mismatch"
                             " (expected 0x%02X, but received 0x%02X)",
                             iv_instance, iv_occsPresent,
                             pollRsp->occsPresent);
                    iv_needsReset = true;
                    /*@
                     * @errortype
                     * @reasoncode HTMGT_RC_INVALID_DATA
                     * @moduleid  HTMGT_MOD_OCC_POLL
                     * @userdata1[0-15] OCC instance
                     * @userdata1[16-31] response OCC present
                     * @userdata2[0-15] expected OCC present
                     * @userdata2[16-31] response status byte
                     * @devdesc Invalid OCC present data in POLL response
                     */
                    bldErrLog(l_err, HTMGT_MOD_OCC_POLL,
                              HTMGT_RC_INVALID_DATA,
                              iv_instance, pollRsp->occsPresent,
                              iv_occsPresent, pollRsp->status,
                              ERRORLOG::ERRL_SEV_INFORMATIONAL);
                    ERRORLOG::errlCommit(l_err, HTMGT_COMP_ID);
                    iv_resetReason = OCC_RESET_REASON_ERROR;
                }
            }

            if (pollRsp->requestedCfg != 0x00)
            {
                TMGT_INF("pollRspHandler: OCC%d is requesting cfg format"
                         " 0x%02X", iv_instance, pollRsp->requestedCfg);
            }

            // Check for state change
            if (iv_state != pollRsp->state)
            {
                iv_state = (occStateId)pollRsp->state;
                TMGT_INF("pollRspHandler: updating OCC%d state to %s",
                         iv_instance, state_string(iv_state));
            }

            // Check GPU config
            if (iv_gpuCfg != pollRsp->gpuCfg)
            {
                iv_gpuCfg = pollRsp->gpuCfg;
                TMGT_INF("pollRspHandler: updating OCC%d GPU config to 0x%02X",
                         iv_instance, iv_gpuCfg);
            }

            // Copy rspData to lastPollResponse
            memcpy(iv_lastPollResponse, pollRsp, OCC_POLL_DATA_MIN_SIZE);
            iv_lastPollValid = true;
        }
        while(0);

        // NOTE: When breaking out of the above while loop, the new poll
        //       response is NOT copied to lastPollResponse (should only
        //       break when reset required)

        if (true == iv_needsReset)
        {
            // Save full poll response
            memcpy(iv_lastPollResponse, pollRsp, OCC_POLL_DATA_MIN_SIZE);
            iv_lastPollValid = true;
            iv_state = (occStateId)pollRsp->state;
        }

    } // end Occ::pollRspHandler()


} // end namespace
OpenPOWER on IntegriCloud