qemu-devel
[Top][All Lists]
Advanced

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

Re: [PATCH v2 15/23] q800: move ESCC device to Q800MachineState


From: Laurent Vivier
Subject: Re: [PATCH v2 15/23] q800: move ESCC device to Q800MachineState
Date: Wed, 31 May 2023 22:31:56 +0200
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.10.0

Le 31/05/2023 à 14:53, Mark Cave-Ayland a écrit :
Also change the instantiation of the ESCC device to use 
object_initialize_child().

Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
---
  hw/m68k/q800.c         | 6 ++++--
  include/hw/m68k/q800.h | 2 ++
  2 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/hw/m68k/q800.c b/hw/m68k/q800.c
index e25f6f1373..ac92daf190 100644
--- a/hw/m68k/q800.c
+++ b/hw/m68k/q800.c
@@ -347,7 +347,9 @@ static void q800_machine_init(MachineState *machine)
/* SCC */ - dev = qdev_new(TYPE_ESCC);
+    object_initialize_child(OBJECT(machine), "escc", &m->escc,
+                            TYPE_ESCC);
+    dev = DEVICE(&m->escc);
      qdev_prop_set_uint32(dev, "disabled", 0);
      qdev_prop_set_uint32(dev, "frequency", MAC_CLOCK);
      qdev_prop_set_uint32(dev, "it_shift", 1);
@@ -357,7 +359,7 @@ static void q800_machine_init(MachineState *machine)
      qdev_prop_set_uint32(dev, "chnBtype", 0);
      qdev_prop_set_uint32(dev, "chnAtype", 0);
      sysbus = SYS_BUS_DEVICE(dev);
-    sysbus_realize_and_unref(sysbus, &error_fatal);
+    sysbus_realize(sysbus, &error_fatal);
/* Logically OR both its IRQs together */
      escc_orgate = DEVICE(object_new(TYPE_OR_IRQ));
diff --git a/include/hw/m68k/q800.h b/include/hw/m68k/q800.h
index 82964cfea1..d03603fe02 100644
--- a/include/hw/m68k/q800.h
+++ b/include/hw/m68k/q800.h
@@ -26,6 +26,7 @@
  #include "hw/m68k/q800-glue.h"
  #include "hw/misc/mac_via.h"
  #include "hw/net/dp8393x.h"
+#include "hw/char/escc.h"
/*
   * The main Q800 machine
@@ -40,6 +41,7 @@ struct Q800MachineState {
      MOS6522Q800VIA1State via1;
      MOS6522Q800VIA2State via2;
      dp8393xState dp8393x;
+    ESCCState escc;
      MemoryRegion macio;
      MemoryRegion macio_alias;
  };

Reviewed-by: Laurent Vivier <laurent@vivier.eu>




reply via email to

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