* [PATCH v7 1/2] ARM: dma-mapping: Don't use outer_flush_range when the L2C is coherent
[not found] <1460064815-18933-1-git-send-email-gregory.clement@free-electrons.com>
@ 2016-04-07 21:33 ` Gregory CLEMENT
2016-04-07 22:09 ` Russell King - ARM Linux
0 siblings, 1 reply; 3+ messages in thread
From: Gregory CLEMENT @ 2016-04-07 21:33 UTC (permalink / raw)
To: Russell King - ARM Linux, Catalin Marinas
Cc: Jason Cooper, Andrew Lunn, Sebastian Hesselbarth, Gregory CLEMENT,
Nadav Haklai, Lior Amsalem, Thomas Petazzoni, Romain Perier,
Omri Itach, Marcin Wojtas, stable
When a L2 cache controller is used in a system that provides hardware
coherency, the entire outer cache operations are useless, and can be
skipped. Moreover, on some systems, it is harmful as it causes
deadlocks between the Marvell coherency mechanism, the Marvell PCIe
controller and the Cortex-A9.
In the current kernel implementation, the outer cache flush range
operation is triggered by the dma_alloc function.
This operation can be take place during runtime and in some
circumstances may lead to the PCIe/PL310 deadlock on Armada 375/38x
SoCs.
This patch extends the __dma_clear_buffer() function to receive a
boolean argument related to the coherency of the system. The same
things is done for the calling functions.
Reported-by: Nadav Haklai <nadavh@marvell.com>
Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
Cc: <stable@vger.kernel.org> # v3.16+
Tested-by: Marcin Wojtas <mw@semihalf.com>
---
arch/arm/mm/dma-mapping.c | 63 +++++++++++++++++++++++++++++------------------
1 file changed, 39 insertions(+), 24 deletions(-)
diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c
index deac58d5f1f7..0231ed295bb2 100644
--- a/arch/arm/mm/dma-mapping.c
+++ b/arch/arm/mm/dma-mapping.c
@@ -61,7 +61,7 @@ struct arm_dma_free_args {
struct arm_dma_allocator {
void *(*alloc)(struct arm_dma_alloc_args *args,
- struct page **ret_page);
+ struct page **ret_page, bool l2_coherent);
void (*free)(struct arm_dma_free_args *args);
};
@@ -274,7 +274,7 @@ static u64 get_coherent_dma_mask(struct device *dev)
return mask;
}
-static void __dma_clear_buffer(struct page *page, size_t size)
+static void __dma_clear_buffer(struct page *page, size_t size, bool l2_coherent)
{
/*
* Ensure that the allocated pages are zeroed, and that any data
@@ -291,12 +291,14 @@ static void __dma_clear_buffer(struct page *page, size_t size)
page++;
size -= PAGE_SIZE;
}
- outer_flush_range(base, end);
+ if (!l2_coherent)
+ outer_flush_range(base, end);
} else {
void *ptr = page_address(page);
memset(ptr, 0, size);
dmac_flush_range(ptr, ptr + size);
- outer_flush_range(__pa(ptr), __pa(ptr) + size);
+ if (!l2_coherent)
+ outer_flush_range(__pa(ptr), __pa(ptr) + size);
}
}
@@ -304,7 +306,8 @@ static void __dma_clear_buffer(struct page *page, size_t size)
* Allocate a DMA buffer for 'dev' of size 'size' using the
* specified gfp mask. Note that 'size' must be page aligned.
*/
-static struct page *__dma_alloc_buffer(struct device *dev, size_t size, gfp_t gfp)
+static struct page *__dma_alloc_buffer(struct device *dev, size_t size,
+ gfp_t gfp, bool l2_coherent)
{
unsigned long order = get_order(size);
struct page *page, *p, *e;
@@ -320,7 +323,7 @@ static struct page *__dma_alloc_buffer(struct device *dev, size_t size, gfp_t gf
for (p = page + (size >> PAGE_SHIFT), e = page + (1 << order); p < e; p++)
__free_page(p);
- __dma_clear_buffer(page, size);
+ __dma_clear_buffer(page, size, l2_coherent);
return page;
}
@@ -342,7 +345,8 @@ static void __dma_free_buffer(struct page *page, size_t size)
static void *__alloc_from_contiguous(struct device *dev, size_t size,
pgprot_t prot, struct page **ret_page,
- const void *caller, bool want_vaddr);
+ const void *caller, bool want_vaddr,
+ bool l2_coherent);
static void *__alloc_remap_buffer(struct device *dev, size_t size, gfp_t gfp,
pgprot_t prot, struct page **ret_page,
@@ -407,10 +411,13 @@ static int __init atomic_pool_init(void)
atomic_pool = gen_pool_create(PAGE_SHIFT, -1);
if (!atomic_pool)
goto out;
-
+ /*
+ * The atomic pool is only used for non-coherent allocations
+ * so we must pass false for l2_coherent.
+ */
if (dev_get_cma_area(NULL))
ptr = __alloc_from_contiguous(NULL, atomic_pool_size, prot,
- &page, atomic_pool_init, true);
+ &page, atomic_pool_init, true, false);
else
ptr = __alloc_remap_buffer(NULL, atomic_pool_size, gfp, prot,
&page, atomic_pool_init, true);
@@ -524,7 +531,11 @@ static void *__alloc_remap_buffer(struct device *dev, size_t size, gfp_t gfp,
{
struct page *page;
void *ptr = NULL;
- page = __dma_alloc_buffer(dev, size, gfp);
+ /*
+ * __alloc_remap_buffer is only called when the device is
+ * non-coherent
+ */
+ page = __dma_alloc_buffer(dev, size, gfp, false);
if (!page)
return NULL;
if (!want_vaddr)
@@ -579,7 +590,8 @@ static int __free_from_pool(void *start, size_t size)
static void *__alloc_from_contiguous(struct device *dev, size_t size,
pgprot_t prot, struct page **ret_page,
- const void *caller, bool want_vaddr)
+ const void *caller, bool want_vaddr,
+ bool l2_coherent)
{
unsigned long order = get_order(size);
size_t count = size >> PAGE_SHIFT;
@@ -590,7 +602,7 @@ static void *__alloc_from_contiguous(struct device *dev, size_t size,
if (!page)
return NULL;
- __dma_clear_buffer(page, size);
+ __dma_clear_buffer(page, size, l2_coherent);
if (!want_vaddr)
goto out;
@@ -640,7 +652,7 @@ static inline pgprot_t __get_dma_pgprot(struct dma_attrs *attrs, pgprot_t prot)
#define __get_dma_pgprot(attrs, prot) __pgprot(0)
#define __alloc_remap_buffer(dev, size, gfp, prot, ret, c, wv) NULL
#define __alloc_from_pool(size, ret_page) NULL
-#define __alloc_from_contiguous(dev, size, prot, ret, c, wv) NULL
+#define __alloc_from_contiguous(dev, size, prot, ret, c, wv, l2_coherent) NULL
#define __free_from_pool(cpu_addr, size) do { } while (0)
#define __free_from_contiguous(dev, page, cpu_addr, size, wv) do { } while (0)
#define __dma_free_remap(cpu_addr, size) do { } while (0)
@@ -651,7 +663,8 @@ static void *__alloc_simple_buffer(struct device *dev, size_t size, gfp_t gfp,
struct page **ret_page)
{
struct page *page;
- page = __dma_alloc_buffer(dev, size, gfp);
+ /* __alloc_simple_buffer is only called when the device is coherent */
+ page = __dma_alloc_buffer(dev, size, gfp, true);
if (!page)
return NULL;
@@ -660,7 +673,7 @@ static void *__alloc_simple_buffer(struct device *dev, size_t size, gfp_t gfp,
}
static void *simple_allocator_alloc(struct arm_dma_alloc_args *args,
- struct page **ret_page)
+ struct page **ret_page, bool l2_coherent)
{
return __alloc_simple_buffer(args->dev, args->size, args->gfp,
ret_page);
@@ -677,11 +690,11 @@ static struct arm_dma_allocator simple_allocator = {
};
static void *cma_allocator_alloc(struct arm_dma_alloc_args *args,
- struct page **ret_page)
+ struct page **ret_page, bool l2_coherent)
{
return __alloc_from_contiguous(args->dev, args->size, args->prot,
ret_page, args->caller,
- args->want_vaddr);
+ args->want_vaddr, l2_coherent);
}
static void cma_allocator_free(struct arm_dma_free_args *args)
@@ -696,7 +709,7 @@ static struct arm_dma_allocator cma_allocator = {
};
static void *pool_allocator_alloc(struct arm_dma_alloc_args *args,
- struct page **ret_page)
+ struct page **ret_page, bool l2_coherent)
{
return __alloc_from_pool(args->size, ret_page);
}
@@ -712,7 +725,7 @@ static struct arm_dma_allocator pool_allocator = {
};
static void *remap_allocator_alloc(struct arm_dma_alloc_args *args,
- struct page **ret_page)
+ struct page **ret_page, bool l2_coherent)
{
return __alloc_remap_buffer(args->dev, args->size, args->gfp,
args->prot, ret_page, args->caller,
@@ -792,7 +805,7 @@ static void *__dma_alloc(struct device *dev, size_t size, dma_addr_t *handle,
else
buf->allocator = &pool_allocator;
- addr = buf->allocator->alloc(&args, &page);
+ addr = buf->allocator->alloc(&args, &page, is_coherent);
if (page) {
unsigned long flags;
@@ -1264,7 +1277,8 @@ static inline void __free_iova(struct dma_iommu_mapping *mapping,
static const int iommu_order_array[] = { 9, 8, 4, 0 };
static struct page **__iommu_alloc_buffer(struct device *dev, size_t size,
- gfp_t gfp, struct dma_attrs *attrs)
+ gfp_t gfp, struct dma_attrs *attrs,
+ bool l2_coherent)
{
struct page **pages;
int count = size >> PAGE_SHIFT;
@@ -1288,7 +1302,7 @@ static struct page **__iommu_alloc_buffer(struct device *dev, size_t size,
if (!page)
goto error;
- __dma_clear_buffer(page, size);
+ __dma_clear_buffer(page, size, l2_coherent);
for (i = 0; i < count; i++)
pages[i] = page + i;
@@ -1338,7 +1352,7 @@ static struct page **__iommu_alloc_buffer(struct device *dev, size_t size,
pages[i + j] = pages[i] + j;
}
- __dma_clear_buffer(pages[i], PAGE_SIZE << order);
+ __dma_clear_buffer(pages[i], PAGE_SIZE << order, l2_coherent);
i += 1 << order;
count -= 1 << order;
}
@@ -1516,7 +1530,8 @@ static void *arm_iommu_alloc_attrs(struct device *dev, size_t size,
*/
gfp &= ~(__GFP_COMP);
- pages = __iommu_alloc_buffer(dev, size, gfp, attrs);
+ /* For now always consider we are in a non-coherent case */
+ pages = __iommu_alloc_buffer(dev, size, gfp, attrs, false);
if (!pages)
return NULL;
--
2.5.0
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH v7 1/2] ARM: dma-mapping: Don't use outer_flush_range when the L2C is coherent
2016-04-07 21:33 ` [PATCH v7 1/2] ARM: dma-mapping: Don't use outer_flush_range when the L2C is coherent Gregory CLEMENT
@ 2016-04-07 22:09 ` Russell King - ARM Linux
2016-04-08 0:29 ` Gregory CLEMENT
0 siblings, 1 reply; 3+ messages in thread
From: Russell King - ARM Linux @ 2016-04-07 22:09 UTC (permalink / raw)
To: Gregory CLEMENT
Cc: Catalin Marinas, Jason Cooper, Andrew Lunn, Sebastian Hesselbarth,
Nadav Haklai, Lior Amsalem, Thomas Petazzoni, Romain Perier,
Omri Itach, Marcin Wojtas, stable
On Thu, Apr 07, 2016 at 02:33:34PM -0700, Gregory CLEMENT wrote:
> When a L2 cache controller is used in a system that provides hardware
> coherency, the entire outer cache operations are useless, and can be
> skipped. Moreover, on some systems, it is harmful as it causes
> deadlocks between the Marvell coherency mechanism, the Marvell PCIe
> controller and the Cortex-A9.
>
> In the current kernel implementation, the outer cache flush range
> operation is triggered by the dma_alloc function.
> This operation can be take place during runtime and in some
> circumstances may lead to the PCIe/PL310 deadlock on Armada 375/38x
> SoCs.
>
> This patch extends the __dma_clear_buffer() function to receive a
> boolean argument related to the coherency of the system. The same
> things is done for the calling functions.
>
> Reported-by: Nadav Haklai <nadavh@marvell.com>
> Signed-off-by: Gregory CLEMENT <gregory.clement@free-electrons.com>
> Cc: <stable@vger.kernel.org> # v3.16+
> Tested-by: Marcin Wojtas <mw@semihalf.com>
> ---
> arch/arm/mm/dma-mapping.c | 63 +++++++++++++++++++++++++++++------------------
> 1 file changed, 39 insertions(+), 24 deletions(-)
>
> diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c
> index deac58d5f1f7..0231ed295bb2 100644
> --- a/arch/arm/mm/dma-mapping.c
> +++ b/arch/arm/mm/dma-mapping.c
> @@ -61,7 +61,7 @@ struct arm_dma_free_args {
>
> struct arm_dma_allocator {
> void *(*alloc)(struct arm_dma_alloc_args *args,
> - struct page **ret_page);
> + struct page **ret_page, bool l2_coherent);
> void (*free)(struct arm_dma_free_args *args);
> };
>
> @@ -274,7 +274,7 @@ static u64 get_coherent_dma_mask(struct device *dev)
> return mask;
> }
>
> -static void __dma_clear_buffer(struct page *page, size_t size)
> +static void __dma_clear_buffer(struct page *page, size_t size, bool l2_coherent)
> {
> /*
> * Ensure that the allocated pages are zeroed, and that any data
> @@ -291,12 +291,14 @@ static void __dma_clear_buffer(struct page *page, size_t size)
> page++;
> size -= PAGE_SIZE;
> }
> - outer_flush_range(base, end);
> + if (!l2_coherent)
> + outer_flush_range(base, end);
> } else {
> void *ptr = page_address(page);
> memset(ptr, 0, size);
> dmac_flush_range(ptr, ptr + size);
> - outer_flush_range(__pa(ptr), __pa(ptr) + size);
> + if (!l2_coherent)
> + outer_flush_range(__pa(ptr), __pa(ptr) + size);
It is appropriate here to use l2_coherent because you're _only_ disabling
the L2 cache flushes, while leaving the L1 cache flushes in place.
If you have a fully coherent architecture, then the L1 cache flushes
aren't required either.
> }
> }
>
> @@ -304,7 +306,8 @@ static void __dma_clear_buffer(struct page *page, size_t size)
> * Allocate a DMA buffer for 'dev' of size 'size' using the
> * specified gfp mask. Note that 'size' must be page aligned.
> */
> -static struct page *__dma_alloc_buffer(struct device *dev, size_t size, gfp_t gfp)
> +static struct page *__dma_alloc_buffer(struct device *dev, size_t size,
> + gfp_t gfp, bool l2_coherent)
> {
> unsigned long order = get_order(size);
> struct page *page, *p, *e;
> @@ -320,7 +323,7 @@ static struct page *__dma_alloc_buffer(struct device *dev, size_t size, gfp_t gf
> for (p = page + (size >> PAGE_SHIFT), e = page + (1 << order); p < e; p++)
> __free_page(p);
>
> - __dma_clear_buffer(page, size);
> + __dma_clear_buffer(page, size, l2_coherent);
So, this is also logical here, and with this in mind the rest of the
patch looks fine. However, when I look at patch 2, I start to see
problems with this naming, because in patch 2, we start doing things
which assume that L1 is also coherent.
What this means is that the original "is_coherent" for just patch 1
was wrong, but possibly more correct when patch 2 is included, but
using "l2_coherent" is wrong for the opposite reasons.
Moreover, we end up creating what seems to be something of a mess -
when this flag is set, we end up with some allocators treating this
flag as "only L2 coherent" and others treating it as "both L1 and L2
coherent", which is really insane. For this reason, I really don't
like these patches - this code is already complex enough that we
don't need to be making things more confusing through this.
The other thing I'm really not keen on is seeing functions which
take multiple bool arguments. Consider:
foo(blah, true, true, false);
is meaningless unless you have the prototype stuck in your head.
Using a set of flags which can be or'd together (eg, like the gfp
stuff) is much more preferable as it gives a descriptive nature
to what's going on.
--
RMK's Patch system: http://www.arm.linux.org.uk/developer/patches/
FTTC broadband for 0.8mile line: currently at 9.6Mbps down 400kbps up
according to speedtest.net.
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH v7 1/2] ARM: dma-mapping: Don't use outer_flush_range when the L2C is coherent
2016-04-07 22:09 ` Russell King - ARM Linux
@ 2016-04-08 0:29 ` Gregory CLEMENT
0 siblings, 0 replies; 3+ messages in thread
From: Gregory CLEMENT @ 2016-04-08 0:29 UTC (permalink / raw)
To: Russell King - ARM Linux
Cc: Catalin Marinas, Jason Cooper, Andrew Lunn, Sebastian Hesselbarth,
Nadav Haklai, Lior Amsalem, Thomas Petazzoni, Romain Perier,
Omri Itach, Marcin Wojtas, stable
Hi Russell King,
On jeu., avril 07 2016, Russell King - ARM Linux <linux@arm.linux.org.uk> wrote:
> On Thu, Apr 07, 2016 at 02:33:34PM -0700, Gregory CLEMENT wrote:
>> When a L2 cache controller is used in a system that provides hardware
>> coherency, the entire outer cache operations are useless, and can be
>> skipped. Moreover, on some systems, it is harmful as it causes
>> deadlocks between the Marvell coherency mechanism, the Marvell PCIe
>> controller and the Cortex-A9.
>>
>> In the current kernel implementation, the outer cache flush range
>> operation is triggered by the dma_alloc function.
>> This operation can be take place during runtime and in some
>> circumstances may lead to the PCIe/PL310 deadlock on Armada 375/38x
>> SoCs.
>>
>> This patch extends the __dma_clear_buffer() function to receive a
>> boolean argument related to the coherency of the system. The same
>> things is done for the calling functions.
>>
>> -static void __dma_clear_buffer(struct page *page, size_t size)
>> +static void __dma_clear_buffer(struct page *page, size_t size, bool l2_coherent)
>> {
>> /*
>> * Ensure that the allocated pages are zeroed, and that any data
>> @@ -291,12 +291,14 @@ static void __dma_clear_buffer(struct page *page, size_t size)
>> page++;
>> size -= PAGE_SIZE;
>> }
>> - outer_flush_range(base, end);
>> + if (!l2_coherent)
>> + outer_flush_range(base, end);
>> } else {
>> void *ptr = page_address(page);
>> memset(ptr, 0, size);
>> dmac_flush_range(ptr, ptr + size);
>> - outer_flush_range(__pa(ptr), __pa(ptr) + size);
>> + if (!l2_coherent)
>> + outer_flush_range(__pa(ptr), __pa(ptr) + size);
>
> It is appropriate here to use l2_coherent because you're _only_ disabling
> the L2 cache flushes, while leaving the L1 cache flushes in place.
>
> If you have a fully coherent architecture, then the L1 cache flushes
> aren't required either.
Actually, it was you who wondered if we don't yet support coherency to
L1 yet. So I assumed it was not the case and I was wrong at least for
Marvell. The SoC is fully coherent because the coherency fabric snoop
the transaction on both L1 and L2 caches.
>
>> }
>> }
>>
>> @@ -304,7 +306,8 @@ static void __dma_clear_buffer(struct page *page, size_t size)
>> * Allocate a DMA buffer for 'dev' of size 'size' using the
>> * specified gfp mask. Note that 'size' must be page aligned.
>> */
>> -static struct page *__dma_alloc_buffer(struct device *dev, size_t size, gfp_t gfp)
>> +static struct page *__dma_alloc_buffer(struct device *dev, size_t size,
>> + gfp_t gfp, bool l2_coherent)
>> {
>> unsigned long order = get_order(size);
>> struct page *page, *p, *e;
>> @@ -320,7 +323,7 @@ static struct page *__dma_alloc_buffer(struct device *dev, size_t size, gfp_t gf
>> for (p = page + (size >> PAGE_SHIFT), e = page + (1 << order); p < e; p++)
>> __free_page(p);
>>
>> - __dma_clear_buffer(page, size);
>> + __dma_clear_buffer(page, size, l2_coherent);
>
> So, this is also logical here, and with this in mind the rest of the
> patch looks fine. However, when I look at patch 2, I start to see
> problems with this naming, because in patch 2, we start doing things
> which assume that L1 is also coherent.
>
> What this means is that the original "is_coherent" for just patch 1
> was wrong, but possibly more correct when patch 2 is included, but
> using "l2_coherent" is wrong for the opposite reasons.
>
> Moreover, we end up creating what seems to be something of a mess -
> when this flag is set, we end up with some allocators treating this
> flag as "only L2 coherent" and others treating it as "both L1 and L2
> coherent", which is really insane. For this reason, I really don't
> like these patches - this code is already complex enough that we
> don't need to be making things more confusing through this.
The coherent flag comes from the dma coherent status. With this flag
there is no distinction between "only L2 coherent" and "both L1 and L2
coherent". Actually, if we look the other dma operation for the coherent
case there is no L1 operation at all, so dma coherent really meant fully
coherent. I think we should always mange the "both L1 and L2 coherent":
it will allow to have something more logical(ie coherent).
>
> The other thing I'm really not keen on is seeing functions which
> take multiple bool arguments. Consider:
>
> foo(blah, true, true, false);
>
> is meaningless unless you have the prototype stuck in your head.
> Using a set of flags which can be or'd together (eg, like the gfp
> stuff) is much more preferable as it gives a descriptive nature
> to what's going on.
I agree, when I wrote the patch I focused on propagating the bool
argument from the __dma_alloc() function. But, indeed, it makes the code
harder to read.
I will use a flag as you suggests.
Thanks,
Gregory
--
Gregory Clement, Free Electrons
Kernel, drivers, real-time and embedded Linux
development, consulting, training and support.
http://free-electrons.com
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2016-04-08 0:29 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <1460064815-18933-1-git-send-email-gregory.clement@free-electrons.com>
2016-04-07 21:33 ` [PATCH v7 1/2] ARM: dma-mapping: Don't use outer_flush_range when the L2C is coherent Gregory CLEMENT
2016-04-07 22:09 ` Russell King - ARM Linux
2016-04-08 0:29 ` Gregory CLEMENT
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.