All of lore.kernel.org
 help / color / mirror / Atom feed
From: boris.brezillon@free-electrons.com (Boris Brezillon)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] drm: atmel-hlcdc: add support for sama5d2 SoCs
Date: Fri, 9 Oct 2015 22:56:25 +0200	[thread overview]
Message-ID: <20151009225625.7e60def2@bbrezillon> (raw)
In-Reply-To: <1441806435-12346-1-git-send-email-nicolas.ferre@atmel.com>

Hi Nicolas,

Sorry for the late reply.

On Wed, 9 Sep 2015 15:47:15 +0200
Nicolas Ferre <nicolas.ferre@atmel.com> wrote:

> As the hardware description for this chip is the same as the sama5d4, we use
> this SoC structures for layers and DC descriptions. Thus only 2 lines are added
> to the atmel_hlcdc_of_match table.
> The compatible string is already documented in the parent MFD driver's binding.
> 
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>

Just for the record, since Thierry already applied it in his tree:

Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>

> ---
>  drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c
> index 8bc62ec407f9..498add1e5e58 100644
> --- a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c
> +++ b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c
> @@ -333,6 +333,10 @@ static const struct of_device_id atmel_hlcdc_of_match[] = {
>  		.data = &atmel_hlcdc_dc_at91sam9x5,
>  	},
>  	{
> +		.compatible = "atmel,sama5d2-hlcdc",
> +		.data = &atmel_hlcdc_dc_sama5d4,
> +	},
> +	{
>  		.compatible = "atmel,sama5d3-hlcdc",
>  		.data = &atmel_hlcdc_dc_sama5d3,
>  	},



-- 
Boris Brezillon, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

WARNING: multiple messages have this Message-ID (diff)
From: Boris Brezillon <boris.brezillon@free-electrons.com>
To: Nicolas Ferre <nicolas.ferre@atmel.com>
Cc: linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org,
	Alexandre Belloni <alexandre.belloni@free-electrons.com>,
	linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH] drm: atmel-hlcdc: add support for sama5d2 SoCs
Date: Fri, 9 Oct 2015 22:56:25 +0200	[thread overview]
Message-ID: <20151009225625.7e60def2@bbrezillon> (raw)
In-Reply-To: <1441806435-12346-1-git-send-email-nicolas.ferre@atmel.com>

Hi Nicolas,

Sorry for the late reply.

On Wed, 9 Sep 2015 15:47:15 +0200
Nicolas Ferre <nicolas.ferre@atmel.com> wrote:

> As the hardware description for this chip is the same as the sama5d4, we use
> this SoC structures for layers and DC descriptions. Thus only 2 lines are added
> to the atmel_hlcdc_of_match table.
> The compatible string is already documented in the parent MFD driver's binding.
> 
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>

Just for the record, since Thierry already applied it in his tree:

Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>

> ---
>  drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c
> index 8bc62ec407f9..498add1e5e58 100644
> --- a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c
> +++ b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c
> @@ -333,6 +333,10 @@ static const struct of_device_id atmel_hlcdc_of_match[] = {
>  		.data = &atmel_hlcdc_dc_at91sam9x5,
>  	},
>  	{
> +		.compatible = "atmel,sama5d2-hlcdc",
> +		.data = &atmel_hlcdc_dc_sama5d4,
> +	},
> +	{
>  		.compatible = "atmel,sama5d3-hlcdc",
>  		.data = &atmel_hlcdc_dc_sama5d3,
>  	},



-- 
Boris Brezillon, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

WARNING: multiple messages have this Message-ID (diff)
From: Boris Brezillon <boris.brezillon@free-electrons.com>
To: Nicolas Ferre <nicolas.ferre@atmel.com>
Cc: <airlied@linux.ie>, <dri-devel@lists.freedesktop.org>,
	<linux-arm-kernel@lists.infradead.org>,
	<linux-kernel@vger.kernel.org>,
	Alexandre Belloni <alexandre.belloni@free-electrons.com>,
	Thierry Reding <thierry.reding@gmail.com>
Subject: Re: [PATCH] drm: atmel-hlcdc: add support for sama5d2 SoCs
Date: Fri, 9 Oct 2015 22:56:25 +0200	[thread overview]
Message-ID: <20151009225625.7e60def2@bbrezillon> (raw)
In-Reply-To: <1441806435-12346-1-git-send-email-nicolas.ferre@atmel.com>

Hi Nicolas,

Sorry for the late reply.

On Wed, 9 Sep 2015 15:47:15 +0200
Nicolas Ferre <nicolas.ferre@atmel.com> wrote:

> As the hardware description for this chip is the same as the sama5d4, we use
> this SoC structures for layers and DC descriptions. Thus only 2 lines are added
> to the atmel_hlcdc_of_match table.
> The compatible string is already documented in the parent MFD driver's binding.
> 
> Signed-off-by: Nicolas Ferre <nicolas.ferre@atmel.com>

Just for the record, since Thierry already applied it in his tree:

Acked-by: Boris Brezillon <boris.brezillon@free-electrons.com>

> ---
>  drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c | 4 ++++
>  1 file changed, 4 insertions(+)
> 
> diff --git a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c
> index 8bc62ec407f9..498add1e5e58 100644
> --- a/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c
> +++ b/drivers/gpu/drm/atmel-hlcdc/atmel_hlcdc_dc.c
> @@ -333,6 +333,10 @@ static const struct of_device_id atmel_hlcdc_of_match[] = {
>  		.data = &atmel_hlcdc_dc_at91sam9x5,
>  	},
>  	{
> +		.compatible = "atmel,sama5d2-hlcdc",
> +		.data = &atmel_hlcdc_dc_sama5d4,
> +	},
> +	{
>  		.compatible = "atmel,sama5d3-hlcdc",
>  		.data = &atmel_hlcdc_dc_sama5d3,
>  	},



-- 
Boris Brezillon, Free Electrons
Embedded Linux and Kernel engineering
http://free-electrons.com

  reply	other threads:[~2015-10-09 20:56 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-09-09 13:47 [PATCH] drm: atmel-hlcdc: add support for sama5d2 SoCs Nicolas Ferre
2015-09-09 13:47 ` Nicolas Ferre
2015-09-09 13:47 ` Nicolas Ferre
2015-10-09 20:56 ` Boris Brezillon [this message]
2015-10-09 20:56   ` Boris Brezillon
2015-10-09 20:56   ` Boris Brezillon

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=20151009225625.7e60def2@bbrezillon \
    --to=boris.brezillon@free-electrons.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    /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.