Re: [PATCH v2 62/86] ppc:mac_oldworld: use memdev for RAM

2020-01-16 Thread Mark Cave-Ayland
On 15/01/2020 15:07, Igor Mammedov wrote:

> memory_region_allocate_system_memory() API is going away, so
> replace it with memdev allocated MemoryRegion. The later is
> initialized by generic code, so board only needs to opt in
> to memdev scheme by providing
>   MachineClass::default_ram_id
> and using MachineState::ram instead of manually initializing
> RAM memory region.
> 
> Signed-off-by: Igor Mammedov 
> ---
> CC: mark.cave-ayl...@ilande.co.uk
> CC: da...@gibson.dropbear.id.au
> CC: qemu-...@nongnu.org
> ---
>  hw/ppc/mac_oldworld.c | 6 ++
>  1 file changed, 2 insertions(+), 4 deletions(-)
> 
> diff --git a/hw/ppc/mac_oldworld.c b/hw/ppc/mac_oldworld.c
> index 0fa680b..2be0602 100644
> --- a/hw/ppc/mac_oldworld.c
> +++ b/hw/ppc/mac_oldworld.c
> @@ -91,7 +91,6 @@ static void ppc_heathrow_init(MachineState *machine)
>  CPUPPCState *env = NULL;
>  char *filename;
>  int linux_boot, i;
> -MemoryRegion *ram = g_new(MemoryRegion, 1);
>  MemoryRegion *bios = g_new(MemoryRegion, 1);
>  uint32_t kernel_base, initrd_base, cmdline_base = 0;
>  int32_t kernel_size, initrd_size;
> @@ -127,9 +126,7 @@ static void ppc_heathrow_init(MachineState *machine)
>  exit(1);
>  }
>  
> -memory_region_allocate_system_memory(ram, NULL, "ppc_heathrow.ram",
> - ram_size);
> -memory_region_add_subregion(sysmem, 0, ram);
> +memory_region_add_subregion(sysmem, 0, machine->ram);
>  
>  /* allocate and load BIOS */
>  memory_region_init_ram(bios, NULL, "ppc_heathrow.bios", BIOS_SIZE,
> @@ -446,6 +443,7 @@ static void heathrow_class_init(ObjectClass *oc, void 
> *data)
>  mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("750_v3.1");
>  mc->default_display = "std";
>  mc->ignore_boot_device_suffixes = true;
> +mc->default_ram_id = "ppc_heathrow.ram";
>  fwc->get_dev_path = heathrow_fw_dev_path;
>  }

Acked-by: Mark Cave-Ayland 


ATB,

Mark.



Re: [PATCH v2 62/86] ppc:mac_oldworld: use memdev for RAM

2020-01-15 Thread David Gibson
On Wed, Jan 15, 2020 at 04:07:17PM +0100, Igor Mammedov wrote:
> memory_region_allocate_system_memory() API is going away, so
> replace it with memdev allocated MemoryRegion. The later is
> initialized by generic code, so board only needs to opt in
> to memdev scheme by providing
>   MachineClass::default_ram_id
> and using MachineState::ram instead of manually initializing
> RAM memory region.
> 
> Signed-off-by: Igor Mammedov 

Acked-by: David Gibson 

-- 
David Gibson| I'll have my music baroque, and my code
david AT gibson.dropbear.id.au  | minimalist, thank you.  NOT _the_ _other_
| _way_ _around_!
http://www.ozlabs.org/~dgibson


signature.asc
Description: PGP signature


[PATCH v2 62/86] ppc:mac_oldworld: use memdev for RAM

2020-01-15 Thread Igor Mammedov
memory_region_allocate_system_memory() API is going away, so
replace it with memdev allocated MemoryRegion. The later is
initialized by generic code, so board only needs to opt in
to memdev scheme by providing
  MachineClass::default_ram_id
and using MachineState::ram instead of manually initializing
RAM memory region.

Signed-off-by: Igor Mammedov 
---
CC: mark.cave-ayl...@ilande.co.uk
CC: da...@gibson.dropbear.id.au
CC: qemu-...@nongnu.org
---
 hw/ppc/mac_oldworld.c | 6 ++
 1 file changed, 2 insertions(+), 4 deletions(-)

diff --git a/hw/ppc/mac_oldworld.c b/hw/ppc/mac_oldworld.c
index 0fa680b..2be0602 100644
--- a/hw/ppc/mac_oldworld.c
+++ b/hw/ppc/mac_oldworld.c
@@ -91,7 +91,6 @@ static void ppc_heathrow_init(MachineState *machine)
 CPUPPCState *env = NULL;
 char *filename;
 int linux_boot, i;
-MemoryRegion *ram = g_new(MemoryRegion, 1);
 MemoryRegion *bios = g_new(MemoryRegion, 1);
 uint32_t kernel_base, initrd_base, cmdline_base = 0;
 int32_t kernel_size, initrd_size;
@@ -127,9 +126,7 @@ static void ppc_heathrow_init(MachineState *machine)
 exit(1);
 }
 
-memory_region_allocate_system_memory(ram, NULL, "ppc_heathrow.ram",
- ram_size);
-memory_region_add_subregion(sysmem, 0, ram);
+memory_region_add_subregion(sysmem, 0, machine->ram);
 
 /* allocate and load BIOS */
 memory_region_init_ram(bios, NULL, "ppc_heathrow.bios", BIOS_SIZE,
@@ -446,6 +443,7 @@ static void heathrow_class_init(ObjectClass *oc, void *data)
 mc->default_cpu_type = POWERPC_CPU_TYPE_NAME("750_v3.1");
 mc->default_display = "std";
 mc->ignore_boot_device_suffixes = true;
+mc->default_ram_id = "ppc_heathrow.ram";
 fwc->get_dev_path = heathrow_fw_dev_path;
 }
 
-- 
2.7.4