[U-Boot] [PATCH] fsl_diu: fix alignment error that caused malloc corruption

Nikita V. Youshchenko yoush at cs.msu.su
Thu Oct 2 22:03:55 CEST 2008


commit 81489a85c4c3536ec54290ac9216b746ec346663
Author: Nikita V. Youshchenko <yoush at debian.org>
Date:   Thu Sep 25 00:44:00 2008 +0400

    fsl_diu: fix alignment error that caused malloc corruption
    
    When aligning malloc()ed screen_base, invalid offset was added.
    This not only caused misaligned result (which did not cause hardware
    misbehaviour), but - worse - caused screen_base + smem_len to
    be out of malloc()ed space, which in turn caused breakage of
    futher malloc()/free() operation.
    
    This patch fixes screen_base alignment.
    
    Also this patch makes memset() that cleans framebuffer to be executed
    on first initialization of diu, not only on re-initialization. It looks
    correct to clean the framebuffer instead of displaying random garbage;
    I believe that was disabled only because that memset caused breakage
    of malloc/free described above - which no longer happens with the fix
    described above.
    
    Signed-off-by: Nikita V. Youshchenko <yoush at debian.org>

diff --git a/board/freescale/common/fsl_diu_fb.c 
b/board/freescale/common/fsl_diu_fb.c
index 75f782e..4d4b0a1 100644
--- a/board/freescale/common/fsl_diu_fb.c
+++ b/board/freescale/common/fsl_diu_fb.c
@@ -242,10 +242,10 @@ int fsl_diu_init(int xres,
 			printf("Unable to allocate fb memory 1\n");
 			return -1;
 		}
-	} else {
-		memset(info->screen_base, 0, info->smem_len);
 	}
 
+	memset(info->screen_base, 0, info->smem_len);
+
 	dr.diu_reg->desc[0] = (unsigned int) &dummy_ad;
 	dr.diu_reg->desc[1] = (unsigned int) &dummy_ad;
 	dr.diu_reg->desc[2] = (unsigned int) &dummy_ad;
@@ -403,7 +403,7 @@ static int map_video_memory(struct fb_info *info, 
unsigned long bytes_align)
 	mask = bytes_align - 1;
 	offset = (unsigned long)info->screen_base & mask;
 	if (offset) {
-		info->screen_base += offset;
+		info->screen_base += (bytes_align - offset);
 		info->smem_len = info->smem_len - (bytes_align - offset);
 	} else
 		info->smem_len = info->smem_len - bytes_align;
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 197 bytes
Desc: This is a digitally signed message part.
Url : http://lists.denx.de/pipermail/u-boot/attachments/20081003/cfbd95c2/attachment.pgp 


More information about the U-Boot mailing list