From: Alistair Francis <alistair23@gmail.com>
To: Djordje Todorovic <Djordje.Todorovic@htecgroup.com>
Cc: "qemu-devel@nongnu.org" <qemu-devel@nongnu.org>,
"qemu-riscv@nongnu.org" <qemu-riscv@nongnu.org>,
"cfu@mips.com" <cfu@mips.com>
Subject: Re: [PATCH v2 0/9] riscv: Add support for MIPS P8700 CPU
Date: Tue, 10 Jun 2025 21:42:15 +1000 [thread overview]
Message-ID: <CAKmqyKOPahax+3EYvrsV1_+S22exmt2JmctU_wtKSJShwABBwA@mail.gmail.com> (raw)
In-Reply-To: <20250602131226.1137281-1-djordje.todorovic@htecgroup.com>
On Mon, Jun 2, 2025 at 11:14 PM Djordje Todorovic
<Djordje.Todorovic@htecgroup.com> wrote:
>
> Several things implemented in v2:
> - Addressing review comments
> - Simplify `target/riscv/xmips.decode`
> - Rebase on top of latest master
> - Fix code format
>
> Djordje Todorovic (9):
> 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
> configs/devices: Add MIPS Boston-aia board model to RISC-V
> hw/riscv: Add a network device e1000e to the boston-aia
Thanks for the patches! There are now some review comments (sorry for
the delay), please send a v3 once they have been addressed
Alistair
>
> configs/devices/riscv64-softmmu/default.mak | 1 +
> hw/intc/riscv_aclint.c | 33 +-
> hw/intc/riscv_aplic.c | 10 +-
> hw/misc/Kconfig | 5 +
> hw/misc/meson.build | 1 +
> hw/misc/riscv_cmgcr.c | 204 ++++++++
> hw/misc/riscv_cpc.c | 225 +++++++++
> hw/pci/pci.c | 15 +-
> hw/riscv/Kconfig | 6 +
> hw/riscv/boston-aia.c | 489 ++++++++++++++++++++
> hw/riscv/cps.c | 187 ++++++++
> hw/riscv/meson.build | 1 +
> include/hw/misc/riscv_cmgcr.h | 77 +++
> include/hw/misc/riscv_cpc.h | 69 +++
> include/hw/riscv/cps.h | 75 +++
> target/riscv/cpu-qom.h | 1 +
> target/riscv/cpu.c | 28 ++
> target/riscv/cpu.h | 9 +
> target/riscv/cpu_cfg.h | 5 +
> target/riscv/cpu_cfg_fields.h.inc | 3 +
> target/riscv/insn_trans/trans_xmips.c.inc | 137 ++++++
> target/riscv/meson.build | 2 +
> target/riscv/mips_csr.c | 219 +++++++++
> target/riscv/translate.c | 11 +
> target/riscv/xmips.decode | 35 ++
> 25 files changed, 1837 insertions(+), 11 deletions(-)
> 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
>
> --
> 2.34.1
>
next prev parent reply other threads:[~2025-06-10 11:43 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-06-02 13:12 [PATCH v2 0/9] riscv: Add support for MIPS P8700 CPU Djordje Todorovic
2025-06-02 13:12 ` [PATCH v2 1/9] hw/intc: Allow gaps in hartids for aclint and aplic Djordje Todorovic
2025-06-10 7:34 ` Philippe Mathieu-Daudé
2025-06-18 8:43 ` Djordje Todorovic
2025-06-02 13:12 ` [PATCH v2 4/9] target/riscv: Add MIPS P8700 CSRs Djordje Todorovic
2025-06-10 7:41 ` Philippe Mathieu-Daudé
2025-06-10 11:36 ` Alistair Francis
2025-06-02 13:12 ` [PATCH v2 3/9] target/riscv: Add MIPS P8700 CPU Djordje Todorovic
2025-06-10 7:38 ` Philippe Mathieu-Daudé
2025-06-18 8:54 ` Djordje Todorovic
2025-06-02 13:12 ` [PATCH v2 2/9] target/riscv: Add cpu_set_exception_base Djordje Todorovic
2025-06-10 7:43 ` Philippe Mathieu-Daudé
2025-06-18 8:48 ` Djordje Todorovic
2025-06-10 11:29 ` Alistair Francis
2025-06-02 13:12 ` [PATCH v2 7/9] target/riscv: Add Xmipslsp instructions Djordje Todorovic
2025-06-02 13:12 ` [PATCH v2 5/9] target/riscv: Add mips.ccmov instruction Djordje Todorovic
2025-06-10 11:39 ` Alistair Francis
2025-06-18 8:56 ` Djordje Todorovic
2025-06-02 13:12 ` [PATCH v2 6/9] target/riscv: Add mips.pref instruction Djordje Todorovic
2025-06-02 13:12 ` [PATCH v2 8/9] configs/devices: Add MIPS Boston-aia board model to RISC-V Djordje Todorovic
2025-06-10 7:46 ` Philippe Mathieu-Daudé
2025-06-02 13:12 ` [PATCH v2 9/9] hw/riscv: Add a network device e1000e to the boston-aia Djordje Todorovic
2025-06-10 11:41 ` Alistair Francis
2025-06-10 11:42 ` Alistair Francis [this message]
2025-06-18 7:55 ` [PATCH v2 0/9] riscv: Add support for MIPS P8700 CPU Djordje Todorovic
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=CAKmqyKOPahax+3EYvrsV1_+S22exmt2JmctU_wtKSJShwABBwA@mail.gmail.com \
--to=alistair23@gmail.com \
--cc=Djordje.Todorovic@htecgroup.com \
--cc=cfu@mips.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-riscv@nongnu.org \
/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).