summaryrefslogtreecommitdiffstats
path: root/src/occ_405/dimm/dimm.c
blob: 2e1158d0e78679fca5d8fd7ed59e0eb530c13d05 (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/occ_405/dimm/dimm.c $                                     */
/*                                                                        */
/* OpenPOWER OnChipController Project                                     */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2011,2018                        */
/* [+] 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                                                     */

//#define DIMM_DEBUG

#include <ssx.h>
#include <occhw_async.h>
#include <dimm_structs.h>

#include <trac_interface.h>
#include <trac.h>
#include <occ_common.h>
#include <comp_ids.h>
#include <occ_service_codes.h>
#include <dimm.h>
#include <dimm_service_codes.h>
#include <state.h>
#include <occ_sys_config.h>
#include "sensor.h"
#include "amec_sys.h"
#include "lock.h"
#include "common.h"
#include "memory.h"
#include "centaur_data.h"
#include "amec_health.h"
#include "memory_power_control.h"
#include "i2c.h"

extern bool G_mem_monitoring_allowed;
extern memory_control_task_t G_memory_control_task;

uint8_t G_dimm_state = DIMM_STATE_INIT;     // Curret state of DIMM state machine
// G_maxDimmPort is the maximum I2C port number (1 indicates port 0 and 1 are valid)
uint8_t G_maxDimmPort = NUM_DIMM_PORTS - 1;

bool     G_dimm_i2c_reset_required = false;
uint32_t G_dimm_i2c_reset_cause = 0;

typedef struct {
    bool     disabled;
    uint8_t  errorCount; // # consecutive errors for this DIMM
} dimmData_t;
dimmData_t G_dimm[NUM_DIMM_PORTS][NUM_DIMMS_PER_I2CPORT] = {{{false,0}}};

// If still no i2c interrupt after MAX_TICK_COUNT_WAIT, then try next operation anyway
#define MAX_TICK_COUNT_WAIT 2

#define DIMM_AND_PORT ((G_dimm_sm_args.i2cPort<<8) | G_dimm_sm_args.dimm)
#define DIMM_INDEX(port,dimm) ((port*NUM_DIMMS_PER_I2CPORT)+dimm)

// GPE Requests
GpeRequest G_dimm_sm_request;

// GPE arguments
GPE_BUFFER(dimm_sm_args_t  G_dimm_sm_args);
GPE_BUFFER(dimm_control_args_t  G_dimm_control_args);



// Read OCC_MISC register to see if an I2C interrupt was generated for
// the specified engine.
bool check_for_i2c_interrupt(const uint8_t i_engine)
{
    bool l_interruptTriggered = false;
    ocb_occmisc_t occmisc;
    occmisc.value = in32(OCB_OCCMISC);

    // I2CM_INTR_STATUS has a one bit status for each engine: C, D, and E
    if (PIB_I2C_ENGINE_E == i_engine)
    {
        // Engine E
        l_interruptTriggered = occmisc.fields.i2cm_intr_status & 0x01;
    }
    else if (PIB_I2C_ENGINE_D == i_engine)
    {
        // Engine D
        l_interruptTriggered = occmisc.fields.i2cm_intr_status & 0x02;
    }
    else if (PIB_I2C_ENGINE_C == i_engine)
    {
        // Engine C
        l_interruptTriggered = occmisc.fields.i2cm_intr_status & 0x04;
    }
    else
    {
        // Invalid engine
        DIMM_DBG("check_for_i2c_interrupt: invalid engine 0x%02X", i_engine);
    }

    if (!l_interruptTriggered)
    {
        DIMM_DBG("check_for_i2c_interrupt: no interrupt for engine 0x%02X (tick=%d)", i_engine, DIMM_TICK);
    }
    else
    {
        DIMM_DBG("check_for_i2c_interrupt: got interrupt for engine 0x%02X (tick=%d)", i_engine, DIMM_TICK);
    }

    return l_interruptTriggered;

} // end check_for_i2c_interrupt()


// Determine the I2C address for specified DIMM
uint8_t get_dimm_addr(uint8_t i_dimm)
{
    //if (MEMORY_TYPE_NIMBUS == G_sysConfigData.mem_type)
    return 0x30 | (i_dimm<<1);
}

// Create DIMM state machine IPC request
void memory_nimbus_init()
{
    errlHndl_t l_err = NULL;    // Error handler
    int rc_dimm_sm = 0, rc_dimm_ctl = 0; // rcs from gpe ipc request creation commands
    int rc_dimm = 0;

    do
    {
        // Initializes GPE request for DIMM temperature reading IPC Task,
        DIMM_DBG("memory_nimbus_init: Creating request GPE1 DIMM data IPC task");
        rc_dimm_sm = gpe_request_create(
                                        &G_dimm_sm_request,              // gpe_req for the task
                                        &G_async_gpe_queue1,             // queue
                                        IPC_ST_DIMM_SM_FUNCID,           // Function ID
                                        &G_dimm_sm_args,                 // parm for the task
                                        SSX_WAIT_FOREVER,                // no timeout
                                        NULL,                            // callback
                                        NULL,                            // callback arg
                                        ASYNC_CALLBACK_IMMEDIATE);       // options
        if(rc_dimm_sm)
        {
            TRAC_ERR("memory_control_init: Failed to initialize dimm state"
                     " machine IPC task [rc_dimm_sm=0x%x]",
                     rc_dimm_sm);
            rc_dimm = rc_dimm_sm;
            break;
        }

        // Initializes GPE request for DIMM Control IPC Task,
        DIMM_DBG("memory_nimbus_init: Creating request GPE1 DIMM control IPC task");
        rc_dimm_ctl = gpe_request_create(
                                         &G_memory_control_task.gpe_req,  // gpe_req for the task
                                         &G_async_gpe_queue1,             // queue
                                         IPC_ST_DIMM_CONTROL_FUNCID,      // Function ID
                                         &G_dimm_control_args,            // parm for the task
                                         SSX_WAIT_FOREVER,                // no timeout
                                         NULL,                            // callback
                                         NULL,                            // callback argument
                                         ASYNC_CALLBACK_IMMEDIATE );      // options

        if(rc_dimm_ctl)
        {
            TRAC_ERR("memory_control_init: Failed to initialize dimm control"
                     " IPC task [rc_dimm_ctl=0x%x]",
                     rc_dimm_ctl);
            rc_dimm = rc_dimm_sm;
            break;
        }

        // Initialize GPE request for DIMM memory power control IPC task,
        gpe_init_mem_power_control();   // will request reset if it fails
    }
    while(0);


    if(rc_dimm) // Either dimm sm or dimm control gpe request creation failed.
    {
        /* @
         * @errortype
         * @moduleid    DIMM_MID_NIMBUS_INIT
         * @reasoncode  SSX_GENERIC_FAILURE
         * @userdata1   l_rc_gpe  - Return code of failing function
         * @userdata2   0
         * @userdata4   OCC_NO_EXTENDED_RC
         * @devdesc     Failed to initialize GPE1 DIMM IPC job
         */
        l_err = createErrl(
                           DIMM_MID_NIMBUS_INIT,                       //modId
                           SSX_GENERIC_FAILURE,                        //reasoncode
                           OCC_NO_EXTENDED_RC,                         //Extended reason code
                           ERRL_SEV_PREDICTIVE,                        //Severity
                           NULL,                                       //Trace Buf
                           DEFAULT_TRACE_SIZE,                         //Trace Size
                           rc_dimm,                                    //userdata1
                           0                                           //userdata2
                          );

        REQUEST_RESET(l_err);
    }

}


// Scan all of the DIMM temps and keep track of the hottest
void update_hottest_dimm()
{
    // Find/save the hottest DIMM temperature for the last set of readings
    uint8_t hottest = 0;
    int pIndex, dIndex;
    for (pIndex = 0; pIndex < NUM_DIMM_PORTS; ++pIndex)
    {
        for (dIndex = 0; dIndex < NUM_DIMMS_PER_I2CPORT; ++dIndex)
        {
            if (g_amec->proc[0].memctl[pIndex].centaur.dimm_temps[dIndex].cur_temp > hottest)
            {
                hottest = g_amec->proc[0].memctl[pIndex].centaur.dimm_temps[dIndex].cur_temp;
            }
        }
    }

    // Store the hottest DIMM temp sensor
    sensor_update(AMECSENSOR_PTR(TEMPDIMMTHRM), hottest);
}


// Update current I2C port/DIMM index to next potential DIMM
void use_next_dimm(uint8_t * i_port, uint8_t * i_dimm)
{
    if (++*i_dimm == NUM_DIMMS_PER_I2CPORT)
    {
        // Finished all DIMMs for current port, switch to new port
        *i_port = 1 - *i_port;
        *i_dimm = 0;
    }

    // Check if we are starting a new set of readings and if so, update hottest DIMM
    if ((*i_port == 0) && (*i_dimm == 0))
    {
        update_hottest_dimm();
    }
}


// Called after a failure to read a DIMM temperature.  The error will
// be counted and if threshold is reached, and error will be created with
// the DIMM as a callout and then set flag to trigger I2C reset
void mark_dimm_failed()
{
    const uint8_t port = G_dimm_sm_args.i2cPort;
    const uint8_t dimm = G_dimm_sm_args.dimm;

    // Trace the first 3 consecutive failures for this DIMM
    if (G_dimm[port][dimm].errorCount < 3)
    {
        INTR_TRAC_ERR("mark_dimm_failed: DIMM%04X failed in state/rc/count=0x%06X "
                      "(ffdc 0x%08X%08X, completion_state 0x%02X)",
                      DIMM_AND_PORT, (G_dimm_sm_args.state << 16) | (G_dimm_sm_args.error.rc << 8) | G_dimm[port][dimm].errorCount,
                      WORD_HIGH(G_dimm_sm_args.error.ffdc),
                      WORD_LOW(G_dimm_sm_args.error.ffdc),
                      G_dimm_sm_request.request.completion_state);
    }

    g_amec->proc[0].memctl[port].centaur.dimm_temps[dimm].flags |= FRU_SENSOR_STATUS_ERROR;

    if (port == 0)
    {
        INCREMENT_ERR_HISTORY(ERRH_DIMM_I2C_PORT0);
    }
    else
    {
        INCREMENT_ERR_HISTORY(ERRH_DIMM_I2C_PORT1);
    }

    if (G_dimm[port][dimm].errorCount < 255)
    {
        ++G_dimm[port][dimm].errorCount;
    }

    if (false == G_dimm[port][dimm].disabled)
    {
        if(G_dimm_timeout_logged_bitmap.bytes[port] & (DIMM_SENSOR0 >> dimm))
        {
            //Health monitor has already logged a timeout for this DIMM
            G_dimm[port][dimm].disabled = true;
            INTR_TRAC_ERR("mark_dimm_failed: disabling DIMM%04X due to health monitor timeout (consecutive errors: %d)",
                          DIMM_AND_PORT, G_dimm[port][dimm].errorCount);
        }
    }

    // Reset DIMM I2C engine
    G_dimm_i2c_reset_required = true;
    G_dimm_i2c_reset_cause = port<<24 | dimm<<16 | (G_dimm_sm_args.error.rc & 0xFFFF);
    G_dimm_state = DIMM_STATE_RESET_MASTER;

} // end mark_dimm_failed()


// Schedule a GPE request for the specified DIMM state
bool schedule_dimm_req(uint8_t i_state, dimm_sm_args_t i_new_args)
{
    bool l_scheduled = false;
    bool scheduleRequest = true;

    DIMM_DBG("schedule_dimm_req called with state 0x%02X (tick=%d)", i_state, DIMM_TICK);

    if (!async_request_is_idle(&G_dimm_sm_request.request))
    {
        INTR_TRAC_INFO("E>schedule_dimm_req: request not idle when scheduling 0x%02X (tick=%d) (prior state 0x%02X / DIMM%04X)",
                       i_state, DIMM_TICK, G_dimm_sm_args.state, DIMM_AND_PORT);
    }
    else
    {
        DIMM_DBG("schedule_dimm_req: scheduling 0x%02X (tick=%d) (prior state 0x%02X / DIMM%04X)",
                 i_state, DIMM_TICK, G_dimm_sm_args.state, DIMM_AND_PORT);
        G_dimm_sm_args = i_new_args;
        switch(i_state)
        {
            // Init
            case DIMM_STATE_INIT:
                break;

                // Read DIMM temp
            case DIMM_STATE_WRITE_MODE:
            case DIMM_STATE_WRITE_ADDR:
            case DIMM_STATE_INITIATE_READ:
            case DIMM_STATE_READ_TEMP:
                break;

                // I2C reset
            case DIMM_STATE_RESET_MASTER:
            case DIMM_STATE_RESET_SLAVE_P0:
            case DIMM_STATE_RESET_SLAVE_P0_COMPLETE:
            case DIMM_STATE_RESET_SLAVE_P1:
            case DIMM_STATE_RESET_SLAVE_P1_COMPLETE:
                break;

            default:
                INTR_TRAC_ERR("schedule_dimm_req: Invalid state (0x%02X)", i_state);
                errlHndl_t err = NULL;
                /*
                 * @errortype
                 * @moduleid    DIMM_MID_DIMM_SM
                 * @reasoncode  DIMM_INVALID_STATE
                 * @userdata1   DIMM state
                 * @userdata2   0
                 * @devdesc     Invalid DIMM I2C state requested
                 */
                err = createErrl(DIMM_MID_DIMM_SM,
                                 DIMM_INVALID_STATE,
                                 OCC_NO_EXTENDED_RC,
                                 ERRL_SEV_PREDICTIVE,
                                 NULL,
                                 DEFAULT_TRACE_SIZE,
                                 i_state,
                                 0);
                // Request reset since this should never happen.
                REQUEST_RESET(err);
                scheduleRequest = false;
                break;
        }

        if (scheduleRequest)
        {
            // Clear errors and init common arguments for GPE
            G_dimm_sm_args.error.error = 0;
            G_dimm_sm_args.state = i_state;

            DIMM_DBG("schedule_dimm_req: Scheduling GPE1 DIMM I2C state 0x%02X (tick %d)", i_state, DIMM_TICK);
            int l_rc = gpe_request_schedule(&G_dimm_sm_request);
            if (0 == l_rc)
            {
                l_scheduled = true;
            }
            else
            {
                errlHndl_t l_err = NULL;
                INTR_TRAC_ERR("schedule_dimm_req: schedule failed w/rc=0x%08X (%d us)",
                              l_rc, (int) ((ssx_timebase_get())/(SSX_TIMEBASE_FREQUENCY_HZ/1000000)));
                /*
                 * @errortype
                 * @moduleid    DIMM_MID_DIMM_SM
                 * @reasoncode  SSX_GENERIC_FAILURE
                 * @userdata1   GPE shedule returned rc code
                 * @userdata2   state
                 * @devdesc     dimm_req schedule failed
                 */
                l_err = createErrl(DIMM_MID_DIMM_SM,
                                   SSX_GENERIC_FAILURE,
                                   ERC_DIMM_SCHEDULE_FAILURE,
                                   ERRL_SEV_PREDICTIVE,
                                   NULL,
                                   DEFAULT_TRACE_SIZE,
                                   l_rc,
                                   i_state);
                // Request reset since this should never happen.
                REQUEST_RESET(l_err);
            }
        }
    }

    return l_scheduled;

} // end schedule_dimm_req()


// Check if the last I2C operation completed, and force failure if not
bool check_for_i2c_failure()
{
    bool failed = false;

    // Check if I2C operation is complete
    if (ASYNC_REQUEST_STATE_COMPLETE == G_dimm_sm_request.request.completion_state)
    {
        // Check if I2C operation failed
        if ((GPE_RC_SUCCESS != G_dimm_sm_args.error.rc) &&
            (GPE_RC_NOT_COMPLETE != G_dimm_sm_args.error.rc))
        {
            failed = true;
            // Only mark DIMM as failed if not during an I2C reset
            if (false == G_dimm_i2c_reset_required)
            {
                mark_dimm_failed();
            }
        }
    }
    return failed;
}


// Handle the DIMM reset states
uint8_t dimm_reset_sm()
{
    uint8_t nextState = G_dimm_state;
    static dimm_sm_args_t L_new_dimm_args = {{{{0}}}};

    switch (G_dimm_state)
    {
        case DIMM_STATE_RESET_MASTER:
            if (DIMM_TICK == 0)
            {
                TRAC_INFO("dimm_reset_sm: Initiating I2C reset of engine %d", G_sysConfigData.dimm_i2c_engine);
                L_new_dimm_args.i2cEngine = G_sysConfigData.dimm_i2c_engine;
                if (schedule_dimm_req(DIMM_STATE_RESET_MASTER, L_new_dimm_args))
                {
                    nextState = DIMM_STATE_RESET_SLAVE_P0;
                }
            }
            // else wait for tick 0
            break;

        case DIMM_STATE_RESET_SLAVE_P0:
            L_new_dimm_args.i2cPort = 0;
            if (schedule_dimm_req(DIMM_STATE_RESET_SLAVE_P0, L_new_dimm_args))
            {
                nextState = DIMM_STATE_RESET_SLAVE_P0_WAIT;
            }
            break;

        case DIMM_STATE_RESET_SLAVE_P0_WAIT:
            // Delay to allow reset to complete
            DIMM_DBG("dimm_reset_sm: waiting during slave port 0 reset");
            nextState = DIMM_STATE_RESET_SLAVE_P0_COMPLETE;
            break;

        case DIMM_STATE_RESET_SLAVE_P0_COMPLETE:
            if (schedule_dimm_req(DIMM_STATE_RESET_SLAVE_P0_COMPLETE, L_new_dimm_args))
            {
                if (G_maxDimmPort > 0)
                {
                    nextState = DIMM_STATE_RESET_SLAVE_P1;
                }
                else
                {
                    // If there is only one port, skip slave port 1
                    nextState = DIMM_STATE_INIT;
                    DIMM_DBG("dimm_reset_sm: I2C reset completed (1 port)");
                }
            }
            break;

        case DIMM_STATE_RESET_SLAVE_P1:
            L_new_dimm_args.i2cPort = 1;
            if (schedule_dimm_req(DIMM_STATE_RESET_SLAVE_P1, L_new_dimm_args))
            {
                nextState = DIMM_STATE_RESET_SLAVE_P1_WAIT;
            }
            break;

        case DIMM_STATE_RESET_SLAVE_P1_WAIT:
            // Delay to allow reset to complete
            nextState = DIMM_STATE_RESET_SLAVE_P1_COMPLETE;
            break;

        case DIMM_STATE_RESET_SLAVE_P1_COMPLETE:
            if (schedule_dimm_req(DIMM_STATE_RESET_SLAVE_P1_COMPLETE, L_new_dimm_args))
            {
                nextState = DIMM_STATE_INIT;
                DIMM_DBG("dimm_reset_sm: I2C reset completed");
            }
            break;

        default:
            INTR_TRAC_ERR("dimm_reset_sm: INVALID STATE: 0x%02X when reset is required", G_dimm_state);
            nextState = DIMM_STATE_RESET_MASTER;
            break;
    }

    return nextState;

} // end dimm_reset_sm()



#ifdef DEBUG_LOCK_TESTING
// Simulate I2C locking behavior from the host
void host_i2c_lock_request();
void host_i2c_lock_release();
#define DURATION_EXTINT     2 // number of ticks before clearing external interrupt
#define DURATION_LOCK       6 // 80 // minimum ticks to keep lock
#define DURATION_LOCK_DELTA 5 // additional ticks to hold lock (for timing variation)
#define DURATION_UNLOCK    20 // 15 // number of ticks before host releases lock
void SIMULATE_HOST()
{
    static int lockDuration = DURATION_LOCK;     // Unlock when this gets to 0
    static int unlockDuration = DURATION_UNLOCK; // Request lock after this gets to 0
    static int extIntDuration = DURATION_EXTINT; // Release external interrupt when this gets to 0
    static int durationDelta = DURATION_LOCK_DELTA; // additional variability on how long lock is kept

#if 1
    // Force notifications (to ensure they are queued correctly
    static int newNotification = 45; // new notification every ticks
    if (--newNotification == 0)
    {
        ocb_occmisc_t current_occmisc0;
        current_occmisc0.value = in32(OCB_OCCMISC);
        TRAC_INFO("SIMULATE_HOST: forcing additional notifications (tmgt+tmgt+tmgt+shmem) currentInt=%d",
                  current_occmisc0.fields.core_ext_intr);
        notify_host(INTR_REASON_HTMGT_SERVICE_REQUIRED);
        //notify_host(INTR_REASON_I2C_OWNERSHIP_CHANGE);
        notify_host(INTR_REASON_HTMGT_SERVICE_REQUIRED);
        notify_host(INTR_REASON_HTMGT_SERVICE_REQUIRED);
        notify_host(INTR_REASON_OPAL_SHARED_MEM_CHANGE);
        newNotification = 20;
    }
#endif

    ocb_occflg_t occ_flags = {0};
    occ_flags.value = in32(OCB_OCCFLG);
    if (occ_flags.fields.i2c_engine3_lock_host == 1)
    {
        if (occ_flags.fields.i2c_engine3_lock_occ == 0)
        {
            // Host owns lock
            if (--lockDuration == 0)
            {
                host_i2c_lock_release();
                unlockDuration = DURATION_UNLOCK;
            }
        }
        else
        {
            // Host requested lock, but does not own it yet
        }
    }
    else
    {
        // Host has NOT requested lock yet
        if (--unlockDuration == 0)
        {
            // Request the lock
            host_i2c_lock_request();
            lockDuration = DURATION_LOCK + durationDelta;
            if (--durationDelta < 0)
            {
                durationDelta = DURATION_LOCK_DELTA;
            }
        }
    }

    // Handle clearing the external interrupt periodically
    ocb_occmisc_t current_occmisc;
    current_occmisc.value = in32(OCB_OCCMISC);
    if (current_occmisc.fields.core_ext_intr)
    {
        if (--extIntDuration == 0)
        {
            TRAC_INFO("SIMULATE_HOST: clearing ext_intr");
            current_occmisc.fields.core_ext_intr = 0;
            out32(OCB_OCCMISC,current_occmisc.value);
            extIntDuration = 2;
        }
    }
}
#endif // DEBUG_LOCK_TESTING



// Function Specification
//
// Name:  process_dimm_temp
//
// Description: Validate and store DIMM temperature
//
// End Function Specification
void process_dimm_temp()
{
    const uint8_t port = G_dimm_sm_args.i2cPort;
    const uint8_t dimm = G_dimm_sm_args.dimm;
    uint8_t l_dimm_temp = G_dimm_sm_args.temp;

#define MIN_VALID_DIMM_TEMP 1
#define MAX_VALID_DIMM_TEMP 125 //according to Mike Pardiek
#define MAX_MEM_TEMP_CHANGE 16

    // Last DIMM read completed, update sensor and clear error count
    DIMM_DBG("process_dimm_temp: Successfully read DIMM%04X temperature: %dC, tick %d",
             DIMM_AND_PORT, l_dimm_temp, DIMM_TICK);

    fru_temp_t* l_fru = &g_amec->proc[0].memctl[port].centaur.dimm_temps[dimm];

    uint8_t l_prev_temp = l_fru->cur_temp;
    if (l_prev_temp == 0)
    {
        l_prev_temp = l_dimm_temp;
    }

    //make sure temperature is within a 'reasonable' range.
    if (l_dimm_temp < MIN_VALID_DIMM_TEMP ||
        l_dimm_temp > MAX_VALID_DIMM_TEMP)
    {
        //set a flag so that if we end up logging an error we have something to debug why
        l_fru->flags |= FRU_TEMP_OUT_OF_RANGE;
        l_dimm_temp = l_prev_temp;
    }
    else
    {
        //don't allow temp to change more than is reasonable
        if (l_dimm_temp > (l_prev_temp + MAX_MEM_TEMP_CHANGE))
        {
            if (!l_fru->flags)
            {
                TRAC_INFO("dimm temp rose faster than reasonable: DIMM%04X prev[%d] cur[%d]",
                          DIMM_AND_PORT, l_prev_temp, l_dimm_temp);
                l_fru->flags |= FRU_TEMP_FAST_CHANGE;
            }
            l_dimm_temp = l_prev_temp + MAX_MEM_TEMP_CHANGE;
        }
        else if (l_dimm_temp < (l_prev_temp - MAX_MEM_TEMP_CHANGE))
        {
            if (!l_fru->flags)
            {
                TRAC_INFO("dimm temp fell faster than reasonable: DIMM%04X prev[%d] cur[%d]",
                          DIMM_AND_PORT, l_prev_temp, l_dimm_temp);
                l_fru->flags |= FRU_TEMP_FAST_CHANGE;
            }
            l_dimm_temp = l_prev_temp - MAX_MEM_TEMP_CHANGE;
        }
        else //reasonable amount of change occurred
        {
            l_fru->flags &= ~FRU_TEMP_FAST_CHANGE;
        }

        //Notify thermal thread that temperature has been updated
        G_dimm_temp_updated_bitmap.bytes[port] |= DIMM_SENSOR0 >> dimm;

        //clear other error flags
        l_fru->flags &= FRU_TEMP_FAST_CHANGE;
    }

    //Check if at or above the error temperature
    if (l_dimm_temp >= g_amec->thermaldimm.ot_error)
    {
        //Set a bit so that this dimm can be called out by the thermal thread
        G_dimm_overtemp_bitmap.bytes[port] |= DIMM_SENSOR0 >> dimm;
    }

    l_fru->cur_temp = l_dimm_temp;
    // Store DIMM temp in sensor
    sensor_update(&g_amec->proc[0].tempdimm[DIMM_INDEX(port, dimm)], l_dimm_temp);

    // Successful temp collected, reset error count
    if (G_dimm[port][dimm].errorCount > 2)
    {
        INTR_TRAC_INFO("process_dimm_temp: successfully read temp for DIMM%04X (after %d consecutive errors)",
                       DIMM_AND_PORT, G_dimm[port][dimm].errorCount);
    }
    G_dimm[port][dimm].errorCount = 0;

} // end process_dimm_temp()


void disable_all_dimms()
{
    if (G_mem_monitoring_allowed)
    {
        TRAC_INFO("disable_all_dimms: DIMM temp collection is being stopped");
        G_mem_monitoring_allowed = false;
    }
    occ_i2c_lock_release(G_dimm_sm_args.i2cEngine);
}

// Function Specification
//
// Name:  task_dimm_sm
//
// Description: DIMM State Machine - Called every other tick to collect all of
//              the DIMM temperatures.
//
// Task Flags: RTL_FLAG_ACTIVE
//
// End Function Specification
void task_dimm_sm(struct task *i_self)
{
    static uint8_t L_dimmIndex = 0x00;
    static uint8_t L_dimmPort  = 0x00;
    static uint8_t L_notReadyCount = 0;
#define MAX_READ_ATTEMPT 3
    static uint8_t L_readAttempt = 0;
    static bool L_readIssued = false;
    const uint8_t engine = G_sysConfigData.dimm_i2c_engine;
    static bool L_occ_owns_lock = false;

    static unsigned int L_dimms_enabled = false;
    if (!L_dimms_enabled)
    {
        L_dimms_enabled = true;
        TRAC_INFO("task_dimm_sm: DIMM temp collection is being started (0x%08X)", G_dimm_present_sensors.words[0]);
        G_dimm_enabled_sensors = G_dimm_present_sensors;
    }

    if (G_mem_monitoring_allowed)
    {
#ifdef DEBUG_LOCK_TESTING
        SIMULATE_HOST();
#endif
        if (MEM_TYPE_NIMBUS ==  G_sysConfigData.mem_type)
        {

            // First handle any outstanding I2C reset
            if (G_dimm_i2c_reset_required)
            {
                if ((G_dimm_state != DIMM_STATE_RESET_MASTER) && (check_for_i2c_failure()))
                {
                    // I2C failure occurred during a reset...
                    INTR_TRAC_ERR("task_dimm_sm: Failure during I2C reset - memory monitoring disabled");
                    // release I2C lock to the host for this engine and stop monitoring
                    L_occ_owns_lock = false;
                    disable_all_dimms();
                }
                else
                {
                    if (G_dimm_state == DIMM_STATE_INIT)
                    {
                        // Reset has completed successfully
                        TRAC_INFO("task_dimm_sm: I2C reset completed");
                        G_dimm_i2c_reset_required = false;
                        // Check if host needs I2C lock
                        L_occ_owns_lock = check_and_update_i2c_lock(engine);
                    }
                    else
                    {
                        // Reset still in progress
                        G_dimm_state = dimm_reset_sm();
                    }
                }
            }

            if (G_dimm_i2c_reset_required == false)
            {
                if ((L_occ_owns_lock == false) && ((DIMM_TICK == 0) || (DIMM_TICK == 8)))
                {
                    // Check if host gave up the I2C lock
                    L_occ_owns_lock = check_and_update_i2c_lock(engine);
                    if (L_occ_owns_lock)
                    {
                        // Start over at the INIT state after receiving the lock
                        G_dimm_state = DIMM_STATE_INIT;
                    }
                }

                if (L_occ_owns_lock)
                {
                    // Check for failure on prior operation
                    if (check_for_i2c_failure())
                    {
                        // If there was a failure, continue to the next DIMM (after I2c reset)
                        use_next_dimm(&L_dimmPort, &L_dimmIndex);
                    }

                    uint8_t nextState = G_dimm_state;
                    static dimm_sm_args_t L_new_dimm_args = {{{{0}}}};


                    if (G_dimm_state == DIMM_STATE_INIT)
                    {
                        // Setup I2C Interrupt Mask Register
                        DIMM_DBG("DIMM_STATE_INIT: (I2C Engine 0x%02X, Memory Type 0x%02X)",
                                 engine, G_sysConfigData.mem_type);
                        L_new_dimm_args.i2cEngine = engine;
                        if (schedule_dimm_req(DIMM_STATE_INIT, L_new_dimm_args))
                        {
                            nextState = DIMM_STATE_WRITE_MODE;
                        }
                    }
                    else
                    {
                        bool intTriggered = check_for_i2c_interrupt(engine);
                        if (intTriggered == false)
                        {
                            // Interrupt not generated, I2C operation may not have completed.
                            // After MAX_TICK_COUNT_WAIT, attempt operation anyway.
                            ++L_notReadyCount;
                        }

                        // Check if prior command completed (or timed out waiting for it)
                        if (intTriggered || (L_notReadyCount > MAX_TICK_COUNT_WAIT))
                        {
                            if (ASYNC_REQUEST_STATE_COMPLETE == G_dimm_sm_request.request.completion_state)
                            {
                                // IPC request completed, now check return code
                                if (GPE_RC_SUCCESS == G_dimm_sm_args.error.rc)
                                {
                                    // last request completed without error
                                    switch (G_dimm_sm_args.state)
                                    {
                                        case DIMM_STATE_INIT:
                                            // Save max I2C ports
                                            if (G_maxDimmPort != G_dimm_sm_args.maxPorts)
                                            {
                                                G_maxDimmPort = G_dimm_sm_args.maxPorts;
                                                DIMM_DBG("task_dimm_sm: updating DIMM Max I2C Port to %d", G_maxDimmPort);
                                            }
                                            break;

                                        case DIMM_STATE_READ_TEMP:
                                            if (L_readIssued)
                                            {
                                                // Validate  and store temperature
                                                process_dimm_temp();

                                                // Move on to next DIMM
                                                use_next_dimm(&L_dimmPort, &L_dimmIndex);
                                                L_readIssued = false;

                                                // Check if host needs the I2C lock
                                                L_occ_owns_lock = check_and_update_i2c_lock(engine);
                                            }
                                            break;

                                        default:
                                            // Nothing to do
                                            break;
                                    }
                                }
                                else
                                {
                                    // last request did not return success
                                    switch (G_dimm_sm_args.state)
                                    {
                                        case DIMM_STATE_INITIATE_READ:
                                            if (++L_readAttempt < MAX_READ_ATTEMPT)
                                            {
                                                // The initiate_read didnt complete, retry
                                                DIMM_DBG("task_dimm_sm: initiate read didn't start (%d attempts)", L_readAttempt);
                                                // Force the read again
                                                G_dimm_state = DIMM_STATE_INITIATE_READ;
                                                nextState = G_dimm_state;
                                            }
                                            else
                                            {
                                                INTR_TRAC_ERR("task_dimm_sm: initiate read didn't start after %d attempts... forcing reset", L_readAttempt);
                                                mark_dimm_failed();
                                            }
                                            break;

                                        case DIMM_STATE_READ_TEMP:
                                            if (L_readIssued)
                                            {
                                                if (++L_readAttempt < MAX_READ_ATTEMPT)
                                                {
                                                    DIMM_DBG("task_dimm_sm: read didn't complete (%d attempts)", L_readAttempt);
                                                    // Force the read again
                                                    G_dimm_state = DIMM_STATE_READ_TEMP;
                                                    nextState = G_dimm_state;
                                                }
                                                else
                                                {
                                                    INTR_TRAC_ERR("task_dimm_sm: read did not complete after %d attempts... forcing reset", L_readAttempt);
                                                    mark_dimm_failed();
                                                }
                                            }
                                            break;

                                        default:
                                            // Nothing to do
                                            break;
                                    }
                                }
                            }
                        }

                        if (L_occ_owns_lock)
                        {
                            if (false == G_dimm_i2c_reset_required)
                            {
                                // Handle new DIMM state
                                switch (G_dimm_state)
                                {
                                    case DIMM_STATE_WRITE_MODE:
                                        // Only start a DIMM read on tick 0 or 8
                                        if ((DIMM_TICK == 0) || (DIMM_TICK == 8))
                                        {
                                            // If DIMM has huid/sensor then it should be present
                                            // and if not disabled yet, start temp collection
                                            if (NIMBUS_DIMM_PRESENT(L_dimmPort,L_dimmIndex) &&
                                                (G_dimm[L_dimmPort][L_dimmIndex].disabled == false))
                                            {
                                                L_new_dimm_args.i2cPort = L_dimmPort;
                                                L_new_dimm_args.dimm = L_dimmIndex;
                                                if (schedule_dimm_req(DIMM_STATE_WRITE_MODE, L_new_dimm_args))
                                                {
                                                    DIMM_DBG("task_dimm_sm: Collection started for DIMM%04X at tick %d",
                                                             DIMM_AND_PORT, DIMM_TICK);
                                                    nextState = DIMM_STATE_WRITE_ADDR;
                                                }
                                            }
                                            else
                                            {
                                                // Skip current DIMM and move on to next one
                                                use_next_dimm(&L_dimmPort, &L_dimmIndex);
                                            }
                                        }
                                        break;

                                    case DIMM_STATE_WRITE_ADDR:
                                        if (intTriggered || (L_notReadyCount > MAX_TICK_COUNT_WAIT))
                                        {
                                            L_new_dimm_args.dimm = L_dimmIndex;
                                            L_new_dimm_args.i2cAddr = get_dimm_addr(L_dimmIndex);
                                            if (schedule_dimm_req(DIMM_STATE_WRITE_ADDR, L_new_dimm_args))
                                            {
                                                nextState = DIMM_STATE_INITIATE_READ;
                                                L_readAttempt = 0;
                                                L_readIssued = false;
                                            }
                                        }
                                        break;

                                    case DIMM_STATE_INITIATE_READ:
                                        if (intTriggered || (L_notReadyCount > MAX_TICK_COUNT_WAIT))
                                        {
                                            L_new_dimm_args.dimm = L_dimmIndex;
                                            if (schedule_dimm_req(DIMM_STATE_INITIATE_READ, L_new_dimm_args))
                                            {
                                                nextState = DIMM_STATE_READ_TEMP;
                                            }
                                        }
                                        break;

                                    case DIMM_STATE_READ_TEMP:
                                        if (intTriggered || (L_notReadyCount > MAX_TICK_COUNT_WAIT))
                                        {
                                            if (schedule_dimm_req(DIMM_STATE_READ_TEMP, L_new_dimm_args))
                                            {
                                                L_readIssued = true;
                                                nextState = DIMM_STATE_WRITE_MODE;
                                            }
                                        }
                                        break;

                                    default:
                                        INTR_TRAC_ERR("task_dimm_sm: INVALID STATE: 0x%02X", G_dimm_state);
                                        break;
                                }
                            }
                            else
                            {
                                // Previous op triggered reset
                                nextState = dimm_reset_sm();
                            }
                        }
                        else
                        {
                            // OCC no longer holds the i2c lock (no DIMM state change required)
                            nextState = G_dimm_state;
                        }
                    }

                    if (nextState != G_dimm_state)
                    {
                        DIMM_DBG("task_dimm_sm: Updating state to 0x%02X (DIMM%04X) end of tick %d", nextState, (L_dimmPort<<8)|L_dimmIndex, DIMM_TICK);
                        G_dimm_state = nextState;
                        L_notReadyCount = 0;
                    }
                }
            }
        }
        else // G_sysConfigData.mem_type is Centaur
        {
            centaur_data();
        }
    }

} // end task_dimm_sm()


OpenPOWER on IntegriCloud