mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-26 08:51:13 +00:00
251a382c28
Deleted (upstreamed): generic/backport-5.15/400-mtdblock-warn-if-opened-on-NAND.patch [01] generic/backport-5.15/420-v5.19-01-mtd-spinand-gigadevice-fix-Quad-IO-for-GD5F1GQ5UExxG.patch [02] bcm27xx/patches-5.15/950-0029-Revert-mailbox-avoid-timer-start-from-callback.patch [03] bcm27xx/patches-5.15/950-0417-bcm2711_thermal-Don-t-clamp-temperature-at-zero.patch [04] bcm27xx/patches-5.15/950-0740-drm-vc4-hvs-Fix-frame-count-register-readout.patch [05] bcm27xx/patches-5.15/950-0755-drm-vc4-hvs-Reset-muxes-at-probe-time.patch [06] bcm27xx/patches-5.15/950-0759-drm-vc4-txp-Don-t-set-TXP_VSTART_AT_EOF.patch [07] bcm27xx/patches-5.15/950-0760-drm-vc4-txp-Force-alpha-to-be-0xff-if-it-s-disabled.patch [08] bcm53xx/patches-5.15/031-v5.17-0005-ARM-dts-BCM5301X-update-CRU-block-description.patch [09] mediatek/patches-5.15/102-mt7629-enable-arch-timer.patch [10] Manually rebased: bcm27xx/patches-5.15/950-0741-drm-vc4-hvs-Use-pointer-to-HVS-in-HVS_READ-and-HVS_W.patch [01] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=f41c9418c5898c01634675150696da290fb86796 [02] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=d5b66645305c6f3a1b2cf75cee4157b07f293309 [03] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=119f99209d8531359bcb935f252ec435f9d21b13 [04] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=c4e1280abead1552e1764684079a43e222ccd163 [05] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=08465a1889cb48ec64431e9db745b5be15399251 [06] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=0e26a6da02e63b75b629573d13966c36aa6264f0 [07] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=01c9020b2e7c85e394879f34851805179ac3d1d8 [08] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=d47f85cc0171a5d3c5bd8cbb8a98983ca3357cbd [09] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=5151f24ac937ff7eb1f078257c66e3c0f0296010 [10] https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?h=v5.15.46&id=ffea838686b82fbb2801cdfad6ba5309d15c032d Signed-off-by: Rui Salvaterra <rsalvaterra@gmail.com>
60 lines
1.8 KiB
Diff
60 lines
1.8 KiB
Diff
From 02ce5b14d69bf513f3c6cc93c005cae07db985a0 Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Fri, 26 Mar 2021 17:06:36 +0000
|
|
Subject: [PATCH] drm/panel-simple: Add a timing for the Raspberry Pi
|
|
7" panel
|
|
|
|
The Raspberry Pi 7" 800x480 panel uses a Toshiba TC358762 DSI
|
|
to DPI bridge chip, so there is a requirement for the timings
|
|
to be specified for the end panel. Add such a definition.
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
drivers/gpu/drm/panel/panel-simple.c | 28 ++++++++++++++++++++++++++++
|
|
1 file changed, 28 insertions(+)
|
|
|
|
--- a/drivers/gpu/drm/panel/panel-simple.c
|
|
+++ b/drivers/gpu/drm/panel/panel-simple.c
|
|
@@ -3759,6 +3759,31 @@ static const struct panel_desc qishenglo
|
|
.connector_type = DRM_MODE_CONNECTOR_DPI,
|
|
};
|
|
|
|
+static const struct drm_display_mode raspberrypi_7inch_mode = {
|
|
+ .clock = 25979400 / 1000,
|
|
+ .hdisplay = 800,
|
|
+ .hsync_start = 800 + 2,
|
|
+ .hsync_end = 800 + 2 + 2,
|
|
+ .htotal = 800 + 2 + 2 + 46,
|
|
+ .vdisplay = 480,
|
|
+ .vsync_start = 480 + 7,
|
|
+ .vsync_end = 480 + 7 + 2,
|
|
+ .vtotal = 480 + 7 + 2 + 21,
|
|
+ .flags = DRM_MODE_FLAG_NVSYNC | DRM_MODE_FLAG_NHSYNC,
|
|
+};
|
|
+
|
|
+static const struct panel_desc raspberrypi_7inch = {
|
|
+ .modes = &raspberrypi_7inch_mode,
|
|
+ .num_modes = 1,
|
|
+ .bpc = 8,
|
|
+ .size = {
|
|
+ .width = 154,
|
|
+ .height = 86,
|
|
+ },
|
|
+ .bus_format = MEDIA_BUS_FMT_RGB888_1X24,
|
|
+ .connector_type = DRM_MODE_CONNECTOR_DSI,
|
|
+};
|
|
+
|
|
static const struct display_timing rocktech_rk070er9427_timing = {
|
|
.pixelclock = { 26400000, 33300000, 46800000 },
|
|
.hactive = { 800, 800, 800 },
|
|
@@ -4839,6 +4864,9 @@ static const struct of_device_id platfor
|
|
.compatible = "qishenglong,gopher2b-lcd",
|
|
.data = &qishenglong_gopher2b_lcd,
|
|
}, {
|
|
+ .compatible = "raspberrypi,7inch-dsi",
|
|
+ .data = &raspberrypi_7inch,
|
|
+ }, {
|
|
.compatible = "rocktech,rk070er9427",
|
|
.data = &rocktech_rk070er9427,
|
|
}, {
|