All of lore.kernel.org
 help / color / mirror / Atom feed
From: shawnguo@kernel.org (Shawn Guo)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V3 4/4] dts/imx6q-b850v3: Use megachips-stdpxxxx-ge-b850v3-fw bridges (LVDS-DP++)
Date: Mon, 13 Mar 2017 20:41:37 +0800	[thread overview]
Message-ID: <20170313124134.GF3618@dragon> (raw)
In-Reply-To: <d5c297680eb82fd7ef63f7f5dafffc22b98d2345.1488555615.git.peter.senna@collabora.com>

On Fri, Mar 03, 2017 at 04:57:10PM +0100, Peter Senna Tschudin wrote:
> Configures the megachips-stdpxxxx-ge-b850v3-fw bridges on the GE
> B850v3 dts file.
> 
> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> Cc: Martyn Welch <martyn.welch@collabora.co.uk>
> Cc: Martin Donnelly <martin.donnelly@ge.com>
> Cc: Javier Martinez Canillas <javier@dowhile0.org>
> Cc: Enric Balletbo i Serra <enric.balletbo@collabora.com>
> Cc: Philipp Zabel <p.zabel@pengutronix.de>
> Cc: Rob Herring <robh@kernel.org>
> Cc: Fabio Estevam <fabio.estevam@nxp.com>
> Signed-off-by: Peter Senna Tschudin <peter.senna@collabora.com>
> ---
> Unchanged since V1.
> 
>  arch/arm/boot/dts/imx6q-b850v3.dts | 68 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 68 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/imx6q-b850v3.dts b/arch/arm/boot/dts/imx6q-b850v3.dts
> index b237429..3ec54da 100644
> --- a/arch/arm/boot/dts/imx6q-b850v3.dts
> +++ b/arch/arm/boot/dts/imx6q-b850v3.dts
> @@ -72,6 +72,13 @@
>  		fsl,data-mapping = "spwg";
>  		fsl,data-width = <24>;
>  		status = "okay";
> +
> +		port at 4 {
> +			reg = <4>;

Have a newline between property list and child node.

> +			lvds0_out: endpoint {
> +				remote-endpoint = <&stdp4028_in>;
> +			};
> +		};
>  	};
>  };
>  
> @@ -146,3 +153,64 @@
>  &usdhc2 {
>  	status = "disabled";
>  };
> +
> +&mux2_i2c2 {
> +	status = "okay";

This okay status doesn't seem really necessary to me.  If it does,
please put it at the end of property list.

> +	clock-frequency = <100000>;
> +
> +	stdp4028 at 73 {
> +		compatible = "megachips,stdp4028-ge-b850v3-fw";
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +

Drop this newline, as in general we do not add newline in middle of
property list.

> +		reg = <0x73>;
> +

Ditto

> +		interrupt-parent = <&gpio2>;
> +		interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;
> +
> +		ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +
> +			port at 0 {
> +				reg = <0>;
> +				stdp4028_in: endpoint {
> +					remote-endpoint = <&lvds0_out>;
> +				};
> +			};

Have a newline between nodes.

> +			port at 1 {
> +				reg = <1>;
> +				stdp4028_out: endpoint {
> +					remote-endpoint = <&stdp2690_in>;
> +				};
> +			};
> +		};
> +	};
> +
> +	stdp2690 at 72 {

Sort device nodes under bus in order of unit address.  That said,
stdp2690 at 72 should go before stdp4028 at 73.

Shawn

> +		compatible = "megachips,stdp2690-ge-b850v3-fw";
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +
> +		reg = <0x72>;
> +
> +		ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +
> +			port at 0 {
> +				reg = <0>;
> +				stdp2690_in: endpoint {
> +					remote-endpoint = <&stdp4028_out>;
> +				};
> +			};
> +
> +			port at 1 {
> +				reg = <1>;
> +				stdp2690_out: endpoint {
> +					/* Connector for external display */
> +				};
> +			};
> +		};
> +	};
> +};
> -- 
> 2.9.3
> 

WARNING: multiple messages have this Message-ID (diff)
From: Shawn Guo <shawnguo@kernel.org>
To: Peter Senna Tschudin <peter.senna@collabora.com>
Cc: mark.rutland@arm.com, heiko@sntech.de, airlied@linux.ie,
	daniel.vetter@ffwll.ch, peter.senna@gmail.com,
	dri-devel@lists.freedesktop.org, tiwai@suse.com,
	thierry.reding@gmail.com, laurent.pinchart@ideasonboard.com,
	jslaby@suse.cz, martyn.welch@collabora.co.uk,
	Rob Herring <robh@kernel.org>,
	architt@codeaurora.org, mchehab@osg.samsung.com,
	linux@armlinux.org.uk, javier@dowhile0.org, treding@nvidia.com,
	linux@roeck-us.net, martin.donnelly@ge.com,
	devicetree@vger.kernel.org, p.zabel@pengutronix.de,
	pawel.moll@arm.com, ijc+devicetree@hellion.org.uk,
	eballetbo@gmail.com, Fabio Estevam <fabio.estevam@nxp.com>,
	rmk+kernel@armlinux.org.uk, robh+dt@kernel.org,
	linux-arm-kernel@lists.infradead.org, gregkh@linuxfoundation.org,
	linux-kernel@vger.kernel.org, kernel@pengutronix.de,
	galak@codeaurora.org, enric.balletbo@collabora.com,
	akpm@linux-foundation.org, davem@davemloft.net
Subject: Re: [PATCH V3 4/4] dts/imx6q-b850v3: Use megachips-stdpxxxx-ge-b850v3-fw bridges (LVDS-DP++)
Date: Mon, 13 Mar 2017 20:41:37 +0800	[thread overview]
Message-ID: <20170313124134.GF3618@dragon> (raw)
In-Reply-To: <d5c297680eb82fd7ef63f7f5dafffc22b98d2345.1488555615.git.peter.senna@collabora.com>

On Fri, Mar 03, 2017 at 04:57:10PM +0100, Peter Senna Tschudin wrote:
> Configures the megachips-stdpxxxx-ge-b850v3-fw bridges on the GE
> B850v3 dts file.
> 
> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> Cc: Martyn Welch <martyn.welch@collabora.co.uk>
> Cc: Martin Donnelly <martin.donnelly@ge.com>
> Cc: Javier Martinez Canillas <javier@dowhile0.org>
> Cc: Enric Balletbo i Serra <enric.balletbo@collabora.com>
> Cc: Philipp Zabel <p.zabel@pengutronix.de>
> Cc: Rob Herring <robh@kernel.org>
> Cc: Fabio Estevam <fabio.estevam@nxp.com>
> Signed-off-by: Peter Senna Tschudin <peter.senna@collabora.com>
> ---
> Unchanged since V1.
> 
>  arch/arm/boot/dts/imx6q-b850v3.dts | 68 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 68 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/imx6q-b850v3.dts b/arch/arm/boot/dts/imx6q-b850v3.dts
> index b237429..3ec54da 100644
> --- a/arch/arm/boot/dts/imx6q-b850v3.dts
> +++ b/arch/arm/boot/dts/imx6q-b850v3.dts
> @@ -72,6 +72,13 @@
>  		fsl,data-mapping = "spwg";
>  		fsl,data-width = <24>;
>  		status = "okay";
> +
> +		port@4 {
> +			reg = <4>;

Have a newline between property list and child node.

> +			lvds0_out: endpoint {
> +				remote-endpoint = <&stdp4028_in>;
> +			};
> +		};
>  	};
>  };
>  
> @@ -146,3 +153,64 @@
>  &usdhc2 {
>  	status = "disabled";
>  };
> +
> +&mux2_i2c2 {
> +	status = "okay";

This okay status doesn't seem really necessary to me.  If it does,
please put it at the end of property list.

> +	clock-frequency = <100000>;
> +
> +	stdp4028@73 {
> +		compatible = "megachips,stdp4028-ge-b850v3-fw";
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +

Drop this newline, as in general we do not add newline in middle of
property list.

> +		reg = <0x73>;
> +

Ditto

> +		interrupt-parent = <&gpio2>;
> +		interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;
> +
> +		ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +
> +			port@0 {
> +				reg = <0>;
> +				stdp4028_in: endpoint {
> +					remote-endpoint = <&lvds0_out>;
> +				};
> +			};

Have a newline between nodes.

> +			port@1 {
> +				reg = <1>;
> +				stdp4028_out: endpoint {
> +					remote-endpoint = <&stdp2690_in>;
> +				};
> +			};
> +		};
> +	};
> +
> +	stdp2690@72 {

Sort device nodes under bus in order of unit address.  That said,
stdp2690@72 should go before stdp4028@73.

Shawn

> +		compatible = "megachips,stdp2690-ge-b850v3-fw";
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +
> +		reg = <0x72>;
> +
> +		ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +
> +			port@0 {
> +				reg = <0>;
> +				stdp2690_in: endpoint {
> +					remote-endpoint = <&stdp4028_out>;
> +				};
> +			};
> +
> +			port@1 {
> +				reg = <1>;
> +				stdp2690_out: endpoint {
> +					/* Connector for external display */
> +				};
> +			};
> +		};
> +	};
> +};
> -- 
> 2.9.3
> 

WARNING: multiple messages have this Message-ID (diff)
From: Shawn Guo <shawnguo@kernel.org>
To: Peter Senna Tschudin <peter.senna@collabora.com>
Cc: airlied@linux.ie, architt@codeaurora.org,
	akpm@linux-foundation.org, daniel.vetter@ffwll.ch,
	davem@davemloft.net, devicetree@vger.kernel.org,
	dri-devel@lists.freedesktop.org, enric.balletbo@collabora.com,
	eballetbo@gmail.com, galak@codeaurora.org,
	gregkh@linuxfoundation.org, heiko@sntech.de,
	ijc+devicetree@hellion.org.uk, javier@dowhile0.org,
	jslaby@suse.cz, kernel@pengutronix.de,
	linux-arm-kernel@lists.infradead.org, linux@armlinux.org.uk,
	linux-kernel@vger.kernel.org, linux@roeck-us.net,
	mark.rutland@arm.com, martin.donnelly@ge.com,
	martyn.welch@collabora.co.uk, mchehab@osg.samsung.com,
	pawel.moll@arm.com, peter.senna@gmail.com,
	p.zabel@pengutronix.de, thierry.reding@gmail.com,
	rmk+kernel@armlinux.org.uk, robh+dt@kernel.org, tiwai@suse.com,
	treding@nvidia.com, laurent.pinchart@ideasonboard.com,
	Rob Herring <robh@kernel.org>,
	Fabio Estevam <fabio.estevam@nxp.com>
Subject: Re: [PATCH V3 4/4] dts/imx6q-b850v3: Use megachips-stdpxxxx-ge-b850v3-fw bridges (LVDS-DP++)
Date: Mon, 13 Mar 2017 20:41:37 +0800	[thread overview]
Message-ID: <20170313124134.GF3618@dragon> (raw)
In-Reply-To: <d5c297680eb82fd7ef63f7f5dafffc22b98d2345.1488555615.git.peter.senna@collabora.com>

On Fri, Mar 03, 2017 at 04:57:10PM +0100, Peter Senna Tschudin wrote:
> Configures the megachips-stdpxxxx-ge-b850v3-fw bridges on the GE
> B850v3 dts file.
> 
> Cc: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> Cc: Martyn Welch <martyn.welch@collabora.co.uk>
> Cc: Martin Donnelly <martin.donnelly@ge.com>
> Cc: Javier Martinez Canillas <javier@dowhile0.org>
> Cc: Enric Balletbo i Serra <enric.balletbo@collabora.com>
> Cc: Philipp Zabel <p.zabel@pengutronix.de>
> Cc: Rob Herring <robh@kernel.org>
> Cc: Fabio Estevam <fabio.estevam@nxp.com>
> Signed-off-by: Peter Senna Tschudin <peter.senna@collabora.com>
> ---
> Unchanged since V1.
> 
>  arch/arm/boot/dts/imx6q-b850v3.dts | 68 ++++++++++++++++++++++++++++++++++++++
>  1 file changed, 68 insertions(+)
> 
> diff --git a/arch/arm/boot/dts/imx6q-b850v3.dts b/arch/arm/boot/dts/imx6q-b850v3.dts
> index b237429..3ec54da 100644
> --- a/arch/arm/boot/dts/imx6q-b850v3.dts
> +++ b/arch/arm/boot/dts/imx6q-b850v3.dts
> @@ -72,6 +72,13 @@
>  		fsl,data-mapping = "spwg";
>  		fsl,data-width = <24>;
>  		status = "okay";
> +
> +		port@4 {
> +			reg = <4>;

Have a newline between property list and child node.

> +			lvds0_out: endpoint {
> +				remote-endpoint = <&stdp4028_in>;
> +			};
> +		};
>  	};
>  };
>  
> @@ -146,3 +153,64 @@
>  &usdhc2 {
>  	status = "disabled";
>  };
> +
> +&mux2_i2c2 {
> +	status = "okay";

This okay status doesn't seem really necessary to me.  If it does,
please put it at the end of property list.

> +	clock-frequency = <100000>;
> +
> +	stdp4028@73 {
> +		compatible = "megachips,stdp4028-ge-b850v3-fw";
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +

Drop this newline, as in general we do not add newline in middle of
property list.

> +		reg = <0x73>;
> +

Ditto

> +		interrupt-parent = <&gpio2>;
> +		interrupts = <0 IRQ_TYPE_LEVEL_HIGH>;
> +
> +		ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +
> +			port@0 {
> +				reg = <0>;
> +				stdp4028_in: endpoint {
> +					remote-endpoint = <&lvds0_out>;
> +				};
> +			};

Have a newline between nodes.

> +			port@1 {
> +				reg = <1>;
> +				stdp4028_out: endpoint {
> +					remote-endpoint = <&stdp2690_in>;
> +				};
> +			};
> +		};
> +	};
> +
> +	stdp2690@72 {

Sort device nodes under bus in order of unit address.  That said,
stdp2690@72 should go before stdp4028@73.

Shawn

> +		compatible = "megachips,stdp2690-ge-b850v3-fw";
> +		#address-cells = <1>;
> +		#size-cells = <0>;
> +
> +		reg = <0x72>;
> +
> +		ports {
> +			#address-cells = <1>;
> +			#size-cells = <0>;
> +
> +			port@0 {
> +				reg = <0>;
> +				stdp2690_in: endpoint {
> +					remote-endpoint = <&stdp4028_out>;
> +				};
> +			};
> +
> +			port@1 {
> +				reg = <1>;
> +				stdp2690_out: endpoint {
> +					/* Connector for external display */
> +				};
> +			};
> +		};
> +	};
> +};
> -- 
> 2.9.3
> 

  parent reply	other threads:[~2017-03-13 12:41 UTC|newest]

Thread overview: 29+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-03-03 15:57 [PATCH V3 0/4] megachips-stdpxxxx-ge-b850v3-fw Peter Senna Tschudin
2017-03-03 15:57 ` Peter Senna Tschudin
2017-03-03 15:57 ` [PATCH V3 1/4] dt-bindings: display: megachips-stdpxxxx-ge-b850v3-fw Peter Senna Tschudin
2017-03-03 15:57   ` Peter Senna Tschudin
2017-03-03 15:57   ` Peter Senna Tschudin
2017-03-03 15:57 ` [PATCH V3 2/4] MAINTAINERS: Add entry for megachips-stdpxxxx-ge-b850v3-fw Peter Senna Tschudin
2017-03-03 15:57   ` Peter Senna Tschudin
2017-03-03 15:57   ` Peter Senna Tschudin
2017-03-03 15:57 ` [PATCH V3 3/4] drm/bridge: Drivers for megachips-stdpxxxx-ge-b850v3-fw (LVDS-DP++) Peter Senna Tschudin
2017-03-03 15:57   ` Peter Senna Tschudin
2017-03-03 15:57   ` Peter Senna Tschudin
2017-03-03 15:57 ` [PATCH V3 4/4] dts/imx6q-b850v3: Use megachips-stdpxxxx-ge-b850v3-fw bridges (LVDS-DP++) Peter Senna Tschudin
2017-03-03 15:57   ` Peter Senna Tschudin
2017-03-03 15:57   ` Peter Senna Tschudin
2017-03-08 10:10   ` Peter Senna Tschudin
2017-03-08 10:10     ` Peter Senna Tschudin
2017-03-08 10:10     ` Peter Senna Tschudin
2017-03-13 12:41   ` Shawn Guo [this message]
2017-03-13 12:41     ` Shawn Guo
2017-03-13 12:41     ` Shawn Guo
2017-03-06  9:57 ` [PATCH V3 0/4] megachips-stdpxxxx-ge-b850v3-fw Archit Taneja
2017-03-06  9:57   ` Archit Taneja
2017-03-06  9:57   ` Archit Taneja
2017-03-08  9:42   ` Peter Senna Tschudin
2017-03-08  9:42     ` Peter Senna Tschudin
2017-03-08  9:42     ` Peter Senna Tschudin
2017-03-08  9:47     ` Lucas Stach
2017-03-08  9:47       ` Lucas Stach
2017-03-08  9:47       ` Lucas Stach

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=20170313124134.GF3618@dragon \
    --to=shawnguo@kernel.org \
    --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.