Message ID | 20250326143945.82142-1-prabhakar.mahadev-lad.rj@bp.renesas.com |
---|---|
Headers | show |
Series | Add support for Renesas RZ/V2N SoC and EVK | expand |
Hi Rob, On Wed, Mar 26, 2025 at 7:11 PM Rob Herring (Arm) <robh@kernel.org> wrote: > > > On Wed, 26 Mar 2025 14:39:30 +0000, Prabhakar wrote: > > From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> > > > > This patch series adds initial support for the Renesas RZ/V2N (R9A09G056) > > SoC and its evaluation board (EVK). The Renesas RZ/V2N is a vision AI > > microprocessor (MPU) designed for power-efficient AI inference and > > real-time vision processing. It features Renesas' proprietary AI > > accelerator (DRP-AI3), delivering up to 15 TOPS AI performance, making > > it ideal for applications such as Driver Monitoring Systems (DMS), > > industrial monitoring cameras, and mobile robots. > > > > Key features of the RZ/V2N SoC: > > Processing Power: > > - Quad Arm Cortex-A55 cores at 1.8GHz for high-performance computing > > - Single Arm Cortex-M33 core at 200MHz for real-time processing > > - 1.5MB on-chip SRAM for fast data access > > - LPDDR4/LPDDR4X memory interface for high-speed RAM access > > > > AI and Vision Processing: > > - DRP-AI3 accelerator for low-power, high-efficiency AI inference > > - Arm Mali-C55 ISP (optional) for image signal processing > > - Dual MIPI CSI-2 camera interfaces for multi-camera support > > > > High-Speed Interfaces: > > - PCIe Gen3 (2-lane) 1ch for external device expansion > > - USB 3.2 (Gen2) 1ch (Host-only) for high-speed data transfer > > - USB 2.0 (Host/Function) 1ch for legacy connectivity > > - Gigabit Ethernet (2 channels) for network communication > > > > Industrial and Automotive Features: > > - 6x CAN FD channels for automotive and industrial networking > > - 24-channel ADC for sensor data acquisition > > > > LINK: https://tinyurl.com/renesas-rz-v2n-soc > > > > The series introduces: > > - Device tree bindings for various subsystems (SYS, SCIF, SDHI, CPG, pinctrl). > > - RZ/V2N SoC identification support. > > - Clock and pinctrl driver updates for RZ/V2N. > > - Initial DTSI and device tree for the RZ/V2N SoC and EVK. > > - Enabling RZ/V2N SoC support in `arm64 defconfig`. > > > > These patches have been tested on the RZ/V2N EVK with v6.14, > > logs can be found here https://pastebin.com/8i3jgVby > > > > Cheers, > > Prabhakar > > > > Lad Prabhakar (15): > > dt-bindings: soc: renesas: Document Renesas RZ/V2N SoC variants > > dt-bindings: soc: renesas: Document RZ/V2N EVK board > > soc: renesas: Add config option for RZ/V2N (R9A09G056) SoC > > dt-bindings: soc: renesas: Document SYS for RZ/V2N SoC > > soc: renesas: sysc: Add SoC identification for RZ/V2N SoC > > dt-bindings: serial: renesas: Document RZ/V2N SCIF > > dt-bindings: mmc: renesas,sdhi: Document RZ/V2N support > > dt-bindings: clock: renesas: Document RZ/V2N SoC CPG > > clk: renesas: rzv2h-cpg: Sort compatible list based on SoC part number > > clk: renesas: rzv2h: Add support for RZ/V2N SoC > > dt-bindings: pinctrl: renesas: Document RZ/V2N SoC > > pinctrl: renesas: rzg2l: Add support for RZ/V2N SoC > > arm64: dts: renesas: Add initial SoC DTSI for RZ/V2N > > arm64: dts: renesas: Add initial device tree for RZ/V2N EVK > > arm64: defconfig: Enable Renesas RZ/V2N SoC > > > > .../bindings/clock/renesas,rzv2h-cpg.yaml | 5 +- > > .../devicetree/bindings/mmc/renesas,sdhi.yaml | 4 +- > > .../pinctrl/renesas,rzg2l-pinctrl.yaml | 2 + > > .../bindings/serial/renesas,scif.yaml | 1 + > > .../soc/renesas/renesas,r9a09g057-sys.yaml | 1 + > > .../bindings/soc/renesas/renesas.yaml | 15 + > > arch/arm64/boot/dts/renesas/Makefile | 2 + > > arch/arm64/boot/dts/renesas/r9a09g056.dtsi | 264 ++++++++++++++++++ > > .../dts/renesas/r9a09g056n48-rzv2n-evk.dts | 115 ++++++++ > > arch/arm64/configs/defconfig | 1 + > > drivers/clk/renesas/Kconfig | 5 + > > drivers/clk/renesas/Makefile | 1 + > > drivers/clk/renesas/r9a09g056-cpg.c | 152 ++++++++++ > > drivers/clk/renesas/rzv2h-cpg.c | 18 +- > > drivers/clk/renesas/rzv2h-cpg.h | 1 + > > drivers/pinctrl/renesas/Kconfig | 1 + > > drivers/pinctrl/renesas/pinctrl-rzg2l.c | 36 ++- > > drivers/soc/renesas/Kconfig | 10 + > > drivers/soc/renesas/Makefile | 1 + > > drivers/soc/renesas/r9a09g056-sys.c | 107 +++++++ > > drivers/soc/renesas/rz-sysc.c | 3 + > > drivers/soc/renesas/rz-sysc.h | 1 + > > .../dt-bindings/clock/renesas,r9a09g056-cpg.h | 24 ++ > > .../pinctrl/renesas,r9a09g056-pinctrl.h | 30 ++ > > 24 files changed, 790 insertions(+), 10 deletions(-) > > create mode 100644 arch/arm64/boot/dts/renesas/r9a09g056.dtsi > > create mode 100644 arch/arm64/boot/dts/renesas/r9a09g056n48-rzv2n-evk.dts > > create mode 100644 drivers/clk/renesas/r9a09g056-cpg.c > > create mode 100644 drivers/soc/renesas/r9a09g056-sys.c > > create mode 100644 include/dt-bindings/clock/renesas,r9a09g056-cpg.h > > create mode 100644 include/dt-bindings/pinctrl/renesas,r9a09g056-pinctrl.h > > > > -- > > 2.49.0 > > > > > > > > > My bot found new DTB warnings on the .dts files added or changed in this > series. > > Some warnings may be from an existing SoC .dtsi. Or perhaps the warnings > are fixed by another series. Ultimately, it is up to the platform > maintainer whether these warnings are acceptable or not. No need to reply > unless the platform maintainer has comments. > > If you already ran DT checks and didn't see these error(s), then > make sure dt-schema is up to date: > > pip3 install dtschema --upgrade > > > This patch series was applied (using b4) to base: > Base: attempting to guess base-commit... > Base: tags/next-20250326 (best guess, 15/18 blobs matched) > > If this is not the correct base, please add 'base-commit' tag > (or use b4 which does this automatically) > > New warnings running 'make CHECK_DTBS=y for arch/arm64/boot/dts/renesas/' for 20250326143945.82142-1-prabhakar.mahadev-lad.rj@bp.renesas.com: > > arch/arm64/boot/dts/renesas/r9a09g056n48-rzv2n-evk.dtb: pinctrl@10410000: 'interrupt-controller' is a required property > from schema $id: http://devicetree.org/schemas/pinctrl/renesas,rzg2l-pinctrl.yaml# > arch/arm64/boot/dts/renesas/r9a09g056n48-rzv2n-evk.dtb: pinctrl@10410000: '#interrupt-cells' is a required property > from schema $id: http://devicetree.org/schemas/pinctrl/renesas,rzg2l-pinctrl.yaml# > > As mentioned in patch 13/15 [0] the above warnings are expected this is because as part of the initial support, the ICU has not been added yet. The interrupt-related properties will be added to the pinctrl node along with ICU support. [0] https://lore.kernel.org/all/20250326143945.82142-14-prabhakar.mahadev-lad.rj@bp.renesas.com/ Cheers, Prabhakar
Hi Krzysztof, On Thu, 27 Mar 2025 at 08:43, Krzysztof Kozlowski <krzk@kernel.org> wrote: > On 26/03/2025 15:39, Prabhakar wrote: > > From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> > > > > Enable support for the Renesas RZ/V2N (R9A09G056) SoC in the ARM64 > > defconfig. > > > > Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> > > --- > > arch/arm64/configs/defconfig | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig > > index 11e7d0ad8656..c7b41f86c128 100644 > > --- a/arch/arm64/configs/defconfig > > +++ b/arch/arm64/configs/defconfig > > @@ -1483,6 +1483,7 @@ CONFIG_ARCH_R9A07G054=y > > CONFIG_ARCH_R9A08G045=y > > CONFIG_ARCH_R9A09G011=y > > CONFIG_ARCH_R9A09G047=y > > +CONFIG_ARCH_R9A09G056=y > > So the pattern will keep growing and none of you will ever bother to fix > it, because you have your patchset to throw over the wall. Yes, the pattern will keep on growing. Just like the minimum kernel size will keep on growing, especially if you can no longer compile a kernel without support for SoCs you do not intend to run the kernel on. Not everyone has GiBs of RAM to spare... Gr{oetje,eeting}s, Geert
> So the pattern will keep growing and none of you will ever bother to fix > it, because you have your patchset to throw over the wall. I dare to say us Renesas people are not too bad at fixing stuff. In this particular case, I don't see a wide consensus that the above stuff is considered broken? Please point me to it if there is such. We are happy to discuss.
On 27/03/2025 10:08, Geert Uytterhoeven wrote: > On Thu, 27 Mar 2025 at 09:55, Geert Uytterhoeven <geert@linux-m68k.org> wrote: >> On Thu, 27 Mar 2025 at 08:43, Krzysztof Kozlowski <krzk@kernel.org> wrote: >>> On 26/03/2025 15:39, Prabhakar wrote: >>>> From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> >>>> >>>> Enable support for the Renesas RZ/V2N (R9A09G056) SoC in the ARM64 >>>> defconfig. >>>> >>>> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> >>>> --- >>>> arch/arm64/configs/defconfig | 1 + >>>> 1 file changed, 1 insertion(+) >>>> >>>> diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig >>>> index 11e7d0ad8656..c7b41f86c128 100644 >>>> --- a/arch/arm64/configs/defconfig >>>> +++ b/arch/arm64/configs/defconfig >>>> @@ -1483,6 +1483,7 @@ CONFIG_ARCH_R9A07G054=y >>>> CONFIG_ARCH_R9A08G045=y >>>> CONFIG_ARCH_R9A09G011=y >>>> CONFIG_ARCH_R9A09G047=y >>>> +CONFIG_ARCH_R9A09G056=y >>> >>> So the pattern will keep growing and none of you will ever bother to fix >>> it, because you have your patchset to throw over the wall. >> >> Yes, the pattern will keep on growing. >> Just like the minimum kernel size will keep on growing, especially if >> you can no longer compile a kernel without support for SoCs you do not >> intend to run the kernel on. Not everyone has GiBs of RAM to spare... > > <pling! :-> > > /me remembers > https://lore.kernel.org/all/6323eb7a-03e9-4678-ac4f-f90052d0aace@kernel.org/ Exactly that discussion and that outcome. Best regards, Krzysztof
On 27/03/2025 13:27, Wolfram Sang wrote: > >> So the pattern will keep growing and none of you will ever bother to fix >> it, because you have your patchset to throw over the wall. > > I dare to say us Renesas people are not too bad at fixing stuff. In this > particular case, I don't see a wide consensus that the above stuff is > considered broken? Please point me to it if there is such. We are happy > to discuss. > You did not object to last discussion about this (a month ago) - neither to my comments nor to resolution - so this patchset repeating the same pattern from the same folks while ignoring previous talk is contradicting "not too bad at fixing stuff". Although of course no particular bug is here to fix - I should have used "change". Anyway, it was long time ago consensus that arm64 does not receive top-level ARCH_XXX per each SoC. And this is what is being added here in this patchset. Best regards, Krzysztof
> You did not object to last discussion about this (a month ago) - neither > to my comments nor to resolution - so this patchset repeating the same Because I cannot follow every Renesas patch series there is. You are long enough around to know that large companies have different entities, groups whatsoever. It is quite a challenge to streamline this via one group, we need to share work. We do try hard, though, and have a ARM/RISC-V/RENESAS ARCHITECTURE maintainer. Geert does a *hell of a job* getting all these submission into shape, and he surely does not accept code thrown over the wall. And geez, the patch series was just sent yesterday, you didn't give us even time to raise the issue internally. > pattern from the same folks while ignoring previous talk is > contradicting "not too bad at fixing stuff". First, being a maintainer myself, I do understand the frustration of patch review not being honored. I can also agree that this series did not work out perfectly. But that does not mean that we don't care, in general. Despite all imperfection and possibly different opinions, we try hard to be a good citizen and spend considerable time on doing things right. Accusing us of throwing just "code over the wall" because there is an issue somewhere which hasn't been worked on in one month is plain unfair. That all being said, we will fix it eventually.
On 27/03/2025 17:44, Wolfram Sang wrote: > >> You did not object to last discussion about this (a month ago) - neither >> to my comments nor to resolution - so this patchset repeating the same > > Because I cannot follow every Renesas patch series there is. You are > long enough around to know that large companies have different entities, > groups whatsoever. It is quite a challenge to streamline this via one > group, we need to share work. We do try hard, though, and have a > ARM/RISC-V/RENESAS ARCHITECTURE maintainer. Geert does a *hell of a job* > getting all these submission into shape, and he surely does not accept > code thrown over the wall. And geez, the patch series was just sent > yesterday, you didn't give us even time to raise the issue internally. > >> pattern from the same folks while ignoring previous talk is >> contradicting "not too bad at fixing stuff". > > First, being a maintainer myself, I do understand the frustration of > patch review not being honored. I can also agree that this series did > not work out perfectly. But that does not mean that we don't care, in > general. Despite all imperfection and possibly different opinions, we > try hard to be a good citizen and spend considerable time on doing > things right. Accusing us of throwing just "code over the wall" because > there is an issue somewhere which hasn't been worked on in one month is > plain unfair. We do not speak about same things. I speak of review being ignored for multiple revisions in one patchset and then another patchset sending exactly the same pattern. Previous patchset receive my review about this. Thierry ignored it and send v2 with same code. Then v3 with exactly the same code, but with a remark in cover letter "but such a change is out of scope for this patchset." And now Pabhakar sends the same pattern. Each of these contributors were not changing here anything, it's like not their job. It looks like this will never get fixed, because each person wants to just get their stuff merged, so let's ignore the reviewers comments. That's not how upstreaming works - you need to change some things, fix some stuff, add more code, if you want to add your independent features. That is how upstream was always. The easiest example is - one new driver for some completely new feature is fine. Second new driver for similar new feature receives feedback: please create subsystem to have common set/handling of that new thingies. Best regards, Krzysztof
Hi Krzysztof, > We do not speak about same things. I speak of review being ignored for > multiple revisions in one patchset and then another patchset sending > exactly the same pattern. True, we are talking about two different things... > Each of these contributors were not changing here anything, it's like > not their job. It looks like this will never get fixed, because each > person wants to just get their stuff merged, so let's ignore the > reviewers comments. ... this is the technical part where you are correct. I am not arguing against it and the issue is currently being worked on as I write this mail. Then, there is the communicative part which got me. A response like "NAK, I am not applying this until you finally fix the issue. And I am getting angry for being ignored the n-th time" is totally fine and clear enough. We can escalate that internally. But generalizing Renesas and ignoring that there are individual people there, trying to fix way more issues than this particular one, is what I percieved from your responses and what I considered above the line. And yes, I am aware that you are also doing a hell of a job going through all these DT and binding patches which I think are difficult to review. For me, we are entering the space where we can leave it like this and maybe discuss details over a drink at the next conference. You are invited then! Happy hacking, Wolfram
Hi Krzysztof, Thank you for the review. On Thu, Mar 27, 2025 at 7:48 AM Krzysztof Kozlowski <krzk@kernel.org> wrote: > > On 26/03/2025 15:39, Prabhakar wrote: > > +#define RZV2N_P3 3 > > +#define RZV2N_P4 4 > > +#define RZV2N_P5 5 > > +#define RZV2N_P6 6 > > +#define RZV2N_P7 7 > > +#define RZV2N_P8 8 > > +#define RZV2N_P9 9 > > +#define RZV2N_PA 10 > > +#define RZV2N_PB 11 > > Same comments as before - not useful to repeat the name. > > It is the third patch in this patchset, which receives exactly the same > comments as given before. > > I expect that given feedback somehow stays within group of contributions > or company in form of internal knowledge. Or just read other people's > patchset to learn from them and do not make the same mistakes. > For the RZ/V2H and RZ/G3E SoC similar changes were accepted, to keep consistency with these SoCs this header file was added. [0] https://lore.kernel.org/all/20241218192202.GA2184154-robh@kernel.org/ > > + > > +#define RZV2N_PORT_PINMUX(b, p, f) RZG2L_PORT_PINMUX(RZV2N_P##b, p, f) > > +#define RZV2N_GPIO(port, pin) RZG2L_GPIO(RZV2N_P##port, pin) > > Not a binding. If you claim otherwise, point me to the line of driver > code using this binding. > Note, since OF data of V2H was mostly reused in the pinctrl driver due to similarities there wasn't a need to include this header file in the driver code. My intention here was to use this header file in DTS/I to keep similarities. Maybe I'll create a r9a09g056_variable_pin_cfg{} so that this header file gets included in the driver. Cheers, Prabhakar
Hi Krzysztof, Thank you for the review. On Thu, Mar 27, 2025 at 7:43 AM Krzysztof Kozlowski <krzk@kernel.org> wrote: > > On 26/03/2025 15:39, Prabhakar wrote: > > From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> > > > > Enable support for the Renesas RZ/V2N (R9A09G056) SoC in the ARM64 > > defconfig. > > > > Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> > > --- > > arch/arm64/configs/defconfig | 1 + > > 1 file changed, 1 insertion(+) > > > > diff --git a/arch/arm64/configs/defconfig b/arch/arm64/configs/defconfig > > index 11e7d0ad8656..c7b41f86c128 100644 > > --- a/arch/arm64/configs/defconfig > > +++ b/arch/arm64/configs/defconfig > > @@ -1483,6 +1483,7 @@ CONFIG_ARCH_R9A07G054=y > > CONFIG_ARCH_R9A08G045=y > > CONFIG_ARCH_R9A09G011=y > > CONFIG_ARCH_R9A09G047=y > > +CONFIG_ARCH_R9A09G056=y > > So the pattern will keep growing and none of you will ever bother to fix > it, because you have your patchset to throw over the wall. > We are working on this internally, upon approval this change won't be needed anymore for the new Renesas SoCs. Cheers, Prabhakar
On Wed, 26 Mar 2025 14:39:37 +0000, Prabhakar wrote: > From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> > > Add SDHI bindings for the Renesas RZ/V2N (a.k.a R9A09G056) SoC. Use > `renesas,sdhi-r9a09g057` as a fallback since the SD/MMC block on > RZ/V2N is identical to the one on RZ/V2H(P), allowing reuse of the > existing driver without modifications. > > Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> > --- > Documentation/devicetree/bindings/mmc/renesas,sdhi.yaml | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > Acked-by: Rob Herring (Arm) <robh@kernel.org>
From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com> This patch series adds initial support for the Renesas RZ/V2N (R9A09G056) SoC and its evaluation board (EVK). The Renesas RZ/V2N is a vision AI microprocessor (MPU) designed for power-efficient AI inference and real-time vision processing. It features Renesas' proprietary AI accelerator (DRP-AI3), delivering up to 15 TOPS AI performance, making it ideal for applications such as Driver Monitoring Systems (DMS), industrial monitoring cameras, and mobile robots. Key features of the RZ/V2N SoC: Processing Power: - Quad Arm Cortex-A55 cores at 1.8GHz for high-performance computing - Single Arm Cortex-M33 core at 200MHz for real-time processing - 1.5MB on-chip SRAM for fast data access - LPDDR4/LPDDR4X memory interface for high-speed RAM access AI and Vision Processing: - DRP-AI3 accelerator for low-power, high-efficiency AI inference - Arm Mali-C55 ISP (optional) for image signal processing - Dual MIPI CSI-2 camera interfaces for multi-camera support High-Speed Interfaces: - PCIe Gen3 (2-lane) 1ch for external device expansion - USB 3.2 (Gen2) 1ch (Host-only) for high-speed data transfer - USB 2.0 (Host/Function) 1ch for legacy connectivity - Gigabit Ethernet (2 channels) for network communication Industrial and Automotive Features: - 6x CAN FD channels for automotive and industrial networking - 24-channel ADC for sensor data acquisition LINK: https://tinyurl.com/renesas-rz-v2n-soc The series introduces: - Device tree bindings for various subsystems (SYS, SCIF, SDHI, CPG, pinctrl). - RZ/V2N SoC identification support. - Clock and pinctrl driver updates for RZ/V2N. - Initial DTSI and device tree for the RZ/V2N SoC and EVK. - Enabling RZ/V2N SoC support in `arm64 defconfig`. These patches have been tested on the RZ/V2N EVK with v6.14, logs can be found here https://pastebin.com/8i3jgVby Cheers, Prabhakar Lad Prabhakar (15): dt-bindings: soc: renesas: Document Renesas RZ/V2N SoC variants dt-bindings: soc: renesas: Document RZ/V2N EVK board soc: renesas: Add config option for RZ/V2N (R9A09G056) SoC dt-bindings: soc: renesas: Document SYS for RZ/V2N SoC soc: renesas: sysc: Add SoC identification for RZ/V2N SoC dt-bindings: serial: renesas: Document RZ/V2N SCIF dt-bindings: mmc: renesas,sdhi: Document RZ/V2N support dt-bindings: clock: renesas: Document RZ/V2N SoC CPG clk: renesas: rzv2h-cpg: Sort compatible list based on SoC part number clk: renesas: rzv2h: Add support for RZ/V2N SoC dt-bindings: pinctrl: renesas: Document RZ/V2N SoC pinctrl: renesas: rzg2l: Add support for RZ/V2N SoC arm64: dts: renesas: Add initial SoC DTSI for RZ/V2N arm64: dts: renesas: Add initial device tree for RZ/V2N EVK arm64: defconfig: Enable Renesas RZ/V2N SoC .../bindings/clock/renesas,rzv2h-cpg.yaml | 5 +- .../devicetree/bindings/mmc/renesas,sdhi.yaml | 4 +- .../pinctrl/renesas,rzg2l-pinctrl.yaml | 2 + .../bindings/serial/renesas,scif.yaml | 1 + .../soc/renesas/renesas,r9a09g057-sys.yaml | 1 + .../bindings/soc/renesas/renesas.yaml | 15 + arch/arm64/boot/dts/renesas/Makefile | 2 + arch/arm64/boot/dts/renesas/r9a09g056.dtsi | 264 ++++++++++++++++++ .../dts/renesas/r9a09g056n48-rzv2n-evk.dts | 115 ++++++++ arch/arm64/configs/defconfig | 1 + drivers/clk/renesas/Kconfig | 5 + drivers/clk/renesas/Makefile | 1 + drivers/clk/renesas/r9a09g056-cpg.c | 152 ++++++++++ drivers/clk/renesas/rzv2h-cpg.c | 18 +- drivers/clk/renesas/rzv2h-cpg.h | 1 + drivers/pinctrl/renesas/Kconfig | 1 + drivers/pinctrl/renesas/pinctrl-rzg2l.c | 36 ++- drivers/soc/renesas/Kconfig | 10 + drivers/soc/renesas/Makefile | 1 + drivers/soc/renesas/r9a09g056-sys.c | 107 +++++++ drivers/soc/renesas/rz-sysc.c | 3 + drivers/soc/renesas/rz-sysc.h | 1 + .../dt-bindings/clock/renesas,r9a09g056-cpg.h | 24 ++ .../pinctrl/renesas,r9a09g056-pinctrl.h | 30 ++ 24 files changed, 790 insertions(+), 10 deletions(-) create mode 100644 arch/arm64/boot/dts/renesas/r9a09g056.dtsi create mode 100644 arch/arm64/boot/dts/renesas/r9a09g056n48-rzv2n-evk.dts create mode 100644 drivers/clk/renesas/r9a09g056-cpg.c create mode 100644 drivers/soc/renesas/r9a09g056-sys.c create mode 100644 include/dt-bindings/clock/renesas,r9a09g056-cpg.h create mode 100644 include/dt-bindings/pinctrl/renesas,r9a09g056-pinctrl.h