From patchwork Mon Dec 2 16:30:07 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13891009 X-Patchwork-Delegate: geert@linux-m68k.org Received: from weierstrass.telenet-ops.be (weierstrass.telenet-ops.be [195.130.137.81]) (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 945D13C6BA for ; Mon, 2 Dec 2024 16:38:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.137.81 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733157499; cv=none; b=g0lR7YiWiXCaaDyCBzvvXeQhrBDWUZvDHK8qsj7HrrJRyT4QTgezg5BlQRWR4XynLgEow3LQq+owzVF7ltw7Ghg9mTX94MEGp/4/jTlH3GGoLIcEsRhJCEhoJGBq3rGvo9Hws87OWEq4vSkXzL8teTRj+39WqJlPP3yIa6SSOSk= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733157499; c=relaxed/simple; bh=8hQjpiRxrY2RwgnJAWl8oZ7Q5rlWydofxkcc7yQXHSk=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=f53jTK+GY/M8ucCFIUfV2G/qSaMBLr2fDglkqwhhaFaC23U3WwMvy9kxALBMUQIOmUcBT0FT7FuKjuGIvhAJJYXhQTVEqlZxHYkl2FOajM04KM4t/BIBVI80AdBBYRIQY+hX6SNjfx+1PwKgYUr1HFSZ0OnpbZSwDxcixmv+PTM= 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.137.81 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 laurent.telenet-ops.be (laurent.telenet-ops.be [IPv6:2a02:1800:110:4::f00:19]) by weierstrass.telenet-ops.be (Postfix) with ESMTPS id 4Y28Qm3B6hz4x4qw for ; Mon, 02 Dec 2024 17:30:24 +0100 (CET) Received: from ramsan.of.borg ([IPv6:2a02:1810:ac12:ed80:17fe:4001:68cd:b1ae]) by laurent.telenet-ops.be with cmsmtp id jsWE2D00j1yjZj401sWEem; Mon, 02 Dec 2024 17:30:16 +0100 Received: from rox.of.borg ([192.168.97.57]) by ramsan.of.borg with esmtp (Exim 4.95) (envelope-from ) id 1tI9JO-0007uA-Ls; Mon, 02 Dec 2024 17:30:14 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1tI9JO-007PnO-JV; 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 1/5] dt-bindings: soc: renesas: Move R8A779G0 White Hawk up Date: Mon, 2 Dec 2024 17:30:07 +0100 Message-Id: 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 Move the R8A779G0-only White Hawk board stack section up, just below the R8A779G0-only White Hawk CPU section, to improve sort order. Signed-off-by: Geert Uytterhoeven Acked-by: Krzysztof Kozlowski --- .../devicetree/bindings/soc/renesas/renesas.yaml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/Documentation/devicetree/bindings/soc/renesas/renesas.yaml b/Documentation/devicetree/bindings/soc/renesas/renesas.yaml index b7acb65bdecd2a38..dab6667970325dcd 100644 --- a/Documentation/devicetree/bindings/soc/renesas/renesas.yaml +++ b/Documentation/devicetree/bindings/soc/renesas/renesas.yaml @@ -360,6 +360,12 @@ properties: - renesas,white-hawk-cpu # White Hawk CPU board (RTP8A779G0ASKB0FC0SA000) - const: renesas,r8a779g0 + - items: + - enum: + - renesas,white-hawk-breakout # White Hawk BreakOut board (RTP8A779G0ASKB0SB0SA000) + - const: renesas,white-hawk-cpu + - const: renesas,r8a779g0 + - description: R-Car V4H (R8A779G2) items: - enum: @@ -367,12 +373,6 @@ properties: - const: renesas,r8a779g2 - const: renesas,r8a779g0 - - items: - - enum: - - renesas,white-hawk-breakout # White Hawk BreakOut board (RTP8A779G0ASKB0SB0SA000) - - const: renesas,white-hawk-cpu - - const: renesas,r8a779g0 - - description: R-Car V4M (R8A779H0) items: - enum: From patchwork Mon Dec 2 16:30:08 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13891010 X-Patchwork-Delegate: geert@linux-m68k.org Received: from weierstrass.telenet-ops.be (weierstrass.telenet-ops.be [195.130.137.81]) (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 94610126C13 for ; Mon, 2 Dec 2024 16:38:18 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.137.81 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733157500; cv=none; b=TR+E4GTaGS2DdyqmQ5ksXrqlDI2zujOUiuCeQj4fgMvotrpWXntkt0efDkUxlnsy7Fz5XNIvVKqKu3iZws3ZZT4UVkrBXEVbpKUX4YCUL1Xx3MMyEOnuZDaCVp2A5eeSuKdeVB/F++mDjqooEmq7hirhvzy8+f7NeQz56JAXS0U= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733157500; c=relaxed/simple; bh=Lez2g9uLCxAsVCIfMqm4W3OGs1nFWxwmVadcE8DZCh8=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=gL8IGATsLKxWezIxQBrnmJqtt4IcPecNO06Y2R1JR8GkogE20Zhaapt13OE9vPUToXhiEiRj9SGGD292w01qz7aEHG1vcA2jInAL/B025zuptkZA+raF630TYR2/yQpaSnY9i+yGCXFlnwSOA2i+RPECAzjTtGSECc0by4gKdl0= 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.137.81 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 albert.telenet-ops.be (albert.telenet-ops.be [IPv6:2a02:1800:110:4::f00:1a]) by weierstrass.telenet-ops.be (Postfix) with ESMTPS id 4Y28Qk37kMz4x6qX 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 albert.telenet-ops.be with cmsmtp id jsWE2D00d1yjZj406sWEyJ; 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-0007uE-Mt; Mon, 02 Dec 2024 17:30:14 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1tI9JO-007PnS-Ke; 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 2/5] dt-bindings: soc: renesas: Document R8A779G3 White Hawk Single Date: Mon, 2 Dec 2024 17:30:08 +0100 Message-Id: <1d2d2a6cbf31c817f574f6eed310a960e6175afe.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 Document the compatible value for the Renesas R-Car V4H ES3.0 (R8A779G3) SoC, as used on the Renesas White Hawk Single board. Signed-off-by: Geert Uytterhoeven Acked-by: Krzysztof Kozlowski --- .../devicetree/bindings/soc/renesas/renesas.yaml | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/Documentation/devicetree/bindings/soc/renesas/renesas.yaml b/Documentation/devicetree/bindings/soc/renesas/renesas.yaml index dab6667970325dcd..0f3fa341fd87924b 100644 --- a/Documentation/devicetree/bindings/soc/renesas/renesas.yaml +++ b/Documentation/devicetree/bindings/soc/renesas/renesas.yaml @@ -366,11 +366,13 @@ properties: - const: renesas,white-hawk-cpu - const: renesas,r8a779g0 - - description: R-Car V4H (R8A779G2) + - description: R-Car V4H (R8A779G[23]) items: - enum: - - renesas,white-hawk-single # White Hawk Single board (RTP8A779G2ASKB0F10SA001) - - const: renesas,r8a779g2 + - renesas,white-hawk-single # White Hawk Single board (RTP8A779G[23]ASKB0F10SA001) + - enum: + - renesas,r8a779g2 + - renesas,r8a779g3 - const: renesas,r8a779g0 - description: R-Car V4M (R8A779H0) From patchwork Mon Dec 2 16:30:09 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13890995 X-Patchwork-Delegate: geert@linux-m68k.org Received: from gauss.telenet-ops.be (gauss.telenet-ops.be [195.130.132.49]) (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 9564A1C2DDE for ; Mon, 2 Dec 2024 16:30:29 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.132.49 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733157031; cv=none; b=TZ4j8YshZzhPEHas8AwHWnjgwqX0h86F2OYmJd55nyrJ4K+YEmjNf1BgbgfDNOmet8wzRny9auWHmq85r1nz4hjE+IXN+yd1RbB5NDuiV/z+HjVqeyap87syigof3Opt7zm3uKpWQpG+E4xH65Jsv2F3i6eLPb/m5QwVtrmqXRo= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733157031; c=relaxed/simple; bh=fMorSY2Phkub/EUMYHb/ZGS4ZZLKSKvAWmraUt1MBis=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=s+And/BHBfdmDayin+wG3ZM5ty/UTNEX8twCTSVgulGAQbyaUlHbE6vBgCMQl47Vt2qR3fCx5l/8BGuDrfPALARkzNShsRaSj5GNxJPCTEDkI62PmM3xTCOVvZcyiKnWCzvlosaNQ6BHNnp+1cCNR4AAZZrO8kI9pyHKimTW66Y= 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.49 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 xavier.telenet-ops.be (xavier.telenet-ops.be [IPv6:2a02:1800:120:4::f00:14]) by gauss.telenet-ops.be (Postfix) with ESMTPS id 4Y28Qk3S1Qz4x79Q 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 xavier.telenet-ops.be with cmsmtp id jsWE2D00X1yjZj401sWEWe; 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-0007uJ-OA; Mon, 02 Dec 2024 17:30:14 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1tI9JO-007PnW-Le; 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 3/5] arm64: dts: renesas: Factor out White Hawk Single board support Date: Mon, 2 Dec 2024 17:30:09 +0100 Message-Id: <1661743b18a9ff9fac716f98a663b39fc8488d7e.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 Move the common parts for the Renesas White Hawk Single board to white-hawk-single.dtsi, to enable future reuse. Signed-off-by: Geert Uytterhoeven --- .../renesas/r8a779g2-white-hawk-single.dts | 62 +------------------ ...hawk-single.dts => white-hawk-single.dtsi} | 11 ++-- 2 files changed, 5 insertions(+), 68 deletions(-) copy arch/arm64/boot/dts/renesas/{r8a779g2-white-hawk-single.dts => white-hawk-single.dtsi} (78%) diff --git a/arch/arm64/boot/dts/renesas/r8a779g2-white-hawk-single.dts b/arch/arm64/boot/dts/renesas/r8a779g2-white-hawk-single.dts index 0062362b0ba06885..48befde389376bf2 100644 --- a/arch/arm64/boot/dts/renesas/r8a779g2-white-hawk-single.dts +++ b/arch/arm64/boot/dts/renesas/r8a779g2-white-hawk-single.dts @@ -7,70 +7,10 @@ /dts-v1/; #include "r8a779g2.dtsi" -#include "white-hawk-cpu-common.dtsi" -#include "white-hawk-common.dtsi" +#include "white-hawk-single.dtsi" / { model = "Renesas White Hawk Single board based on r8a779g2"; compatible = "renesas,white-hawk-single", "renesas,r8a779g2", "renesas,r8a779g0"; }; - -&hscif0 { - uart-has-rtscts; -}; - -&hscif0_pins { - groups = "hscif0_data", "hscif0_ctrl"; - function = "hscif0"; -}; - -&pfc { - tsn0_pins: tsn0 { - mux { - groups = "tsn0_link", "tsn0_mdio", "tsn0_rgmii", - "tsn0_txcrefclk"; - function = "tsn0"; - }; - - link { - groups = "tsn0_link"; - bias-disable; - }; - - mdio { - groups = "tsn0_mdio"; - drive-strength = <24>; - bias-disable; - }; - - rgmii { - groups = "tsn0_rgmii"; - drive-strength = <24>; - bias-disable; - }; - }; -}; - -&tsn0 { - pinctrl-0 = <&tsn0_pins>; - pinctrl-names = "default"; - phy-mode = "rgmii"; - phy-handle = <&phy3>; - status = "okay"; - - mdio { - #address-cells = <1>; - #size-cells = <0>; - - reset-gpios = <&gpio1 23 GPIO_ACTIVE_LOW>; - reset-post-delay-us = <4000>; - - phy3: ethernet-phy@0 { - compatible = "ethernet-phy-id002b.0980", - "ethernet-phy-ieee802.3-c22"; - reg = <0>; - interrupts-extended = <&gpio4 3 IRQ_TYPE_LEVEL_LOW>; - }; - }; -}; diff --git a/arch/arm64/boot/dts/renesas/r8a779g2-white-hawk-single.dts b/arch/arm64/boot/dts/renesas/white-hawk-single.dtsi similarity index 78% copy from arch/arm64/boot/dts/renesas/r8a779g2-white-hawk-single.dts copy to arch/arm64/boot/dts/renesas/white-hawk-single.dtsi index 0062362b0ba06885..20e8232f2f3234e2 100644 --- a/arch/arm64/boot/dts/renesas/r8a779g2-white-hawk-single.dts +++ b/arch/arm64/boot/dts/renesas/white-hawk-single.dtsi @@ -1,19 +1,16 @@ // SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) /* - * Device Tree Source for the R-Car V4H ES2.0 White Hawk Single board + * Device Tree Source for the White Hawk Single board * - * Copyright (C) 2023 Glider bv + * Copyright (C) 2023-2024 Glider bv */ -/dts-v1/; -#include "r8a779g2.dtsi" #include "white-hawk-cpu-common.dtsi" #include "white-hawk-common.dtsi" / { - model = "Renesas White Hawk Single board based on r8a779g2"; - compatible = "renesas,white-hawk-single", "renesas,r8a779g2", - "renesas,r8a779g0"; + model = "Renesas White Hawk Single board"; + compatible = "renesas,white-hawk-single"; }; &hscif0 { 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"; +}; From patchwork Mon Dec 2 16:30:11 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Geert Uytterhoeven X-Patchwork-Id: 13890994 X-Patchwork-Delegate: geert@linux-m68k.org Received: from baptiste.telenet-ops.be (baptiste.telenet-ops.be [195.130.132.51]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id B54C91AF0B2 for ; Mon, 2 Dec 2024 16:30:22 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=195.130.132.51 ARC-Seal: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733157026; cv=none; b=lDS8xeT9bRKdb3FVw9GRKD1kqwRbTdsJSY8tpJNUpDdAYJUdxngxqUjfbeWSXQMtsCPTkPSYp74+uiJ0qOUfPmc0shD5iMaiEOgN+mMlgBk/ZWymsZACUFGxwkb6CeRb7t6PC8MCf4Pd5tmufD5hAYcs6hfXFGEPeP+2+Yc+ogE= ARC-Message-Signature: i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1733157026; c=relaxed/simple; bh=I8iHjxGgTdPnhzeNO0K62aarBXPBsI3IAmHasDm2JjU=; h=From:To:Cc:Subject:Date:Message-Id:In-Reply-To:References: MIME-Version; b=STED/FHwZm3v6DqN1+bJ6mqY/8rUU5t/UEI7s0xVc7qRXgJRuS/Vvc6i/lX3vQMF2i89AI4VsoF0NWXmqSaWhPWjuGfJvHq6QapZnMAbG1O/KNHpxTInXUr2KJospeeXO2vTvpU1ZiDwNhnC1/37Wltj6RBahKabQ42vJLymIpQ= 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.51 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 ramsan.of.borg ([IPv6:2a02:1810:ac12:ed80:17fe:4001:68cd:b1ae]) by baptiste.telenet-ops.be with cmsmtp id jsWE2D00Q1yjZj401sWEo5; 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-0007uS-QY; Mon, 02 Dec 2024 17:30:14 +0100 Received: from geert by rox.of.borg with local (Exim 4.95) (envelope-from ) id 1tI9JO-007Png-Nv; 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 5/5] arm64: dts: renesas: r8a779g3: Add White Hawk Single support Date: Mon, 2 Dec 2024 17:30:11 +0100 Message-Id: <66d0fe78c393e6df2775287c730464e91732ec56.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 The White Hawk Single board with R-Car V4H ES3.0 (R8A779G3) uses an updated version of the R-Car V4H (R8A779G0) SoC. For now, there are no visible differences compared to the variant equipped with an R-Car V4H ES2.0 (R8A779G2) SoC. Signed-off-by: Geert Uytterhoeven --- arch/arm64/boot/dts/renesas/Makefile | 2 ++ .../dts/renesas/r8a779g3-white-hawk-single.dts | 16 ++++++++++++++++ 2 files changed, 18 insertions(+) create mode 100644 arch/arm64/boot/dts/renesas/r8a779g3-white-hawk-single.dts diff --git a/arch/arm64/boot/dts/renesas/Makefile b/arch/arm64/boot/dts/renesas/Makefile index 97228a3cb99c163d..df9ea5b2e20818f4 100644 --- a/arch/arm64/boot/dts/renesas/Makefile +++ b/arch/arm64/boot/dts/renesas/Makefile @@ -92,6 +92,8 @@ dtb-$(CONFIG_ARCH_R8A779G0) += r8a779g0-white-hawk-ard-audio-da7212.dtb dtb-$(CONFIG_ARCH_R8A779G0) += r8a779g2-white-hawk-single.dtb +dtb-$(CONFIG_ARCH_R8A779G0) += r8a779g3-white-hawk-single.dtb + dtb-$(CONFIG_ARCH_R8A779H0) += r8a779h0-gray-hawk-single.dtb dtb-$(CONFIG_ARCH_R8A77951) += r8a779m1-salvator-xs.dtb diff --git a/arch/arm64/boot/dts/renesas/r8a779g3-white-hawk-single.dts b/arch/arm64/boot/dts/renesas/r8a779g3-white-hawk-single.dts new file mode 100644 index 0000000000000000..cd466d858854bf92 --- /dev/null +++ b/arch/arm64/boot/dts/renesas/r8a779g3-white-hawk-single.dts @@ -0,0 +1,16 @@ +// SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +/* + * Device Tree Source for the R-Car V4H ES3.0 White Hawk Single board + * + * Copyright (C) 2024 Glider bv + */ + +/dts-v1/; +#include "r8a779g3.dtsi" +#include "white-hawk-single.dtsi" + +/ { + model = "Renesas White Hawk Single board based on r8a779g3"; + compatible = "renesas,white-hawk-single", "renesas,r8a779g3", + "renesas,r8a779g0"; +};