summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/procedures/hwp/pm/p9_query_core_access_state.C
blob: b30fe7acad9c8e974ac6aac4b47fd6a0c8ce3c15 (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/import/chips/p9/procedures/hwp/pm/p9_query_core_access_state.C $ */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2015,2019                        */
/* [+] International Business Machines Corp.                              */
/*                                                                        */
/*                                                                        */
/* Licensed under the Apache License, Version 2.0 (the "License");        */
/* you may not use this file except in compliance with the License.       */
/* You may obtain a copy of the License at                                */
/*                                                                        */
/*     http://www.apache.org/licenses/LICENSE-2.0                         */
/*                                                                        */
/* Unless required by applicable law or agreed to in writing, software    */
/* distributed under the License is distributed on an "AS IS" BASIS,      */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or        */
/* implied. See the License for the specific language governing           */
/* permissions and limitations under the License.                         */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
///
/// @file  p9_query_core_access_state.C
/// @brief Check the stop level for a core and set boolean scanable, scomable parameters
///
// *HWP HWP Owner: Brian Vanderpool <vanderp@us.ibm.com>
// *HWP Backup HWP Owner: Greg Still <stillgs@us.ibm.com>
// *HWP FW Owner:  Sangeetha T S <sangeet2@in.ibm.com>
// *HWP Team: PM
// *HWP Level: 2
// *HWP Consumed by: FSP:HS:SBE
///
///
///
/// @verbatim
/// High-level procedure flow:
///     - For the core target, read the Stop State History register in the PPM
///       and use the actual stop level to determine if the core has power and is being
///       clocked.
/// @endverbatim
///
//------------------------------------------------------------------------------


// ----------------------------------------------------------------------
// Includes
// ----------------------------------------------------------------------

#include "p9_query_core_access_state.H"

#define SSHSRC_STOP_GATED 0
#define NET_CTRL0_FENCED  18

// ----------------------------------------------------------------------
// Procedure Function
// ----------------------------------------------------------------------

fapi2::ReturnCode
p9_query_core_access_state(
    const fapi2::Target<fapi2::TARGET_TYPE_CORE>& i_target,
    bool& o_is_scomable,
    bool& o_is_scanable)
{

    fapi2::buffer<uint64_t> l_csshsrc, l_sisr, l_netCtrl0;
    fapi2::buffer<uint64_t> l_data64;
    uint32_t l_coreStopLevel        =   0;
    uint8_t  c_exec_hasclocks       =   0;
    uint8_t  c_pc_hasclocks         =   0;
    uint8_t  l_chpltNumber          =   0;
    o_is_scomable                   =   false;
    o_is_scanable                   =   false;
    fapi2::ReturnCode   l_tempRc    =   fapi2::FAPI2_RC_SUCCESS;


    FAPI_INF("> p9_query_core_access_state...");
    auto l_eq_target = i_target.getParent<fapi2::TARGET_TYPE_EQ>();

    //Check if quad/core is powered off; if so, indicate
    //not scomable or scannable
    FAPI_TRY(fapi2::getScom(l_eq_target, EQ_PPM_PFSNS, l_data64),
             "Error reading data from EQ_PPM_PFSNS");

    if (l_data64.getBit<EQ_PPM_PFSNS_VDD_PFETS_DISABLED_SENSE>())
    {
        goto fapi_try_exit;
    }

    FAPI_TRY(fapi2::getScom(i_target, C_PPM_PFSNS, l_data64),
             "Error reading data from C_PPM_PFSNS" );

    if (l_data64.getBit<C_PPM_PFSNS_VDD_PFETS_DISABLED_SENSE>())
    {
        goto fapi_try_exit;
    }

    o_is_scanable       =   true;

    // Get the stop state from the SSHRC in the CPPM
    FAPI_TRY(fapi2::getScom(i_target, C_PPM_SSHSRC, l_csshsrc),
             "Error reading data from CPPM SSHSRC" );

    // A unit is scomable if clocks are running
    // A unit is scannable if the unit is powered up.

    // Extract the core stop state
    if (l_csshsrc.getBit<SSHSRC_STOP_GATED>() == 1)
    {
        l_csshsrc.extractToRight<uint32_t>(l_coreStopLevel, 8, 4);
    }

    if (l_coreStopLevel == 0)
    {
        // Double check the core isn't in stop 1
        auto l_ex_target = i_target.getParent<fapi2::TARGET_TYPE_EX>();

        FAPI_TRY(fapi2::getScom(l_ex_target, EX_CME_LCL_SISR_SCOM, l_sisr),
                 "Error reading data from CME SISR register" );

        FAPI_ATTR_GET(fapi2::ATTR_CHIP_UNIT_POS, i_target, l_chpltNumber);

        uint32_t l_pos = l_chpltNumber % 2;

        if (l_pos == 0 && l_sisr.getBit<EX_CME_LCL_SISR_PM_STATE_ACTIVE_C0>())
        {
            l_sisr.extractToRight<uint32_t>(l_coreStopLevel, EX_CME_LCL_SISR_PM_STATE_C0, EX_CME_LCL_SISR_PM_STATE_C0_LEN);
        }

        if (l_pos == 1 && l_sisr.getBit<EX_CME_LCL_SISR_PM_STATE_ACTIVE_C1>())
        {
            l_sisr.extractToRight<uint32_t>(l_coreStopLevel, EX_CME_LCL_SISR_PM_STATE_C1, EX_CME_LCL_SISR_PM_STATE_C1_LEN);
        }
    }

    FAPI_INF("Core Stop State: C(%d)", l_coreStopLevel);

    // STOP1 - NAP
    //  VSU, ISU are clocked off
    if (l_coreStopLevel < 1)
    {
        o_is_scomable   =   1;
    }

    //----------------------------------------------------------------------------------
    // Read clock status and pfet_sense_disabled to confirm stop state history is accurate
    // If we trust the stop state history, this could be removed to save on code size
    //----------------------------------------------------------------------------------

    // By this time we know core is powered.
    // Get the fence bit for this core from C_NET_CTRL0
    l_tempRc    =   fapi2::getScom(i_target, C_NET_CTRL0, l_netCtrl0);

    if( l_tempRc != fapi2::FAPI2_RC_SUCCESS )
    {
        FAPI_INF( "Error reading data from C_NET_CTRL0" );
        //unable to read fence status. Set core state to Non-Scomable.
        o_is_scomable       =   false;
        goto fapi_try_exit;
    }

    if (l_netCtrl0.getBit<NET_CTRL0_FENCED>() == 0)
    {
        FAPI_DBG(" Read Core EPS clock status for core" );
        l_tempRc    =   fapi2::getScom(i_target, C_CLOCK_STAT_SL,  l_data64) ;

        if( l_tempRc != fapi2::FAPI2_RC_SUCCESS )
        {
            FAPI_ERR( "Error reading data from C_CLOCK_STAT_SL" );
            //unable to read fence status. Set core state to Non-Scomable.
            o_is_scomable       =   false;
            goto fapi_try_exit;
        }

        l_data64.extractToRight<uint8_t>(c_exec_hasclocks, 6, 1);
        l_data64.extractToRight<uint8_t>(c_pc_hasclocks,   5, 1);

        // Inverted logic in the HW
        c_exec_hasclocks = !c_exec_hasclocks;
        c_pc_hasclocks   = !c_pc_hasclocks;
    }
    else
    {
        FAPI_INF("Core Fences are up, so skipped reading the C_CLOCK_STAT_SL Register");
    }

    FAPI_INF("Core Clock Status : PC_HASCLOCKS(%d) EXEC_HASCLOCKS(%d)", c_pc_hasclocks, c_exec_hasclocks);
    FAPI_DBG("Core Is Scanable STOP_STATE(%d)  ", o_is_scanable );

    FAPI_DBG("Comparing Stop State vs Actual HW settings for scomable state");

    FAPI_DBG("Core Is Scomable STOP_STATE(%d)  CLKSTAT(%d)", o_is_scomable, (c_pc_hasclocks && c_exec_hasclocks));

    //----------------------------------------------------------------------------------
    // Compare Hardware status vs stop state status.   If there is a mismatch, the HW value overrides the stop state
    //----------------------------------------------------------------------------------

    //If we could reach this far, we know core is powered and hence scanable.

    //Let us revalidate SCOMable status

    if ( o_is_scomable != ( c_pc_hasclocks && c_exec_hasclocks ) )
    {
        FAPI_INF("Clock status didn't match stop state, overriding is_scomable status");
        o_is_scomable = (c_pc_hasclocks && c_exec_hasclocks);
    }

fapi_try_exit:
    FAPI_INF("< p9_query_core_access_state...");
    fapi2::current_err  =   fapi2::FAPI2_RC_SUCCESS;
    return fapi2::current_err;
}
OpenPOWER on IntegriCloud