All of lore.kernel.org
 help / color / mirror / Atom feed
From: Will Deacon <will@kernel.org>
To: torvalds@linux-foundation.org
Cc: iommu <iommu@lists.linux-foundation.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	Joerg Roedel <joro@8bytes.org>,
	Alex Williamson <alex.williamson@redhat.com>,
	Robin Murphy <robin.murphy@arm.com>,
	Lu Baolu <baolu.lu@linux.intel.com>
Subject: [GIT PULL] IOMMU fixes for -rc3
Date: Fri, 8 Jan 2021 14:39:51 +0000	[thread overview]
Message-ID: <20210108143951.GA4867@willie-the-truck> (raw)

Hi Linus,

Please pull these IOMMU fixes for -rc3. It's mainly all Intel VT-D stuff,
but there are some fixes for AMD and ARM as well. We've also got the
revert I promised during the merge window, which removes a temporary
hack to accomodate i915 while we transitioned the Intel IOMMU driver
over to the common DMA-IOMMU API.

Finally, there are still a couple of other VT-D fixes floating around, so I
expect to send you another batch of fixes next week.

Cheers,

Will

--->8

The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:

  Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git tags/iommu-fixes

for you to fetch changes up to 7c29ada5e70083805bc3a68daa23441df421fbee:

  iommu/vt-d: Fix ineffective devTLB invalidation for subdevices (2021-01-07 14:38:15 +0000)

----------------------------------------------------------------
iommu fixes for -rc3

- Fix VT-D TLB invalidation for subdevices

- Fix VT-D use-after-free on subdevice detach

- Fix VT-D locking so that IRQs are disabled during SVA bind/unbind

- Fix VT-D address alignment when flushing IOTLB

- Fix memory leak in VT-D IRQ remapping failure path

- Revert temporary i915 sglist hack now that it is no longer required

- Fix sporadic boot failure with Arm SMMU on Qualcomm SM8150

- Fix NULL dereference in AMD IRQ remapping code with remapping disabled

- Fix accidental enabling of irqs on AMD resume-from-suspend path

- Fix some typos in comments

----------------------------------------------------------------
Bjorn Andersson (1):
      iommu/arm-smmu-qcom: Initialize SCTLR of the bypass context

David Woodhouse (2):
      iommu/amd: Set iommu->int_enabled consistently when interrupts are set up
      iommu/amd: Stop irq_remapping_select() matching when remapping is disabled

Dinghao Liu (1):
      iommu/intel: Fix memleak in intel_irq_remapping_alloc

Liu Yi L (3):
      iommu/vt-d: Move intel_iommu info from struct intel_svm to struct intel_svm_dev
      iommu/vt-d: Fix general protection fault in aux_detach_device()
      iommu/vt-d: Fix ineffective devTLB invalidation for subdevices

Lu Baolu (3):
      iommu/vt-d: Fix misuse of ALIGN in qi_flush_piotlb()
      Revert "iommu: Add quirk for Intel graphic devices in map_sg"
      iommu/vt-d: Fix lockdep splat in sva bind()/unbind()

Stefano Garzarella (1):
      iommu/iova: fix 'domain' typos

 drivers/iommu/amd/init.c                   |   3 +-
 drivers/iommu/amd/iommu.c                  |   3 +
 drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c |   2 +
 drivers/iommu/dma-iommu.c                  |  27 ------
 drivers/iommu/intel/dmar.c                 |   4 +-
 drivers/iommu/intel/iommu.c                | 148 +++++++++++++++++++++--------
 drivers/iommu/intel/irq_remapping.c        |   2 +
 drivers/iommu/intel/svm.c                  |  23 +++--
 drivers/iommu/iova.c                       |   8 +-
 include/linux/intel-iommu.h                |  18 ++--
 10 files changed, 147 insertions(+), 91 deletions(-)

WARNING: multiple messages have this Message-ID (diff)
From: Will Deacon <will@kernel.org>
To: torvalds@linux-foundation.org
Cc: Alex Williamson <alex.williamson@redhat.com>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	iommu <iommu@lists.linux-foundation.org>,
	Robin Murphy <robin.murphy@arm.com>
Subject: [GIT PULL] IOMMU fixes for -rc3
Date: Fri, 8 Jan 2021 14:39:51 +0000	[thread overview]
Message-ID: <20210108143951.GA4867@willie-the-truck> (raw)

Hi Linus,

Please pull these IOMMU fixes for -rc3. It's mainly all Intel VT-D stuff,
but there are some fixes for AMD and ARM as well. We've also got the
revert I promised during the merge window, which removes a temporary
hack to accomodate i915 while we transitioned the Intel IOMMU driver
over to the common DMA-IOMMU API.

Finally, there are still a couple of other VT-D fixes floating around, so I
expect to send you another batch of fixes next week.

Cheers,

Will

--->8

The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:

  Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/arm64/linux.git tags/iommu-fixes

for you to fetch changes up to 7c29ada5e70083805bc3a68daa23441df421fbee:

  iommu/vt-d: Fix ineffective devTLB invalidation for subdevices (2021-01-07 14:38:15 +0000)

----------------------------------------------------------------
iommu fixes for -rc3

- Fix VT-D TLB invalidation for subdevices

- Fix VT-D use-after-free on subdevice detach

- Fix VT-D locking so that IRQs are disabled during SVA bind/unbind

- Fix VT-D address alignment when flushing IOTLB

- Fix memory leak in VT-D IRQ remapping failure path

- Revert temporary i915 sglist hack now that it is no longer required

- Fix sporadic boot failure with Arm SMMU on Qualcomm SM8150

- Fix NULL dereference in AMD IRQ remapping code with remapping disabled

- Fix accidental enabling of irqs on AMD resume-from-suspend path

- Fix some typos in comments

----------------------------------------------------------------
Bjorn Andersson (1):
      iommu/arm-smmu-qcom: Initialize SCTLR of the bypass context

David Woodhouse (2):
      iommu/amd: Set iommu->int_enabled consistently when interrupts are set up
      iommu/amd: Stop irq_remapping_select() matching when remapping is disabled

Dinghao Liu (1):
      iommu/intel: Fix memleak in intel_irq_remapping_alloc

Liu Yi L (3):
      iommu/vt-d: Move intel_iommu info from struct intel_svm to struct intel_svm_dev
      iommu/vt-d: Fix general protection fault in aux_detach_device()
      iommu/vt-d: Fix ineffective devTLB invalidation for subdevices

Lu Baolu (3):
      iommu/vt-d: Fix misuse of ALIGN in qi_flush_piotlb()
      Revert "iommu: Add quirk for Intel graphic devices in map_sg"
      iommu/vt-d: Fix lockdep splat in sva bind()/unbind()

Stefano Garzarella (1):
      iommu/iova: fix 'domain' typos

 drivers/iommu/amd/init.c                   |   3 +-
 drivers/iommu/amd/iommu.c                  |   3 +
 drivers/iommu/arm/arm-smmu/arm-smmu-qcom.c |   2 +
 drivers/iommu/dma-iommu.c                  |  27 ------
 drivers/iommu/intel/dmar.c                 |   4 +-
 drivers/iommu/intel/iommu.c                | 148 +++++++++++++++++++++--------
 drivers/iommu/intel/irq_remapping.c        |   2 +
 drivers/iommu/intel/svm.c                  |  23 +++--
 drivers/iommu/iova.c                       |   8 +-
 include/linux/intel-iommu.h                |  18 ++--
 10 files changed, 147 insertions(+), 91 deletions(-)
_______________________________________________
iommu mailing list
iommu@lists.linux-foundation.org
https://lists.linuxfoundation.org/mailman/listinfo/iommu

             reply	other threads:[~2021-01-08 14:40 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-01-08 14:39 Will Deacon [this message]
2021-01-08 14:39 ` [GIT PULL] IOMMU fixes for -rc3 Will Deacon
2021-01-08 23:49 ` pr-tracker-bot
2021-01-08 23:49   ` pr-tracker-bot

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=20210108143951.GA4867@willie-the-truck \
    --to=will@kernel.org \
    --cc=alex.williamson@redhat.com \
    --cc=baolu.lu@linux.intel.com \
    --cc=iommu@lists.linux-foundation.org \
    --cc=joro@8bytes.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robin.murphy@arm.com \
    --cc=torvalds@linux-foundation.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.