linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [git pull] IOMMU Updates for Linux v5.18
@ 2022-03-24 10:04 Joerg Roedel
  2022-03-25  2:54 ` pr-tracker-bot
  0 siblings, 1 reply; 2+ messages in thread
From: Joerg Roedel @ 2022-03-24 10:04 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: Will Deacon, linux-kernel, iommu

[-- Attachment #1: Type: text/plain, Size: 7879 bytes --]

Hi Linus,

there is a conflict this time when merging the IOMMU tree updates. It is
in drivers/iommu/intel/iommu.c and comes from the fact that the tip-tree
patched functions in that file which get removed with these updates. So
the merge resolution is to use the changes from the IOMMU tree. With
that in mind, here are the IOMMU changes for v5.18:

The following changes since commit ffb217a13a2eaf6d5bd974fc83036a53ca69f1e2:

  Linux 5.17-rc7 (2022-03-06 14:28:31 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git tags/iommu-updates-v5.18

for you to fetch changes up to e17c6debd4b2d2d474074f83946f8c6522587566:

  Merge branches 'arm/mediatek', 'arm/msm', 'arm/renesas', 'arm/rockchip', 'arm/smmu', 'x86/vt-d' and 'x86/amd' into next (2022-03-08 12:21:31 +0100)

----------------------------------------------------------------
IOMMU Updates for Linux v5.18

Including:

	- IOMMU Core changes:
	  - Removal of aux domain related code as it is basically dead
	    and will be replaced by iommu-fd framework
	  - Split of iommu_ops to carry domain-specific call-backs
	    separatly
	  - Cleanup to remove useless ops->capable implementations
	  - Improve 32-bit free space estimate in iova allocator

	- Intel VT-d updates:
	  - Various cleanups of the driver
	  - Support for ATS of SoC-integrated devices listed in
	    ACPI/SATC table

	- ARM SMMU updates:
	  - Fix SMMUv3 soft lockup during continuous stream of events
	  - Fix error path for Qualcomm SMMU probe()
	  - Rework SMMU IRQ setup to prepare the ground for PMU support
	  - Minor cleanups and refactoring

	- AMD IOMMU driver:
	  - Some minor cleanups and error-handling fixes

	- Rockchip IOMMU driver:
	  - Use standard driver registration

	- MSM IOMMU driver:
	  - Minor cleanup and change to standard driver registration

	- Mediatek IOMMU driver:
	  - Fixes for IOTLB flushing logic

----------------------------------------------------------------
Andy Shevchenko (2):
      perf/smmuv3: Don't cast parameter in bit operations
      iommu/vt-d: Move intel_iommu_ops to header file

Christophe JAILLET (2):
      iommu/arm-smmu-v3: Avoid open coded arithmetic in memory allocation
      iommu/arm-smmu-v3: Simplify memory allocation

David Heidelberg (1):
      iommu/msm: Simplify with dev_err_probe()

Jiasheng Jiang (1):
      iommu/ipmmu-vmsa: Check for error num after setting mask

Joerg Roedel (3):
      Merge branch 'core' into x86/vt-d
      Merge tag 'arm-smmu-updates' of git://git.kernel.org/pub/scm/linux/kernel/git/will/linux into arm/smmu
      Merge branches 'arm/mediatek', 'arm/msm', 'arm/renesas', 'arm/rockchip', 'arm/smmu', 'x86/vt-d' and 'x86/amd' into next

John Garry (1):
      iommu/iova: Separate out rcache init

Lu Baolu (17):
      iommu/vt-d: Remove guest pasid related callbacks
      iommu: Remove guest pasid related interfaces and definitions
      iommu/vt-d: Remove aux-domain related callbacks
      iommu: Remove aux-domain related interfaces and iommu_ops
      iommu: Remove apply_resv_region
      drm/nouveau/device: Get right pgsize_bitmap of iommu_domain
      iommu: Use right way to retrieve iommu_ops
      iommu: Remove unused argument in is_attach_deferred
      iommu: Split struct iommu_ops
      iommu/vt-d: Remove intel_iommu::domains
      iommu/vt-d: Remove finding domain in dmar_insert_one_dev_info()
      iommu/vt-d: Remove iova_cache_get/put()
      iommu/vt-d: Remove domain and devinfo mempool
      iommu/vt-d: Remove DEFER_DEVICE_DOMAIN_INFO
      iommu/vt-d: Remove unnecessary includes
      iommu/vt-d: Remove unnecessary prototypes
      iommu/vt-d: Fix indentation of goto labels

Marco Bonelli (1):
      iommu/vt-d: Add missing "__init" for rmrr_sanity_check()

Miaoqian Lin (1):
      iommu/arm-smmu: Add missing pm_runtime_disable() in qcom_iommu_device_probe

Rafael J. Wysocki (1):
      iommu/vtd: Replace acpi_bus_get_device()

Robin Murphy (5):
      iommu: Remove trivial ops->capable implementations
      iommu/rockchip: : Use standard driver registration
      iommu/msm: Use standard driver registration
      iommu/iova: Improve 32-bit free space estimate
      iommu/arm-smmu: Account for PMU interrupts

Sebastian Reichel (1):
      iommu/mediatek: Always check runtime PM status in tlb flush range callback

Suravee Suthikulpanit (2):
      iommu/amd: Improve error handling for amd_iommu_init_pci
      iommu/amd: Improve amd_iommu_v2_exit()

Vasant Hegde (3):
      iommu/amd: Call memunmap in error path
      iommu/amd: Clean up function declarations
      iommu/amd: Remove unused struct fault.devid

Yian Chen (1):
      iommu/vt-d: Enable ATS for the devices in SATC table

Yong Wu (4):
      iommu/mediatek: Remove for_each_m4u in tlb_sync_all
      iommu/mediatek: Remove the power status checking in tlb flush all
      iommu/mediatek: Add tlb_lock in tlb_flush_all
      iommu/mediatek: Always tlb_flush_all when each PM resume

Yoshihiro Shimoda (2):
      dt-bindings: iommu: renesas,ipmmu-vmsa: add r8a779f0 support
      iommu/ipmmu-vmsa: Add support for R-Car Gen4

YueHaibing (1):
      iommu/vt-d: Remove unused function intel_svm_capable()

Zhou Guanghui (1):
      iommu/arm-smmu-v3: fix event handling soft lockup

 .../bindings/iommu/renesas,ipmmu-vmsa.yaml         |   4 +
 drivers/gpu/drm/nouveau/nvkm/engine/device/tegra.c |   2 +-
 drivers/iommu/amd/amd_iommu.h                      |   4 +-
 drivers/iommu/amd/init.c                           |  18 +-
 drivers/iommu/amd/iommu.c                          |  23 +-
 drivers/iommu/amd/iommu_v2.c                       |  37 +-
 drivers/iommu/apple-dart.c                         |  20 +-
 drivers/iommu/arm/arm-smmu-v3/arm-smmu-v3.c        |  45 +-
 drivers/iommu/arm/arm-smmu/arm-smmu.c              | 113 ++-
 drivers/iommu/arm/arm-smmu/arm-smmu.h              |   5 +-
 drivers/iommu/arm/arm-smmu/qcom_iommu.c            |  28 +-
 drivers/iommu/dma-iommu.c                          |   4 +
 drivers/iommu/exynos-iommu.c                       |  14 +-
 drivers/iommu/fsl_pamu_domain.c                    |  10 +-
 drivers/iommu/intel/debugfs.c                      |   6 +-
 drivers/iommu/intel/dmar.c                         |   5 +-
 drivers/iommu/intel/iommu.c                        | 999 +++------------------
 drivers/iommu/intel/pasid.c                        | 173 +---
 drivers/iommu/intel/pasid.h                        |   4 -
 drivers/iommu/intel/svm.c                          | 220 +----
 drivers/iommu/iommu.c                              | 339 +------
 drivers/iommu/iova.c                               |  78 +-
 drivers/iommu/ipmmu-vmsa.c                         |  32 +-
 drivers/iommu/msm_iommu.c                          |  74 +-
 drivers/iommu/mtk_iommu.c                          |  62 +-
 drivers/iommu/mtk_iommu_v1.c                       |  14 +-
 drivers/iommu/omap-iommu.c                         |  14 +-
 drivers/iommu/rockchip-iommu.c                     |  21 +-
 drivers/iommu/s390-iommu.c                         |  14 +-
 drivers/iommu/sprd-iommu.c                         |  18 +-
 drivers/iommu/sun50i-iommu.c                       |  18 +-
 drivers/iommu/tegra-gart.c                         |  24 +-
 drivers/iommu/tegra-smmu.c                         |  20 +-
 drivers/iommu/virtio-iommu.c                       |  14 +-
 drivers/perf/arm_smmuv3_pmu.c                      |   4 +-
 drivers/vdpa/vdpa_user/iova_domain.c               |  11 +
 include/linux/intel-iommu.h                        |  33 +-
 include/linux/intel-svm.h                          |  12 -
 include/linux/iommu.h                              | 181 ++--
 include/linux/iova.h                               |  15 +-
 include/uapi/linux/iommu.h                         | 181 ----
 41 files changed, 662 insertions(+), 2251 deletions(-)

Please pull.

Thanks,

	Joerg

[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [git pull] IOMMU Updates for Linux v5.18
  2022-03-24 10:04 [git pull] IOMMU Updates for Linux v5.18 Joerg Roedel
@ 2022-03-25  2:54 ` pr-tracker-bot
  0 siblings, 0 replies; 2+ messages in thread
From: pr-tracker-bot @ 2022-03-25  2:54 UTC (permalink / raw)
  To: Joerg Roedel; +Cc: Linus Torvalds, Will Deacon, linux-kernel, iommu

The pull request you sent on Thu, 24 Mar 2022 11:04:20 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu.git tags/iommu-updates-v5.18

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/34af78c4e616c359ed428d79fe4758a35d2c5473

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

end of thread, other threads:[~2022-03-25  2:54 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-03-24 10:04 [git pull] IOMMU Updates for Linux v5.18 Joerg Roedel
2022-03-25  2:54 ` pr-tracker-bot

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).