summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9/procedures/hwp/memory
diff options
context:
space:
mode:
authorMatthew Hickman <Matthew.Hickman@ibm.com>2017-09-20 15:22:51 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-09-25 22:14:06 -0400
commitb6c773715b44fc756d3e15d93ef6767f2f243ed4 (patch)
tree6683c521f2aa2d58fe08ad03541d52551cc7e13c /src/import/chips/p9/procedures/hwp/memory
parentf0e99cd1580fdd03aa0a93677d2e057d78d5e5bb (diff)
downloadtalos-hostboot-b6c773715b44fc756d3e15d93ef6767f2f243ed4.tar.gz
talos-hostboot-b6c773715b44fc756d3e15d93ef6767f2f243ed4.zip
Changed two symbol correction disable to mnfg flag DISABLE_DRAM_REPAIRS
Change-Id: I832df60249fc5de44a48cfd3185b4255f967ee34 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/46536 Reviewed-by: Marc Gollub <gollub@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: HWSV CI <hwsv-ci+hostboot@us.ibm.com> Reviewed-by: JACOB L. HARVEY <jlharvey@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: ANDRE A. MARIN <aamarin@us.ibm.com> Reviewed-by: Louis Stermole <stermole@us.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/46540 Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/import/chips/p9/procedures/hwp/memory')
-rw-r--r--src/import/chips/p9/procedures/hwp/memory/lib/mc/port.H4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/import/chips/p9/procedures/hwp/memory/lib/mc/port.H b/src/import/chips/p9/procedures/hwp/memory/lib/mc/port.H
index bcea1e36d..876a83909 100644
--- a/src/import/chips/p9/procedures/hwp/memory/lib/mc/port.H
+++ b/src/import/chips/p9/procedures/hwp/memory/lib/mc/port.H
@@ -385,9 +385,9 @@ fapi2::ReturnCode setup_read_pointer_delay (const fapi2::Target<T>& i_target)
FAPI_TRY( mss::read_recr_register(i_target, l_data ), "%s: Failed read_recr_register", mss::c_str(i_target));
mss::set_read_pointer_delay(l_data, mss::ON);
- // Check for manufacturing threshold and disable TCE correction
+ // Check for manufacturing disable dram repair flag to disable TCE correction
FAPI_TRY( mss::mnfg_flags(mnfg_flag), "%s: Failed mnfg_flags check", mss::c_str(i_target) );
- l_state = (mnfg_flag == fapi2::ENUM_ATTR_MNFG_FLAGS_MNFG_THRESHOLDS) ? mss::OFF : mss::ON;
+ l_state = (mnfg_flag == fapi2::ENUM_ATTR_MNFG_FLAGS_MNFG_DISABLE_DRAM_REPAIRS ) ? mss::OFF : mss::ON;
mss::set_tce_correction(l_data, l_state);
FAPI_TRY( mss::write_recr_register(i_target, l_data), "%s: Failed write_recr_register", mss::c_str(i_target));
OpenPOWER on IntegriCloud