mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-25 13:49:26 +00:00
3a5584e0df
Adds latest 6.6 patches from the Raspberry Pi repository. These patches were generated from: https://github.com/raspberrypi/linux/commits/rpi-6.6.y/ With the following command: git format-patch -N v6.6.67..HEAD (HEAD -> 811ff707533bcd67cdcd368bbd46223082009b12) Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com> (cherry picked from commit 692205305db14deeff1a2dc4a6d7f87e19fc418b)
31 lines
1.2 KiB
Diff
31 lines
1.2 KiB
Diff
From eafaa6015fc0ed676f6115905e7c4145d23f5b7d Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Tue, 26 Nov 2024 15:53:24 +0000
|
|
Subject: [PATCH] dts: bcm2712-rpi: For CM5IO, i2c_csi_dsi needs to be
|
|
CAM/DISP1
|
|
|
|
Noted setting up a display on CM5IO. Add
|
|
"dtoverlay=vc4-kms-dsi-ili7881-7inch" fails as it tries to
|
|
find the regulator/backlight/touch on i2c_csi_dsi, which pointed
|
|
at i2c_csi_dsi0 by default.
|
|
|
|
Adding the dsi0 override updated to point at dsi0, and pointed
|
|
the i2c at i2c_csi_dsi0, which all works.
|
|
|
|
The default with i2c_csi_dsi needs to be consistent in using
|
|
dsi1/csi1 and the corresponding i2c interface (i2c_csi_dsi1).
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
arch/arm64/boot/dts/broadcom/bcm2712-rpi-cm5io.dtsi | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
--- a/arch/arm64/boot/dts/broadcom/bcm2712-rpi-cm5io.dtsi
|
|
+++ b/arch/arm64/boot/dts/broadcom/bcm2712-rpi-cm5io.dtsi
|
|
@@ -11,4 +11,4 @@ i2c_csi_dsi0: &i2c6 { // Note: This is f
|
|
symlink = "i2c-6";
|
|
};
|
|
|
|
-i2c_csi_dsi: &i2c_csi_dsi0 { }; // The connector that needs no jumper to enable
|
|
+i2c_csi_dsi: &i2c_csi_dsi1 { }; // The connector that needs no jumper to enable
|