[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v5 01/13] exec/memtxattr: add process identifier to the transacti
From: |
Daniel Henrique Barboza |
Subject: |
[PATCH v5 01/13] exec/memtxattr: add process identifier to the transaction attributes |
Date: |
Mon, 8 Jul 2024 14:34:48 -0300 |
From: Tomasz Jeznach <tjeznach@rivosinc.com>
Extend memory transaction attributes with process identifier to allow
per-request address translation logic to use requester_id / process_id
to identify memory mapping (e.g. enabling IOMMU w/ PASID translations).
Signed-off-by: Tomasz Jeznach <tjeznach@rivosinc.com>
Reviewed-by: Frank Chang <frank.chang@sifive.com>
Reviewed-by: Jason Chien <jason.chien@sifive.com>
Reviewed-by: Alistair Francis <alistair.francis@wdc.com>
Signed-off-by: Daniel Henrique Barboza <dbarboza@ventanamicro.com>
---
include/exec/memattrs.h | 5 +++++
1 file changed, 5 insertions(+)
diff --git a/include/exec/memattrs.h b/include/exec/memattrs.h
index 14cdd8d582..e27c18f3dc 100644
--- a/include/exec/memattrs.h
+++ b/include/exec/memattrs.h
@@ -52,6 +52,11 @@ typedef struct MemTxAttrs {
unsigned int memory:1;
/* Requester ID (for MSI for example) */
unsigned int requester_id:16;
+
+ /*
+ * PID (PCI PASID) support: Limited to 8 bits process identifier.
+ */
+ unsigned int pid:8;
} MemTxAttrs;
/* Bus masters which don't specify any attributes will get this,
--
2.45.2
- [PATCH v5 00/13] riscv: QEMU RISC-V IOMMU Support, Daniel Henrique Barboza, 2024/07/08
- [PATCH v5 01/13] exec/memtxattr: add process identifier to the transaction attributes,
Daniel Henrique Barboza <=
- [PATCH v5 02/13] hw/riscv: add riscv-iommu-bits.h, Daniel Henrique Barboza, 2024/07/08
- [PATCH v5 04/13] pci-ids.rst: add Red Hat pci-id for RISC-V IOMMU device, Daniel Henrique Barboza, 2024/07/08
- [PATCH v5 05/13] hw/riscv: add riscv-iommu-pci reference device, Daniel Henrique Barboza, 2024/07/08
- [PATCH v5 03/13] hw/riscv: add RISC-V IOMMU base emulation, Daniel Henrique Barboza, 2024/07/08
- [PATCH v5 06/13] hw/riscv/virt.c: support for RISC-V IOMMU PCIDevice hotplug, Daniel Henrique Barboza, 2024/07/08