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 08/11] syborg_rtc: convert to memory API
Date: Tue, 25 Oct 2011 12:32:41 +0200 [thread overview]
Message-ID: <1319538764-3954-9-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>
---
hw/syborg_rtc.c | 28 +++++++++++-----------------
1 files changed, 11 insertions(+), 17 deletions(-)
diff --git a/hw/syborg_rtc.c b/hw/syborg_rtc.c
index 69f6ccf..375664f 100644
--- a/hw/syborg_rtc.c
+++ b/hw/syborg_rtc.c
@@ -35,12 +35,14 @@ enum {
typedef struct {
SysBusDevice busdev;
+ MemoryRegion iomem;
int64_t offset;
int64_t data;
qemu_irq irq;
} SyborgRTCState;
-static uint32_t syborg_rtc_read(void *opaque, target_phys_addr_t offset)
+static uint64_t syborg_rtc_read(void *opaque, target_phys_addr_t offset,
+ unsigned size)
{
SyborgRTCState *s = (SyborgRTCState *)opaque;
offset &= 0xfff;
@@ -58,7 +60,8 @@ static uint32_t syborg_rtc_read(void *opaque, target_phys_addr_t offset)
}
}
-static void syborg_rtc_write(void *opaque, target_phys_addr_t offset, uint32_t value)
+static void syborg_rtc_write(void *opaque, target_phys_addr_t offset,
+ uint64_t value, unsigned size)
{
SyborgRTCState *s = (SyborgRTCState *)opaque;
uint64_t now;
@@ -90,16 +93,10 @@ static void syborg_rtc_write(void *opaque, target_phys_addr_t offset, uint32_t v
}
}
-static CPUReadMemoryFunc * const syborg_rtc_readfn[] = {
- syborg_rtc_read,
- syborg_rtc_read,
- syborg_rtc_read
-};
-
-static CPUWriteMemoryFunc * const syborg_rtc_writefn[] = {
- syborg_rtc_write,
- syborg_rtc_write,
- syborg_rtc_write
+static const MemoryRegionOps syborg_rtc_ops = {
+ .read = syborg_rtc_read,
+ .write = syborg_rtc_write,
+ .endianness = DEVICE_NATIVE_ENDIAN,
};
static const VMStateDescription vmstate_syborg_rtc = {
@@ -118,12 +115,9 @@ static int syborg_rtc_init(SysBusDevice *dev)
{
SyborgRTCState *s = FROM_SYSBUS(SyborgRTCState, dev);
struct tm tm;
- int iomemtype;
- iomemtype = cpu_register_io_memory(syborg_rtc_readfn,
- syborg_rtc_writefn, s,
- DEVICE_NATIVE_ENDIAN);
- sysbus_init_mmio(dev, 0x1000, iomemtype);
+ memory_region_init_io(&s->iomem, &syborg_rtc_ops, s, "rtc", 0x1000);
+ sysbus_init_mmio_region(dev, &s->iomem);
qemu_get_timedate(&tm, 0);
s->offset = (uint64_t)mktime(&tm) * 1000000000;
--
1.7.5.4
next prev parent reply other threads:[~2011-10-25 10:34 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 ` [Qemu-devel] [PATCH 01/11] integratorcp: convert control to sysbus Benoît Canet
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 ` Benoît Canet [this message]
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-9-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 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).