From: "Benoît Canet" <benoit.canet@gmail.com>
To: qemu-devel@nongnu.org
Cc: peter.maydell@linaro.org, "Benoît Canet" <benoit.canet@gmail.com>,
avi@redhat.com
Subject: [Qemu-devel] [PATCH 01/11] integratorcp: convert control to sysbus
Date: Tue, 25 Oct 2011 12:32:34 +0200 [thread overview]
Message-ID: <1319538764-3954-2-git-send-email-benoit.canet@gmail.com> (raw)
In-Reply-To: <1319538764-3954-1-git-send-email-benoit.canet@gmail.com>
Signed-off-by: Benoit Canet <benoit.canet@gmail.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
---
hw/integratorcp.c | 20 +++++++++++++-------
1 files changed, 13 insertions(+), 7 deletions(-)
diff --git a/hw/integratorcp.c b/hw/integratorcp.c
index 7f79560..7ad68b7 100644
--- a/hw/integratorcp.c
+++ b/hw/integratorcp.c
@@ -393,6 +393,11 @@ static int icp_pic_init(SysBusDevice *dev)
/* CP control registers. */
+typedef struct icp_control_state {
+ SysBusDevice busdev;
+ MemoryRegion iomem;
+} icp_control_state;
+
static uint64_t icp_control_read(void *opaque, target_phys_addr_t offset,
unsigned size)
{
@@ -431,15 +436,14 @@ static const MemoryRegionOps icp_control_ops = {
.endianness = DEVICE_NATIVE_ENDIAN,
};
-static void icp_control_init(target_phys_addr_t base)
+static int icp_control_init(SysBusDevice *dev)
{
- MemoryRegion *io;
+ icp_control_state *s = FROM_SYSBUS(icp_control_state, dev);
- io = (MemoryRegion *)g_malloc0(sizeof(MemoryRegion));
- memory_region_init_io(io, &icp_control_ops, NULL,
+ memory_region_init_io(&s->iomem, &icp_control_ops, s,
"control", 0x00800000);
- memory_region_add_subregion(get_system_memory(), base, io);
- /* ??? Save/restore. */
+ sysbus_init_mmio_region(dev, &s->iomem);
+ return 0;
}
@@ -498,7 +502,7 @@ static void integratorcp_init(ram_addr_t ram_size,
sysbus_create_simple("pl031", 0x15000000, pic[8]);
sysbus_create_simple("pl011", 0x16000000, pic[1]);
sysbus_create_simple("pl011", 0x17000000, pic[2]);
- icp_control_init(0xcb000000);
+ sysbus_create_simple("integrator_control", 0xcb000000, NULL);
sysbus_create_simple("pl050_keyboard", 0x18000000, pic[3]);
sysbus_create_simple("pl050_mouse", 0x19000000, pic[4]);
sysbus_create_varargs("pl181", 0x1c000000, pic[23], pic[24], NULL);
@@ -541,6 +545,8 @@ static SysBusDeviceInfo core_info = {
static void integratorcp_register_devices(void)
{
sysbus_register_dev("integrator_pic", sizeof(icp_pic_state), icp_pic_init);
+ sysbus_register_dev("integrator_control", sizeof(icp_control_state),
+ icp_control_init);
sysbus_register_withprop(&core_info);
}
--
1.7.5.4
next prev parent reply other threads:[~2011-10-25 10:33 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-10-25 10:32 [Qemu-devel] [PATCH 00/11] V3 arm memory API conversion Benoît Canet
2011-10-25 10:32 ` Benoît Canet [this message]
2011-10-25 10:32 ` [Qemu-devel] [PATCH 02/11] marvell_88x8618_audio: convert to memory API Benoît Canet
2011-10-25 10:32 ` [Qemu-devel] [PATCH 03/11] mst_fpga: " Benoît Canet
2011-10-25 10:32 ` [Qemu-devel] [PATCH 04/11] syborg_fb: " Benoît Canet
2011-10-25 10:32 ` [Qemu-devel] [PATCH 05/11] syborg_interrupt: " Benoît Canet
2011-10-25 10:32 ` [Qemu-devel] [PATCH 06/11] syborg_keyboard: " Benoît Canet
2011-10-25 10:32 ` [Qemu-devel] [PATCH 07/11] syborg_pointer: " Benoît Canet
2011-10-25 10:32 ` [Qemu-devel] [PATCH 08/11] syborg_rtc: " Benoît Canet
2011-10-25 10:32 ` [Qemu-devel] [PATCH 09/11] syborg_serial: " Benoît Canet
2011-10-25 10:32 ` [Qemu-devel] [PATCH 10/11] syborg_timer: " Benoît Canet
2011-10-25 10:32 ` [Qemu-devel] [PATCH 11/11] syborg_virtio: " Benoît Canet
2011-10-25 11:27 ` [Qemu-devel] [PATCH 00/11] V3 arm memory API conversion Avi Kivity
2011-10-25 11:32 ` Peter Maydell
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=1319538764-3954-2-git-send-email-benoit.canet@gmail.com \
--to=benoit.canet@gmail.com \
--cc=avi@redhat.com \
--cc=peter.maydell@linaro.org \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.