All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v3 00/10] splash screen on the stm32f769 disco board
@ 2018-08-17 14:38 Yannick Fertré
  2018-08-17 14:38 ` [U-Boot] [PATCH v3 01/10] video: stm32: stm32_ltdc: add bridge to display controller Yannick Fertré
                   ` (9 more replies)
  0 siblings, 10 replies; 17+ messages in thread
From: Yannick Fertré @ 2018-08-17 14:38 UTC (permalink / raw)
  To: u-boot

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

^ permalink raw reply	[flat|nested] 17+ messages in thread
* [PATCH v3 00/10] splash screen on the stm32f769 disco board
@ 2018-03-13 13:49 yannick fertre
  2018-03-13 13:50 ` [U-Boot] [PATCH v3 03/10] video: add support of MIPI DSI interface yannick fertre
  0 siblings, 1 reply; 17+ messages in thread
From: yannick fertre @ 2018-03-13 13:49 UTC (permalink / raw)
  To: Vikas Manocha, Tom Rini, Benjamin Gaignard, Yannick Fertre,
	Philippe Cornu, Patrice Chotard, Patrick DELAUNAY,
	Christophe KERELLO, Archit Taneja, Andrzej Hajda,
	Laurent Pinchart, David Airlie, Brian Norris, Bhumika Goyal,
	Gustavo Padovan, Maarten Lankhorst, Sean Paul, Albert Aribaud,
	Simon Glass, Anatolij Gustschin, Thierry Reding
  Cc: u-boot, dri-devel, linux-kernel

Version 3:
- Replace some pr_error, pr_warn or pr_info by dev_error, dev_warn & dev_info.
- Refresh stm32f769-disco_defconfig with last modification done on v2018.3-rc4.
- rework include files ordering.

Version 2:
- Replace debug log by pr_error, pr_warn or pr_info.
- Rework bridge between ltdc & dsi panel
- Rework backligh management (with or witout gpio)
- Rework panel otm8009a
- Add new panel raydium rm68200

Version 1:
- Initial commit

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.
This serie depends on:
  http://patchwork.ozlabs.org/patch/870938/
  http://patchwork.ozlabs.org/cover/880576/
yannick fertre (10):
  video: stm32: stm32_ltdc: add bridge to display controller
  video: stm32: stm32_ltdc: update debug log
  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
  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   |  71 ++++
 configs/stm32f769-disco_defconfig  |  65 +++
 drivers/video/Kconfig              |  32 ++
 drivers/video/Makefile             |   4 +
 drivers/video/dw_mipi_dsi.c        | 822 +++++++++++++++++++++++++++++++++++++
 drivers/video/mipi_display.c       | 807 ++++++++++++++++++++++++++++++++++++
 drivers/video/orisetech_otm8009a.c | 327 +++++++++++++++
 drivers/video/raydium-rm68200.c    | 326 +++++++++++++++
 drivers/video/stm32/Kconfig        |  10 +
 drivers/video/stm32/Makefile       |   1 +
 drivers/video/stm32/stm32_dsi.c    | 426 +++++++++++++++++++
 drivers/video/stm32/stm32_ltdc.c   | 144 ++++---
 include/dw_mipi_dsi.h              |  34 ++
 include/mipi_display.h             | 257 +++++++++++-
 15 files changed, 3279 insertions(+), 59 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] 17+ messages in thread

end of thread, other threads:[~2018-08-22  7:59 UTC | newest]

Thread overview: 17+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-17 14:38 [U-Boot] [PATCH v3 00/10] splash screen on the stm32f769 disco board Yannick Fertré
2018-08-17 14:38 ` [U-Boot] [PATCH v3 01/10] video: stm32: stm32_ltdc: add bridge to display controller Yannick Fertré
2018-08-20 14:02   ` Simon Glass
2018-08-17 14:38 ` [U-Boot] [PATCH v3 02/10] include: Add new DCS commands in the enum list Yannick Fertré
2018-08-20 14:02   ` Simon Glass
2018-08-17 14:38 ` [U-Boot] [PATCH v3 03/10] video: add support of MIPI DSI interface Yannick Fertré
2018-08-21 17:31   ` Simon Glass
2018-08-22  7:59     ` Yannick FERTRE
2018-08-17 14:38 ` [U-Boot] [PATCH v3 04/10] video: add MIPI DSI host controller bridge Yannick Fertré
2018-08-21 17:31   ` Simon Glass
2018-08-17 14:38 ` [U-Boot] [PATCH v3 05/10] video: add support of STM32 MIPI DSI controller driver Yannick Fertré
2018-08-17 14:38 ` [U-Boot] [PATCH v3 06/10] video: add support of panel OTM8009A Yannick Fertré
2018-08-17 14:38 ` [U-Boot] [PATCH v3 07/10] video: add support of panel RM68200 Yannick Fertré
2018-08-17 14:38 ` [U-Boot] [PATCH v3 08/10] arm: dts: stm32: add dsi for STM32F746 Yannick Fertré
2018-08-17 14:38 ` [U-Boot] [PATCH v3 09/10] arm: dts: stm32: add display for STM32F769 disco board Yannick Fertré
2018-08-17 14:38 ` [U-Boot] [PATCH v3 10/10] board: Add STM32F769 SoC, discovery board support Yannick Fertré
  -- strict thread matches above, loose matches on Subject: below --
2018-03-13 13:49 [PATCH v3 00/10] splash screen on the stm32f769 disco board yannick fertre
2018-03-13 13:50 ` [U-Boot] [PATCH v3 03/10] video: add support of MIPI DSI interface yannick fertre

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.