mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 14:13:16 +00:00
2e715fb4fc
Add support for BCM2712 (Raspberry Pi 5).
3bb5880ab3
Patches were generated from the diff between linux kernel branch linux-6.1.y
and rpi-6.1.y from raspberry pi kernel source:
- git format-patch linux-6.1.y...rpi-6.1.y
Build system: x86_64
Build-tested: bcm2708, bcm2709, bcm2710, bcm2711
Run-tested: bcm2710/RPi3B, bcm2711/RPi4B
Signed-off-by: Marty Jones <mj8263788@gmail.com>
[Remove applied and reverted patches, squash patches and config commits]
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
34 lines
1.1 KiB
Diff
34 lines
1.1 KiB
Diff
From b1bd2f406eab321be642decd6aee6b6222aec62b Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Fri, 28 Jul 2023 17:40:27 +0100
|
|
Subject: [PATCH] drm/panel: simple: Alter the timing for the Pi 7" DSI display
|
|
|
|
vc4 has always fixed up the timing, so the values defined have
|
|
never actually appeared on the wire.
|
|
The display appears to want a slightly longer HFP, so extend
|
|
the timings and recompute the clock to give the same frame rate.
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
drivers/gpu/drm/panel/panel-simple.c | 8 ++++----
|
|
1 file changed, 4 insertions(+), 4 deletions(-)
|
|
|
|
--- a/drivers/gpu/drm/panel/panel-simple.c
|
|
+++ b/drivers/gpu/drm/panel/panel-simple.c
|
|
@@ -3241,11 +3241,11 @@ static const struct panel_desc qishenglo
|
|
};
|
|
|
|
static const struct drm_display_mode raspberrypi_7inch_mode = {
|
|
- .clock = 25979400 / 1000,
|
|
+ .clock = 27777,
|
|
.hdisplay = 800,
|
|
- .hsync_start = 800 + 2,
|
|
- .hsync_end = 800 + 2 + 2,
|
|
- .htotal = 800 + 2 + 2 + 46,
|
|
+ .hsync_start = 800 + 59,
|
|
+ .hsync_end = 800 + 59 + 2,
|
|
+ .htotal = 800 + 59 + 2 + 46,
|
|
.vdisplay = 480,
|
|
.vsync_start = 480 + 7,
|
|
.vsync_end = 480 + 7 + 2,
|