diff mbox series

phb4: Mask RXE_ARB: DEC Stage Valid Error

Message ID 20170920044744.25990-1-mikey@neuling.org
State Accepted
Headers show
Series phb4: Mask RXE_ARB: DEC Stage Valid Error | expand

Commit Message

Michael Neuling Sept. 20, 2017, 4:47 a.m. UTC
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>
---
 hw/phb4.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

Comments

Stewart Smith Sept. 20, 2017, 8:43 a.m. UTC | #1
Michael Neuling <mikey@neuling.org> writes:
> 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>
> ---
>  hw/phb4.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

I'll take your word for it, merged to master as of
8b4c7a3cef1a2d37856ffe884b573212500a7ac2
diff mbox series

Patch

diff --git a/hw/phb4.c b/hw/phb4.c
index 5371949fd9..69ae5dd0b4 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);