diff options
| author | Bill Hoffa <wghoffa@us.ibm.com> | 2018-06-06 13:29:17 -0500 |
|---|---|---|
| committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2018-06-28 22:43:13 -0400 |
| commit | 7bd4032abfb75ca6a9a4eb9c44ab9443c81a6198 (patch) | |
| tree | 87766c021712bbca5466c117ea0ac86c8cf238dc /src/usr/mbox | |
| parent | 8a1a0c7e98a9091c62e715b1b9c44a7f3de90b39 (diff) | |
| download | blackbird-hostboot-7bd4032abfb75ca6a9a4eb9c44ab9443c81a6198.tar.gz blackbird-hostboot-7bd4032abfb75ca6a9a4eb9c44ab9443c81a6198.zip | |
Leverage INTRP fully for SBE PSU Interrupt Handling
- Remove PSU Handling from INTRP code and instead treat PSU
interrupts like any other interrupt type
- Add msg_handler to SBE PSU Code to handle interrupts
- Add better interrupt handling to timeout path so the interrupt
condition will be cleared instead of represented continuously
- Handle shutdown message from INTRP
Change-Id: I5eafea806e147c22be235ae1c54a5ce4706aa012
RTC: 149698
CQ: SW418168
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/60049
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP Build CI <op-jenkins+hostboot@us.ibm.com>
Tested-by: Jenkins OP HW <op-hw-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: Christian R. Geddes <crgeddes@us.ibm.com>
Reviewed-by: Nicholas E. Bofferding <bofferdn@us.ibm.com>
Reviewed-by: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/mbox')
| -rw-r--r-- | src/usr/mbox/mailboxsp.C | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/usr/mbox/mailboxsp.C b/src/usr/mbox/mailboxsp.C index 777699e34..7bd1ccde5 100644 --- a/src/usr/mbox/mailboxsp.C +++ b/src/usr/mbox/mailboxsp.C @@ -1731,7 +1731,7 @@ bool MailboxSp::quiesced() if( result == true ) { - TRACFCOMP(g_trac_mbox,INFO_MRK"quiesed == true, iv_shutdown_msg[%p]", + TRACFCOMP(g_trac_mbox,INFO_MRK"quiesced == true, iv_shutdown_msg[%p]", iv_shutdown_msg); if(iv_shutdown_msg == NULL || (iv_shutdown_msg->data[1] == SHUTDOWN_STATUS_GOOD)) @@ -1794,7 +1794,7 @@ void MailboxSp::handleIPC(queue_id_t i_msg_q_id, msg_t * i_msg) msg_q_t msgq = r->second; // Only async message supported right now - // Interface already inforces this. + // Interface already enforces this. int rc = msg_send(msgq,i_msg); if(rc) |

