* [PATCH] iommu/dma: Map scatterlists more parsimoniously
@ 2015-11-11 14:54 Robin Murphy
2015-11-12 5:47 ` Yong Wu
0 siblings, 1 reply; 4+ messages in thread
From: Robin Murphy @ 2015-11-11 14:54 UTC (permalink / raw)
To: linux-arm-kernel
Whilst blindly assuming the worst case for segment boundaries and
aligning every segment individually is safe from the point of view
of respecting the device's parameters, it is also undeniably a waste
of IOVA space. Futhermore, the knock-on effects of more pages than
necessary being exposed to device access, additional overhead in page
table updates and TLB invalidations, etc., are even more undesirable.
Improve matters by taking the actual boundary mask into account to
actively detect the cases in which we really do need to adjust a
segment, and avoid wasting space in the remainder.
Signed-off-by: Robin Murphy <robin.murphy@arm.com>
---
Hi all,
I've given this some brief testing on Juno with USB and (via magic
PCI hacks) SATA to confirm that all the +1s and -1s at least seem to
be in the right places, so I'm throwing it out now for a head-start on
checking whether it also helps the media folks with the v4l portability
issues they're up against (I'm confident it should). If all goes well I
figure I'll repost next week based on rc1 instead of some random local
development commit.
Robin.
drivers/iommu/dma-iommu.c | 19 +++++++++++--------
1 file changed, 11 insertions(+), 8 deletions(-)
diff --git a/drivers/iommu/dma-iommu.c b/drivers/iommu/dma-iommu.c
index 3a20db4..821ebc4 100644
--- a/drivers/iommu/dma-iommu.c
+++ b/drivers/iommu/dma-iommu.c
@@ -441,6 +441,7 @@ int iommu_dma_map_sg(struct device *dev, struct scatterlist *sg,
struct scatterlist *s, *prev = NULL;
dma_addr_t dma_addr;
size_t iova_len = 0;
+ unsigned long mask = dma_get_seg_boundary(dev);
int i;
/*
@@ -460,17 +461,19 @@ int iommu_dma_map_sg(struct device *dev, struct scatterlist *sg,
s->length = s_length;
/*
- * The simple way to avoid the rare case of a segment
- * crossing the boundary mask is to pad the previous one
- * to end at a naturally-aligned IOVA for this one's size,
- * at the cost of potentially over-allocating a little.
+ * With a single size-aligned IOVA allocation, no segment risks
+ * crossing the boundary mask unless the total size exceeds
+ * the mask itself. The simple way to maintain alignment when
+ * that does happen is to pad the previous segment to end at the
+ * next boundary, at the cost of over-allocating a little.
*/
if (prev) {
- size_t pad_len = roundup_pow_of_two(s_length);
+ size_t pad_len = (mask - iova_len + 1) & mask;
- pad_len = (pad_len - iova_len) & (pad_len - 1);
- prev->length += pad_len;
- iova_len += pad_len;
+ if (pad_len && pad_len < s_length - 1) {
+ prev->length += pad_len;
+ iova_len += pad_len;
+ }
}
iova_len += s_length;
--
1.9.1
^ permalink raw reply related [flat|nested] 4+ messages in thread* [PATCH] iommu/dma: Map scatterlists more parsimoniously
2015-11-11 14:54 [PATCH] iommu/dma: Map scatterlists more parsimoniously Robin Murphy
@ 2015-11-12 5:47 ` Yong Wu
2015-12-10 12:49 ` Daniel Kurtz
0 siblings, 1 reply; 4+ messages in thread
From: Yong Wu @ 2015-11-12 5:47 UTC (permalink / raw)
To: linux-arm-kernel
On Wed, 2015-11-11 at 14:54 +0000, Robin Murphy wrote:
> Whilst blindly assuming the worst case for segment boundaries and
> aligning every segment individually is safe from the point of view
> of respecting the device's parameters, it is also undeniably a waste
> of IOVA space. Futhermore, the knock-on effects of more pages than
> necessary being exposed to device access, additional overhead in page
> table updates and TLB invalidations, etc., are even more undesirable.
>
> Improve matters by taking the actual boundary mask into account to
> actively detect the cases in which we really do need to adjust a
> segment, and avoid wasting space in the remainder.
>
> Signed-off-by: Robin Murphy <robin.murphy@arm.com>
> ---
>
> Hi all,
>
> I've given this some brief testing on Juno with USB and (via magic
> PCI hacks) SATA to confirm that all the +1s and -1s at least seem to
> be in the right places, so I'm throwing it out now for a head-start on
> checking whether it also helps the media folks with the v4l portability
> issues they're up against (I'm confident it should). If all goes well I
> figure I'll repost next week based on rc1 instead of some random local
> development commit.
>
> Robin.
It works well on MT8173. containing
VDA/VEA(VideoDecodeAccelerator/VideoEncodeAccelerator) unit test.
Tested-by: Yong Wu <yong.wu@mediatek.com>
>
> drivers/iommu/dma-iommu.c | 19 +++++++++++--------
> 1 file changed, 11 insertions(+), 8 deletions(-)
>
> diff --git a/drivers/iommu/dma-iommu.c b/drivers/iommu/dma-iommu.c
> index 3a20db4..821ebc4 100644
> --- a/drivers/iommu/dma-iommu.c
> +++ b/drivers/iommu/dma-iommu.c
> @@ -441,6 +441,7 @@ int iommu_dma_map_sg(struct device *dev, struct scatterlist *sg,
> struct scatterlist *s, *prev = NULL;
> dma_addr_t dma_addr;
> size_t iova_len = 0;
> + unsigned long mask = dma_get_seg_boundary(dev);
> int i;
>
> /*
> @@ -460,17 +461,19 @@ int iommu_dma_map_sg(struct device *dev, struct scatterlist *sg,
> s->length = s_length;
>
> /*
> - * The simple way to avoid the rare case of a segment
> - * crossing the boundary mask is to pad the previous one
> - * to end at a naturally-aligned IOVA for this one's size,
> - * at the cost of potentially over-allocating a little.
> + * With a single size-aligned IOVA allocation, no segment risks
> + * crossing the boundary mask unless the total size exceeds
> + * the mask itself. The simple way to maintain alignment when
> + * that does happen is to pad the previous segment to end at the
> + * next boundary, at the cost of over-allocating a little.
> */
> if (prev) {
> - size_t pad_len = roundup_pow_of_two(s_length);
> + size_t pad_len = (mask - iova_len + 1) & mask;
>
> - pad_len = (pad_len - iova_len) & (pad_len - 1);
> - prev->length += pad_len;
> - iova_len += pad_len;
> + if (pad_len && pad_len < s_length - 1) {
> + prev->length += pad_len;
> + iova_len += pad_len;
> + }
> }
>
> iova_len += s_length;
^ permalink raw reply [flat|nested] 4+ messages in thread* [PATCH] iommu/dma: Map scatterlists more parsimoniously
2015-11-12 5:47 ` Yong Wu
@ 2015-12-10 12:49 ` Daniel Kurtz
2016-02-02 7:04 ` Daniel Kurtz
0 siblings, 1 reply; 4+ messages in thread
From: Daniel Kurtz @ 2015-12-10 12:49 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Nov 12, 2015 at 1:47 PM, Yong Wu <yong.wu@mediatek.com> wrote:
> On Wed, 2015-11-11 at 14:54 +0000, Robin Murphy wrote:
>> Whilst blindly assuming the worst case for segment boundaries and
>> aligning every segment individually is safe from the point of view
>> of respecting the device's parameters, it is also undeniably a waste
>> of IOVA space. Futhermore, the knock-on effects of more pages than
"Furthermore" (checkpatch actually caught this, not me ;-) )
>> necessary being exposed to device access, additional overhead in page
>> table updates and TLB invalidations, etc., are even more undesirable.
>>
>> Improve matters by taking the actual boundary mask into account to
>> actively detect the cases in which we really do need to adjust a
>> segment, and avoid wasting space in the remainder.
>>
>> Signed-off-by: Robin Murphy <robin.murphy@arm.com>
>> ---
>>
>> Hi all,
>>
>> I've given this some brief testing on Juno with USB and (via magic
>> PCI hacks) SATA to confirm that all the +1s and -1s at least seem to
>> be in the right places, so I'm throwing it out now for a head-start on
>> checking whether it also helps the media folks with the v4l portability
>> issues they're up against (I'm confident it should). If all goes well I
>> figure I'll repost next week based on rc1 instead of some random local
>> development commit.
>>
>> Robin.
>
> It works well on MT8173. containing
> VDA/VEA(VideoDecodeAccelerator/VideoEncodeAccelerator) unit test.
>
> Tested-by: Yong Wu <yong.wu@mediatek.com>
Reviewed-by: Daniel Kurtz <djkurtz@chromium.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH] iommu/dma: Map scatterlists more parsimoniously
2015-12-10 12:49 ` Daniel Kurtz
@ 2016-02-02 7:04 ` Daniel Kurtz
0 siblings, 0 replies; 4+ messages in thread
From: Daniel Kurtz @ 2016-02-02 7:04 UTC (permalink / raw)
To: linux-arm-kernel
On Thu, Dec 10, 2015 at 8:49 PM, Daniel Kurtz <djkurtz@chromium.org> wrote:
> On Thu, Nov 12, 2015 at 1:47 PM, Yong Wu <yong.wu@mediatek.com> wrote:
>> On Wed, 2015-11-11 at 14:54 +0000, Robin Murphy wrote:
>>> Whilst blindly assuming the worst case for segment boundaries and
>>> aligning every segment individually is safe from the point of view
>>> of respecting the device's parameters, it is also undeniably a waste
>>> of IOVA space. Futhermore, the knock-on effects of more pages than
>
> "Furthermore" (checkpatch actually caught this, not me ;-) )
>
>>> necessary being exposed to device access, additional overhead in page
>>> table updates and TLB invalidations, etc., are even more undesirable.
>>>
>>> Improve matters by taking the actual boundary mask into account to
>>> actively detect the cases in which we really do need to adjust a
>>> segment, and avoid wasting space in the remainder.
>>>
>>> Signed-off-by: Robin Murphy <robin.murphy@arm.com>
>>> ---
>>>
>>> Hi all,
>>>
>>> I've given this some brief testing on Juno with USB and (via magic
>>> PCI hacks) SATA to confirm that all the +1s and -1s at least seem to
>>> be in the right places, so I'm throwing it out now for a head-start on
>>> checking whether it also helps the media folks with the v4l portability
>>> issues they're up against (I'm confident it should). If all goes well I
>>> figure I'll repost next week based on rc1 instead of some random local
>>> development commit.
>>>
>>> Robin.
>>
>> It works well on MT8173. containing
>> VDA/VEA(VideoDecodeAccelerator/VideoEncodeAccelerator) unit test.
>>
>> Tested-by: Yong Wu <yong.wu@mediatek.com>
>
> Reviewed-by: Daniel Kurtz <djkurtz@chromium.org>
Did this patch get lost?
Can we pick it up as a fix for v4.5?
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2016-02-02 7:04 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-11 14:54 [PATCH] iommu/dma: Map scatterlists more parsimoniously Robin Murphy
2015-11-12 5:47 ` Yong Wu
2015-12-10 12:49 ` Daniel Kurtz
2016-02-02 7:04 ` Daniel Kurtz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox