Message ID | 20240826144352.3026980-7-niklas.soderlund+renesas@ragnatech.se (mailing list archive) |
---|---|
State | New |
Headers | show |
Series | rcar-isp: Add support for R-Car V4M | expand |
Hi Niklas, Thank you for the patch. On Mon, Aug 26, 2024 at 04:43:52PM +0200, Niklas Söderlund wrote: > The usage of the V4M CSISP bindings where merged before the bindings > where approved. At that time the family fallback compatible where not > part of the bindings, add them. > > Fixes: 2bb78d9fb7c9 ("arm64: dts: renesas: r8a779h0: Add video capture nodes") > Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> Reviewed-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com> > --- > * Changes since v1 > - New in v2. > --- > arch/arm64/boot/dts/renesas/r8a779h0.dtsi | 6 ++++-- > 1 file changed, 4 insertions(+), 2 deletions(-) > > diff --git a/arch/arm64/boot/dts/renesas/r8a779h0.dtsi b/arch/arm64/boot/dts/renesas/r8a779h0.dtsi > index 28ca59e735e5..12d8be3fd579 100644 > --- a/arch/arm64/boot/dts/renesas/r8a779h0.dtsi > +++ b/arch/arm64/boot/dts/renesas/r8a779h0.dtsi > @@ -1829,7 +1829,8 @@ csi41isp1: endpoint { > }; > > isp0: isp@fed00000 { > - compatible = "renesas,r8a779h0-isp"; > + compatible = "renesas,r8a779h0-isp", > + "renesas,rcar-gen4-isp"; > reg = <0 0xfed00000 0 0x10000>; > interrupts = <GIC_SPI 473 IRQ_TYPE_LEVEL_LOW>; > clocks = <&cpg CPG_MOD 612>; > @@ -1912,7 +1913,8 @@ isp0vin07: endpoint { > }; > > isp1: isp@fed20000 { > - compatible = "renesas,r8a779h0-isp"; > + compatible = "renesas,r8a779h0-isp", > + "renesas,rcar-gen4-isp"; > reg = <0 0xfed20000 0 0x10000>; > interrupts = <GIC_SPI 474 IRQ_TYPE_LEVEL_LOW>; > clocks = <&cpg CPG_MOD 613>;
On Mon, Aug 26, 2024 at 4:44 PM Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> wrote: > The usage of the V4M CSISP bindings where merged before the bindings > where approved. At that time the family fallback compatible where not > part of the bindings, add them. > > Fixes: 2bb78d9fb7c9 ("arm64: dts: renesas: r8a779h0: Add video capture nodes") > Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> > --- > * Changes since v1 > - New in v2. Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be> Gr{oetje,eeting}s, Geert
diff --git a/arch/arm64/boot/dts/renesas/r8a779h0.dtsi b/arch/arm64/boot/dts/renesas/r8a779h0.dtsi index 28ca59e735e5..12d8be3fd579 100644 --- a/arch/arm64/boot/dts/renesas/r8a779h0.dtsi +++ b/arch/arm64/boot/dts/renesas/r8a779h0.dtsi @@ -1829,7 +1829,8 @@ csi41isp1: endpoint { }; isp0: isp@fed00000 { - compatible = "renesas,r8a779h0-isp"; + compatible = "renesas,r8a779h0-isp", + "renesas,rcar-gen4-isp"; reg = <0 0xfed00000 0 0x10000>; interrupts = <GIC_SPI 473 IRQ_TYPE_LEVEL_LOW>; clocks = <&cpg CPG_MOD 612>; @@ -1912,7 +1913,8 @@ isp0vin07: endpoint { }; isp1: isp@fed20000 { - compatible = "renesas,r8a779h0-isp"; + compatible = "renesas,r8a779h0-isp", + "renesas,rcar-gen4-isp"; reg = <0 0xfed20000 0 0x10000>; interrupts = <GIC_SPI 474 IRQ_TYPE_LEVEL_LOW>; clocks = <&cpg CPG_MOD 613>;
The usage of the V4M CSISP bindings where merged before the bindings where approved. At that time the family fallback compatible where not part of the bindings, add them. Fixes: 2bb78d9fb7c9 ("arm64: dts: renesas: r8a779h0: Add video capture nodes") Signed-off-by: Niklas Söderlund <niklas.soderlund+renesas@ragnatech.se> --- * Changes since v1 - New in v2. --- arch/arm64/boot/dts/renesas/r8a779h0.dtsi | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)