diff options
| author | crgeddes <crgeddes@us.ibm.com> | 2017-03-28 13:31:32 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2017-04-10 13:55:44 -0400 |
| commit | ab70aa5b81d379bbab438fa9dbe09793bd6a5405 (patch) | |
| tree | c3b46f9f294191feb93de7da0b08f3f2eeedf99f /src/include | |
| parent | 3dadb3762be5dba9b74beca9b88c4c07f77d898e (diff) | |
| download | talos-hostboot-ab70aa5b81d379bbab438fa9dbe09793bd6a5405.tar.gz talos-hostboot-ab70aa5b81d379bbab438fa9dbe09793bd6a5405.zip | |
Send system configuration to all Procs, not just master
Previously there was no way to send chipOps to specific Procs,
Now that it is possible we want to send the system configuration to
all SBEs, not just the master. This way the SBE doesnt need to worry
about propagating the system config to slave SBEs
Change-Id: I471c60a294fb2e4dd43772322fb5c6c80ccdda1f
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/38544
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Martin Gloff <mgloff@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>
Reviewed-by: Prachi Gupta <pragupta@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/include')
| -rw-r--r-- | src/include/usr/sbeio/sbeioif.H | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/include/usr/sbeio/sbeioif.H b/src/include/usr/sbeio/sbeioif.H index 3c014df48..a7663807a 100644 --- a/src/include/usr/sbeio/sbeioif.H +++ b/src/include/usr/sbeio/sbeioif.H @@ -55,11 +55,13 @@ namespace SBEIO * bit 0 = proc 0 group 0 * bit 8 = proc 0 group 1 * bit 12 = proc 4 group 1 + * @param[in] i_procChip Proc you would like to send the config to * * @return errlHndl_t Error log handle on failure. * */ - errlHndl_t sendSystemConfig(const uint64_t i_systemConfig ); + errlHndl_t sendSystemConfig(const uint64_t i_systemConfig, + TARGETING::Target * i_procChip); /** * @brief Sends a PSU chipOp to quiesce the SBE |

