mirror of
https://git.proxmox.com/git/qemu
synced 2025-08-08 13:07:01 +00:00
malta: Clean allocation of bios region alias
It is sufficient to define the region alias once for all code branches. Signed-off-by: Stefan Weil <sw@weilnetz.de>
This commit is contained in:
parent
ae7d54d489
commit
82a9807bca
@ -856,10 +856,7 @@ void mips_malta_init (ram_addr_t ram_size,
|
|||||||
memory_region_init_ram(bios, "mips_malta.bios", BIOS_SIZE);
|
memory_region_init_ram(bios, "mips_malta.bios", BIOS_SIZE);
|
||||||
vmstate_register_ram_global(bios);
|
vmstate_register_ram_global(bios);
|
||||||
memory_region_set_readonly(bios, true);
|
memory_region_set_readonly(bios, true);
|
||||||
memory_region_init_alias(bios_alias, "bios.1fc", bios, 0, BIOS_SIZE);
|
|
||||||
/* Map the bios at two physical locations, as on the real board. */
|
|
||||||
memory_region_add_subregion(system_memory, 0x1e000000LL, bios);
|
memory_region_add_subregion(system_memory, 0x1e000000LL, bios);
|
||||||
memory_region_add_subregion(system_memory, 0x1fc00000LL, bios_alias);
|
|
||||||
loaderparams.ram_size = ram_size;
|
loaderparams.ram_size = ram_size;
|
||||||
loaderparams.kernel_filename = kernel_filename;
|
loaderparams.kernel_filename = kernel_filename;
|
||||||
loaderparams.kernel_cmdline = kernel_cmdline;
|
loaderparams.kernel_cmdline = kernel_cmdline;
|
||||||
@ -883,29 +880,19 @@ void mips_malta_init (ram_addr_t ram_size,
|
|||||||
dinfo->bdrv, 65536, fl_sectors,
|
dinfo->bdrv, 65536, fl_sectors,
|
||||||
4, 0x0000, 0x0000, 0x0000, 0x0000, be);
|
4, 0x0000, 0x0000, 0x0000, 0x0000, be);
|
||||||
bios = pflash_cfi01_get_memory(fl);
|
bios = pflash_cfi01_get_memory(fl);
|
||||||
/* Map the bios at two physical locations, as on the real board. */
|
|
||||||
memory_region_init_alias(bios_alias, "bios.1fc",
|
|
||||||
bios, 0, BIOS_SIZE);
|
|
||||||
memory_region_add_subregion(system_memory, 0x1fc00000LL,
|
|
||||||
bios_alias);
|
|
||||||
fl_idx++;
|
fl_idx++;
|
||||||
} else {
|
} else {
|
||||||
bios = g_new(MemoryRegion, 1);
|
bios = g_new(MemoryRegion, 1);
|
||||||
memory_region_init_ram(bios, "mips_malta.bios", BIOS_SIZE);
|
memory_region_init_ram(bios, "mips_malta.bios", BIOS_SIZE);
|
||||||
vmstate_register_ram_global(bios);
|
vmstate_register_ram_global(bios);
|
||||||
memory_region_set_readonly(bios, true);
|
memory_region_set_readonly(bios, true);
|
||||||
memory_region_init_alias(bios_alias, "bios.1fc",
|
|
||||||
bios, 0, BIOS_SIZE);
|
|
||||||
/* Map the bios at two physical locations, as on the real board. */
|
|
||||||
memory_region_add_subregion(system_memory, 0x1e000000LL, bios);
|
memory_region_add_subregion(system_memory, 0x1e000000LL, bios);
|
||||||
memory_region_add_subregion(system_memory, 0x1fc00000LL,
|
|
||||||
bios_alias);
|
|
||||||
/* Load a BIOS image. */
|
/* Load a BIOS image. */
|
||||||
if (bios_name == NULL)
|
if (bios_name == NULL)
|
||||||
bios_name = BIOS_FILENAME;
|
bios_name = BIOS_FILENAME;
|
||||||
filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
|
filename = qemu_find_file(QEMU_FILE_TYPE_BIOS, bios_name);
|
||||||
if (filename) {
|
if (filename) {
|
||||||
bios_size = load_image_targphys(filename, 0x1fc00000LL,
|
bios_size = load_image_targphys(filename, 0x1e000000LL,
|
||||||
BIOS_SIZE);
|
BIOS_SIZE);
|
||||||
g_free(filename);
|
g_free(filename);
|
||||||
} else {
|
} else {
|
||||||
@ -932,6 +919,10 @@ void mips_malta_init (ram_addr_t ram_size,
|
|||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* Map the BIOS at a 2nd physical location, as on the real board. */
|
||||||
|
memory_region_init_alias(bios_alias, "bios.1fc", bios, 0, BIOS_SIZE);
|
||||||
|
memory_region_add_subregion(system_memory, 0x1fc00000LL, bios_alias);
|
||||||
|
|
||||||
/* Board ID = 0x420 (Malta Board with CoreLV)
|
/* Board ID = 0x420 (Malta Board with CoreLV)
|
||||||
XXX: theoretically 0x1e000010 should map to flash and 0x1fc00010 should
|
XXX: theoretically 0x1e000010 should map to flash and 0x1fc00010 should
|
||||||
map to the board ID. */
|
map to the board ID. */
|
||||||
|
Loading…
Reference in New Issue
Block a user