diff options
author | Joachim Fenkes <fenkes@de.ibm.com> | 2017-06-01 14:36:48 +0200 |
---|---|---|
committer | Dean Sanner <dsanner@us.ibm.com> | 2017-07-10 22:47:08 -0400 |
commit | 17880642bd028de57fa58563eb1bd4330b7a9eb6 (patch) | |
tree | 01f0eb0159890357cf07eb84a73f635cf5bd810a /src/import | |
parent | 112c9c7b6e456afca43454ae95cabb49bb37ece7 (diff) | |
download | talos-hostboot-17880642bd028de57fa58563eb1bd4330b7a9eb6.tar.gz talos-hostboot-17880642bd028de57fa58563eb1bd4330b7a9eb6.zip |
p9_mem_pll_reset: Level 3
Use the error class from the SBE common module instead of defining
our own.
Change-Id: Ie8ad617aa5ceaec1d98e667e66fdfedd30166bd5
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/41598
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Joseph J. McGill <jmcgill@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Reviewed-by: Joachim Fenkes <fenkes@de.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/41602
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Reviewed-by: Dean Sanner <dsanner@us.ibm.com>
Tested-by: Dean Sanner <dsanner@us.ibm.com>
Diffstat (limited to 'src/import')
-rw-r--r-- | src/import/chips/p9/procedures/hwp/perv/p9_mem_pll_reset.C | 10 | ||||
-rwxr-xr-x | src/import/chips/p9/procedures/xml/error_info/p9_mem_pll_reset_errors.xml | 37 |
2 files changed, 5 insertions, 42 deletions
diff --git a/src/import/chips/p9/procedures/hwp/perv/p9_mem_pll_reset.C b/src/import/chips/p9/procedures/hwp/perv/p9_mem_pll_reset.C index 43d1f471c..1062b6a9d 100644 --- a/src/import/chips/p9/procedures/hwp/perv/p9_mem_pll_reset.C +++ b/src/import/chips/p9/procedures/hwp/perv/p9_mem_pll_reset.C @@ -5,7 +5,7 @@ /* */ /* OpenPOWER HostBoot Project */ /* */ -/* Contributors Listed Below - COPYRIGHT 2016 */ +/* Contributors Listed Below - COPYRIGHT 2016,2017 */ /* [+] International Business Machines Corp. */ /* */ /* */ @@ -31,7 +31,7 @@ // *HWP HW Backup Owner : Srinivas V Naga <srinivan@in.ibm.com> // *HWP FW Owner : Sunil Kumar <skumar8j@in.ibm.com> // *HWP Team : Perv -// *HWP Level : 2 +// *HWP Level : 3 // *HWP Consumed by : HB //------------------------------------------------------------------------------ @@ -118,10 +118,10 @@ p9_mem_pll_reset_scan0_bndy(const fapi2::Target<fapi2::TARGET_TYPE_PERV>& i_targ } FAPI_ASSERT(l_timeout > 0, - fapi2::P9_MEM_PLL_RESET_SCAN0_DONE_POLL_THRESHOLD_ERR() - .set_TARGET(i_target) + fapi2::SBE_SCAN0_DONE_POLL_THRESHOLD_ERR() + .set_TARGET_CHIPLET(i_target) .set_PERV_CPLT_STAT0(l_cplt_stat0) - .set_LOOP_COUNT(l_timeout) + .set_LOOP_COUNT(P9_OPCG_DONE_SCAN0_POLL_COUNT) .set_HW_DELAY(P9_OPCG_DONE_SCAN0_HW_NS_DELAY), "Timeout polling for OPCG_DONE for scan0 flush"); diff --git a/src/import/chips/p9/procedures/xml/error_info/p9_mem_pll_reset_errors.xml b/src/import/chips/p9/procedures/xml/error_info/p9_mem_pll_reset_errors.xml deleted file mode 100755 index a2537b494..000000000 --- a/src/import/chips/p9/procedures/xml/error_info/p9_mem_pll_reset_errors.xml +++ /dev/null @@ -1,37 +0,0 @@ -<!-- IBM_PROLOG_BEGIN_TAG --> -<!-- This is an automatically generated prolog. --> -<!-- --> -<!-- $Source: src/import/chips/p9/procedures/xml/error_info/p9_mem_pll_reset_errors.xml $ --> -<!-- --> -<!-- OpenPOWER HostBoot Project --> -<!-- --> -<!-- Contributors Listed Below - COPYRIGHT 2016 --> -<!-- [+] International Business Machines Corp. --> -<!-- --> -<!-- --> -<!-- Licensed under the Apache License, Version 2.0 (the "License"); --> -<!-- you may not use this file except in compliance with the License. --> -<!-- You may obtain a copy of the License at --> -<!-- --> -<!-- http://www.apache.org/licenses/LICENSE-2.0 --> -<!-- --> -<!-- Unless required by applicable law or agreed to in writing, software --> -<!-- distributed under the License is distributed on an "AS IS" BASIS, --> -<!-- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or --> -<!-- implied. See the License for the specific language governing --> -<!-- permissions and limitations under the License. --> -<!-- --> -<!-- IBM_PROLOG_END_TAG --> -<!-- Halt codes for p9_mem_pll_reset --> -<hwpErrors> - <!-- ******************************************************************** --> - <hwpError> - <rc>RC_P9_MEM_PLL_RESET_SCAN0_DONE_POLL_THRESHOLD_ERR</rc> - <description>Timeout polling for OPCG_DONE for scan0 flush</description> - <ffdc>TARGET</ffdc> - <ffdc>PERV_CPLT_STAT0</ffdc> - <ffdc>LOOP_COUNT</ffdc> - <ffdc>HW_DELAY</ffdc> - </hwpError> - <!-- ******************************************************************** --> -</hwpErrors> |