diff options
| author | Brian Silver <bsilver@us.ibm.com> | 2014-09-30 08:22:11 -0500 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2014-10-23 04:51:02 -0500 |
| commit | a9010ccc1130b81e45d1151bb5de9453d31c08a5 (patch) | |
| tree | ecc60da4bd3623cc97851dfa75e98293f9c77bdd /src/include/usr/ipmi/ipmi_reasoncodes.H | |
| parent | a6b67089037c83373f548749a463dfd769938b77 (diff) | |
| download | blackbird-hostboot-a9010ccc1130b81e45d1151bb5de9453d31c08a5.tar.gz blackbird-hostboot-a9010ccc1130b81e45d1151bb5de9453d31c08a5.zip | |
IPMI Block Transfer implementation
Change-Id: I8f6a590b29d9171389d10abc5b6e68f91ac94d16
RTC: 114907
Reviewed-on: http://gfw160.aus.stglabs.ibm.com:8080/gerrit/13721
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/ipmi/ipmi_reasoncodes.H')
| -rw-r--r-- | src/include/usr/ipmi/ipmi_reasoncodes.H | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/src/include/usr/ipmi/ipmi_reasoncodes.H b/src/include/usr/ipmi/ipmi_reasoncodes.H new file mode 100644 index 000000000..12a9391bc --- /dev/null +++ b/src/include/usr/ipmi/ipmi_reasoncodes.H @@ -0,0 +1,46 @@ +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: src/include/usr/ipmi/ipmi_reasoncodes.H $ */ +/* */ +/* OpenPOWER HostBoot Project */ +/* */ +/* Contributors Listed Below - COPYRIGHT 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 __IPMI_REASONCODES_H +#define __IPMI_REASONCODES_H + +#include <hbotcompid.H> + +namespace IPMI +{ + enum IPMIModuleId + { + MOD_IPMISRV_SEND = 0x01, // IPMI::send/IPMI::sendrecv + MOD_IPMISRV_REPLY = 0x02, // IPMI::respond + }; + + enum IPMIReasonCode + { + RC_INVALID_QRESPONSE = IPMI_COMP_ID | 0x01, + RC_INVALID_SENDRECV = IPMI_COMP_ID | 0x02, + RC_INVALID_SEND = IPMI_COMP_ID | 0x03, + }; +}; + +#endif |

