linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: Geert Uytterhoeven <geert+renesas@glider.be>
To: Magnus Damm <magnus.damm@gmail.com>, Rob Herring <robh+dt@kernel.org>
Cc: linux-renesas-soc@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org,
	Geert Uytterhoeven <geert+renesas@glider.be>
Subject: [PATCH v2 02/29] soc: renesas: Identify more R-Car Gen3e SoCs
Date: Thu, 12 Aug 2021 13:23:52 +0200	[thread overview]
Message-ID: <ccf2206b24147b3d977e4119bbdefaedceb28644.1628766192.git.geert+renesas@glider.be> (raw)
In-Reply-To: <cover.1628766192.git.geert+renesas@glider.be>

Add support for identifying the remaining R-Car Gen3e SoCs: R-Car H3e
(R8A779M0), M3e (R8A779M2), M3Ne (R8A779M4), M3Ne-2G (R8A779M5), E3e
(R8A779M6), D3e (R8A779M7), and H3Ne (R8A779M8).

As these are different gradings of the already supported R-Car Gen3
SoCs, support for them is enabled through the existing ARCH_R8A779*
configuration symbols.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
---
v2:
  - Drop new soc_rcar_*3*e, just use the existing soc_rcar_*3*.
---
 drivers/soc/renesas/Kconfig       | 7 +++++--
 drivers/soc/renesas/renesas-soc.c | 7 +++++++
 2 files changed, 12 insertions(+), 2 deletions(-)

diff --git a/drivers/soc/renesas/Kconfig b/drivers/soc/renesas/Kconfig
index a736b32555f21904..7f7c8f72d5f2b67a 100644
--- a/drivers/soc/renesas/Kconfig
+++ b/drivers/soc/renesas/Kconfig
@@ -191,6 +191,7 @@ config ARCH_R8A77995
 	select SYSC_R8A77995
 	help
 	  This enables support for the Renesas R-Car D3 SoC.
+	  This includes different gradings like R-Car D3e.
 
 config ARCH_R8A77990
 	bool "ARM64 Platform support for R-Car E3"
@@ -198,6 +199,7 @@ config ARCH_R8A77990
 	select SYSC_R8A77990
 	help
 	  This enables support for the Renesas R-Car E3 SoC.
+	  This includes different gradings like R-Car E3e.
 
 config ARCH_R8A77950
 	bool "ARM64 Platform support for R-Car H3 ES1.x"
@@ -213,7 +215,7 @@ config ARCH_R8A77951
 	help
 	  This enables support for the Renesas R-Car H3 SoC (revisions 2.0 and
 	  later).
-	  This includes different gradings like R-Car H3e-2G.
+	  This includes different gradings like R-Car H3e, H3e-2G, and H3Ne.
 
 config ARCH_R8A77965
 	bool "ARM64 Platform support for R-Car M3-N"
@@ -221,6 +223,7 @@ config ARCH_R8A77965
 	select SYSC_R8A77965
 	help
 	  This enables support for the Renesas R-Car M3-N SoC.
+	  This includes different gradings like R-Car M3Ne and M3Ne-2G.
 
 config ARCH_R8A77960
 	bool "ARM64 Platform support for R-Car M3-W"
@@ -235,7 +238,7 @@ config ARCH_R8A77961
 	select SYSC_R8A77961
 	help
 	  This enables support for the Renesas R-Car M3-W+ SoC.
-	  This includes different gradings like R-Car M3e-2G.
+	  This includes different gradings like R-Car M3e and M3e-2G.
 
 config ARCH_R8A77980
 	bool "ARM64 Platform support for R-Car V3H"
diff --git a/drivers/soc/renesas/renesas-soc.c b/drivers/soc/renesas/renesas-soc.c
index dab9f5a0aad00233..7961b0be1850922d 100644
--- a/drivers/soc/renesas/renesas-soc.c
+++ b/drivers/soc/renesas/renesas-soc.c
@@ -285,17 +285,22 @@ static const struct of_device_id renesas_socs[] __initconst = {
 	{ .compatible = "renesas,r8a7795",	.data = &soc_rcar_h3 },
 #endif
 #ifdef CONFIG_ARCH_R8A77951
+	{ .compatible = "renesas,r8a779m0",	.data = &soc_rcar_h3 },
 	{ .compatible = "renesas,r8a779m1",	.data = &soc_rcar_h3 },
+	{ .compatible = "renesas,r8a779m8",	.data = &soc_rcar_h3 },
 #endif
 #ifdef CONFIG_ARCH_R8A77960
 	{ .compatible = "renesas,r8a7796",	.data = &soc_rcar_m3_w },
 #endif
 #ifdef CONFIG_ARCH_R8A77961
 	{ .compatible = "renesas,r8a77961",	.data = &soc_rcar_m3_w },
+	{ .compatible = "renesas,r8a779m2",	.data = &soc_rcar_m3_w },
 	{ .compatible = "renesas,r8a779m3",	.data = &soc_rcar_m3_w },
 #endif
 #ifdef CONFIG_ARCH_R8A77965
 	{ .compatible = "renesas,r8a77965",	.data = &soc_rcar_m3_n },
+	{ .compatible = "renesas,r8a779m4",	.data = &soc_rcar_m3_n },
+	{ .compatible = "renesas,r8a779m5",	.data = &soc_rcar_m3_n },
 #endif
 #ifdef CONFIG_ARCH_R8A77970
 	{ .compatible = "renesas,r8a77970",	.data = &soc_rcar_v3m },
@@ -305,9 +310,11 @@ static const struct of_device_id renesas_socs[] __initconst = {
 #endif
 #ifdef CONFIG_ARCH_R8A77990
 	{ .compatible = "renesas,r8a77990",	.data = &soc_rcar_e3 },
+	{ .compatible = "renesas,r8a779m6",	.data = &soc_rcar_e3 },
 #endif
 #ifdef CONFIG_ARCH_R8A77995
 	{ .compatible = "renesas,r8a77995",	.data = &soc_rcar_d3 },
+	{ .compatible = "renesas,r8a779m7",	.data = &soc_rcar_d3 },
 #endif
 #ifdef CONFIG_ARCH_R8A779A0
 	{ .compatible = "renesas,r8a779a0",	.data = &soc_rcar_v3u },
-- 
2.25.1


_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

  parent reply	other threads:[~2021-08-12 11:28 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-08-12 11:23 [PATCH v2 00/29] arm64: renesas: Add support for more R-Car Gen3e SoCs and boards Geert Uytterhoeven
2021-08-12 11:23 ` [PATCH v2 01/29] dt-bindings: arm: renesas: Document more R-Car Gen3e Socs " Geert Uytterhoeven
2021-08-17 21:30   ` Rob Herring
2021-08-12 11:23 ` Geert Uytterhoeven [this message]
2021-08-12 11:23 ` [PATCH v2 03/29] arm64: dts: renesas: Factor out Draak board support Geert Uytterhoeven
2021-08-12 11:23 ` [PATCH v2 04/29] arm64: dts: renesas: Factor out Ebisu " Geert Uytterhoeven
2021-08-12 11:23 ` [PATCH v2 05/29] arm64: dts: renesas: Add Renesas R8A779M0 SoC support Geert Uytterhoeven
2021-08-12 11:23 ` [PATCH v2 06/29] arm64: dts: renesas: Add Renesas R8A779M2 " Geert Uytterhoeven
2021-08-12 11:23 ` [PATCH v2 07/29] arm64: dts: renesas: Add Renesas R8A779M4 " Geert Uytterhoeven
2021-08-12 11:23 ` [PATCH v2 08/29] arm64: dts: renesas: Add Renesas R8A779M5 " Geert Uytterhoeven
2021-08-12 11:23 ` [PATCH v2 09/29] arm64: dts: renesas: Add Renesas R8A779M6 " Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 10/29] arm64: dts: renesas: Add Renesas R8A779M7 " Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 11/29] arm64: dts: renesas: Add Renesas R8A779M8 " Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 12/29] arm64: dts: renesas: Add support for Salvator-XS with R-Car H3e Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 13/29] arm64: dts: renesas: Add support for H3ULCB " Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 14/29] arm64: dts: renesas: Add support for H3ULCB+Kingfisher " Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 15/29] arm64: dts: renesas: Add support for Salvator-XS with R-Car M3e Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 16/29] arm64: dts: renesas: Add support for M3ULCB " Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 17/29] arm64: dts: renesas: Add support for M3ULCB+Kingfisher " Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 18/29] arm64: dts: renesas: Add support for Salvator-XS with R-Car M3Ne Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 19/29] arm64: dts: renesas: Add support for M3NULCB " Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 20/29] arm64: dts: renesas: Add support for M3NULCB+Kingfisher " Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 21/29] arm64: dts: renesas: Add support for Salvator-XS with R-Car M3Ne-2G Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 22/29] arm64: dts: renesas: Add support for M3NULCB " Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 23/29] arm64: dts: renesas: Add support for M3NULCB+Kingfisher " Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 24/29] arm64: dts: renesas: Add support for Ebisu with R-Car E3e Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 25/29] arm64: dts: renesas: Add support for Draak with R-Car D3e Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 26/29] arm64: dts: renesas: Add support for Salvator-XS with R-Car H3Ne Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 27/29] arm64: dts: renesas: Add support for H3ULCB " Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 28/29] arm64: dts: renesas: Add support for H3ULCB+Kingfisher " Geert Uytterhoeven
2021-08-12 11:24 ` [PATCH v2 29/29] [RFC] arm64: dts: renesas: r8a779m5: Add Cortex-A57 2 GHz opp Geert Uytterhoeven

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ccf2206b24147b3d977e4119bbdefaedceb28644.1628766192.git.geert+renesas@glider.be \
    --to=geert+renesas@glider.be \
    --cc=devicetree@vger.kernel.org \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-renesas-soc@vger.kernel.org \
    --cc=magnus.damm@gmail.com \
    --cc=robh+dt@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).