lm32_boards: convert to memory API
Reviewed-by: Richard Henderson <rth@twiddle.net> Signed-off-by: Avi Kivity <avi@redhat.com>
This commit is contained in:
parent
82afb3a707
commit
4c9e975d64
@ -28,6 +28,7 @@
|
||||
#include "elf.h"
|
||||
#include "lm32_hwsetup.h"
|
||||
#include "lm32.h"
|
||||
#include "exec-memory.h"
|
||||
|
||||
typedef struct {
|
||||
CPUState *env;
|
||||
@ -76,7 +77,8 @@ static void lm32_evr_init(ram_addr_t ram_size_not_used,
|
||||
{
|
||||
CPUState *env;
|
||||
DriveInfo *dinfo;
|
||||
ram_addr_t phys_ram;
|
||||
MemoryRegion *address_space_mem = get_system_memory();
|
||||
MemoryRegion *phys_ram = g_new(MemoryRegion, 1);
|
||||
MemoryRegion *phys_flash = g_new(MemoryRegion, 1);
|
||||
qemu_irq *cpu_irq, irq[32];
|
||||
ResetInfo *reset_info;
|
||||
@ -105,8 +107,8 @@ static void lm32_evr_init(ram_addr_t ram_size_not_used,
|
||||
|
||||
reset_info->flash_base = flash_base;
|
||||
|
||||
phys_ram = qemu_ram_alloc(NULL, "lm32_evr.sdram", ram_size);
|
||||
cpu_register_physical_memory(ram_base, ram_size, phys_ram | IO_MEM_RAM);
|
||||
memory_region_init_ram(phys_ram, NULL, "lm32_evr.sdram", ram_size);
|
||||
memory_region_add_subregion(address_space_mem, ram_base, phys_ram);
|
||||
|
||||
memory_region_init_rom_device(phys_flash, &pflash_cfi02_ops_be,
|
||||
NULL, "lm32_evr.flash", flash_size);
|
||||
@ -165,7 +167,8 @@ static void lm32_uclinux_init(ram_addr_t ram_size_not_used,
|
||||
{
|
||||
CPUState *env;
|
||||
DriveInfo *dinfo;
|
||||
ram_addr_t phys_ram;
|
||||
MemoryRegion *address_space_mem = get_system_memory();
|
||||
MemoryRegion *phys_ram = g_new(MemoryRegion, 1);
|
||||
MemoryRegion *phys_flash = g_new(MemoryRegion, 1);
|
||||
qemu_irq *cpu_irq, irq[32];
|
||||
HWSetup *hw;
|
||||
@ -201,8 +204,8 @@ static void lm32_uclinux_init(ram_addr_t ram_size_not_used,
|
||||
|
||||
reset_info->flash_base = flash_base;
|
||||
|
||||
phys_ram = qemu_ram_alloc(NULL, "lm32_uclinux.sdram", ram_size);
|
||||
cpu_register_physical_memory(ram_base, ram_size, phys_ram | IO_MEM_RAM);
|
||||
memory_region_init_ram(phys_ram, NULL, "lm32_uclinux.sdram", ram_size);
|
||||
memory_region_add_subregion(address_space_mem, ram_base, phys_ram);
|
||||
|
||||
memory_region_init_rom_device(phys_flash, &pflash_cfi01_ops_be,
|
||||
NULL, "lm32_uclinux.flash", flash_size);
|
||||
|
Loading…
Reference in New Issue
Block a user