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>,
	Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Subject: [PATCH v2 16/29] arm64: dts: renesas: Add support for M3ULCB with R-Car M3e
Date: Thu, 12 Aug 2021 13:24:06 +0200	[thread overview]
Message-ID: <79685f0f7b46cd490d948fe642dd71381c8685e0.1628766192.git.geert+renesas@glider.be> (raw)
In-Reply-To: <cover.1628766192.git.geert+renesas@glider.be>

Add support for the Renesas R-Car Starter Kit Pro equipped with an R-Car
M3e SiP.

Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
---
v2:
  - Add Reviewed-by.
---
 arch/arm64/boot/dts/renesas/Makefile          |  1 +
 arch/arm64/boot/dts/renesas/r8a779m2-ulcb.dts | 45 +++++++++++++++++++
 2 files changed, 46 insertions(+)
 create mode 100644 arch/arm64/boot/dts/renesas/r8a779m2-ulcb.dts

diff --git a/arch/arm64/boot/dts/renesas/Makefile b/arch/arm64/boot/dts/renesas/Makefile
index 2c542b2f1c9fe092..eb744f7876751699 100644
--- a/arch/arm64/boot/dts/renesas/Makefile
+++ b/arch/arm64/boot/dts/renesas/Makefile
@@ -72,6 +72,7 @@ dtb-$(CONFIG_ARCH_R8A77951) += r8a779m1-ulcb.dtb
 dtb-$(CONFIG_ARCH_R8A77951) += r8a779m1-ulcb-kf.dtb
 
 dtb-$(CONFIG_ARCH_R8A77961) += r8a779m2-salvator-xs.dtb
+dtb-$(CONFIG_ARCH_R8A77961) += r8a779m2-ulcb.dtb
 
 dtb-$(CONFIG_ARCH_R8A77961) += r8a779m3-salvator-xs.dtb
 dtb-$(CONFIG_ARCH_R8A77961) += r8a779m3-ulcb.dtb
diff --git a/arch/arm64/boot/dts/renesas/r8a779m2-ulcb.dts b/arch/arm64/boot/dts/renesas/r8a779m2-ulcb.dts
new file mode 100644
index 0000000000000000..22edd2476ec40f28
--- /dev/null
+++ b/arch/arm64/boot/dts/renesas/r8a779m2-ulcb.dts
@@ -0,0 +1,45 @@
+// SPDX-License-Identifier: (GPL-2.0 or MIT)
+/*
+ * Device Tree Source for the M3ULCB (R-Car Starter Kit Pro) with R-Car M3e
+ *
+ * Copyright (C) 2021 Glider bv
+ *
+ * Based on r8a77961-ulcb.dts
+ * Copyright (C) 2020 Renesas Electronics Corp.
+ */
+
+/dts-v1/;
+#include "r8a779m2.dtsi"
+#include "ulcb.dtsi"
+
+/ {
+	model = "Renesas M3ULCB board based on r8a779m2";
+	compatible = "renesas,m3ulcb", "renesas,r8a779m2", "renesas,r8a77961";
+
+	memory@48000000 {
+		device_type = "memory";
+		/* first 128MB is reserved for secure area. */
+		reg = <0x0 0x48000000 0x0 0x78000000>;
+	};
+
+	memory@480000000 {
+		device_type = "memory";
+		reg = <0x4 0x80000000 0x0 0x80000000>;
+	};
+
+	memory@600000000 {
+		device_type = "memory";
+		reg = <0x6 0x00000000 0x1 0x00000000>;
+	};
+};
+
+&du {
+	clocks = <&cpg CPG_MOD 724>,
+		 <&cpg CPG_MOD 723>,
+		 <&cpg CPG_MOD 722>,
+		 <&versaclock5 1>,
+		 <&versaclock5 3>,
+		 <&versaclock5 2>;
+	clock-names = "du.0", "du.1", "du.2",
+		      "dclkin.0", "dclkin.1", "dclkin.2";
+};
-- 
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:32 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 ` [PATCH v2 02/29] soc: renesas: Identify more R-Car Gen3e SoCs Geert Uytterhoeven
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 ` Geert Uytterhoeven [this message]
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=79685f0f7b46cd490d948fe642dd71381c8685e0.1628766192.git.geert+renesas@glider.be \
    --to=geert+renesas@glider.be \
    --cc=devicetree@vger.kernel.org \
    --cc=laurent.pinchart@ideasonboard.com \
    --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).