qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH 36/38] mips: Magnum/Acer Pica 61: replace cpu_mo


From: Philippe Mathieu-Daudé
Subject: Re: [Qemu-devel] [PATCH 36/38] mips: Magnum/Acer Pica 61: replace cpu_model with cpu_type
Date: Mon, 2 Oct 2017 11:11:49 -0300
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:52.0) Gecko/20100101 Thunderbird/52.3.0

On 10/02/2017 06:08 AM, Igor Mammedov wrote:
Signed-off-by: Igor Mammedov <address@hidden>

Reviewed-by: Philippe Mathieu-Daudé <address@hidden>

---
CC: address@hidden
CC: address@hidden
CC: address@hidden
---
  hw/mips/mips_jazz.c | 8 +++-----
  1 file changed, 3 insertions(+), 5 deletions(-)

diff --git a/hw/mips/mips_jazz.c b/hw/mips/mips_jazz.c
index 7e6626d..fe4f173 100644
--- a/hw/mips/mips_jazz.c
+++ b/hw/mips/mips_jazz.c
@@ -122,7 +122,6 @@ static void mips_jazz_init(MachineState *machine,
                             enum jazz_model_e jazz_model)
  {
      MemoryRegion *address_space = get_system_memory();
-    const char *cpu_model = machine->cpu_model;
      char *filename;
      int bios_size, n;
      MIPSCPU *cpu;
@@ -148,10 +147,7 @@ static void mips_jazz_init(MachineState *machine,
      MemoryRegion *bios2 = g_new(MemoryRegion, 1);
/* init CPUs */
-    if (cpu_model == NULL) {
-        cpu_model = "R4000";
-    }
-    cpu = MIPS_CPU(cpu_generic_init(TYPE_MIPS_CPU, cpu_model));
+    cpu = MIPS_CPU(cpu_create(machine->cpu_type));
      env = &cpu->env;
      qemu_register_reset(main_cpu_reset, cpu);
@@ -349,6 +345,7 @@ static void mips_magnum_class_init(ObjectClass *oc, void *data)
      mc->desc = "MIPS Magnum";
      mc->init = mips_magnum_init;
      mc->block_default_type = IF_SCSI;
+    mc->default_cpu_type = MIPS_CPU_TYPE_NAME("R4000");
  }
static const TypeInfo mips_magnum_type = {
@@ -364,6 +361,7 @@ static void mips_pica61_class_init(ObjectClass *oc, void 
*data)
      mc->desc = "Acer Pica 61";
      mc->init = mips_pica61_init;
      mc->block_default_type = IF_SCSI;
+    mc->default_cpu_type = MIPS_CPU_TYPE_NAME("R4000");
  }
static const TypeInfo mips_pica61_type = {




reply via email to

[Prev in Thread] Current Thread [Next in Thread]