Skip to content

Commit

Permalink
Tune xbus packet_delay_limit for various systems
Browse files Browse the repository at this point in the history
For both low end and high end systems, increase the packet_delay_limit
from 11->15. Setting to 15 across the board for consistency.

Change-Id: Idcf8b81e465ff395ceff1f2f42f8484d4a95f4ab
CQ:SW449875
CQ:SW448334
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/68301
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Joseph J. McGill <jmcgill@us.ibm.com>
Reviewed-by: DANIEL C. HOWE <dchowe@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/68304
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
  • Loading branch information
Jenny Huynh authored and dcrowell77 committed Nov 9, 2018
1 parent 2dfa56b commit 0faf0e0
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
using namespace fapi2;

constexpr uint64_t literal_1 = 1;
constexpr uint64_t literal_0x0B = 0x0B;
constexpr uint64_t literal_0x0F = 0x0F;
constexpr uint64_t literal_0xF = 0xF;
constexpr uint64_t literal_0b111 = 0b111;
constexpr uint64_t literal_0x6 = 0x6;
Expand Down Expand Up @@ -69,12 +69,12 @@ fapi2::ReturnCode p9_fbc_ioe_dl_scom(const fapi2::Target<fapi2::TARGET_TYPE_XBUS
|| ((l_chip_id == 0x6) && (l_chip_ec == 0x11)) || ((l_chip_id == 0x6) && (l_chip_ec == 0x12)) || ((l_chip_id == 0x6)
&& (l_chip_ec == 0x13)) || ((l_chip_id == 0x7) && (l_chip_ec == 0x10)) )
{
l_scom_buffer.insert<11, 5, 59, uint64_t>(literal_0x0B );
l_scom_buffer.insert<11, 5, 59, uint64_t>(literal_0x0F );
}

if (((l_chip_id == 0x5) && (l_chip_ec == 0x10)) )
{
l_scom_buffer.insert<12, 4, 60, uint64_t>(literal_0x0B );
l_scom_buffer.insert<12, 4, 60, uint64_t>(literal_0x0F );
}

l_scom_buffer.insert<28, 4, 60, uint64_t>(literal_0xF );
Expand Down

0 comments on commit 0faf0e0

Please sign in to comment.