From: Peter Maydell <peter.maydell@linaro.org>
To: qemu-arm@nongnu.org, qemu-devel@nongnu.org
Cc: patches@linaro.org
Subject: [Qemu-devel] [PATCH 3/6] hw/timer/omap_synctimer.c: Don't use old_mmio
Date: Sat, 16 Sep 2017 17:46:15 +0100 [thread overview]
Message-ID: <1505580378-9044-4-git-send-email-peter.maydell@linaro.org> (raw)
In-Reply-To: <1505580378-9044-1-git-send-email-peter.maydell@linaro.org>
Don't use the old_mmio in the memory region ops struct.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
---
hw/timer/omap_synctimer.c | 35 +++++++++++++++++++++--------------
1 file changed, 21 insertions(+), 14 deletions(-)
diff --git a/hw/timer/omap_synctimer.c b/hw/timer/omap_synctimer.c
index 9ee6519..0d75a90 100644
--- a/hw/timer/omap_synctimer.c
+++ b/hw/timer/omap_synctimer.c
@@ -68,25 +68,32 @@ static uint32_t omap_synctimer_readh(void *opaque, hwaddr addr)
}
}
-static void omap_synctimer_write(void *opaque, hwaddr addr,
- uint32_t value)
+static uint64_t omap_synctimer_readfn(void *opaque, hwaddr addr,
+ unsigned size)
+{
+ switch (size) {
+ case 1:
+ return omap_badwidth_read32(opaque, addr);
+ case 2:
+ return omap_synctimer_readh(opaque, addr);
+ case 4:
+ return omap_synctimer_readw(opaque, addr);
+ default:
+ g_assert_not_reached();
+ }
+}
+
+static void omap_synctimer_writefn(void *opaque, hwaddr addr,
+ uint64_t value, unsigned size)
{
OMAP_BAD_REG(addr);
}
static const MemoryRegionOps omap_synctimer_ops = {
- .old_mmio = {
- .read = {
- omap_badwidth_read32,
- omap_synctimer_readh,
- omap_synctimer_readw,
- },
- .write = {
- omap_badwidth_write32,
- omap_synctimer_write,
- omap_synctimer_write,
- },
- },
+ .read = omap_synctimer_readfn,
+ .write = omap_synctimer_writefn,
+ .valid.min_access_size = 1,
+ .valid.max_access_size = 4,
.endianness = DEVICE_NATIVE_ENDIAN,
};
--
2.7.4
next prev parent reply other threads:[~2017-09-16 16:46 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-09-16 16:46 [Qemu-devel] [PATCH 0/6] convert some omap/palm devices from using old_mmio Peter Maydell
2017-09-16 16:46 ` [Qemu-devel] [PATCH 1/6] hw/arm/palm.c: Don't use old_mmio for static_ops Peter Maydell
2017-09-20 20:59 ` Richard Henderson
2017-09-16 16:46 ` [Qemu-devel] [PATCH 2/6] hw/gpio/omap_gpio.c: Don't use old_mmio Peter Maydell
2017-09-20 21:00 ` Richard Henderson
2017-09-16 16:46 ` Peter Maydell [this message]
2017-09-20 21:02 ` [Qemu-devel] [PATCH 3/6] hw/timer/omap_synctimer.c: " Richard Henderson
2017-09-16 16:46 ` [Qemu-devel] [PATCH 4/6] hw/timer/omap_gptimer: " Peter Maydell
2017-09-20 21:02 ` Richard Henderson
2017-09-16 16:46 ` [Qemu-devel] [PATCH 5/6] hw/i2c/omap_i2c.c: " Peter Maydell
2017-09-20 21:03 ` Richard Henderson
2017-09-16 16:46 ` [Qemu-devel] [PATCH 6/6] hw/arm/omap2.c: " Peter Maydell
2017-09-20 21:04 ` Richard Henderson
2017-09-17 13:21 ` [Qemu-devel] [PATCH 0/6] convert some omap/palm devices from using old_mmio 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=1505580378-9044-4-git-send-email-peter.maydell@linaro.org \
--to=peter.maydell@linaro.org \
--cc=patches@linaro.org \
--cc=qemu-arm@nongnu.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).