[PATCH 06/10] soc/qbman: Add ARM equivalent for flush_dcache_range()
Roy Pledge
roy.pledge at nxp.com
Mon Jan 23 11:24:59 PST 2017
On 1/18/2017 6:36 PM, Scott Wood wrote:
> On 01/18/2017 05:12 PM, Russell King - ARM Linux wrote:
>> On Wed, Jan 18, 2017 at 05:39:36PM -0500, Roy Pledge wrote:
>>> From: Claudiu Manoil <claudiu.manoil at nxp.com>
>>>
>>> Signed-off-by: Madalin Bucur <madalin.bucur at nxp.com>
>>> Signed-off-by: Claudiu Manoil <claudiu.manoil at nxp.com>
>>> Signed-off-by: Roy Pledge <roy.pledge at nxp.com>
>>> ---
>>> drivers/soc/fsl/qbman/qman_ccsr.c | 6 ++++++
>>> 1 file changed, 6 insertions(+)
>>>
>>> diff --git a/drivers/soc/fsl/qbman/qman_ccsr.c b/drivers/soc/fsl/qbman/qman_ccsr.c
>>> index 43feaa9..67ae073 100644
>>> --- a/drivers/soc/fsl/qbman/qman_ccsr.c
>>> +++ b/drivers/soc/fsl/qbman/qman_ccsr.c
>>> @@ -446,8 +446,14 @@ static int zero_priv_mem(struct device *dev, struct device_node *node,
>>> return -ENOMEM;
>>>
>>> memset(tmpp, 0, sz);
>>> +#ifdef CONFIG_PPC
>>> flush_dcache_range((unsigned long)tmpp,
>>> (unsigned long)tmpp + sz);
>>> +#elif defined(CONFIG_ARM)
>>> + __cpuc_flush_dcache_area(tmpp, sz);
>> Please do not fiddle about under the covers, there be dragons there.
>>
>> It looks to me like you're trying to use __cpuc_flush_dcache_area()
>> on an area that's been ioremap()'d, which is a waste of CPU cycles.
>> ioremap()'d areas are mapped as "device" memory type, which means
>> the region isn't even cached. So I don't think this is necessary.
> It is mapped cachable, via memremap() (see patch 1/10). This is RAM
> that the device uses, non-coherently, for its own purposes (but requires
> software to clear it first).
>
> Is there a non-"under the covers" way to say "flush this region" without
> the arch second-guessing whether it really needs to be flushed?
Any advice on how to resolve this? I looked into trying to do a
non-cacheable mapping of the
memory so that the flush wouldn't be required but the ioremap code
prevents mapping normal
memory in this way. The QMan device requiresthis memory to be zeroed at
startup. Because the device
does non coherent reads and writes to the memory we must ensure that any
cache in the CPU cluster(s)
is flushed in order to prevent a future castout from overwriting data.
This happened before on PPC
platforms and made for some very unfun debug session trying to
understand what was causing the failure.
Roy
> -Scott
>
>
More information about the linux-arm-kernel
mailing list