diff options
author | Doug Gilbert <dgilbert@us.ibm.com> | 2013-04-25 14:59:02 -0500 |
---|---|---|
committer | A. Patrick Williams III <iawillia@us.ibm.com> | 2013-05-06 16:48:19 -0500 |
commit | c116c22646a96197c7e2b2ed948c6221a55c3427 (patch) | |
tree | 11d7eb552486dd1dd0a0524d19a177e7a5619944 /src/include/usr/mbox | |
parent | 3854f61413963ec73fa420ced2740f6e0d80978e (diff) | |
download | talos-hostboot-c116c22646a96197c7e2b2ed948c6221a55c3427.tar.gz talos-hostboot-c116c22646a96197c7e2b2ed948c6221a55c3427.zip |
Send response to FSP mailbox for unclaimed or invalid messages
RTC: 47595
Change-Id: If8947b78fed4316209702fa72080ba47137d3463
Reviewed-on: http://gfw160.austin.ibm.com:8080/gerrit/4307
Tested-by: Jenkins Server
Reviewed-by: ADAM R. MUHLE <armuhle@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Reviewed-by: A. Patrick Williams III <iawillia@us.ibm.com>
Diffstat (limited to 'src/include/usr/mbox')
-rw-r--r-- | src/include/usr/mbox/mbox_queues.H | 4 | ||||
-rw-r--r-- | src/include/usr/mbox/mbox_reasoncodes.H | 2 |
2 files changed, 5 insertions, 1 deletions
diff --git a/src/include/usr/mbox/mbox_queues.H b/src/include/usr/mbox/mbox_queues.H index 1ebfc93d4..e662b22c3 100644 --- a/src/include/usr/mbox/mbox_queues.H +++ b/src/include/usr/mbox/mbox_queues.H @@ -48,6 +48,10 @@ namespace MBOX HB_HWPF_ATTR_MSGQ = 6, // HWPF Attribute override/sync HB_TRACE_MSGQ = 7, HB_LID_MSGQ = 8, //For transferring LIDs from FSP. + + // Add HB mbox msg queue ids (services) before this line + HB_LAST_VALID_MSGQ, // end of valid HB mbox msgQ ids + HB_TEST_MSGQ = 0x7FFFFFFF, // FSP mailboxes diff --git a/src/include/usr/mbox/mbox_reasoncodes.H b/src/include/usr/mbox/mbox_reasoncodes.H index 09cf1bfd4..424b0ad13 100644 --- a/src/include/usr/mbox/mbox_reasoncodes.H +++ b/src/include/usr/mbox/mbox_reasoncodes.H @@ -39,7 +39,7 @@ namespace MBOX MOD_MBOXSRV_FSP_MSG = 0x07, // MailboxSp::handle_hbmbox_msg MOD_MBOXSRV_SENDMSG = 0x08, // MailboxSp::send_msg MOD_MBOXSRV_INIT = 0x09, // MailboxSp::_init - MOD_MBOXSRC_UNCLAIMED = 0x0A, // MailboxSp::handleUnclaimed + MOD_MBOXSRC_UNCLAIMED = 0x0A, // MailboxSp::invalidMsgResponder }; enum MBOXReasonCode |