devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ARM: dts: r8a7790/r8a7791: Remove obsolete vsp1 properties
@ 2016-08-16 14:56 Geert Uytterhoeven
  2016-08-16 14:56 ` [PATCH 1/2] ARM: dts: r8a7790: " Geert Uytterhoeven
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2016-08-16 14:56 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm, Laurent Pinchart
  Cc: linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
	devicetree-u79uwXL29TY76Z2rM5mHXA, Geert Uytterhoeven

	Hi Simon, Magnus, Laurent,

This patch series removes from the R-Car H2 and M2-W DT source files the
obsolete DT properties to identify the exact VSP device instance
features, which are no longer needed nor used since commit
5aa2eb3c86d4fd16 ("[media] v4l: vsp1: Configure device based on IP
version").

Geert Uytterhoeven (2):
  ARM: dts: r8a7790: Remove obsolete vsp1 properties
  ARM: dts: r8a7791: Remove obsolete vsp1 properties

 arch/arm/boot/dts/r8a7790.dtsi | 23 -----------------------
 arch/arm/boot/dts/r8a7791.dtsi | 18 ------------------
 2 files changed, 41 deletions(-)

-- 
1.9.1

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert-Td1EMuHUCqxL1ZNQvxDV9g@public.gmane.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds
--
To unsubscribe from this list: send the line "unsubscribe devicetree" in
the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

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

* [PATCH 1/2] ARM: dts: r8a7790: Remove obsolete vsp1 properties
  2016-08-16 14:56 [PATCH 0/2] ARM: dts: r8a7790/r8a7791: Remove obsolete vsp1 properties Geert Uytterhoeven
@ 2016-08-16 14:56 ` Geert Uytterhoeven
  2016-08-16 14:56 ` [PATCH 2/2] ARM: dts: r8a7791: " Geert Uytterhoeven
  2016-08-16 15:09 ` [PATCH 0/2] ARM: dts: r8a7790/r8a7791: " Laurent Pinchart
  2 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2016-08-16 14:56 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm, Laurent Pinchart
  Cc: linux-renesas-soc, devicetree, Geert Uytterhoeven

As of commit 5aa2eb3c86d4fd16 ("[media] v4l: vsp1: Configure device
based on IP version"), the DT properties to identify the exact VSP
device instance features are no longer used. Hence remove them.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/r8a7790.dtsi | 23 -----------------------
 1 file changed, 23 deletions(-)

diff --git a/arch/arm/boot/dts/r8a7790.dtsi b/arch/arm/boot/dts/r8a7790.dtsi
index d18558f211022826..351fcc2f87df6b28 100644
--- a/arch/arm/boot/dts/r8a7790.dtsi
+++ b/arch/arm/boot/dts/r8a7790.dtsi
@@ -944,11 +944,6 @@
 		interrupts = <GIC_SPI 266 IRQ_TYPE_LEVEL_HIGH>;
 		clocks = <&mstp1_clks R8A7790_CLK_VSP1_R>;
 		power-domains = <&sysc R8A7790_PD_ALWAYS_ON>;
-
-		renesas,has-sru;
-		renesas,#rpf = <5>;
-		renesas,#uds = <1>;
-		renesas,#wpf = <4>;
 	};
 
 	vsp1@fe928000 {
@@ -957,12 +952,6 @@
 		interrupts = <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>;
 		clocks = <&mstp1_clks R8A7790_CLK_VSP1_S>;
 		power-domains = <&sysc R8A7790_PD_ALWAYS_ON>;
-
-		renesas,has-lut;
-		renesas,has-sru;
-		renesas,#rpf = <5>;
-		renesas,#uds = <3>;
-		renesas,#wpf = <4>;
 	};
 
 	vsp1@fe930000 {
@@ -971,12 +960,6 @@
 		interrupts = <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>;
 		clocks = <&mstp1_clks R8A7790_CLK_VSP1_DU0>;
 		power-domains = <&sysc R8A7790_PD_ALWAYS_ON>;
-
-		renesas,has-lif;
-		renesas,has-lut;
-		renesas,#rpf = <4>;
-		renesas,#uds = <1>;
-		renesas,#wpf = <4>;
 	};
 
 	vsp1@fe938000 {
@@ -985,12 +968,6 @@
 		interrupts = <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>;
 		clocks = <&mstp1_clks R8A7790_CLK_VSP1_DU1>;
 		power-domains = <&sysc R8A7790_PD_ALWAYS_ON>;
-
-		renesas,has-lif;
-		renesas,has-lut;
-		renesas,#rpf = <4>;
-		renesas,#uds = <1>;
-		renesas,#wpf = <4>;
 	};
 
 	du: display@feb00000 {
-- 
1.9.1

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

* [PATCH 2/2] ARM: dts: r8a7791: Remove obsolete vsp1 properties
  2016-08-16 14:56 [PATCH 0/2] ARM: dts: r8a7790/r8a7791: Remove obsolete vsp1 properties Geert Uytterhoeven
  2016-08-16 14:56 ` [PATCH 1/2] ARM: dts: r8a7790: " Geert Uytterhoeven
@ 2016-08-16 14:56 ` Geert Uytterhoeven
  2016-08-16 15:09 ` [PATCH 0/2] ARM: dts: r8a7790/r8a7791: " Laurent Pinchart
  2 siblings, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2016-08-16 14:56 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm, Laurent Pinchart
  Cc: linux-renesas-soc, devicetree, Geert Uytterhoeven

As of commit 5aa2eb3c86d4fd16 ("[media] v4l: vsp1: Configure device
based on IP version"), the DT properties to identify the exact VSP
device instance features are no longer used. Hence remove them.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 arch/arm/boot/dts/r8a7791.dtsi | 18 ------------------
 1 file changed, 18 deletions(-)

diff --git a/arch/arm/boot/dts/r8a7791.dtsi b/arch/arm/boot/dts/r8a7791.dtsi
index 8f0086bbd96bb27a..162b55c665a3519e 100644
--- a/arch/arm/boot/dts/r8a7791.dtsi
+++ b/arch/arm/boot/dts/r8a7791.dtsi
@@ -983,12 +983,6 @@
 		interrupts = <GIC_SPI 267 IRQ_TYPE_LEVEL_HIGH>;
 		clocks = <&mstp1_clks R8A7791_CLK_VSP1_S>;
 		power-domains = <&sysc R8A7791_PD_ALWAYS_ON>;
-
-		renesas,has-lut;
-		renesas,has-sru;
-		renesas,#rpf = <5>;
-		renesas,#uds = <3>;
-		renesas,#wpf = <4>;
 	};
 
 	vsp1@fe930000 {
@@ -997,12 +991,6 @@
 		interrupts = <GIC_SPI 246 IRQ_TYPE_LEVEL_HIGH>;
 		clocks = <&mstp1_clks R8A7791_CLK_VSP1_DU0>;
 		power-domains = <&sysc R8A7791_PD_ALWAYS_ON>;
-
-		renesas,has-lif;
-		renesas,has-lut;
-		renesas,#rpf = <4>;
-		renesas,#uds = <1>;
-		renesas,#wpf = <4>;
 	};
 
 	vsp1@fe938000 {
@@ -1011,12 +999,6 @@
 		interrupts = <GIC_SPI 247 IRQ_TYPE_LEVEL_HIGH>;
 		clocks = <&mstp1_clks R8A7791_CLK_VSP1_DU1>;
 		power-domains = <&sysc R8A7791_PD_ALWAYS_ON>;
-
-		renesas,has-lif;
-		renesas,has-lut;
-		renesas,#rpf = <4>;
-		renesas,#uds = <1>;
-		renesas,#wpf = <4>;
 	};
 
 	du: display@feb00000 {
-- 
1.9.1

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

* Re: [PATCH 0/2] ARM: dts: r8a7790/r8a7791: Remove obsolete vsp1 properties
  2016-08-16 14:56 [PATCH 0/2] ARM: dts: r8a7790/r8a7791: Remove obsolete vsp1 properties Geert Uytterhoeven
  2016-08-16 14:56 ` [PATCH 1/2] ARM: dts: r8a7790: " Geert Uytterhoeven
  2016-08-16 14:56 ` [PATCH 2/2] ARM: dts: r8a7791: " Geert Uytterhoeven
@ 2016-08-16 15:09 ` Laurent Pinchart
  2016-08-17  7:22   ` Simon Horman
  2 siblings, 1 reply; 5+ messages in thread
From: Laurent Pinchart @ 2016-08-16 15:09 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Simon Horman, Magnus Damm, linux-renesas-soc, devicetree

Hi Geert,

On Tuesday 16 Aug 2016 16:56:30 Geert Uytterhoeven wrote:
> 	Hi Simon, Magnus, Laurent,
> 
> This patch series removes from the R-Car H2 and M2-W DT source files the
> obsolete DT properties to identify the exact VSP device instance
> features, which are no longer needed nor used since commit
> 5aa2eb3c86d4fd16 ("[media] v4l: vsp1: Configure device based on IP
> version").

I was about to submit the same patches :-)

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

> Geert Uytterhoeven (2):
>   ARM: dts: r8a7790: Remove obsolete vsp1 properties
>   ARM: dts: r8a7791: Remove obsolete vsp1 properties
> 
>  arch/arm/boot/dts/r8a7790.dtsi | 23 -----------------------
>  arch/arm/boot/dts/r8a7791.dtsi | 18 ------------------
>  2 files changed, 41 deletions(-)

-- 
Regards,

Laurent Pinchart

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

* Re: [PATCH 0/2] ARM: dts: r8a7790/r8a7791: Remove obsolete vsp1 properties
  2016-08-16 15:09 ` [PATCH 0/2] ARM: dts: r8a7790/r8a7791: " Laurent Pinchart
@ 2016-08-17  7:22   ` Simon Horman
  0 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2016-08-17  7:22 UTC (permalink / raw)
  To: Laurent Pinchart
  Cc: Geert Uytterhoeven, Magnus Damm, linux-renesas-soc, devicetree

On Tue, Aug 16, 2016 at 06:09:12PM +0300, Laurent Pinchart wrote:
> Hi Geert,
> 
> On Tuesday 16 Aug 2016 16:56:30 Geert Uytterhoeven wrote:
> > 	Hi Simon, Magnus, Laurent,
> > 
> > This patch series removes from the R-Car H2 and M2-W DT source files the
> > obsolete DT properties to identify the exact VSP device instance
> > features, which are no longer needed nor used since commit
> > 5aa2eb3c86d4fd16 ("[media] v4l: vsp1: Configure device based on IP
> > version").
> 
> I was about to submit the same patches :-)
> 
> Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
> 
> > Geert Uytterhoeven (2):
> >   ARM: dts: r8a7790: Remove obsolete vsp1 properties
> >   ARM: dts: r8a7791: Remove obsolete vsp1 properties

Thanks, I have queued these up.

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

end of thread, other threads:[~2016-08-17  7:22 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-16 14:56 [PATCH 0/2] ARM: dts: r8a7790/r8a7791: Remove obsolete vsp1 properties Geert Uytterhoeven
2016-08-16 14:56 ` [PATCH 1/2] ARM: dts: r8a7790: " Geert Uytterhoeven
2016-08-16 14:56 ` [PATCH 2/2] ARM: dts: r8a7791: " Geert Uytterhoeven
2016-08-16 15:09 ` [PATCH 0/2] ARM: dts: r8a7790/r8a7791: " Laurent Pinchart
2016-08-17  7:22   ` Simon Horman

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).