[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 01/12] disas/hppa: Add disassembly for qemu specific instructions
From: |
deller |
Subject: |
[PULL 01/12] disas/hppa: Add disassembly for qemu specific instructions |
Date: |
Sun, 11 Feb 2024 13:28:58 +0100 |
From: Helge Deller <deller@gmx.de>
Add disassembly of opcodes for "HALT QEMU", "RESET QEMU" and
"RESTORE SHR" (restore shadow registers).
Signed-off-by: Helge Deller <deller@gmx.de>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
---
disas/hppa.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/disas/hppa.c b/disas/hppa.c
index cce4f4aa37..22dce9b41b 100644
--- a/disas/hppa.c
+++ b/disas/hppa.c
@@ -1609,6 +1609,10 @@ static const struct pa_opcode pa_opcodes[] =
{ "call", 0xe800a000, 0xffe0e000, "nW", pa10, FLAG_STRICT},
{ "ret", 0xe840d000, 0xfffffffd, "n", pa20, FLAG_STRICT},
+/* Opcodes assigned to QEMU, used by SeaBIOS firmware and Linux kernel */
+{ "HALT QEMU", 0xfffdead0, 0xfffffffd, "n", pa10, FLAG_STRICT},
+{ "RESET QEMU", 0xfffdead1, 0xfffffffd, "n", pa10, FLAG_STRICT},
+{ "RESTORE SHR",0xfffdead2, 0xfffffffd, "n", pa10, FLAG_STRICT},
};
#define NUMOPCODES ((sizeof pa_opcodes)/(sizeof pa_opcodes[0]))
--
2.43.0
- [PULL 00/12] Hppa64 patches, deller, 2024/02/11
- [PULL 06/12] target/hppa: Implement do_transaction_failed handler for I/O errors, deller, 2024/02/11
- [PULL 05/12] lasi: allow access to LAN MAC address registers, deller, 2024/02/11
- [PULL 02/12] target/hppa: Add "diag 0x101" for console output support, deller, 2024/02/11
- [PULL 01/12] disas/hppa: Add disassembly for qemu specific instructions,
deller <=
- [PULL 07/12] lasi: Add reset I/O ports for LASI audio and FDC, deller, 2024/02/11
- [PULL 04/12] hw/pci-host/astro: Implement Hard Fail and Soft Fail mode, deller, 2024/02/11
- [PULL 09/12] target/hppa: PDC_BTLB_INFO uses 32-bit ints, deller, 2024/02/11
- [PULL 10/12] hw/net/tulip: add chip status register values, deller, 2024/02/11
- [PULL 03/12] hw/pci-host/astro: Avoid aborting on access failure, deller, 2024/02/11
- [PULL 08/12] target/hppa: Allow read-access to PSW with rsm 0, reg instruction, deller, 2024/02/11
- [PULL 12/12] hw/hppa/machine: Load 64-bit firmware on 64-bit machines, deller, 2024/02/11
- [PULL 11/12] target/hppa: Update SeaBIOS-hppa to version 16, deller, 2024/02/11