All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/19] [PULL REQUEST] Intel IOMMU updates for v6.13
@ 2024-11-04  1:40 Lu Baolu
  2024-11-04  1:40 ` [PATCH 01/19] iommu/vt-d: Add domain_alloc_paging support Lu Baolu
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: Lu Baolu @ 2024-11-04  1:40 UTC (permalink / raw)
  To: Joerg Roedel; +Cc: iommu, linux-kernel

Hi Joerg,

The following changes have been queued for v6.13-rc1. They are about new
features and code refactoring, including:

 - Add domain_alloc_paging support
 - Enable user space IOPFs in non-PASID and non-svm cases
 - Small code refactoring and cleanups

These patches are based on v6.12-rc6. The complete patches are also
available at:

https://github.com/LuBaolu/intel-iommu/commits/vtd-update-for-v6.13

Please consider them for iommu next.

Best regards,
baolu

Andy Shevchenko (1):
  iommu/vt-d: Increase buffer size for device name

Dr. David Alan Gilbert (1):
  iommu/vt-d: Remove unused dmar_msi_read

Jinjie Ruan (1):
  iommu/vt-d: Use PCI_DEVID() macro

Joel Granados (3):
  iommu/vt-d: Separate page request queue from SVM
  iommu/vt-d: Move IOMMU_IOPF into INTEL_IOMMU
  iommufd: Enable PRI when doing the iommufd_hwpt_alloc

Klaus Jensen (2):
  iommu/vt-d: Remove the pasid present check in prq_event_thread
  iommu/vt-d: Drop pasid requirement for prq initialization

Lu Baolu (8):
  iommu/vt-d: Add domain_alloc_paging support
  iommu/vt-d: Remove unused domain_alloc callback
  iommu/vt-d: Enhance compatibility check for paging domain attach
  iommu/vt-d: Remove domain_update_iommu_cap()
  iommu/vt-d: Remove domain_update_iommu_superpage()
  iommu/vt-d: Refactor first_level_by_default()
  iommu/vt-d: Refine intel_iommu_domain_alloc_user()
  iommu/vt-d: Drain PRQs when domain removed from RID

Yi Liu (1):
  iommu/vt-d: Drop s1_pgtbl from dmar_domain

Zhenzhong Duan (2):
  iommu/vt-d: Fix checks and print in dmar_fault_dump_ptes()
  iommu/vt-d: Fix checks and print in pgtable_walk()

 drivers/iommu/intel/Kconfig          |   2 +-
 drivers/iommu/intel/Makefile         |   2 +-
 drivers/iommu/intel/dmar.c           |  15 +-
 drivers/iommu/intel/iommu.c          | 404 +++++++--------------------
 drivers/iommu/intel/iommu.h          |  22 +-
 drivers/iommu/intel/irq_remapping.c  |   4 +-
 drivers/iommu/intel/nested.c         |   3 +-
 drivers/iommu/intel/pasid.c          |  34 +--
 drivers/iommu/intel/prq.c            | 396 ++++++++++++++++++++++++++
 drivers/iommu/intel/svm.c            | 397 --------------------------
 drivers/iommu/iommufd/hw_pagetable.c |   3 +-
 include/linux/dmar.h                 |   1 -
 12 files changed, 517 insertions(+), 766 deletions(-)
 create mode 100644 drivers/iommu/intel/prq.c

-- 
2.43.0


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

end of thread, other threads:[~2024-11-05 12:33 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-04  1:40 [PATCH 00/19] [PULL REQUEST] Intel IOMMU updates for v6.13 Lu Baolu
2024-11-04  1:40 ` [PATCH 01/19] iommu/vt-d: Add domain_alloc_paging support Lu Baolu
2024-11-04  1:40 ` [PATCH 02/19] iommu/vt-d: Remove unused domain_alloc callback Lu Baolu
2024-11-04  1:40 ` [PATCH 03/19] iommu/vt-d: Enhance compatibility check for paging domain attach Lu Baolu
2024-11-04  1:40 ` [PATCH 04/19] iommu/vt-d: Remove domain_update_iommu_cap() Lu Baolu
2024-11-04  1:40 ` [PATCH 05/19] iommu/vt-d: Remove domain_update_iommu_superpage() Lu Baolu
2024-11-04  1:40 ` [PATCH 06/19] iommu/vt-d: Refactor first_level_by_default() Lu Baolu
2024-11-04  1:40 ` [PATCH 07/19] iommu/vt-d: Refine intel_iommu_domain_alloc_user() Lu Baolu
2024-11-04  1:40 ` [PATCH 08/19] iommu/vt-d: Use PCI_DEVID() macro Lu Baolu
2024-11-04  1:40 ` [PATCH 09/19] iommu/vt-d: Increase buffer size for device name Lu Baolu
2024-11-04  1:40 ` [PATCH 10/19] iommu/vt-d: Remove unused dmar_msi_read Lu Baolu
2024-11-04  1:40 ` [PATCH 11/19] iommu/vt-d: Drop s1_pgtbl from dmar_domain Lu Baolu
2024-11-04  1:40 ` [PATCH 12/19] iommu/vt-d: Fix checks and print in dmar_fault_dump_ptes() Lu Baolu
2024-11-04  1:40 ` [PATCH 13/19] iommu/vt-d: Fix checks and print in pgtable_walk() Lu Baolu
2024-11-04  1:40 ` [PATCH 14/19] iommu/vt-d: Separate page request queue from SVM Lu Baolu
2024-11-04  1:40 ` [PATCH 15/19] iommu/vt-d: Remove the pasid present check in prq_event_thread Lu Baolu
2024-11-04  1:40 ` [PATCH 16/19] iommu/vt-d: Move IOMMU_IOPF into INTEL_IOMMU Lu Baolu
2024-11-04  1:40 ` [PATCH 17/19] iommufd: Enable PRI when doing the iommufd_hwpt_alloc Lu Baolu
2024-11-04  1:40 ` [PATCH 18/19] iommu/vt-d: Drop pasid requirement for prq initialization Lu Baolu
2024-11-04  1:40 ` [PATCH 19/19] iommu/vt-d: Drain PRQs when domain removed from RID Lu Baolu
2024-11-05 12:33 ` [PATCH 00/19] [PULL REQUEST] Intel IOMMU updates for v6.13 Joerg Roedel

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.