qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Laurent Vivier <laurent@vivier.eu>
To: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>, qemu-devel@nongnu.org
Subject: Re: [PATCH v3 05/23] q800: move CPU object into Q800MachineState
Date: Sun, 4 Jun 2023 18:16:20 +0200	[thread overview]
Message-ID: <6e6e421b-2de4-f0b7-08a8-f3d022bc475b@vivier.eu> (raw)
In-Reply-To: <20230604131450.428797-6-mark.cave-ayland@ilande.co.uk>

Le 04/06/2023 à 15:14, Mark Cave-Ayland a écrit :
> Also change the instantiation of the CPU to use object_initialize_child()
> followed by a separate realisation.
> 
> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
> ---
>   hw/m68k/q800.c         | 18 +++++++++++++-----
>   include/hw/m68k/q800.h |  3 +++
>   2 files changed, 16 insertions(+), 5 deletions(-)
> 
> diff --git a/hw/m68k/q800.c b/hw/m68k/q800.c
> index 3730b30dd1..d0ceb64b70 100644
> --- a/hw/m68k/q800.c
> +++ b/hw/m68k/q800.c
> @@ -364,7 +364,7 @@ static uint8_t fake_mac_rom[] = {
>   
>   static void q800_machine_init(MachineState *machine)
>   {
> -    M68kCPU *cpu = NULL;
> +    Q800MachineState *m = Q800_MACHINE(machine);
>       int linux_boot;
>       int32_t kernel_size;
>       uint64_t elf_entry;
> @@ -407,8 +407,9 @@ static void q800_machine_init(MachineState *machine)
>       }
>   
>       /* init CPUs */
> -    cpu = M68K_CPU(cpu_create(machine->cpu_type));
> -    qemu_register_reset(main_cpu_reset, cpu);
> +    object_initialize_child(OBJECT(machine), "cpu", &m->cpu, machine->cpu_type);
> +    object_property_set_bool(OBJECT(&m->cpu), "realized", true, &error_fatal);
> +    qemu_register_reset(main_cpu_reset, &m->cpu);
>   
>       /* RAM */
>       memory_region_add_subregion(get_system_memory(), 0, machine->ram);
> @@ -430,7 +431,8 @@ static void q800_machine_init(MachineState *machine)
>   
>       /* IRQ Glue */
>       glue = qdev_new(TYPE_GLUE);
> -    object_property_set_link(OBJECT(glue), "cpu", OBJECT(cpu), &error_abort);
> +    object_property_set_link(OBJECT(glue), "cpu", OBJECT(&m->cpu),
> +                             &error_abort);
>       sysbus_realize_and_unref(SYS_BUS_DEVICE(glue), &error_fatal);
>   
>       /* VIA 1 */
> @@ -605,7 +607,7 @@ static void q800_machine_init(MachineState *machine)
>   
>       macfb_mode = (NUBUS_MACFB(dev)->macfb).mode;
>   
> -    cs = CPU(cpu);
> +    cs = CPU(&m->cpu);
>       if (linux_boot) {
>           uint64_t high;
>           void *param_blob, *param_ptr, *param_rng_seed;
> @@ -735,6 +737,11 @@ static GlobalProperty hw_compat_q800[] = {
>   };
>   static const size_t hw_compat_q800_len = G_N_ELEMENTS(hw_compat_q800);
>   
> +static const char *q800_machine_valid_cpu_types[] = {
> +    M68K_CPU_TYPE_NAME("m68040"),
> +    NULL
> +};
> +
>   static void q800_machine_class_init(ObjectClass *oc, void *data)
>   {
>       MachineClass *mc = MACHINE_CLASS(oc);
> @@ -742,6 +749,7 @@ static void q800_machine_class_init(ObjectClass *oc, void *data)
>       mc->desc = "Macintosh Quadra 800";
>       mc->init = q800_machine_init;
>       mc->default_cpu_type = M68K_CPU_TYPE_NAME("m68040");
> +    mc->valid_cpu_types = q800_machine_valid_cpu_types;
>       mc->max_cpus = 1;
>       mc->block_default_type = IF_SCSI;
>       mc->default_ram_id = "m68k_mac.ram";
> diff --git a/include/hw/m68k/q800.h b/include/hw/m68k/q800.h
> index f3bc17aa1b..4cb1a51dfe 100644
> --- a/include/hw/m68k/q800.h
> +++ b/include/hw/m68k/q800.h
> @@ -25,6 +25,7 @@
>   
>   #include "hw/boards.h"
>   #include "qom/object.h"
> +#include "target/m68k/cpu-qom.h"
>   
>   /*
>    * The main Q800 machine
> @@ -32,6 +33,8 @@
>   
>   struct Q800MachineState {
>       MachineState parent_obj;
> +
> +    M68kCPU cpu;
>   };
>   
>   #define TYPE_Q800_MACHINE MACHINE_TYPE_NAME("q800")

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



  reply	other threads:[~2023-06-04 16:17 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-04 13:14 [PATCH v3 00/23] q800: add support for booting MacOS Classic - part 1 Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 01/23] q800: fix up minor spacing issues in hw_compat_q800 GlobalProperty array Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 02/23] q800: add missing space after parent object in GLUEState Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 03/23] q800: introduce Q800MachineState Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 04/23] q800: rename q800_init() to q800_machine_init() Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 05/23] q800: move CPU object into Q800MachineState Mark Cave-Ayland
2023-06-04 16:16   ` Laurent Vivier [this message]
2023-06-05 12:33   ` Philippe Mathieu-Daudé
2023-06-04 13:14 ` [PATCH v3 06/23] q800: move ROM memory region to Q800MachineState Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 07/23] q800: move GLUE device into separate q800-glue.c file Mark Cave-Ayland
2023-06-05 12:41   ` Philippe Mathieu-Daudé
2023-06-19 12:26     ` Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 08/23] q800: move GLUE device to Q800MachineState Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 09/23] q800: introduce mac-io container memory region Mark Cave-Ayland
2023-06-05 12:49   ` Philippe Mathieu-Daudé
2023-06-04 13:14 ` [PATCH v3 10/23] q800: reimplement mac-io region aliasing using IO " Mark Cave-Ayland
2023-06-05 12:43   ` Philippe Mathieu-Daudé
2023-06-06  6:33     ` Mark Cave-Ayland
2023-06-06 12:40       ` Philippe Mathieu-Daudé
2023-06-05 12:48   ` Philippe Mathieu-Daudé
2023-06-04 13:14 ` [PATCH v3 11/23] q800: move VIA1 device to Q800MachineState Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 12/23] q800: move VIA2 " Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 13/23] hw/net/dp8393x.c: move TYPE_DP8393X and dp8393xState into dp8393x.h Mark Cave-Ayland
2023-06-04 16:17   ` Laurent Vivier
2023-06-05  0:36     ` Jason Wang
2023-06-05 12:44   ` Philippe Mathieu-Daudé
2023-06-04 13:14 ` [PATCH v3 14/23] q800: move dp8393x device to Q800MachineState Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 15/23] q800: move ESCC " Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 16/23] q800: move escc_orgate " Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 17/23] q800: move ESP " Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 18/23] q800: move SWIM " Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 19/23] q800: move mac-nubus-bridge " Mark Cave-Ayland
2023-06-04 16:29   ` Laurent Vivier
2023-06-05  5:43     ` Mark Cave-Ayland
2023-06-05 12:47   ` Philippe Mathieu-Daudé
2023-06-04 13:14 ` [PATCH v3 20/23] q800: don't access Nubus bus directly from the mac-nubus-bridge device Mark Cave-Ayland
2023-06-05 12:46   ` Philippe Mathieu-Daudé
2023-06-04 13:14 ` [PATCH v3 21/23] q800: move macfb device to Q800MachineState Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 22/23] mac_via: fix rtc command decoding from PRAM addresses 0x0 to 0xf Mark Cave-Ayland
2023-06-04 13:14 ` [PATCH v3 23/23] mac_via: fix rtc command decoding for the PRAM seconds registers Mark Cave-Ayland

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=6e6e421b-2de4-f0b7-08a8-f3d022bc475b@vivier.eu \
    --to=laurent@vivier.eu \
    --cc=mark.cave-ayland@ilande.co.uk \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).