All of lore.kernel.org
 help / color / mirror / Atom feed
From: Neil Armstrong <narmstrong@baylibre.com>
To: Yannick Fertre <yannick.fertre@st.com>,
	Alexandre TORGUE <alexandre.torgue@st.com>,
	Thierry Reding <thierry.reding@gmail.com>,
	David Airlie <airlied@linux.ie>,
	Maxime Coquelin <mcoquelin.stm32@gmail.com>,
	Russell King <linux@armlinux.org.uk>,
	Mark Rutland <mark.rutland@arm.com>,
	Rob Herring <robh+dt@kernel.org>, Arnd Bergmann <arnd@arndb.de>
Cc: devicetree@vger.kernel.org, kernel@stlinux.com,
	Philippe Cornu <philippe.cornu@st.com>,
	dri-devel@lists.freedesktop.org,
	Mickael Reulier <mickael.reulier@st.com>,
	Gabriel FERNANDEZ <gabriel.fernandez@st.com>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v1 0/7] DRM: add LTDC support for STM32F4
Date: Mon, 16 Jan 2017 17:02:56 +0100	[thread overview]
Message-ID: <cf29809f-f951-eeed-5886-02d0a7a1e56f@baylibre.com> (raw)
In-Reply-To: <1484573344-11609-1-git-send-email-yannick.fertre@st.com>

On 01/16/2017 02:28 PM, Yannick Fertre wrote:
> The purpose of this set of patches is to add a new driver for stm32f429.
> This driver was developed and tested on evaluation board stm32429i.
> 
> Stm32f4 is a MCU platform which don't have MMU so the last patches developed
> by Benjamin Gaignard regarding "DRM: allow to use mmuless devices"
> are necessary.
> 
> The board stm429i embeds a Ampire AM-480272H3TMQW-T01H screen.
> A new simple panel am-480272h3tmqw-t01h have been added to support it.
> 
> Yannick Fertre (7):
>   dt-bindings: display: add STM32 LTDC driver
>   drm/st: Add STM32 LTDC driver
>   dt-bindings: Add Ampire AM-480272H3TMQW-T01H panel
>   drm/panel: simple: Add support for Ampire AM-480272H3TMQW-T01H
>   ARM: dts: stm32f429: Add ltdc support
>   ARM: dts: stm32429i-eval: Enable ltdc & simple panel on Eval board
>   ARM: configs: Add STM32 LTDC support in STM32 defconfig
> 
>  .../display/panel/ampire,am-480272h3tmqw-t01h.txt  |    7 +
>  .../devicetree/bindings/display/st,ltdc.txt        |   57 +
>  arch/arm/boot/dts/stm32429i-eval.dts               |   58 +
>  arch/arm/boot/dts/stm32f429.dtsi                   |   25 +-
>  arch/arm/configs/stm32_defconfig                   |    5 +
>  drivers/gpu/drm/Kconfig                            |    2 +
>  drivers/gpu/drm/Makefile                           |    1 +
>  drivers/gpu/drm/panel/panel-simple.c               |   29 +
>  drivers/gpu/drm/st/Kconfig                         |   14 +
>  drivers/gpu/drm/st/Makefile                        |    7 +
>  drivers/gpu/drm/st/drv.c                           |  279 ++++
>  drivers/gpu/drm/st/drv.h                           |   25 +
>  drivers/gpu/drm/st/ltdc.c                          | 1438 ++++++++++++++++++++
>  drivers/gpu/drm/st/ltdc.h                          |   20 +
>  14 files changed, 1966 insertions(+), 1 deletion(-)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/ampire,am-480272h3tmqw-t01h.txt
>  create mode 100644 Documentation/devicetree/bindings/display/st,ltdc.txt
>  create mode 100644 drivers/gpu/drm/st/Kconfig
>  create mode 100644 drivers/gpu/drm/st/Makefile
>  create mode 100644 drivers/gpu/drm/st/drv.c
>  create mode 100644 drivers/gpu/drm/st/drv.h
>  create mode 100644 drivers/gpu/drm/st/ltdc.c
>  create mode 100644 drivers/gpu/drm/st/ltdc.h
> 

Hi Yannick,

Shouldn't be more logical to use stm32 for the driver instead of st ?
It would eventually collude with the other STMicroelectronics SoCs and
will be aligned with other drivers like stm32-rtc, stm32-i2c, ...

Neil
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

WARNING: multiple messages have this Message-ID (diff)
From: narmstrong@baylibre.com (Neil Armstrong)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v1 0/7] DRM: add LTDC support for STM32F4
Date: Mon, 16 Jan 2017 17:02:56 +0100	[thread overview]
Message-ID: <cf29809f-f951-eeed-5886-02d0a7a1e56f@baylibre.com> (raw)
In-Reply-To: <1484573344-11609-1-git-send-email-yannick.fertre@st.com>

On 01/16/2017 02:28 PM, Yannick Fertre wrote:
> The purpose of this set of patches is to add a new driver for stm32f429.
> This driver was developed and tested on evaluation board stm32429i.
> 
> Stm32f4 is a MCU platform which don't have MMU so the last patches developed
> by Benjamin Gaignard regarding "DRM: allow to use mmuless devices"
> are necessary.
> 
> The board stm429i embeds a Ampire AM-480272H3TMQW-T01H screen.
> A new simple panel am-480272h3tmqw-t01h have been added to support it.
> 
> Yannick Fertre (7):
>   dt-bindings: display: add STM32 LTDC driver
>   drm/st: Add STM32 LTDC driver
>   dt-bindings: Add Ampire AM-480272H3TMQW-T01H panel
>   drm/panel: simple: Add support for Ampire AM-480272H3TMQW-T01H
>   ARM: dts: stm32f429: Add ltdc support
>   ARM: dts: stm32429i-eval: Enable ltdc & simple panel on Eval board
>   ARM: configs: Add STM32 LTDC support in STM32 defconfig
> 
>  .../display/panel/ampire,am-480272h3tmqw-t01h.txt  |    7 +
>  .../devicetree/bindings/display/st,ltdc.txt        |   57 +
>  arch/arm/boot/dts/stm32429i-eval.dts               |   58 +
>  arch/arm/boot/dts/stm32f429.dtsi                   |   25 +-
>  arch/arm/configs/stm32_defconfig                   |    5 +
>  drivers/gpu/drm/Kconfig                            |    2 +
>  drivers/gpu/drm/Makefile                           |    1 +
>  drivers/gpu/drm/panel/panel-simple.c               |   29 +
>  drivers/gpu/drm/st/Kconfig                         |   14 +
>  drivers/gpu/drm/st/Makefile                        |    7 +
>  drivers/gpu/drm/st/drv.c                           |  279 ++++
>  drivers/gpu/drm/st/drv.h                           |   25 +
>  drivers/gpu/drm/st/ltdc.c                          | 1438 ++++++++++++++++++++
>  drivers/gpu/drm/st/ltdc.h                          |   20 +
>  14 files changed, 1966 insertions(+), 1 deletion(-)
>  create mode 100644 Documentation/devicetree/bindings/display/panel/ampire,am-480272h3tmqw-t01h.txt
>  create mode 100644 Documentation/devicetree/bindings/display/st,ltdc.txt
>  create mode 100644 drivers/gpu/drm/st/Kconfig
>  create mode 100644 drivers/gpu/drm/st/Makefile
>  create mode 100644 drivers/gpu/drm/st/drv.c
>  create mode 100644 drivers/gpu/drm/st/drv.h
>  create mode 100644 drivers/gpu/drm/st/ltdc.c
>  create mode 100644 drivers/gpu/drm/st/ltdc.h
> 

Hi Yannick,

Shouldn't be more logical to use stm32 for the driver instead of st ?
It would eventually collude with the other STMicroelectronics SoCs and
will be aligned with other drivers like stm32-rtc, stm32-i2c, ...

Neil

  parent reply	other threads:[~2017-01-16 16:02 UTC|newest]

Thread overview: 39+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-16 13:28 [PATCH v1 0/7] DRM: add LTDC support for STM32F4 Yannick Fertre
2017-01-16 13:28 ` Yannick Fertre
2017-01-16 13:28 ` [PATCH v1 1/7] dt-bindings: display: add STM32 LTDC driver Yannick Fertre
2017-01-16 13:28   ` Yannick Fertre
2017-01-16 20:30   ` Laurent Pinchart
2017-01-16 20:30     ` Laurent Pinchart
2017-01-19 16:16     ` Yannick FERTRE
2017-01-19 16:16       ` Yannick FERTRE
2017-01-19 16:31       ` Rob Herring
2017-01-19 16:31         ` Rob Herring
     [not found]   ` <1484573344-11609-2-git-send-email-yannick.fertre-qxv4g6HH51o@public.gmane.org>
2017-01-19 16:29     ` Rob Herring
2017-01-19 16:29       ` Rob Herring
2017-01-16 13:28 ` [PATCH v1 2/7] drm/st: Add " Yannick Fertre
2017-01-16 13:28   ` Yannick Fertre
2017-01-16 13:29 ` [PATCH v1 3/7] dt-bindings: Add Ampire AM-480272H3TMQW-T01H panel Yannick Fertre
2017-01-16 13:29   ` Yannick Fertre
2017-01-19 16:32   ` Rob Herring
2017-01-19 16:32     ` Rob Herring
2017-01-16 13:29 ` [PATCH v1 4/7] drm/panel: simple: Add support for Ampire AM-480272H3TMQW-T01H Yannick Fertre
2017-01-16 13:29   ` Yannick Fertre
2017-01-16 13:29 ` [PATCH v1 5/7] ARM: dts: stm32f429: Add ltdc support Yannick Fertre
2017-01-16 13:29   ` Yannick Fertre
     [not found]   ` <1484573344-11609-6-git-send-email-yannick.fertre-qxv4g6HH51o@public.gmane.org>
2017-01-16 15:58     ` Alexandre Torgue
2017-01-16 15:58       ` Alexandre Torgue
2017-01-16 13:29 ` [PATCH v1 6/7] ARM: dts: stm32429i-eval: Enable ltdc & simple panel on Eval board Yannick Fertre
2017-01-16 13:29   ` Yannick Fertre
2017-01-16 16:02   ` Alexandre Torgue
2017-01-16 16:02     ` Alexandre Torgue
2017-01-16 13:29 ` [PATCH v1 7/7] ARM: configs: Add STM32 LTDC support in STM32 defconfig Yannick Fertre
2017-01-16 13:29   ` Yannick Fertre
2017-01-16 16:03   ` Alexandre Torgue
2017-01-16 16:03     ` Alexandre Torgue
2017-01-16 16:02 ` Neil Armstrong [this message]
2017-01-16 16:02   ` [PATCH v1 0/7] DRM: add LTDC support for STM32F4 Neil Armstrong
2017-01-19 10:35   ` Yannick FERTRE
2017-01-19 10:35     ` Yannick FERTRE
  -- strict thread matches above, loose matches on Subject: below --
2017-01-16 13:27 Yannick Fertre
2017-01-16 13:27 ` Yannick Fertre
2017-01-10 13:49 Yannick Fertre

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=cf29809f-f951-eeed-5886-02d0a7a1e56f@baylibre.com \
    --to=narmstrong@baylibre.com \
    --cc=airlied@linux.ie \
    --cc=alexandre.torgue@st.com \
    --cc=arnd@arndb.de \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=gabriel.fernandez@st.com \
    --cc=kernel@stlinux.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux@armlinux.org.uk \
    --cc=mark.rutland@arm.com \
    --cc=mcoquelin.stm32@gmail.com \
    --cc=mickael.reulier@st.com \
    --cc=philippe.cornu@st.com \
    --cc=robh+dt@kernel.org \
    --cc=thierry.reding@gmail.com \
    --cc=yannick.fertre@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 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.