Skip to content

Commit

Permalink
PRD: MNFG thresholds for L2/L3 cache/directory CEs
Browse files Browse the repository at this point in the history
Change-Id: Iefa257709d9689b39ef730bae38cdcbadac0c267
CQ: SW379976
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/36432
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Brian J. Stegmiller <bjs@us.ibm.com>
Reviewed-by: Caleb N. Palmer <cnpalmer@us.ibm.com>
Reviewed-by: Benjamin J. Weisenbeck <bweisenb@us.ibm.com>
Reviewed-by: Zane C. Shelley <zshelle@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/36518
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
  • Loading branch information
zane131 authored and dcrowell77 committed Feb 17, 2017
1 parent e27d215 commit 005bc0c
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/usr/diag/prdf/common/plat/p9/p9_ex.rule
Expand Up @@ -281,7 +281,7 @@ group gL2FIR filter singlebit, cs_root_cause
/** L2FIR[6]
* L2 directory read CE
*/
(rL2FIR, bit(6)) ? self_th_32perDay;
(rL2FIR, bit(6)) ? l2_dir_ce;

/** L2FIR[7]
* L2 directory read UE
Expand Down Expand Up @@ -648,7 +648,7 @@ group gL3FIR filter singlebit, cs_root_cause
/** L3FIR[13]
* L3 DIR read CE
*/
(rL3FIR, bit(13)) ? self_th_32perDay;
(rL3FIR, bit(13)) ? l3_dir_ce;

/** L3FIR[14]
* L3 Dir read UE
Expand Down
18 changes: 16 additions & 2 deletions src/usr/diag/prdf/common/plat/p9/p9_ex_actions.rule
Expand Up @@ -5,7 +5,7 @@
#
# OpenPOWER HostBoot Project
#
# Contributors Listed Below - COPYRIGHT 2016
# Contributors Listed Below - COPYRIGHT 2016,2017
# [+] International Business Machines Corp.
#
#
Expand Down Expand Up @@ -35,16 +35,30 @@ actionclass l3_cache_ue
TBDDefaultCallout;
};

actionclass l3_dir_ce
{
calloutSelfHigh;
threshold( field(32 / day), mfg_file(ATTR_MNFG_TH_P8EX_L3_DIR_CES) );
};

actionclass l2_cache_ce
{
TBDDefaultCallout;
calloutSelfHigh;
threshold( field(32 / day), mfg_file(ATTR_MNFG_TH_P8EX_L2_CACHE_CES) );
# funccall("L2CE"); TODO: RTC 152593
};

actionclass l2_cache_ue
{
TBDDefaultCallout;
};

actionclass l2_dir_ce
{
calloutSelfHigh;
threshold( field(32 / day), mfg_file(ATTR_MNFG_TH_P8EX_L2_DIR_CES) );
};

actionclass l2_power_bus_ce
{
TBDDefaultCallout;
Expand Down

0 comments on commit 005bc0c

Please sign in to comment.