aboutsummaryrefslogtreecommitdiff
path: root/hw/fsp
diff options
context:
space:
mode:
authorAnanth N Mavinakayanahalli <ananth@in.ibm.com>2014-07-31 13:04:53 +0530
committerBenjamin Herrenschmidt <benh@kernel.crashing.org>2014-08-08 16:07:26 +1000
commitaa1f3190cdea6287b8c1f84644bea7e48d09d25a (patch)
tree76428e92bfc97f74ad955ac9fd6cc0b0223b8c88 /hw/fsp
parent068219597da3610e35afde3c75b0965fc3578545 (diff)
downloadskiboot-aa1f3190cdea6287b8c1f84644bea7e48d09d25a.zip
skiboot-aa1f3190cdea6287b8c1f84644bea7e48d09d25a.tar.gz
skiboot-aa1f3190cdea6287b8c1f84644bea7e48d09d25a.tar.bz2
FSP: Make mbx error messages more verbose
... helps figure out what the cause of the failure was. Signed-off-by: Ananth N Mavinakayanahalli <ananth@in.ibm.com> Acked-by: Stewart Smith <stewart@linux.vnet.ibm.com> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Diffstat (limited to 'hw/fsp')
-rw-r--r--hw/fsp/fsp.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/hw/fsp/fsp.c b/hw/fsp/fsp.c
index 75ef2a0..b87c8b3 100644
--- a/hw/fsp/fsp.c
+++ b/hw/fsp/fsp.c
@@ -1351,9 +1351,10 @@ static void fsp_handle_incoming(struct fsp *fsp)
__fsp_drop_incoming(fsp);
return;
}
-
- if (!cmdclass->busy || list_empty(&cmdclass->msgq)) {
- prerror("FSP #%d: Got orphan response !\n", fsp->index);
+
+ if (!cmdclass->busy || list_empty(&cmdclass->msgq)) {
+ prerror("FSP #%d: Got orphan response! w0 = 0x%08x w1 = 0x%08x\n",
+ fsp->index, w0, w1);
__fsp_drop_incoming(fsp);
return;
}
@@ -1364,8 +1365,8 @@ static void fsp_handle_incoming(struct fsp *fsp)
(req->word0 & 0xff) != (w0 & 0xff) ||
(req->word1 & 0xff) != (w1 & 0x7f)) {
__fsp_drop_incoming(fsp);
- prerror("FSP #%d: Response doesn't match pending msg\n",
- fsp->index);
+ prerror("FSP #%d: Response doesn't match pending msg. w0 = 0x%08x w1 = 0x%08x\n",
+ fsp->index, w0, w1);
return;
} else {
u64 resetbit = ~fsp_get_class_bit(req->word0 & 0xff);