From: "Philippe Mathieu-Daudé" <philmd@linaro.org>
To: Peter Xu <peterx@redhat.com>,
Tomoyuki HIROSE <tomoyuki.hirose@igel.co.jp>,
Peter Maydell <peter.maydell@linaro.org>
Cc: qemu-devel@nongnu.org, "Paolo Bonzini" <pbonzini@redhat.com>,
"David Hildenbrand" <david@redhat.com>,
"Cameron Esfahani" <dirty@apple.com>,
"Cédric Le Goater" <clg@kaod.org>,
"Andrew Jeffery" <andrew@aj.id.au>,
"Richard Henderson" <richard.henderson@linaro.org>
Subject: Re: [PATCH v2 1/2] system/memory.c: support unaligned access
Date: Tue, 19 Mar 2024 07:43:44 +0100 [thread overview]
Message-ID: <fca8ecfc-f6b0-48f2-9590-867b0f8e4d9f@linaro.org> (raw)
In-Reply-To: <ZfholB7fuWEbuBss@x1n>
On 18/3/24 17:15, Peter Xu wrote:
> Hi,
>
> On Thu, Feb 01, 2024 at 05:13:12PM +0900, Tomoyuki HIROSE wrote:
>> The previous code ignored 'impl.unaligned' and handled unaligned accesses
>> as is. But this implementation cannot emulate specific registers of some
>> devices that allow unaligned access such as xHCI Host Controller Capability
>> Registers.
>> This commit checks 'impl.unaligned' and if it is false, QEMU emulates
>> unaligned access with multiple aligned access.
>
> This patch looks mostly good to me. Just a few trivial comments.
>
> Firstly, can we provide the USB example here (or also the bug link) so that
> we can still pick up the context of why this will start to be useful when
> people read about this commit separately?
>
>>
>> Signed-off-by: Tomoyuki HIROSE <tomoyuki.hirose@igel.co.jp>
>> ---
>> system/memory.c | 38 +++++++++++++++++++++++++-------------
>> 1 file changed, 25 insertions(+), 13 deletions(-)
>>
>> diff --git a/system/memory.c b/system/memory.c
>> index a229a79988..a7ca0c9f54 100644
>> --- a/system/memory.c
>> +++ b/system/memory.c
>> @@ -535,10 +535,17 @@ static MemTxResult access_with_adjusted_size(hwaddr addr,
>> MemTxAttrs attrs)
>> {
>> uint64_t access_mask;
>> + unsigned access_mask_shift;
>> + unsigned access_mask_start_offset;
>> + unsigned access_mask_end_offset;
>> unsigned access_size;
>> - unsigned i;
>> MemTxResult r = MEMTX_OK;
>> bool reentrancy_guard_applied = false;
>> + bool is_big_endian = memory_region_big_endian(mr);
>> + signed start_diff;
>> + signed current_offset;
>> + signed access_shift;
>> + hwaddr current_addr;
>>
>> if (!access_size_min) {
>> access_size_min = 1;
>> @@ -560,19 +567,24 @@ static MemTxResult access_with_adjusted_size(hwaddr addr,
>> reentrancy_guard_applied = true;
>> }
>>
>> - /* FIXME: support unaligned access? */
>> access_size = MAX(MIN(size, access_size_max), access_size_min);
>> - access_mask = MAKE_64BIT_MASK(0, access_size * 8);
>> - if (memory_region_big_endian(mr)) {
>> - for (i = 0; i < size; i += access_size) {
>> - r |= access_fn(mr, addr + i, value, access_size,
>> - (size - access_size - i) * 8, access_mask, attrs);
>> - }
>> - } else {
>> - for (i = 0; i < size; i += access_size) {
>> - r |= access_fn(mr, addr + i, value, access_size, i * 8,
>> - access_mask, attrs);
>> - }
>> + start_diff = mr->ops->impl.unaligned ? 0 : addr & (access_size - 1);
>> + current_addr = addr - start_diff;
>> + for (current_offset = -start_diff; current_offset < (signed)size;
>> + current_offset += access_size, current_addr += access_size) {
>> + access_shift = is_big_endian
>> + ? (signed)size - (signed)access_size - current_offset
>> + : current_offset;
>> + access_mask_shift = current_offset > 0 ? 0 : -current_offset;
>> + access_mask_start_offset = current_offset > 0 ? current_offset : 0;
>> + access_mask_end_offset = current_offset + access_size > size
>> + ? size
>> + : current_offset + access_size;
>
> Maybe this looks slightly easier to read?
>
> if (current_offset < 0) {
> access_mask_shift = -current_offset;
> access_mask_start_offset = 0;
> } else {
> access_mask_shift = 0;
> access_mask_start_offset = current_offset;
> }
> access_mask_end_offset = MIN(current_offset + access_size, size);
>
> But I confess this can be pretty subjective..
>
> Since PeterM used to comment, please remember to copy PeterM too in the
> future post in case this got overlooked.
>
> Peter, do you still have any other comments or concerns?
See also this thread:
https://lore.kernel.org/qemu-devel/20200331144225.67dadl6crwd57qvi@sirius.home.kraxel.org/
->
https://www.mail-archive.com/qemu-devel@nongnu.org/msg461247.html
Also I guess remembering Richard mentioning we should unify this
code for softmmu / physmem, but I might be wrong ...
>
> Thanks,
>
>> + access_mask = MAKE_64BIT_MASK(access_mask_shift * 8,
>> + (access_mask_end_offset - access_mask_start_offset) * 8);
>> +
>> + r |= access_fn(mr, current_addr, value, access_size, access_shift * 8,
>> + access_mask, attrs);
>> }
>> if (mr->dev && reentrancy_guard_applied) {
>> mr->dev->mem_reentrancy_guard.engaged_in_io = false;
>> --
>> 2.39.2
>>
>
next prev parent reply other threads:[~2024-03-19 6:44 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-02-01 8:13 [PATCH v2 0/2] support unaligned access for some xHCI registers Tomoyuki HIROSE
2024-02-01 8:13 ` [PATCH v2 1/2] system/memory.c: support unaligned access Tomoyuki HIROSE
2024-02-26 7:28 ` Tomoyuki Hirose
2024-03-18 4:34 ` Tomoyuki Hirose
2024-03-18 16:15 ` Peter Xu
2024-03-19 6:43 ` Philippe Mathieu-Daudé [this message]
2024-03-19 6:50 ` Philippe Mathieu-Daudé
2024-03-19 14:08 ` Peter Maydell
2024-02-01 8:13 ` [PATCH v2 2/2] hw/usb/hcd-xhci.c: allow unaligned access to Capability Registers Tomoyuki HIROSE
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=fca8ecfc-f6b0-48f2-9590-867b0f8e4d9f@linaro.org \
--to=philmd@linaro.org \
--cc=andrew@aj.id.au \
--cc=clg@kaod.org \
--cc=david@redhat.com \
--cc=dirty@apple.com \
--cc=pbonzini@redhat.com \
--cc=peter.maydell@linaro.org \
--cc=peterx@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=richard.henderson@linaro.org \
--cc=tomoyuki.hirose@igel.co.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).