devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/2] ARM: shmobile: Add JPU device nodes to Renesas R-Car SoCs.
@ 2015-07-24 13:25 Mikhail Ulyanov
  2015-07-24 13:25 ` [PATCH 1/2] ARM: shmobile: r8a7790: Add JPU device node Mikhail Ulyanov
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Mikhail Ulyanov @ 2015-07-24 13:25 UTC (permalink / raw)
  To: horms, magnus.damm, robh+dt, pawel.moll, mark.rutland, galak,
	linux
  Cc: laurent.pinchart, sergei.shtylyov, devicetree, linux-sh,
	linux-arm-kernel, Mikhail Ulyanov

This series of patches contains device tree nodes definitions for JPEG
codec peripheral found in the Renesas R-Car SoCs.

This series of patches is against the renesas-devel-20150720-v4.2-rc3
of https://kernel.googlesource.com/pub/scm/linux/kernel/git/horms/renesas

The driver itself was accepted by Hans Verkuil
http://git.linuxtv.org/cgit.cgi/hverkuil/media_tree.git
commit hash 761a0eee505f3a7051b187e67cd28c50b385d409

Mikhail Ulyanov (2):
  ARM: shmobile: r8a7790: Add JPU device node.
  ARM: shmobile: r8a7791: Add JPU device node.

 arch/arm/boot/dts/r8a7790.dtsi | 7 +++++++
 arch/arm/boot/dts/r8a7791.dtsi | 7 +++++++
 2 files changed, 14 insertions(+)

-- 
2.1.4


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

* [PATCH 1/2] ARM: shmobile: r8a7790: Add JPU device node.
  2015-07-24 13:25 [PATCH 0/2] ARM: shmobile: Add JPU device nodes to Renesas R-Car SoCs Mikhail Ulyanov
@ 2015-07-24 13:25 ` Mikhail Ulyanov
  2015-07-24 13:25 ` [PATCH 2/2] ARM: shmobile: r8a7791: " Mikhail Ulyanov
  2015-07-28  0:34 ` [PATCH 0/2] ARM: shmobile: Add JPU device nodes to Renesas R-Car SoCs Simon Horman
  2 siblings, 0 replies; 4+ messages in thread
From: Mikhail Ulyanov @ 2015-07-24 13:25 UTC (permalink / raw)
  To: horms, magnus.damm, robh+dt, pawel.moll, mark.rutland, galak,
	linux
  Cc: laurent.pinchart, sergei.shtylyov, devicetree, linux-sh,
	linux-arm-kernel, Mikhail Ulyanov

This patch contains device tree node definition for JPEG codec peripheral
found in the Renesas R-Car r8a7790 SoC.

Signed-off-by: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
---
 arch/arm/boot/dts/r8a7790.dtsi | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/arch/arm/boot/dts/r8a7790.dtsi b/arch/arm/boot/dts/r8a7790.dtsi
index 3ae0c3b..e961352 100644
--- a/arch/arm/boot/dts/r8a7790.dtsi
+++ b/arch/arm/boot/dts/r8a7790.dtsi
@@ -872,6 +872,13 @@
 		status = "disabled";
 	};
 
+	jpu: jpeg-codec@fe980000 {
+		compatible = "renesas,jpu-r8a7790";
+		reg = <0 0xfe980000 0 0x10300>;
+		interrupts = <0 272 IRQ_TYPE_LEVEL_HIGH>;
+		clocks = <&mstp1_clks R8A7790_CLK_JPU>;
+	};
+
 	clocks {
 		#address-cells = <2>;
 		#size-cells = <2>;
-- 
2.1.4


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

* [PATCH 2/2] ARM: shmobile: r8a7791: Add JPU device node.
  2015-07-24 13:25 [PATCH 0/2] ARM: shmobile: Add JPU device nodes to Renesas R-Car SoCs Mikhail Ulyanov
  2015-07-24 13:25 ` [PATCH 1/2] ARM: shmobile: r8a7790: Add JPU device node Mikhail Ulyanov
@ 2015-07-24 13:25 ` Mikhail Ulyanov
  2015-07-28  0:34 ` [PATCH 0/2] ARM: shmobile: Add JPU device nodes to Renesas R-Car SoCs Simon Horman
  2 siblings, 0 replies; 4+ messages in thread
From: Mikhail Ulyanov @ 2015-07-24 13:25 UTC (permalink / raw)
  To: horms, magnus.damm, robh+dt, pawel.moll, mark.rutland, galak,
	linux
  Cc: laurent.pinchart, sergei.shtylyov, devicetree, linux-sh,
	linux-arm-kernel, Mikhail Ulyanov

This patch contains device tree node definition for JPEG codec peripheral
found in the Renesas R-Car r8a7791 SoC.

Signed-off-by: Mikhail Ulyanov <mikhail.ulyanov@cogentembedded.com>
---
 arch/arm/boot/dts/r8a7791.dtsi | 7 +++++++
 1 file changed, 7 insertions(+)

diff --git a/arch/arm/boot/dts/r8a7791.dtsi b/arch/arm/boot/dts/r8a7791.dtsi
index 07ea2be..05eb7e3 100644
--- a/arch/arm/boot/dts/r8a7791.dtsi
+++ b/arch/arm/boot/dts/r8a7791.dtsi
@@ -898,6 +898,13 @@
 		status = "disabled";
 	};
 
+	jpu: jpeg-codec@fe980000 {
+		compatible = "renesas,jpu-r8a7791";
+		reg = <0 0xfe980000 0 0x10300>;
+		interrupts = <0 272 IRQ_TYPE_LEVEL_HIGH>;
+		clocks = <&mstp1_clks R8A7791_CLK_JPU>;
+	};
+
 	clocks {
 		#address-cells = <2>;
 		#size-cells = <2>;
-- 
2.1.4


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

* Re: [PATCH 0/2] ARM: shmobile: Add JPU device nodes to Renesas R-Car SoCs.
  2015-07-24 13:25 [PATCH 0/2] ARM: shmobile: Add JPU device nodes to Renesas R-Car SoCs Mikhail Ulyanov
  2015-07-24 13:25 ` [PATCH 1/2] ARM: shmobile: r8a7790: Add JPU device node Mikhail Ulyanov
  2015-07-24 13:25 ` [PATCH 2/2] ARM: shmobile: r8a7791: " Mikhail Ulyanov
@ 2015-07-28  0:34 ` Simon Horman
  2 siblings, 0 replies; 4+ messages in thread
From: Simon Horman @ 2015-07-28  0:34 UTC (permalink / raw)
  To: Mikhail Ulyanov
  Cc: magnus.damm, robh+dt, pawel.moll, mark.rutland, galak, linux,
	laurent.pinchart, sergei.shtylyov, devicetree, linux-sh,
	linux-arm-kernel

On Fri, Jul 24, 2015 at 04:25:44PM +0300, Mikhail Ulyanov wrote:
> This series of patches contains device tree nodes definitions for JPEG
> codec peripheral found in the Renesas R-Car SoCs.
> 
> This series of patches is against the renesas-devel-20150720-v4.2-rc3
> of https://kernel.googlesource.com/pub/scm/linux/kernel/git/horms/renesas
> 
> The driver itself was accepted by Hans Verkuil
> http://git.linuxtv.org/cgit.cgi/hverkuil/media_tree.git
> commit hash 761a0eee505f3a7051b187e67cd28c50b385d409
> 
> Mikhail Ulyanov (2):
>   ARM: shmobile: r8a7790: Add JPU device node.
>   ARM: shmobile: r8a7791: Add JPU device node.

Thanks, I have queued up both patches.

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

end of thread, other threads:[~2015-07-28  0:34 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-07-24 13:25 [PATCH 0/2] ARM: shmobile: Add JPU device nodes to Renesas R-Car SoCs Mikhail Ulyanov
2015-07-24 13:25 ` [PATCH 1/2] ARM: shmobile: r8a7790: Add JPU device node Mikhail Ulyanov
2015-07-24 13:25 ` [PATCH 2/2] ARM: shmobile: r8a7791: " Mikhail Ulyanov
2015-07-28  0:34 ` [PATCH 0/2] ARM: shmobile: Add JPU device nodes to Renesas R-Car SoCs 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).