Re: [U-Boot] [PATCH] drivers: net: cpsw: always flush cache with cache line aligned

2016-08-08 Thread Lokesh Vutla
On Monday 08 August 2016 10:16 PM, Joe Hershberger wrote: > Hi Lokesh, > > On Mon, Aug 8, 2016 at 1:22 AM, Lokesh Vutla wrote: >> cpsw tries to flush dcache which is not in the range of cache line size. >> Because of this the following warning comes while flushing: >> >> CACHE: Misaligned opera

Re: [U-Boot] [PATCH] drivers: net: cpsw: always flush cache with cache line aligned

2016-08-08 Thread Joe Hershberger
Hi Lokesh, On Mon, Aug 8, 2016 at 1:22 AM, Lokesh Vutla wrote: > cpsw tries to flush dcache which is not in the range of cache line size. > Because of this the following warning comes while flushing: > > CACHE: Misaligned operation at range [dffecec0, dffed016] > > Fix it by flushing cache range

[U-Boot] [PATCH] drivers: net: cpsw: always flush cache with cache line aligned

2016-08-07 Thread Lokesh Vutla
cpsw tries to flush dcache which is not in the range of cache line size. Because of this the following warning comes while flushing: CACHE: Misaligned operation at range [dffecec0, dffed016] Fix it by flushing cache range which is cache line size aligned. Signed-off-by: Lokesh Vutla --- driver