diff options
| author | Doug Gilbert <dgilbert@us.ibm.com> | 2013-05-21 16:49:05 -0500 |
|---|---|---|
| committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-07-10 16:21:20 -0500 |
| commit | b035c67e8f54336b31b5586f6f92ca7aba0fa130 (patch) | |
| tree | 41cca305426bd6fe43976334d3268347df6e9e8b /src/include/usr/mbox | |
| parent | 0aeba5cadc42db18dc4cb83ffc67e36d88698edd (diff) | |
| download | talos-hostboot-b035c67e8f54336b31b5586f6f92ca7aba0fa130.tar.gz talos-hostboot-b035c67e8f54336b31b5586f6f92ca7aba0fa130.zip | |
Populate hb attributes across drawers
RTC: 50866
Change-Id: Ia5cd58d7ccf90a14f391ed87943fd09cddbb040e
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/4820
Tested-by: Jenkins Server
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/mbox')
| -rw-r--r-- | src/include/usr/mbox/ipc_msg_types.H | 39 | ||||
| -rw-r--r-- | src/include/usr/mbox/ipc_reasoncodes.H | 42 | ||||
| -rw-r--r-- | src/include/usr/mbox/mbox_queues.H | 2 |
3 files changed, 83 insertions, 0 deletions
diff --git a/src/include/usr/mbox/ipc_msg_types.H b/src/include/usr/mbox/ipc_msg_types.H new file mode 100644 index 000000000..306e93d39 --- /dev/null +++ b/src/include/usr/mbox/ipc_msg_types.H @@ -0,0 +1,39 @@ +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: src/include/usr/mbox/ipc_msg_types.H $ */ +/* */ +/* IBM CONFIDENTIAL */ +/* */ +/* COPYRIGHT International Business Machines Corp. 2013 */ +/* */ +/* 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 */ +#if !defined(__IPC_MSG_TYPES_H) +#define __IPC_MSG_TYPES_H + +#include <mbox/mbox_queues.H> + +namespace IPC +{ + /** + * IPC message types + */ + enum ipc_msg_type_t + { + IPC_POPULATE_ATTRIBUTES = MBOX::FIRST_SECURE_MSG + 1, + }; + +}; // namespace IPC +#endif diff --git a/src/include/usr/mbox/ipc_reasoncodes.H b/src/include/usr/mbox/ipc_reasoncodes.H new file mode 100644 index 000000000..1758653e3 --- /dev/null +++ b/src/include/usr/mbox/ipc_reasoncodes.H @@ -0,0 +1,42 @@ +/* IBM_PROLOG_BEGIN_TAG */ +/* This is an automatically generated prolog. */ +/* */ +/* $Source: src/include/usr/mbox/ipc_reasoncodes.H $ */ +/* */ +/* IBM CONFIDENTIAL */ +/* */ +/* COPYRIGHT International Business Machines Corp. 2013 */ +/* */ +/* 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 __IPC_REASONCODES_H +#define __IPC_REASONCODES_H + +#include <hbotcompid.H> + +namespace IPC +{ + enum IPCModuleId + { + MOD_IPCSP_MSGHDLR = 0x01, //IpcSp::msgHandler + }; + + enum IPCReasonCode + { + RC_INVALID_MSG_TYPE = IPC_COMP_ID | 0x01, + }; + +}; +#endif + diff --git a/src/include/usr/mbox/mbox_queues.H b/src/include/usr/mbox/mbox_queues.H index e662b22c3..3ba4e636f 100644 --- a/src/include/usr/mbox/mbox_queues.H +++ b/src/include/usr/mbox/mbox_queues.H @@ -48,6 +48,8 @@ namespace MBOX HB_HWPF_ATTR_MSGQ = 6, // HWPF Attribute override/sync HB_TRACE_MSGQ = 7, HB_LID_MSGQ = 8, //For transferring LIDs from FSP. + HB_IPC_MSGQ = 9, //For inter-drawer HB messages + HB_POP_ATTR_MSGQ = 10, // populate Attribute response // Add HB mbox msg queue ids (services) before this line HB_LAST_VALID_MSGQ, // end of valid HB mbox msgQ ids |

