diff options
author | Matt Derksen <v2cibmd@us.ibm.com> | 2016-04-26 17:07:04 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2016-04-27 18:04:13 -0400 |
commit | 4e41dc1eb238e65fcb06a260a7e5c1b172eae120 (patch) | |
tree | 1725b352b1ba11ddf894c68d0836c1278ab105e6 /src/usr/fapi2 | |
parent | 74c10a07e91911c40c5189abbca1836f927ff035 (diff) | |
download | talos-hostboot-4e41dc1eb238e65fcb06a260a7e5c1b172eae120.tar.gz talos-hostboot-4e41dc1eb238e65fcb06a260a7e5c1b172eae120.zip |
Mark fapi2::modifyRing() for future story.
Change-Id: Ie5fc859c6b59778af572bbb4aab55c965edb4e76
RTC:126630
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/23703
Tested-by: Jenkins Server
Tested-by: FSP CI Jenkins
Reviewed-by: Martin Gloff <mgloff@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/fapi2')
-rw-r--r-- | src/usr/fapi2/plat_hw_access.C | 5 | ||||
-rw-r--r-- | src/usr/fapi2/test/fapi2HwAccessTest.H | 3 |
2 files changed, 7 insertions, 1 deletions
diff --git a/src/usr/fapi2/plat_hw_access.C b/src/usr/fapi2/plat_hw_access.C index 07e4c2a7c..25aacba25 100644 --- a/src/usr/fapi2/plat_hw_access.C +++ b/src/usr/fapi2/plat_hw_access.C @@ -734,6 +734,11 @@ ReturnCode platModifyRing(const Target<TARGET_TYPE_ALL>& i_target, const RingMode i_ringMode) { FAPI_DBG(ENTER_MRK "platModifyRing"); + + // TODO RTC:152489 - story to finish this modifyRing + FAPI_ERR("platModifyRing: not supported yet"); + assert(0,"platModifyRing not supported yet."); + ReturnCode l_rc; errlHndl_t l_err = NULL; variable_buffer l_current_data(i_data); diff --git a/src/usr/fapi2/test/fapi2HwAccessTest.H b/src/usr/fapi2/test/fapi2HwAccessTest.H index 8d7422f7f..8241c0cd3 100644 --- a/src/usr/fapi2/test/fapi2HwAccessTest.H +++ b/src/usr/fapi2/test/fapi2HwAccessTest.H @@ -169,6 +169,8 @@ void test_fapi2HwAccess() TS_FAIL("No error from p9_ringtest_getring_fail !!"); numFails++; } + +#if 0 // TODO-RTC:151428 - need simics support for these to pass numTests++; FAPI_INVOKE_HWP(l_errl, p9_ringtest_modring_fail, fapi2_procTarget); if(l_errl != NULL) @@ -181,7 +183,6 @@ void test_fapi2HwAccess() numFails++; } -#if 0 // TODO-RTC:151428 - need simics support for these to pass numTests++; FAPI_INVOKE_HWP(l_errl, p9_ringtest_getring_pass, fapi2_procTarget); if (l_errl) |