diff options
author | Mark Pizzutillo <Mark.Pizzutillo@ibm.com> | 2019-12-10 14:43:04 -0500 |
---|---|---|
committer | Daniel M Crowell <dcrowell@us.ibm.com> | 2020-01-15 08:51:37 -0600 |
commit | d3c8aa5e5142087e081cbe8639af9ab740cf7a70 (patch) | |
tree | e02997f02ae308e04aff05d6884bc0402d0f5f0c /src | |
parent | 5616a5a9942de4b8c9bc249e802113708eb8201e (diff) | |
download | talos-hostboot-d3c8aa5e5142087e081cbe8639af9ab740cf7a70.tar.gz talos-hostboot-d3c8aa5e5142087e081cbe8639af9ab740cf7a70.zip |
Update *_train_check procedure errors to print status info
Change-Id: If7bfe192b461056ab219ab37165c09bc2fcb2057
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/88384
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: RYAN P KING <rpking@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Louis Stermole <stermole@us.ibm.com>
Reviewed-by: STEPHEN GLANCY <sglancy@us.ibm.com>
Dev-Ready: STEPHEN GLANCY <sglancy@us.ibm.com>
Reviewed-by: Jennifer A Stofer <stofer@us.ibm.com>
Reviewed-on: http://rchgit01.rchland.ibm.com/gerrit1/88491
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src')
-rw-r--r-- | src/import/chips/ocmb/explorer/procedures/hwp/memory/exp_omi_train_check.C | 10 | ||||
-rw-r--r-- | src/import/chips/p9a/procedures/hwp/memory/p9a_omi_train_check.C | 10 |
2 files changed, 12 insertions, 8 deletions
diff --git a/src/import/chips/ocmb/explorer/procedures/hwp/memory/exp_omi_train_check.C b/src/import/chips/ocmb/explorer/procedures/hwp/memory/exp_omi_train_check.C index 26bba128b..08b4247bf 100644 --- a/src/import/chips/ocmb/explorer/procedures/hwp/memory/exp_omi_train_check.C +++ b/src/import/chips/ocmb/explorer/procedures/hwp/memory/exp_omi_train_check.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2019 */ +/* Contributors Listed Below - COPYRIGHT 2019,2020 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -97,10 +97,12 @@ fapi2::ReturnCode exp_omi_train_check(const fapi2::Target<fapi2::TARGET_TYPE_OCM .set_DL0_TRAINING_STATUS(l_omi_training_status) .set_DL0_CONFIG1(l_dl0_config1) .set_OMI_FREQ(l_omi_freq), - "%s EXP OMI Training Failure, expected state:%d/actual state:%d", + "%s EXP OMI Training Failure, expected state:%d/actual state:%d, DL0_STATUS:0x%016llx, DL0_TRAINING_STATUS:0x%016llx", mss::c_str(i_target), STATE_MACHINE_SUCCESS, - l_state_machine_state + l_state_machine_state, + l_omi_status, + l_omi_training_status ); // Finally, make sure fw_status is good @@ -124,7 +126,7 @@ fapi2::ReturnCode exp_omi_train_check(const fapi2::Target<fapi2::TARGET_TYPE_OCM l_expected_dl0_error_hold); } - FAPI_INF("%s End exp_omi_train_check, expected state:%d/actual state:%d, DL0_STATUS:0x%016llx, DL0_TRAINING_STATUS:0x%016llx", + FAPI_DBG("%s End exp_omi_train_check, expected state:%d/actual state:%d, DL0_STATUS:0x%016llx, DL0_TRAINING_STATUS:0x%016llx", mss::c_str(i_target), STATE_MACHINE_SUCCESS, l_state_machine_state, diff --git a/src/import/chips/p9a/procedures/hwp/memory/p9a_omi_train_check.C b/src/import/chips/p9a/procedures/hwp/memory/p9a_omi_train_check.C index 9aae6b90f..f708f9ba1 100644 --- a/src/import/chips/p9a/procedures/hwp/memory/p9a_omi_train_check.C +++ b/src/import/chips/p9a/procedures/hwp/memory/p9a_omi_train_check.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2019 */ +/* Contributors Listed Below - COPYRIGHT 2019,2020 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -111,10 +111,12 @@ fapi2::ReturnCode p9a_omi_train_check( const fapi2::Target<fapi2::TARGET_TYPE_OM .set_DL0_TRAINING_STATUS(l_omi_training_status) .set_DL0_CONFIG1(l_dl0_config1) .set_OMI_FREQ(l_omi_freq), - "%s P9A OMI Training Failure, expected state:%d/actual state:%d", + "%s P9A OMI Training Failure, expected state:%d/actual state:%d, DL0_STATUS:0x%016llx, DL0_TRAINING_STATUS:0x%016llx", mss::c_str(i_target), STATE_MACHINE_SUCCESS, - l_state_machine_state + l_state_machine_state, + l_omi_status, + l_omi_training_status ); // Check errors in ERROR_HOLD until we get a proper FIR API setup @@ -140,7 +142,7 @@ fapi2::ReturnCode p9a_omi_train_check( const fapi2::Target<fapi2::TARGET_TYPE_OM l_expected_dl0_error_hold); } - FAPI_INF("%s End p9a_omi_train_check, expected state:%d/actual state:%d, DL0_STATUS:0x%016llx, DL0_TRAINING_STATUS:0x%016llx", + FAPI_DBG("%s End p9a_omi_train_check, expected state:%d/actual state:%d, DL0_STATUS:0x%016llx, DL0_TRAINING_STATUS:0x%016llx", mss::c_str(i_target), STATE_MACHINE_SUCCESS, l_state_machine_state, |