From: Konstantin Shkolnyy <kshk@linux.ibm.com>
To: mjrosato@linux.ibm.com
Cc: alifm@linux.ibm.com, farman@linux.ibm.com,
richard.henderson@linaro.org, iii@linux.ibm.com,
david@kernel.org, cohuck@redhat.com, pasic@linux.ibm.com,
borntraeger@linux.ibm.com, qemu-s390x@nongnu.org,
qemu-devel@nongnu.org, Konstantin Shkolnyy <kshk@linux.ibm.com>
Subject: [PATCH v8 09/16] s390x/pci: Move g_iota from S390PCIIOMMU to S390PCIBusDevice
Date: Fri, 11 Sep 2026 10:21:30 -0500 [thread overview]
Message-ID: <20260911152137.676602-10-kshk@linux.ibm.com> (raw)
In-Reply-To: <20260911152137.676602-1-kshk@linux.ibm.com>
This field is only used when S390PCIBusDevice exists, so it can be moved
there to simplify S390PCIIOMMU towards a structure that contains only the
IOMMU container information needed by the PCI layer for a given slot.
This also allows to save/restore this field during migration.
Reviewed-by: Farhan Ali <alifm@linux.ibm.com>
Reviewed-by: Matthew Rosato <mjrosato@linux.ibm.com>
Signed-off-by: Konstantin Shkolnyy <kshk@linux.ibm.com>
---
hw/s390x/s390-pci-bus.c | 2 +-
hw/s390x/s390-pci-inst.c | 10 +++++-----
include/hw/s390x/s390-pci-bus.h | 2 +-
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/hw/s390x/s390-pci-bus.c b/hw/s390x/s390-pci-bus.c
index ad4f527430..ec54eb64a6 100644
--- a/hw/s390x/s390-pci-bus.c
+++ b/hw/s390x/s390-pci-bus.c
@@ -617,7 +617,7 @@ static void s390_pci_ioat_replay(S390PCIBusDevice *pbdev)
}
while (curr < end) {
- error = s390_guest_io_table_walk(iommu->g_iota, curr, &entry);
+ error = s390_guest_io_table_walk(pbdev->g_iota, curr, &entry);
if (error) {
pbdev->state = ZPCI_FS_ERROR;
s390_pci_generate_error_event(error, pbdev->fh, pbdev->fid, curr,
diff --git a/hw/s390x/s390-pci-inst.c b/hw/s390x/s390-pci-inst.c
index dc52da41b5..22b477ab38 100644
--- a/hw/s390x/s390-pci-inst.c
+++ b/hw/s390x/s390-pci-inst.c
@@ -765,7 +765,7 @@ int rpcit_service_call(S390CPU *cpu, uint8_t r1, uint8_t r2, uintptr_t ra)
} else {
dma_avail = 1;
}
- if (!iommu->g_iota) {
+ if (!pbdev->g_iota) {
error = ERR_EVENT_INVALAS;
goto err;
}
@@ -785,7 +785,7 @@ int rpcit_service_call(S390CPU *cpu, uint8_t r1, uint8_t r2, uintptr_t ra)
start = sstart;
again = false;
while (start < end) {
- error = s390_guest_io_table_walk(iommu->g_iota, start, &entry);
+ error = s390_guest_io_table_walk(pbdev->g_iota, start, &entry);
if (error) {
break;
}
@@ -1056,7 +1056,7 @@ static int reg_ioat(CPUS390XState *env, S390PCIBusDevice *pbdev, ZpciFib fib,
iommu->pba = pba;
iommu->pal = pal;
- iommu->g_iota = g_iota;
+ pbdev->g_iota = g_iota;
if (t) {
s390_pci_iommu_enable(pbdev);
@@ -1073,7 +1073,7 @@ void pci_dereg_ioat(S390PCIBusDevice *pbdev)
s390_pci_iommu_disable(pbdev);
iommu->pba = 0;
iommu->pal = 0;
- iommu->g_iota = 0;
+ pbdev->g_iota = 0;
}
void fmb_timer_free(S390PCIBusDevice *pbdev)
@@ -1446,7 +1446,7 @@ int stpcifc_service_call(S390CPU *cpu, uint8_t r1, uint64_t fiba, uint8_t ar,
stq_be_p(&fib.pba, pbdev->iommu->pba);
stq_be_p(&fib.pal, pbdev->iommu->pal);
- stq_be_p(&fib.iota, pbdev->iommu->g_iota);
+ stq_be_p(&fib.iota, pbdev->g_iota);
stq_be_p(&fib.aibv, pbdev->routes.adapter.ind_addr);
stq_be_p(&fib.aisb, pbdev->routes.adapter.summary_addr);
stq_be_p(&fib.fmb_addr, pbdev->fmb_addr);
diff --git a/include/hw/s390x/s390-pci-bus.h b/include/hw/s390x/s390-pci-bus.h
index 126a50c98b..a7d1f1ade2 100644
--- a/include/hw/s390x/s390-pci-bus.h
+++ b/include/hw/s390x/s390-pci-bus.h
@@ -275,7 +275,6 @@ struct S390PCIIOMMU {
Object parent_obj;
AddressSpace as;
MemoryRegion mr;
- uint64_t g_iota;
uint64_t pba;
uint64_t pal;
uint64_t max_dma_limit;
@@ -352,6 +351,7 @@ struct S390PCIBusDevice {
IOMMUMemoryRegion iommu_mr;
MemoryRegion *dm_mr;
GHashTable *iotlb;
+ uint64_t g_iota;
S390PCIDMACount *dma_limit;
MemoryRegion msix_notify_mr;
IndAddr *summary_ind;
--
2.34.1
next prev parent reply other threads:[~2026-09-11 15:23 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-09-11 15:21 [PATCH v8 00/16] s390x/pci: Implement migration for emulated devices Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 01/16] s390x/pci: implement IOMMU replay Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 02/16] s390x/pci: Create function to contain translation status check Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 03/16] s390x/pci: Move iommu_mr from S390PCIIOMMU to S390PCIBusDevice Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 04/16] s390x/pci: Move dm_mr " Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 05/16] s390x/pci: Move iotlb " Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 06/16] s390x/pci: Remove a ptr to S390PCIBusDevice from S390PCIIOMMU Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 07/16] s390x/pci: Move/rename enabled from S390PCIIOMMU to S390PCIBusDevice Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 08/16] s390x/pci: Move dma_limit " Konstantin Shkolnyy
2026-09-11 15:21 ` Konstantin Shkolnyy [this message]
2026-09-11 15:21 ` [PATCH v8 10/16] s390x/pci: Move pba " Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 11/16] s390x/pci: Move pal " Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 12/16] s390x/pci: Move max_dma_limit " Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 13/16] s390x/pci: Add a comment explaining S390PCIIOMMU purpose Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 14/16] s390x/pci: Factor ioat sanity checks into a separate function Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 15/16] s390x/pci: Implement migration for emulated devices Konstantin Shkolnyy
2026-09-11 15:21 ` [PATCH v8 16/16] s390x/pci: Create function to contain fmb_timer start Konstantin Shkolnyy
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=20260911152137.676602-10-kshk@linux.ibm.com \
--to=kshk@linux.ibm.com \
--cc=alifm@linux.ibm.com \
--cc=borntraeger@linux.ibm.com \
--cc=cohuck@redhat.com \
--cc=david@kernel.org \
--cc=farman@linux.ibm.com \
--cc=iii@linux.ibm.com \
--cc=mjrosato@linux.ibm.com \
--cc=pasic@linux.ibm.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-s390x@nongnu.org \
--cc=richard.henderson@linaro.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.