From: Djordje Todorovic <Djordje.Todorovic@htecgroup.com>
To: "qemu-devel@nongnu.org" <qemu-devel@nongnu.org>
Cc: "qemu-riscv@nongnu.org" <qemu-riscv@nongnu.org>,
"cfu@mips.com" <cfu@mips.com>, "mst@redhat.com" <mst@redhat.com>,
"marcel.apfelbaum@gmail.com" <marcel.apfelbaum@gmail.com>,
"dbarboza@ventanamicro.com" <dbarboza@ventanamicro.com>,
"philmd@linaro.org" <philmd@linaro.org>,
"alistair23@gmail.com" <alistair23@gmail.com>,
"thuth@redhat.com" <thuth@redhat.com>
Subject: Re: [PATCH v10 00/13] riscv: Add support for MIPS P8700 CPU
Date: Mon, 13 Oct 2025 06:41:54 +0000 [thread overview]
Message-ID: <dc602c2c-d531-4a3d-91cd-cd9969aaa785@htecgroup.com> (raw)
In-Reply-To: <20251003104443.51501-1-djordje.todorovic@htecgroup.com>
Hi,
Is there any additional comment on this? :)
Best regards,
Djordje
On 3. 10. 25. 12:45, Djordje Todorovic wrote:
> In this version of patchset I have addressed comments
> regarding the test case and added one comment for the
> cpu_set_exception_base function we added.
>
> Djordje Todorovic (13):
> hw/intc: Allow gaps in hartids for aclint and aplic
> target/riscv: Add cpu_set_exception_base
> target/riscv: Add MIPS P8700 CPU
> target/riscv: Add MIPS P8700 CSRs
> target/riscv: Add mips.ccmov instruction
> target/riscv: Add mips.pref instruction
> target/riscv: Add Xmipslsp instructions
> hw/misc: Add RISC-V CMGCR device implementation
> hw/misc: Add RISC-V CPC device implementation
> hw/riscv: Add support for RISCV CPS
> hw/riscv: Add support for MIPS Boston-aia board mode
> riscv/boston-aia: Add an e1000e NIC in slot 0 func 1
> test/functional: Add test for boston-aia board
>
> configs/devices/riscv64-softmmu/default.mak | 1 +
> docs/system/riscv/mips.rst | 20 +
> docs/system/target-riscv.rst | 1 +
> hw/intc/riscv_aclint.c | 18 +-
> hw/intc/riscv_aplic.c | 13 +-
> hw/misc/Kconfig | 17 +
> hw/misc/meson.build | 3 +
> hw/misc/riscv_cmgcr.c | 248 +++++++++
> hw/misc/riscv_cpc.c | 265 ++++++++++
> hw/riscv/Kconfig | 6 +
> hw/riscv/boston-aia.c | 477 ++++++++++++++++++
> hw/riscv/cps.c | 196 +++++++
> hw/riscv/meson.build | 3 +
> include/hw/misc/riscv_cmgcr.h | 50 ++
> include/hw/misc/riscv_cpc.h | 64 +++
> include/hw/riscv/cps.h | 66 +++
> target/riscv/cpu-qom.h | 1 +
> target/riscv/cpu.c | 43 ++
> target/riscv/cpu.h | 7 +
> target/riscv/cpu_cfg.h | 5 +
> target/riscv/cpu_cfg_fields.h.inc | 3 +
> target/riscv/cpu_vendorid.h | 1 +
> target/riscv/insn_trans/trans_xmips.c.inc | 136 +++++
> target/riscv/meson.build | 2 +
> target/riscv/mips_csr.c | 217 ++++++++
> target/riscv/translate.c | 3 +
> target/riscv/xmips.decode | 35 ++
> tests/functional/riscv64/meson.build | 2 +
> .../functional/riscv64/test_riscv64_boston.py | 124 +++++
> 29 files changed, 2022 insertions(+), 5 deletions(-)
> create mode 100644 docs/system/riscv/mips.rst
> create mode 100644 hw/misc/riscv_cmgcr.c
> create mode 100644 hw/misc/riscv_cpc.c
> create mode 100644 hw/riscv/boston-aia.c
> create mode 100644 hw/riscv/cps.c
> create mode 100644 include/hw/misc/riscv_cmgcr.h
> create mode 100644 include/hw/misc/riscv_cpc.h
> create mode 100644 include/hw/riscv/cps.h
> create mode 100644 target/riscv/insn_trans/trans_xmips.c.inc
> create mode 100644 target/riscv/mips_csr.c
> create mode 100644 target/riscv/xmips.decode
> create mode 100755 tests/functional/riscv64/test_riscv64_boston.py
>
prev parent reply other threads:[~2025-10-13 6:42 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-10-03 10:45 [PATCH v10 00/13] riscv: Add support for MIPS P8700 CPU Djordje Todorovic
2025-10-03 10:45 ` [PATCH v10 01/13] hw/intc: Allow gaps in hartids for aclint and aplic Djordje Todorovic
2025-10-03 10:45 ` [PATCH v10 04/13] target/riscv: Add MIPS P8700 CSRs Djordje Todorovic
2025-10-03 10:45 ` [PATCH v10 02/13] target/riscv: Add cpu_set_exception_base Djordje Todorovic
2025-10-03 10:45 ` [PATCH v10 03/13] target/riscv: Add MIPS P8700 CPU Djordje Todorovic
2025-10-03 10:45 ` [PATCH v10 06/13] target/riscv: Add mips.pref instruction Djordje Todorovic
2025-10-03 10:45 ` [PATCH v10 05/13] target/riscv: Add mips.ccmov instruction Djordje Todorovic
2025-10-03 10:45 ` [PATCH v10 07/13] target/riscv: Add Xmipslsp instructions Djordje Todorovic
2025-10-03 10:45 ` [PATCH v10 09/13] hw/misc: Add RISC-V CPC device implementation Djordje Todorovic
2025-10-03 10:45 ` [PATCH v10 08/13] hw/misc: Add RISC-V CMGCR " Djordje Todorovic
2025-10-03 10:45 ` [PATCH v10 10/13] hw/riscv: Add support for RISCV CPS Djordje Todorovic
2025-10-03 10:45 ` [PATCH v10 12/13] riscv/boston-aia: Add an e1000e NIC in slot 0 func 1 Djordje Todorovic
2025-10-03 10:45 ` [PATCH v10 11/13] hw/riscv: Add support for MIPS Boston-aia board mode Djordje Todorovic
2025-10-03 10:45 ` [PATCH v10 13/13] test/functional: Add test for boston-aia board Djordje Todorovic
2025-10-13 6:41 ` Djordje Todorovic [this message]
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=dc602c2c-d531-4a3d-91cd-cd9969aaa785@htecgroup.com \
--to=djordje.todorovic@htecgroup.com \
--cc=alistair23@gmail.com \
--cc=cfu@mips.com \
--cc=dbarboza@ventanamicro.com \
--cc=marcel.apfelbaum@gmail.com \
--cc=mst@redhat.com \
--cc=philmd@linaro.org \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@nongnu.org \
--cc=thuth@redhat.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 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).