Skip to content

Commit

Permalink
Update splash screen details with defconfig changes to enable the
Browse files Browse the repository at this point in the history
splash screen.
Add steps to test the splash screen.
Add the reference output image on AM335x EVM.

Signed-off-by: Sukrut Bellary <[email protected]>
  • Loading branch information
Sukrut Bellary committed Dec 20, 2024
1 parent 7454be0 commit 73b6f6e
Showing 1 changed file with 36 additions and 22 deletions.
58 changes: 36 additions & 22 deletions source/linux/Foundational_Components/U-Boot/Apps-Splash-Screen.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
.. http://processors.wiki.ti.com/index.php/Processor_SDK_Linux_U-Boot_Splash_Screen
.. highlight:: c

U-Boot Splash Screen
==========================
Expand All @@ -20,26 +18,42 @@ To use this, enable following configurations in :file:`configs/am335x_evm_defcon

.. code-block:: kconfig
CONFIG_SPLASH_SCREEN=y
CONFIG_SPLASH_SOURCE=y
CONFIG_SPLASH_SCREEN_ALIGN=y
CONFIG_HIDE_LOGO_VERSION=y
CONFIG_AM335X_LCD=y
CONFIG_VIDEO_BMP_GZIP=y
CONFIG_BMP_24BPP=y
CONFIG_BMP_32BPP=y
CONFIG_BMP=y
CONFIG_VIDEO=y
CONFIG_CMD_BMP=y
CONFIG_SYSCON=y
CONFIG_REGMAP=y
CONFIG_CLK_CCF=y
CONFIG_CLK_TI_AM3_DPLL=y
CONFIG_CLK_TI_DIVIDER=y
CONFIG_CLK_TI_MUX=y
CONFIG_DM_PWM=y
CONFIG_BACKLIGHT_PWM=y
CONFIG_PWM_TI_ECAP=y
CONFIG_SPLASH_SCREEN=y
CONFIG_SPLASH_SOURCE=y
CONFIG_SPLASH_SCREEN_ALIGN=y
CONFIG_HIDE_LOGO_VERSION=y
CONFIG_AM335X_LCD=y
CONFIG_VIDEO_BMP_GZIP=y
CONFIG_BMP_24BPP=y
CONFIG_BMP_32BPP=y
CONFIG_BMP=y
CONFIG_VIDEO=y
CONFIG_CMD_BMP=y
CONFIG_SYSCON=y
CONFIG_REGMAP=y
CONFIG_CLK_CCF=y
CONFIG_CLK_TI_AM3_DPLL=y
CONFIG_CLK_TI_DIVIDER=y
CONFIG_CLK_TI_MUX=y
CONFIG_DM_PWM=y
CONFIG_BACKLIGHT_PWM=y
CONFIG_PWM_TI_ECAP=y
If user is using enhanced High Resolution PWM(eHRPWM) to control the display backlight,
enable following config.


.. code-block:: kconfig
CONFIG_CLK_TI_GATE=y
.. rubric:: Features supported

The following features are supported and validated on am335x EVM:

#. Supports 32, 24, and 8 bits per pixel BMP image.
#. Supports displaying only BMP and compressed BMP images(gzip).
#. Supports MMC as bmp image sources.

.. rubric:: Display Image using U-Boot command line
:name: Display Image
Expand Down

0 comments on commit 73b6f6e

Please sign in to comment.