blob: 69312c1b94c7a5b4a3668b190cd9dbc520717d54 (
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
|
/* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: src/usr/diag/prdf/common/plat/p9/prdfP9ExDataBundle.H $ */
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2013,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 */
#ifndef _PRDFP9EXDATABUNDLE_H
#define _PRDFP9EXDATABUNDLE_H
/** @file prdfP9ExDataBundle.H
* @brief Contains the data bundle for a P9 Ex object.
*/
#include <iipSystem.h>
#include <prdfExtensibleChip.H>
#include <prdfGlobal.H>
#include <prdfPlatServices.H>
#include <prdfThresholdUtils.H>
#include <prdfLineDelete.H>
namespace PRDF
{
/**
* @brief The P9 EX data bundle.
*/
class P9ExDataBundle : public DataBundle
{
public: // functions
/**
* @brief Constructor.
* @param i_exChip The ex chip.
*/
explicit P9ExDataBundle( ExtensibleChip * i_exChip ) :
iv_L2LDCount(0), iv_L3LDCount(0), iv_prevMember(0xFFFF),
iv_exChip(i_exChip)
{
// Set up thresholds for line deletes.
iv_L2CETable = new LineDelete::PrdfCacheCETable(
ThresholdResolution::ThresholdPolicy(PlatServices::mfgMode() ? 1 : 2,
ThresholdResolution::ONE_DAY));
iv_L3CETable = new LineDelete::PrdfCacheCETable(
ThresholdResolution::ThresholdPolicy(PlatServices::mfgMode() ? 1 : 2,
ThresholdResolution::ONE_DAY));
};
/**
* @brief Destructor.
*/
~P9ExDataBundle()
{
delete iv_L2CETable;
delete iv_L3CETable;
};
// Current counts for L2 line deletes.
uint8_t iv_L2LDCount;
LineDelete::PrdfCacheCETable * iv_L2CETable;
// Current counts for L3 line deletes.
uint8_t iv_L3LDCount;
LineDelete::PrdfCacheCETable * iv_L3CETable;
// Previously-deleted member data for detecting L3 multi-bitline fails
uint16_t iv_prevMember;
Timer iv_blfTimeout;
private:
ExtensibleChip * iv_exChip; ///< This ex chip
P9ExDataBundle( const P9ExDataBundle & );
const P9ExDataBundle & operator=( const P9ExDataBundle & );
};
/**
* @brief Wrapper function for the P9ExDataBundle.
* @param i_exChip The ex chip.
* @return This ex's data bundle.
*/
inline P9ExDataBundle * getExDataBundle( ExtensibleChip * i_exChip )
{
return static_cast<P9ExDataBundle *>(i_exChip->getDataBundle());
}
} // end namespace PRDF
#endif /* _PRDFP9EXDATABUNDLE_H */
|