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

//*************************************************************************
// Includes
//*************************************************************************
#include "amec_pcap.h"
#include "amec_sys.h"
#include "amec_service_codes.h"
#include <occ_common.h>
#include <occ_sys_config.h>
#include <dcom.h>
#include <trac.h>

//*************************************************************************
// Externs
//*************************************************************************

//*************************************************************************
// Defines/Enums
//*************************************************************************
#define PPB_NOM_DROP_DELAY 4    //ticks

//*************************************************************************
// Structures
//*************************************************************************

//*************************************************************************
// Globals
//*************************************************************************

//Number of ticks to wait before dropping below nominal frequency
#define PWR_SETTLED_TICKS   4
//Number of watts power must be below the node power cap before raising
//ppb_fmax
#define PDROP_THRESH        0   //TODO: need better value.
//Number of MHz to raise the proc_pcap_vote for every watt of available power
//(DCM value should be less than SCM)
#define PROC_MHZ_PER_WATT   28  //TODO: need better value.
//Number of MHz to raise ppb_fmax per watt of available power. Depends on
//number of procs in node.
#define NODE_MHZ_PER_WATT()  \
                          (G_sysConfigData.sys_num_proc_present == 0?   \
                           1:                                           \
                           ((PROC_MHZ_PER_WATT/G_sysConfigData.sys_num_proc_present) == 0? \
                            1:                                          \
                            PROC_MHZ_PER_WATT/G_sysConfigData.sys_num_proc_present))

//Frequency_step_khz (from global pstate table)/1000
uint32_t    G_mhz_per_pstate=0;   //TODO: Maybe there's a better value to initilize it to.

uint8_t     G_over_pcap_count=0;

//*************************************************************************
// Function Prototypes
//*************************************************************************

//*************************************************************************
// Functions
//*************************************************************************

//////////////////////////
// Function Specification
//
// Name: amec_pmax_clip_controller
//
// Description: Calculate the pmax_clip_freq vote.  Initialized to Turbo.
//
// Thread: Real Time Loop
//
// End Function Specification
void amec_pmax_clip_controller(void)
{
    /*------------------------------------------------------------------------*/
    /*  Local Variables                                                       */
    /*------------------------------------------------------------------------*/
    uint16_t l_fturbo = G_sysConfigData.sys_mode_freq.table[OCC_MODE_TURBO];
    uint32_t l_pmax_clip_freq = g_amec->proc[0].pwr_votes.pmax_clip_freq;
    Pstate   l_pstate = 0;

    /*------------------------------------------------------------------------*/
    /*  Code                                                                  */
    /*------------------------------------------------------------------------*/

    //Note: quickPowerDrop interrupts will not preempt the real time loop
    //      interrupt. No locking is needed between the two interrupts.
    //Note: quickPowerDropLatchAmec represents the failsafe signal on ITEs and
    //      oversubscription signal on non-ITEs.

    // See the oversub event and control oversub in AMEC
    if(AMEC_INTF_GET_OVERSUBSCRIPTION()&&
       (g_amec->oversub_status.oversubLatchAmec==FALSE) )
    {
        // ISR already did it but still need to do it again here due to
        // l_pmax_clip_freq is incorrect
        l_pmax_clip_freq = G_sysConfigData.sys_mode_freq.table[OCC_MODE_MIN_FREQUENCY];
        g_amec->oversub_status.oversubLatchAmec = TRUE;
    }
    else if( !AMEC_INTF_GET_OVERSUBSCRIPTION() )
    {
        // AMEC doesn't control it and let ISR do it
        g_amec->oversub_status.oversubLatchAmec = FALSE;
    }

    if(l_pmax_clip_freq < l_fturbo)
    {
        l_pmax_clip_freq += G_mhz_per_pstate;

        if(l_pmax_clip_freq > l_fturbo)
        {
            l_pmax_clip_freq = l_fturbo;
        }

        //call proc_freq2pstate
        l_pstate = proc_freq2pstate(l_pmax_clip_freq);

        //Set the pmax_clip register via OCI write.
        amec_oversub_pmax_clip(l_pstate);
    }

    g_amec->proc[0].pwr_votes.pmax_clip_freq = l_pmax_clip_freq;
}

//////////////////////////
// Function Specification
//
// Name: amec_pcap_calc
//
// Description: Calculate the node power cap and the processor power cap.
//
// Thread: Real Time Loop
//
// End Function Specification
void amec_pcap_calc(void)
{
    /*------------------------------------------------------------------------*/
    /*  Local Variables                                                       */
    /*------------------------------------------------------------------------*/
    bool l_failsafe_state = AMEC_INTF_GET_FAILSAFE();
    bool l_oversub_state  = 0;
    uint16_t l_node_pwr = AMECSENSOR_PTR(PWR250US)->sample;
    uint16_t l_p0_pwr   = AMECSENSOR_PTR(PWR250USP0)->sample;
    int32_t l_avail_power = 0;
    uint32_t l_proc_fraction = 0;
    static uint32_t L_prev_node_pcap = 0;
    static bool l_apss_error_traced = FALSE;

    /*------------------------------------------------------------------------*/
    /*  Code                                                                  */
    /*------------------------------------------------------------------------*/

    //TRAC_INFO("amec_pcap_calc: Calculate active_node_pcap, and nom_pcap_fmin.");
    l_oversub_state = AMEC_INTF_GET_OVERSUBSCRIPTION();

    //Set the active_node_pcap in g_amec.
    if(TRUE == l_failsafe_state)
    {
        //Set active_node_pcap to soft min pcap since failsafe is on
        g_amec->pcap.active_node_pcap = G_sysConfigData.pcap.soft_min_pcap;
    }
    else if(TRUE == l_oversub_state)
    {
        g_amec->pcap.active_node_pcap = g_amec->pcap.ovs_node_pcap;
    }
    else
    {
        g_amec->pcap.active_node_pcap = g_amec->pcap.norm_node_pcap;
    }

    //Trace whenever the node pcap changes
    if(L_prev_node_pcap != g_amec->pcap.active_node_pcap)
    {
        TRAC_IMP("amec_pcap_calc: Node pcap set to %d watts.",
                  g_amec->pcap.active_node_pcap);
        L_prev_node_pcap = g_amec->pcap.active_node_pcap;

        // set this pcap as valid (needed by master for comparison)
        g_amec->pcap_valid = 1;
    }

    l_avail_power = g_amec->pcap.active_node_pcap - l_node_pwr;
    if(l_node_pwr != 0)
    {
        l_proc_fraction = ((uint32_t)(l_p0_pwr) << 16)/l_node_pwr;
        if(l_apss_error_traced)
        {
            TRAC_ERR("PCAP: PWR250US sensor is no longer 0.");
            l_apss_error_traced = FALSE;
        }
    }
    else
    {
        if(!l_apss_error_traced)
        {
            TRAC_ERR("PCAP: PWR250US sensor is showing a value of 0.");
            l_apss_error_traced = TRUE;
        }
    }

    g_amec->pcap.active_proc_pcap = l_p0_pwr + ((l_proc_fraction * l_avail_power) >> 16);

    //TRAC_INFO("PCAP: calculated active proc pcap: avail_power[0x%X],proc_fraction[0x%X],"
    //         "active_proc_pcap[0x%X].",l_avail_power,l_proc_fraction,g_amec->pcap.active_proc_pcap);

    //NOTE: Power capping will not affect nominal cores unless a customer power cap is set below the
    //      max pcap or oversubscription occurs.
    //      However, nominal cores will drop below nominal if ppb_fmax drops below nominal.
    if(g_amec->pcap.active_node_pcap < G_sysConfigData.pcap.max_pcap)
    {
        g_amec->proc[0].pwr_votes.nom_pcap_fmin = G_sysConfigData.sys_mode_freq.table[OCC_MODE_MIN_FREQUENCY];
    }
    else
    {
        g_amec->proc[0].pwr_votes.nom_pcap_fmin = G_sysConfigData.sys_mode_freq.table[OCC_MODE_NOMINAL];
    }
}

//////////////////////////
// Function Specification
//
// Name: amec_pcap_controller
//
// Description: Execute the processor Pcap control loop.
//
// Thread: Real Time Loop
//
// End Function Specification
void amec_pcap_controller(void)
{
    /*------------------------------------------------------------------------*/
    /*  Local Variables                                                       */
    /*------------------------------------------------------------------------*/
    int32_t     l_power_avail = 0;
    int32_t     l_proc_pcap_vote = g_amec->proc[0].pwr_votes.proc_pcap_vote;

    /*------------------------------------------------------------------------*/
    /*  Code                                                                  */
    /*------------------------------------------------------------------------*/

    l_power_avail = g_amec->pcap.active_proc_pcap - AMECSENSOR_PTR(PWR250USP0)->sample;

    if(l_proc_pcap_vote > g_amec->proc[0].pwr_votes.nom_pcap_fmin)
    {
        l_proc_pcap_vote = g_amec->proc[0].core_max_freq +
                                                  (PROC_MHZ_PER_WATT * l_power_avail);
    }
    else
    {
        l_proc_pcap_vote += (PROC_MHZ_PER_WATT * l_power_avail);
    }

    if(l_proc_pcap_vote > G_sysConfigData.sys_mode_freq.table[OCC_MODE_TURBO])
    {
        l_proc_pcap_vote = G_sysConfigData.sys_mode_freq.table[OCC_MODE_TURBO];
    }

    if(l_proc_pcap_vote < G_sysConfigData.sys_mode_freq.table[OCC_MODE_MIN_FREQUENCY])
    {
        l_proc_pcap_vote = G_sysConfigData.sys_mode_freq.table[OCC_MODE_MIN_FREQUENCY];
    }

    //Power capping for nominal cores is not allowed to drop frequency below nom_pcap_fmin
    if(l_proc_pcap_vote <  g_amec->proc[0].pwr_votes.nom_pcap_fmin)
    {
        g_amec->proc[0].pwr_votes.proc_pcap_nom_vote = g_amec->proc[0].pwr_votes.nom_pcap_fmin;
    }
    else
    {
        g_amec->proc[0].pwr_votes.proc_pcap_nom_vote = l_proc_pcap_vote;
    }

    g_amec->proc[0].pwr_votes.proc_pcap_vote = l_proc_pcap_vote;
}

//////////////////////////
// Function Specification
//
// Name: amec_ppb_fmax_calc
//
// Description: Calculate the Performance Preserving Bounds (PPB) vote.
//
// Thread: Real Time Loop
//
// End Function Specification
void amec_ppb_fmax_calc(void)
{
    /*------------------------------------------------------------------------*/
    /*  Local Variables                                                       */
    /*------------------------------------------------------------------------*/
    int32_t     l_power_avail = 0;
    bool        l_continue = TRUE;    //Used to break from code if needed.

    /*------------------------------------------------------------------------*/
    /*  Code                                                                  */
    /*------------------------------------------------------------------------*/

    //Set the slaves local copy of ppb_fmax to that received from Master OCC.
    g_amec->proc[0].pwr_votes.ppb_fmax = G_dcom_slv_inbox_doorbell_rx.ppb_fmax;
    // For debug
    sensor_update( AMECSENSOR_PTR(PROBE250US0), g_amec->proc[0].pwr_votes.ppb_fmax);

    //CALCULATION done by MASTER OCC only.
    if(OCC_MASTER == G_occ_role)
    {
        //Power available is the ActiveNodePower - PowerDropThreshold - ActualPwr
        l_power_avail = g_amec->pcap.active_node_pcap - PDROP_THRESH - AMECSENSOR_PTR(PWR250US)->sample;

        //Note: The PWR250US value is read over the SPI bus, which has no error
        //detection. In order to prevent a single bad SPI transfer from causing
        //OCC to lower nominal core frequencies, we require the power to be over
        //the pcap for PPB_NOM_DROP_DELAY ticks before lowering PPB Fmax below
        //Fnom.
        if((g_amec->proc[0].pwr_votes.ppb_fmax == G_sysConfigData.sys_mode_freq.table[OCC_MODE_NOMINAL])
                && (l_power_avail <=0))
        {
            if(G_over_pcap_count < PPB_NOM_DROP_DELAY)
            {
                G_over_pcap_count++;
                l_continue = FALSE;
            }
        }
        else
        {
            G_over_pcap_count = 0;
        }

        //Only run once every 4 ticks (1ms) to allow time for power hogging
        //chips to drop power and power starved chips to raise power.
        if(l_continue && (0 == (G_current_tick & 0x3)))
        {
            if(l_power_avail <= 0)
            {
                G_sysConfigData.master_ppb_fmax -= G_mhz_per_pstate;
            }
            else
            {
                G_sysConfigData.master_ppb_fmax += NODE_MHZ_PER_WATT() * l_power_avail;
            }

            if(G_sysConfigData.master_ppb_fmax > G_sysConfigData.sys_mode_freq.table[OCC_MODE_TURBO])
            {
                G_sysConfigData.master_ppb_fmax = G_sysConfigData.sys_mode_freq.table[OCC_MODE_TURBO];
            }

            if(G_sysConfigData.master_ppb_fmax < G_sysConfigData.sys_mode_freq.table[OCC_MODE_MIN_FREQUENCY])
            {
                G_sysConfigData.master_ppb_fmax = G_sysConfigData.sys_mode_freq.table[OCC_MODE_MIN_FREQUENCY];
            }
        }
    }//End of Master code
}

//////////////////////////
// Function Specification
//
// Name: amec_conn_oc_controller
//
// Description: Handle Over Current.  Useful on ITE system only.
//              Design uses 2 step procedure when OC is detected.
//              1) Lower all cores to Fnom
//              2) If still asserted after PWR_SETTLED_TICKS, lower all cores to Fmin
//
// Thread: Real Time Loop
//
// End Function Specification
void amec_conn_oc_controller(void)
{
    /*------------------------------------------------------------------------*/
    /*  Local Variables                                                       */
    /*------------------------------------------------------------------------*/
    errlHndl_t  l_err = NULL;
    static uint8_t  L_asserted_count = 0;
    static bool L_error_logged = FALSE;

    /*------------------------------------------------------------------------*/
    /*  Code                                                                  */
    /*------------------------------------------------------------------------*/

    //If no overcurrent pins are set, then set vote to Turbo
    if(G_conn_oc_pins_bitmap == 0)
    {
        g_amec->proc[0].pwr_votes.conn_oc_vote = G_sysConfigData.sys_mode_freq.table[OCC_MODE_TURBO];
    }
    else
    {
        //Check if any of the OC gpio pins are set.
        //TODO: G_conn_oc_pins_bitmap should be populated with data sent by TMGT.
        if((G_conn_oc_pins_bitmap & ~(G_apss_pwr_meas.gpio[0])) == 0)
        {
            //Reset counter
            L_asserted_count = 0;

            g_amec->proc[0].pwr_votes.conn_oc_vote += G_mhz_per_pstate;

            //Verify that vote is not greater than turbo.
            if(g_amec->proc[0].pwr_votes.conn_oc_vote > G_sysConfigData.sys_mode_freq.table[OCC_MODE_TURBO])
            {
                g_amec->proc[0].pwr_votes.conn_oc_vote = G_sysConfigData.sys_mode_freq.table[OCC_MODE_TURBO];
            }
        }
        else if(L_asserted_count < PWR_SETTLED_TICKS)
        {
            g_amec->proc[0].pwr_votes.conn_oc_vote = G_sysConfigData.sys_mode_freq.table[OCC_MODE_NOMINAL];
            L_asserted_count++;

            //Log an informational error
            TRAC_ERR("Connector overcurrent pins still asserted. Count=%i.",L_asserted_count);

            /* @
             * @errortype
             * @moduleid    AMEC_PCAP_CONN_OC_CONTROLLER
             * @reasoncode  CONNECTOR_OC_PINS_WARNING
             * @userdata1   OC pin bitmap
             * @userdata2   APSS power measure gpio state
             * @devdesc     The connector overcurrent pins are still asserted.
             *
             */

            //TODO: ADD ACTION FLAG for manufacturing error to log it as predictive.
            if(!L_error_logged) //only log this error once
            {
                L_error_logged = TRUE;
                l_err = createErrl(
                     AMEC_PCAP_CONN_OC_CONTROLLER,       //modId
                     CONNECTOR_OC_PINS_WARNING,          //reasoncode
                     OCC_NO_EXTENDED_RC,                 //Extended reason code
                     ERRL_SEV_INFORMATIONAL,             //Severity
                     NULL,                               //Trace Buf
                     DEFAULT_TRACE_SIZE,                 //Trace Size
                     G_conn_oc_pins_bitmap,              //userdata1
                     G_apss_pwr_meas.gpio[0]             //userdata2
                     );

                commitErrl( &l_err);
            }
        }
        else //Asserted count reached or exceeded PWR_SETTLED_TICKS.
        {
            g_amec->proc[0].pwr_votes.conn_oc_vote = G_sysConfigData.sys_mode_freq.table[OCC_MODE_MIN_FREQUENCY];

            if(CURRENT_MODE() == OCC_MODE_NOMINAL)
            {
                //Log a predictive error
                TRAC_ERR("Connector overcurrent pins still asserted after max ticks. Logging error.");

                /* @
                 * @errortype
                 * @moduleid    AMEC_PCAP_CONN_OC_CONTROLLER
                 * @reasoncode  CONNECTOR_OC_PINS_FAILURE
                 * @userdata1   OC pin bitmap
                 * @userdata2   APSS power measure gpio state
                 * @devdesc     The connector overcurrent pins are asserted for too long.
                 *
                 */

                l_err = createErrl(
                        AMEC_PCAP_CONN_OC_CONTROLLER,       //modId
                        CONNECTOR_OC_PINS_FAILURE,          //reasoncode
                        OCC_NO_EXTENDED_RC,                 //Extended reason code
                        ERRL_SEV_PREDICTIVE,                //Severity
                        NULL,                               //Trace Buf
                        DEFAULT_TRACE_SIZE,                 //Trace Size
                        G_conn_oc_pins_bitmap,              //userdata1
                        G_apss_pwr_meas.gpio[0]             //userdata2
                        );

                commitErrl( &l_err);

                //Request safe mode without retries.
                //TODO: add code to request safe mode with no retries.
            }
        }
    }
}

//////////////////////////
// Function Specification
//
// Name: amec_power_control
//
// Description: Main function for power control loop.
//
// Thread: Real Time Loop
//
// End Function Specification
void amec_power_control(void)
{
    /*------------------------------------------------------------------------*/
    /*  Local Variables                                                       */
    /*------------------------------------------------------------------------*/

    /*------------------------------------------------------------------------*/
    /*  Code                                                                  */
    /*------------------------------------------------------------------------*/

    // Call amec pmax clip controller to control the Pmax_clip register setting
    // and voting box input.
    amec_pmax_clip_controller();

    // Calculate the power cap for the processor and the power capping limit
    // for nominal cores.
    amec_pcap_calc();

    // Calculate the voting box input frequency for staying with the current pcap
    amec_pcap_controller();

    // Calculate the performance preserving bounds voting box input frequency.
    amec_ppb_fmax_calc();

    // Check for connector overcurrent condition and calculate voting box input frequency.
    amec_conn_oc_controller();
}

/*----------------------------------------------------------------------------*/
/* End                                                                        */
/*----------------------------------------------------------------------------*/
OpenPOWER on IntegriCloud