Message ID | 20200408151025.20549-15-giulio.benetti@benettiengineering.com |
---|---|
State | Superseded |
Headers | show |
Series | i.MXRT1050 add LCDIF support | expand |
On Wed, 8 Apr 2020 17:10:20 +0200 Giulio Benetti giulio.benetti at benettiengineering.com wrote: > i.MXRT1050 provides mxsfb compatible lcd controller, so let's enable > video mxsfb driver with 16bpp depth if CONFIG_DM_VIDEO is selected since > board has 16bpp only connection. > > Signed-off-by: Giulio Benetti <giulio.benetti at benettiengineering.com> Reviewed-by: Anatolij Gustschin <agust at denx.de> -- Anatolij
> i.MXRT1050 provides mxsfb compatible lcd controller, so let's enable > video mxsfb driver with 16bpp depth if CONFIG_DM_VIDEO is selected since > board has 16bpp only connection. > Signed-off-by: Giulio Benetti <giulio.benetti at benettiengineering.com> > Reviewed-by: Anatolij Gustschin <agust at denx.de> Applied to u-boot-imx, master, thanks ! Best regards, Stefano Babic
diff --git a/include/configs/imxrt1050-evk.h b/include/configs/imxrt1050-evk.h index cdec657fb0..3a6b972d9a 100644 --- a/include/configs/imxrt1050-evk.h +++ b/include/configs/imxrt1050-evk.h @@ -30,6 +30,21 @@ #define CONFIG_SYS_MMC_ENV_DEV 0 /* USDHC1 */ +#ifdef CONFIG_DM_VIDEO +#define CONFIG_VIDEO_MXS +#define CONFIG_VIDEO_LOGO +#define CONFIG_SPLASH_SCREEN +#define CONFIG_SPLASH_SCREEN_ALIGN +#define CONFIG_BMP_16BPP +#define CONFIG_VIDEO_BMP_RLE8 +#define CONFIG_VIDEO_BMP_LOGO + +#define CONFIG_EXTRA_ENV_SETTINGS \ + "stdin=serial\0" \ + "stdout=serial,vidconsole\0" \ + "stderr=serial,vidconsole\0" +#endif + /* * Configuration of the external SDRAM memory */
i.MXRT1050 provides mxsfb compatible lcd controller, so let's enable video mxsfb driver with 16bpp depth if CONFIG_DM_VIDEO is selected since board has 16bpp only connection. Signed-off-by: Giulio Benetti <giulio.benetti at benettiengineering.com> --- include/configs/imxrt1050-evk.h | 15 +++++++++++++++ 1 file changed, 15 insertions(+)