summaryrefslogtreecommitdiffstats
path: root/src/usr/diag/prdf/common/plat/pegasus/CommonActions.rule
blob: f69003ea54ce050592c655291316536762b23799 (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
# IBM_PROLOG_BEGIN_TAG
# This is an automatically generated prolog.
#
# $Source: src/usr/diag/prdf/common/plat/pegasus/CommonActions.rule $
#
# IBM CONFIDENTIAL
#
# COPYRIGHT International Business Machines Corp. 2012,2014
#
# p1
#
# Object Code Only (OCO) source materials
# Licensed Internal Code Source Materials
# IBM HostBoot Licensed Internal Code
#
# The source code for this program is not published or otherwise
# divested of its trade secrets, irrespective of what has been
# deposited with the U.S. Copyright Office.
#
# Origin: 30
#
# IBM_PROLOG_END_TAG

################################################################################
# This file is intended to create a common set of actionclasses for all rule
# files. These actionclasses will be created for all rule files, regardless if
# they are actually used. Please limit this file to relatively common actions.
# Otherwise, it will cause unwanted code size and memory usage.
#
# Simply add the following line at the top the actionclass section of each rule
# file:
#
# .include "CommonActions.rule"
#
# Note that no indentation can be used for the .include keyword.
################################################################################

################################################################################
#                                Thresholds                                    #
################################################################################

# Threshold syntax:
#   threshold( field(<timebase>) [, mfg(<timebase>)|mfg_file(<mfg_theshold>)] );
#
# Timebase syntax:
#   <threshold_count> [/ [timbase_count] <sec|min|hour|day>]
#
# Note that <mfg_theshold> can be found in prdfMfgThresholds.lst
#
# Examples:
#   threshold( field( 1        ) );
#   threshold( field(32 /   day) );
#   threshold( field( 5 / 2 min) );
#   threshold( field(32 / 1 day), mfg(2 / hour) );
#   threshold( field( 2 /   min), mfg(1       ) );
#   threshold( field(32 /   day), mfg_file(P8CHIP_OFFNODE_BUS_CES) );

/** Threshold of 1 */
actionclass threshold1
{
    threshold( field(1) );
};

/** Threshold of 2 per day */
actionclass threshold2pday
{
    threshold( field(2 / day) );
};

/** Threshold of 32 per day */
actionclass threshold32pday
{
    threshold( field(32 / day) );
};

/** Threshold of 5 per hour */
actionclass threshold5phour
{
    threshold( field(5 / hour) );
};

/** Threshold of 5 per day */
actionclass threshold5pday
{
    threshold( field(5 / day) );
};

/** Threshold OnNode Bus CE */
actionclass thresholdOnNode
{
    threshold( field(32 / day), mfg_file(P8CHIP_ONNODE_BUS_CES));
};

################################################################################
#                       Threshold and Mask policy
################################################################################

/**
 * Threshold 32/day (field) and 1 (mnfg). Do not predictively callout on
 * threshold in the field, instead just mask.
 */
actionclass thresholdAndMask
{
    threshold32pday;
    funccall("ClearServiceCallFlag");
};

/** Callout self with "Threshold and Mask" policy. */
actionclass thresholdAndMask_self
{
    calloutSelfMed;
    thresholdAndMask;
};

################################################################################
#                               Special Flags                                  #
################################################################################

/** Set SUE generation point */
actionclass SUEGenerationPoint
{
    flag(UERE);
};

################################################################################
#                               Simple Callouts                                #
################################################################################

# Callout self
actionclass calloutSelfHigh { callout(MRU_HIGH); };
actionclass calloutSelfMed  { callout(MRU_MED);  };
actionclass calloutSelfMedA { callout(MRU_MEDA); };
actionclass calloutSelfLow  { callout(MRU_LOW);  };

# 2nd Level Support
actionclass callout2ndLvlMed
{ callout(procedure(NextLevelSupport_ENUM), MRU_MED); };

actionclass callout2ndLvlLow
{ callout(procedure(NextLevelSupport_ENUM), MRU_LOW); };

/** Callout the DMI bus symbolic FRU */
actionclass calloutDmiBusSymFru
{ callout(procedure(MEMBUS_ERROR_ENUM), MRU_LOW); };

################################################################################
#                           Callouts with thresholds                           #
################################################################################

actionclass calloutParentProcMedThr1
{
    callout(connected(TYPE_PROC),MRU_MED);
    threshold1;
};

actionclass calloutParentProcHighThr1
{
    callout(connected(TYPE_PROC),MRU_HIGH);
    threshold1;
};

actionclass SelfMedThr1
{
    calloutSelfMed;
    threshold1;
};

actionclass SelfHighThr1
{
    calloutSelfHigh;
    threshold1;
};

actionclass SelfMedThr1UE
{
    SelfMedThr1;
    SUEGenerationPoint;
};

actionclass SelfHighThr1UE
{
    SelfHighThr1;
    SUEGenerationPoint;
};

actionclass SelfLowLevel2MedThr1
{
    calloutSelfLow;
    callout2ndLvlMed;
    threshold1;
};

actionclass SelfMedThr32PerDay
{
    calloutSelfMed;
    threshold32pday;
};

actionclass SelfMedThr5PerHour
{
    calloutSelfMed;
    threshold5phour;
};

actionclass SelfHighThr5PerHour
{
    calloutSelfHigh;
    threshold5phour;
};

actionclass SelfHighThr32PerDay
{
    calloutSelfHigh;
    threshold32pday;
};

actionclass calloutSelfAndLevel2MedThr1
{
    calloutSelfMed;
    callout2ndLvlMed;
    threshold1;
};


/** Callout 2nd level support of afer 32 events per day, no gard */
actionclass callout2ndLvlMedThr32NoGard
{
    callout2ndLvlMed;
    threshold32pday;
    gard(NoGard);
};

/** Callout 2nd Level support on first occurrence, no gard */
actionclass callout2ndLvlMedThr1NoGard
{
    callout2ndLvlMed;
    threshold1;
    gard(NoGard);
};

/** Callout 2nd Level Medium,  set SUE generation point, no gard */
actionclass callout2ndLvlMedThr1UE_NoGard
{
    callout2ndLvlMedThr1NoGard;
    SUEGenerationPoint;
};

/** Callout 2nd Level Medium, initiate SH dump */
actionclass callout2ndLvlMedThr1dumpSh
{
    callout2ndLvlMedThr1NoGard;
    dumpSH;
};
################################################################################
#                               Dump Types                                     #
################################################################################

/** Dump SH */
actionclass dumpSH
{
    dump(DUMP_CONTENT_SH);
};

/** Dump SW */
actionclass dumpSW
{
    dump(DUMP_CONTENT_SW);
};

################################################################################
#                              Callout sec lvl support with dump               #
################################################################################

/** callout second lvl on first instance, initiaite SH dump */
actionclass callout2ndLvlDumpShNoGard
{
    callout2ndLvlMedThr1NoGard;
    dumpSH;
};

/** Callout 2nd Level and dump SW , no garding*/
actionclass callout2ndLvlDumpSwNoGard
{
    callout2ndLvlMedThr1NoGard;
    dumpSW;
};
################################################################################
#                               Default callouts                               #
################################################################################

/** Default action for an unexpected unmasked bit */
actionclass defaultMaskedError
{
    dumpSH;
    callout2ndLvlMed;
    threshold1;
};

/** Default TBD action */
actionclass TBDDefaultCallout
{
    dumpSH;
    callout2ndLvlMed;
    threshold( field(32 / day), mfg(32 / day) );
};

OpenPOWER on IntegriCloud