Please pull u-boot-video

Anatolij Gustschin agust at denx.de
Fri Apr 7 21:51:26 CEST 2023


Hi Tom,

please pull video updates for v2023.07.

CI: https://source.denx.de/u-boot/custodians/u-boot-video/-/pipelines/15944

Thanks,
Anatolij

The following changes since commit 340bebf9c799793affefd166875d5776744988bd:

  Merge branch '2023-04-06-assorted-updates' (2023-04-07 10:44:19 -0400)

are available in the Git repository at:

  https://source.denx.de/u-boot/custodians/u-boot-video.git tags/video-20230407

for you to fetch changes up to cc54a924cd28a2d1b0f0035bd7d78532b6bc4ad8:

  simple_panel: support simple MIPI DSI panels (2023-04-07 19:54:31 +0200)

----------------------------------------------------------------
 - fix building sandbox without SDL
 - improve tegra DC driver to work with panel ops and implement
   native 180 degree panel rotation support
 - add T30 support to tegra DC driver
 - add DSI driver (based on mainline Linux one with minor
   adjustments, only T30 tested)
 - add get_display_timing ops to simple panel driver
 - extend simple panel driver to use it for MIPI DSI panels
   which do not require additional DSI commands for setup

----------------------------------------------------------------
Marcel Ziswiler (1):
      tegra: lcd: video: integrate display driver for t30

Simon Glass (1):
      sandbox: video: Fix building without SDL

Svyatoslav Ryhel (10):
      video: move tegra dc driver into own folder
      video: tegra-dc: get clocks from device tree
      video: tegra-dc: request timings from panel driver first
      video: tegra-dc: assign regmap directly
      video: tegra-dc: add 180 degree panel rotation
      video: tegra-dc: add panel_set_backlight call
      video: tegra-dc: pass DC regmap to internal devices
      video: tegra20: add DSI controller driver
      simple_panel: add support for get_display_timing
      simple_panel: support simple MIPI DSI panels

 arch/arm/dts/tegra30-u-boot.dtsi              |   9 +
 arch/arm/include/asm/arch-tegra/dc.h          |   8 +
 arch/arm/include/asm/arch-tegra30/display.h   |  28 +
 arch/arm/include/asm/arch-tegra30/dsi.h       | 217 +++++++
 arch/arm/include/asm/arch-tegra30/pwm.h       |  13 +
 arch/sandbox/include/asm/test.h               |   8 +
 drivers/video/Kconfig                         |  11 +-
 drivers/video/Makefile                        |   2 +-
 drivers/video/simple_panel.c                  |  47 +-
 drivers/video/tegra20/Kconfig                 |  17 +
 drivers/video/tegra20/Makefile                |   4 +
 drivers/video/tegra20/mipi-phy.c              | 134 ++++
 drivers/video/tegra20/mipi-phy.h              |  48 ++
 drivers/video/{tegra.c => tegra20/tegra-dc.c} | 123 ++--
 drivers/video/tegra20/tegra-dsi.c             | 864 ++++++++++++++++++++++++++
 15 files changed, 1484 insertions(+), 49 deletions(-)
 create mode 100644 arch/arm/include/asm/arch-tegra30/display.h
 create mode 100644 arch/arm/include/asm/arch-tegra30/dsi.h
 create mode 100644 arch/arm/include/asm/arch-tegra30/pwm.h
 create mode 100644 drivers/video/tegra20/Kconfig
 create mode 100644 drivers/video/tegra20/Makefile
 create mode 100644 drivers/video/tegra20/mipi-phy.c
 create mode 100644 drivers/video/tegra20/mipi-phy.h
 rename drivers/video/{tegra.c => tegra20/tegra-dc.c} (82%)
 create mode 100644 drivers/video/tegra20/tegra-dsi.c


More information about the U-Boot mailing list