diff options
author | Richard J. Knight <rjknight@us.ibm.com> | 2014-08-13 06:44:37 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-08-15 15:28:03 -0500 |
commit | 5ba3df3d5c58090a6f92a13bbdc69e3086575e9c (patch) | |
tree | 7f8979f962df78d1edcc225122fc8248dbfea540 /src/usr/hwpf | |
parent | f72baa034dd57177816aba65e501e86b4ff218ee (diff) | |
download | talos-hostboot-5ba3df3d5c58090a6f92a13bbdc69e3086575e9c.tar.gz talos-hostboot-5ba3df3d5c58090a6f92a13bbdc69e3086575e9c.zip |
SW272428 : Need extra delay when switching steer muxes on 128G DIMMs
Change-Id: I92d0164fd0b3beff081c28615cbc08c337c78978
CQ:SW272428
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/12777
Reviewed-by: Richard J. Knight <rjknight@us.ibm.com>
Reviewed-by: Thi N. Tran <thi@us.ibm.com>
Tested-by: Thi N. Tran <thi@us.ibm.com>
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/12779
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/usr/hwpf')
-rw-r--r-- | src/usr/hwpf/hwp/utility_procedures/mss_maint_cmds.C | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/src/usr/hwpf/hwp/utility_procedures/mss_maint_cmds.C b/src/usr/hwpf/hwp/utility_procedures/mss_maint_cmds.C index dfed36209..45ef6d703 100644 --- a/src/usr/hwpf/hwp/utility_procedures/mss_maint_cmds.C +++ b/src/usr/hwpf/hwp/utility_procedures/mss_maint_cmds.C @@ -5,7 +5,9 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* COPYRIGHT International Business Machines Corp. 2013,2014 */ +/* Contributors Listed Below - COPYRIGHT 2013,2014 */ +/* [+] 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. */ @@ -20,7 +22,7 @@ /* permissions and limitations under the License. */ /* */ /* IBM_PROLOG_END_TAG */ -// $Id: mss_maint_cmds.C,v 1.35 2014/04/07 18:58:03 gollub Exp $ +// $Id: mss_maint_cmds.C,v 820.1 2014/08/08 13:53:16 gollub Exp $ //------------------------------------------------------------------------------ // Don't forget to create CVS comments when you check in your changes! //------------------------------------------------------------------------------ @@ -101,6 +103,8 @@ // | | | FAST_MIN_BW_IMPACT // | | | FAST_MED_BW_IMPACT // | | | FAST_MAX_BW_IMPACT +// 1.36 |07-AUG-14 | gollub | SW272428: Change delay from 250mSec to 2 Sec in mss_do_steering +// | | | to account for extra time needed with 128G DIMMs //------------------------------------------------------------------------------ // Includes //------------------------------------------------------------------------------ @@ -5251,8 +5255,9 @@ fapi::ReturnCode mss_MaintCmd::stopCmd() // Wait for a periodic cal. //------------------------------------------------------ -// 250 ms delay for HW mode - const uint64_t HW_MODE_DELAY = 250000000; +// const uint64_t HW_MODE_DELAY = 250000000; // 250mSec delay + const uint64_t HW_MODE_DELAY = 2000000000; // 2 Sec delay + // 200000 sim cycle delay for SIM mode const uint64_t SIM_MODE_DELAY = 200000; |