qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PULL 00/26] riscv-to-apply queue
@ 2025-10-03  3:26 alistair23
  2025-10-03  3:26 ` [PULL 01/26] hw/riscv/riscv-iommu: Fix MSI table size limit alistair23
                   ` (27 more replies)
  0 siblings, 28 replies; 32+ messages in thread
From: alistair23 @ 2025-10-03  3:26 UTC (permalink / raw)
  To: qemu-devel; +Cc: alistair23, Alistair Francis

From: Alistair Francis <alistair.francis@wdc.com>

The following changes since commit 29b77c1a2db2d796bc3847852a5c8dc2a1e6e83b:

  Merge tag 'rust-ci-pull-request' of https://gitlab.com/marcandre.lureau/qemu into staging (2025-09-30 09:29:38 -0700)

are available in the Git repository at:

  https://github.com/alistair23/qemu.git tags/pull-riscv-to-apply-20251003-3

for you to fetch changes up to ad2a0aa2824b1dac9f61bac33980e866e9a88856:

  docs: riscv-iommu: Update status of kernel support (2025-10-03 13:17:04 +1000)

----------------------------------------------------------------
First RISC-V PR for 10.2

* Fix MSI table size limit
* Add riscv64 to FirmwareArchitecture
* Sync RISC-V hwprobe with Linux
* Implement MonitorDef HMP API
* Update OpenSBI to v1.7
* Fix SiFive UART character drop issue and minor refactors
* Fix RISC-V timer migration issues
* Use riscv_cpu_is_32bit() when handling SBI_DBCN reg
* Use riscv_csrr in riscv_csr_read
* Align memory allocations to 2M on RISC-V
* Do not use translator_ldl in opcode_at
* Minor fixes of RISC-V CFI
* Modify minimum VLEN rule
* Fix vslide1[up|down].vx unexpected result when XLEN=32 and SEW=64
* Fixup IOMMU PDT Nested Walk
* Fix endianness swap on compressed instructions
* Update status of IOMMU kernel support

----------------------------------------------------------------
Andrea Bolognani (1):
      docs/interop/firmware: Add riscv64 to FirmwareArchitecture

Andrew Jones (1):
      hw/riscv/riscv-iommu: Fix MSI table size limit

Daniel Henrique Barboza (3):
      linux-user/syscall.c: sync RISC-V hwprobe with Linux
      target/riscv: implement MonitorDef HMP API
      roms/opensbi: Update to v1.7

Frank Chang (4):
      hw/char: sifive_uart: Raise IRQ according to the Tx/Rx watermark thresholds
      hw/char: sifive_uart: Avoid pushing Tx FIFO when size is zero
      hw/char: sifive_uart: Remove outdated comment about Tx FIFO
      hw/char: sifive_uart: Add newline to error message

Guo Ren (Alibaba DAMO Academy) (1):
      hw/riscv/riscv-iommu: Fixup PDT Nested Walk

Jim Shu (3):
      target/riscv: Fix the mepc when sspopchk triggers the exception
      target/riscv: Fix SSP CSR error handling in VU/VS mode
      target/riscv: Fix ssamoswap error handling

Joel Stanley (1):
      docs: riscv-iommu: Update status of kernel support

Max Chou (3):
      target/riscv: rvv: Replace checking V by checking Zve32x
      target/riscv: rvv: Modify minimum VLEN according to enabled vector extensions
      target/riscv: rvv: Fix vslide1[up|down].vx unexpected result when XLEN=32 and SEW=64

Philippe Mathieu-Daudé (1):
      target/riscv/kvm: Use riscv_cpu_is_32bit() when handling SBI_DBCN reg

TANG Tiancheng (4):
      hw/intc: Save time_delta in RISC-V mtimer VMState
      migration: Add support for a variable-length array of UINT32 pointers
      hw/intc: Save timers array in RISC-V mtimer VMState
      target/riscv: Save stimer and vstimer in CPU vmstate

Vladimir Isaev (1):
      target/riscv: do not use translator_ldl in opcode_at

Xuemei Liu (1):
      qemu/osdep: align memory allocations to 2M on RISC-V

stove (1):
      target/riscv: use riscv_csrr in riscv_csr_read

vhaudiquet (1):
      target/riscv: Fix endianness swap on compressed instructions

 docs/interop/firmware.json                     |   4 +-
 docs/specs/riscv-iommu.rst                     |  35 +++---
 include/hw/intc/riscv_aclint.h                 |   4 +
 include/migration/vmstate.h                    |  10 ++
 include/qemu/osdep.h                           |   2 +-
 target/riscv/cpu.h                             |   3 +-
 target/riscv/helper.h                          |  21 ++--
 hw/char/sifive_uart.c                          |  36 +++---
 hw/intc/riscv_aclint.c                         |   7 +-
 hw/riscv/riscv-iommu.c                         | 154 ++++++++++++++++++++++++-
 linux-user/syscall.c                           |  89 ++++++++++++++
 target/riscv/cpu.c                             |   2 +-
 target/riscv/csr.c                             |   5 +-
 target/riscv/kvm/kvm-cpu.c                     |   2 +-
 target/riscv/machine.c                         |  28 ++++-
 target/riscv/op_helper.c                       |  49 ++++++++
 target/riscv/riscv-qmp-cmds.c                  | 148 ++++++++++++++++++++++++
 target/riscv/tcg/tcg-cpu.c                     |  21 +++-
 target/riscv/translate.c                       |   3 +-
 target/riscv/vector_helper.c                   |  20 ++--
 target/riscv/insn_trans/trans_rvv.c.inc        |  50 +++++++-
 target/riscv/insn_trans/trans_rvzce.c.inc      |   6 +-
 target/riscv/insn_trans/trans_rvzicfiss.c.inc  |   9 ++
 pc-bios/opensbi-riscv32-generic-fw_dynamic.bin | Bin 268312 -> 268752 bytes
 pc-bios/opensbi-riscv64-generic-fw_dynamic.bin | Bin 272504 -> 273048 bytes
 roms/opensbi                                   |   2 +-
 26 files changed, 625 insertions(+), 85 deletions(-)


^ permalink raw reply	[flat|nested] 32+ messages in thread
* [PULL 00/26] riscv-to-apply queue
@ 2021-10-07  6:47 Alistair Francis
  2021-10-07 17:25 ` Richard Henderson
  0 siblings, 1 reply; 32+ messages in thread
From: Alistair Francis @ 2021-10-07  6:47 UTC (permalink / raw)
  To: qemu-devel, peter.maydell; +Cc: alistair23, Alistair Francis

From: Alistair Francis <alistair.francis@wdc.com>

The following changes since commit ca61fa4b803e5d0abaf6f1ceb690f23bb78a4def:

  Merge remote-tracking branch 'remotes/quic/tags/pull-hex-20211006' into staging (2021-10-06 12:11:14 -0700)

are available in the Git repository at:

  git@github.com:alistair23/qemu.git tags/pull-riscv-to-apply-20211007

for you to fetch changes up to 9ae6ecd848dcd1b32003526ab65a0d4c644dfb07:

  hw/riscv: shakti_c: Mark as not user creatable (2021-10-07 08:41:33 +1000)

----------------------------------------------------------------
Third RISC-V PR for QEMU 6.2

 - Add Zb[abcs] instruction support
 - Remove RVB support
 - Bug fix of setting mstatus_hs.[SD|FS] bits
 - Mark some UART devices as 'input'
 - QOMify PolarFire MMUART
 - Fixes for sifive PDMA
 - Mark shakti_c as not user creatable

----------------------------------------------------------------
Alistair Francis (1):
      hw/riscv: shakti_c: Mark as not user creatable

Bin Meng (5):
      hw/char: ibex_uart: Register device in 'input' category
      hw/char: shakti_uart: Register device in 'input' category
      hw/char: sifive_uart: Register device in 'input' category
      hw/dma: sifive_pdma: Fix Control.claim bit detection
      hw/dma: sifive_pdma: Don't run DMA when channel is disclaimed

Frank Chang (1):
      target/riscv: Set mstatus_hs.[SD|FS] bits if Clean and V=1 in mark_fs_dirty()

Philipp Tomsich (16):
      target/riscv: Introduce temporary in gen_add_uw()
      target/riscv: fix clzw implementation to operate on arg1
      target/riscv: clwz must ignore high bits (use shift-left & changed logic)
      target/riscv: Add x-zba, x-zbb, x-zbc and x-zbs properties
      target/riscv: Reassign instructions to the Zba-extension
      target/riscv: Remove the W-form instructions from Zbs
      target/riscv: Remove shift-one instructions (proposed Zbo in pre-0.93 draft-B)
      target/riscv: Reassign instructions to the Zbs-extension
      target/riscv: Add instructions of the Zbc-extension
      target/riscv: Reassign instructions to the Zbb-extension
      target/riscv: Add orc.b instruction for Zbb, removing gorc/gorci
      target/riscv: Add a REQUIRE_32BIT macro
      target/riscv: Add rev8 instruction, removing grev/grevi
      target/riscv: Add zext.h instructions to Zbb, removing pack/packu/packh
      target/riscv: Remove RVB (replaced by Zb[abcs])
      disas/riscv: Add Zb[abcs] instructions

Philippe Mathieu-Daudé (3):
      hw/char/mchp_pfsoc_mmuart: Simplify MCHP_PFSOC_MMUART_REG definition
      hw/char/mchp_pfsoc_mmuart: Use a MemoryRegion container
      hw/char/mchp_pfsoc_mmuart: QOM'ify PolarFire MMUART

 include/hw/char/mchp_pfsoc_mmuart.h     |  17 +-
 target/riscv/cpu.h                      |  11 +-
 target/riscv/helper.h                   |   6 +-
 target/riscv/insn32.decode              | 115 ++++-----
 disas/riscv.c                           | 157 +++++++++++-
 hw/char/ibex_uart.c                     |   1 +
 hw/char/mchp_pfsoc_mmuart.c             | 116 +++++++--
 hw/char/shakti_uart.c                   |   1 +
 hw/char/sifive_uart.c                   |   1 +
 hw/dma/sifive_pdma.c                    |  13 +-
 hw/riscv/shakti_c.c                     |   7 +
 target/riscv/bitmanip_helper.c          |  65 +----
 target/riscv/cpu.c                      |  30 +--
 target/riscv/translate.c                |  36 ++-
 target/riscv/insn_trans/trans_rvb.c.inc | 419 ++++++++++----------------------
 15 files changed, 516 insertions(+), 479 deletions(-)


^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2025-10-09  2:47 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-10-03  3:26 [PULL 00/26] riscv-to-apply queue alistair23
2025-10-03  3:26 ` [PULL 01/26] hw/riscv/riscv-iommu: Fix MSI table size limit alistair23
2025-10-03  3:26 ` [PULL 02/26] docs/interop/firmware: Add riscv64 to FirmwareArchitecture alistair23
2025-10-03  3:26 ` [PULL 03/26] linux-user/syscall.c: sync RISC-V hwprobe with Linux alistair23
2025-10-03  3:26 ` [PULL 04/26] target/riscv: implement MonitorDef HMP API alistair23
2025-10-03  3:26 ` [PULL 05/26] roms/opensbi: Update to v1.7 alistair23
2025-10-03  3:26 ` [PULL 06/26] hw/char: sifive_uart: Raise IRQ according to the Tx/Rx watermark thresholds alistair23
2025-10-03  3:26 ` [PULL 07/26] hw/char: sifive_uart: Avoid pushing Tx FIFO when size is zero alistair23
2025-10-03  3:27 ` [PULL 08/26] hw/char: sifive_uart: Remove outdated comment about Tx FIFO alistair23
2025-10-03  3:27 ` [PULL 09/26] hw/char: sifive_uart: Add newline to error message alistair23
2025-10-03  3:27 ` [PULL 10/26] hw/intc: Save time_delta in RISC-V mtimer VMState alistair23
2025-10-03  3:27 ` [PULL 11/26] migration: Add support for a variable-length array of UINT32 pointers alistair23
2025-10-03  3:27 ` [PULL 12/26] hw/intc: Save timers array in RISC-V mtimer VMState alistair23
2025-10-03  3:27 ` [PULL 13/26] target/riscv: Save stimer and vstimer in CPU vmstate alistair23
2025-10-03  3:27 ` [PULL 14/26] target/riscv/kvm: Use riscv_cpu_is_32bit() when handling SBI_DBCN reg alistair23
2025-10-03  3:27 ` [PULL 15/26] target/riscv: use riscv_csrr in riscv_csr_read alistair23
2025-10-03  3:27 ` [PULL 16/26] qemu/osdep: align memory allocations to 2M on RISC-V alistair23
2025-10-03  3:27 ` [PULL 17/26] target/riscv: do not use translator_ldl in opcode_at alistair23
2025-10-03  3:27 ` [PULL 18/26] target/riscv: Fix the mepc when sspopchk triggers the exception alistair23
2025-10-03  3:27 ` [PULL 19/26] target/riscv: Fix SSP CSR error handling in VU/VS mode alistair23
2025-10-03  3:27 ` [PULL 20/26] target/riscv: Fix ssamoswap error handling alistair23
2025-10-03  3:27 ` [PULL 21/26] target/riscv: rvv: Replace checking V by checking Zve32x alistair23
2025-10-03  3:27 ` [PULL 22/26] target/riscv: rvv: Modify minimum VLEN according to enabled vector extensions alistair23
2025-10-03  3:27 ` [PULL 23/26] target/riscv: rvv: Fix vslide1[up|down].vx unexpected result when XLEN=32 and SEW=64 alistair23
2025-10-03  3:27 ` [PULL 24/26] hw/riscv/riscv-iommu: Fixup PDT Nested Walk alistair23
2025-10-03  3:27 ` [PULL 25/26] target/riscv: Fix endianness swap on compressed instructions alistair23
2025-10-03  3:27 ` [PULL 26/26] docs: riscv-iommu: Update status of kernel support alistair23
2025-10-03 17:33 ` [PULL 00/26] riscv-to-apply queue Richard Henderson
2025-10-08 14:13 ` Michael Tokarev
2025-10-09  2:46   ` Alistair Francis
  -- strict thread matches above, loose matches on Subject: below --
2021-10-07  6:47 Alistair Francis
2021-10-07 17:25 ` Richard Henderson

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).