diff options
| author | Greg Still <stillgs@us.ibm.com> | 2017-08-17 15:51:15 -0500 |
|---|---|---|
| committer | Joshua Hunsberger <jahunsbe@us.ibm.com> | 2017-10-23 19:12:39 -0500 |
| commit | 4753e30293749e8a695a5a6bb563ce3863fd42d8 (patch) | |
| tree | d5309acd64a45dc270354831d3b53ee36095c556 | |
| parent | 64cbd70d6ad902725648d5b7fa2de9e5a5d805dc (diff) | |
| download | talos-hcode-4753e30293749e8a695a5a6bb563ce3863fd42d8.tar.gz talos-hcode-4753e30293749e8a695a5a6bb563ce3863fd42d8.zip | |
PM (Cronus): Add processor id for errors from p9_activate_stop15_cores
- reformatted error output for readability
- removed FAPI_ASSERT FFDC as these are not useful in Cronus; moved the FFDC
to printfs before the ASSERT
- Added isHalted() to ppe_utils
- added SSH and better SGPE oriented register FFDC
- removed extra setBit to core_sb buffer
Change-Id: Ie23f294b843b15a78b8d3ee036310631c0595904
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/44758
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Dev-Ready: Gregory S. Still <stillgs@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: RANGANATHPRASAD G. BRAHMASAMUDRA <prasadbgr@in.ibm.com>
Reviewed-by: Juan R. Medina <jrmedina@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
| -rw-r--r-- | import/chips/p9/procedures/hwp/lib/p9_ppe_utils.C | 20 | ||||
| -rw-r--r-- | import/chips/p9/procedures/hwp/lib/p9_ppe_utils.H | 13 |
2 files changed, 33 insertions, 0 deletions
diff --git a/import/chips/p9/procedures/hwp/lib/p9_ppe_utils.C b/import/chips/p9/procedures/hwp/lib/p9_ppe_utils.C index c85f441f..ebcbc7c5 100644 --- a/import/chips/p9/procedures/hwp/lib/p9_ppe_utils.C +++ b/import/chips/p9/procedures/hwp/lib/p9_ppe_utils.C @@ -641,6 +641,26 @@ fapi_try_exit: //----------------------------------------------------------------------------- +fapi2::ReturnCode ppe_isHalted( + const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>& i_target, + const uint64_t i_base_address, + bool* o_halted) +{ + fapi2::buffer<uint64_t> l_data64; + + FAPI_TRY(getScom ( i_target, + i_base_address + PPE_XIRAMDBG, + l_data64 ), + "Failed reading XIRAMDBG register!" ); + + *o_halted = l_data64.getBit<0>(); + +fapi_try_exit: + return fapi2::current_err; +} + +//----------------------------------------------------------------------------- + #ifndef __HOSTBOOT_MODULE fapi2::ReturnCode scom_regs_populate_name( diff --git a/import/chips/p9/procedures/hwp/lib/p9_ppe_utils.H b/import/chips/p9/procedures/hwp/lib/p9_ppe_utils.H index ddd2973e..8a6f68db 100644 --- a/import/chips/p9/procedures/hwp/lib/p9_ppe_utils.H +++ b/import/chips/p9/procedures/hwp/lib/p9_ppe_utils.H @@ -491,6 +491,19 @@ fapi2::ReturnCode ppe_write_iar( const uint64_t i_base_address, const uint64_t i_address ); + +///-------------------------------------------------------------------------------------- +/// @brief Determine if the PPE is halted +/// @param[in] i_target target +/// @param[in] i_base_address base SCOM address of the PPE +/// @param[out] o_halted boolean true if halted; false otherwise +/// @return fapi2::ReturnCode +///-------------------------------------------------------------------------------------- +fapi2::ReturnCode ppe_isHalted( + const fapi2::Target<fapi2::TARGET_TYPE_PROC_CHIP>& i_target, + const uint64_t i_base_address, + bool* o_halted); + #ifndef __HOSTBOOT_MODULE ///-------------------------------------------------------------------------------------- |

