mirror of
https://github.com/izzy2lost/xemu.git
synced 2026-07-06 00:20:22 -07:00
hw/hppa: Fix firmware end address for LASI chip
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>
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user