[U-Boot] [PATCH 2/4] cache_v7: Check for dcache enablement in dcache flush functions

R, Sricharan r.sricharan at ti.com
Fri Jun 15 16:48:23 CEST 2012


Hi,

>> On Fri, Jun 15, 2012 at 12:31 AM, Tom Rini <trini at ti.com> wrote:
>>> If we are built with D-CACHE enabled but have run 'dcache off' and then
>>> attempt to flush unaligned regions we spam the console with problems
>>> that aren't true (as the cache was off).
>>>
>>   Today we do cache maintenance operations after the dcache is turned off.
>>   One example is before jumping to kernel, we try to invalidate the caches,
>>   in cache turned off state. So with this patch those maintenance calls will
>>   do nothing, which is not correct.
>
> Ah yes,  But, shouldn't we be doing these same operations as part of
> turning the cache off?
>
  The problem is that while turning of dcaches, we flush it, and turn
 cache and MMU off.  But these operations are not happening
 automatically in a single call. So there is a chance of  valid
 entries present in cache even after it is OFF.

 So we invalidate it before jumping to kernel.

In fact our procedure of turning off the caches and MMU should
have a relook, to really ensure things are safe. I will check on
this more.

>>    If it is a problem with unaligned regions, then that is the only
>> thing to be fixed
>>   right ?. Just trying to understand why this change is required ?
>
> The problem is that within the USB/network/filesystem stacks we have a
> lot of not cache safe alignments apparently.  Without this every '#' of
> a tftp gives a screen full of error printfs.  So tftp'ing a kernel takes
> minutes, not seconds, to complete.
>
 Ok,but when buffers are not aligned
   isn't that you are going to have coherency problems ?

Thanks,
 Sricharan


More information about the U-Boot mailing list