From patchwork Mon Dec 2 16:30:10 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13890996 X-Patchwork-Delegate: geert@linux-m68k.org Received: from cantor.telenet-ops.be (cantor.telenet-ops.be [195.130.132.48]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 99A2A1D6DC8 for ; Mon, 2 Dec 2024 16:30:29 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.132.48 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733157032; cv=none; b=r7oSnC4LRe9wz79aQdhZ1s1J60EoAYNm6Sh2snGjzMfJgT1wvdvgOAJi3r9wW5OFJP3CMMnMX1SLf+5HUQIvJ4jSK04khODn5zPbLMuIxOcsbzejx7FvNXoZKSwFlV0Pih/ubi7yWcmzuMkurrJWqd6ksMZnp8h7/tbk9rg0phQ= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733157032; c=relaxed/simple; bh=F7Y+ASAl+2CIIsRw0IkSzwTNx3dwuThmPPRb4Hptf+c=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=lw8HtGtkv6gEEJ3hEKQkCgd/PPxxBun/r609o1fDEGh8zq4MBospCVPaxXb8i1GI9ScRApZxPy6P63YhdiNRlqylJYuD/XrvIDMcl+Ak2EEU/0gnoHCRhBe7AsEJy6AVaVj3aV1BfTKTOZ1Xwyo8466jIAFms6Id4WRJM5Flyck= ARC-Authentication-Results: i=1; smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be; spf=none smtp.mailfrom=linux-m68k.org; arc=none smtp.client-ip=195.130.132.48 Authentication-Results: smtp.subspace.kernel.org; dmarc=none (p=none dis=none) header.from=glider.be Authentication-Results: smtp.subspace.kernel.org; spf=none smtp.mailfrom=linux-m68k.org Received: from michel.telenet-ops.be (michel.telenet-ops.be [IPv6:2a02:1800:110:4::f00:18]) by cantor.telenet-ops.be (Postfix) with ESMTPS id 4Y28Qk2kgXz4x4tt for ; Mon, 02 Dec 2024 17:30:22 +0100 (CET) Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed80:17fe:4001:68cd:b1ae]) by michel.telenet-ops.be with cmsmtp id jsWE2D00f1yjZj406sWEEV; Mon, 02 Dec 2024 17:30:15 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1tI9JO-0007uN-P5; Mon, 02 Dec 2024 17:30:14 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1tI9JO-007Pna-Mp; Mon, 02 Dec 2024 17:30:14 +0100 From: Geert Uytterhoeven To: Magnus Damm , Kuninori Morimoto , Rob Herring , Krzysztof Kozlowski , Conor Dooley Cc: linux-renesas-soc@vger.kernel.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, Geert Uytterhoeven Subject: [PATCH 4/5] arm64: dts: renesas: Add R8A779G3 SoC support Date: Mon, 2 Dec 2024 17:30:10 +0100 Message-Id: <978c41f932aa2dccd46ad91fc1ddfabacd1c254c.1733156661.git.geert+renesas@glider.be> X-Mailer: git-send-email 2.34.1 In-Reply-To: References: Precedence: bulk X-Mailing-List: linux-renesas-soc@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Add support for the Renesas R-Car V4H ES3.0 (R8A779G3) SoC, which is an updated version of the R-Car V4H (R8A779G0) SoC. Signed-off-by: Geert Uytterhoeven --- arch/arm64/boot/dts/renesas/r8a779g3.dtsi | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 arch/arm64/boot/dts/renesas/r8a779g3.dtsi diff --git a/arch/arm64/boot/dts/renesas/r8a779g3.dtsi b/arch/arm64/boot/dts/renesas/r8a779g3.dtsi new file mode 100644 index 0000000000000000..0295858a02602295 --- /dev/null +++ b/arch/arm64/boot/dts/renesas/r8a779g3.dtsi @@ -0,0 +1,12 @@ +// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +/* + * Device Tree Source for the R-Car V4H (R8A779G3) SoC + * + * Copyright (C) 2024 Glider bv + */ + +#include "r8a779g0.dtsi" + +/ { + compatible = "renesas,r8a779g3", "renesas,r8a779g0"; +};