All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mykyta Poturai <Mykyta_Poturai@epam.com>
To: "xen-devel@lists.xenproject.org" <xen-devel@lists.xenproject.org>
Cc: "Mykyta Poturai" <Mykyta_Poturai@epam.com>,
	"Stefano Stabellini" <sstabellini@kernel.org>,
	"Julien Grall" <julien@xen.org>,
	"Bertrand Marquis" <bertrand.marquis@arm.com>,
	"Michal Orzel" <michal.orzel@amd.com>,
	"Jan Beulich" <jbeulich@suse.com>,
	"Roger Pau Monné" <roger.pau@citrix.com>,
	"Rahul Singh" <rahul.singh@arm.com>,
	"Volodymyr Babchuk" <Volodymyr_Babchuk@epam.com>,
	"Andrew Cooper" <andrew.cooper3@citrix.com>,
	"Anthony PERARD" <anthony.perard@vates.tech>
Subject: [PATCH v9 0/8] SMMU handling for PCIe Passthrough on ARM
Date: Fri, 14 Mar 2025 13:34:49 +0000	[thread overview]
Message-ID: <cover.1741958647.git.mykyta_poturai@epam.com> (raw)

This series introduces SMMU handling for PCIe passthrough on ARM. These patches
should be able to be upstreamed independently from the vPCI series [1]. See [2]
for notes about test cases.

[1] https://lists.xenproject.org/archives/html/xen-devel/2023-10/msg00660.html
[2] https://lists.xenproject.org/archives/html/xen-devel/2023-06/msg01135.html

v8->v9:
* see individual patches

v7->v8:
* no changes

v6->v7:
* drop ("xen/arm: don't pass iommu properties to hwdom for iommu-map")

v5->v6:
* don't revert ("xen/arm: Add cmdline boot option "pci-passthrough = <boolean>"")
* add ("xen/arm: enable dom0 to use PCI devices with pci-passthrough=no")

v4->v5:
* drop ("xen/arm: Improve readability of check for registered devices")
* drop ("xen/arm: Move is_protected flag to struct device")
* add ("xen/arm: don't pass iommu properties to hwdom for iommu-map")
* add ("xen/arm: Fix mapping for PCI bridge mmio region")
* revert ("xen/arm: Add cmdline boot option "pci-passthrough = <boolean>"")
* add ("xen/arm: Map ITS doorbell register to IOMMU page tables.")
* fix test case #1 with PCI device in dom0

v3->v4:
* split a change from ("xen/arm: Move is_protected flag to struct device") into
  a new separate patch
* see individual patches for further details

v2->v3:
* drop "pci/arm: Use iommu_add_dt_pci_device()"
* drop "RFC: pci/arm: don't do iommu call for phantom functions"
* move invocation of sideband ID mapping function to add_device()
  platform_ops/iommu_ops hook


Oleksandr Andrushchenko (1):
  xen/arm: smmuv2: Add PCI devices support for SMMUv2

Oleksandr Tyshchenko (2):
  iommu/arm: Add iommu_dt_xlate()
  iommu/arm: Introduce iommu_add_dt_pci_sideband_ids API

Rahul Singh (3):
  xen/arm: smmuv3: Add PCI devices support for SMMUv3
  xen/arm: Fix mapping for PCI bridge mmio region
  xen/arm: Map ITS doorbell register to IOMMU page tables

Stewart Hildebrand (2):
  iommu/arm: iommu_add_dt_pci_sideband_ids phantom handling
  xen/arm: enable dom0 to use PCI devices with pci-passthrough=no

 xen/arch/arm/device.c                 |   2 +-
 xen/arch/arm/domain_build.c           |   2 +-
 xen/arch/arm/include/asm/pci.h        |   5 +-
 xen/arch/arm/pci/pci.c                |  11 +-
 xen/arch/arm/vgic-v3-its.c            |  20 +++
 xen/arch/x86/include/asm/pci.h        |   2 +-
 xen/common/device-tree/device-tree.c  |  91 ++++++++++++
 xen/drivers/passthrough/arm/smmu-v3.c | 117 ++++++++++++++--
 xen/drivers/passthrough/arm/smmu.c    | 190 ++++++++++++++++++++------
 xen/drivers/passthrough/device_tree.c |  91 ++++++++++--
 xen/drivers/passthrough/iommu.c       |  15 ++
 xen/drivers/pci/physdev.c             |   4 +-
 xen/include/xen/device_tree.h         |  23 ++++
 xen/include/xen/iommu.h               |  40 +++++-
 xen/include/xen/pci.h                 |   2 +-
 15 files changed, 534 insertions(+), 81 deletions(-)

-- 
2.34.1


             reply	other threads:[~2025-03-14 13:35 UTC|newest]

Thread overview: 37+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-03-14 13:34 Mykyta Poturai [this message]
2025-03-14 13:34 ` [PATCH v9 2/8] iommu/arm: Introduce iommu_add_dt_pci_sideband_ids API Mykyta Poturai
2025-03-17 14:56   ` Jan Beulich
2025-03-19 15:21     ` Mykyta Poturai
2025-03-19 15:28       ` Jan Beulich
2025-03-20 10:47         ` Mykyta Poturai
2025-03-20 11:02           ` Jan Beulich
2025-04-21 23:37             ` Stefano Stabellini
2025-03-14 13:34 ` [PATCH v9 1/8] iommu/arm: Add iommu_dt_xlate() Mykyta Poturai
2025-04-22  0:39   ` Stefano Stabellini
2025-03-14 13:34 ` [PATCH v9 3/8] iommu/arm: iommu_add_dt_pci_sideband_ids phantom handling Mykyta Poturai
2025-04-21 23:50   ` Stefano Stabellini
2025-03-14 13:34 ` [PATCH v9 4/8] xen/arm: smmuv2: Add PCI devices support for SMMUv2 Mykyta Poturai
2025-04-22  0:18   ` Stefano Stabellini
2025-03-14 13:34 ` [PATCH v9 7/8] xen/arm: enable dom0 to use PCI devices with pci-passthrough=no Mykyta Poturai
2025-03-17 15:07   ` Jan Beulich
2025-03-21 10:56     ` Mykyta Poturai
2025-03-21 13:41       ` Jan Beulich
2025-03-21 14:50         ` Mykyta Poturai
2025-03-21 15:03           ` Jan Beulich
2025-04-28  8:21     ` Mykyta Poturai
2025-04-28  9:01       ` Jan Beulich
2025-04-28 11:26         ` Mykyta Poturai
2025-04-28 11:36           ` Jan Beulich
2025-04-22  0:25   ` Stefano Stabellini
2025-04-28  8:54   ` Julien Grall
2025-04-28 12:31     ` Mykyta Poturai
2025-04-28 12:55       ` Julien Grall
2025-04-28 14:28         ` Mykyta Poturai
2025-04-28 18:15           ` Julien Grall
2025-04-29 11:48             ` Mykyta Poturai
2025-03-14 13:34 ` [PATCH v9 5/8] xen/arm: smmuv3: Add PCI devices support for SMMUv3 Mykyta Poturai
2025-04-22  0:20   ` Stefano Stabellini
2025-03-14 13:34 ` [PATCH v9 6/8] xen/arm: Fix mapping for PCI bridge mmio region Mykyta Poturai
2025-03-14 13:34 ` [PATCH v9 8/8] xen/arm: Map ITS doorbell register to IOMMU page tables Mykyta Poturai
2025-04-16 10:52   ` Julien Grall
2025-04-22  0:31   ` Stefano Stabellini

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=cover.1741958647.git.mykyta_poturai@epam.com \
    --to=mykyta_poturai@epam.com \
    --cc=Volodymyr_Babchuk@epam.com \
    --cc=andrew.cooper3@citrix.com \
    --cc=anthony.perard@vates.tech \
    --cc=bertrand.marquis@arm.com \
    --cc=jbeulich@suse.com \
    --cc=julien@xen.org \
    --cc=michal.orzel@amd.com \
    --cc=rahul.singh@arm.com \
    --cc=roger.pau@citrix.com \
    --cc=sstabellini@kernel.org \
    --cc=xen-devel@lists.xenproject.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.