* [PATCH v1 0/3] Fixed bugs in pl080
@ 2026-03-11 14:24 1774596582
2026-03-11 16:14 ` Tao Tang
0 siblings, 1 reply; 6+ messages in thread
From: 1774596582 @ 2026-03-11 14:24 UTC (permalink / raw)
To: Peter Maydell, qemu-devel; +Cc: qemu-arm, TaoDing
From: TaoDing <1774596582@qq.com>
Hi all,
When I tested pl080 using the existing dmatest tool in Linux,
I found that pl080 could not output the results correctly.
The main issues involved are inconsistent source and destination bit widths,
misalignment of LLI, which can lead to incorrect data and even cause qemu crashes.
TaoDing (3):
An interrupt is generated after the DMA transfer complete.
The swidth and dwidth of pl080 are not equal.
The LLI of pl080 should be aligned with 4 bytes.
hw/dma/pl080.c | 37 ++++++++++++++++++++++++-------------
1 file changed, 24 insertions(+), 13 deletions(-)
--
2.43.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 0/3] Fixed bugs in pl080
2026-03-11 14:24 [PATCH v1 0/3] Fixed bugs in pl080 1774596582
@ 2026-03-11 16:14 ` Tao Tang
2026-03-11 17:05 ` Peter Maydell
0 siblings, 1 reply; 6+ messages in thread
From: Tao Tang @ 2026-03-11 16:14 UTC (permalink / raw)
To: 1774596582; +Cc: peter.maydell, qemu-arm, qemu-devel
Hi,
It looks like three patches of this series were sent out-of-thread and
are not attached to this cover letter.
You may want to resend the full series, or resend those patches with
In-Reply-To pointing to the Message-ID of this cover letter so they
appear in the same thread:
git
send-email --in-reply-to="tencent_1BF621A658E043C088A2681178D57ED14A09@qq.com"
xxxxx
Thanks for working on this!
Tao
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 0/3] Fixed bugs in pl080
2026-03-11 16:14 ` Tao Tang
@ 2026-03-11 17:05 ` Peter Maydell
2026-03-11 18:04 ` 有点
0 siblings, 1 reply; 6+ messages in thread
From: Peter Maydell @ 2026-03-11 17:05 UTC (permalink / raw)
To: Tao Tang; +Cc: 1774596582, qemu-arm, qemu-devel
On Wed, 11 Mar 2026 at 16:14, Tao Tang <tangtao1634@phytium.com.cn> wrote:
>
> Hi,
>
> It looks like three patches of this series were sent out-of-thread and
> are not attached to this cover letter.
>
> You may want to resend the full series, or resend those patches with
> In-Reply-To pointing to the Message-ID of this cover letter so they
> appear in the same thread:
>
> git
> send-email --in-reply-to="tencent_1BF621A658E043C088A2681178D57ED14A09@qq.com"
> xxxxx
It looks to me looking at the headers that the emails were sent with correct
message-id and in-reply-to headers, but something in the qq.com
mail infrastructure has re-written the message-IDs and broken the
threading.
-- PMM
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 0/3] Fixed bugs in pl080
2026-03-11 17:05 ` Peter Maydell
@ 2026-03-11 18:04 ` 有点
0 siblings, 0 replies; 6+ messages in thread
From: 有点 @ 2026-03-11 18:04 UTC (permalink / raw)
To: Peter Maydell, Tao Tang; +Cc: qemu-arm, qemu-devel
[-- Attachment #1: Type: text/plain, Size: 1817 bytes --]
Hi,
Thank you very much for your guidance
This is my first time using this system to submit code.
The message ID for patch v1 0/3 has unexpectedly changed, I am trying to submit it using a other email.
原始邮件
发件人:Peter Maydell <peter.maydell@linaro.org>
发件时间:2026年3月12日 01:05
收件人:Tao Tang <tangtao1634@phytium.com.cn>
抄送:1774596582 <1774596582@qq.com>, qemu-arm <qemu-arm@nongnu.org>, qemu-devel <qemu-devel@nongnu.org>
主题:Re: [PATCH v1 0/3] Fixed bugs in pl080
On Wed, 11 Mar 2026 at 16:14, Tao Tang <tangtao1634@phytium.com.cn> wrote:
>
> Hi,
>
> It looks like three patches of this series were sent out-of-thread and
> are not attached to this cover letter.
>
> You may want to resend the full series, or resend those patches with
> In-Reply-To pointing to the Message-ID of this cover letter so they
> appear in the same thread:
>
> git
> send-email --in-reply-to="tencent_1BF621A658E043C088A2681178D57ED14A09@qq.com"
> xxxxx
It looks to me looking at the headers that the emails were sent with correct
message-id and in-reply-to headers, but something in the qq.com
mail infrastructure has re-written the message-IDs and broken the
threading.
-- PMM
[-- Attachment #2: Type: text/html, Size: 4197 bytes --]
^ permalink raw reply [flat|nested] 6+ messages in thread
* [PATCH v1 0/3] Fixed bugs in pl080
@ 2026-03-12 8:02 Tao Ding
2026-03-13 12:35 ` Peter Maydell
0 siblings, 1 reply; 6+ messages in thread
From: Tao Ding @ 2026-03-12 8:02 UTC (permalink / raw)
To: Peter Maydell, qemu-devel; +Cc: qemu-arm, Tao Ding
Hi all,
When I tested pl080 using the existing dmatest tool in Linux,
I found that pl080 could not output the results correctly.
The main issues involved are inconsistent source and destination bit widths,
misalignment of LLI, which can lead to incorrect data and even cause qemu crashes.
Tao Ding (3):
An interrupt is generated after the DMA transfer complete.
The swidth and dwidth of pl080 are not equal.
The LLI of pl080 should be aligned with 4 bytes.
hw/dma/pl080.c | 45 ++++++++++++++++++++++++++++-----------------
1 file changed, 28 insertions(+), 17 deletions(-)
base-commit: 1fd5ff9d76d23ab23a68419cbc76d5ee33e8b455
--
2.43.0
^ permalink raw reply [flat|nested] 6+ messages in thread
* Re: [PATCH v1 0/3] Fixed bugs in pl080
2026-03-12 8:02 Tao Ding
@ 2026-03-13 12:35 ` Peter Maydell
0 siblings, 0 replies; 6+ messages in thread
From: Peter Maydell @ 2026-03-13 12:35 UTC (permalink / raw)
To: Tao Ding; +Cc: qemu-devel, qemu-arm
On Thu, 12 Mar 2026 at 08:02, Tao Ding <dingtao0430@163.com> wrote:
>
> Hi all,
> When I tested pl080 using the existing dmatest tool in Linux,
> I found that pl080 could not output the results correctly.
> The main issues involved are inconsistent source and destination bit widths,
> misalignment of LLI, which can lead to incorrect data and even cause qemu crashes.
>
> Tao Ding (3):
> An interrupt is generated after the DMA transfer complete.
> The swidth and dwidth of pl080 are not equal.
> The LLI of pl080 should be aligned with 4 bytes.
Hi; I've taken patches 1 and 3 into target-arm.next (with
some adjustments to the commit messages). I had some
review comments on patch 2.
thanks
-- PMM
^ permalink raw reply [flat|nested] 6+ messages in thread
end of thread, other threads:[~2026-03-13 12:35 UTC | newest]
Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-03-11 14:24 [PATCH v1 0/3] Fixed bugs in pl080 1774596582
2026-03-11 16:14 ` Tao Tang
2026-03-11 17:05 ` Peter Maydell
2026-03-11 18:04 ` 有点
-- strict thread matches above, loose matches on Subject: below --
2026-03-12 8:02 Tao Ding
2026-03-13 12:35 ` Peter Maydell
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox