
This serie contains all patchsets needed for displaying a splash screen on the stm32f769 disco board.
yannick fertre (7): video: stm32: stm32_ltdc: add bridge to display controller video: add support of MIPI DSI interface video: add support of panel OTM8009A video: add MIPI DSI host controller bridge video: add support of STM32 MIPI DSI controller driver arm: dts: stm32: add dsi for STM32F746 arm: dts: stm32: add display for STM32F769 disco board
arch/arm/dts/stm32f746.dtsi | 12 + arch/arm/dts/stm32f769-disco.dts | 59 +++ drivers/video/Kconfig | 23 ++ drivers/video/Makefile | 4 + drivers/video/dw_mipi_dsi.c | 822 +++++++++++++++++++++++++++++++++++++ drivers/video/mipi_display.c | 809 ++++++++++++++++++++++++++++++++++++ drivers/video/orisetech_otm8009a.c | 316 ++++++++++++++ drivers/video/stm32/Kconfig | 10 + drivers/video/stm32/Makefile | 1 + drivers/video/stm32/stm32_dsi.c | 429 +++++++++++++++++++ drivers/video/stm32/stm32_ltdc.c | 107 +++-- include/dw_mipi_dsi.h | 32 ++ include/mipi_display.h | 257 +++++++++++- 13 files changed, 2844 insertions(+), 37 deletions(-) create mode 100644 drivers/video/dw_mipi_dsi.c create mode 100644 drivers/video/mipi_display.c create mode 100644 drivers/video/orisetech_otm8009a.c create mode 100644 drivers/video/stm32/stm32_dsi.c create mode 100644 include/dw_mipi_dsi.h