From a264b75d64d6b6e34f4502190504362e831744a1 Mon Sep 17 00:00:00 2001 From: Zane Shelley Date: Fri, 8 Jul 2016 15:37:12 -0500 Subject: PRD: Created Targeted Diagnostics queue for P9 Change-Id: I24c145a483b8182e2dce296e74908035c42770c9 RTC: 157466 Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/26936 Reviewed-by: Caleb N. Palmer Tested-by: Jenkins Server Reviewed-by: Benjamin J. Weisenbeck Reviewed-by: Zane C. Shelley Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/27393 Tested-by: FSP CI Jenkins Reviewed-by: Daniel M. Crowell --- src/usr/diag/prdf/plat/mem/prdfMemVcm_rt.C | 77 ++++++++++++++++++++++++++++++ 1 file changed, 77 insertions(+) create mode 100644 src/usr/diag/prdf/plat/mem/prdfMemVcm_rt.C (limited to 'src/usr/diag/prdf/plat/mem/prdfMemVcm_rt.C') diff --git a/src/usr/diag/prdf/plat/mem/prdfMemVcm_rt.C b/src/usr/diag/prdf/plat/mem/prdfMemVcm_rt.C new file mode 100644 index 000000000..71fee3638 --- /dev/null +++ b/src/usr/diag/prdf/plat/mem/prdfMemVcm_rt.C @@ -0,0 +1,77 @@ +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: src/usr/diag/prdf/plat/mem/prdfMemVcm_rt.C $ */ +/* */ +/* 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 */ + +/** @file prdfMemVcm_rt.C */ + +// Platform includes +#include + +using namespace TARGETING; + +namespace PRDF +{ + +//------------------------------------------------------------------------------ + +// TODO: RTC 136126 Actual implementation of this procedure will be done later. +uint32_t VcmEvent::nextStep( STEP_CODE_DATA_STRUCT & io_sc, + bool & o_done ) +{ + #define PRDF_FUNC "[VcmEvent::nextStep] " + + uint32_t o_rc = SUCCESS; + + o_done = true; + + PRDF_ERR( PRDF_FUNC "function not implemented yet" ); + + return o_rc; + + #undef PRDF_FUNC +} + +//------------------------------------------------------------------------------ + +// TODO: RTC 157888 Actual implementation of this procedure will be done later. +uint32_t VcmEvent::nextStep( STEP_CODE_DATA_STRUCT & io_sc, + bool & o_done ) +{ + #define PRDF_FUNC "[VcmEvent::nextStep] " + + uint32_t o_rc = SUCCESS; + + o_done = true; + + PRDF_ERR( PRDF_FUNC "function not implemented yet" ); + + return o_rc; + + #undef PRDF_FUNC +} + +//------------------------------------------------------------------------------ + +} // end namespace PRDF + -- cgit v1.2.1