public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm: rcar-du: lvds: add R8A774C0 support
@ 2018-12-13 20:23 Fabrizio Castro
  2018-12-13 21:37 ` Laurent Pinchart
  2018-12-17 11:58 ` Simon Horman
  0 siblings, 2 replies; 4+ messages in thread
From: Fabrizio Castro @ 2018-12-13 20:23 UTC (permalink / raw)
  To: David Airlie
  Cc: Fabrizio Castro, Laurent Pinchart, Kieran Bingham, dri-devel,
	linux-renesas-soc, linux-kernel, Simon Horman, Geert Uytterhoeven,
	Chris Paterson, Biju Das

The LVDS implementation on the RZ/G2E (a.k.a. R8A774C0) is very similar
to the one found on R-Car E3 (a.k.a. R8A77990), therefore add RZ/G2E
LVDS support to the LVDS encoder driver in a similar fashion to what
done for R-Car E3.

Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
---
 drivers/gpu/drm/rcar-du/rcar_lvds.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/gpu/drm/rcar-du/rcar_lvds.c b/drivers/gpu/drm/rcar-du/rcar_lvds.c
index 173d7ad..329dfca 100644
--- a/drivers/gpu/drm/rcar-du/rcar_lvds.c
+++ b/drivers/gpu/drm/rcar-du/rcar_lvds.c
@@ -785,6 +785,7 @@ static const struct rcar_lvds_device_info rcar_lvds_r8a77995_info = {
 
 static const struct of_device_id rcar_lvds_of_table[] = {
 	{ .compatible = "renesas,r8a7743-lvds", .data = &rcar_lvds_gen2_info },
+	{ .compatible = "renesas,r8a774c0-lvds", .data = &rcar_lvds_r8a77990_info },
 	{ .compatible = "renesas,r8a7790-lvds", .data = &rcar_lvds_r8a7790_info },
 	{ .compatible = "renesas,r8a7791-lvds", .data = &rcar_lvds_gen2_info },
 	{ .compatible = "renesas,r8a7793-lvds", .data = &rcar_lvds_gen2_info },
-- 
2.7.4


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

* Re: [PATCH] drm: rcar-du: lvds: add R8A774C0 support
  2018-12-13 20:23 [PATCH] drm: rcar-du: lvds: add R8A774C0 support Fabrizio Castro
@ 2018-12-13 21:37 ` Laurent Pinchart
  2018-12-14  8:11   ` Fabrizio Castro
  2018-12-17 11:58 ` Simon Horman
  1 sibling, 1 reply; 4+ messages in thread
From: Laurent Pinchart @ 2018-12-13 21:37 UTC (permalink / raw)
  To: Fabrizio Castro
  Cc: David Airlie, Kieran Bingham, dri-devel, linux-renesas-soc,
	linux-kernel, Simon Horman, Geert Uytterhoeven, Chris Paterson,
	Biju Das

Hi Fabrizio,

Thank you for the patch.

On Thursday, 13 December 2018 22:23:36 EET Fabrizio Castro wrote:
> The LVDS implementation on the RZ/G2E (a.k.a. R8A774C0) is very similar
> to the one found on R-Car E3 (a.k.a. R8A77990), therefore add RZ/G2E
> LVDS support to the LVDS encoder driver in a similar fashion to what

s/what/what is/

> done for R-Car E3.
> 
> Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>

and applied to my tree with the above fix.

> ---
>  drivers/gpu/drm/rcar-du/rcar_lvds.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/gpu/drm/rcar-du/rcar_lvds.c
> b/drivers/gpu/drm/rcar-du/rcar_lvds.c index 173d7ad..329dfca 100644
> --- a/drivers/gpu/drm/rcar-du/rcar_lvds.c
> +++ b/drivers/gpu/drm/rcar-du/rcar_lvds.c
> @@ -785,6 +785,7 @@ static const struct rcar_lvds_device_info
> rcar_lvds_r8a77995_info = {
> 
>  static const struct of_device_id rcar_lvds_of_table[] = {
>  	{ .compatible = "renesas,r8a7743-lvds", .data = &rcar_lvds_gen2_info },
> +	{ .compatible = "renesas,r8a774c0-lvds", .data = &rcar_lvds_r8a77990_info
> }, { .compatible = "renesas,r8a7790-lvds", .data = &rcar_lvds_r8a7790_info
> }, { .compatible = "renesas,r8a7791-lvds", .data = &rcar_lvds_gen2_info },
> { .compatible = "renesas,r8a7793-lvds", .data = &rcar_lvds_gen2_info },


-- 
Regards,

Laurent Pinchart




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

* RE: [PATCH] drm: rcar-du: lvds: add R8A774C0 support
  2018-12-13 21:37 ` Laurent Pinchart
@ 2018-12-14  8:11   ` Fabrizio Castro
  0 siblings, 0 replies; 4+ messages in thread
From: Fabrizio Castro @ 2018-12-14  8:11 UTC (permalink / raw)
  To: Laurent Pinchart
  Cc: David Airlie, Kieran Bingham, dri-devel@lists.freedesktop.org,
	linux-renesas-soc@vger.kernel.org, linux-kernel@vger.kernel.org,
	Simon Horman, Geert Uytterhoeven, Chris Paterson, Biju Das

Hi Laurent,

> -----Original Message-----
> From: linux-renesas-soc-owner@vger.kernel.org <linux-renesas-soc-owner@vger.kernel.org> On Behalf Of Laurent Pinchart
> Sent: 13 December 2018 21:38
> To: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> Cc: David Airlie <airlied@linux.ie>; Kieran Bingham <kieran.bingham+renesas@ideasonboard.com>; dri-devel@lists.freedesktop.org;
> linux-renesas-soc@vger.kernel.org; linux-kernel@vger.kernel.org; Simon Horman <horms@verge.net.au>; Geert Uytterhoeven
> <geert+renesas@glider.be>; Chris Paterson <Chris.Paterson2@renesas.com>; Biju Das <biju.das@bp.renesas.com>
> Subject: Re: [PATCH] drm: rcar-du: lvds: add R8A774C0 support
>
> Hi Fabrizio,
>
> Thank you for the patch.
>
> On Thursday, 13 December 2018 22:23:36 EET Fabrizio Castro wrote:
> > The LVDS implementation on the RZ/G2E (a.k.a. R8A774C0) is very similar
> > to the one found on R-Car E3 (a.k.a. R8A77990), therefore add RZ/G2E
> > LVDS support to the LVDS encoder driver in a similar fashion to what
>
> s/what/what is/
>
> > done for R-Car E3.
> >
> > Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
>
> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
>
> and applied to my tree with the above fix.

Thank you for fixing.

Fab

>
> > ---
> >  drivers/gpu/drm/rcar-du/rcar_lvds.c | 1 +
> >  1 file changed, 1 insertion(+)
> >
> > diff --git a/drivers/gpu/drm/rcar-du/rcar_lvds.c
> > b/drivers/gpu/drm/rcar-du/rcar_lvds.c index 173d7ad..329dfca 100644
> > --- a/drivers/gpu/drm/rcar-du/rcar_lvds.c
> > +++ b/drivers/gpu/drm/rcar-du/rcar_lvds.c
> > @@ -785,6 +785,7 @@ static const struct rcar_lvds_device_info
> > rcar_lvds_r8a77995_info = {
> >
> >  static const struct of_device_id rcar_lvds_of_table[] = {
> >  { .compatible = "renesas,r8a7743-lvds", .data = &rcar_lvds_gen2_info },
> > +{ .compatible = "renesas,r8a774c0-lvds", .data = &rcar_lvds_r8a77990_info
> > }, { .compatible = "renesas,r8a7790-lvds", .data = &rcar_lvds_r8a7790_info
> > }, { .compatible = "renesas,r8a7791-lvds", .data = &rcar_lvds_gen2_info },
> > { .compatible = "renesas,r8a7793-lvds", .data = &rcar_lvds_gen2_info },
>
>
> --
> Regards,
>
> Laurent Pinchart
>
>



[https://www2.renesas.eu/media/email/unicef.jpg]

This Christmas, instead of sending out cards, Renesas Electronics Europe have decided to support Unicef with a donation. For further details click here<https://www.unicef.org/> to find out about the valuable work they do, helping children all over the world.
We would like to take this opportunity to wish you a Merry Christmas and a prosperous New Year.



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* Re: [PATCH] drm: rcar-du: lvds: add R8A774C0 support
  2018-12-13 20:23 [PATCH] drm: rcar-du: lvds: add R8A774C0 support Fabrizio Castro
  2018-12-13 21:37 ` Laurent Pinchart
@ 2018-12-17 11:58 ` Simon Horman
  1 sibling, 0 replies; 4+ messages in thread
From: Simon Horman @ 2018-12-17 11:58 UTC (permalink / raw)
  To: Fabrizio Castro
  Cc: David Airlie, Laurent Pinchart, Kieran Bingham, dri-devel,
	linux-renesas-soc, linux-kernel, Geert Uytterhoeven,
	Chris Paterson, Biju Das

On Thu, Dec 13, 2018 at 08:23:36PM +0000, Fabrizio Castro wrote:
> The LVDS implementation on the RZ/G2E (a.k.a. R8A774C0) is very similar
> to the one found on R-Car E3 (a.k.a. R8A77990), therefore add RZ/G2E
> LVDS support to the LVDS encoder driver in a similar fashion to what
> done for R-Car E3.
> 
> Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>

Reviewed-by: Simon Horman <horms+renesas@verge.net.au>


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

end of thread, other threads:[~2018-12-17 11:59 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-12-13 20:23 [PATCH] drm: rcar-du: lvds: add R8A774C0 support Fabrizio Castro
2018-12-13 21:37 ` Laurent Pinchart
2018-12-14  8:11   ` Fabrizio Castro
2018-12-17 11:58 ` Simon Horman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox