Re: [U-Boot] [PATCH] arm: cache: Implement cache range check for v7

2016-01-25 Thread Tom Rini
On Sun, Jan 24, 2016 at 06:28:12PM +0100, Marek Vasut wrote: > On Monday, December 28, 2015 at 04:23:46 PM, Marek Vasut wrote: > > On Friday, December 11, 2015 at 05:36:15 AM, Marek Vasut wrote: > > > On Tuesday, December 01, 2015 at 06:23:17 PM, Marek Vasut wrote: > > > > On Monday, July 27, 2015

Re: [U-Boot] [PATCH] arm: cache: Implement cache range check for v7

2016-01-25 Thread Albert ARIBAUD
Hello Tom, On Mon, 25 Jan 2016 11:04:59 -0500, Tom Rini wrote: > On Sun, Jan 24, 2016 at 06:28:12PM +0100, Marek Vasut wrote: > > On Monday, December 28, 2015 at 04:23:46 PM, Marek Vasut wrote: > > > On Friday, December 11, 2015 at 05:36:15 AM, Marek Vasut wrote: > > > > On

Re: [U-Boot] [PATCH] arm: cache: Implement cache range check for v7

2016-01-24 Thread Marek Vasut
On Monday, December 28, 2015 at 04:23:46 PM, Marek Vasut wrote: > On Friday, December 11, 2015 at 05:36:15 AM, Marek Vasut wrote: > > On Tuesday, December 01, 2015 at 06:23:17 PM, Marek Vasut wrote: > > > On Monday, July 27, 2015 at 10:34:17 PM, Marek Vasut wrote: > > > > Add code to aid tracking

Re: [U-Boot] [PATCH] arm: cache: Implement cache range check for v7

2015-12-28 Thread Marek Vasut
On Friday, December 11, 2015 at 05:36:15 AM, Marek Vasut wrote: > On Tuesday, December 01, 2015 at 06:23:17 PM, Marek Vasut wrote: > > On Monday, July 27, 2015 at 10:34:17 PM, Marek Vasut wrote: > > > Add code to aid tracking down cache alignment issues. > > > In case DEBUG is defined in the

Re: [U-Boot] [PATCH] arm: cache: Implement cache range check for v7

2015-12-10 Thread Marek Vasut
On Tuesday, December 01, 2015 at 06:23:17 PM, Marek Vasut wrote: > On Monday, July 27, 2015 at 10:34:17 PM, Marek Vasut wrote: > > Add code to aid tracking down cache alignment issues. > > In case DEBUG is defined in the cache.c, this code will > > check alignment of each attempt to

Re: [U-Boot] [PATCH] arm: cache: Implement cache range check for v7

2015-12-01 Thread Marek Vasut
On Monday, July 27, 2015 at 10:34:17 PM, Marek Vasut wrote: > Add code to aid tracking down cache alignment issues. > In case DEBUG is defined in the cache.c, this code will > check alignment of each attempt to flush/invalidate data > cache and print a warning if the alignment is incorrect. > If

Re: [U-Boot] [PATCH] arm: cache: Implement cache range check for v7

2015-08-04 Thread Marek Vasut
On Monday, July 27, 2015 at 10:34:17 PM, Marek Vasut wrote: Add code to aid tracking down cache alignment issues. In case DEBUG is defined in the cache.c, this code will check alignment of each attempt to flush/invalidate data cache and print a warning if the alignment is incorrect. If DEBUG

[U-Boot] [PATCH] arm: cache: Implement cache range check for v7

2015-07-27 Thread Marek Vasut
Add code to aid tracking down cache alignment issues. In case DEBUG is defined in the cache.c, this code will check alignment of each attempt to flush/invalidate data cache and print a warning if the alignment is incorrect. If DEBUG is not defined, this code is optimized out. Signed-off-by: Marek