Linux IOMMU Development
 help / color / mirror / Atom feed
From: Robin Murphy <robin.murphy-5wv7dgnIgG8@public.gmane.org>
To: Yong Wu <yong.wu-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>
Cc: "laurent.pinchart+renesas-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org"
	<laurent.pinchart+renesas-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org>,
	"arnd-r2nGTMty4D4@public.gmane.org"
	<arnd-r2nGTMty4D4@public.gmane.org>,
	Catalin Marinas <Catalin.Marinas-5wv7dgnIgG8@public.gmane.org>,
	Will Deacon <Will.Deacon-5wv7dgnIgG8@public.gmane.org>,
	"tiffany.lin-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org"
	<tiffany.lin-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>,
	"iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org"
	<iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org>,
	"djkurtz-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org"
	<djkurtz-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>,
	"thunder.leizhen-hv44wF8Li93QT0dZR+AlfA@public.gmane.org"
	<thunder.leizhen-hv44wF8Li93QT0dZR+AlfA@public.gmane.org>,
	"yingjoe.chen-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org"
	<yingjoe.chen-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org>,
	"treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org"
	<treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>,
	"linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org"
	<linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org>
Subject: Re: [PATCH 2/4] iommu: Implement common IOMMU ops for DMA mapping
Date: Fri, 29 May 2015 18:13:36 +0100	[thread overview]
Message-ID: <55689E40.7010604@arm.com> (raw)
In-Reply-To: <1432877219.721.237.camel@mhfsdcap03>

On 29/05/15 06:26, Yong Wu wrote:
> Hi Robin,
>      Thanks.
>
>      While we test venc in v4l2, we get a problem:

Thanks as always for testing!

>      When we enter the funtion[0], it will be break unexpectedly in the
> funcion[1] while the offset of sg table is not zero. It is ok if the
> offset is zero. Then I add more log in dma-iommu.c, please help check
> below.

Bah, non-zero offset was about the only scatterlist case I wasn't able 
to get out of the EHCI driver...

>      All we tested it based on dma v2. and have not tested it on v3 yet.
> The code of iommu-map-sg seems the same. if it's fixed in v3, I'm very
> sorry. The map_sg in mtk-iommu use default_iommu_map_sg.
>      Any question please tell me, Thanks very much.
>
> [0]http://lxr.free-electrons.com/source/drivers/media/v4l2-core/videobuf2-dma-contig.c#L564	[1]http://lxr.free-electrons.com/source/drivers/media/v4l2-core/videobuf2-dma-contig.c#L70
>
>
> On Wed, 2015-05-27 at 15:09 +0100, Robin Murphy wrote:
>> Taking inspiration from the existing arch/arm code, break out some
>> generic functions to interface the DMA-API to the IOMMU-API. This will
>> do the bulk of the heavy lifting for IOMMU-backed dma-mapping.
>>
>> Signed-off-by: Robin Murphy <robin.murphy-5wv7dgnIgG8@public.gmane.org>
>> ---
>>   drivers/iommu/Kconfig     |   7 +
>>   drivers/iommu/Makefile    |   1 +
>>   drivers/iommu/dma-iommu.c | 560 ++++++++++++++++++++++++++++++++++++++++++++++
>>   include/linux/dma-iommu.h |  94 ++++++++
>>   4 files changed, 662 insertions(+)
>>   create mode 100644 drivers/iommu/dma-iommu.c
>>   create mode 100644 include/linux/dma-iommu.h
>>
> [snip]
>> +static int __finalise_sg(struct device *dev, struct scatterlist *sg, int nents,
>> +		dma_addr_t dma_addr)
>> +{
>> +	struct scatterlist *s, *seg = sg;
>> +	unsigned long seg_mask = dma_get_seg_boundary(dev);
>> +	unsigned int max_len = dma_get_max_seg_size(dev);
>> +	unsigned int seg_len = 0, seg_dma = 0;
>> +	int i, count = 1;
>> +
>> +	for_each_sg(sg, s, nents, i) {
>> +		/* Un-swizzling the fields here, hence the naming mismatch */
>> +		unsigned int s_offset = sg_dma_address(s);
>> +		unsigned int s_length = sg_dma_len(s);
>> +		unsigned int s_dma_len = s->length;
>> +
>> +		s->offset = s_offset;
>> +		s->length = s_length;
>> +		sg_dma_address(s) = DMA_ERROR_CODE;
>> +		sg_dma_len(s) = 0;
>> +
>> +		if (seg_len && (seg_dma + seg_len == dma_addr + s_offset) &&
>> +		    (seg_len + s_dma_len <= max_len) &&
>> +		    ((seg_dma & seg_mask) <= seg_mask - (seg_len + s_length))
>> +		   ) {
>> +			sg_dma_len(seg) += s_dma_len;
>> +		} else {
>> +			if (seg_len) {
>> +				seg = sg_next(seg);
>> +				count++;
>> +			}
>> +			sg_dma_len(seg) = s_dma_len;

Does changing this to
			sg_dma_len(seg) = s_dma_len - s_offset;

make things behave as expected? Since the new unmap code no longer 
relies on adding up the individual segments to equal the IOVA size I 
don't _think_ that'll break anything here.

Robin.

  parent reply	other threads:[~2015-05-29 17:13 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-05-27 14:09 [PATCH 0/4] arm64: IOMMU-backed DMA mapping Robin Murphy
     [not found] ` <cover.1432735420.git.robin.murphy-5wv7dgnIgG8@public.gmane.org>
2015-05-27 14:09   ` [PATCH 1/4] iommu/iova: Avoid over-allocating when size-aligned Robin Murphy
2015-05-27 14:09   ` [PATCH 2/4] iommu: Implement common IOMMU ops for DMA mapping Robin Murphy
     [not found]     ` <141cbb28b55e3d748c6426f56016c46e8cf93109.1432735420.git.robin.murphy-5wv7dgnIgG8@public.gmane.org>
2015-05-29  5:26       ` Yong Wu
2015-05-29  6:35         ` Yingjoe Chen
2015-05-29 17:13         ` Robin Murphy [this message]
2015-05-27 14:09   ` [PATCH 3/4] arm64: Add IOMMU dma_ops Robin Murphy
     [not found]     ` <cd32131caab8833f48180ee1df79c9da020c5a48.1432735420.git.robin.murphy-5wv7dgnIgG8@public.gmane.org>
2015-06-04 12:29       ` Yong Wu
2015-06-11 16:23         ` Robin Murphy
2015-05-27 14:09   ` [PATCH 4/4] arm64: Hook up " Robin Murphy
2015-05-29  9:03   ` [PATCH 0/4] arm64: IOMMU-backed DMA mapping Joerg Roedel

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=55689E40.7010604@arm.com \
    --to=robin.murphy-5wv7dgnigg8@public.gmane.org \
    --cc=Catalin.Marinas-5wv7dgnIgG8@public.gmane.org \
    --cc=Will.Deacon-5wv7dgnIgG8@public.gmane.org \
    --cc=arnd-r2nGTMty4D4@public.gmane.org \
    --cc=djkurtz-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org \
    --cc=iommu-cunTk1MwBs9QetFLy7KEm3xJsTq8ys+cHZ5vskTnxNA@public.gmane.org \
    --cc=laurent.pinchart+renesas-ryLnwIuWjnjg/C1BVhZhaw@public.gmane.org \
    --cc=linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org \
    --cc=thunder.leizhen-hv44wF8Li93QT0dZR+AlfA@public.gmane.org \
    --cc=tiffany.lin-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org \
    --cc=treding-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org \
    --cc=yingjoe.chen-NuS5LvNUpcJWk0Htik3J/w@public.gmane.org \
    --cc=yong.wu-NuS5LvNUpcJWk0Htik3J/w@public.gmane.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