All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/15] iommu: Retire bus_set_iommu()
@ 2022-07-05 17:08 ` Robin Murphy
  0 siblings, 0 replies; 88+ messages in thread
From: Robin Murphy @ 2022-07-05 17:08 UTC (permalink / raw)
  To: joro
  Cc: will, iommu, linux-arm-kernel, baolu.lu, suravee.suthikulpanit,
	vasant.hegde, mjrosato, gerald.schaefer, schnelle, linux-s390,
	linux-kernel

v2: https://lore.kernel.org/linux-iommu/cover.1650890638.git.robin.murphy@arm.com/

Hi all,

Here's v3, now with working x86! Having finally made sense of how I
broke Intel, I've given AMD the same fix by inspection. I'm still not
100% sure about s390, but it looks like it should probably be OK since
it seems to register an IOMMU instance for each PCI device (?!) before
disappearing into PCI hotplug code, wherein I assume we should never see
a PCI device appear without its IOMMU already registered.

Otherwise, the only other updates are hooking up the new host1x context
bus (noting that it now takes all of 4 lines to support a whole new bus,
yay!), and a slight tweak to make sure we keep rejecting registration of
conflicting iommu_ops rather than needlessly change that just yet.

Thanks,
Robin.


Robin Murphy (15):
  iommu/vt-d: Handle race between registration and device probe
  iommu/amd: Handle race between registration and device probe
  iommu: Always register bus notifiers
  iommu: Move bus setup to IOMMU device registration
  iommu/amd: Clean up bus_set_iommu()
  iommu/arm-smmu: Clean up bus_set_iommu()
  iommu/arm-smmu-v3: Clean up bus_set_iommu()
  iommu/dart: Clean up bus_set_iommu()
  iommu/exynos: Clean up bus_set_iommu()
  iommu/ipmmu-vmsa: Clean up bus_set_iommu()
  iommu/mtk: Clean up bus_set_iommu()
  iommu/omap: Clean up bus_set_iommu()
  iommu/tegra-smmu: Clean up bus_set_iommu()
  iommu/virtio: Clean up bus_set_iommu()
  iommu: Clean up bus_set_iommu()

 drivers/iommu/amd/amd_iommu.h               |   1 -
 drivers/iommu/amd/init.c                    |   9 +-
 drivers/iommu/amd/iommu.c                   |  25 +----
 drivers/iommu/apple-dart.c                  |  30 +----
 drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c |  53 +--------
 drivers/iommu/arm/arm-smmu/arm-smmu.c       |  84 +-------------
 drivers/iommu/arm/arm-smmu/qcom_iommu.c     |   4 -
 drivers/iommu/exynos-iommu.c                |   9 --
 drivers/iommu/fsl_pamu_domain.c             |   4 -
 drivers/iommu/intel/iommu.c                 |   4 +-
 drivers/iommu/iommu.c                       | 117 +++++++++-----------
 drivers/iommu/ipmmu-vmsa.c                  |  35 +-----
 drivers/iommu/msm_iommu.c                   |   2 -
 drivers/iommu/mtk_iommu.c                   |  24 +---
 drivers/iommu/mtk_iommu_v1.c                |  13 +--
 drivers/iommu/omap-iommu.c                  |   6 -
 drivers/iommu/rockchip-iommu.c              |   2 -
 drivers/iommu/s390-iommu.c                  |   6 -
 drivers/iommu/sprd-iommu.c                  |   5 -
 drivers/iommu/sun50i-iommu.c                |   2 -
 drivers/iommu/tegra-smmu.c                  |  29 +----
 drivers/iommu/virtio-iommu.c                |  25 -----
 include/linux/iommu.h                       |   1 -
 23 files changed, 75 insertions(+), 415 deletions(-)

-- 
2.36.1.dirty


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

end of thread, other threads:[~2022-07-21  7:19 UTC | newest]

Thread overview: 88+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-07-05 17:08 [PATCH v3 00/15] iommu: Retire bus_set_iommu() Robin Murphy
2022-07-05 17:08 ` Robin Murphy
2022-07-05 17:08 ` [PATCH v3 01/15] iommu/vt-d: Handle race between registration and device probe Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-06  1:39   ` Baolu Lu
2022-07-06  1:39     ` Baolu Lu
2022-07-07  6:51   ` Tian, Kevin
2022-07-07  6:51     ` Tian, Kevin
2022-07-08  7:52   ` Baolu Lu
2022-07-08  7:52     ` Baolu Lu
2022-07-15 12:37     ` Robin Murphy
2022-07-15 12:37       ` Robin Murphy
2022-07-19  0:06       ` Lu Baolu
2022-07-19  0:06         ` Lu Baolu
2022-07-05 17:08 ` [PATCH v3 02/15] iommu/amd: " Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-05 17:08 ` [PATCH v3 03/15] iommu: Always register bus notifiers Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-06  1:53   ` Baolu Lu
2022-07-06  1:53     ` Baolu Lu
2022-07-06 13:43     ` Robin Murphy
2022-07-06 13:43       ` Robin Murphy
2022-07-07  0:20       ` Baolu Lu
2022-07-07  0:20         ` Baolu Lu
2022-07-07  6:34         ` Tian, Kevin
2022-07-07  6:34           ` Tian, Kevin
2022-07-07  9:38           ` Robin Murphy
2022-07-07  9:38             ` Robin Murphy
2022-07-07  6:31   ` Tian, Kevin
2022-07-07  6:31     ` Tian, Kevin
2022-07-07  9:58     ` Robin Murphy
2022-07-07  9:58       ` Robin Murphy
2022-07-08  5:50       ` Tian, Kevin
2022-07-08  5:50         ` Tian, Kevin
2022-07-05 17:08 ` [PATCH v3 04/15] iommu: Move bus setup to IOMMU device registration Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-06  2:35   ` Baolu Lu
2022-07-06  2:35     ` Baolu Lu
2022-07-06 14:37     ` Robin Murphy
2022-07-06 14:37       ` Robin Murphy
2022-07-07  1:19       ` Baolu Lu
2022-07-07  1:19         ` Baolu Lu
2022-07-07  6:51   ` Tian, Kevin
2022-07-07  6:51     ` Tian, Kevin
2022-07-07 10:58     ` Robin Murphy
2022-07-07 10:58       ` Robin Murphy
2022-07-08  5:52       ` Tian, Kevin
2022-07-08  5:52         ` Tian, Kevin
2022-07-05 17:08 ` [PATCH v3 05/15] iommu/amd: Clean up bus_set_iommu() Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-05 17:08 ` [PATCH v3 06/15] iommu/arm-smmu: " Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-05 17:08 ` [PATCH v3 07/15] iommu/arm-smmu-v3: " Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-05 17:08 ` [PATCH v3 08/15] iommu/dart: " Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-05 17:08 ` [PATCH v3 09/15] iommu/exynos: " Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-05 17:08 ` [PATCH v3 10/15] iommu/ipmmu-vmsa: " Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-05 17:08 ` [PATCH v3 11/15] iommu/mtk: " Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-05 17:08 ` [PATCH v3 12/15] iommu/omap: " Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-05 17:08 ` [PATCH v3 13/15] iommu/tegra-smmu: " Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-05 17:08 ` [PATCH v3 14/15] iommu/virtio: " Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-05 17:08 ` [PATCH v3 15/15] iommu: " Robin Murphy
2022-07-05 17:08   ` Robin Murphy
2022-07-07  7:45   ` Tian, Kevin
2022-07-07  7:45     ` Tian, Kevin
2022-07-07 12:49   ` Matthew Rosato
2022-07-07 12:49     ` Matthew Rosato
2022-07-07 12:54     ` Matthew Rosato
2022-07-07 12:54       ` Matthew Rosato
2022-07-07 14:58       ` Robin Murphy
2022-07-07 14:58         ` Robin Murphy
2022-07-07 16:42         ` Matthew Rosato
2022-07-07 16:42           ` Matthew Rosato
2022-07-08  8:14     ` [PATCH] iommu/s390: fail probe for non-pci device Niklas Schnelle
2022-07-08  8:14       ` Niklas Schnelle
2022-07-08  8:17 ` [PATCH v3 00/15] iommu: Retire bus_set_iommu() Niklas Schnelle
2022-07-08  8:17   ` Niklas Schnelle
2022-07-15 13:12 ` Robin Murphy
2022-07-15 13:12   ` Robin Murphy
2022-07-21  7:17   ` Tian, Kevin
2022-07-21  7:17     ` Tian, Kevin

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.