iommu.lists.linux-foundation.org archive mirror
 help / color / mirror / Atom feed
From: Jerry Snitselaar <jsnitsel@redhat.com>
To: Joerg Roedel <joro@8bytes.org>
Cc: iommu@lists.linux-foundation.org, linux-kernel@vger.kernel.org,
	Gary R Hook <ghook@amd.com>, Joerg Roedel <jroedel@suse.de>
Subject: Re: [PATCH v2] iommu/amd: Reserve exclusion range in iova-domain
Date: Fri, 29 Mar 2019 11:18:46 -0700	[thread overview]
Message-ID: <20190329181846.jjo2wijxkibfs35m@cantor> (raw)
In-Reply-To: <20190329151037.19112-1-joro@8bytes.org>

On Fri Mar 29 19, Joerg Roedel wrote:
>From: Joerg Roedel <jroedel@suse.de>
>
>If a device has an exclusion range specified in the IVRS
>table, this region needs to be reserved in the iova-domain
>of that device. This hasn't happened until now and can cause
>data corruption on data transfered with these devices.
>
>Treat exclusion ranges as reserved regions in the iommu-core
>to fix the problem.
>
>Fixes: be2a022c0dd0 ('x86, AMD IOMMU: add functions to parse IOMMU memory mapping requirements for devices')
>Signed-off-by: Joerg Roedel <jroedel@suse.de>
>---
> drivers/iommu/amd_iommu.c       | 9 ++++++---
> drivers/iommu/amd_iommu_init.c  | 7 ++++---
> drivers/iommu/amd_iommu_types.h | 2 ++
> 3 files changed, 12 insertions(+), 6 deletions(-)
>
>diff --git a/drivers/iommu/amd_iommu.c b/drivers/iommu/amd_iommu.c
>index 21cb088d6687..f7cdd2ab7f11 100644
>--- a/drivers/iommu/amd_iommu.c
>+++ b/drivers/iommu/amd_iommu.c
>@@ -3169,21 +3169,24 @@ static void amd_iommu_get_resv_regions(struct device *dev,
> 		return;
>
> 	list_for_each_entry(entry, &amd_iommu_unity_map, list) {
>+		int type, prot = 0;
> 		size_t length;
>-		int prot = 0;
>
> 		if (devid < entry->devid_start || devid > entry->devid_end)
> 			continue;
>
>+		type   = IOMMU_RESV_DIRECT;
> 		length = entry->address_end - entry->address_start;
> 		if (entry->prot & IOMMU_PROT_IR)
> 			prot |= IOMMU_READ;
> 		if (entry->prot & IOMMU_PROT_IW)
> 			prot |= IOMMU_WRITE;
>+		if (entry->prot & IOMMU_UNITY_MAP_FLAG_EXCL_RANGE)
>+			/* Exclusion range */
>+			type = IOMMU_RESV_RESERVED;
>
> 		region = iommu_alloc_resv_region(entry->address_start,
>-						 length, prot,
>-						 IOMMU_RESV_DIRECT);
>+						 length, prot, type);
> 		if (!region) {
> 			dev_err(dev, "Out of memory allocating dm-regions\n");
> 			return;
>diff --git a/drivers/iommu/amd_iommu_init.c b/drivers/iommu/amd_iommu_init.c
>index f773792d77fd..1b1378619fc9 100644
>--- a/drivers/iommu/amd_iommu_init.c
>+++ b/drivers/iommu/amd_iommu_init.c
>@@ -2013,6 +2013,9 @@ static int __init init_unity_map_range(struct ivmd_header *m)
> 	if (e == NULL)
> 		return -ENOMEM;
>
>+	if (m->flags & IVMD_FLAG_EXCL_RANGE)
>+		init_exclusion_range(m);
>+
> 	switch (m->type) {
> 	default:
> 		kfree(e);
>@@ -2059,9 +2062,7 @@ static int __init init_memory_definitions(struct acpi_table_header *table)
>
> 	while (p < end) {
> 		m = (struct ivmd_header *)p;
>-		if (m->flags & IVMD_FLAG_EXCL_RANGE)
>-			init_exclusion_range(m);
>-		else if (m->flags & IVMD_FLAG_UNITY_MAP)
>+		if (m->flags & (IVMD_FLAG_UNITY_MAP | IVMD_FLAG_EXCL_RANGE))
> 			init_unity_map_range(m);
>
> 		p += m->length;
>diff --git a/drivers/iommu/amd_iommu_types.h b/drivers/iommu/amd_iommu_types.h
>index eae0741f72dc..87965e4d9647 100644
>--- a/drivers/iommu/amd_iommu_types.h
>+++ b/drivers/iommu/amd_iommu_types.h
>@@ -374,6 +374,8 @@
> #define IOMMU_PROT_IR 0x01
> #define IOMMU_PROT_IW 0x02
>
>+#define IOMMU_UNITY_MAP_FLAG_EXCL_RANGE	(1 << 2)
>+
> /* IOMMU capabilities */
> #define IOMMU_CAP_IOTLB   24
> #define IOMMU_CAP_NPCACHE 26
>-- 
>2.16.4
>

Reviewed-by: Jerry Snitselaar <jsnitsel@redhat.com>

  parent reply	other threads:[~2019-03-29 18:18 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-03-29 15:10 [PATCH v2] iommu/amd: Reserve exclusion range in iova-domain Joerg Roedel
2019-03-29 16:00 ` Gary R Hook
2019-03-29 18:18 ` Jerry Snitselaar [this message]
2019-04-02 20:20 ` Jerry Snitselaar

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=20190329181846.jjo2wijxkibfs35m@cantor \
    --to=jsnitsel@redhat.com \
    --cc=ghook@amd.com \
    --cc=iommu@lists.linux-foundation.org \
    --cc=joro@8bytes.org \
    --cc=jroedel@suse.de \
    --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;
as well as URLs for NNTP newsgroup(s).