All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/19] Fix Intel IOMMU breakage in kdump kernel
@ 2015-06-13  6:47 ` Joerg Roedel
  0 siblings, 0 replies; 49+ messages in thread
From: Joerg Roedel @ 2015-06-13  6:47 UTC (permalink / raw)
  To: iommu
  Cc: David Woodhouse, zhen-hual, bhe, ddutile, alex.williamson,
	dyoung, linux-kernel, jroedel, joro

Hi,

as David Woodhouse pointed out, my fixes and cleanups for
the original patch-set turned out to be a complete rewrite.
So to have a cleaner history of the feature and to make
backporting easier, here is a rewrite of my changes based on
v4.1-rc7.

Some additional issues have been fixed by this rewrite, like
a kdump-kernel boot panic with 'iommu=pt' and support for
copying the extended root-entry and context table formats
has been added.

I plan to rebuild the x86/vt-d branch of the iommu tree with
these patches.

Regards,

	Joerg

Joerg Roedel (19):
  iommu/vt-d: Cleanup log messages
  iommu/vt-d: Init QI before root entry is allocated
  iommu/vt-d: Make root entry visible for hardware right after
    allocation
  iommu/vt-d: Detect pre enabled translation
  iommu/vt-d: Copy translation tables from old kernel
  iommu/vt-d: Do not re-use domain-ids from the old kernel
  iommu/vt-d: Mark copied context entries
  iommu/vt-d: Allocate si_domain in init_dmars()
  iommu/vt-d: Don't do early domain assignment if kdump kernel
  iommu/vt-d: Don't copy translation tables if RTT bit needs to be
    changed
  iommu/vt-d: Don't disable translation prior to OS handover
  iommu/vt-d: Enable Translation only if it was previously disabled
  iommu/vt-d: Move EIM detection to intel_prepare_irq_remapping
  iommu/vt-d: Move QI initializationt to intel_setup_irq_remapping
  iommu/vt-d: Disable IRQ remapping in intel_prepare_irq_remapping
  iommu/vt-d: Set IRTA in intel_setup_irq_remapping
  iommu/vt-d: Copy IR table from old kernel when in kdump mode
  iommu/vt-d: Make sure copied over IR entries are not reused
  iommu/vt-d: Don't disable IR when it was previously enabled

 drivers/iommu/dmar.c                |  28 +-
 drivers/iommu/intel-iommu.c         | 495 ++++++++++++++++++++++++++++--------
 drivers/iommu/intel_irq_remapping.c | 255 ++++++++++++-------
 include/linux/intel-iommu.h         |   5 +
 4 files changed, 573 insertions(+), 210 deletions(-)

-- 
1.9.1


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

end of thread, other threads:[~2015-06-25  8:06 UTC | newest]

Thread overview: 49+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-06-13  6:47 [PATCH 00/19] Fix Intel IOMMU breakage in kdump kernel Joerg Roedel
2015-06-13  6:47 ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 01/19] iommu/vt-d: Cleanup log messages Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 02/19] iommu/vt-d: Init QI before root entry is allocated Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 03/19] iommu/vt-d: Make root entry visible for hardware right after allocation Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 04/19] iommu/vt-d: Detect pre enabled translation Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 05/19] iommu/vt-d: Copy translation tables from old kernel Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 06/19] iommu/vt-d: Do not re-use domain-ids from the " Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 07/19] iommu/vt-d: Mark copied context entries Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 08/19] iommu/vt-d: Allocate si_domain in init_dmars() Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 09/19] iommu/vt-d: Don't do early domain assignment if kdump kernel Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 10/19] iommu/vt-d: Don't copy translation tables if RTT bit needs to be changed Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 11/19] iommu/vt-d: Don't disable translation prior to OS handover Joerg Roedel
2015-06-13  6:47 ` [PATCH 12/19] iommu/vt-d: Enable Translation only if it was previously disabled Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 13/19] iommu/vt-d: Move EIM detection to intel_prepare_irq_remapping Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 14/19] iommu/vt-d: Move QI initializationt to intel_setup_irq_remapping Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 15/19] iommu/vt-d: Disable IRQ remapping in intel_prepare_irq_remapping Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 16/19] iommu/vt-d: Set IRTA in intel_setup_irq_remapping Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 17/19] iommu/vt-d: Copy IR table from old kernel when in kdump mode Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 18/19] iommu/vt-d: Make sure copied over IR entries are not reused Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-13  6:47 ` [PATCH 19/19] iommu/vt-d: Don't disable IR when it was previously enabled Joerg Roedel
2015-06-13  6:47   ` Joerg Roedel
2015-06-23 13:31 ` [PATCH 00/19] Fix Intel IOMMU breakage in kdump kernel David Woodhouse
2015-06-23 14:06   ` Joerg Roedel
2015-06-23 14:06     ` Joerg Roedel
2015-06-23 14:38     ` David Woodhouse
2015-06-23 14:38       ` David Woodhouse
2015-06-25  6:35       ` Li, ZhenHua
2015-06-25  6:35         ` Li, ZhenHua
2015-06-25  8:06         ` David Woodhouse
2015-06-25  6:40 ` Li, ZhenHua
2015-06-25  6:40   ` Li, ZhenHua

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.