All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/4] ARM: shmobile: Document and identify RZ/G1H and RZ/G1N
@ 2017-03-10 13:48 Geert Uytterhoeven
  2017-03-10 13:48 ` [PATCH 1/4] ARM: shmobile: Document RZ/G1H SoC DT binding Geert Uytterhoeven
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2017-03-10 13:48 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, linux-arm-kernel, devicetree, Geert Uytterhoeven

	Hi Simon, Magnus,

Now the part numbers of the Renesas RZ/G1H and RZ/G1N are publicly
available, this patch series documents the DT bindings for these SoCs,
and adds support for identifying them.

Thanks!

Geert Uytterhoeven (4):
  ARM: shmobile: Document RZ/G1H SoC DT binding
  ARM: shmobile: Document RZ/G1N SoC DT binding
  soc: renesas: Identify RZ/G1H
  soc: renesas: Identify RZ/G1N

 Documentation/devicetree/bindings/arm/shmobile.txt |  4 ++++
 drivers/soc/renesas/renesas-soc.c                  | 16 ++++++++++++++++
 2 files changed, 20 insertions(+)

-- 
2.7.4

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

* [PATCH 1/4] ARM: shmobile: Document RZ/G1H SoC DT binding
  2017-03-10 13:48 [PATCH 0/4] ARM: shmobile: Document and identify RZ/G1H and RZ/G1N Geert Uytterhoeven
@ 2017-03-10 13:48 ` Geert Uytterhoeven
  2017-03-10 13:48 ` [PATCH 2/4] ARM: shmobile: Document RZ/G1N " Geert Uytterhoeven
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2017-03-10 13:48 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, linux-arm-kernel, devicetree, Geert Uytterhoeven

Document the RZ/G1H (r8a7742) SoC.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 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 c9502634316da3b1..b8155a209c58ef89 100644
--- a/Documentation/devicetree/bindings/arm/shmobile.txt
+++ b/Documentation/devicetree/bindings/arm/shmobile.txt
@@ -13,6 +13,8 @@ SoCs:
     compatible = "renesas,r8a73a4"
   - R-Mobile A1 (R8A77400)
     compatible = "renesas,r8a7740"
+  - RZ/G1H (R8A77420)
+    compatible = "renesas,r8a7742"
   - RZ/G1M (R8A77430)
     compatible = "renesas,r8a7743"
   - RZ/G1E (R8A77450)
-- 
2.7.4

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

* [PATCH 2/4] ARM: shmobile: Document RZ/G1N SoC DT binding
  2017-03-10 13:48 [PATCH 0/4] ARM: shmobile: Document and identify RZ/G1H and RZ/G1N Geert Uytterhoeven
  2017-03-10 13:48 ` [PATCH 1/4] ARM: shmobile: Document RZ/G1H SoC DT binding Geert Uytterhoeven
@ 2017-03-10 13:48 ` Geert Uytterhoeven
  2017-03-10 13:48 ` [PATCH 3/4] soc: renesas: Identify RZ/G1H Geert Uytterhoeven
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2017-03-10 13:48 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, linux-arm-kernel, devicetree, Geert Uytterhoeven

Document the RZ/G1N (r8a7744) SoC.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 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 b8155a209c58ef89..170fe0562c637eab 100644
--- a/Documentation/devicetree/bindings/arm/shmobile.txt
+++ b/Documentation/devicetree/bindings/arm/shmobile.txt
@@ -17,6 +17,8 @@ SoCs:
     compatible = "renesas,r8a7742"
   - RZ/G1M (R8A77430)
     compatible = "renesas,r8a7743"
+  - RZ/G1N (R8A77440)
+    compatible = "renesas,r8a7744"
   - RZ/G1E (R8A77450)
     compatible = "renesas,r8a7745"
   - R-Car M1A (R8A77781)
-- 
2.7.4

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

* [PATCH 3/4] soc: renesas: Identify RZ/G1H
  2017-03-10 13:48 [PATCH 0/4] ARM: shmobile: Document and identify RZ/G1H and RZ/G1N Geert Uytterhoeven
  2017-03-10 13:48 ` [PATCH 1/4] ARM: shmobile: Document RZ/G1H SoC DT binding Geert Uytterhoeven
  2017-03-10 13:48 ` [PATCH 2/4] ARM: shmobile: Document RZ/G1N " Geert Uytterhoeven
@ 2017-03-10 13:48 ` Geert Uytterhoeven
  2017-03-10 13:48 ` [PATCH 4/4] soc: renesas: Identify RZ/G1N Geert Uytterhoeven
       [not found] ` <1489153710-8159-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
  4 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2017-03-10 13:48 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, linux-arm-kernel, devicetree, Geert Uytterhoeven

Add support for identifying the RZ/G1H (r8a7742) SoC.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 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 330960312296f603..f0172e59c0402d10 100644
--- a/drivers/soc/renesas/renesas-soc.c
+++ b/drivers/soc/renesas/renesas-soc.c
@@ -80,6 +80,11 @@ static const struct renesas_soc soc_rmobile_a1 __initconst __maybe_unused = {
 	.id	= 0x40,
 };
 
+static const struct renesas_soc soc_rz_g1h __initconst __maybe_unused = {
+	.family	= &fam_rzg,
+	.id	= 0x45,
+};
+
 static const struct renesas_soc soc_rz_g1m __initconst __maybe_unused = {
 	.family	= &fam_rzg,
 	.id	= 0x47,
@@ -150,6 +155,9 @@ static const struct of_device_id renesas_socs[] __initconst = {
 #ifdef CONFIG_ARCH_R8A7740
 	{ .compatible = "renesas,r8a7740",	.data = &soc_rmobile_a1 },
 #endif
+#ifdef CONFIG_ARCH_R8A7742
+	{ .compatible = "renesas,r8a7742",	.data = &soc_rz_g1h },
+#endif
 #ifdef CONFIG_ARCH_R8A7743
 	{ .compatible = "renesas,r8a7743",	.data = &soc_rz_g1m },
 #endif
-- 
2.7.4

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

* [PATCH 4/4] soc: renesas: Identify RZ/G1N
  2017-03-10 13:48 [PATCH 0/4] ARM: shmobile: Document and identify RZ/G1H and RZ/G1N Geert Uytterhoeven
                   ` (2 preceding siblings ...)
  2017-03-10 13:48 ` [PATCH 3/4] soc: renesas: Identify RZ/G1H Geert Uytterhoeven
@ 2017-03-10 13:48 ` Geert Uytterhoeven
       [not found] ` <1489153710-8159-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
  4 siblings, 0 replies; 8+ messages in thread
From: Geert Uytterhoeven @ 2017-03-10 13:48 UTC (permalink / raw)
  To: Simon Horman, Magnus Damm
  Cc: linux-renesas-soc, linux-arm-kernel, devicetree, Geert Uytterhoeven

Add support for identifying the RZ/G1N (r8a7744) SoC.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
 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 f0172e59c0402d10..b894cf64225b31ac 100644
--- a/drivers/soc/renesas/renesas-soc.c
+++ b/drivers/soc/renesas/renesas-soc.c
@@ -90,6 +90,11 @@ static const struct renesas_soc soc_rz_g1m __initconst __maybe_unused = {
 	.id	= 0x47,
 };
 
+static const struct renesas_soc soc_rz_g1n __initconst __maybe_unused = {
+	.family	= &fam_rzg,
+	.id	= 0x4b,
+};
+
 static const struct renesas_soc soc_rz_g1e __initconst __maybe_unused = {
 	.family	= &fam_rzg,
 	.id	= 0x4c,
@@ -161,6 +166,9 @@ static const struct of_device_id renesas_socs[] __initconst = {
 #ifdef CONFIG_ARCH_R8A7743
 	{ .compatible = "renesas,r8a7743",	.data = &soc_rz_g1m },
 #endif
+#ifdef CONFIG_ARCH_R8A7744
+	{ .compatible = "renesas,r8a7744",	.data = &soc_rz_g1n },
+#endif
 #ifdef CONFIG_ARCH_R8A7745
 	{ .compatible = "renesas,r8a7745",	.data = &soc_rz_g1e },
 #endif
-- 
2.7.4

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

* Re: [PATCH 0/4] ARM: shmobile: Document and identify RZ/G1H and RZ/G1N
  2017-03-10 13:48 [PATCH 0/4] ARM: shmobile: Document and identify RZ/G1H and RZ/G1N Geert Uytterhoeven
  2017-03-10 13:48 ` [PATCH 1/4] ARM: shmobile: Document RZ/G1H SoC DT binding Geert Uytterhoeven
@ 2017-03-13  9:26     ` Simon Horman
  2017-03-10 13:48 ` [PATCH 3/4] soc: renesas: Identify RZ/G1H Geert Uytterhoeven
                       ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Simon Horman @ 2017-03-13  9:26 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Magnus Damm, linux-renesas-soc-u79uwXL29TY76Z2rM5mHXA,
	linux-arm-kernel-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r,
	devicetree-u79uwXL29TY76Z2rM5mHXA

On Fri, Mar 10, 2017 at 02:48:26PM +0100, Geert Uytterhoeven wrote:
> 	Hi Simon, Magnus,
> 
> Now the part numbers of the Renesas RZ/G1H and RZ/G1N are publicly
> available, this patch series documents the DT bindings for these SoCs,
> and adds support for identifying them.
> 
> Thanks!

Thanks, applied.
--
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] 8+ messages in thread

* Re: [PATCH 0/4] ARM: shmobile: Document and identify RZ/G1H and RZ/G1N
@ 2017-03-13  9:26     ` Simon Horman
  0 siblings, 0 replies; 8+ messages in thread
From: Simon Horman @ 2017-03-13  9:26 UTC (permalink / raw)
  To: Geert Uytterhoeven
  Cc: Magnus Damm, linux-renesas-soc, linux-arm-kernel, devicetree

On Fri, Mar 10, 2017 at 02:48:26PM +0100, Geert Uytterhoeven wrote:
> 	Hi Simon, Magnus,
> 
> Now the part numbers of the Renesas RZ/G1H and RZ/G1N are publicly
> available, this patch series documents the DT bindings for these SoCs,
> and adds support for identifying them.
> 
> Thanks!

Thanks, applied.

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

* [PATCH 0/4] ARM: shmobile: Document and identify RZ/G1H and RZ/G1N
@ 2017-03-13  9:26     ` Simon Horman
  0 siblings, 0 replies; 8+ messages in thread
From: Simon Horman @ 2017-03-13  9:26 UTC (permalink / raw)
  To: linux-arm-kernel

On Fri, Mar 10, 2017 at 02:48:26PM +0100, Geert Uytterhoeven wrote:
> 	Hi Simon, Magnus,
> 
> Now the part numbers of the Renesas RZ/G1H and RZ/G1N are publicly
> available, this patch series documents the DT bindings for these SoCs,
> and adds support for identifying them.
> 
> Thanks!

Thanks, applied.

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

end of thread, other threads:[~2017-03-13  9:26 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-03-10 13:48 [PATCH 0/4] ARM: shmobile: Document and identify RZ/G1H and RZ/G1N Geert Uytterhoeven
2017-03-10 13:48 ` [PATCH 1/4] ARM: shmobile: Document RZ/G1H SoC DT binding Geert Uytterhoeven
2017-03-10 13:48 ` [PATCH 2/4] ARM: shmobile: Document RZ/G1N " Geert Uytterhoeven
2017-03-10 13:48 ` [PATCH 3/4] soc: renesas: Identify RZ/G1H Geert Uytterhoeven
2017-03-10 13:48 ` [PATCH 4/4] soc: renesas: Identify RZ/G1N Geert Uytterhoeven
     [not found] ` <1489153710-8159-1-git-send-email-geert+renesas-gXvu3+zWzMSzQB+pC5nmwQ@public.gmane.org>
2017-03-13  9:26   ` [PATCH 0/4] ARM: shmobile: Document and identify RZ/G1H and RZ/G1N Simon Horman
2017-03-13  9:26     ` Simon Horman
2017-03-13  9:26     ` 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.