From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>,
laurent@vivier.eu, qemu-devel@nongnu.org
Subject: Re: [PATCH v3 07/23] q800: move GLUE device into separate q800-glue.c file
Date: Mon, 5 Jun 2023 14:41:38 +0200 [thread overview]
Message-ID: <d6b7f5ff-d51d-f821-5c2a-20ae7c2d0cc4@linaro.org> (raw)
In-Reply-To: <20230604131450.428797-8-mark.cave-ayland@ilande.co.uk>
On 4/6/23 15:14, Mark Cave-Ayland wrote:
> This will allow the q800-glue.h header to be included separately so that the
> GLUE device can be referenced externally.
>
> Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
> Reviewed-by: Laurent Vivier <laurent@vivier.eu>
> ---
> MAINTAINERS | 2 +
> hw/m68k/meson.build | 2 +-
> hw/m68k/q800-glue.c | 252 ++++++++++++++++++++++++++++++++++++
> hw/m68k/q800.c | 238 +---------------------------------
> include/hw/m68k/q800-glue.h | 50 +++++++
> 5 files changed, 306 insertions(+), 238 deletions(-)
> create mode 100644 hw/m68k/q800-glue.c
> create mode 100644 include/hw/m68k/q800-glue.h
> diff --git a/hw/m68k/q800-glue.c b/hw/m68k/q800-glue.c
> new file mode 100644
> index 0000000000..793bdb110c
> --- /dev/null
> +++ b/hw/m68k/q800-glue.c
> @@ -0,0 +1,252 @@
> +/*
> + * QEMU q800 logic glue
Although mentioned later, could we describe as "GLUE (General
Logic Unit)" here?
> + *
> + * Permission is hereby granted, free of charge, to any person obtaining a copy
> + * of this software and associated documentation files (the "Software"), to deal
> + * in the Software without restriction, including without limitation the rights
> + * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
> + * copies of the Software, and to permit persons to whom the Software is
> + * furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice shall be included in
> + * all copies or substantial portions of the Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
> + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
> + * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
> + * THE SOFTWARE.
Or simpler:
* SPDX-License-Identifier: MIT
> + */
> +
> +#include "qemu/osdep.h"
> +#include "cpu.h"
> +#include "hw/m68k/q800-glue.h"
> +#include "hw/boards.h"
> +#include "hw/irq.h"
> +#include "hw/nmi.h"
> +#include "hw/qdev-properties.h"
> +#include "migration/vmstate.h"
> +
> +/*
> + * The GLUE (General Logic Unit) is an Apple custom integrated circuit chip
> + * that performs a variety of functions (RAM management, clock generation, ...).
> + * The GLUE chip receives interrupt requests from various devices,
> + * assign priority to each, and asserts one or more interrupt line to the
> + * CPU.
> + */
> +static const TypeInfo glue_info = {
> + .name = TYPE_GLUE,
> + .parent = TYPE_SYS_BUS_DEVICE,
> + .instance_size = sizeof(GLUEState),
> + .instance_init = glue_init,
> + .instance_finalize = glue_finalize,
> + .class_init = glue_class_init,
> + .interfaces = (InterfaceInfo[]) {
> + { TYPE_NMI },
> + { }
> + },
> +};
> +
> +static void glue_register_types(void)
> +{
> + type_register_static(&glue_info);
> +}
> +
> +type_init(glue_register_types)
Soon DEFINE_TYPES() will be recommended over type_init().
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
next prev parent reply other threads:[~2023-06-05 12:42 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
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é [this message]
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=d6b7f5ff-d51d-f821-5c2a-20ae7c2d0cc4@linaro.org \
--to=philmd@linaro.org \
--cc=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).