From: "Andreas Färber" <afaerber@suse.de>
To: qemu-devel@nongnu.org
Cc: scottwood@freescale.com, qemu-ppc@nongnu.org, agraf@suse.de,
"Andreas Färber" <afaerber@suse.de>
Subject: [Qemu-devel] [PATCH 1/2] intc/openpic: QOM'ify
Date: Tue, 18 Jun 2013 03:58:07 +0200 [thread overview]
Message-ID: <1371520688-24949-2-git-send-email-afaerber@suse.de> (raw)
In-Reply-To: <1371520688-24949-1-git-send-email-afaerber@suse.de>
Introduce type constant and cast macro.
Signed-off-by: Andreas Färber <afaerber@suse.de>
---
hw/intc/openpic.c | 17 +++++++++++------
hw/ppc/e500.c | 2 +-
hw/ppc/mac_newworld.c | 2 +-
include/hw/ppc/openpic.h | 2 ++
4 files changed, 15 insertions(+), 8 deletions(-)
diff --git a/hw/intc/openpic.c b/hw/intc/openpic.c
index c788714..875c6b8 100644
--- a/hw/intc/openpic.c
+++ b/hw/intc/openpic.c
@@ -255,8 +255,13 @@ typedef struct IRQDest {
uint32_t outputs_active[OPENPIC_OUTPUT_NB];
} IRQDest;
+#define OPENPIC(obj) OBJECT_CHECK(OpenPICState, (obj), TYPE_OPENPIC)
+
typedef struct OpenPICState {
- SysBusDevice busdev;
+ /*< private >*/
+ SysBusDevice parent_obj;
+ /*< public >*/
+
MemoryRegion mem;
/* Behavior control */
@@ -537,7 +542,7 @@ static void openpic_set_irq(void *opaque, int n_IRQ, int level)
static void openpic_reset(DeviceState *d)
{
- OpenPICState *opp = FROM_SYSBUS(typeof(*opp), SYS_BUS_DEVICE(d));
+ OpenPICState *opp = OPENPIC(d);
int i;
opp->gcr = GCR_RESET;
@@ -703,7 +708,7 @@ static void openpic_gcr_write(OpenPICState *opp, uint64_t val)
bool mpic_proxy = false;
if (val & GCR_RESET) {
- openpic_reset(&opp->busdev.qdev);
+ openpic_reset(DEVICE(opp));
return;
}
@@ -1528,7 +1533,7 @@ static void map_list(OpenPICState *opp, const MemReg *list, int *count)
static int openpic_init(SysBusDevice *dev)
{
- OpenPICState *opp = FROM_SYSBUS(typeof (*opp), dev);
+ OpenPICState *opp = OPENPIC(dev);
int i, j;
int list_count = 0;
static const MemReg list_le[] = {
@@ -1621,7 +1626,7 @@ static int openpic_init(SysBusDevice *dev)
}
}
- register_savevm(&opp->busdev.qdev, "openpic", 0, 2,
+ register_savevm(DEVICE(opp), "openpic", 0, 2,
openpic_save, openpic_load, opp);
sysbus_init_mmio(dev, &opp->mem);
@@ -1647,7 +1652,7 @@ static void openpic_class_init(ObjectClass *klass, void *data)
}
static const TypeInfo openpic_info = {
- .name = "openpic",
+ .name = TYPE_OPENPIC,
.parent = TYPE_SYS_BUS_DEVICE,
.instance_size = sizeof(OpenPICState),
.class_init = openpic_class_init,
diff --git a/hw/ppc/e500.c b/hw/ppc/e500.c
index c9ae512..4fdd88e 100644
--- a/hw/ppc/e500.c
+++ b/hw/ppc/e500.c
@@ -565,7 +565,7 @@ void ppce500_init(PPCE500Params *params)
/* MPIC */
mpic = g_new(qemu_irq, 256);
- dev = qdev_create(NULL, "openpic");
+ dev = qdev_create(NULL, TYPE_OPENPIC);
qdev_prop_set_uint32(dev, "nb_cpus", smp_cpus);
qdev_prop_set_uint32(dev, "model", params->mpic_version);
qdev_init_nofail(dev);
diff --git a/hw/ppc/mac_newworld.c b/hw/ppc/mac_newworld.c
index ce44e95..61c25a4 100644
--- a/hw/ppc/mac_newworld.c
+++ b/hw/ppc/mac_newworld.c
@@ -329,7 +329,7 @@ static void ppc_core99_init(QEMUMachineInitArgs *args)
pic = g_new(qemu_irq, 64);
- dev = qdev_create(NULL, "openpic");
+ dev = qdev_create(NULL, TYPE_OPENPIC);
qdev_prop_set_uint32(dev, "model", OPENPIC_MODEL_RAVEN);
qdev_init_nofail(dev);
s = SYS_BUS_DEVICE(dev);
diff --git a/include/hw/ppc/openpic.h b/include/hw/ppc/openpic.h
index 9dcaf0e..9874beb 100644
--- a/include/hw/ppc/openpic.h
+++ b/include/hw/ppc/openpic.h
@@ -1,6 +1,8 @@
#if !defined(__OPENPIC_H__)
#define __OPENPIC_H__
+#define TYPE_OPENPIC "openpic"
+
/* OpenPIC have 5 outputs per CPU connected and one IRQ out single output */
enum {
OPENPIC_OUTPUT_INT = 0, /* IRQ */
--
1.8.1.4
next prev parent reply other threads:[~2013-06-18 1:58 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-06-18 1:58 [Qemu-devel] [PATCH 0/2] ppc: QOM'ify openpic device Andreas Färber
2013-06-18 1:58 ` Andreas Färber [this message]
2013-06-18 3:18 ` [Qemu-devel] [PATCH 1/2] intc/openpic: QOM'ify Peter Crosthwaite
2013-06-18 1:58 ` [Qemu-devel] [PATCH 2/2] intc/openpic: Convert to QOM realize Andreas Färber
2013-06-18 3:28 ` Peter Crosthwaite
2013-06-18 15:49 ` Andreas Färber
2013-06-18 23:06 ` Peter Crosthwaite
2013-06-18 12:32 ` [Qemu-devel] [PATCH 0/2] ppc: QOM'ify openpic device Alexander Graf
2013-06-18 12:35 ` Andreas Färber
2013-06-18 12:39 ` Alexander Graf
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=1371520688-24949-2-git-send-email-afaerber@suse.de \
--to=afaerber@suse.de \
--cc=agraf@suse.de \
--cc=qemu-devel@nongnu.org \
--cc=qemu-ppc@nongnu.org \
--cc=scottwood@freescale.com \
/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).