* [U-Boot] [PATCH v2] mxc_ipuv3: fix memory alignment of framebuffer
@ 2013-07-27 0:53 Eric Nelson
2013-07-29 10:18 ` Stefano Babic
0 siblings, 1 reply; 2+ messages in thread
From: Eric Nelson @ 2013-07-27 0:53 UTC (permalink / raw)
To: u-boot
The frame-buffer on i.MX boards needs to be aligned for DMA.
Signed-off-by: Eric Nelson <eric.nelson@boundarydevices.com>
---
Changes in v2: Also round smem_len up to ARCH_DMA_MINALIGN
drivers/video/mxc_ipuv3_fb.c | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
diff --git a/drivers/video/mxc_ipuv3_fb.c b/drivers/video/mxc_ipuv3_fb.c
index ace226c..d922d5d 100644
--- a/drivers/video/mxc_ipuv3_fb.c
+++ b/drivers/video/mxc_ipuv3_fb.c
@@ -415,8 +415,9 @@ static int mxcfb_map_video_memory(struct fb_info *fbi)
fbi->fix.smem_len = fbi->var.yres_virtual *
fbi->fix.line_length;
}
-
- fbi->screen_base = (char *)malloc(fbi->fix.smem_len);
+ fbi->fix.smem_len = roundup(fbi->fix.smem_len, ARCH_DMA_MINALIGN);
+ fbi->screen_base = (char *)memalign(ARCH_DMA_MINALIGN,
+ fbi->fix.smem_len);
fbi->fix.smem_start = (unsigned long)fbi->screen_base;
if (fbi->screen_base == 0) {
puts("Unable to allocate framebuffer memory\n");
--
1.8.1.2
^ permalink raw reply related [flat|nested] 2+ messages in thread
* [U-Boot] [PATCH v2] mxc_ipuv3: fix memory alignment of framebuffer
2013-07-27 0:53 [U-Boot] [PATCH v2] mxc_ipuv3: fix memory alignment of framebuffer Eric Nelson
@ 2013-07-29 10:18 ` Stefano Babic
0 siblings, 0 replies; 2+ messages in thread
From: Stefano Babic @ 2013-07-29 10:18 UTC (permalink / raw)
To: u-boot
On 27/07/2013 02:53, Eric Nelson wrote:
> The frame-buffer on i.MX boards needs to be aligned for DMA.
>
> Signed-off-by: Eric Nelson <eric.nelson@boundarydevices.com>
> ---
Applied to u-boot-imx, thanks.
Best regards,
Stefano Babic
--
=====================================================================
DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2013-07-29 10:18 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-07-27 0:53 [U-Boot] [PATCH v2] mxc_ipuv3: fix memory alignment of framebuffer Eric Nelson
2013-07-29 10:18 ` Stefano Babic
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox