All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/9] Enable splash screen
@ 2023-03-14  4:50 Nikhil M Jain
  2023-03-14  4:50 ` [PATCH 1/9] drivers: video: Kconfig: Necessary configs for video at SPL Nikhil M Jain
                   ` (9 more replies)
  0 siblings, 10 replies; 22+ messages in thread
From: Nikhil M Jain @ 2023-03-14  4:50 UTC (permalink / raw)
  To: u-boot, agust; +Cc: n-jain1, devarsht, trini, vigneshr, nsekhar, sjg

To enable splash screen at SPL stage move video driver and splash screen
framework at SPL, which will bring up image on display very quickly and
thus have early display support in SPL.

Change in V2
- Removed artifacts from bad patch apply.

Nikhil M Jain (9):
  drivers: video: Kconfig: Necessary configs for video at SPL
  drivers: video: tidss: Kconfig: Configs to enable TIDSS at SPL
  cmd: Kconfig: Add necessary configs for splash screen at SPL
  drivers: video: Makefile: Compile video driver files at SPL
  drivers: video: tidss: Makefile: Add condition to compile TIDSS at SPL
  cmd: Makefile: Add rules to build bmp.c and read.c at SPL
  common: splash: Enable splash_display at SPL stage
  drivers: video: video-uclass: Disable u-boot logo at SPL
  board: ti: am62x: evm: OSPI support for splash screen

 board/ti/am62x/evm.c         |  6 ++++++
 cmd/Kconfig                  | 17 +++++++++++++++++
 cmd/Makefile                 |  2 ++
 common/splash.c              |  2 +-
 drivers/video/Kconfig        | 32 ++++++++++++++++++++++++++++----
 drivers/video/Makefile       |  6 ++++++
 drivers/video/tidss/Kconfig  |  6 ++++++
 drivers/video/tidss/Makefile |  1 +
 drivers/video/video-uclass.c |  2 +-
 include/splash.h             |  2 +-
 10 files changed, 69 insertions(+), 7 deletions(-)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 22+ messages in thread
* [PATCH 0/9] Enable splash screen
@ 2023-03-13 10:14 Nikhil M Jain
  2023-03-13 10:14 ` [PATCH 6/9] cmd: Makefile: Add rules to build bmp.c and read.c at SPL Nikhil M Jain
  0 siblings, 1 reply; 22+ messages in thread
From: Nikhil M Jain @ 2023-03-13 10:14 UTC (permalink / raw)
  To: u-boot, agust; +Cc: n-jain1, devarsht, trini, vigneshr, nsekhar, sjg

To enable splash screen at SPL stage move video driver and splash screen
framework at SPL, which will bring up image on display very quickly and
thus have early display support in SPL.

Nikhil M Jain (9):
  drivers: video: Kconfig: Necessary configs for video at SPL
  drivers: video: tidss: Kconfig: Configs to enable TIDSS at SPL
  cmd: Kconfig: Add necessary configs for splash screen at SPL
  drivers: video: Makefile: Compile video driver files at SPL
  drivers: video: tidss: Makefile: Add condition to compile TIDSS at SPL
  cmd: Makefile: Add rules to build bmp.c and read.c at SPL
  common: splash: Enable splash_display at SPL stage
  drivers: video: video-uclass: Disable u-boot logo at SPL
  board: ti: am62x: evm: OSPI support for splash screen

 board/ti/am62x/evm.c         |  6 ++++++
 cmd/Kconfig                  | 17 +++++++++++++++++
 cmd/Makefile                 |  2 ++
 common/splash.c              |  2 +-
 drivers/video/Kconfig        | 32 ++++++++++++++++++++++++++++----
 drivers/video/Makefile       |  6 ++++++
 drivers/video/tidss/Kconfig  |  6 ++++++
 drivers/video/tidss/Makefile |  1 +
 drivers/video/video-uclass.c |  2 +-
 include/splash.h             |  2 +-
 10 files changed, 69 insertions(+), 7 deletions(-)

-- 
2.34.1


^ permalink raw reply	[flat|nested] 22+ messages in thread

end of thread, other threads:[~2023-03-27  8:27 UTC | newest]

Thread overview: 22+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-14  4:50 [PATCH 0/9] Enable splash screen Nikhil M Jain
2023-03-14  4:50 ` [PATCH 1/9] drivers: video: Kconfig: Necessary configs for video at SPL Nikhil M Jain
2023-03-14  6:50   ` Devarsh Thakkar
2023-03-27  8:23   ` Simon Glass
2023-03-14  4:50 ` [PATCH 2/9] drivers: video: tidss: Kconfig: Configs to enable TIDSS " Nikhil M Jain
2023-03-27  8:23   ` Simon Glass
2023-03-14  4:50 ` [PATCH 3/9] cmd: Kconfig: Add necessary configs for splash screen " Nikhil M Jain
2023-03-27  8:23   ` Simon Glass
2023-03-14  4:50 ` [PATCH 4/9] drivers: video: Makefile: Compile video driver files " Nikhil M Jain
2023-03-27  8:23   ` Simon Glass
2023-03-14  4:50 ` [PATCH 5/9] drivers: video: tidss: Makefile: Add condition to compile TIDSS " Nikhil M Jain
2023-03-27  8:23   ` Simon Glass
2023-03-14  4:50 ` [PATCH 6/9] cmd: Makefile: Add rules to build bmp.c and read.c " Nikhil M Jain
2023-03-27  8:24   ` Simon Glass
2023-03-14  4:50 ` [PATCH 7/9] common: splash: Enable splash_display at SPL stage Nikhil M Jain
2023-03-27  8:24   ` Simon Glass
2023-03-14  4:50 ` [PATCH 8/9] drivers: video: video-uclass: Disable u-boot logo at SPL Nikhil M Jain
2023-03-27  8:24   ` Simon Glass
2023-03-14  4:50 ` [PATCH 9/9] board: ti: am62x: evm: OSPI support for splash screen Nikhil M Jain
2023-03-27  8:24   ` Simon Glass
2023-03-14  5:54 ` [PATCH 0/9] Enable " Devarsh Thakkar
  -- strict thread matches above, loose matches on Subject: below --
2023-03-13 10:14 Nikhil M Jain
2023-03-13 10:14 ` [PATCH 6/9] cmd: Makefile: Add rules to build bmp.c and read.c at SPL Nikhil M Jain

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.