
Version 1: - Initial commit.
Version 2: - swap patches to avoid compilation issue. - remove panel timings from device tree.
Version 3: - Share same include file mipi_display.h with kernel linux. - Rework ltdc driver with last comments of Anatolij Gustshin. - Check ordering (file dw_mipi_dsi.c). - Rename mipi_display.c to mipi_dsi.c.
This serie contains all patchsets needed for displaying a splash screen on the stm32f769 disco board. A new config has been created configs/stm32f769-disco_defconfig. This is necessary due to the difference of panels between stm32f769-disco & stm32f746-disco boards.
Yannick Fertré (10): 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 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 arm: dts: stm32: add dsi for STM32F746 arm: dts: stm32: add display for STM32F769 disco board board: Add STM32F769 SoC, discovery board support
arch/arm/dts/stm32f746.dtsi | 12 + arch/arm/dts/stm32f769-disco.dts | 41 ++ configs/stm32f769-disco_defconfig | 67 +++ drivers/video/Kconfig | 33 ++ drivers/video/Makefile | 4 + drivers/video/dw_mipi_dsi.c | 827 ++++++++++++++++++++++++++++++++++++ drivers/video/mipi_dsi.c | 828 +++++++++++++++++++++++++++++++++++++ drivers/video/orisetech_otm8009a.c | 367 ++++++++++++++++ drivers/video/raydium-rm68200.c | 339 +++++++++++++++ drivers/video/stm32/Kconfig | 10 + drivers/video/stm32/Makefile | 1 + drivers/video/stm32/stm32_dsi.c | 428 +++++++++++++++++++ drivers/video/stm32/stm32_ltdc.c | 143 ++++--- include/dw_mipi_dsi.h | 33 ++ include/mipi_display.h | 8 + include/mipi_dsi.h | 451 ++++++++++++++++++++ 16 files changed, 3531 insertions(+), 61 deletions(-) create mode 100644 configs/stm32f769-disco_defconfig 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/stm32/stm32_dsi.c create mode 100644 include/dw_mipi_dsi.h create mode 100644 include/mipi_dsi.h
-- 2.7.4