qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 00/14] riscv: QEMU RISC-V IOMMU Support
@ 2024-06-24 20:18 Daniel Henrique Barboza
  2024-06-24 20:18 ` [PATCH v4 01/14] exec/memtxattr: add process identifier to the transaction attributes Daniel Henrique Barboza
                   ` (14 more replies)
  0 siblings, 15 replies; 27+ messages in thread
From: Daniel Henrique Barboza @ 2024-06-24 20:18 UTC (permalink / raw)
  To: qemu-devel
  Cc: qemu-riscv, alistair.francis, bmeng, liwei1518, zhiwei_liu,
	palmer, ajones, tjeznach, frank.chang, jason.chien,
	Daniel Henrique Barboza

Hi,

This new version contains changes based on suggestions made during the
v3 review [1]. Most notable changes:

- read/write locks were added in both ctx_lock and iot_lock. This code
  was picked from Tomasz branch;
- a new riscv_iommu_validate_process_ctx() helper was added to make
  process-context validations. Suggested by Jason Chien;
- a new doc patch was added to document how the IOMMU can be used by the
  'virt' RISC-V board. Suggested by Alistair.

Patches based on alistair/riscv-to-apply.next. It's also applicable on
master.

Patches missing reviews/acks: 3, 9, 14

* How it was tested *

This series was tested using an emulated QEMU RISC-V host booting a QEMU
KVM guest, passing through an emulated e1000 network card from the host
to the guest. 

The Linux kernel used for tests can be found here:

https://github.com/tjeznach/linux/tree/riscv_iommu_v6-rc3


Changes from v3:
- patch 3:
  - added FCTL_BE and FCTL_WSI bits to regs_ro[] mask
  - renamed 'ctx->pasid' to 'ctx->process_id'
  - added device translation cache update lock ctx_lock
  - DC.tc.V == 0 is now checked before riscv_iommu_validate_device_ctx()
  - PC.ta.V == 0 now issues a "PDT entry not valid" error in the end of
    riscv_iommu_validate_device_ctx()
  - added a new riscv_iommu_validate_process_ctx() helper to validate PC
    as section 2.2.4 dictates
- patch 5:
  - added RISCV_PCI_CLASS_SYSTEM_IOMMU macro and use it in k->class_id
- patch 8:
  - added update lock iot_lock
- patch 9:
  - added FSC related checks to riscv_iommu_validate_process_ctx()
  - moved 'if (mode == bare)' check to happen after ctx->process_id ==
    noprocid check 
- patch 14 (new):
  - add riscv-iommu docs for more information on how to use the
    riscv-iommu-pci device
- v3 link: https://lore.kernel.org/qemu-riscv/20240523173955.1940072-1-dbarboza@ventanamicro.com/

[1] https://lore.kernel.org/qemu-riscv/20240523173955.1940072-1-dbarboza@ventanamicro.com/


Andrew Jones (1):
  hw/riscv/riscv-iommu: Add another irq for mrif notifications

Daniel Henrique Barboza (4):
  pci-ids.rst: add Red Hat pci-id for RISC-V IOMMU device
  test/qtest: add riscv-iommu-pci tests
  qtest/riscv-iommu-test: add init queues test
  docs/specs: add riscv-iommu

Tomasz Jeznach (9):
  exec/memtxattr: add process identifier to the transaction attributes
  hw/riscv: add riscv-iommu-bits.h
  hw/riscv: add RISC-V IOMMU base emulation
  hw/riscv: add riscv-iommu-pci reference device
  hw/riscv/virt.c: support for RISC-V IOMMU PCIDevice hotplug
  hw/riscv/riscv-iommu: add Address Translation Cache (IOATC)
  hw/riscv/riscv-iommu: add s-stage and g-stage support
  hw/riscv/riscv-iommu: add ATS support
  hw/riscv/riscv-iommu: add DBG support

 docs/specs/index.rst             |    1 +
 docs/specs/pci-ids.rst           |    2 +
 docs/specs/riscv-iommu.rst       |   55 +
 docs/system/riscv/virt.rst       |   13 +
 hw/riscv/Kconfig                 |    4 +
 hw/riscv/meson.build             |    1 +
 hw/riscv/riscv-iommu-bits.h      |  419 ++++++
 hw/riscv/riscv-iommu-pci.c       |  178 +++
 hw/riscv/riscv-iommu.c           | 2372 ++++++++++++++++++++++++++++++
 hw/riscv/riscv-iommu.h           |  148 ++
 hw/riscv/trace-events            |   15 +
 hw/riscv/trace.h                 |    1 +
 hw/riscv/virt.c                  |   33 +-
 include/exec/memattrs.h          |    5 +
 include/hw/pci/pci.h             |    1 +
 include/hw/riscv/iommu.h         |   36 +
 meson.build                      |    1 +
 tests/qtest/libqos/meson.build   |    4 +
 tests/qtest/libqos/riscv-iommu.c |   76 +
 tests/qtest/libqos/riscv-iommu.h |  100 ++
 tests/qtest/meson.build          |    1 +
 tests/qtest/riscv-iommu-test.c   |  234 +++
 22 files changed, 3699 insertions(+), 1 deletion(-)
 create mode 100644 docs/specs/riscv-iommu.rst
 create mode 100644 hw/riscv/riscv-iommu-bits.h
 create mode 100644 hw/riscv/riscv-iommu-pci.c
 create mode 100644 hw/riscv/riscv-iommu.c
 create mode 100644 hw/riscv/riscv-iommu.h
 create mode 100644 hw/riscv/trace-events
 create mode 100644 hw/riscv/trace.h
 create mode 100644 include/hw/riscv/iommu.h
 create mode 100644 tests/qtest/libqos/riscv-iommu.c
 create mode 100644 tests/qtest/libqos/riscv-iommu.h
 create mode 100644 tests/qtest/riscv-iommu-test.c

-- 
2.45.2



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

end of thread, other threads:[~2024-08-27 16:06 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-06-24 20:18 [PATCH v4 00/14] riscv: QEMU RISC-V IOMMU Support Daniel Henrique Barboza
2024-06-24 20:18 ` [PATCH v4 01/14] exec/memtxattr: add process identifier to the transaction attributes Daniel Henrique Barboza
2024-06-26  0:56   ` Alistair Francis
2024-06-26  8:10   ` Jason Chien
2024-06-24 20:18 ` [PATCH v4 02/14] hw/riscv: add riscv-iommu-bits.h Daniel Henrique Barboza
2024-06-26  0:59   ` Alistair Francis
2024-07-03 20:21     ` Daniel Henrique Barboza
2024-06-24 20:18 ` [PATCH v4 03/14] hw/riscv: add RISC-V IOMMU base emulation Daniel Henrique Barboza
2024-07-04 14:20   ` Jason Chien
2024-07-05 21:11     ` Daniel Henrique Barboza
2024-08-27 16:04     ` Tomasz Jeznach
2024-06-24 20:18 ` [PATCH v4 04/14] pci-ids.rst: add Red Hat pci-id for RISC-V IOMMU device Daniel Henrique Barboza
2024-06-24 20:18 ` [PATCH v4 05/14] hw/riscv: add riscv-iommu-pci reference device Daniel Henrique Barboza
2024-06-24 20:18 ` [PATCH v4 06/14] hw/riscv/virt.c: support for RISC-V IOMMU PCIDevice hotplug Daniel Henrique Barboza
2024-06-26  1:06   ` Alistair Francis
2024-06-24 20:18 ` [PATCH v4 07/14] test/qtest: add riscv-iommu-pci tests Daniel Henrique Barboza
2024-06-26  1:10   ` Alistair Francis
2024-06-24 20:18 ` [PATCH v4 08/14] hw/riscv/riscv-iommu: add Address Translation Cache (IOATC) Daniel Henrique Barboza
2024-06-24 20:18 ` [PATCH v4 09/14] hw/riscv/riscv-iommu: add s-stage and g-stage support Daniel Henrique Barboza
2024-06-24 20:18 ` [PATCH v4 10/14] hw/riscv/riscv-iommu: add ATS support Daniel Henrique Barboza
2024-06-24 20:18 ` [PATCH v4 11/14] hw/riscv/riscv-iommu: add DBG support Daniel Henrique Barboza
2024-06-24 20:18 ` [PATCH v4 12/14] hw/riscv/riscv-iommu: Add another irq for mrif notifications Daniel Henrique Barboza
2024-06-24 20:18 ` [PATCH v4 13/14] qtest/riscv-iommu-test: add init queues test Daniel Henrique Barboza
2024-06-24 20:18 ` [PATCH v4 14/14] docs/specs: add riscv-iommu Daniel Henrique Barboza
2024-06-26  1:18   ` Alistair Francis
2024-07-05 21:24 ` [PATCH v4 00/14] riscv: QEMU RISC-V IOMMU Support Daniel Henrique Barboza
2024-07-08  2:18   ` Alistair Francis

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