From: Konstantin Shkolnyy <kshk@linux.ibm.com>
To: mjrosato@linux.ibm.com
Cc: alifm@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 v3 07/15] s390x/pci: Move/rename enabled from S390PCIIOMMU to S390PCIBusDevice
Date: Thu, 4 Jun 2026 21:17:20 -0500 [thread overview]
Message-ID: <20260605021728.1125090-8-kshk@linux.ibm.com> (raw)
In-Reply-To: <20260605021728.1125090-1-kshk@linux.ibm.com>
This field is only used when S390PCIBusDevice exists, so it can be moved
there to simplify S390PCIIOMMU which purpose is just to store the "root"
AddressSpace.
This also allows to save/restore this field during migration.
Signed-off-by: Konstantin Shkolnyy <kshk@linux.ibm.com>
---
hw/s390x/s390-pci-bus.c | 14 +++++++-------
hw/s390x/s390-pci-inst.c | 8 ++++----
include/hw/s390x/s390-pci-bus.h | 2 +-
3 files changed, 12 insertions(+), 12 deletions(-)
diff --git a/hw/s390x/s390-pci-bus.c b/hw/s390x/s390-pci-bus.c
index 21455d9233..ccbccc8972 100644
--- a/hw/s390x/s390-pci-bus.c
+++ b/hw/s390x/s390-pci-bus.c
@@ -205,7 +205,7 @@ void s390_pci_sclp_deconfigure(SCCB *sccb)
} else if (pbdev->summary_ind) {
pci_dereg_irqs(pbdev);
}
- if (pbdev->iommu->enabled) {
+ if (pbdev->iommu_enabled) {
pci_dereg_ioat(pbdev);
}
pbdev->state = ZPCI_FS_STANDBY;
@@ -554,7 +554,7 @@ static IOMMUTLBEntry s390_translate_iommu(IOMMUMemoryRegion *mr, hwaddr addr,
switch (pbdev->state) {
case ZPCI_FS_ENABLED:
case ZPCI_FS_BLOCKED:
- if (!iommu->enabled) {
+ if (!pbdev->iommu_enabled) {
return ret;
}
break;
@@ -783,7 +783,7 @@ void s390_pci_iommu_enable(S390PCIBusDevice *pbdev)
memory_region_init_iommu(&pbdev->iommu_mr, sizeof(pbdev->iommu_mr),
TYPE_S390_IOMMU_MEMORY_REGION, OBJECT(&iommu->mr),
name, iommu->pal + 1);
- iommu->enabled = true;
+ pbdev->iommu_enabled = true;
memory_region_add_subregion(&iommu->mr, 0, MEMORY_REGION(&pbdev->iommu_mr));
g_free(name);
}
@@ -806,7 +806,7 @@ void s390_pci_iommu_direct_map_enable(S390PCIBusDevice *pbdev)
memory_region_init_alias(pbdev->dm_mr, OBJECT(&iommu->mr), name,
get_system_memory(), 0,
s390_get_memory_limit(s390ms));
- iommu->enabled = true;
+ pbdev->iommu_enabled = true;
memory_region_add_subregion(&iommu->mr, pbdev->zpci_fn.sdma,
pbdev->dm_mr);
}
@@ -814,7 +814,7 @@ void s390_pci_iommu_direct_map_enable(S390PCIBusDevice *pbdev)
void s390_pci_iommu_disable(S390PCIBusDevice *pbdev)
{
S390PCIIOMMU *iommu = pbdev->iommu;
- iommu->enabled = false;
+ pbdev->iommu_enabled = false;
g_hash_table_remove_all(pbdev->iotlb);
if (pbdev->dm_mr) {
memory_region_del_subregion(&iommu->mr, pbdev->dm_mr);
@@ -1423,7 +1423,7 @@ static void s390_pcihost_reset(DeviceState *dev)
} else if (pbdev->summary_ind) {
pci_dereg_irqs(pbdev);
}
- if (pbdev->iommu->enabled) {
+ if (pbdev->iommu_enabled) {
pci_dereg_ioat(pbdev);
}
pbdev->state = ZPCI_FS_STANDBY;
@@ -1564,7 +1564,7 @@ static void s390_pci_device_reset(DeviceState *dev)
} else if (pbdev->summary_ind) {
pci_dereg_irqs(pbdev);
}
- if (pbdev->iommu->enabled) {
+ if (pbdev->iommu_enabled) {
pci_dereg_ioat(pbdev);
}
diff --git a/hw/s390x/s390-pci-inst.c b/hw/s390x/s390-pci-inst.c
index 8349b44dd4..4458eae681 100644
--- a/hw/s390x/s390-pci-inst.c
+++ b/hw/s390x/s390-pci-inst.c
@@ -1251,7 +1251,7 @@ int mpcifc_service_call(S390CPU *cpu, uint8_t r1, uint64_t fiba, uint8_t ar,
if (dmaas != 0) {
cc = ZPCI_PCI_LS_ERR;
s390_set_status_code(env, r1, ZPCI_MOD_ST_DMAAS_INVAL);
- } else if (pbdev->iommu->enabled) {
+ } else if (pbdev->iommu_enabled) {
cc = ZPCI_PCI_LS_ERR;
s390_set_status_code(env, r1, ZPCI_MOD_ST_SEQUENCE);
} else if (reg_ioat(env, pbdev, fib, ra)) {
@@ -1263,7 +1263,7 @@ int mpcifc_service_call(S390CPU *cpu, uint8_t r1, uint64_t fiba, uint8_t ar,
if (dmaas != 0) {
cc = ZPCI_PCI_LS_ERR;
s390_set_status_code(env, r1, ZPCI_MOD_ST_DMAAS_INVAL);
- } else if (!pbdev->iommu->enabled) {
+ } else if (!pbdev->iommu_enabled) {
cc = ZPCI_PCI_LS_ERR;
s390_set_status_code(env, r1, ZPCI_MOD_ST_SEQUENCE);
} else {
@@ -1274,7 +1274,7 @@ int mpcifc_service_call(S390CPU *cpu, uint8_t r1, uint64_t fiba, uint8_t ar,
if (dmaas != 0) {
cc = ZPCI_PCI_LS_ERR;
s390_set_status_code(env, r1, ZPCI_MOD_ST_DMAAS_INVAL);
- } else if (!pbdev->iommu->enabled) {
+ } else if (!pbdev->iommu_enabled) {
cc = ZPCI_PCI_LS_ERR;
s390_set_status_code(env, r1, ZPCI_MOD_ST_SEQUENCE);
} else {
@@ -1404,7 +1404,7 @@ int stpcifc_service_call(S390CPU *cpu, uint8_t r1, uint64_t fiba, uint8_t ar,
/* fallthrough */
case ZPCI_FS_ENABLED:
fib.fc |= 0x80;
- if (pbdev->iommu->enabled) {
+ if (pbdev->iommu_enabled) {
fib.fc |= 0x10;
}
if (!(fh & FH_MASK_ENABLE)) {
diff --git a/include/hw/s390x/s390-pci-bus.h b/include/hw/s390x/s390-pci-bus.h
index fcaaf19512..24f6e60786 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;
- bool enabled;
uint64_t g_iota;
uint64_t pba;
uint64_t pal;
@@ -350,6 +349,7 @@ struct S390PCIBusDevice {
S390MsixInfo msix;
AdapterRoutes routes;
S390PCIIOMMU *iommu;
+ bool iommu_enabled;
IOMMUMemoryRegion iommu_mr;
MemoryRegion *dm_mr;
GHashTable *iotlb;
--
2.34.1
next prev parent reply other threads:[~2026-06-05 2:20 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-06-05 2:17 [PATCH v3 00/15] s390x/pci: Implement migration for emulated devices Konstantin Shkolnyy
2026-06-05 2:17 ` [PATCH v3 01/15] s390x/pci: implement IOMMU replay Konstantin Shkolnyy
2026-06-09 22:07 ` Farhan Ali
2026-06-10 15:02 ` Matthew Rosato
2026-06-05 2:17 ` [PATCH v3 02/15] s390x/pci: Create function to contain translation status check Konstantin Shkolnyy
2026-06-05 2:17 ` [PATCH v3 03/15] s390x/pci: Move iommu_mr from S390PCIIOMMU to S390PCIBusDevice Konstantin Shkolnyy
2026-06-19 22:16 ` Farhan Ali
2026-06-05 2:17 ` [PATCH v3 04/15] s390x/pci: Move dm_mr " Konstantin Shkolnyy
2026-06-05 2:17 ` [PATCH v3 05/15] s390x/pci: Move iotlb " Konstantin Shkolnyy
2026-06-05 2:17 ` [PATCH v3 06/15] s390x/pci: Remove a ptr to S390PCIBusDevice from S390PCIIOMMU Konstantin Shkolnyy
2026-06-05 2:17 ` Konstantin Shkolnyy [this message]
2026-06-05 2:17 ` [PATCH v3 08/15] s390x/pci: Move dma_limit from S390PCIIOMMU to S390PCIBusDevice Konstantin Shkolnyy
2026-06-05 2:17 ` [PATCH v3 09/15] s390x/pci: Move g_iota " Konstantin Shkolnyy
2026-06-05 2:17 ` [PATCH v3 10/15] s390x/pci: Move pba " Konstantin Shkolnyy
2026-06-05 2:17 ` [PATCH v3 11/15] s390x/pci: Move pal " Konstantin Shkolnyy
2026-06-05 2:17 ` [PATCH v3 12/15] s390x/pci: Move max_dma_limit " Konstantin Shkolnyy
2026-06-05 2:17 ` [PATCH v3 13/15] s390x/pci: Add a comment explaining S390PCIIOMMU purpose Konstantin Shkolnyy
2026-06-19 17:39 ` Matthew Rosato
2026-06-19 22:32 ` Farhan Ali
2026-06-05 2:17 ` [PATCH v3 14/15] s390x/pci: Implement migration for emulated devices Konstantin Shkolnyy
2026-06-05 2:17 ` [PATCH v3 15/15] s390x/pci: Create function to contain fmb_timer start Konstantin Shkolnyy
2026-06-19 17:37 ` Matthew Rosato
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=20260605021728.1125090-8-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=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.