diff options
author | Mike Baiocchi <mbaiocch@us.ibm.com> | 2018-05-29 15:09:22 -0500 |
---|---|---|
committer | Daniel M. Crowell <dcrowell@us.ibm.com> | 2018-06-19 17:38:26 -0400 |
commit | 7617e77949d78f00bc575c82de6f2420476a5635 (patch) | |
tree | ef24b252a56fc8fcca0f0d55a99fbcfa5afbc64c /src/usr/secureboot/node_comm/node_comm.C | |
parent | 7e0d574dff8853e61634f42acbcb3604dd03cc23 (diff) | |
download | talos-hostboot-7617e77949d78f00bc575c82de6f2420476a5635.tar.gz talos-hostboot-7617e77949d78f00bc575c82de6f2420476a5635.zip |
Add procedure for istep 18's Node Communication ABUS Exchange
This commit creates a new interface that will be called in istep 18
to facilitate the exchanging of Link Mailboxes messages between nodes
acros the ABUS interface. It also does the basic procedure without
all of the final FFDC and RAS implementation that will come in
subsequent commits. All error logs are deleted to not kill any
IPLs until full functionality is tested.
Change-Id: I7391deaa37e49629cd01cfad212b64fecb9529bd
RTC:184518
CMVC-Prereq:1058895
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/60793
Reviewed-by: Nicholas E. Bofferding <bofferdn@us.ibm.com>
Reviewed-by: ILYA SMIRNOV <ismirno@us.ibm.com>
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: Daniel M. Crowell <dcrowell@us.ibm.com>
Diffstat (limited to 'src/usr/secureboot/node_comm/node_comm.C')
-rw-r--r-- | src/usr/secureboot/node_comm/node_comm.C | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/usr/secureboot/node_comm/node_comm.C b/src/usr/secureboot/node_comm/node_comm.C index cee5da939..2988fe54e 100644 --- a/src/usr/secureboot/node_comm/node_comm.C +++ b/src/usr/secureboot/node_comm/node_comm.C @@ -123,7 +123,9 @@ errlHndl_t nodeCommMapAttn(TARGETING::Target* i_pProc, if (bit_count == 0) { - TRACFCOMP(g_trac_nc,INFO_MRK"nodeCommMapAttn: no attentions found"); + TRACFCOMP(g_trac_nc,INFO_MRK"nodeCommMapAttn: no attentions found: " + "FIR data = 0x%.16llX, mask=0x%.16llX, data+mask=0x%.16llX", + fir_data, fir_mask, fir_data_with_mask); break; } else if (bit_count > 1) |