From: Paolo Bonzini <pbonzini@redhat.com>
To: Peter Maydell <peter.maydell@linaro.org>
Cc: TaiseiIto <taisei1212@outlook.jp>,
qemu-devel@nongnu.org, peterx@redhat.com, david@redhat.com,
philmd@linaro.org
Subject: Re: [PATCH] [PATCH] system/memory: Fix max access size
Date: Mon, 22 Jul 2024 13:53:44 +0200 [thread overview]
Message-ID: <CABgObfbdXXXbygNn3DbN9Q7xB=kTFTFs5yxFQapSn6SAXdpQZw@mail.gmail.com> (raw)
In-Reply-To: <CAFEAcA_vY769Yws9t4WWitsShBK01Oua5zgarTj3YHgUuvpzTw@mail.gmail.com>
On Sat, Jul 20, 2024 at 4:30 PM Peter Maydell <peter.maydell@linaro.org> wrote:
> If the HPET timer device is supposed to permit 64 bit writes and it is not
> doing so, then that needs to be fixed in the HPET timer device model, by
> making sure that its read/write functions correctly handle the size=8 case
> and then setting access_size_max =8 in its MemoryRegionOps struct.
It does, and I've started looking into it[1].
The replacement for this patch is simple (on top of that branch):
diff --git a/hw/timer/hpet.c b/hw/timer/hpet.c
index 5e60fedc089..ac55dd1ebd6 100644
--- a/hw/timer/hpet.c
+++ b/hw/timer/hpet.c
@@ -637,6 +637,10 @@ static const MemoryRegionOps hpet_ram_ops = {
.min_access_size = 4,
.max_access_size = 8,
},
+ .impl = {
+ .min_access_size = 4,
+ .max_access_size = 8,
+ },
.endianness = DEVICE_NATIVE_ENDIAN,
};
I'll now look into the other patch for interrupts. Thanks for testing
my changes!
Paolo
[1] https://gitlab.com/bonzini/qemu/-/commits/hpet
next prev parent reply other threads:[~2024-07-22 11:54 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-07-20 7:55 [PATCH] [PATCH] system/memory: Fix max access size TaiseiIto
2024-07-20 14:30 ` Peter Maydell
2024-07-22 11:53 ` Paolo Bonzini [this message]
2024-07-22 14:29 ` Philippe Mathieu-Daudé
2024-07-22 16:50 ` Paolo Bonzini
2024-07-22 16:57 ` 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='CABgObfbdXXXbygNn3DbN9Q7xB=kTFTFs5yxFQapSn6SAXdpQZw@mail.gmail.com' \
--to=pbonzini@redhat.com \
--cc=david@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=peterx@redhat.com \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=taisei1212@outlook.jp \
/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).