diff options
author | Yue Du <daviddu@us.ibm.com> | 2017-10-27 21:20:04 -0500 |
---|---|---|
committer | William G. Hoffa <wghoffa@us.ibm.com> | 2017-11-02 12:23:10 -0400 |
commit | cfcd66d8907e798189e1dd8ff8c5f1fe7e518a68 (patch) | |
tree | bb5ba5db2b7f4a38eab39ed1b2fb9b68d5deb990 /src/import/chips/p9 | |
parent | 5099a01fc800c06fedb85778848f461967796ec9 (diff) | |
download | talos-hostboot-cfcd66d8907e798189e1dd8ff8c5f1fe7e518a68.tar.gz talos-hostboot-cfcd66d8907e798189e1dd8ff8c5f1fe7e518a68.zip |
STOP: Fix FF_BYPASS in sgpe_init
Change-Id: I71acf1cabb8039ff319ca6a1f64d6205057972e4
CQ: SW406589
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/48965
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Hostboot CI <hostboot-ci+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Michael S. Floyd <mfloyd@us.ibm.com>
Reviewed-by: Juan R. Medina <jrmedina@us.ibm.com>
Reviewed-by: Gregory S. Still <stillgs@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/48966
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>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Diffstat (limited to 'src/import/chips/p9')
-rw-r--r-- | src/import/chips/p9/procedures/hwp/pm/p9_pm_stop_gpe_init.C | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/src/import/chips/p9/procedures/hwp/pm/p9_pm_stop_gpe_init.C b/src/import/chips/p9/procedures/hwp/pm/p9_pm_stop_gpe_init.C index f62ccb99c..a04a60720 100644 --- a/src/import/chips/p9/procedures/hwp/pm/p9_pm_stop_gpe_init.C +++ b/src/import/chips/p9/procedures/hwp/pm/p9_pm_stop_gpe_init.C @@ -266,28 +266,6 @@ fapi2::ReturnCode p9_pm_stop_gpe_init( .set_MODE(p9pm::PM_RESET), "PBA setup failed"); - // Initialize DPLL Mode and Slew Rate (Done once for runtime STOPs) - // Hostboot Master is done in istep4 hwp prior to this - uint8_t l_quad_number = 0; - fapi2::buffer<uint64_t> l_data64 = 0; - - auto l_functional_quad_vector = - i_target.getChildren<fapi2::TARGET_TYPE_EQ> - (fapi2::TARGET_STATE_FUNCTIONAL); - - for(auto l_chplt_trgt : l_functional_quad_vector) - { - FAPI_TRY(FAPI_ATTR_GET(fapi2::ATTR_CHIP_UNIT_POS, - l_chplt_trgt, - l_quad_number), - "ERROR: Failed to get the position of the QUAD:0x%08X", - l_chplt_trgt); - FAPI_DBG("QUAD number = %d", l_quad_number); - l_data64.flush<0>().setBit<2>().insertFromRight<6, 10>(0x01); - FAPI_TRY(putScom(l_chplt_trgt, EQ_QPPM_DPLL_CTRL_OR, l_data64), - "ERROR: Failed to assert DPLL in mode 1 and set slew rate to 1"); - } - uint8_t l_ivrm_attrval = 0; uint8_t l_vdm_attrval = 0; |