All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [ v2 00/10] splash screen on the stm32f769 disco board
@ 2018-07-13 12:11 Yannick Fertré
  2018-07-13 12:11 ` [U-Boot] [ v2 01/10] dm: panel: get timings from panel Yannick Fertré
                   ` (9 more replies)
  0 siblings, 10 replies; 18+ messages in thread
From: Yannick Fertré @ 2018-07-13 12:11 UTC (permalink / raw)
  To: u-boot

Version 1:
- Initial commit:

Version2:
- swap patches to avoid compilation issue.
- remove panel timings from device tree

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):
  dm: panel: get timings  from panel
  video: stm32: stm32_ltdc: add bridge to display controller
  video: add support of MIPI DSI interface
  video: add support of panel OTM8009A
  video: add support of panel RM68200
  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
  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              |  34 ++
 drivers/video/Makefile             |   4 +
 drivers/video/dw_mipi_dsi.c        | 826 +++++++++++++++++++++++++++++++++++++
 drivers/video/mipi_display.c       | 817 ++++++++++++++++++++++++++++++++++++
 drivers/video/orisetech_otm8009a.c | 366 ++++++++++++++++
 drivers/video/panel-uclass.c       |  11 +
 drivers/video/raydium-rm68200.c    | 338 +++++++++++++++
 drivers/video/stm32/Kconfig        |  10 +
 drivers/video/stm32/Makefile       |   1 +
 drivers/video/stm32/stm32_dsi.c    | 427 +++++++++++++++++++
 drivers/video/stm32/stm32_ltdc.c   | 154 ++++---
 include/dw_mipi_dsi.h              |  32 ++
 include/mipi_display.h             | 257 +++++++++++-
 include/panel.h                    |  18 +
 17 files changed, 3352 insertions(+), 63 deletions(-)
 create mode 100644 configs/stm32f769-disco_defconfig
 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/raydium-rm68200.c
 create mode 100644 drivers/video/stm32/stm32_dsi.c
 create mode 100644 include/dw_mipi_dsi.h

-- 
1.9.1

^ permalink raw reply	[flat|nested] 18+ messages in thread

end of thread, other threads:[~2018-08-01 16:06 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-13 12:11 [U-Boot] [ v2 00/10] splash screen on the stm32f769 disco board Yannick Fertré
2018-07-13 12:11 ` [U-Boot] [ v2 01/10] dm: panel: get timings from panel Yannick Fertré
2018-07-16  5:20   ` Simon Glass
2018-08-01 16:06   ` Anatolij Gustschin
2018-07-13 12:11 ` [U-Boot] [ v2 02/10] video: stm32: stm32_ltdc: add bridge to display controller Yannick Fertré
2018-08-01 15:46   ` Anatolij Gustschin
2018-07-13 12:11 ` [U-Boot] [ v2 03/10] video: add support of MIPI DSI interface Yannick Fertré
2018-07-16  5:20   ` Simon Glass
2018-07-13 12:11 ` [U-Boot] [ v2 04/10] video: add support of panel OTM8009A Yannick Fertré
2018-07-16  5:20   ` Simon Glass
2018-07-13 12:11 ` [U-Boot] [ v2 05/10] video: add support of panel RM68200 Yannick Fertré
2018-07-16  5:20   ` Simon Glass
2018-07-13 12:11 ` [U-Boot] [ v2 06/10] video: add MIPI DSI host controller bridge Yannick Fertré
2018-07-16  5:20   ` Simon Glass
2018-07-13 12:11 ` [U-Boot] [ v2 07/10] video: add support of STM32 MIPI DSI controller driver Yannick Fertré
2018-07-13 12:11 ` [U-Boot] [ v2 08/10] arm: dts: stm32: add dsi for STM32F746 Yannick Fertré
2018-07-13 12:11 ` [U-Boot] [ v2 09/10] arm: dts: stm32: add display for STM32F769 disco board Yannick Fertré
2018-07-13 12:11 ` [U-Boot] [ v2 10/10] board: Add STM32F769 SoC, discovery board support Yannick Fertré

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.