
Hi Tom,
please pull video updates for v2023.07-rc2.
CI: https://source.denx.de/u-boot/custodians/u-boot-video/-/pipelines/16257
Thanks, Anatolij
The following changes since commit b646e1f69fca5d6a002be1f4e32fab00e140c091:
patman: Declare the future Series memory (2023-04-23 14:24:41 -0400)
are available in the Git repository at:
https://source.denx.de/u-boot/custodians/u-boot-video.git tags/video-for-v2023.07-rc2
for you to fetch changes up to def72d5c6265bde4e9eb7976db53a77fabc4808a:
video: panel: add generic endeavoru panel (2023-04-26 07:35:57 +0200)
---------------------------------------------------------------- - enable video support in SPL - support splash screen for TI am62x - replace #ifdef and #if with if's in bmp/splash - add lm3533 backlight driver - add Solomon SSD2825 DSI/LVDS bridge driver - add Renesas R61307 and R69328 MIPI DSI panel drivers - add tegra DC based PWM backlight driver - add generic endeavoru (HTC One X) panel driver
---------------------------------------------------------------- Nikhil M Jain (14): drivers: video: Kconfig: Add configs for enabling video at SPL drivers: video: tidss: Kconfig: Configs to enable TIDSS at SPL drivers: Makefile: Add rule to compile video driver drivers: video: Makefile: Rule to compile necessary video driver files drivers: video: tidss: Makefile: Add condition to compile TIDSS at SPL common: Makefile: Add rule to compile splash and splash_source at SPL common: Kconfig: Add BMP configs cmd: bmp: Split bmp commands and functions common: Makefile: Rule to compile bmp.c drivers: video: Enable necessary video functions at SPL common: Enable splash functions at SPL include: Enable video related global data variable and splash at SPL board: ti: am62x: evm: OSPI support for splash screen common: Replace #ifdef and #if with if's
Svyatoslav Ryhel (6): video: add lm3533 backlight driver video: bridge: add Solomon SSD2825 DSI/LVDS driver video: panel: add Renesas R61307 MIPI DSI panel driver video: panel: add Renesas R69328 MIPI DSI panel driver video: tegra: add DC based PWM backlight driver video: panel: add generic endeavoru panel
board/ti/am62x/evm.c | 8 +- cmd/bmp.c | 162 +-------- common/Kconfig | 12 + common/Makefile | 3 + common/bmp.c | 149 ++++++++ common/splash.c | 20 +- drivers/Makefile | 1 + drivers/video/Kconfig | 261 +++++++++++++- drivers/video/Makefile | 20 +- drivers/video/bridge/Kconfig | 7 + drivers/video/bridge/Makefile | 1 + drivers/video/bridge/ssd2825.c | 520 ++++++++++++++++++++++++++++ drivers/video/console_core.c | 6 +- drivers/video/endeavoru-panel.c | 252 ++++++++++++++ drivers/video/lm3533_backlight.c | 134 +++++++ drivers/video/renesas-r61307.c | 302 ++++++++++++++++ drivers/video/renesas-r69328.c | 238 +++++++++++++ drivers/video/tegra20/Kconfig | 7 + drivers/video/tegra20/Makefile | 1 + drivers/video/tegra20/tegra-pwm-backlight.c | 156 +++++++++ drivers/video/tidss/Kconfig | 6 + drivers/video/tidss/Makefile | 2 +- drivers/video/vidconsole-uclass.c | 2 +- drivers/video/video-uclass.c | 14 +- drivers/video/video_bmp.c | 8 +- include/asm-generic/global_data.h | 4 +- include/splash.h | 15 +- include/video.h | 8 + 28 files changed, 2107 insertions(+), 212 deletions(-) create mode 100644 common/bmp.c create mode 100644 drivers/video/bridge/ssd2825.c create mode 100644 drivers/video/endeavoru-panel.c create mode 100644 drivers/video/lm3533_backlight.c create mode 100644 drivers/video/renesas-r61307.c create mode 100644 drivers/video/renesas-r69328.c create mode 100644 drivers/video/tegra20/tegra-pwm-backlight.c