f07e572f64
bcm2708: boot tested on RPi B+ v1.2 bcm2709: boot tested on RPi 3B v1.2 and RPi 4B v1.1 4G bcm2710: boot tested on RPi 3B v1.2 bcm2711: boot tested on RPi 4B v1.1 4G Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
43 lines
1.3 KiB
Diff
43 lines
1.3 KiB
Diff
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;
|
|
};
|
|
};
|
|
};
|