1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
|
/* IBM_PROLOG_BEGIN_TAG */
/* This is an automatically generated prolog. */
/* */
/* $Source: src/include/usr/targeting/common/targreasoncodes.H $ */
/* */
/* OpenPOWER HostBoot Project */
/* */
/* Contributors Listed Below - COPYRIGHT 2012,2014 */
/* [+] 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 */
#ifndef __TARGETING_COMMON_TARGREASONCODES_H
#define __TARGETING_COMMON_TARGREASONCODES_H
/**
* @file targeting/common/targetreasoncodes.H
*
* @brief Provides reason codes for various targeting errors
*/
#include <targeting/adapters/types.H>
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,
TARG_GET_ATTR_OVER = 0x06,
TARG_WRITE_PERM_ATTR = 0x07,
};
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,
TARG_RC_ATTR_OVER_PNOR_SEC_SPACE_FAIL = TARG_COMP_ID | 0x0d,
TARG_RC_ATTR_OVER_ATTR_DATA_SIZE_FAIL = TARG_COMP_ID | 0x0e,
TARG_RC_WRITE_PERM_ATTR_FAIL = TARG_COMP_ID | 0x0f,
TARG_RC_WRITE_PERM_ATTR_TARGET_FAIL = TARG_COMP_ID | 0x10,
};
}; // End TARGETING namespace
#endif // __TARGETING_COMMON_TARGREASONCODES_H
|