[U-Boot] Please pull u-boot-video
Anatolij Gustschin
agust at denx.de
Mon Oct 14 09:40:13 UTC 2019
Hi Tom,
please pull video updates for v2020.01.
Travis-CI: https://travis-ci.org/vdsao/u-boot-video/builds/597379178
Thanks,
Anatolij
The following changes since commit 7a779ed1755c2d5011bd9598da90291f759ae760:
travis: Exclude MIPS from the bcm job (2019-10-13 11:21:56 -0400)
are available in the Git repository at:
https://gitlab.denx.de/u-boot/custodians/u-boot-video.git tags/video-for-2020.01
for you to fetch changes up to d68ed0fad6bb880bd2bbcc1d86cfc9ba971f856f:
stm32mp1: configs: add display devices (2019-10-13 23:40:15 +0200)
----------------------------------------------------------------
- panel bridge support in stm32 ltdc
- DSI host uclass
- sandbox DSI host uclass test driver and DSI host test
- MIPI DSI helpers
- Synopsys Designware MIPI DSI host bridge driver
- STM32 DSI controller driver
- OTM800A and RM68200 panel support
- DSI host updates for stm32f769 and stm32mp1 dtsi files
- splash screen for stm32f769 and stm32mp1 boards
- stm32 defconfig updates for display support
----------------------------------------------------------------
Yannick Fertré (14):
video: stm32: stm32_ltdc: add bridge to display controller
include: Add new DCS commands in the enum list
video: add support of MIPI DSI interface
dm: Add a dsi host uclass
video: add MIPI DSI host controller bridge
video: add support of STM32 MIPI DSI controller driver
video: add support of panel OTM8009A
video: add support of panel RM68200
board: Add STM32F769 SoC, discovery board support
ARM: dts: stm32f769: add display for STM32F769 disco board
ARM: dts: stm32mp1: add dsi host for stm32mp157c-ev1 board
ARM: dts: stm32mp1: add dsi host for stm32mp157c-dk2 board
stm32mp1: configs: update video
stm32mp1: configs: add display devices
arch/arm/dts/stm32f769-disco-u-boot.dtsi | 62 +++
arch/arm/dts/stm32mp157c-dk2-u-boot.dtsi | 7 +
arch/arm/dts/stm32mp157c-ev1-u-boot.dtsi | 5 +
arch/sandbox/dts/sandbox.dts | 6 +-
arch/sandbox/dts/test.dts | 4 +
board/st/stm32f746-disco/MAINTAINERS | 1 +
configs/sandbox_defconfig | 1 +
configs/stm32f769-disco_defconfig | 63 +++
configs/stm32mp15_basic_defconfig | 6 +
configs/stm32mp15_optee_defconfig | 6 +
configs/stm32mp15_trusted_defconfig | 6 +
drivers/video/Kconfig | 47 ++
drivers/video/Makefile | 6 +
drivers/video/dsi-host-uclass.c | 39 ++
drivers/video/dw_mipi_dsi.c | 838 +++++++++++++++++++++++++++++++
drivers/video/mipi_dsi.c | 828 ++++++++++++++++++++++++++++++
drivers/video/orisetech_otm8009a.c | 379 ++++++++++++++
drivers/video/raydium-rm68200.c | 351 +++++++++++++
drivers/video/sandbox_dsi_host.c | 90 ++++
drivers/video/stm32/Kconfig | 9 +
drivers/video/stm32/Makefile | 1 +
drivers/video/stm32/stm32_dsi.c | 490 ++++++++++++++++++
drivers/video/stm32/stm32_ltdc.c | 143 +++---
include/configs/stm32mp1.h | 7 +
include/dm/uclass-id.h | 1 +
include/dsi_host.h | 73 +++
include/mipi_display.h | 8 +
include/mipi_dsi.h | 466 +++++++++++++++++
test/dm/Makefile | 1 +
test/dm/dsi_host.c | 58 +++
30 files changed, 3941 insertions(+), 61 deletions(-)
create mode 100644 configs/stm32f769-disco_defconfig
create mode 100644 drivers/video/dsi-host-uclass.c
create mode 100644 drivers/video/dw_mipi_dsi.c
create mode 100644 drivers/video/mipi_dsi.c
create mode 100644 drivers/video/orisetech_otm8009a.c
create mode 100644 drivers/video/raydium-rm68200.c
create mode 100644 drivers/video/sandbox_dsi_host.c
create mode 100644 drivers/video/stm32/stm32_dsi.c
create mode 100644 include/dsi_host.h
create mode 100644 include/mipi_dsi.h
create mode 100644 test/dm/dsi_host.c
More information about the U-Boot
mailing list