summaryrefslogtreecommitdiffstats
path: root/src/sbefw/sbecmdmpipl.C
diff options
context:
space:
mode:
authorRaja Das <rajadas2@in.ibm.com>2017-02-07 00:33:03 -0600
committerAMIT J. TENDOLKAR <amit.tendolkar@in.ibm.com>2017-02-07 10:44:02 -0500
commitb8e6476c3bbd1543f52e4b2e68d8aa20783a09ab (patch)
tree6f18df68c42302bfb71144788c9097dafce8a970 /src/sbefw/sbecmdmpipl.C
parent0eb98b0ecc7d787bd882b93f42cb245a0ed13ab0 (diff)
downloadtalos-sbe-b8e6476c3bbd1543f52e4b2e68d8aa20783a09ab.tar.gz
talos-sbe-b8e6476c3bbd1543f52e4b2e68d8aa20783a09ab.zip
MPIPL Commits on the Istep Flow
1.In continue mpipl flow, istep 4&5 should execute only in master 2.sbe_select_ex is already there in the continue mpipl istep, so removed it from the list of isteps to execute. 3.Cleaned-up set mpipl flag from continue since it is getting set in the enter mpipl path Change-Id: Ia1b30d6e96d949ed964bef68a5358184240186e0 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/36005 Reviewed-by: Shakeeb A. Pasha B K <shakeebbk@in.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com> Reviewed-by: Sachin Gupta <sgupta2m@in.ibm.com> Reviewed-by: AMIT J. TENDOLKAR <amit.tendolkar@in.ibm.com>
Diffstat (limited to 'src/sbefw/sbecmdmpipl.C')
-rw-r--r--src/sbefw/sbecmdmpipl.C14
1 files changed, 9 insertions, 5 deletions
diff --git a/src/sbefw/sbecmdmpipl.C b/src/sbefw/sbecmdmpipl.C
index b947603f..0b3330af 100644
--- a/src/sbefw/sbecmdmpipl.C
+++ b/src/sbefw/sbecmdmpipl.C
@@ -107,7 +107,6 @@ uint32_t sbeEnterMpipl(uint8_t *i_pArg)
#undef SBE_FUNC
}
-// TODO - RTC 133367
///////////////////////////////////////////////////////////////////////
// @brief sbeContinueMpipl Sbe Continue MPIPL function
//
@@ -119,7 +118,6 @@ uint32_t sbeContinueMpipl(uint8_t *i_pArg)
SBE_ENTER(SBE_FUNC);
uint32_t l_rc = SBE_SEC_OPERATION_SUCCESSFUL;
uint32_t len = 0;
- constexpr uint32_t ISTEP_SUBSTEP_22 = 22;
ReturnCode l_fapiRc = FAPI2_RC_SUCCESS;
sbeResponseFfdc_t l_ffdc;
@@ -132,16 +130,23 @@ uint32_t sbeContinueMpipl(uint8_t *i_pArg)
l_rc = sbeUpFifoDeq_mult (len, NULL);
CHECK_SBE_RC_AND_BREAK_IF_NOT_SUCCESS(l_rc);
+ sbeRole l_sbeRole = SbeRegAccess::theSbeRegAccess().isSbeSlave() ?
+ SBE_ROLE_SLAVE : SBE_ROLE_MASTER;
// Run isteps
- const uint8_t isteps[][4] = {
+ const uint8_t isteps[][3] = {
// Major Num, Minor Start, Minor End
{SBE_ISTEP_MPIPL_CONTINUE, ISTEP_MINOR_START, MPIPL_CONTINUE_MAX_SUBSTEPS},
- {SBE_ISTEP3, ISTEP_SUBSTEP_22, ISTEP_SUBSTEP_22},
{SBE_ISTEP4, ISTEP_MINOR_START, ISTEP4_MAX_SUBSTEPS},
{SBE_ISTEP5, ISTEP_MINOR_START, ISTEP5_MAX_SUBSTEPS}};
// Loop through isteps
for( auto istep : isteps)
{
+ // This is required here to skip the major istep 4/5 in slave
+ if((SBE_ROLE_SLAVE == l_sbeRole) &&
+ (istep[0] == SBE_ISTEP4 || istep[0] == SBE_ISTEP5))
+ {
+ continue;
+ }
for(uint8_t l_minor = istep[1]; l_minor <= istep[2]; l_minor++)
{
l_fapiRc = sbeExecuteIstep(istep[0], l_minor);
@@ -178,7 +183,6 @@ uint32_t sbeContinueMpipl(uint8_t *i_pArg)
// @brief sbeStopClocks Sbe Stop Clocks function
//
// @return RC from the underlying FIFO utility
-// RTC-161679 : Stop Clocks Chip-op to handle Proc Chip Target
///////////////////////////////////////////////////////////////////////
#define SBE_IS_EX0(chipletId) \
(((chipletId - EX_TARGET_OFFSET) & 0x0002) >> 1)
OpenPOWER on IntegriCloud