summaryrefslogtreecommitdiffstats
path: root/include/hw/loongarch/virt.h
diff options
context:
space:
mode:
authorXiaojuan Yang2022-07-12 10:32:02 +0200
committerRichard Henderson2022-07-19 19:25:10 +0200
commit98afb0d4e95322d728375a1171a5f77a9eeb4d68 (patch)
treee9cad30f202feb39bf117e6b104b953383cd011d /include/hw/loongarch/virt.h
parenthw/loongarch: Add fw_cfg table support (diff)
downloadqemu-98afb0d4e95322d728375a1171a5f77a9eeb4d68.tar.gz
qemu-98afb0d4e95322d728375a1171a5f77a9eeb4d68.tar.xz
qemu-98afb0d4e95322d728375a1171a5f77a9eeb4d68.zip
hw/loongarch: Add uefi bios loading support
Add uefi bios loading support, now only uefi bios is porting to loongarch virt machine. Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Signed-off-by: Xiaojuan Yang <yangxiaojuan@loongson.cn> Message-Id: <20220712083206.4187715-3-yangxiaojuan@loongson.cn> Signed-off-by: Richard Henderson <richard.henderson@linaro.org>
Diffstat (limited to 'include/hw/loongarch/virt.h')
-rw-r--r--include/hw/loongarch/virt.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/hw/loongarch/virt.h b/include/hw/loongarch/virt.h
index 9fec1f8a5c..ec37d86e44 100644
--- a/include/hw/loongarch/virt.h
+++ b/include/hw/loongarch/virt.h
@@ -18,6 +18,8 @@
#define LOONGARCH_ISA_IO_BASE 0x18000000UL
#define LOONGARCH_ISA_IO_SIZE 0x0004000
#define VIRT_FWCFG_BASE 0x1e020000UL
+#define VIRT_BIOS_BASE 0x1c000000UL
+#define VIRT_BIOS_SIZE (4 * MiB)
struct LoongArchMachineState {
/*< private >*/
@@ -27,6 +29,8 @@ struct LoongArchMachineState {
MemoryRegion lowmem;
MemoryRegion highmem;
MemoryRegion isa_io;
+ MemoryRegion bios;
+ bool bios_loaded;
/* State for other subsystems/APIs: */
FWCfgState *fw_cfg;
};