summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/procedures/hwp/accessors/p9_get_mem_vpd_keyword.H
blob: cff749fa2aa31c4bb165fcbc58bb214cc8fe2bca (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
/* IBM_PROLOG_BEGIN_TAG                                                   */
/* This is an automatically generated prolog.                             */
/*                                                                        */
/* $Source: src/import/chips/p9/procedures/hwp/accessors/p9_get_mem_vpd_keyword.H $ */
/*                                                                        */
/* OpenPOWER HostBoot Project                                             */
/*                                                                        */
/* Contributors Listed Below - COPYRIGHT 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                                                     */

///
/// @file p9_get_mem_vpd_keyword.H
/// @brief Return mem vpd keyword based on VPDInfo
///

// *HWP HWP Owner: Dan Crowell <dcrowell@us.ibm.com>
// *HWP HWP Backup: Matt Light <mklight@us.ibm.com>
// *HWP FW Owner: Dan Crowell <dcrowell@us.ibm.com>
// *HWP Team:
// *HWP Level: 3
// *HWP Consumed by: Cronus, FSP, HB

#ifndef _GET_MEM_VPD_KEYWORD_H_
#define _GET_MEM_VPD_KEYWORD_H_

#include <fapi2.H>
#include <fapi2_vpd_access.H>

namespace fapi2
{
/// vpd keyword to be read based on input parameters and MR/MT mapping.
/// For example, X0...XZ for MT or J0...JZ for MR vpd data.
/// Return as a string for convenient debug traces.
enum
{
    KEYWORD_BYTE_SIZE       = 2,
};
typedef char keywordName_t [KEYWORD_BYTE_SIZE + 1];
}

typedef fapi2::ReturnCode (*p9_get_mem_vpd_keyword_FP_t)(
    const fapi2::Target<fapi2::TARGET_TYPE_MCS>&,
    const fapi2::VPDInfo<fapi2::TARGET_TYPE_MCS>&,
    const uint8_t*,
    const size_t,
    fapi2::keywordName_t&);
extern "C"
{

    /// @brief Return VPD keyword based on MCS, VPDInfo, and MR/MT mapping
    /// The MR and MT keyword contains a header followed by a table. Each
    /// row in the table has criteria to select a vpd keyword.
    ///
    /// 0         1         2         3         4         5
    /// mmmm.mmmm.mmmm.mmmm.rrrr.rrrr.rrrr.rrrr.ffff.xxxx.dddd.dddd
    ///
    /// m...m       mcs ATTR_MEMVPD_POS position
    ///             0x8000 mcs vpd position 0 (proc 0, postion 0)
    ///             ... through ..
    ///             0x1000 mcs vpd position 3 (proc 0, postion 3)
    ///             0x0800 mcs vpd position 4 (proc 1, postion 0)
    ///             ... through ..
    ///             0x0100 mcs vpd position 7 (proc 1, position 3)
    ///             ... through ..
    ///             0x0001 mcs vpd position 15(proc 3, position 3)
    /// r...r       Dimm rank count pair
    ///             0x8000 dimm0 rank count 0, dimm1 rank count 0
    ///             0x4000 dimm0 rank count 0, dimm1 rank count 1
    ///             ... through ..
    ///             0x0002 dimm0 rank count 4, dimm1 rank count 2
    ///             0x0001 dimm0 rank count 4, dimm1 rank count 4
    /// ffff        frequency index from ATTR_MEMVPD_FREQS_MHZ
    ///             0x80 index 0
    ///             ... through ..
    ///             0x10 index 3
    //              (frequency index 4-7 reserved)
    /// dddd        second char in keyword name
    ///
    /// All the configurations for a particular keyword are 'OR'ed into the
    /// row for that keyword.
    /// Rows with all 0's do not need to be included. The last row has dddd = 0.
    /// Unsupported configurations can be mapped to dddd = 0xff.
    ///
    /// Note: this interface should not be called directly by HWPs,
    /// it is provided for platform use behind the getVPD() interface.
    ///
    /// @param[in]  i_target, the MCS
    /// @param[in]  i_vpd_info, vpd criteria
    /// @param[in]  i_pMapping, MR or MT keyword data
    /// @param[in]  i_mappingSize, size of i_pMapping buffer
    /// @param[out] o_keywordName, keyword with vpd
    /// @return FAPI2_RC_SUCCESS iff ok
    fapi2::ReturnCode p9_get_mem_vpd_keyword (
        const fapi2::Target<fapi2::TARGET_TYPE_MCS>& i_target,
        const fapi2::VPDInfo<fapi2::TARGET_TYPE_MCS>& i_vpd_info,
        const uint8_t*               i_pMapping,
        const size_t                 i_mappingSize,
        fapi2::keywordName_t& o_keywordName);

}

#endif
OpenPOWER on IntegriCloud