summaryrefslogtreecommitdiffstats
path: root/src/usr/hdat/hdatipmi.C
blob: e4721be737fa24639dd3305f4764d12d19a53ff1 (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/usr/hdat/hdatipmi.C $                                     */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 2016,2017                        */
/* [+] International Business Machines Corp.                              */
/*                                                                        */
/*                                                                        */
/* Licensed under the Apache License, Version 2.0 (the "License");        */
/* you may not use this file except in compliance with the License.       */
/* You may obtain a copy of the License at                                */
/*                                                                        */
/*     http://www.apache.org/licenses/LICENSE-2.0                         */
/*                                                                        */
/* Unless required by applicable law or agreed to in writing, software    */
/* distributed under the License is distributed on an "AS IS" BASIS,      */
/* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or        */
/* implied. See the License for the specific language governing           */
/* permissions and limitations under the License.                         */
/*                                                                        */
/* IBM_PROLOG_END_TAG                                                     */
#include <sys/mm.h>
#include <sys/mmio.h>
#include <hdat/hdat.H>
#include <string.h>
#include <targeting/common/util.H>
#include <targeting/common/target.H>
#include <util/align.H>
#include "hdatipmi.H"
#include "hdatutil.H"
#include <ipmi/ipmisensor.H>

using namespace TARGETING;
using namespace SENSOR;

namespace HDAT
{
extern trace_desc_t *g_trac_hdat;

uint32_t HdatIpmi::cv_actualCnt = 0;

/*******************************************************************************
*  IPMI Constructor
*  IPMI sensor data structure is pretty simple with only 2 internal data pointers.
*  But each of those data pointers are arrays by itself.( FRU sensor and LED sensor)
*  In the constructor we initialize all the member variables including the 
*  sensor vectors as those are needed to calculate the whole struct size
*******************************************************************************/
HdatIpmi::HdatIpmi(errlHndl_t &o_errlHndl, const hdatMsAddr_t &i_msAddr):
                           HdatHdif(o_errlHndl, HDAT_IPMI_STRUCT_NAME,
                           HDAT_IPMI_DA_LAST, cv_actualCnt++, HDAT_NO_CHILD,
                           HDAT_IPMI_DATA_VERSION),iv_ipmiDataSize(0),
                           iv_ipmiData(NULL)
{
    HDAT_ENTER();
    errlHndl_t l_errl = NULL;
    do{

        // Populating the FRU sensor and LED sensor vectors.
        // Filter out all targets and loop them through to fill the FRU and LED sensor arrays.
        
        TARGETING::TargetService & l_targetService = TARGETING::targetService();
        TARGETING::PredicateHwas l_predHwas;
        l_predHwas.present(true);

        TARGETING::PredicateCTM l_procFilter(TARGETING::CLASS_CHIP,
                                             TARGETING::TYPE_PROC);

        TARGETING::PredicateCTM l_sysFilter(TARGETING::CLASS_SYS,
                                             TARGETING::TYPE_SYS);

        TARGETING::PredicateCTM l_nodeFilter(TARGETING::CLASS_ENC,
                                             TARGETING::TYPE_NODE);
        
        TARGETING::PredicateCTM l_dimmFilter(TARGETING::CLASS_LOGICAL_CARD,
                                             TARGETING::TYPE_DIMM);

        TARGETING::PredicateCTM l_occFilter(TARGETING::CLASS_UNIT,
                                             TARGETING::TYPE_OCC);

        TARGETING::PredicatePostfixExpr l_presentTargExpr;
        l_presentTargExpr.push(&l_procFilter).push(&l_sysFilter).Or().
                     push(&l_nodeFilter).Or().push(&l_dimmFilter).Or().
                     push(&l_occFilter).Or().push(&l_predHwas).And();

        TARGETING::TargetRangeFilter l_targFilter(
        l_targetService.begin(),
        l_targetService.end(),
        &l_presentTargExpr);
        
        for(; l_targFilter; ++l_targFilter)
        {
            // Create a new array entry and push it to FRU/LED sensor vector
            TARGETING::ATTR_IPMI_SENSORS_type sensors = {{0}};
            hdatIPMIFRUSensorMapEntry_t l_fruEntry;
            if((*l_targFilter)->getAttr<ATTR_CLASS>() == TARGETING::CLASS_UNIT)
            {
                const TARGETING::Target *l_parentTarget = getParentChip(*l_targFilter); 
                l_fruEntry.SLCAIndex = (l_parentTarget)->getAttr<ATTR_SLCA_INDEX>();
            }
            else
            {
                l_fruEntry.SLCAIndex = (*l_targFilter)->getAttr<ATTR_SLCA_INDEX>();
            }
            (*l_targFilter)->tryGetAttr<TARGETING::ATTR_IPMI_SENSORS>(sensors);

            for(auto & l_sensor : sensors)
            {
                l_fruEntry.IPMISensorID = l_sensor[1];
                l_fruEntry.IPMIEntityID = (uint8_t)(l_sensor[0] & 0x00FF);
                l_fruEntry.IPMISensorType = (uint8_t)(l_sensor[0] >> 8);
                // OPAL doesn't like sensor types of 0xFF, so filter them out.
                if( l_fruEntry.IPMISensorType != 0xFF )
                {
                    iv_ipmiFruEntry.push_back(l_fruEntry);
                }
            }
        }

        iv_ipmiDataSize = sizeof(hdatHDIF_t)+
                          HDAT_IPMI_PADDING +
                          ( sizeof(hdatHDIFDataHdr_t) * HDAT_IPMI_NUM_DATA_PTRS)+
                          ( sizeof(hdatIPMIFRUSensorMapEntry_t) * iv_ipmiFruEntry.size())+
                          ( sizeof(hdatIPMILEDSensorMapEntry_t) * iv_ipmiLedEntry.size())+
                          ( 2 * sizeof(uint32_t));
        
        // Copy the input phy address to this object member variable
        iv_msAddr  = ((uint64_t) i_msAddr.hi << 32) | i_msAddr.lo;

        // Allocate space and get virt addr with mem map
        void *l_virt_addr = mm_block_map (
                       reinterpret_cast<void*>(ALIGN_PAGE_DOWN(iv_msAddr)),
                       (ALIGN_PAGE(iv_ipmiDataSize)+ PAGESIZE));
        iv_ipmiData = static_cast<uint8_t*>(l_virt_addr) + 
                       (iv_msAddr - ALIGN_PAGE_DOWN(iv_msAddr));

        // initializing the space to zero
        memset(iv_ipmiData , 0x0, iv_ipmiDataSize);

    }while(0);
    o_errlHndl = l_errl;

    HDAT_EXIT();
}

/*******************************************************************************
* setIpmiData : Sets all the ipmi data in mainstore pointed by passed in virtaddr
*******************************************************************************/

void HdatIpmi::setIpmiData()
{
    HDAT_ENTER();

     // Update size and ofset of internal data pointers in HDif int dptr section.
    this->addData(HDAT_IPMI_FRU_SENSOR_MAPPING,
        (sizeof(hdatIPMIFRUSensorMapEntry_t) * iv_ipmiFruEntry.size()) + sizeof(uint32_t));
    this->addData(HDAT_IPMI_LED_SENSOR_ID_MAPPING,
        (sizeof(hdatIPMILEDSensorMapEntry_t) * iv_ipmiLedEntry.size()) + sizeof(uint32_t));

    // Set  the HDIF header data 
    iv_ipmiData = this->setHdif(iv_ipmiData);

    // Add the padding before adding int data pointers. ( Refer Spec)
    this->align();

    // Each internal data pointer has number of array elements followed by 
    // array data.Hence fill the array size first.
    
    uint32_t l_ipmiFruArraySize = iv_ipmiFruEntry.size();
    memcpy( iv_ipmiData, &l_ipmiFruArraySize, sizeof(uint32_t));
    iv_ipmiData+=sizeof(uint32_t);
    
    //  Lets fillup array data. 
    if(iv_ipmiFruEntry.size() > 0)
    {   
        memcpy(iv_ipmiData, &iv_ipmiFruEntry[0],
                sizeof(hdatIPMIFRUSensorMapEntry_t) * iv_ipmiFruEntry.size());
        iv_ipmiData += sizeof(hdatIPMIFRUSensorMapEntry_t) * iv_ipmiFruEntry.size(); 
    }
    

    uint32_t l_ipmiLedArraySize = iv_ipmiLedEntry.size();
    memcpy( iv_ipmiData, &l_ipmiLedArraySize, sizeof(uint32_t));
    iv_ipmiData+=sizeof(uint32_t);
    if(iv_ipmiLedEntry.size() > 0)
    {
        memcpy(iv_ipmiData, &iv_ipmiLedEntry[0],
                sizeof(hdatIPMILEDSensorMapEntry_t) * iv_ipmiLedEntry.size());
        iv_ipmiData += sizeof(hdatIPMILEDSensorMapEntry_t) * iv_ipmiLedEntry.size(); 
    }

    HDAT_EXIT();
}


/***********************************************************
*  getIpmiEntrySize() : returns size of whole ipmi structure
************************************************************/
uint32_t HdatIpmi::getIpmiEntrySize()
{
    return iv_ipmiDataSize;
}


/*******************************************************************************
* hdatLoadIpmi  : API called by SPiraS for ipmi data loading.
 *******************************************************************************/


errlHndl_t hdatLoadIpmi(const hdatMsAddr_t &i_msAddr,uint32_t &o_size, uint32_t &o_count)
{
    HDAT_ENTER();
    errlHndl_t l_errl;
    do{
        HdatIpmi l_hdatIpmi(l_errl,i_msAddr);
        if(l_errl != NULL)
        {
            HDAT_ERR(" error in constructor");
            break;
        }
        l_hdatIpmi.setIpmiData();
        o_size = l_hdatIpmi.getIpmiEntrySize();
        o_count= HdatIpmi::cv_actualCnt;
    }while(0);
    HDAT_EXIT();
    return(l_errl);
}



/** @brief See the prologue in hdathdatspsubsys.H
 */
HdatIpmi::~HdatIpmi()
{
    errlHndl_t o_errlHndl=NULL;

    HDAT_ENTER();

    // Free the memory allocated for filling this entry.
    int rc=0;
    rc =  mm_block_unmap(reinterpret_cast<void*>(
                        ALIGN_PAGE_DOWN((uint64_t)iv_ipmiData)));
    if( rc != 0)
    {
        /*@
        * @errortype
        * @moduleid         HDAT::MOD_HDAT_IPMI_DTOR
        * @reasoncode       HDAT::RC_DEV_MAP_FAIL
        * @devdesc          Unmap a mapped region failed
        * @custdesc         Firmware encountered an internal error.
        */
        hdatBldErrLog(o_errlHndl,
                HDAT::MOD_HDAT_IPMI_DTOR,
                RC_DEV_MAP_FAIL,
                0,0,0,0,
                ERRORLOG::ERRL_SEV_UNRECOVERABLE,
                HDAT_VERSION1,
                true);
    }

    HDAT_EXIT();
    return;
}


} // end namespace
                                  

OpenPOWER on IntegriCloud