diff options
Diffstat (limited to 'src/import/chips/p9/procedures')
-rw-r--r-- | src/import/chips/p9/procedures/hwp/memory/p9_mss_ddr_phy_reset.C | 3 | ||||
-rw-r--r-- | src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.C | 3 |
2 files changed, 3 insertions, 3 deletions
diff --git a/src/import/chips/p9/procedures/hwp/memory/p9_mss_ddr_phy_reset.C b/src/import/chips/p9/procedures/hwp/memory/p9_mss_ddr_phy_reset.C index c24bef524..74c95e526 100644 --- a/src/import/chips/p9/procedures/hwp/memory/p9_mss_ddr_phy_reset.C +++ b/src/import/chips/p9/procedures/hwp/memory/p9_mss_ddr_phy_reset.C @@ -64,9 +64,6 @@ extern "C" return fapi2::FAPI2_RC_SUCCESS; } - // Initialize via scoms. Could be put in to p9_mss_scominit.C - FAPI_TRY( mss::phy_scominit(i_target) ); - FAPI_TRY(mss::change_force_mclk_low(i_target, mss::HIGH), "force_mclk_low (set high) Failed rc = 0x%08X", uint64_t(fapi2::current_err) ); diff --git a/src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.C b/src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.C index 92afe7c47..a3b1a4b84 100644 --- a/src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.C +++ b/src/import/chips/p9/procedures/hwp/memory/p9_mss_scominit.C @@ -39,6 +39,7 @@ #include <p9_mcbist_scom.H> #include <p9_ddrphy_scom.H> #include <lib/utils/count_dimm.H> +#include <lib/phy/ddr_phy.H> using fapi2::TARGET_TYPE_MCA; using fapi2::TARGET_TYPE_MCBIST; @@ -100,6 +101,8 @@ fapi2::ReturnCode p9_mss_scominit( const fapi2::Target<TARGET_TYPE_MCBIST>& i_ta goto fapi_try_exit; } + // Initialize via scoms for non-static PHY items. + FAPI_TRY( mss::phy_scominit(i_target) ); fapi_try_exit: FAPI_INF("End MSS SCOM init"); |