diff options
author | Soma BhanuTej <soma.bhanu@in.ibm.com> | 2016-06-17 06:55:23 -0400 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-08-01 11:45:32 -0400 |
commit | 1b5008fbb99f5fdcc23b2b5e3ed105201aeb1132 (patch) | |
tree | f7486058b4ca04fef34f85d88a49dde28c3f6e32 /src/import | |
parent | 5dddd1788345907e1f6dd2c544d31b84026320fb (diff) | |
download | talos-hostboot-1b5008fbb99f5fdcc23b2b5e3ed105201aeb1132.tar.gz talos-hostboot-1b5008fbb99f5fdcc23b2b5e3ed105201aeb1132.zip |
Level 1 HWP for p9_stopclocks
Removed -skip_ex0 & -skip_ex1 input arguments
Change-Id: I048a8310ff3d0d71f8378e441f90adb545892e7f
RTC:148842
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/25979
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Reviewed-by: Sunil Kumar <skumar8j@in.ibm.com>
Reviewed-by: Johannes Koesters <koesters@de.ibm.com>
Reviewed-by: Gregory S. Still <stillgs@us.ibm.com>
Reviewed-by: Jennifer A. Stofer <stofer@us.ibm.com>
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/27582
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/import')
-rw-r--r-- | src/import/chips/p9/procedures/hwp/cache/p9_hcd_cache_stopclocks.C | 3 | ||||
-rw-r--r-- | src/import/chips/p9/procedures/hwp/cache/p9_hcd_cache_stopclocks.H | 7 |
2 files changed, 3 insertions, 7 deletions
diff --git a/src/import/chips/p9/procedures/hwp/cache/p9_hcd_cache_stopclocks.C b/src/import/chips/p9/procedures/hwp/cache/p9_hcd_cache_stopclocks.C index 1215b2143..99b5c7b4e 100644 --- a/src/import/chips/p9/procedures/hwp/cache/p9_hcd_cache_stopclocks.C +++ b/src/import/chips/p9/procedures/hwp/cache/p9_hcd_cache_stopclocks.C @@ -49,8 +49,7 @@ fapi2::ReturnCode p9_hcd_cache_stopclocks( const fapi2::Target<fapi2::TARGET_TYPE_EQ>& i_target, - const p9hcd::P9_HCD_CLK_CTRL_CONSTANTS i_select_regions, - const p9hcd::P9_HCD_EX_CTRL_CONSTANTS i_select_ex) + const p9hcd::P9_HCD_CLK_CTRL_CONSTANTS i_select_regions) { FAPI_INF(">>p9_hcd_cache_stopclocks"); diff --git a/src/import/chips/p9/procedures/hwp/cache/p9_hcd_cache_stopclocks.H b/src/import/chips/p9/procedures/hwp/cache/p9_hcd_cache_stopclocks.H index 50ee08a8b..736b8b256 100644 --- a/src/import/chips/p9/procedures/hwp/cache/p9_hcd_cache_stopclocks.H +++ b/src/import/chips/p9/procedures/hwp/cache/p9_hcd_cache_stopclocks.H @@ -38,8 +38,7 @@ /// function pointer typedef definition for HWP call support typedef fapi2::ReturnCode (*p9_hcd_cache_stopclocks_FP_t) ( const fapi2::Target<fapi2::TARGET_TYPE_EQ>&, - const p9hcd::P9_HCD_CLK_CTRL_CONSTANTS, - const p9hcd::P9_HCD_EX_CTRL_CONSTANTS); + const p9hcd::P9_HCD_CLK_CTRL_CONSTANTS); extern "C" { @@ -47,13 +46,11 @@ extern "C" /// @brief Quad Clock Stop /// @param [in] i_target TARGET_TYPE_EQ target /// @param [in] i_skip_regions select clk regions to skip on stopclocks -/// @param [in] i_skip_ex select ex, odd and/or even, to skip on stopclocks /// @return FAPI2_RC_SUCCESS if success, else error code fapi2::ReturnCode p9_hcd_cache_stopclocks( const fapi2::Target<fapi2::TARGET_TYPE_EQ>& i_target, - const p9hcd::P9_HCD_CLK_CTRL_CONSTANTS i_select_regions, - const p9hcd::P9_HCD_EX_CTRL_CONSTANTS i_select_ex); + const p9hcd::P9_HCD_CLK_CTRL_CONSTANTS i_select_regions); } |