Skip to content

Commit

Permalink
Remove obus workaround from call_proc_chiplet_fabric_scominit
Browse files Browse the repository at this point in the history
This was a temporary workaround that needed to be removed

CMVC-Prereq: 1041146
Change-Id: I0a16bffab8ebd576ca5f21f748874a11ee90ae84
RTC: 174563
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/46094
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Stephen M. Cprek <smcprek@us.ibm.com>
Reviewed-by: Corey V. Swenson <cswenson@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
  • Loading branch information
crgeddes authored and wghoffa committed Jan 10, 2018
1 parent 6407898 commit 1e15041
Showing 1 changed file with 0 additions and 35 deletions.
35 changes: 0 additions & 35 deletions src/usr/isteps/istep08/call_proc_chiplet_fabric_scominit.C
Expand Up @@ -117,43 +117,8 @@ void* call_proc_chiplet_fabric_scominit( void *io_pArgs )
// after committing
errlCommit(l_err, HWPF_COMP_ID);
}

// @todo RTC 174563 Remove obus workaround
uint64_t l_orValue = 0xFF00000000000000;
uint64_t l_orSize = sizeof(l_orValue);
l_err = deviceWrite(l_cpu_target,
&l_orValue,
l_orSize,
DEVICE_SCOM_ADDRESS(0x05013805));
if(l_err)
{
TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,ERR_MRK
"Unable to set workaround address");
break;
}
} // end of going through all processors

// @todo RTC 174563 Remove obus workaround
// Get all OBUS targets
TARGETING::TargetHandleList l_obusTargetList;
getAllChiplets(l_obusTargetList, TYPE_OBUS);
for (const auto & l_obusTarget: l_obusTargetList)
{
uint64_t l_orValue = 0xC000000000000000;
uint64_t l_orSize = sizeof(l_orValue);
l_err = deviceWrite(l_obusTarget
,
&l_orValue,
l_orSize,
DEVICE_SCOM_ADDRESS(0x09010805));
if(l_err)
{
TRACFCOMP(ISTEPS_TRACE::g_trac_isteps_trace,ERR_MRK
"Unable to set workaround address");
break;
}
}

TRACFCOMP( ISTEPS_TRACE::g_trac_isteps_trace,
"call_proc_chiplet_fabric_scominit exit" );

Expand Down

0 comments on commit 1e15041

Please sign in to comment.