[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v4 05/12] hw/hppa/lasi: Don't abort on invalid IMR value
From: |
Helge Deller |
Subject: |
[PATCH v4 05/12] hw/hppa/lasi: Don't abort on invalid IMR value |
Date: |
Sun, 9 Aug 2020 07:23:55 +0200 |
NetBSD initializes the LASI IMR value with 0xffffffff to disable all LASI
interrupts. This triggered an assert() and stopped the emulation. By replacing
the check with a warning in the guest log we now allow NetBSD to boot again.
Signed-off-by: Helge Deller <deller@gmx.de>
---
hw/hppa/lasi.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/hw/hppa/lasi.c b/hw/hppa/lasi.c
index ffcbb988b8..7b4a168468 100644
--- a/hw/hppa/lasi.c
+++ b/hw/hppa/lasi.c
@@ -11,6 +11,7 @@
#include "qemu/osdep.h"
#include "qemu/units.h"
+#include "qemu/log.h"
#include "qapi/error.h"
#include "cpu.h"
#include "trace.h"
@@ -170,8 +171,10 @@ static MemTxResult lasi_chip_write_with_attrs(void
*opaque, hwaddr addr,
/* read-only. */
break;
case LASI_IMR:
- s->imr = val; /* 0x20 ?? */
- assert((val & LASI_IRQ_BITS) == val);
+ s->imr = val;
+ if (((val & LASI_IRQ_BITS) != val) && (val != 0xffffffff))
+ qemu_log_mask(LOG_GUEST_ERROR,
+ "LASI: tried to set invalid %lx IMR value.\n", val);
break;
case LASI_IPR:
/* Any write to IPR clears the register. */
--
2.21.3
- [PATCH v4 03/12] hw/hppa: Implement proper SeaBIOS version check, (continued)
- [PATCH v4 03/12] hw/hppa: Implement proper SeaBIOS version check, Helge Deller, 2020/08/09
- [PATCH v4 02/12] seabios-hppa: Update to SeaBIOS hppa version 1, Helge Deller, 2020/08/09
- [PATCH v4 01/12] hw/hppa: Sync hppa_hardware.h file with SeaBIOS sources, Helge Deller, 2020/08/09
- [PATCH v4 07/12] hw/display/artist: Refactor artist_rop8() to avoid buffer over-run, Helge Deller, 2020/08/09
- [PATCH v4 06/12] hw/display/artist: Check offset in draw_line to avoid buffer over-run, Helge Deller, 2020/08/09
- [PATCH v4 10/12] hw/display/artist: Unbreak size mismatch memory accesses, Helge Deller, 2020/08/09
- [PATCH v4 12/12] hw/display/artist: Fix invalidation of lines near screen border, Helge Deller, 2020/08/09
- [PATCH v4 09/12] hw/display/artist: Prevent out of VRAM buffer accesses, Helge Deller, 2020/08/09
- [PATCH v4 04/12] hw/display/artist.c: fix out of bounds check, Helge Deller, 2020/08/09
- [PATCH v4 11/12] hw/display/artist: Fix invalidation of lines in artist_draw_line(), Helge Deller, 2020/08/09
- [PATCH v4 05/12] hw/hppa/lasi: Don't abort on invalid IMR value,
Helge Deller <=
- [PATCH v4 08/12] Revert "hw/display/artist: Avoid drawing line when nothing to display", Helge Deller, 2020/08/09