aboutsummaryrefslogtreecommitdiff
path: root/board/toradex
diff options
context:
space:
mode:
authorIgor Opaniuk <igor.opaniuk@toradex.com>2019-06-10 14:47:49 +0300
committerAnatolij Gustschin <agust@denx.de>2019-07-29 00:08:49 +0200
commita6eedb670d56fe0d8784f2f5737077d79d96a4e5 (patch)
tree197edd8384cec4550475451068d730f29d3e552c /board/toradex
parent75551c8bfc9545e31ec2ce238cac3857904007b8 (diff)
downloadu-boot-a6eedb670d56fe0d8784f2f5737077d79d96a4e5.zip
u-boot-a6eedb670d56fe0d8784f2f5737077d79d96a4e5.tar.gz
u-boot-a6eedb670d56fe0d8784f2f5737077d79d96a4e5.tar.bz2
video: fsl_dcu_fb: refactor init functions
Move dcu-related code to fsl_dcu_probe_common, keep in video_hw_init() only legacy video stack (filling GraphicPanel struct etc.). Add wrappers for all init functions, that will let to provide struct fb_info as an additional param (needed for further moving it from the global scope to driver private data struct in DM converted driver). Signed-off-by: Igor Opaniuk <igor.opaniuk@toradex.com> Reviewed-by: Oleksandr Suvorov <oleksandr.suvorov@toradex.com>
Diffstat (limited to 'board/toradex')
-rw-r--r--board/toradex/colibri_vf/dcu.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/board/toradex/colibri_vf/dcu.c b/board/toradex/colibri_vf/dcu.c
index c36e90c..c688ed7 100644
--- a/board/toradex/colibri_vf/dcu.c
+++ b/board/toradex/colibri_vf/dcu.c
@@ -26,11 +26,13 @@ unsigned int dcu_set_pixel_clock(unsigned int pixclock)
return div;
}
-int platform_dcu_init(unsigned int xres, unsigned int yres,
+int platform_dcu_init(struct fb_info *fbinfo,
+ unsigned int xres,
+ unsigned int yres,
const char *port,
struct fb_videomode *dcu_fb_videomode)
{
- fsl_dcu_init(xres, yres, 32);
+ fsl_dcu_init(fbinfo, xres, yres, 32);
return 0;
}