This might be a hint: Console: switching co colour frame buffer device 100x33
I counted the pixels, resolution 800x480 pix, the screen has 100x33 characters , one character 8x16 pix
Thanks for the question!
I’m going to investigate what causes these logs on the kernel along with the splash screen. In the meantime, could you please confirm if you could solve the issue on BSP 6.4 with the solution that worked on BSP 6.2?
After apply fix from last thread ( 6.2 ) setup=setenv setupargs console=${console},${baudrate} consoleblank=0 earlycon
I have this
My splash screen has 800x480 resolution like LCD screen
I change temporary splash image to grid (test image)
the image is cropped 96 pix in Y (from the bottom)
That’s an interesting question. I have tested a custom kernel splash screen for a colibri iMX8X module with a 7" capacitive display from Toradex. At least on this setup I did not see these kernel messages or empty lines popping up. I will discuss this internally with some experts and get back to you on that. In the meantime, could you please tell me what type of display you are using?
If the quiet argument from Rudhi does not work it might help to just disable the console framebuffer by changing the kernel configuration. For this you need to apply the following patch:
diff --git a/arch/arm64/configs/toradex_defconfig b/arch/arm64/configs/toradex_defconfig
index 1ca4c6434e00..155680fe7e92 100644
--- a/arch/arm64/configs/toradex_defconfig
+++ b/arch/arm64/configs/toradex_defconfig
@@ -573,6 +575,7 @@ CONFIG_IMX_DPU_CORE=y
CONFIG_IMX_LCDIF_CORE=y
CONFIG_IMX_LCDIFV3_CORE=y
CONFIG_DRM=y
+# CONFIG_DRM_FBDEV_EMULATION is not set
CONFIG_DRM_I2C_CH7006=m
CONFIG_DRM_I2C_SIL164=m
CONFIG_DRM_I2C_NXP_TDA998X=m
Then run:
make toradex_defconfig
In the end in your .config CONFIG_FRAMEBUFFER_CONSOLE should be disabled. Then Linux can not use the display as a console anymore.
@rudhi.tx I test it `setup=setenv setupargs console=${console},${baudrate} consoleblank=0 quiet’
it disable kernel message but I have black on bottom (96 pixels)