summaryrefslogtreecommitdiffstats
path: root/src/import/chips/p9
diff options
context:
space:
mode:
authorSachin Gupta <sgupta2m@in.ibm.com>2017-08-08 07:59:57 -0500
committerDaniel M. Crowell <dcrowell@us.ibm.com>2017-08-09 15:28:53 -0400
commitb9800ead611cce2f9ab08f893c9782f591bb4539 (patch)
treebdd7a294d502efca675ab86057a9f61d5bf76162 /src/import/chips/p9
parent776d1086a7ed224c482d2da3c49b2c597b8776ab (diff)
downloadtalos-hostboot-b9800ead611cce2f9ab08f893c9782f591bb4539.tar.gz
talos-hostboot-b9800ead611cce2f9ab08f893c9782f591bb4539.zip
Support for async bit
Change-Id: I1631b682b2bd39f2c2525089e11f1c1e68f1e5f3 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/44336 Reviewed-by: Martin Gloff <mgloff@us.ibm.com> Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com> Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com> Reviewed-by: RAJA DAS <rajadas2@in.ibm.com> Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com> Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/44341 Reviewed-by: Hostboot Team <hostboot@us.ibm.com> Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com> Tested-by: Jenkins OP HW <op-hw-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>
Diffstat (limited to 'src/import/chips/p9')
-rw-r--r--src/import/chips/p9/procedures/hwp/sbe/p9_sbe_ext_defs.H6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/import/chips/p9/procedures/hwp/sbe/p9_sbe_ext_defs.H b/src/import/chips/p9/procedures/hwp/sbe/p9_sbe_ext_defs.H
index 3dca57233..ec729cdd2 100644
--- a/src/import/chips/p9/procedures/hwp/sbe/p9_sbe_ext_defs.H
+++ b/src/import/chips/p9/procedures/hwp/sbe/p9_sbe_ext_defs.H
@@ -36,7 +36,8 @@ typedef union sbeMsgReg
{
#ifdef _BIG_ENDIAN
uint32_t sbeBooted : 1; ///< SBE control loop initialized
- uint32_t reserved1 : 3; ///< Reserved
+ uint32_t asyncFFDC : 1; // < async ffdc present on sbe
+ uint32_t reserved1 : 2; ///< Reserved
uint32_t prevState : 4; ///< Previous SBE state
uint32_t currState : 4; ///< Current SBE state
uint32_t majorStep : 8; ///< Last major istep executed by the SBE
@@ -48,7 +49,8 @@ typedef union sbeMsgReg
uint32_t majorStep : 8; ///< Last major istep executed by the SBE
uint32_t currState : 4; ///< Current SBE state
uint32_t prevState : 4; ///< Previous SBE state
- uint32_t reserved1 : 3; ///< Reserved
+ uint32_t reserved1 : 2; ///< Reserved
+ uint32_t asyncFFDC : 1; // < async ffdc present on sbe
uint32_t sbeBooted : 1; ///< SBE control loop initialized
#endif
};
OpenPOWER on IntegriCloud