All of lore.kernel.org
 help / color / mirror / Atom feed
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Jacopo Mondi <jacopo+renesas@jmondi.org>
Cc: architt@codeaurora.org, a.hajda@samsung.com, airlied@linux.ie,
	horms@verge.net.au, magnus.damm@gmail.com, geert@linux-m68k.org,
	niklas.soderlund@ragnatech.se,
	sergei.shtylyov@cogentembedded.com, robh+dt@kernel.org,
	mark.rutland@arm.com, dri-devel@lists.freedesktop.org,
	linux-renesas-soc@vger.kernel.org, devicetree@vger.kernel.org,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH v6 3/3] arm64: dts: renesas: Add LVDS decoder to R-Car V3M Eagle
Date: Tue, 20 Mar 2018 15:01:57 +0200	[thread overview]
Message-ID: <3127791.hHqCBynxiV@avalon> (raw)
In-Reply-To: <1521213399-31947-4-git-send-email-jacopo+renesas@jmondi.org>

Hi Jacopo,

Thank you for the patch.

On Friday, 16 March 2018 17:16:39 EET Jacopo Mondi wrote:
> The R-Car V3M Eagle board includes a transparent THC63LVD1024 LVDS
> decoder, connected to the on-chip LVDS encoder output on one side
> and to HDMI encoder ADV7511w on the other one.
> 
> As the decoder does not need any configuration it has been so-far
> omitted from DTS. Now that a driver is available, describe it in DT
> as well.
> 
> Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org>
> Reviewed-by: Andrzej Hajda <a.hajda@samsung.com>

The patch looks OK to me, but I think it should be squashed with Niklas' patch 
that added display HDMI output support to the V3M Eagle DT.

> ---
> 
> List of patch dependencies, as of renesas-drivers-2018-03-13-v4.16-rc5:
> 
> - [PATCH v2 0/5] arm64: dts: renesas: r8a77970: enable HDMI output
>    which includes DU, LVDS and FCPD enablement from:
>   [PATCH v2 0/5] Add R8A77970/V3MSK LVDS/HDMI support
> - [PATCH v4] v4l: vsp1: Fix video output on R8A77970
> 
> Patches to be applied on top of
> "arm64: dts: renesas: eagle: add HDMI output using the ADV7511W"
> 
> Thanks
>    j
> ---
>  arch/arm64/boot/dts/renesas/r8a77970-eagle.dts | 33 ++++++++++++++++++++---
>  1 file changed, 30 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/renesas/r8a77970-eagle.dts
> b/arch/arm64/boot/dts/renesas/r8a77970-eagle.dts index c0fd144..69f43b8
> 100644
> --- a/arch/arm64/boot/dts/renesas/r8a77970-eagle.dts
> +++ b/arch/arm64/boot/dts/renesas/r8a77970-eagle.dts
> @@ -42,6 +42,33 @@
>  			};
>  		};
>  	};
> +
> +	thc63lvd1024: lvds-decoder {
> +		compatible = "thine,thc63lvd1024";
> +
> +		ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +
> +			port@0 {
> +				reg = <0>;
> +
> +				thc63lvd1024_in_0: endpoint {
> +					remote-endpoint = <&lvds0_out>;
> +				};
> +			};
> +
> +			port@2{
> +				reg = <2>;
> +
> +				thc63lvd1024_out_2: endpoint {
> +					remote-endpoint = <&adv7511_in>;
> +				};
> +
> +			};
> +
> +		};
> +	};
>  };
> 
>  &avb {
> @@ -98,7 +125,7 @@
>  			port@0 {
>  				reg = <0>;
>  				adv7511_in: endpoint {
> -					remote-endpoint = <&lvds0_out>;
> +					remote-endpoint = <&thc63lvd1024_out_2>;
>  				};
>  			};
> 
> @@ -152,8 +179,8 @@
> 
>  	ports {
>  		port@1 {
> -			endpoint {
> -				remote-endpoint = <&adv7511_in>;
> +			lvds0_out: endpoint {
> +				remote-endpoint = <&thc63lvd1024_in_0>;
>  			};
>  		};
>  	};

-- 
Regards,

Laurent Pinchart

WARNING: multiple messages have this Message-ID (diff)
From: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
To: Jacopo Mondi <jacopo+renesas@jmondi.org>
Cc: mark.rutland@arm.com, devicetree@vger.kernel.org,
	sergei.shtylyov@cogentembedded.com, airlied@linux.ie,
	magnus.damm@gmail.com, linux-kernel@vger.kernel.org,
	robh+dt@kernel.org, linux-renesas-soc@vger.kernel.org,
	horms@verge.net.au, geert@linux-m68k.org,
	dri-devel@lists.freedesktop.org, niklas.soderlund@ragnatech.se
Subject: Re: [PATCH v6 3/3] arm64: dts: renesas: Add LVDS decoder to R-Car V3M Eagle
Date: Tue, 20 Mar 2018 15:01:57 +0200	[thread overview]
Message-ID: <3127791.hHqCBynxiV@avalon> (raw)
In-Reply-To: <1521213399-31947-4-git-send-email-jacopo+renesas@jmondi.org>

Hi Jacopo,

Thank you for the patch.

On Friday, 16 March 2018 17:16:39 EET Jacopo Mondi wrote:
> The R-Car V3M Eagle board includes a transparent THC63LVD1024 LVDS
> decoder, connected to the on-chip LVDS encoder output on one side
> and to HDMI encoder ADV7511w on the other one.
> 
> As the decoder does not need any configuration it has been so-far
> omitted from DTS. Now that a driver is available, describe it in DT
> as well.
> 
> Signed-off-by: Jacopo Mondi <jacopo+renesas@jmondi.org>
> Reviewed-by: Andrzej Hajda <a.hajda@samsung.com>

The patch looks OK to me, but I think it should be squashed with Niklas' patch 
that added display HDMI output support to the V3M Eagle DT.

> ---
> 
> List of patch dependencies, as of renesas-drivers-2018-03-13-v4.16-rc5:
> 
> - [PATCH v2 0/5] arm64: dts: renesas: r8a77970: enable HDMI output
>    which includes DU, LVDS and FCPD enablement from:
>   [PATCH v2 0/5] Add R8A77970/V3MSK LVDS/HDMI support
> - [PATCH v4] v4l: vsp1: Fix video output on R8A77970
> 
> Patches to be applied on top of
> "arm64: dts: renesas: eagle: add HDMI output using the ADV7511W"
> 
> Thanks
>    j
> ---
>  arch/arm64/boot/dts/renesas/r8a77970-eagle.dts | 33 ++++++++++++++++++++---
>  1 file changed, 30 insertions(+), 3 deletions(-)
> 
> diff --git a/arch/arm64/boot/dts/renesas/r8a77970-eagle.dts
> b/arch/arm64/boot/dts/renesas/r8a77970-eagle.dts index c0fd144..69f43b8
> 100644
> --- a/arch/arm64/boot/dts/renesas/r8a77970-eagle.dts
> +++ b/arch/arm64/boot/dts/renesas/r8a77970-eagle.dts
> @@ -42,6 +42,33 @@
>  			};
>  		};
>  	};
> +
> +	thc63lvd1024: lvds-decoder {
> +		compatible = "thine,thc63lvd1024";
> +
> +		ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +
> +			port@0 {
> +				reg = <0>;
> +
> +				thc63lvd1024_in_0: endpoint {
> +					remote-endpoint = <&lvds0_out>;
> +				};
> +			};
> +
> +			port@2{
> +				reg = <2>;
> +
> +				thc63lvd1024_out_2: endpoint {
> +					remote-endpoint = <&adv7511_in>;
> +				};
> +
> +			};
> +
> +		};
> +	};
>  };
> 
>  &avb {
> @@ -98,7 +125,7 @@
>  			port@0 {
>  				reg = <0>;
>  				adv7511_in: endpoint {
> -					remote-endpoint = <&lvds0_out>;
> +					remote-endpoint = <&thc63lvd1024_out_2>;
>  				};
>  			};
> 
> @@ -152,8 +179,8 @@
> 
>  	ports {
>  		port@1 {
> -			endpoint {
> -				remote-endpoint = <&adv7511_in>;
> +			lvds0_out: endpoint {
> +				remote-endpoint = <&thc63lvd1024_in_0>;
>  			};
>  		};
>  	};

-- 
Regards,

Laurent Pinchart

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

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

Thread overview: 58+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-03-16 15:16 [PATCH v6 0/3] drm: Add Thine THC63LVD1024 LVDS decoder bridge Jacopo Mondi
2018-03-16 15:16 ` [PATCH v6 1/3] dt-bindings: display: bridge: Document THC63LVD1024 LVDS decoder Jacopo Mondi
2018-03-20 12:43   ` Laurent Pinchart
2018-03-20 12:43     ` Laurent Pinchart
2018-03-26 12:08     ` jacopo mondi
2018-03-26 22:22     ` Rob Herring
2018-03-26 22:22       ` Rob Herring
2018-03-27  6:15       ` Vladimir Zapolskiy
2018-03-27  6:15         ` Vladimir Zapolskiy
2018-03-27  6:15         ` Vladimir Zapolskiy
2018-03-27  7:12         ` Andrzej Hajda
2018-03-27  7:12           ` Andrzej Hajda
2018-03-27  7:12           ` Andrzej Hajda
2018-03-27  7:33           ` jacopo mondi
2018-03-27  7:33             ` jacopo mondi
2018-03-27  8:27             ` Sergei Shtylyov
2018-03-27  8:27               ` Sergei Shtylyov
2018-03-27  8:30               ` Vladimir Zapolskiy
2018-03-27  8:30                 ` Vladimir Zapolskiy
2018-03-27  8:57                 ` jacopo mondi
2018-03-27  8:57                   ` jacopo mondi
2018-03-27  9:37                   ` Vladimir Zapolskiy
2018-03-27  9:37                     ` Vladimir Zapolskiy
2018-03-27 10:10                     ` jacopo mondi
2018-03-27 10:10                       ` jacopo mondi
2018-03-27 11:03                       ` Vladimir Zapolskiy
2018-03-27 11:03                         ` Vladimir Zapolskiy
2018-03-29 10:02                         ` jacopo mondi
2018-04-02 13:36                         ` Laurent Pinchart
2018-04-02 13:36                           ` Laurent Pinchart
2018-04-03 12:33                           ` jacopo mondi
2018-04-03 12:33                             ` jacopo mondi
2018-04-05 16:33                           ` Rob Herring
2018-04-05 16:33                             ` Rob Herring
2018-04-05 18:53                             ` Laurent Pinchart
2018-04-05 18:53                               ` Laurent Pinchart
2018-04-05 21:27                               ` Rob Herring
2018-03-16 15:16 ` [PATCH v6 2/3] drm: bridge: Add thc63lvd1024 LVDS decoder driver Jacopo Mondi
2018-03-20 13:00   ` Laurent Pinchart
2018-03-20 13:00     ` Laurent Pinchart
2018-03-27  6:24   ` Vladimir Zapolskiy
2018-03-27  6:24     ` Vladimir Zapolskiy
2018-03-27  7:28     ` Andrzej Hajda
2018-03-27  7:28       ` Andrzej Hajda
2018-03-27  7:36       ` Geert Uytterhoeven
2018-03-27  8:36         ` Andrzej Hajda
2018-03-27  8:36           ` Andrzej Hajda
2018-03-27  9:06           ` Geert Uytterhoeven
2018-03-27  9:06             ` Geert Uytterhoeven
2018-03-27  9:57       ` Vladimir Zapolskiy
2018-03-27  9:57         ` Vladimir Zapolskiy
2018-03-27  7:30     ` jacopo mondi
2018-03-27  7:30       ` jacopo mondi
2018-03-16 15:16 ` [PATCH v6 3/3] arm64: dts: renesas: Add LVDS decoder to R-Car V3M Eagle Jacopo Mondi
2018-03-20 13:01   ` Laurent Pinchart [this message]
2018-03-20 13:01     ` Laurent Pinchart
2018-03-27  6:27     ` Vladimir Zapolskiy
2018-03-27  6:27       ` Vladimir Zapolskiy

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=3127791.hHqCBynxiV@avalon \
    --to=laurent.pinchart@ideasonboard.com \
    --cc=a.hajda@samsung.com \
    --cc=airlied@linux.ie \
    --cc=architt@codeaurora.org \
    --cc=devicetree@vger.kernel.org \
    --cc=dri-devel@lists.freedesktop.org \
    --cc=geert@linux-m68k.org \
    --cc=horms@verge.net.au \
    --cc=jacopo+renesas@jmondi.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=magnus.damm@gmail.com \
    --cc=mark.rutland@arm.com \
    --cc=niklas.soderlund@ragnatech.se \
    --cc=robh+dt@kernel.org \
    --cc=sergei.shtylyov@cogentembedded.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.