/* IBM_PROLOG_BEGIN_TAG */ /* This is an automatically generated prolog. */ /* */ /* $Source: src/include/usr/targeting/common/targreasoncodes.H $ */ /* */ /* OpenPOWER HostBoot Project */ /* */ /* COPYRIGHT International Business Machines Corp. 2011,2014 */ /* */ /* 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 */ #ifndef __TARGETING_COMMON_TARGREASONCODES_H #define __TARGETING_COMMON_TARGREASONCODES_H /** * @file targeting/common/targetreasoncodes.H * * @brief Provides reason codes for various targeting errors */ #include namespace TARGETING { enum TargetingModuleId { TARG_MOD_TEST = 0x01, TARG_MOD_ATTRRP = 0x02, TARG_MOD_ATTR_SYNC = 0x03, TARG_RT_GET_RT_TARGET = 0x04, TARG_RT_GET_HB_TARGET = 0x05, }; enum TargetingReasonCode { TARG_RC_TEST_TARGET_FFDC = TARG_COMP_ID | 0x01, TARG_RC_BAD_EYECATCH = TARG_COMP_ID | 0x02, TARG_RC_MM_BLOCK_FAIL = TARG_COMP_ID | 0x03, TARG_RC_MM_PERM_FAIL = TARG_COMP_ID | 0x04, TARG_RC_ATTR_MSG_FAIL = TARG_COMP_ID | 0x05, TARG_RC_UNHANDLED_ATTR_SEC_TYPE = TARG_COMP_ID | 0x06, TARG_RC_ATTR_SYNC_TO_FSP_FAIL = TARG_COMP_ID | 0x07, TARG_RC_ATTR_SYNC_REQUEST_TO_HB_FAIL = TARG_COMP_ID | 0x08, TARG_RC_ATTR_SYNC_TO_HB_FAIL = TARG_COMP_ID | 0x09, TARG_RT_UNIT_TARGET_NOT_FOUND = TARG_COMP_ID | 0x0a, TARG_RT_NO_PROC_TARGET = TARG_COMP_ID | 0x0b, TARG_RT_TARGET_TYPE_NOT_SUPPORTED = TARG_COMP_ID | 0x0c, }; }; // End TARGETING namespace #endif // __TARGETING_COMMON_TARGREASONCODES_H