Skip to content

Commit b6c7737

Browse files
Matthickman14dcrowell77
authored andcommitted
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 <[email protected]> Tested-by: FSP CI Jenkins <[email protected]> Tested-by: Jenkins Server <[email protected]> Tested-by: HWSV CI <[email protected]> Reviewed-by: JACOB L. HARVEY <[email protected]> Tested-by: Hostboot CI <[email protected]> Reviewed-by: ANDRE A. MARIN <[email protected]> Reviewed-by: Louis Stermole <[email protected]> Reviewed-by: Jennifer A. Stofer <[email protected]> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/46540 Tested-by: Jenkins OP Build CI <[email protected]> Reviewed-by: Daniel M. Crowell <[email protected]>
1 parent f0e99cd commit b6c7737

File tree

1 file changed

+2
-2
lines changed
  • src/import/chips/p9/procedures/hwp/memory/lib/mc

1 file changed

+2
-2
lines changed

src/import/chips/p9/procedures/hwp/memory/lib/mc/port.H

+2-2
Original file line numberDiff line numberDiff line change
@@ -385,9 +385,9 @@ fapi2::ReturnCode setup_read_pointer_delay (const fapi2::Target<T>& i_target)
385385
FAPI_TRY( mss::read_recr_register(i_target, l_data ), "%s: Failed read_recr_register", mss::c_str(i_target));
386386
mss::set_read_pointer_delay(l_data, mss::ON);
387387

388-
// Check for manufacturing threshold and disable TCE correction
388+
// Check for manufacturing disable dram repair flag to disable TCE correction
389389
FAPI_TRY( mss::mnfg_flags(mnfg_flag), "%s: Failed mnfg_flags check", mss::c_str(i_target) );
390-
l_state = (mnfg_flag == fapi2::ENUM_ATTR_MNFG_FLAGS_MNFG_THRESHOLDS) ? mss::OFF : mss::ON;
390+
l_state = (mnfg_flag == fapi2::ENUM_ATTR_MNFG_FLAGS_MNFG_DISABLE_DRAM_REPAIRS ) ? mss::OFF : mss::ON;
391391
mss::set_tce_correction(l_data, l_state);
392392

393393
FAPI_TRY( mss::write_recr_register(i_target, l_data), "%s: Failed write_recr_register", mss::c_str(i_target));

0 commit comments

Comments
 (0)