All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] Add basic definitions for RZ/G2E
@ 2018-09-10 11:53 ` Fabrizio Castro
  0 siblings, 0 replies; 21+ messages in thread
From: Fabrizio Castro @ 2018-09-10 11:53 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon,
	Simon Horman, Magnus Damm
  Cc: Fabrizio Castro, devicetree, Chris Paterson, Geert Uytterhoeven,
	Biju Das, linux-renesas-soc, linux-arm-kernel

Dear All,

this series adds basic identification for the RZ/G2E (a.k.a.
r8a774c0).

It applies on top of renesas-devel-20180906-v4.19-rc2.

Thanks,
Fab

Fabrizio Castro (3):
  dt-bindings: arm: Document RZ/G2E SoC DT bindings
  arm64: Add Renesas R8A774C0 support
  soc: renesas: Identify RZ/G2E

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

-- 
2.7.4

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

* [PATCH 0/3] Add basic definitions for RZ/G2E
@ 2018-09-10 11:53 ` Fabrizio Castro
  0 siblings, 0 replies; 21+ messages in thread
From: Fabrizio Castro @ 2018-09-10 11:53 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland, Catalin Marinas, Will Deacon,
	Simon Horman, Magnus Damm
  Cc: Fabrizio Castro, linux-renesas-soc, devicetree, linux-arm-kernel,
	Geert Uytterhoeven, Chris Paterson, Biju Das

Dear All,

this series adds basic identification for the RZ/G2E (a.k.a.
r8a774c0).

It applies on top of renesas-devel-20180906-v4.19-rc2.

Thanks,
Fab

Fabrizio Castro (3):
  dt-bindings: arm: Document RZ/G2E SoC DT bindings
  arm64: Add Renesas R8A774C0 support
  soc: renesas: Identify RZ/G2E

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

-- 
2.7.4

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

* [PATCH 0/3] Add basic definitions for RZ/G2E
@ 2018-09-10 11:53 ` Fabrizio Castro
  0 siblings, 0 replies; 21+ messages in thread
From: Fabrizio Castro @ 2018-09-10 11:53 UTC (permalink / raw)
  To: linux-arm-kernel

Dear All,

this series adds basic identification for the RZ/G2E (a.k.a.
r8a774c0).

It applies on top of renesas-devel-20180906-v4.19-rc2.

Thanks,
Fab

Fabrizio Castro (3):
  dt-bindings: arm: Document RZ/G2E SoC DT bindings
  arm64: Add Renesas R8A774C0 support
  soc: renesas: Identify RZ/G2E

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

-- 
2.7.4

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

* [PATCH 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings
  2018-09-10 11:53 ` Fabrizio Castro
  (?)
  (?)
@ 2018-09-10 11:53 ` Fabrizio Castro
  2018-09-10 14:34   ` Geert Uytterhoeven
  2018-09-28  9:44   ` Geert Uytterhoeven
  -1 siblings, 2 replies; 21+ messages in thread
From: Fabrizio Castro @ 2018-09-10 11:53 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland
  Cc: Fabrizio Castro, Simon Horman, Magnus Damm, linux-renesas-soc,
	devicetree, Geert Uytterhoeven, Chris Paterson, Biju Das

Add device tree bindings documentation for Renesas RZ/G2E (r8a774c0)
SoC.

Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Biju Das <biju.das@bp.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 4a03a6b..f5e0f82 100644
--- a/Documentation/devicetree/bindings/arm/shmobile.txt
+++ b/Documentation/devicetree/bindings/arm/shmobile.txt
@@ -27,6 +27,8 @@ SoCs:
     compatible = "renesas,r8a77470"
   - RZ/G2M (R8A774A1)
     compatible = "renesas,r8a774a1"
+  - RZ/G2E (RA8774C0)
+    compatible = "renesas,r8a774c0"
   - R-Car M1A (R8A77781)
     compatible = "renesas,r8a7778"
   - R-Car H1 (R8A77790)
-- 
2.7.4

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

* [PATCH 2/3] arm64: Add Renesas R8A774C0 support
  2018-09-10 11:53 ` Fabrizio Castro
@ 2018-09-10 11:53   ` Fabrizio Castro
  -1 siblings, 0 replies; 21+ messages in thread
From: Fabrizio Castro @ 2018-09-10 11:53 UTC (permalink / raw)
  To: Catalin Marinas, Will Deacon
  Cc: Fabrizio Castro, linux-arm-kernel, Simon Horman,
	Geert Uytterhoeven, Chris Paterson, Biju Das, linux-renesas-soc

Add configuration option for the RZ/G2E (R8A774C0) SoC.

Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Biju Das <biju.das@bp.renesas.com>
---
 arch/arm64/Kconfig.platforms | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms
index b2e513e..0b65c03 100644
--- a/arch/arm64/Kconfig.platforms
+++ b/arch/arm64/Kconfig.platforms
@@ -170,6 +170,12 @@ config ARCH_R8A774A1
 	help
 	  This enables support for the Renesas RZ/G2M SoC.
 
+config ARCH_R8A774C0
+	bool "Renesas RZ/G2E SoC Platform"
+	depends on ARCH_RENESAS
+	help
+	  This enables support for the Renesas RZ/G2E SoC.
+
 config ARCH_R8A7795
 	bool "Renesas R-Car H3 SoC Platform"
 	depends on ARCH_RENESAS
-- 
2.7.4

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

* [PATCH 2/3] arm64: Add Renesas R8A774C0 support
@ 2018-09-10 11:53   ` Fabrizio Castro
  0 siblings, 0 replies; 21+ messages in thread
From: Fabrizio Castro @ 2018-09-10 11:53 UTC (permalink / raw)
  To: linux-arm-kernel

Add configuration option for the RZ/G2E (R8A774C0) SoC.

Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Biju Das <biju.das@bp.renesas.com>
---
 arch/arm64/Kconfig.platforms | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/arch/arm64/Kconfig.platforms b/arch/arm64/Kconfig.platforms
index b2e513e..0b65c03 100644
--- a/arch/arm64/Kconfig.platforms
+++ b/arch/arm64/Kconfig.platforms
@@ -170,6 +170,12 @@ config ARCH_R8A774A1
 	help
 	  This enables support for the Renesas RZ/G2M SoC.
 
+config ARCH_R8A774C0
+	bool "Renesas RZ/G2E SoC Platform"
+	depends on ARCH_RENESAS
+	help
+	  This enables support for the Renesas RZ/G2E SoC.
+
 config ARCH_R8A7795
 	bool "Renesas R-Car H3 SoC Platform"
 	depends on ARCH_RENESAS
-- 
2.7.4

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

* [PATCH 3/3] soc: renesas: Identify RZ/G2E
  2018-09-10 11:53 ` Fabrizio Castro
                   ` (3 preceding siblings ...)
  (?)
@ 2018-09-10 11:53 ` Fabrizio Castro
  2018-09-10 14:36   ` Geert Uytterhoeven
  -1 siblings, 1 reply; 21+ messages in thread
From: Fabrizio Castro @ 2018-09-10 11:53 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: Fabrizio Castro, linux-renesas-soc, Geert Uytterhoeven,
	Chris Paterson, Biju Das

Add support for identifying the RZ/G2E (r8a774c0) SoC.

Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Biju Das <biju.das@bp.renesas.com>
---
 drivers/soc/renesas/renesas-soc.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/drivers/soc/renesas/renesas-soc.c b/drivers/soc/renesas/renesas-soc.c
index ce19b27..d9a30b5 100644
--- a/drivers/soc/renesas/renesas-soc.c
+++ b/drivers/soc/renesas/renesas-soc.c
@@ -124,6 +124,11 @@ static const struct renesas_soc soc_rz_g2m __initconst __maybe_unused = {
 	.id	= 0x52,
 };
 
+static const struct renesas_soc soc_rz_g2e __initconst __maybe_unused = {
+	.family	= &fam_rzg2,
+	.id	= 0x57,
+};
+
 static const struct renesas_soc soc_rcar_m1a __initconst __maybe_unused = {
 	.family	= &fam_rcar_gen1,
 };
@@ -230,6 +235,9 @@ static const struct of_device_id renesas_socs[] __initconst = {
 #ifdef CONFIG_ARCH_R8A774A1
 	{ .compatible = "renesas,r8a774a1",	.data = &soc_rz_g2m },
 #endif
+#ifdef CONFIG_ARCH_R8A774C0
+	{ .compatible = "renesas,r8a774c0",	.data = &soc_rz_g2e },
+#endif
 #ifdef CONFIG_ARCH_R8A7778
 	{ .compatible = "renesas,r8a7778",	.data = &soc_rcar_m1a },
 #endif
-- 
2.7.4

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

* Re: [PATCH 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings
  2018-09-10 11:53 ` [PATCH 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings Fabrizio Castro
@ 2018-09-10 14:34   ` Geert Uytterhoeven
  2018-09-11 13:47     ` Simon Horman
  2018-09-28  9:44   ` Geert Uytterhoeven
  1 sibling, 1 reply; 21+ messages in thread
From: Geert Uytterhoeven @ 2018-09-10 14:34 UTC (permalink / raw)
  To: Fabrizio Castro
  Cc: Rob Herring, Mark Rutland, Simon Horman, Magnus Damm,
	Linux-Renesas,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Geert Uytterhoeven, Chris Paterson, Biju Das

On Mon, Sep 10, 2018 at 1:54 PM Fabrizio Castro
<fabrizio.castro@bp.renesas.com> wrote:
> Add device tree bindings documentation for Renesas RZ/G2E (r8a774c0)
> SoC.
>
> Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> Reviewed-by: Biju Das <biju.das@bp.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] 21+ messages in thread

* Re: [PATCH 2/3] arm64: Add Renesas R8A774C0 support
  2018-09-10 11:53   ` Fabrizio Castro
@ 2018-09-10 14:34     ` Geert Uytterhoeven
  -1 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2018-09-10 14:34 UTC (permalink / raw)
  To: Fabrizio Castro
  Cc: Catalin Marinas, Will Deacon, Linux ARM, Simon Horman,
	Geert Uytterhoeven, Chris Paterson, Biju Das, Linux-Renesas

On Mon, Sep 10, 2018 at 1:54 PM Fabrizio Castro
<fabrizio.castro@bp.renesas.com> wrote:
> Add configuration option for the RZ/G2E (R8A774C0) SoC.
>
> Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> Reviewed-by: Biju Das <biju.das@bp.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] 21+ messages in thread

* [PATCH 2/3] arm64: Add Renesas R8A774C0 support
@ 2018-09-10 14:34     ` Geert Uytterhoeven
  0 siblings, 0 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2018-09-10 14:34 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Sep 10, 2018 at 1:54 PM Fabrizio Castro
<fabrizio.castro@bp.renesas.com> wrote:
> Add configuration option for the RZ/G2E (R8A774C0) SoC.
>
> Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> Reviewed-by: Biju Das <biju.das@bp.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 at 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] 21+ messages in thread

* Re: [PATCH 3/3] soc: renesas: Identify RZ/G2E
  2018-09-10 11:53 ` [PATCH 3/3] soc: renesas: Identify RZ/G2E Fabrizio Castro
@ 2018-09-10 14:36   ` Geert Uytterhoeven
  2018-09-11 13:52     ` Simon Horman
  0 siblings, 1 reply; 21+ messages in thread
From: Geert Uytterhoeven @ 2018-09-10 14:36 UTC (permalink / raw)
  To: Fabrizio Castro
  Cc: Simon Horman, Magnus Damm, Linux-Renesas, Geert Uytterhoeven,
	Chris Paterson, Biju Das

On Mon, Sep 10, 2018 at 1:54 PM Fabrizio Castro
<fabrizio.castro@bp.renesas.com> wrote:
> Add support for identifying the RZ/G2E (r8a774c0) SoC.
>
> Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> Reviewed-by: Biju Das <biju.das@bp.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] 21+ messages in thread

* Re: [PATCH 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings
  2018-09-10 14:34   ` Geert Uytterhoeven
@ 2018-09-11 13:47     ` Simon Horman
  0 siblings, 0 replies; 21+ messages in thread
From: Simon Horman @ 2018-09-11 13:47 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Fabrizio Castro, Rob Herring, Mark Rutland, Magnus Damm,
	Linux-Renesas,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Geert Uytterhoeven, Chris Paterson, Biju Das

On Mon, Sep 10, 2018 at 04:34:14PM +0200, Geert Uytterhoeven wrote:
> On Mon, Sep 10, 2018 at 1:54 PM Fabrizio Castro
> <fabrizio.castro@bp.renesas.com> wrote:
> > Add device tree bindings documentation for Renesas RZ/G2E (r8a774c0)
> > SoC.
> >
> > Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > Reviewed-by: Biju Das <biju.das@bp.renesas.com>
> 
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

Thanks, applied for v4.20.

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

* Re: [PATCH 2/3] arm64: Add Renesas R8A774C0 support
  2018-09-10 14:34     ` Geert Uytterhoeven
@ 2018-09-11 13:51       ` Simon Horman
  -1 siblings, 0 replies; 21+ messages in thread
From: Simon Horman @ 2018-09-11 13:51 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Fabrizio Castro, Catalin Marinas, Will Deacon, Linux ARM,
	Geert Uytterhoeven, Chris Paterson, Biju Das, Linux-Renesas

On Mon, Sep 10, 2018 at 04:34:45PM +0200, Geert Uytterhoeven wrote:
> On Mon, Sep 10, 2018 at 1:54 PM Fabrizio Castro
> <fabrizio.castro@bp.renesas.com> wrote:
> > Add configuration option for the RZ/G2E (R8A774C0) SoC.
> >
> > Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > Reviewed-by: Biju Das <biju.das@bp.renesas.com>
> 
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

Thanks, applied.

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

* [PATCH 2/3] arm64: Add Renesas R8A774C0 support
@ 2018-09-11 13:51       ` Simon Horman
  0 siblings, 0 replies; 21+ messages in thread
From: Simon Horman @ 2018-09-11 13:51 UTC (permalink / raw)
  To: linux-arm-kernel

On Mon, Sep 10, 2018 at 04:34:45PM +0200, Geert Uytterhoeven wrote:
> On Mon, Sep 10, 2018 at 1:54 PM Fabrizio Castro
> <fabrizio.castro@bp.renesas.com> wrote:
> > Add configuration option for the RZ/G2E (R8A774C0) SoC.
> >
> > Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > Reviewed-by: Biju Das <biju.das@bp.renesas.com>
> 
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

Thanks, applied.

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

* Re: [PATCH 3/3] soc: renesas: Identify RZ/G2E
  2018-09-10 14:36   ` Geert Uytterhoeven
@ 2018-09-11 13:52     ` Simon Horman
  0 siblings, 0 replies; 21+ messages in thread
From: Simon Horman @ 2018-09-11 13:52 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Fabrizio Castro, Magnus Damm, Linux-Renesas, Geert Uytterhoeven,
	Chris Paterson, Biju Das

On Mon, Sep 10, 2018 at 04:36:14PM +0200, Geert Uytterhoeven wrote:
> On Mon, Sep 10, 2018 at 1:54 PM Fabrizio Castro
> <fabrizio.castro@bp.renesas.com> wrote:
> > Add support for identifying the RZ/G2E (r8a774c0) SoC.
> >
> > Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > Reviewed-by: Biju Das <biju.das@bp.renesas.com>
> 
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>

Thanks, applied for v4.20.

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

* Re: [PATCH 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings
  2018-09-10 11:53 ` [PATCH 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings Fabrizio Castro
  2018-09-10 14:34   ` Geert Uytterhoeven
@ 2018-09-28  9:44   ` Geert Uytterhoeven
  2018-09-28  9:54       ` Fabrizio Castro
  2018-09-28 10:16     ` [PATCH v2 " Fabrizio Castro
  1 sibling, 2 replies; 21+ messages in thread
From: Geert Uytterhoeven @ 2018-09-28  9:44 UTC (permalink / raw)
  To: Fabrizio Castro
  Cc: Rob Herring, Mark Rutland, Simon Horman, Magnus Damm,
	Linux-Renesas,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Geert Uytterhoeven, Chris Paterson, Biju Das

On Mon, Sep 10, 2018 at 1:54 PM Fabrizio Castro
<fabrizio.castro@bp.renesas.com> wrote:
> Add device tree bindings documentation for Renesas RZ/G2E (r8a774c0)
> SoC.
>
> Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> Reviewed-by: Biju Das <biju.das@bp.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 4a03a6b..f5e0f82 100644
> --- a/Documentation/devicetree/bindings/arm/shmobile.txt
> +++ b/Documentation/devicetree/bindings/arm/shmobile.txt
> @@ -27,6 +27,8 @@ SoCs:
>      compatible = "renesas,r8a77470"
>    - RZ/G2M (R8A774A1)
>      compatible = "renesas,r8a774a1"
> +  - RZ/G2E (RA8774C0)

Silly typo no one noticed before: s/A8/8A/

> +    compatible = "renesas,r8a774c0"
>    - R-Car M1A (R8A77781)
>      compatible = "renesas,r8a7778"
>    - R-Car H1 (R8A77790)

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] 21+ messages in thread

* RE: [PATCH 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings
  2018-09-28  9:44   ` Geert Uytterhoeven
@ 2018-09-28  9:54       ` Fabrizio Castro
  2018-09-28 10:16     ` [PATCH v2 " Fabrizio Castro
  1 sibling, 0 replies; 21+ messages in thread
From: Fabrizio Castro @ 2018-09-28  9:54 UTC (permalink / raw)
  To: Geert Uytterhoeven, Simon Horman
  Cc: Rob Herring, Mark Rutland, Magnus Damm, Linux-Renesas,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS 
	<devicetree@vger.kernel.org>,
	Geert Uytterhoeven, Chris Paterson, Biju Das

Hello Geert,

> Subject: Re: [PATCH 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings
>
> On Mon, Sep 10, 2018 at 1:54 PM Fabrizio Castro
> <fabrizio.castro@bp.renesas.com> wrote:
> > Add device tree bindings documentation for Renesas RZ/G2E (r8a774c0)
> > SoC.
> >
> > Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > Reviewed-by: Biju Das <biju.das@bp.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 4a03a6b..f5e0f82 100644
> > --- a/Documentation/devicetree/bindings/arm/shmobile.txt
> > +++ b/Documentation/devicetree/bindings/arm/shmobile.txt
> > @@ -27,6 +27,8 @@ SoCs:
> >      compatible = "renesas,r8a77470"
> >    - RZ/G2M (R8A774A1)
> >      compatible = "renesas,r8a774a1"
> > +  - RZ/G2E (RA8774C0)
>
> Silly typo no one noticed before: s/A8/8A/

That is a really good catch!

Simon, could you please drop it so that I can send a v2.

Cheers,
Fab

>
> > +    compatible = "renesas,r8a774c0"
> >    - R-Car M1A (R8A77781)
> >      compatible = "renesas,r8a7778"
> >    - R-Car H1 (R8A77790)
>
> 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



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* RE: [PATCH 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings
@ 2018-09-28  9:54       ` Fabrizio Castro
  0 siblings, 0 replies; 21+ messages in thread
From: Fabrizio Castro @ 2018-09-28  9:54 UTC (permalink / raw)
  To: Geert Uytterhoeven, Simon Horman
  Cc: Rob Herring, Mark Rutland, Magnus Damm, Linux-Renesas,
	open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
	Geert Uytterhoeven, Chris Paterson, Biju Das

Hello Geert,

> Subject: Re: [PATCH 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings
>
> On Mon, Sep 10, 2018 at 1:54 PM Fabrizio Castro
> <fabrizio.castro@bp.renesas.com> wrote:
> > Add device tree bindings documentation for Renesas RZ/G2E (r8a774c0)
> > SoC.
> >
> > Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > Reviewed-by: Biju Das <biju.das@bp.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 4a03a6b..f5e0f82 100644
> > --- a/Documentation/devicetree/bindings/arm/shmobile.txt
> > +++ b/Documentation/devicetree/bindings/arm/shmobile.txt
> > @@ -27,6 +27,8 @@ SoCs:
> >      compatible = "renesas,r8a77470"
> >    - RZ/G2M (R8A774A1)
> >      compatible = "renesas,r8a774a1"
> > +  - RZ/G2E (RA8774C0)
>
> Silly typo no one noticed before: s/A8/8A/

That is a really good catch!

Simon, could you please drop it so that I can send a v2.

Cheers,
Fab

>
> > +    compatible = "renesas,r8a774c0"
> >    - R-Car M1A (R8A77781)
> >      compatible = "renesas,r8a7778"
> >    - R-Car H1 (R8A77790)
>
> 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



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

* [PATCH v2 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings
  2018-09-28  9:44   ` Geert Uytterhoeven
  2018-09-28  9:54       ` Fabrizio Castro
@ 2018-09-28 10:16     ` Fabrizio Castro
  2018-10-01 13:15       ` Simon Horman
  1 sibling, 1 reply; 21+ messages in thread
From: Fabrizio Castro @ 2018-09-28 10:16 UTC (permalink / raw)
  To: Rob Herring, Mark Rutland
  Cc: Fabrizio Castro, Simon Horman, Magnus Damm, linux-renesas-soc,
	devicetree, Geert Uytterhoeven, Chris Paterson, Biju Das,
	Simon Horman

Add device tree bindings documentation for Renesas RZ/G2E (r8a774c0)
SoC.

Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
Reviewed-by: Biju Das <biju.das@bp.renesas.com>
Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>

---
v1->v2:
* Fixed typo within the part number, thanks Geert for spotting this

 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 4a03a6b..58c4256 100644
--- a/Documentation/devicetree/bindings/arm/shmobile.txt
+++ b/Documentation/devicetree/bindings/arm/shmobile.txt
@@ -27,6 +27,8 @@ SoCs:
     compatible = "renesas,r8a77470"
   - RZ/G2M (R8A774A1)
     compatible = "renesas,r8a774a1"
+  - RZ/G2E (R8A774C0)
+    compatible = "renesas,r8a774c0"
   - R-Car M1A (R8A77781)
     compatible = "renesas,r8a7778"
   - R-Car H1 (R8A77790)
-- 
2.7.4

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

* Re: [PATCH v2 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings
  2018-09-28 10:16     ` [PATCH v2 " Fabrizio Castro
@ 2018-10-01 13:15       ` Simon Horman
  2018-10-01 13:41         ` Fabrizio Castro
  0 siblings, 1 reply; 21+ messages in thread
From: Simon Horman @ 2018-10-01 13:15 UTC (permalink / raw)
  To: Fabrizio Castro
  Cc: Rob Herring, Mark Rutland, Magnus Damm, linux-renesas-soc,
	devicetree, Geert Uytterhoeven, Chris Paterson, Biju Das

On Fri, Sep 28, 2018 at 11:16:35AM +0100, Fabrizio Castro wrote:
> Add device tree bindings documentation for Renesas RZ/G2E (r8a774c0)
> SoC.
> 
> Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> Reviewed-by: Biju Das <biju.das@bp.renesas.com>
> Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
> Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
> 
> ---
> v1->v2:
> * Fixed typo within the part number, thanks Geert for spotting this

Unfortunately v1 already went upstream.

Please send an incremental patch to resolve this problem.

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

* RE: [PATCH v2 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings
  2018-10-01 13:15       ` Simon Horman
@ 2018-10-01 13:41         ` Fabrizio Castro
  0 siblings, 0 replies; 21+ messages in thread
From: Fabrizio Castro @ 2018-10-01 13:41 UTC (permalink / raw)
  To: Simon Horman
  Cc: Rob Herring, Mark Rutland, Magnus Damm, linux-renesas-soc,
	devicetree, Geert Uytterhoeven, Chris Paterson, Biju Das

Hello Simon,

> Subject: Re: [PATCH v2 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings
>
> On Fri, Sep 28, 2018 at 11:16:35AM +0100, Fabrizio Castro wrote:
> > Add device tree bindings documentation for Renesas RZ/G2E (r8a774c0)
> > SoC.
> >
> > Signed-off-by: Fabrizio Castro <fabrizio.castro@bp.renesas.com>
> > Reviewed-by: Biju Das <biju.das@bp.renesas.com>
> > Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
> > Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
> >
> > ---
> > v1->v2:
> > * Fixed typo within the part number, thanks Geert for spotting this
>
> Unfortunately v1 already went upstream.
>
> Please send an incremental patch to resolve this problem.

Thank you, will do.

Cheers,
Fab



Renesas Electronics Europe Ltd, Dukes Meadow, Millboard Road, Bourne End, Buckinghamshire, SL8 5FH, UK. Registered in England & Wales under Registered No. 04586709.

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

end of thread, other threads:[~2018-10-01 13:41 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-09-10 11:53 [PATCH 0/3] Add basic definitions for RZ/G2E Fabrizio Castro
2018-09-10 11:53 ` Fabrizio Castro
2018-09-10 11:53 ` Fabrizio Castro
2018-09-10 11:53 ` [PATCH 1/3] dt-bindings: arm: Document RZ/G2E SoC DT bindings Fabrizio Castro
2018-09-10 14:34   ` Geert Uytterhoeven
2018-09-11 13:47     ` Simon Horman
2018-09-28  9:44   ` Geert Uytterhoeven
2018-09-28  9:54     ` Fabrizio Castro
2018-09-28  9:54       ` Fabrizio Castro
2018-09-28 10:16     ` [PATCH v2 " Fabrizio Castro
2018-10-01 13:15       ` Simon Horman
2018-10-01 13:41         ` Fabrizio Castro
2018-09-10 11:53 ` [PATCH 2/3] arm64: Add Renesas R8A774C0 support Fabrizio Castro
2018-09-10 11:53   ` Fabrizio Castro
2018-09-10 14:34   ` Geert Uytterhoeven
2018-09-10 14:34     ` Geert Uytterhoeven
2018-09-11 13:51     ` Simon Horman
2018-09-11 13:51       ` Simon Horman
2018-09-10 11:53 ` [PATCH 3/3] soc: renesas: Identify RZ/G2E Fabrizio Castro
2018-09-10 14:36   ` Geert Uytterhoeven
2018-09-11 13:52     ` Simon Horman

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.