From 6c6ededed27870f024c4e46fecfcdd2b477d30ee Mon Sep 17 00:00:00 2001 From: Doug Gilbert Date: Thu, 6 Mar 2014 14:31:57 -0600 Subject: HBRT fapi wakeup support RTC: 98665 Change-Id: Ib9e9f8f3656989975cc08a29304ba7faa25c59e4 Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/9364 Tested-by: Jenkins Server Reviewed-by: Daniel M. Crowell Reviewed-by: A. Patrick Williams III --- src/include/usr/runtime/rt_targeting.H | 70 ++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 src/include/usr/runtime/rt_targeting.H (limited to 'src/include/usr/runtime') diff --git a/src/include/usr/runtime/rt_targeting.H b/src/include/usr/runtime/rt_targeting.H new file mode 100644 index 000000000..d3e5475cd --- /dev/null +++ b/src/include/usr/runtime/rt_targeting.H @@ -0,0 +1,70 @@ +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: src/include/usr/runtime/rt_targeting.H $ */ +/* */ +/* IBM CONFIDENTIAL */ +/* */ +/* COPYRIGHT International Business Machines Corp. 2014 */ +/* */ +/* p1 */ +/* */ +/* Object Code Only (OCO) source materials */ +/* Licensed Internal Code Source Materials */ +/* IBM HostBoot Licensed Internal Code */ +/* */ +/* The source code for this program is not published or otherwise */ +/* divested of its trade secrets, irrespective of what has been */ +/* deposited with the U.S. Copyright Office. */ +/* */ +/* Origin: 30 */ +/* */ +/* IBM_PROLOG_END_TAG */ +#ifndef __RT_TARGETING_H +#define __RT_TARGETING_H + +#include + +namespace TARGETING +{ + class Target; +} + +namespace RT_TARG +{ + typedef uint64_t rtChipId_t; + + enum + { + CHIPID_NODE_SHIFT = 3, //!< CHIPID NODE is 'NNNCCC'b + MEMBUF_ID_SHIFT = 4, //!< CHIPID for MEMBUF is 'NNNCCCMMMM'b + UNIT_ID_SHIFT = 4, //!< CHIPID for CORE is 'NNNCCCPPPP'b + UNIT_ID_MASK = 0x000003ff, //!< Valid id bits w/o ID_FLAG + PROC_ID_TYPE = 0x00000000, //!< PROC chip id type + MEMBUF_ID_TYPE = 0x80000000, //!< MEMBUF chip id type + CORE_ID_TYPE = 0x40000000, //!< CORE/EX chip id type + CHIPID_ID_MASK = 0xFF000000, //!< TYPE field + }; + + + /** + * @brief Convert a TARGETING::Target to an unit ID that can be used + * in calls to Sapphire + * @param[in] The HB TARGETING::Target + * @param[out] Sapphire target id + * @return an error handle on error + */ + errlHndl_t getRtTarget(const TARGETING::Target* i_target, + rtChipId_t &o_targetId); + + /** + * @brier Convert a runtime chip_id (target) into a TARGETING::Target + * @param[in] The rt chipId + * @param[out] The TARGETING::Target pointer + * @return error log handle on error else NULL + */ + errlHndl_t getHbTarget(rtChipId_t i_rt_chip_id, + TARGETING::Target *& o_target); +}; + +#endif -- cgit v1.2.3