Re: [U-Boot] [PATCH 1/2] spl: Make sure destination address is dma aligned when loading fit

2016-05-06 Thread Lokesh Vutla
On Thursday 05 May 2016 04:24 PM, Tom Rini wrote: > On Thu, May 05, 2016 at 11:22:42AM +0530, Lokesh Vutla wrote: > >> >> >> On Wednesday 06 April 2016 05:32 PM, Lokesh Vutla wrote: >>> Peripherals like spi etc. uses DMA for transfers. So, when loading the fit >>> image the destination address

Re: [U-Boot] [PATCH 1/2] spl: Make sure destination address is dma aligned when loading fit

2016-05-05 Thread Tom Rini
On Thu, May 05, 2016 at 11:22:42AM +0530, Lokesh Vutla wrote: > > > On Wednesday 06 April 2016 05:32 PM, Lokesh Vutla wrote: > > Peripherals like spi etc. uses DMA for transfers. So, when loading the fit > > image the destination address should be dma aligned. > > After the v5 of my FS support

Re: [U-Boot] [PATCH 1/2] spl: Make sure destination address is dma aligned when loading fit

2016-05-04 Thread Lokesh Vutla
On Wednesday 06 April 2016 05:32 PM, Lokesh Vutla wrote: > Peripherals like spi etc. uses DMA for transfers. So, when loading the fit > image the destination address should be dma aligned. After the v5 of my FS support for FIT[1], this patch is no more necessary. Patch 2 is alone sufficient.

Re: [U-Boot] [PATCH 1/2] spl: Make sure destination address is dma aligned when loading fit

2016-04-08 Thread Tom Rini
On Wed, Apr 06, 2016 at 05:32:59PM +0530, Lokesh Vutla wrote: > Peripherals like spi etc. uses DMA for transfers. So, when loading the fit > image the destination address should be dma aligned. > > Signed-off-by: Lokesh Vutla Reviewed-by: Tom Rini --

[U-Boot] [PATCH 1/2] spl: Make sure destination address is dma aligned when loading fit

2016-04-06 Thread Lokesh Vutla
Peripherals like spi etc. uses DMA for transfers. So, when loading the fit image the destination address should be dma aligned. Signed-off-by: Lokesh Vutla --- - Assuming u-boot.bin load addr will always be dma aligned. common/spl/spl_fit.c | 11 +++ 1 file changed,