From: vbarshak@mvista.com (Valentine Barshak)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: V6 MPCore v6_dma_inv_range and v6_dma_flush_range RWFO fix
Date: Fri, 10 Dec 2010 15:29:09 +0300 [thread overview]
Message-ID: <4D021D15.5070300@mvista.com> (raw)
In-Reply-To: <1291974616.13511.1.camel@e102109-lin.cambridge.arm.com>
Catalin Marinas wrote:
> On Fri, 2010-12-10 at 05:26 +0000, George G. Davis wrote:
>
>> On Wed, Nov 24, 2010 at 09:39:36PM +0300, Valentine Barshak wrote:
>>
>>> Updated according to the comments to avoid r/w outside the buffer and
>>> used byte r/w for the possible unaligned data. Seems to work fine.
>>>
>>> Cache ownership must be acqired by reading/writing data from the
>>> cache line to make cache operation have the desired effect on the
>>> SMP MPCore CPU. However, the ownership is never aquired in the
>>> v6_dma_inv_range function when cleaning the first line and
>>> flushing the last one, in case the address is not aligned
>>> to D_CACHE_LINE_SIZE boundary.
>>> Fix this by reading/writing data if needed, before performing
>>> cache operations.
>>> While at it, fix v6_dma_flush_range to prevent RWFO outside
>>> the buffer.
>>>
>>> Signed-off-by: Valentine Barshak <vbarshak@mvista.com>
>>> Signed-off-by: George G. Davis <gdavis@mvista.com>
>>> ---
>>> arch/arm/mm/cache-v6.S | 40 ++++++++++++++++++++++++++--------------
>>> 1 files changed, 26 insertions(+), 14 deletions(-)
>>>
>>> diff --git a/arch/arm/mm/cache-v6.S b/arch/arm/mm/cache-v6.S
>>> index 99fa688..622f8a1 100644
>>> --- a/arch/arm/mm/cache-v6.S
>>> +++ b/arch/arm/mm/cache-v6.S
>>> @@ -203,25 +203,29 @@ ENTRY(v6_flush_kern_dcache_area)
>>> * - end - virtual end address of region
>>> */
>>> v6_dma_inv_range:
>>> - tst r0, #D_CACHE_LINE_SIZE - 1
>>> - bic r0, r0, #D_CACHE_LINE_SIZE - 1
>>> -#ifdef HARVARD_CACHE
>>> - mcrne p15, 0, r0, c7, c10, 1 @ clean D line
>>> -#else
>>> - mcrne p15, 0, r0, c7, c11, 1 @ clean unified line
>>> -#endif
>>> tst r1, #D_CACHE_LINE_SIZE - 1
>>> +#ifdef CONFIG_DMA_CACHE_RWFO
>>> + ldrneb r2, [r1, #-1] @ read for ownership
>>> + strneb r2, [r1, #-1] @ write for ownership
>>> +#endif
>>> bic r1, r1, #D_CACHE_LINE_SIZE - 1
>>> #ifdef HARVARD_CACHE
>>> mcrne p15, 0, r1, c7, c14, 1 @ clean & invalidate D line
>>> #else
>>> mcrne p15, 0, r1, c7, c15, 1 @ clean & invalidate unified line
>>> #endif
>>> -1:
>>> #ifdef CONFIG_DMA_CACHE_RWFO
>>> - ldr r2, [r0] @ read for ownership
>>> - str r2, [r0] @ write for ownership
>>> + ldrb r2, [r0] @ read for ownership
>>> + strb r2, [r0] @ write for ownership
>>> +#endif
>>> + tst r0, #D_CACHE_LINE_SIZE - 1
>>> + bic r0, r0, #D_CACHE_LINE_SIZE - 1
>>> +#ifdef HARVARD_CACHE
>>> + mcrne p15, 0, r0, c7, c10, 1 @ clean D line
>>> +#else
>>> + mcrne p15, 0, r0, c7, c11, 1 @ clean unified line
>>> #endif
>>> +1:
>>> #ifdef HARVARD_CACHE
>>> mcr p15, 0, r0, c7, c6, 1 @ invalidate D line
>>> #else
>>> @@ -229,6 +233,10 @@ v6_dma_inv_range:
>>> #endif
>>> add r0, r0, #D_CACHE_LINE_SIZE
>>> cmp r0, r1
>>> +#ifdef CONFIG_DMA_CACHE_RWFO
>>> + ldrlo r2, [r0] @ read for ownership
>>> + strlo r2, [r0] @ write for ownership
>>> +#endif
>>> blo 1b
>>> mov r0, #0
>>> mcr p15, 0, r0, c7, c10, 4 @ drain write buffer
>>>
>> Just a minor nit...
>>
>> Any reason for rearranging the order of 'start'/'end' parameters in the
>> above changes? It's not clear that there is any performance benefit by
>> rearranging those parameters and it obfuscates the changes, e.g. this
>> is equivalent to your change above and also much clearer:
>>
>
>
It probably obfuscates the change, but I thought it made the code a bit
cleaner and easier to read.
So that first the end (r1) is flushed and then we do all the operations
needed on the first cache line (r0) in a row.
I'll resubmit the change and add "Cc: stable at kernel.org" to the header.
Thanks,
Val.
> I've been wondering about this as well. But I was too lazy to rewrite it
> and see whether there is a performance benefit in the original patch. I
> agree that yours looks cleaner.
>
>
next prev parent reply other threads:[~2010-12-10 12:29 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-11-23 22:28 [PATCH] ARM: V6 MPCore v6_dma_inv_range RWFO fix Valentine Barshak
2010-11-23 22:42 ` Russell King - ARM Linux
2010-11-24 0:24 ` George G. Davis
2010-11-24 10:32 ` Catalin Marinas
2010-11-24 15:14 ` George G. Davis
2010-11-24 10:42 ` Catalin Marinas
2010-11-24 15:10 ` George G. Davis
2010-11-24 15:35 ` Catalin Marinas
2010-11-24 17:33 ` Russell King - ARM Linux
2010-11-24 17:46 ` Catalin Marinas
2010-11-24 18:01 ` Russell King - ARM Linux
2010-11-24 18:07 ` Catalin Marinas
2010-11-24 18:39 ` [PATCH] ARM: V6 MPCore v6_dma_inv_range and v6_dma_flush_range " Valentine Barshak
2010-12-08 10:25 ` Valentine Barshak
2010-12-09 16:04 ` Catalin Marinas
2010-12-09 17:04 ` Valentine Barshak
2010-12-09 22:07 ` Stephen Boyd
2010-12-10 5:44 ` George G. Davis
2010-12-10 5:26 ` George G. Davis
2010-12-10 9:50 ` Catalin Marinas
2010-12-10 12:29 ` Valentine Barshak [this message]
2010-12-10 16:49 ` George G. Davis
2010-11-29 15:28 ` Valentine Barshak
2010-11-24 17:40 ` [PATCH] ARM: V6 MPCore v6_dma_inv_range " Valentine Barshak
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=4D021D15.5070300@mvista.com \
--to=vbarshak@mvista.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 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.