mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-10-02 11:11:40 +02:00
video: Set up the copy framebuffer when enabled
This framebuffer is separately mapped. Update the video post-probe function to set this up. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Anatolij Gustschin <agust@denx.de> Tested-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
parent
9beac5daf7
commit
6efa809dde
@ -293,6 +293,9 @@ static int video_post_probe(struct udevice *dev)
|
|||||||
|
|
||||||
priv->fb_size = priv->line_length * priv->ysize;
|
priv->fb_size = priv->line_length * priv->ysize;
|
||||||
|
|
||||||
|
if (IS_ENABLED(CONFIG_VIDEO_COPY) && plat->copy_base)
|
||||||
|
priv->copy_fb = map_sysmem(plat->copy_base, plat->size);
|
||||||
|
|
||||||
/* Set up colors */
|
/* Set up colors */
|
||||||
video_set_default_colors(dev, false);
|
video_set_default_colors(dev, false);
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user