diff options
Diffstat (limited to 'target/linux/bcm27xx/patches-5.4/950-0864-dtoverlays-Fixup-imx219-and-imx477-overlays-due-to-p.patch')
-rw-r--r-- | target/linux/bcm27xx/patches-5.4/950-0864-dtoverlays-Fixup-imx219-and-imx477-overlays-due-to-p.patch | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/target/linux/bcm27xx/patches-5.4/950-0864-dtoverlays-Fixup-imx219-and-imx477-overlays-due-to-p.patch b/target/linux/bcm27xx/patches-5.4/950-0864-dtoverlays-Fixup-imx219-and-imx477-overlays-due-to-p.patch new file mode 100644 index 0000000000..44ecd49f16 --- /dev/null +++ b/target/linux/bcm27xx/patches-5.4/950-0864-dtoverlays-Fixup-imx219-and-imx477-overlays-due-to-p.patch @@ -0,0 +1,42 @@ +From ae906e8cc5152d171ff4d0bf7e668b941a6b1a06 Mon Sep 17 00:00:00 2001 +From: Dave Stevenson <dave.stevenson@raspberrypi.com> +Date: Wed, 1 Jul 2020 18:28:10 +0100 +Subject: [PATCH] dtoverlays: Fixup imx219 and imx477 overlays due to + parsing failures + +imx219 overlay failed to detect as CSI2 as it was missing any +of the CSI2 properties on the Unicam end of the configuration. +Clean up imx477 as well to include all the relevant properties. + +Fixes: "dt/dtoverlays: Fix up base DT and overlays for updated Unicam driver" + +Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com> +--- + arch/arm/boot/dts/overlays/imx219-overlay.dts | 3 +++ + arch/arm/boot/dts/overlays/imx477-overlay.dts | 2 ++ + 2 files changed, 5 insertions(+) + +--- a/arch/arm/boot/dts/overlays/imx219-overlay.dts ++++ b/arch/arm/boot/dts/overlays/imx219-overlay.dts +@@ -49,6 +49,9 @@ + port { + csi1_ep: endpoint { + remote-endpoint = <&imx219_0>; ++ clock-lanes = <0>; ++ data-lanes = <1 2>; ++ clock-noncontinuous; + }; + }; + }; +--- a/arch/arm/boot/dts/overlays/imx477-overlay.dts ++++ b/arch/arm/boot/dts/overlays/imx477-overlay.dts +@@ -49,7 +49,9 @@ + port { + csi1_ep: endpoint { + remote-endpoint = <&imx477_0>; ++ clock-lanes = <0>; + data-lanes = <1 2>; ++ clock-noncontinuous; + }; + }; + }; |