[U-Boot] [U-Boot PATCH v2 01/10] sf: allocate cache aligned buffers to copy from flash

Tom Rini trini at konsulko.com
Thu Aug 13 19:54:07 CEST 2015


On Thu, Aug 13, 2015 at 11:09:03PM +0530, Jagan Teki wrote:
> Hi Simon,
> 
> On 30 July 2015 at 11:04, Vignesh R <vigneshr at ti.com> wrote:
> > From: Ravi Babu <ravibabu at ti.com>
> >
> > Use memalign() with ARCH_DMA_MINALIGN to allocate read buffers.
> > This is required because, flash drivers may use DMA for read operations
> > and may have to invalidate the buffer before read.
> >
> > Signed-off-by: Ravi Babu <ravibabu at ti.com>
> > Signed-off-by: Vignesh R <vigneshr at ti.com>
> > ---
> >  common/cmd_sf.c | 6 +++---
> >  1 file changed, 3 insertions(+), 3 deletions(-)
> >
> > diff --git a/common/cmd_sf.c b/common/cmd_sf.c
> > index 3746e0d9644f..ac7f5dfb8181 100644
> > --- a/common/cmd_sf.c
> > +++ b/common/cmd_sf.c
> > @@ -223,7 +223,7 @@ static int spi_flash_update(struct spi_flash *flash, u32 offset,
> >
> >         if (end - buf >= 200)
> >                 scale = (end - buf) / 100;
> > -       cmp_buf = malloc(flash->sector_size);
> > +       cmp_buf = memalign(ARCH_DMA_MINALIGN, flash->sector_size);
> 
> I always have a confusion like align macro is never used on code
> memalign_simple()
> Was it a typo missing or some thing?

Sorry?  We always call memalign() rather than memalign_simple().

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150813/c634fe7f/attachment.sig>


More information about the U-Boot mailing list