From: Lu Baolu <baolu.lu@linux.intel.com>
To: Deepa Dinamani <deepa.kernel@gmail.com>,
joro@8bytes.org, linux-kernel@vger.kernel.org
Cc: baolu.lu@linux.intel.com, iommu@lists.linux-foundation.org,
dwmw2@infradead.org
Subject: Re: [PATCH] intel-iommu: Turn off translations at shutdown
Date: Fri, 8 Nov 2019 11:06:08 +0800 [thread overview]
Message-ID: <f3d7138b-b254-3c6d-b865-d3b6889aa896@linux.intel.com> (raw)
In-Reply-To: <20191107205914.10611-1-deepa.kernel@gmail.com>
Hi,
On 11/8/19 4:59 AM, Deepa Dinamani wrote:
> The intel-iommu driver assumes that the iommu state is
> cleaned up at the start of the new kernel.
> But, when we try to kexec boot something other than the
> Linux kernel, the cleanup cannot be relied upon.
> Hence, cleanup before we go down for reboot.
>
> Keeping the cleanup at initialization also, in case BIOS
> leaves the IOMMU enabled.
>
> I considered turning off iommu only during kexec reboot,
> but a clean shutdown seems always a good idea. But if
> someone wants to make it conditional, we can do that.
>
> Tested that before, the info message
> 'DMAR: Translation was enabled for <iommu> but we are not in kdump mode'
> would be reported for each iommu. The message will not appear when the
> DMA-remapping is not enabled on entry to the kernel.
>
> Signed-off-by: Deepa Dinamani <deepa.kernel@gmail.com>
> ---
> drivers/iommu/intel-iommu.c | 22 ++++++++++++++++++++++
> 1 file changed, 22 insertions(+)
>
> diff --git a/drivers/iommu/intel-iommu.c b/drivers/iommu/intel-iommu.c
> index fe8097078669..f0636b263722 100644
> --- a/drivers/iommu/intel-iommu.c
> +++ b/drivers/iommu/intel-iommu.c
> @@ -4764,6 +4764,26 @@ static void intel_disable_iommus(void)
> iommu_disable_translation(iommu);
> }
>
> +static void intel_iommu_shutdown(void)
> +{
> + struct dmar_drhd_unit *drhd;
> + struct intel_iommu *iommu = NULL;
> +
> + if (no_iommu || dmar_disabled)
> + return;
> +
> + down_write(&dmar_global_lock);
> +
> + /* Disable PMRs explicitly here. */
> + for_each_iommu(iommu, drhd)
> + iommu_disable_protect_mem_regions(iommu);
> +
> + /* Make sure the IOMMUs are switched off */
> + intel_disable_iommus();
> +
> + up_write(&dmar_global_lock);
> +}
> +
> static inline struct intel_iommu *dev_to_intel_iommu(struct device *dev)
> {
> struct iommu_device *iommu_dev = dev_to_iommu_device(dev);
> @@ -5013,6 +5033,8 @@ int __init intel_iommu_init(void)
> }
> up_write(&dmar_global_lock);
>
> + x86_platform.iommu_shutdown = intel_iommu_shutdown;
How about moving it to detect_intel_iommu() in drivers/iommu/dmar.c? And
make sure that it's included with CONFIG_X86_64.
Best regards,
baolu
> +
> #if defined(CONFIG_X86) && defined(CONFIG_SWIOTLB)
> /*
> * If the system has no untrusted device or the user has decided
>
next prev parent reply other threads:[~2019-11-08 3:09 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-11-07 20:59 [PATCH] intel-iommu: Turn off translations at shutdown Deepa Dinamani
2019-11-07 21:27 ` Deepa Dinamani
2019-11-08 3:07 ` Lu Baolu
2019-11-08 3:06 ` Lu Baolu [this message]
2019-11-08 22:28 ` Deepa Dinamani
2019-11-09 0:35 ` Lu Baolu
2019-11-08 7:54 ` David Woodhouse
2019-11-08 8:47 ` Zeng, Jason
2019-11-08 8:57 ` David Woodhouse
2019-11-08 9:11 ` Zeng, Jason
2019-11-08 22:48 ` Deepa Dinamani
2019-11-10 18:24 ` Deepa Dinamani
2019-11-10 20:36 ` Deepa Dinamani
2019-11-11 2:35 ` Zeng, Jason
2019-11-11 0:39 ` Zeng, Jason
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=f3d7138b-b254-3c6d-b865-d3b6889aa896@linux.intel.com \
--to=baolu.lu@linux.intel.com \
--cc=deepa.kernel@gmail.com \
--cc=dwmw2@infradead.org \
--cc=iommu@lists.linux-foundation.org \
--cc=joro@8bytes.org \
--cc=linux-kernel@vger.kernel.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox