aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Neuling <mikey@neuling.org>2017-09-20 14:47:44 +1000
committerStewart Smith <stewart@linux.vnet.ibm.com>2017-09-20 03:15:14 -0500
commit8b4c7a3cef1a2d37856ffe884b573212500a7ac2 (patch)
tree2eecc24479021d918af84b9d2b52259704452b1e
parenta491ed439c940a08908dd54add9e5014adcc3701 (diff)
downloadskiboot-8b4c7a3cef1a2d37856ffe884b573212500a7ac2.zip
skiboot-8b4c7a3cef1a2d37856ffe884b573212500a7ac2.tar.gz
skiboot-8b4c7a3cef1a2d37856ffe884b573212500a7ac2.tar.bz2
phb4: Mask RXE_ARB: DEC Stage Valid Error
Change the inits to mask out the RXE ARB: DEC Stage Valid Error (bit 370. This has been a fatal error but should be informational only. This update will be in the next version of the phb4 workbook. Signed-off-by: Michael Neuling <mikey@neuling.org> Signed-off-by: Stewart Smith <stewart@linux.vnet.ibm.com>
-rw-r--r--hw/phb4.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/hw/phb4.c b/hw/phb4.c
index 5371949..69ae5dd 100644
--- a/hw/phb4.c
+++ b/hw/phb4.c
@@ -3587,7 +3587,7 @@ static void phb4_init_capp_errors(struct phb4 *p)
out_be64(p->regs + 0x0d30, 0xdff7ff0bf7ddfff0ull);
/* Init_86: RXE_ARB Error AIB Fence Enable Register */
- out_be64(p->regs + 0x0db0, 0xfbffd7bbff7fbfefull);
+ out_be64(p->regs + 0x0db0, 0xfbffd7bbfb7fbfefull);
/* Init_95: RXE_MRG Error AIB Fence Enable Register */
out_be64(p->regs + 0x0e30, 0xfffffeffff7fff57ull);
@@ -4160,7 +4160,7 @@ static void phb4_init_errors(struct phb4 *p)
* get a response to fence the PHB. This breaks probing,
* hence we don't set them here.
*/
- out_be64(p->regs + 0x0db0, 0x3bffd703fe7fbf8full); /* XXX CAPI has diff. value */
+ out_be64(p->regs + 0x0db0, 0x3bffd703fa7fbf8full); /* XXX CAPI has diff. value */
out_be64(p->regs + 0x0dc0, 0x0000000000000000ull);
out_be64(p->regs + 0x0dc8, 0x0000000000000000ull);
out_be64(p->regs + 0x0dd0, 0x0000000000000000ull);