]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
hw/hppa: Fix firmware end address for LASI chip
authorHelge Deller <deller@gmx.de>
Tue, 14 Oct 2025 20:48:07 +0000 (22:48 +0200)
committerHelge Deller <deller@gmx.de>
Mon, 27 Oct 2025 21:13:22 +0000 (22:13 +0100)
The base address of a LASI chip on a 715 machine starts at HPA
0xf0100000.  Make sure that the firmware does not extend beyond that
address, otherwise it's not possible to access the LASI ports.

Signed-off-by: Helge Deller <deller@gmx.de>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
hw/hppa/hppa_hardware.h

index 21c777cba651c5caf9e21e3eb940a508682919e9..d422af042968ac6b70b7f9a9110246da5c16d71c 100644 (file)
@@ -5,7 +5,7 @@
 #define HW_HPPA_HPPA_HARDWARE_H
 
 #define FIRMWARE_START  0xf0000000
-#define FIRMWARE_END    0xf0800000
+#define FIRMWARE_END    0xf0100000
 #define FIRMWARE_HIGH   0xfffffff0  /* upper 32-bits of 64-bit firmware address */
 
 #define RAM_MAP_HIGH  0x0100000000  /* memory above 3.75 GB is mapped here */
@@ -19,6 +19,7 @@
 #define DINO_UART_HPA   0xfff83000
 #define  DINO_UART_BASE 0xfff83800
 #define DINO_SCSI_HPA   0xfff8c000
+#define LASI_HPA_715    0xf0100000
 #define LASI_HPA        0xffd00000
 #define LASI_UART_HPA   0xffd05000
 #define LASI_SCSI_HPA   0xffd06000