linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/2] ARM: dts: imx7d: Specify viewport count for PCIE block
@ 2019-03-27  6:38 Andrey Smirnov
  2019-03-27  6:38 ` [PATCH 2/2] ARM: dts: imx6qdl: " Andrey Smirnov
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Andrey Smirnov @ 2019-03-27  6:38 UTC (permalink / raw)
  To: Shawn Guo
  Cc: Andrey Smirnov, Richard Zhu, Chris Healy, Lucas Stach,
	Fabio Estevam, linux-arm-kernel, linux-kernel

i.MX7D comes with 4 viewports, so configure PCIE node accordingly so
that the driver won't assume we only have 2.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Cc: Richard Zhu <hongxing.zhu@nxp.com>
Cc: Chris Healy <cphealy@gmail.com>
Cc: Lucas Stach <l.stach@pengutronix.de>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-kernel@vger.kernel.org
---
 arch/arm/boot/dts/imx7d.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/boot/dts/imx7d.dtsi b/arch/arm/boot/dts/imx7d.dtsi
index 6eb98e7c568d..f33b560821b8 100644
--- a/arch/arm/boot/dts/imx7d.dtsi
+++ b/arch/arm/boot/dts/imx7d.dtsi
@@ -154,6 +154,7 @@
 		ranges = <0x81000000 0 0          0x4ff80000 0 0x00010000   /* downstream I/O */
 			  0x82000000 0 0x40000000 0x40000000 0 0x0ff00000>; /* non-prefetchable memory */
 		num-lanes = <1>;
+		num-viewport = <4>;
 		interrupts = <GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>;
 		interrupt-names = "msi";
 		#interrupt-cells = <1>;
-- 
2.20.1


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

* [PATCH 2/2] ARM: dts: imx6qdl: Specify viewport count for PCIE block
  2019-03-27  6:38 [PATCH 1/2] ARM: dts: imx7d: Specify viewport count for PCIE block Andrey Smirnov
@ 2019-03-27  6:38 ` Andrey Smirnov
  2019-03-27  9:37   ` Lucas Stach
  2019-03-27  9:36 ` [PATCH 1/2] ARM: dts: imx7d: " Lucas Stach
  2019-04-03  9:40 ` Shawn Guo
  2 siblings, 1 reply; 5+ messages in thread
From: Andrey Smirnov @ 2019-03-27  6:38 UTC (permalink / raw)
  To: Shawn Guo
  Cc: Andrey Smirnov, Richard Zhu, Chris Healy, Lucas Stach,
	Fabio Estevam, linux-arm-kernel, linux-kernel

i.MX6 comes with 4 viewports, so configure PCIE node accordingly so
that the driver won't assume we only have 2.

Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
Cc: Richard Zhu <hongxing.zhu@nxp.com>
Cc: Chris Healy <cphealy@gmail.com>
Cc: Lucas Stach <l.stach@pengutronix.de>
Cc: Fabio Estevam <fabio.estevam@nxp.com>
Cc: linux-arm-kernel@lists.infradead.org
Cc: linux-kernel@vger.kernel.org
---
 arch/arm/boot/dts/imx6qdl.dtsi | 1 +
 1 file changed, 1 insertion(+)

diff --git a/arch/arm/boot/dts/imx6qdl.dtsi b/arch/arm/boot/dts/imx6qdl.dtsi
index 354feba077b2..e2e982f9b333 100644
--- a/arch/arm/boot/dts/imx6qdl.dtsi
+++ b/arch/arm/boot/dts/imx6qdl.dtsi
@@ -291,6 +291,7 @@
 			ranges = <0x81000000 0 0          0x01f80000 0 0x00010000 /* downstream I/O */
 				  0x82000000 0 0x01000000 0x01000000 0 0x00f00000>; /* non-prefetchable memory */
 			num-lanes = <1>;
+			num-viewport = <4>;
 			interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>;
 			interrupt-names = "msi";
 			#interrupt-cells = <1>;
-- 
2.20.1


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

* Re: [PATCH 1/2] ARM: dts: imx7d: Specify viewport count for PCIE block
  2019-03-27  6:38 [PATCH 1/2] ARM: dts: imx7d: Specify viewport count for PCIE block Andrey Smirnov
  2019-03-27  6:38 ` [PATCH 2/2] ARM: dts: imx6qdl: " Andrey Smirnov
@ 2019-03-27  9:36 ` Lucas Stach
  2019-04-03  9:40 ` Shawn Guo
  2 siblings, 0 replies; 5+ messages in thread
From: Lucas Stach @ 2019-03-27  9:36 UTC (permalink / raw)
  To: Andrey Smirnov, Shawn Guo
  Cc: Richard Zhu, Chris Healy, Fabio Estevam, linux-arm-kernel, linux-kernel

Am Dienstag, den 26.03.2019, 23:38 -0700 schrieb Andrey Smirnov:
> i.MX7D comes with 4 viewports, so configure PCIE node accordingly so
> that the driver won't assume we only have 2.
> 
> Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
> Cc: Richard Zhu <hongxing.zhu@nxp.com>
> Cc: Chris Healy <cphealy@gmail.com>
> Cc: Lucas Stach <l.stach@pengutronix.de>
> Cc: Fabio Estevam <fabio.estevam@nxp.com>
> Cc: linux-arm-kernel@lists.infradead.org
> Cc: linux-kernel@vger.kernel.org

Reviewed-by: Lucas Stach <l.stach@pengutronix.de>

> ---
>  arch/arm/boot/dts/imx7d.dtsi | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/boot/dts/imx7d.dtsi b/arch/arm/boot/dts/imx7d.dtsi
> index 6eb98e7c568d..f33b560821b8 100644
> --- a/arch/arm/boot/dts/imx7d.dtsi
> +++ b/arch/arm/boot/dts/imx7d.dtsi
> @@ -154,6 +154,7 @@
>  		ranges = <0x81000000 0 0          0x4ff80000 0 0x00010000   /* downstream I/O */
>  			  0x82000000 0 0x40000000 0x40000000 0 0x0ff00000>; /* non-prefetchable memory */
>  		num-lanes = <1>;
> +		num-viewport = <4>;
>  		interrupts = <GIC_SPI 122 IRQ_TYPE_LEVEL_HIGH>;
>  		interrupt-names = "msi";
>  		#interrupt-cells = <1>;

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

* Re: [PATCH 2/2] ARM: dts: imx6qdl: Specify viewport count for PCIE block
  2019-03-27  6:38 ` [PATCH 2/2] ARM: dts: imx6qdl: " Andrey Smirnov
@ 2019-03-27  9:37   ` Lucas Stach
  0 siblings, 0 replies; 5+ messages in thread
From: Lucas Stach @ 2019-03-27  9:37 UTC (permalink / raw)
  To: Andrey Smirnov, Shawn Guo
  Cc: Richard Zhu, Chris Healy, Fabio Estevam, linux-arm-kernel, linux-kernel

Am Dienstag, den 26.03.2019, 23:38 -0700 schrieb Andrey Smirnov:
> i.MX6 comes with 4 viewports, so configure PCIE node accordingly so
> that the driver won't assume we only have 2.
> 
> Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
> Cc: Richard Zhu <hongxing.zhu@nxp.com>
> Cc: Chris Healy <cphealy@gmail.com>
> Cc: Lucas Stach <l.stach@pengutronix.de>
> Cc: Fabio Estevam <fabio.estevam@nxp.com>
> Cc: linux-arm-kernel@lists.infradead.org
> Cc: linux-kernel@vger.kernel.org

Reviewed-by: Lucas Stach <l.stach@pengutronix.de>

> ---
>  arch/arm/boot/dts/imx6qdl.dtsi | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/arch/arm/boot/dts/imx6qdl.dtsi b/arch/arm/boot/dts/imx6qdl.dtsi
> index 354feba077b2..e2e982f9b333 100644
> --- a/arch/arm/boot/dts/imx6qdl.dtsi
> +++ b/arch/arm/boot/dts/imx6qdl.dtsi
> @@ -291,6 +291,7 @@
>  			ranges = <0x81000000 0 0          0x01f80000 0 0x00010000 /* downstream I/O */
>  				  0x82000000 0 0x01000000 0x01000000 0 0x00f00000>; /* non-prefetchable memory */
>  			num-lanes = <1>;
> +			num-viewport = <4>;
>  			interrupts = <GIC_SPI 120 IRQ_TYPE_LEVEL_HIGH>;
>  			interrupt-names = "msi";
>  			#interrupt-cells = <1>;

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

* Re: [PATCH 1/2] ARM: dts: imx7d: Specify viewport count for PCIE block
  2019-03-27  6:38 [PATCH 1/2] ARM: dts: imx7d: Specify viewport count for PCIE block Andrey Smirnov
  2019-03-27  6:38 ` [PATCH 2/2] ARM: dts: imx6qdl: " Andrey Smirnov
  2019-03-27  9:36 ` [PATCH 1/2] ARM: dts: imx7d: " Lucas Stach
@ 2019-04-03  9:40 ` Shawn Guo
  2 siblings, 0 replies; 5+ messages in thread
From: Shawn Guo @ 2019-04-03  9:40 UTC (permalink / raw)
  To: Andrey Smirnov
  Cc: Richard Zhu, Chris Healy, Lucas Stach, Fabio Estevam,
	linux-arm-kernel, linux-kernel

On Tue, Mar 26, 2019 at 11:38:40PM -0700, Andrey Smirnov wrote:
> i.MX7D comes with 4 viewports, so configure PCIE node accordingly so
> that the driver won't assume we only have 2.
> 
> Signed-off-by: Andrey Smirnov <andrew.smirnov@gmail.com>
> Cc: Richard Zhu <hongxing.zhu@nxp.com>
> Cc: Chris Healy <cphealy@gmail.com>
> Cc: Lucas Stach <l.stach@pengutronix.de>
> Cc: Fabio Estevam <fabio.estevam@nxp.com>
> Cc: linux-arm-kernel@lists.infradead.org
> Cc: linux-kernel@vger.kernel.org

Applied both, thanks.

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

end of thread, other threads:[~2019-04-03  9:41 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-27  6:38 [PATCH 1/2] ARM: dts: imx7d: Specify viewport count for PCIE block Andrey Smirnov
2019-03-27  6:38 ` [PATCH 2/2] ARM: dts: imx6qdl: " Andrey Smirnov
2019-03-27  9:37   ` Lucas Stach
2019-03-27  9:36 ` [PATCH 1/2] ARM: dts: imx7d: " Lucas Stach
2019-04-03  9:40 ` Shawn Guo

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).