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 13/29] arm64: dts: renesas: Add support for H3ULCB with R-Car H3e
Date: Thu, 12 Aug 2021 13:24:03 +0200	[thread overview]
Message-ID: <edf398660fca5668f48df0ed59fa83b2f7bb22a6.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 Premier equipped with an
R-Car H3e 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/r8a779m0-ulcb.dts | 53 +++++++++++++++++++
 2 files changed, 54 insertions(+)
 create mode 100644 arch/arm64/boot/dts/renesas/r8a779m0-ulcb.dts

diff --git a/arch/arm64/boot/dts/renesas/Makefile b/arch/arm64/boot/dts/renesas/Makefile
index 69bdf8e92a459f1f..a18f9b9d2a335c78 100644
--- a/arch/arm64/boot/dts/renesas/Makefile
+++ b/arch/arm64/boot/dts/renesas/Makefile
@@ -64,6 +64,7 @@ dtb-$(CONFIG_ARCH_R8A77995) += r8a77995-draak.dtb
 dtb-$(CONFIG_ARCH_R8A779A0) += r8a779a0-falcon.dtb
 
 dtb-$(CONFIG_ARCH_R8A77951) += r8a779m0-salvator-xs.dtb
+dtb-$(CONFIG_ARCH_R8A77951) += r8a779m0-ulcb.dtb
 
 dtb-$(CONFIG_ARCH_R8A77951) += r8a779m1-salvator-xs.dtb
 dtb-$(CONFIG_ARCH_R8A77951) += r8a779m1-ulcb.dtb
diff --git a/arch/arm64/boot/dts/renesas/r8a779m0-ulcb.dts b/arch/arm64/boot/dts/renesas/r8a779m0-ulcb.dts
new file mode 100644
index 0000000000000000..57ae7866582f9a41
--- /dev/null
+++ b/arch/arm64/boot/dts/renesas/r8a779m0-ulcb.dts
@@ -0,0 +1,53 @@
+// SPDX-License-Identifier: (GPL-2.0 or MIT)
+/*
+ * Device Tree Source for the H3ULCB (R-Car Starter Kit Premier) with R-Car H3e
+ *
+ * Copyright (C) 2021 Glider bv
+ *
+ * Based on r8a77951-ulcb.dts
+ * Copyright (C) 2016 Renesas Electronics Corp.
+ * Copyright (C) 2016 Cogent Embedded, Inc.
+ */
+
+/dts-v1/;
+#include "r8a779m0.dtsi"
+#include "ulcb.dtsi"
+
+/ {
+	model = "Renesas H3ULCB board based on r8a779m0";
+	compatible = "renesas,h3ulcb", "renesas,r8a779m0", "renesas,r8a7795";
+
+	memory@48000000 {
+		device_type = "memory";
+		/* first 128MB is reserved for secure area. */
+		reg = <0x0 0x48000000 0x0 0x38000000>;
+	};
+
+	memory@500000000 {
+		device_type = "memory";
+		reg = <0x5 0x00000000 0x0 0x40000000>;
+	};
+
+	memory@600000000 {
+		device_type = "memory";
+		reg = <0x6 0x00000000 0x0 0x40000000>;
+	};
+
+	memory@700000000 {
+		device_type = "memory";
+		reg = <0x7 0x00000000 0x0 0x40000000>;
+	};
+};
+
+&du {
+	clocks = <&cpg CPG_MOD 724>,
+		 <&cpg CPG_MOD 723>,
+		 <&cpg CPG_MOD 722>,
+		 <&cpg CPG_MOD 721>,
+		 <&versaclock5 1>,
+		 <&versaclock5 3>,
+		 <&versaclock5 4>,
+		 <&versaclock5 2>;
+	clock-names = "du.0", "du.1", "du.2", "du.3",
+		      "dclkin.0", "dclkin.1", "dclkin.2", "dclkin.3";
+};
-- 
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 ` [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 ` Geert Uytterhoeven [this message]
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=edf398660fca5668f48df0ed59fa83b2f7bb22a6.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).