From 5d974a8b40683ee80dc90aff90b16549a8079c5b Mon Sep 17 00:00:00 2001 From: Lateef Quraishi Date: Tue, 16 Aug 2016 10:38:18 -0500 Subject: Plat support for getTarget(ordinal) Change-Id: I996c7f0e02c38f9657b4cd3c37bf15d4300abd31 RTC: 157141 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/28318 Tested-by: Jenkins Server Tested-by: FSP CI Jenkins Reviewed-by: William G. Hoffa Reviewed-by: Daniel M. Crowell --- src/usr/fapi2/test/fapi2GetTargetTest.H | 120 ++++++++++++++++++++++++++++++++ 1 file changed, 120 insertions(+) create mode 100644 src/usr/fapi2/test/fapi2GetTargetTest.H (limited to 'src/usr/fapi2') diff --git a/src/usr/fapi2/test/fapi2GetTargetTest.H b/src/usr/fapi2/test/fapi2GetTargetTest.H new file mode 100644 index 000000000..7bff395bb --- /dev/null +++ b/src/usr/fapi2/test/fapi2GetTargetTest.H @@ -0,0 +1,120 @@ +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: src/usr/fapi2/test/fapi2GetTargetTest.H $ */ +/* */ +/* 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 */ +#include + + +using namespace fapi2; + + +class Fapi2GetTargetTest : public CxxTest::TestSuite +{ +public: +//****************************************************************************** +// test_fapi2GetTarget +//****************************************************************************** +void test_fapi2GetTarget() +{ + + uint8_t l_chipletNum = 0; + uint32_t l_huid = 0; + + do + { + // Get EX target of FAPI_POS (2) + Target l_tTar; + l_tTar = fapi2::getTarget(2); + + // Verify the chiplet number + l_chipletNum = l_tTar.getChipletNumber(); + FAPI_INF("test_fapi2GetTarget EX Fapi-pos: 2, Chiplet Num: %.8x", + l_chipletNum); + if (l_chipletNum != 0x11) + { + TS_FAIL("test_fapi2GetTarget: EX Wrong Chiplet Number!"); + break; + } + + // Verify HUID of EX + const TARGETING::Target * l_platTarget = + static_cast(l_tTar.get()); + l_huid = TARGETING::get_huid(l_platTarget); + FAPI_INF("test_fapi2GetTarget EX HUID: %.8x", l_huid); + if (l_huid != 0x00061002) + { + TS_FAIL("getTarget: EX HUID is Wrong"); + break; + } + + // get EX's parent and verify HUID of parent + TARGETING::Target * l_tempTargetingParent = + static_cast( + l_tTar.getParent()); + + l_huid = TARGETING::get_huid(l_tempTargetingParent); + FAPI_INF("test_fapi2GetTarget EX Parent HUID: %.8x", l_huid); + + if (l_huid != 0x00230001) + { + TS_FAIL("test_fapi2GetTarget: EX Wrong Parent HUID!"); + break; + } + + // get EX's children (cores) and verify their HUIDs + uint32_t l_exp_huids[] = {0x00071004, 0x00071005}; + uint32_t i = 0; + + std::vector > l_childCores; + l_childCores = + l_tTar.getChildren(TARGET_STATE_PRESENT); + FAPI_INF("test_fapi2GetTarget EX Number of cores: %.8x", + l_childCores.size()); + if ((l_childCores.size() < 1 ) || + (l_childCores.size() > 2 )) + { + TS_FAIL("test_fapi2GetTarget: EX Wrong number of children!"); + break; + } + for (std::vector >::iterator + l_it = l_childCores.begin(); + l_it != l_childCores.end(); + ++l_it, ++i) + { + l_huid = TARGETING::get_huid(*l_it); + FAPI_INF("test_fapi2GetTarget EX Child HUID: %.8x", l_huid); + + if (l_huid != l_exp_huids[i]) + { + TS_FAIL("test_fapi2GetTarget: EX Wrong Child HUID!"); + break; + } + } + FAPI_INF("test_fapi2GetTarget Test Complete."); + + }while(0); +} + + +}; + -- cgit v1.2.3