mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: yannick fertre <yannick.fertre@st.com>
To: Vikas Manocha <vikas.manocha@st.com>,
	Tom Rini <trini@konsulko.com>,
	Benjamin Gaignard <benjamin.gaignard@linaro.org>,
	Yannick Fertre <yannick.fertre@st.com>,
	Philippe Cornu <philippe.cornu@st.com>,
	"Patrice Chotard" <patrice.chotard@st.com>,
	Patrick DELAUNAY <patrick.delaunay@st.com>,
	Christophe KERELLO <christophe.kerello@st.com>,
	Archit Taneja <architt@codeaurora.org>,
	Andrzej Hajda <a.hajda@samsung.com>,
	"Laurent Pinchart" <Laurent.pinchart@ideasonboard.com>,
	David Airlie <airlied@linux.ie>,
	Brian Norris <briannorris@chromium.org>,
	Bhumika Goyal <bhumirks@gmail.com>,
	Gustavo Padovan <gustavo@padovan.org>,
	"Maarten Lankhorst" <maarten.lankhorst@linux.intel.com>,
	Sean Paul <seanpaul@chromium.org>,
	Albert Aribaud <albert.u.boot@aribaud.net>,
	"Simon Glass" <sjg@chromium.org>,
	Anatolij Gustschin <agust@denx.de>,
	Thierry Reding <thierry.reding@gmail.com>
Cc: <u-boot@lists.denx.de>, <dri-devel@lists.freedesktop.org>,
	<linux-kernel@vger.kernel.org>
Subject: [PATCH v3 00/10] splash screen on the stm32f769 disco board
Date: Tue, 13 Mar 2018 14:49:59 +0100	[thread overview]
Message-ID: <1520949014-21468-1-git-send-email-yannick.fertre@st.com> (raw)

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

             reply	other threads:[~2018-03-13 13:51 UTC|newest]

Thread overview: 23+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-13 13:49 yannick fertre [this message]
2018-03-13 13:50 ` [PATCH v3 01/10] video: stm32: stm32_ltdc: add bridge to display controller yannick fertre
2018-03-13 13:50 ` [PATCH v3 01/10] video: stm32: stm32_ltdc: update debug log yannick fertre
2018-03-13 13:50 ` [PATCH v3 02/10] video: add support of MIPI DSI interface yannick fertre
2018-03-13 15:30   ` Simon Glass
2018-03-13 13:50 ` [PATCH v3 02/10] video: stm32: stm32_ltdc: update debug log yannick fertre
2018-03-13 13:50 ` [PATCH v3 03/10] video: add support of MIPI DSI interface yannick fertre
2018-03-13 13:50 ` [PATCH v3 03/10] video: add support of panel OTM8009A yannick fertre
2018-03-13 13:50 ` [PATCH v3 04/10] otm yannick fertre
2018-03-13 14:12   ` Patrice CHOTARD
2018-03-13 14:36     ` Yannick FERTRE
2018-03-13 13:50 ` [PATCH v3 04/10] video: add support of panel OTM8009A yannick fertre
2018-03-13 13:50 ` [PATCH v3 05/10] video: add MIPI DSI host controller bridge yannick fertre
2018-03-13 13:50 ` [PATCH v3 06/10] video: add support of STM32 MIPI DSI controller driver yannick fertre
2018-03-13 13:50 ` [PATCH v3 07/10] video: add support of panel rm68200 yannick fertre
2018-03-13 13:50 ` [PATCH v3 08/10] arm: dts: stm32: add dsi for STM32F746 yannick fertre
2018-03-13 13:50 ` [PATCH v3 09/10] arm: dts: stm32: add display for STM32F769 disco board yannick fertre
2018-03-13 13:50 ` [PATCH v3 10/10] board: Add STM32F769 SoC, discovery board support yannick fertre
2018-03-13 14:10   ` Patrice CHOTARD
2018-03-13 15:23 ` [PATCH v3 00/10] splash screen on the stm32f769 disco board Daniel Vetter
2018-03-13 20:50   ` Anatolij Gustschin
2018-03-13 21:00     ` Brian Norris
2018-03-13 22:50   ` Thierry Reding

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1520949014-21468-1-git-send-email-yannick.fertre@st.com \
    --to=yannick.fertre@st.com \
    --cc=Laurent.pinchart@ideasonboard.com \
    --cc=a.hajda@samsung.com \
    --cc=agust@denx.de \
    --cc=airlied@linux.ie \
    --cc=albert.u.boot@aribaud.net \
    --cc=architt@codeaurora.org \
    --cc=benjamin.gaignard@linaro.org \
    --cc=bhumirks@gmail.com \
    --cc=briannorris@chromium.org \
    --cc=christophe.kerello@st.com \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gustavo@padovan.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=patrice.chotard@st.com \
    --cc=patrick.delaunay@st.com \
    --cc=philippe.cornu@st.com \
    --cc=seanpaul@chromium.org \
    --cc=sjg@chromium.org \
    --cc=thierry.reding@gmail.com \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=vikas.manocha@st.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®