mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 06:08:08 +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>
27 lines
934 B
Diff
27 lines
934 B
Diff
From 63d8c0f5185169058384142547655fc038aae0bf Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Wed, 9 Aug 2023 21:04:40 +0100
|
|
Subject: [PATCH] drm: panel: jdi-lt070me05000: Add prepare_upstream_first flag
|
|
|
|
The panel driver wants to send DCS commands from the prepare
|
|
hook, therefore the DSI host wants to be pre_enabled first.
|
|
Set the flag to achieve this.
|
|
|
|
https://forums.raspberrypi.com/viewtopic.php?t=354708
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
drivers/gpu/drm/panel/panel-jdi-lt070me05000.c | 1 +
|
|
1 file changed, 1 insertion(+)
|
|
|
|
--- a/drivers/gpu/drm/panel/panel-jdi-lt070me05000.c
|
|
+++ b/drivers/gpu/drm/panel/panel-jdi-lt070me05000.c
|
|
@@ -437,6 +437,7 @@ static int jdi_panel_add(struct jdi_pane
|
|
return ret;
|
|
}
|
|
|
|
+ jdi->base.prepare_upstream_first = true;
|
|
drm_panel_init(&jdi->base, &jdi->dsi->dev, &jdi_panel_funcs,
|
|
DRM_MODE_CONNECTOR_DSI);
|
|
|