linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: will.deacon@arm.com (Will Deacon)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH 3/9] ARM: dma-mapping: convert DMA direction into IOMMU protection attributes
Date: Mon, 10 Jun 2013 19:34:39 +0100	[thread overview]
Message-ID: <1370889285-22799-4-git-send-email-will.deacon@arm.com> (raw)
In-Reply-To: <1370889285-22799-1-git-send-email-will.deacon@arm.com>

IOMMU mappings take a prot parameter, identifying the protection bits
to enforce on the newly created mapping (READ or WRITE). The ARM
dma-mapping framework currently just passes 0 as the prot argument,
resulting in faulting mappings.

This patch infers the protection attributes based on the direction of
the DMA transfer.

Cc: Marek Szyprowski <m.szyprowski@samsung.com>
Signed-off-by: Will Deacon <will.deacon@arm.com>
---
 arch/arm/mm/dma-mapping.c | 18 ++++++++++++++++--
 1 file changed, 16 insertions(+), 2 deletions(-)

diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c
index 6fb80cf..d119de7 100644
--- a/arch/arm/mm/dma-mapping.c
+++ b/arch/arm/mm/dma-mapping.c
@@ -1636,13 +1636,27 @@ static dma_addr_t arm_coherent_iommu_map_page(struct device *dev, struct page *p
 {
 	struct dma_iommu_mapping *mapping = dev->archdata.mapping;
 	dma_addr_t dma_addr;
-	int ret, len = PAGE_ALIGN(size + offset);
+	int ret, prot, len = PAGE_ALIGN(size + offset);
 
 	dma_addr = __alloc_iova(mapping, len);
 	if (dma_addr == DMA_ERROR_CODE)
 		return dma_addr;
 
-	ret = iommu_map(mapping->domain, dma_addr, page_to_phys(page), len, 0);
+	switch (dir) {
+	case DMA_BIDIRECTIONAL:
+		prot = IOMMU_READ | IOMMU_WRITE;
+		break;
+	case DMA_TO_DEVICE:
+		prot = IOMMU_READ;
+		break;
+	case DMA_FROM_DEVICE:
+		prot = IOMMU_WRITE;
+		break;
+	default:
+		prot = 0;
+	}
+
+	ret = iommu_map(mapping->domain, dma_addr, page_to_phys(page), len, prot);
 	if (ret < 0)
 		goto fail;
 
-- 
1.8.2.2

  parent reply	other threads:[~2013-06-10 18:34 UTC|newest]

Thread overview: 47+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-06-10 18:34 [PATCH 0/9] Add support for ARM SMMU architectures 1 and 2 Will Deacon
2013-06-10 18:34 ` [PATCH 1/9] dma: pl330: rip out broken, redundant ID probing Will Deacon
2013-06-11  4:40   ` Jassi Brar
2013-06-11  8:45     ` Will Deacon
2013-06-11 22:31   ` Grant Likely
2013-06-12  5:31   ` Vinod Koul
2013-06-10 18:34 ` [PATCH 2/9] dma: pl330: use dma_addr_t for describing bus addresses Will Deacon
2013-06-11  4:39   ` Jassi Brar
2013-06-11 22:32   ` Grant Likely
     [not found]   ` <CAJe_ZheKMVQgq42Vx5N1TXXdgFJ2sp50ixU30A7beXhmSVHnZQ@mail.gmail.com>
2013-06-12  5:31     ` Vinod Koul
2013-06-10 18:34 ` Will Deacon [this message]
2013-06-19  8:37   ` [PATCH 3/9] ARM: dma-mapping: convert DMA direction into IOMMU protection attributes Marek Szyprowski
2013-06-19  8:52     ` Will Deacon
2013-06-19  8:57       ` Marek Szyprowski
2013-06-25 10:12   ` Hiroshi Doyu
2013-06-25 11:37     ` Will Deacon
2013-06-25 11:52       ` Hiroshi Doyu
2013-06-25 12:34         ` Will Deacon
2013-06-10 18:34 ` [PATCH 4/9] ARM: dma-mapping: NULLify dev->archdata.mapping pointer on detach Will Deacon
2013-06-11  5:34   ` Hiroshi Doyu
2013-06-11  8:50     ` Will Deacon
2013-06-11  9:39       ` Hiroshi Doyu
2013-06-19  8:59         ` Marek Szyprowski
2013-06-10 18:34 ` [PATCH 5/9] arm64: pgtable: use pte_index instead of __pte_index Will Deacon
2013-06-10 18:34 ` [PATCH 6/9] arm64: device: add iommu pointer to device archdata Will Deacon
2013-06-10 18:34 ` [PATCH 7/9] documentation: iommu: add description of ARM System MMU binding Will Deacon
2013-06-12  8:44   ` Grant Likely
2013-06-20 20:08   ` Joerg Roedel
2013-06-21  9:57     ` Will Deacon
2013-06-21 13:55       ` Joerg Roedel
2013-06-21 16:41         ` Will Deacon
2013-06-25 19:18   ` Stuart Yoder
2013-06-26 13:39     ` Will Deacon
2013-06-26 16:19       ` Stuart Yoder
2013-06-26 17:42         ` Will Deacon
2013-06-27 18:22           ` Stuart Yoder
2013-06-28  9:06             ` Will Deacon
2013-06-28 16:03               ` Stuart Yoder
2013-06-10 18:34 ` [PATCH 8/9] iommu: add support for ARM Ltd. System MMU architecture Will Deacon
2013-06-20 21:26   ` Joerg Roedel
2013-06-21 10:23     ` Will Deacon
2013-06-21 14:13       ` Joerg Roedel
2013-06-21 15:00         ` Will Deacon
2013-06-21 15:30           ` Joerg Roedel
2013-06-21 16:40             ` Will Deacon
2013-06-10 18:34 ` [PATCH 9/9] MAINTAINERS: add entry for ARM system MMU driver Will Deacon
2013-06-12  8:45   ` Grant Likely

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=1370889285-22799-4-git-send-email-will.deacon@arm.com \
    --to=will.deacon@arm.com \
    --cc=linux-arm-kernel@lists.infradead.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).