How to enable splash screen in u-boot for am62 on lvds display?
Verdin AM62 Dual1GB IT
Verdin Development Board 1.1E
U-boot sources: toradex_ti-u-boot-2023.04
Display: Capacitive Touch Display 10.1’’ LVDS via dsi-to-lvds-adapter.
How to enable splash screen in u-boot for am62 on lvds display?
Verdin AM62 Dual1GB IT
Verdin Development Board 1.1E
U-boot sources: toradex_ti-u-boot-2023.04
Display: Capacitive Touch Display 10.1’’ LVDS via dsi-to-lvds-adapter.
Hi, I’m the Toradex AI Assistant. I’m in early beta, and I would appreciate your feedback.
The Toradex Support team will follow up with you shortly!
Did you like my answer?
To enable a splash screen in U-Boot for the Verdin AM62 Dual1GB IT on an LVDS display via a DSI-to-LVDS adapter, follow these steps:
Prepare the Splash Screen Image: First, you need to prepare your splash screen image. The image should be in a format supported by U-Boot, typically BMP. Ensure the image resolution matches the display’s resolution for optimal display quality.
Convert the Image: Convert your splash screen image to a format that U-Boot can display. If your image is in BMP format, you might not need to convert it. However, ensure it’s in the correct resolution and bit depth. Tools like ffmpeg
or convert
(from ImageMagick) can be used for conversion if necessary.
Integrate the Image into U-Boot: There are several methods to integrate the splash screen into U-Boot. One common approach is to include the image directly into the U-Boot binary. This can be done by placing the image in the U-Boot source tree (e.g., in the board/toradex/verdin-am62/
directory) and referencing it in the U-Boot configuration or source code.
Modify U-Boot Configuration: You’ll need to modify the U-Boot configuration to enable the splash screen feature. This involves editing the U-Boot configuration file (include/configs/verdin_am62.h
for your specific board) to define the splash screen parameters, such as the memory address where the image will be loaded and the display interface configurations.
Add definitions similar to the following, adjusting parameters as necessary for your setup:
#define CONFIG_SPLASH_SCREEN
#define CONFIG_CMD_BMP
#define CONFIG_SPLASH_SOURCE
#define CONFIG_LCD
#define CONFIG_SYS_WHITE_ON_BLACK
#define CONFIG_BMP_16BPP
#define CONFIG_VIDEO_LOGO
#define CONFIG_VIDEO_BMP_LOGO
Configure the Display Interface: Since you’re using an LVDS display via a DSI-to-LVDS adapter, ensure the display timings and interface configurations are correctly set up in U-Boot. This might involve configuring the LVDS bridge settings and ensuring the DSI interface is correctly initialized during the U-Boot startup sequence. These configurations can be specific to the hardware and might require adjustments in the board initialization code (`board/toradex
Please, also check if these links can help you solve your problem:
Hello @FlorianG,
Thanks for posting the question.
I shared some info on your other post regarding this question: Fast splash screen on Verdin AM62 - #5 by rudhi.tx