From: Tao Ding <dingtao0430@163.com>
To: qemu-devel@nongnu.org
Cc: qemu-riscv@nongnu.org, pbonzini@redhat.com, palmer@dabbelt.com,
alistair.francis@wdc.com, liwei1518@gmail.com,
daniel.barboza@oss.qualcomm.com, zhiwei_liu@linux.alibaba.com,
chao.liu@processmission.com, farosas@suse.de, lvivier@redhat.com,
pierrick.bouvier@oss.qualcomm.com, caojunze424@gmail.com,
Tao Ding <dingtao0430@163.com>
Subject: [PATCH v2 0/7] K230: add gsdma and decomp_gzip
Date: Mon, 27 Jul 2026 23:56:55 +0800 [thread overview]
Message-ID: <20260727155702.36484-1-dingtao0430@163.com> (raw)
Hi all,
This patch series adds GSDMA and Decomp_gzip to the K230 board.
Enable k230 to use k230_unzip to decompress files during the u-boot phase.
This series includes the following features:
*patch1: add K230 gsdma which supports sdma, gdma is temporarily not supported
*patch2: add gsdma to K230 board
*patch3: add K230 gsdma qtest
*patch4: add K230 decomp_gzip which decompress data work with sdma
*patch5: add decomp_gzip to K230 board
*patch6: add K230 decomp_gzip qtest
*patch7: add a noc-stub region in K230 board
patchv1 is posted in:
https://lore.kernel.org/qemu-devel/20260721161335.73872-1-dingtao0430@163.com/
Changes in v2:
*patch1:
add endian conversion
replace reset method
update MAINTAINERS
fixed the bug not clear enable register after dma finish
fixed the bug in 2d-mode and src_fixed scr_addr should not increment
*patchv2:
update K230 rst
*patch3:
update MAINTAINERS
*patch4:
replace reset method
check dynamic huffman format in compressed data
fixed the bug of read a write only bit in DECOMP_START register
update MAINTAINERS
update K230 rst
*patch6:
compressed data is re generated using dynamic Huffman method,
with added annotations and explanations
update MAINTAINERS
Tao Ding (7):
hw/dma: add K230 gsdma
hw/riscv: k230: add gsdma in K230 board
tests/qtest: add test for K230 gsdma
hw/misc: add K230 decomp gzip
hw/riscv: k230: add decomp gzip in K230 board
tests/qtest: add test for K230 decomp gzip
hw/riscv: k230: add a noc stub region in K230 board
MAINTAINERS | 6 +
docs/system/riscv/k230.rst | 2 +
hw/dma/Kconfig | 3 +
hw/dma/k230_gsdma.c | 562 ++++++++++++++++++++++++++++
hw/dma/meson.build | 1 +
hw/dma/trace-events | 6 +
hw/misc/Kconfig | 3 +
hw/misc/k230_decomp_gzip.c | 508 +++++++++++++++++++++++++
hw/misc/meson.build | 1 +
hw/misc/trace-events | 4 +
hw/riscv/Kconfig | 2 +
hw/riscv/k230.c | 38 +-
include/hw/dma/k230_gsdma.h | 130 +++++++
include/hw/misc/k230_decomp_gzip.h | 92 +++++
include/hw/riscv/k230.h | 5 +
tests/qtest/k230-decomp-gzip-test.c | 200 ++++++++++
tests/qtest/k230-gsdma-test.c | 201 ++++++++++
tests/qtest/meson.build | 2 +-
18 files changed, 1758 insertions(+), 8 deletions(-)
create mode 100644 hw/dma/k230_gsdma.c
create mode 100644 hw/misc/k230_decomp_gzip.c
create mode 100644 include/hw/dma/k230_gsdma.h
create mode 100644 include/hw/misc/k230_decomp_gzip.h
create mode 100644 tests/qtest/k230-decomp-gzip-test.c
create mode 100644 tests/qtest/k230-gsdma-test.c
base-commit: 300438ffbb8d9430cac2fcc15cba6f482b2c0587
--
2.43.0
next reply other threads:[~2026-07-27 15:58 UTC|newest]
Thread overview: 16+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-07-27 15:56 Tao Ding [this message]
2026-07-27 15:56 ` [PATCH v2 1/7] hw/dma: add K230 gsdma Tao Ding
2026-08-06 11:34 ` Daniel Henrique Barboza
2026-08-07 4:46 ` Chao Liu
2026-07-27 15:56 ` [PATCH v2 2/7] hw/riscv: k230: add gsdma in K230 board Tao Ding
2026-08-06 11:34 ` Daniel Henrique Barboza
2026-07-27 15:56 ` [PATCH v2 3/7] tests/qtest: add test for K230 gsdma Tao Ding
2026-08-06 11:36 ` Daniel Henrique Barboza
2026-07-27 15:56 ` [PATCH v2 4/7] hw/misc: add K230 decomp gzip Tao Ding
2026-08-06 11:47 ` Daniel Henrique Barboza
2026-07-27 15:57 ` [PATCH v2 5/7] hw/riscv: k230: add decomp gzip in K230 board Tao Ding
2026-08-06 11:48 ` Daniel Henrique Barboza
2026-07-27 15:57 ` [PATCH v2 6/7] tests/qtest: add test for K230 decomp gzip Tao Ding
2026-08-06 12:14 ` Daniel Henrique Barboza
2026-07-27 15:57 ` [PATCH v2 7/7] hw/riscv: k230: add a noc stub region in K230 board Tao Ding
2026-08-06 12:15 ` Daniel Henrique Barboza
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=20260727155702.36484-1-dingtao0430@163.com \
--to=dingtao0430@163.com \
--cc=alistair.francis@wdc.com \
--cc=caojunze424@gmail.com \
--cc=chao.liu@processmission.com \
--cc=daniel.barboza@oss.qualcomm.com \
--cc=farosas@suse.de \
--cc=liwei1518@gmail.com \
--cc=lvivier@redhat.com \
--cc=palmer@dabbelt.com \
--cc=pbonzini@redhat.com \
--cc=pierrick.bouvier@oss.qualcomm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@nongnu.org \
--cc=zhiwei_liu@linux.alibaba.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.