public inbox for devicetree@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] RZ/G2M SoC identification support
@ 2018-07-24 15:47 Biju Das
  2018-07-24 15:47 ` [PATCH 1/3] dt-bindings: arm: Document RZ/G2M SoC DT bindings Biju Das
  2018-07-26 13:27 ` [PATCH 0/3] RZ/G2M SoC identification support Simon Horman
  0 siblings, 2 replies; 5+ messages in thread
From: Biju Das @ 2018-07-24 15:47 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon
  Cc: Biju Das, Simon Horman, Magnus Damm, linux-renesas-soc,
	devicetree, Geert Uytterhoeven, Chris Paterson, Fabrizio Castro

This patch series aims to add SoC identification support 
for RZ/G2M SoC. RZ/G2M SoC is similar to R-Car Gen3 M3-W SoC.


Biju Das (3):
  dt-bindings: arm: Document RZ/G2M SoC DT bindings
  arm64: Add Renesas R8A774A1 support
  soc: renesas: Identify RZ/G2M

 Documentation/devicetree/bindings/arm/shmobile.txt |  2 ++
 arch/arm64/Kconfig.platforms                       |  6 +++++
 drivers/soc/renesas/renesas-soc.c                  | 27 ++++++++++++++++------
 3 files changed, 28 insertions(+), 7 deletions(-)

-- 
2.7.4

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

* [PATCH 1/3] dt-bindings: arm: Document RZ/G2M SoC DT bindings
  2018-07-24 15:47 [PATCH 0/3] RZ/G2M SoC identification support Biju Das
@ 2018-07-24 15:47 ` Biju Das
  2018-07-26 11:44   ` Geert Uytterhoeven
  2018-07-31 22:14   ` Rob Herring
  2018-07-26 13:27 ` [PATCH 0/3] RZ/G2M SoC identification support Simon Horman
  1 sibling, 2 replies; 5+ messages in thread
From: Biju Das @ 2018-07-24 15:47 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland
  Cc: Biju Das, Simon Horman, Magnus Damm, linux-renesas-soc,
	devicetree, Geert Uytterhoeven, Chris Paterson, Fabrizio Castro

Add device tree bindings documentation for Renesas RZ/G2M (r8a774a1) SoC.

Signed-off-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Chris Paterson <chris.paterson2@renesas.com>
---
 Documentation/devicetree/bindings/arm/shmobile.txt | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/Documentation/devicetree/bindings/arm/shmobile.txt b/Documentation/devicetree/bindings/arm/shmobile.txt
index 89b4a38..8acd3cd 100644
--- a/Documentation/devicetree/bindings/arm/shmobile.txt
+++ b/Documentation/devicetree/bindings/arm/shmobile.txt
@@ -23,6 +23,8 @@ SoCs:
     compatible = "renesas,r8a7745"
   - RZ/G1C (R8A77470)
     compatible = "renesas,r8a77470"
+  - RZ/G2M (R8A774A1)
+    compatible = "renesas,r8a774a1"
   - R-Car M1A (R8A77781)
     compatible = "renesas,r8a7778"
   - R-Car H1 (R8A77790)
-- 
2.7.4

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

* Re: [PATCH 1/3] dt-bindings: arm: Document RZ/G2M SoC DT bindings
  2018-07-24 15:47 ` [PATCH 1/3] dt-bindings: arm: Document RZ/G2M SoC DT bindings Biju Das
@ 2018-07-26 11:44   ` Geert Uytterhoeven
  2018-07-31 22:14   ` Rob Herring
  1 sibling, 0 replies; 5+ messages in thread
From: Geert Uytterhoeven @ 2018-07-26 11:44 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, Simon Horman, Magnus Damm,
	Linux-Renesas,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Geert Uytterhoeven, Chris Paterson, Fabrizio Castro

On Tue, Jul 24, 2018 at 5:53 PM Biju Das <biju.das@bp.renesas.com> wrote:
> Add device tree bindings documentation for Renesas RZ/G2M (r8a774a1) SoC.
>
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Chris Paterson <chris.paterson2@renesas.com>

Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

Gr{oetje,eeting}s,

                        Geert

-- 
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.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

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

* Re: [PATCH 0/3] RZ/G2M SoC identification support
  2018-07-24 15:47 [PATCH 0/3] RZ/G2M SoC identification support Biju Das
  2018-07-24 15:47 ` [PATCH 1/3] dt-bindings: arm: Document RZ/G2M SoC DT bindings Biju Das
@ 2018-07-26 13:27 ` Simon Horman
  1 sibling, 0 replies; 5+ messages in thread
From: Simon Horman @ 2018-07-26 13:27 UTC (permalink / raw)
  To: Biju Das
  Cc: Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon,
	Magnus Damm, linux-renesas-soc, devicetree, Geert Uytterhoeven,
	Chris Paterson, Fabrizio Castro

On Tue, Jul 24, 2018 at 04:47:15PM +0100, Biju Das wrote:
> This patch series aims to add SoC identification support 
> for RZ/G2M SoC. RZ/G2M SoC is similar to R-Car Gen3 M3-W SoC.
> 
> 
> Biju Das (3):
>   dt-bindings: arm: Document RZ/G2M SoC DT bindings
>   arm64: Add Renesas R8A774A1 support
>   soc: renesas: Identify RZ/G2M

Thanks, applied for v4.20.

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

* Re: [PATCH 1/3] dt-bindings: arm: Document RZ/G2M SoC DT bindings
  2018-07-24 15:47 ` [PATCH 1/3] dt-bindings: arm: Document RZ/G2M SoC DT bindings Biju Das
  2018-07-26 11:44   ` Geert Uytterhoeven
@ 2018-07-31 22:14   ` Rob Herring
  1 sibling, 0 replies; 5+ messages in thread
From: Rob Herring @ 2018-07-31 22:14 UTC (permalink / raw)
  To: Biju Das
  Cc: Mark Rutland, Simon Horman, Magnus Damm, linux-renesas-soc,
	devicetree, Geert Uytterhoeven, Chris Paterson, Fabrizio Castro

On Tue, Jul 24, 2018 at 04:47:16PM +0100, Biju Das wrote:
> Add device tree bindings documentation for Renesas RZ/G2M (r8a774a1) SoC.
> 
> Signed-off-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Chris Paterson <chris.paterson2@renesas.com>
> ---
>  Documentation/devicetree/bindings/arm/shmobile.txt | 2 ++
>  1 file changed, 2 insertions(+)

Reviewed-by: Rob Herring <robh@kernel.org>

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

end of thread, other threads:[~2018-07-31 22:14 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-07-24 15:47 [PATCH 0/3] RZ/G2M SoC identification support Biju Das
2018-07-24 15:47 ` [PATCH 1/3] dt-bindings: arm: Document RZ/G2M SoC DT bindings Biju Das
2018-07-26 11:44   ` Geert Uytterhoeven
2018-07-31 22:14   ` Rob Herring
2018-07-26 13:27 ` [PATCH 0/3] RZ/G2M SoC identification support Simon Horman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox