hw/block/pflash_cfi02: Set romd mode in pflash_cfi02_realize()
The ROMD mode isn't related to mapping setup. Ideally we'd set this mode when the state machine resets, but for now simply move it to pflash_cfi02_realize() to not introduce logical change. Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20210325120921.858993-2-f4bug@amsat.org> Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
This commit is contained in:
parent
f9a576a818
commit
1d4ae5a34f
@ -173,7 +173,6 @@ static void pflash_setup_mappings(PFlashCFI02 *pfl)
|
||||
"pflash-alias", &pfl->orig_mem, 0, size);
|
||||
memory_region_add_subregion(&pfl->mem, i * size, &pfl->mem_mappings[i]);
|
||||
}
|
||||
pfl->rom_mode = true;
|
||||
}
|
||||
|
||||
static void pflash_reset_state_machine(PFlashCFI02 *pfl)
|
||||
@ -917,6 +916,7 @@ static void pflash_cfi02_realize(DeviceState *dev, Error **errp)
|
||||
/* Allocate memory for a bitmap for sectors being erased. */
|
||||
pfl->sector_erase_map = bitmap_new(pfl->total_sectors);
|
||||
|
||||
pfl->rom_mode = true;
|
||||
pflash_setup_mappings(pfl);
|
||||
sysbus_init_mmio(SYS_BUS_DEVICE(dev), &pfl->mem);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user