summaryrefslogtreecommitdiffstats
path: root/src/occ_405/rtls/rtls.c
blob: c2168d3cfe32109534e115accc738b1f54cda8fb (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/occ_405/rtls/rtls.c $                                     */
/*                                                                        */
/* OpenPOWER OnChipController Project                                     */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2011,2016                        */
/* [+] 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 "rtls.h"
#include "rtls_service_codes.h"
#include "threadSch.h"          // for DEFAULT_TRACE_SIZE
#include "occ_service_codes.h"  // for SSX_GENERIC_FAILURE
#include <occhw_common.h>         // OCB interrupt controller
#include <occhw_ocb.h>            // OCB timer
#include <errl.h>               // Error logging
#include "amec_external.h"
#include <trac.h>               // Traces
#include <sensor.h>

//Macro creates a 'bridge' handler that converts the initial fast-mode to full
//mode interrupt handler
SSX_IRQ_FAST2FULL(rtl_intr_handler, rtl_do_tick);

#define RTLOOP_TIMEOUT_IN_NS (MICS_PER_TICK * 1000)

#define GLOBAL_RUN_MASK RTL_FLAG_RUN | RTL_FLAG_STANDBY | RTL_FLAG_MSTR_READY | RTL_FLAG_APSS_NOT_INITD

// Required flag bits for running
// The run flag is always set
uint32_t G_run_mask = GLOBAL_RUN_MASK;
// Added deferred mask global
uint32_t G_run_mask_deferred = GLOBAL_RUN_MASK;

// The value of the current tick
uint32_t G_current_tick = 0xFFFFFFFF;

// Number of micro-seconds per tick
uint32_t G_mics_per_tick = HW_MICS_PER_TICK;

// Number of micro-seconds to wait for APSS data collection to complete
uint32_t G_dcom_tx_apss_wait_time = HW_MICS_PER_TICK * 5 / 10;

// The durations measured within the current tick
fw_timing_t G_fw_timing;

// The global TICK table
// See notes regarding this table in rtls_tables.c.
extern uint8_t *G_tick_table[MAX_NUM_TICKS];

// The global TASK table
// See notes regarding this table in rtls_tables.c.
extern task_t G_task_table[TASK_END];


// Function Specification
//
// Name: rtl_start_task
//
// Description: Request that a task runs.
//
// End Function Specification

void rtl_start_task(const task_id_t i_task_id)
{
    errlHndl_t l_err = NULL;   // Error handler
    const trace_descriptor_array_t* l_trace = NULL; // Temporary trace descriptor

    if ( i_task_id < TASK_END )
    {
        // Request the task be run
        G_task_table[i_task_id].flags |= RTL_FLAG_RUN;
    }
    else
    {
        // Invalid task ID for this operation

        /*
        * @errortype
        * @moduleid    RTLS_START_TASK_MOD
        * @reasoncode  INTERNAL_INVALID_INPUT_DATA
        * @userdata1   Failing task ID
        * @userdata4   OCC_NO_EXTENDED_RC
        * @devdesc     Firmware failure starting task
        */
        l_err = createErrl(
                    RTLS_START_TASK_MOD,            //ModId
                    INTERNAL_INVALID_INPUT_DATA,    //Reasoncode
                    OCC_NO_EXTENDED_RC,             //Extended reasoncode
                    ERRL_SEV_PREDICTIVE,            //Severity
                    l_trace,                        //Trace Buf
                    DEFAULT_TRACE_SIZE,             //Trace Size
                    i_task_id,                      //Userdata1
                    0                               //Userdata2
                    );

        // Commit error log
        commitErrl( &l_err );
    }
}

// Function Specification
//
// Name: rtl_stop_task
//
// Description: Request that a task NOT run
//
// End Function Specification

void rtl_stop_task(const task_id_t i_task_id)
{

    errlHndl_t l_err = NULL;   // Error handler
    const trace_descriptor_array_t* l_trace = NULL; // Temporary trace descriptor

    if ( i_task_id < TASK_END )
    {
        // Request the task NOT be run
        G_task_table[i_task_id].flags &= ~RTL_FLAG_RUN;
    }
    else
    {
        // Invalid task ID for this operation

        /*
        * @errortype
        * @moduleid    RTLS_STOP_TASK_MOD
        * @reasoncode  INTERNAL_INVALID_INPUT_DATA
        * @userdata1   Failing task ID
        * @userdata4   OCC_NO_EXTENDED_RC
        * @devdesc     Firmware failure stopping task
        */
        l_err = createErrl(
                    RTLS_STOP_TASK_MOD,             //ModId
                    INTERNAL_INVALID_INPUT_DATA,    //Reasoncode
                    OCC_NO_EXTENDED_RC,             //Extended reasoncode
                    ERRL_SEV_PREDICTIVE,            //Severity
                    l_trace,                        //Trace Buf
                    DEFAULT_TRACE_SIZE,             //Trace Size
                    i_task_id,                      //Userdata1
                    0                               //Userdata2
                    );

        // Commit error log
        commitErrl( &l_err );
    }
}

// Function Specification
//
// Name: rtl_task_is_runnable
//
// Description: Find out if a task can run or not.
//
// End Function Specification
bool rtl_task_is_runnable(const task_id_t i_task_id)
{
    bool task_can_run = FALSE; // Default: task can NOT run
    errlHndl_t l_err = NULL;   // Error handler
    const trace_descriptor_array_t* l_trace = NULL; // Temporary trace descriptor

    if ( i_task_id < TASK_END )
    {
        if ( (G_task_table[i_task_id].flags & G_run_mask) == G_run_mask )
        {
            // Yes, the task CAN run. task's flags match the global run mask
            task_can_run = TRUE;
        }
    }
    else
    {
        // Invalid task ID for this operation

        /*
        * @errortype
        * @moduleid    RTLS_TASK_RUNABLE_MOD
        * @reasoncode  INTERNAL_FAILURE
        * @userdata1   Failing task ID
        * @userdata4   OCC_NO_EXTENDED_RC
        * @devdesc     Firmware failure on task operation
        */
        l_err = createErrl(
                    RTLS_TASK_RUNABLE_MOD,      //ModId
                    INTERNAL_FAILURE,           //Reasoncode
                    OCC_NO_EXTENDED_RC,         //Extended reasoncode
                    ERRL_SEV_UNRECOVERABLE,     //Severity
                    l_trace,                    //Trace Buf
                    DEFAULT_TRACE_SIZE,         //Trace Size
                    i_task_id,                  //Userdata1
                    0                           //Userdata2
                    );

        // Callout firmware
        addCalloutToErrl(l_err,
                         ERRL_CALLOUT_TYPE_COMPONENT_ID,
                         ERRL_COMPONENT_ID_FIRMWARE,
                         ERRL_CALLOUT_PRIORITY_HIGH);

        // Commit error log
        commitErrl( &l_err );
    }

    return task_can_run;
}

// Function Specification
//
// Name: rtl_ocb_init
//
// Description: responsible for initializing the hardware timer in occ control
//              block. It is the timer that supplies the periodic RTL interrupt.
//
// End Function Specification
void rtl_ocb_init(void)
{
    int rc = 0;
    errlHndl_t l_err = NULL;
    const trace_descriptor_array_t* l_trace = NULL;  // Temporary trace descriptor

    // Setup an OCB timer and interrupt handler
    // The ocb_timer_setup will do the following:
    // a) Setup the interrupt
    // b) Setup interrupt handler
    // c) Reset the timer
    // d) Enable the interrupt
    rc = ocb_timer_setup(OCB_TIMER0,
                    OCB_TIMER_AUTO_RELOAD,  //Auto reload
                    RTLOOP_TIMEOUT_IN_NS,   //250000ns or 250us for 1 tick
                    rtl_intr_handler,       //Intr handlers
                    0,
                    SSX_NONCRITICAL);
    if( rc )
    {
        TRAC_ERR("Error occured in rtl_ocb_init::ocb_timer_setup()"
                 " rc = 0x%x", rc );
        /*
        * @errortype
        * @moduleid    RTLS_OCB_INIT_MOD
        * @reasoncode  INTERNAL_HW_FAILURE
        * @userdata1   Return code for ocb_timer_setup
        * @userdata4   OCC_NO_EXTENDED_RC
        * @devdesc     Failure on hardware related function
        */
        l_err = createErrl(
            RTLS_OCB_INIT_MOD,              //ModId
            INTERNAL_HW_FAILURE,            //Reasoncode
            OCC_NO_EXTENDED_RC,             //Extended reasoncode
            ERRL_SEV_PREDICTIVE,            //Severity
            l_trace,                        //Trace Buf
            DEFAULT_TRACE_SIZE,             //Trace Size
            rc,                             //Userdata1
            0                               //Userdata2
            );

        // Commit error log
        commitErrl( &l_err );
    }
}

// Function Specification
//
// Name:  rtl_do_tick
//
// Description: RTL intr handler, a full-mode handler that invokes through the
//              macro bridge.  Runs all tasks in the current tick sequence.
//
// End Function Specification
void rtl_do_tick( void *private, SsxIrqId irq, int priority )
{
    uint64_t l_start = ssx_timebase_get();

    uint8_t *l_taskid_ptr = NULL;   // Pointer to the current task ID in the current tick sequence
    task_t *l_task_ptr = NULL;      // Pointer to the currently executing task
    errlHndl_t  l_err = NULL;       // Error handler
    const trace_descriptor_array_t* l_trace = NULL;      // Temporary trace descriptor (replace this when tracing is implemented)
    static bool L_bad_id_reported = FALSE; // Has an invalid task ID already been reported?
    static bool L_error_logged = FALSE;  // has an error for exceeding time time been logged?
    SsxMachineContext ctx;

    // Enter the protected context
    ssx_critical_section_enter( SSX_NONCRITICAL, &ctx );

    // Clear OCB timer0 status based on the interrupt
    ocb_timer_status_clear( irq );

    // Walk the tick sequence for the current tick, executing each runnable task listed.
    CURRENT_TICK++;

    // Save off start time of RTL tick
    G_fw_timing.rtl_start = l_start;

    // Set global run mask point to deferred mask so that any modification
    // to the deferred mask flag is taken into effect for this tick.
    G_run_mask = G_run_mask_deferred;

    RTLS_DBG("#### Tick %d ####\n",CURRENT_TICK);


    // Index into the tick table to get a pointer to the tick sequence for the current tick.
    uint8_t l_tick = (MAX_NUM_TICKS - 1) & CURRENT_TICK;
    l_taskid_ptr = G_tick_table[l_tick];

    do
    {
        if ( *l_taskid_ptr == TASK_END )
        {
            // We're done with this tick
            break;
        }

        if ( *l_taskid_ptr > TASK_END )
        {
            // Invalid task ID
            if ( ! L_bad_id_reported )
            {
                // First bad task ID we've seen this tick.  Log an unrecoverable error.
                TRAC_ERR("rtl_do_tick() - Invalid task ID"
                         "taskId = 0x%x", *l_taskid_ptr );

                /*
                * @errortype
                * @moduleid    RTLS_DO_TICK_MOD
                * @reasoncode  INTERNAL_FAILURE
                * @userdata1   Invalid task ID
                * @userdata4   OCC_NO_EXTENDED_RC
                * @devdesc     Firmware failure on task operation
                */
                l_err = createErrl(
                            RTLS_DO_TICK_MOD,           //ModId
                            INTERNAL_FAILURE,           //Reasoncode
                            OCC_NO_EXTENDED_RC,         //Extended reasoncode
                            ERRL_SEV_UNRECOVERABLE,     //Severity
                            l_trace,                    //Trace Buf
                            DEFAULT_TRACE_SIZE,         //Trace Size
                            *l_taskid_ptr,              //Userdata1
                            0                           //Userdata2
                            );

                // Callout firmware
                addCalloutToErrl(l_err,
                                 ERRL_CALLOUT_TYPE_COMPONENT_ID,
                                 ERRL_COMPONENT_ID_FIRMWARE,
                                 ERRL_CALLOUT_PRIORITY_HIGH);

                // Commit error log
                commitErrl( &l_err );

                // Set our "bad ID reported" flag
                L_bad_id_reported = TRUE;
            }

            // Under all conditions, move on to the next task ID.
            l_taskid_ptr++;
            continue;
        }

        l_task_ptr = &(G_task_table[ *l_taskid_ptr ]);

        if ( ((l_task_ptr->flags & G_run_mask) == G_run_mask ) && (l_task_ptr->func_ptr != NULL) )
        {
            // The task's flags match the global run mask, and its function pointer is valid.
            // This task is ready to run.
            l_task_ptr->func_ptr(l_task_ptr);
        }

        // Increment to the next tick sequence before looping again.
        l_taskid_ptr++;

    } while(TRUE);

    // Save timing of RTL tick
    G_fw_timing.rtl_dur = DURATION_IN_US_UNTIL_NOW_FROM(l_start);
    if(G_fw_timing.rtl_dur > MICS_PER_TICK)
    {
        // exceeded tick time!!!
        TRAC_ERR("rtl_do_tick: tick seq %d took %dus AMEC slv/mst tasks took total of %dus",
                  l_tick, G_fw_timing.rtl_dur, G_fw_timing.ameint_dur);
        sensor_t *l_gpe0_sensor = getSensorByGsid(GPEtickdur0);
        sensor_t *l_gpe1_sensor = getSensorByGsid(GPEtickdur1);

        TRAC_ERR("GPE TIMES: GPE0 = %dus, max %dus  GPE1 = %dus, max %dus",
                  l_gpe0_sensor->sample, l_gpe0_sensor->sample_max, l_gpe1_sensor->sample, l_gpe1_sensor->sample_max);

        if(!L_error_logged)
        {
           /*
            * @errortype
            * @moduleid    RTLS_DO_TICK_MOD
            * @reasoncode  INTERNAL_FAILURE
            * @userdata1   Tick time in us
            * @userdata4   ERC_RTL_TIME_EXCEEDED
            * @devdesc     Exceeded RTL tick time
            */
            l_err = createErrl(
                RTLS_DO_TICK_MOD,               //ModId
                INTERNAL_FAILURE,               //Reasoncode
                ERC_RTL_TIME_EXCEEDED,          //Extended reasoncode
                ERRL_SEV_PREDICTIVE,            //Severity
                l_trace,                        //Trace Buf
                DEFAULT_TRACE_SIZE,             //Trace Size
                G_fw_timing.rtl_dur,            //Userdata1
                0                               //Userdata2
                );

            // Commit error log
            commitErrl( &l_err );
            L_error_logged = TRUE;
        }
    }

    RTLS_DBG("RTL Tick Duration: %d us\n",(int)G_fw_timing.rtl_dur);

    //exit the protected context
    ssx_critical_section_exit( &ctx );
}

// Function Specification
//
// Name: rtl_set_task_data
//
// Description: Changes the data pointer for the specified task
//
// End Function Specification

void rtl_set_task_data( const task_id_t i_task_id, void * i_data_ptr )
{
    errlHndl_t l_err = NULL;
    const trace_descriptor_array_t* l_trace = NULL;  // Temporary trace descriptor

    if ( i_task_id >= TASK_END )
    {
        RTLS_DBG("Invalid task ID: 0x%x", i_task_id);
        // Task ID is invalid so log an error internally

        /*
        * @errortype
        * @moduleid    RTLS_SET_TASK_DATA_MOD
        * @reasoncode  INTERNAL_INVALID_INPUT_DATA
        * @userdata1   Failing task ID
        * @userdata4   OCC_NO_EXTENDED_RC
        * @devdesc     Firmware internal failure setting task data
        */
        l_err = createErrl(
                RTLS_SET_TASK_DATA_MOD,         //ModId
                INTERNAL_INVALID_INPUT_DATA,    //Reasoncode
                OCC_NO_EXTENDED_RC,             //Extended reasoncode
                ERRL_SEV_PREDICTIVE,            //Severity
                l_trace,                        //Trace Buf
                DEFAULT_TRACE_SIZE,             //Trace Size
                i_task_id,                      //Userdata1
                0                               //Userdata2
                );

        // Commit error log
        commitErrl( &l_err );
    }
    else
    {
        G_task_table[i_task_id].data_ptr = i_data_ptr;
    }
    return;
}

// Function Specification
//
// Name: rtl_set_run_mask
//
// Description: Stores the bitwise-or of i_flag and the global run mask into
//              the global run mask
//
// End Function Specification
void rtl_set_run_mask( const uint32_t i_flags )
{
    G_run_mask |= i_flags;
    G_run_mask_deferred |= i_flags;
    return;
}

// Function Specification
//
// Name: rtl_clr_run_mask
//
// Description: Stores the bitwise-and of the inverse of i_flag and the global
//              run mask into the global run mask
//
// End Function Specification
void rtl_clr_run_mask( const uint32_t i_flags )
{
    // Don't let the caller clear the run flag from the global mask.
    // We use an interim variable so we can keep i_flags const.
    uint32_t l_mask = i_flags & ~RTL_FLAG_RUN;

    G_run_mask &= ~l_mask;
    G_run_mask_deferred &= ~l_mask;
    return;
}

// Function Specification
//
// Name: rtl_set_run_mask_deferred
//
// Description: Stores the bitwise-or of i_flag and the global run mask
//              deferred into the global run mask deferred
//
// End Function Specification
void rtl_set_run_mask_deferred( const uint32_t i_flags )
{
    G_run_mask_deferred |= i_flags;
    return;
}

// Function Specification
//
// Name: rtl_clr_run_mask_deferred
//
// Description: Stores the bitwise-and of the inverse of i_flag and the global
//              run mask deferred into the global run mask deferred.
//
// End Function Specification
void rtl_clr_run_mask_deferred( const uint32_t i_flags )
{
    // Don't let the caller clear the run flag from the global mask.
    // We use an interim variable so we can keep i_flags const.
    uint32_t l_mask = i_flags & ~RTL_FLAG_RUN;

    G_run_mask_deferred &= ~l_mask;
    return;
}
OpenPOWER on IntegriCloud