mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-25 06:26:15 +00:00
538a1d740c
The patches were generated from the RPi repo with the following command: git format-patch v6.6.58..rpi-6.6.y Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
61 lines
1.9 KiB
Diff
61 lines
1.9 KiB
Diff
From 63c0bcc4b7474c220c47a661526744edac18e75a Mon Sep 17 00:00:00 2001
|
|
From: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
Date: Fri, 5 Apr 2024 17:34:09 +0100
|
|
Subject: [PATCH 1065/1085] drm/vc4: Add option to call from crtc to encoder on
|
|
vblank
|
|
|
|
DSI0 is misbehaving and needs to action things on vblank to
|
|
work around it.
|
|
Add a new hook to call across during vblank.
|
|
|
|
Signed-off-by: Dave Stevenson <dave.stevenson@raspberrypi.com>
|
|
---
|
|
drivers/gpu/drm/vc4/vc4_crtc.c | 12 +++++++++++-
|
|
drivers/gpu/drm/vc4/vc4_drv.h | 1 +
|
|
2 files changed, 12 insertions(+), 1 deletion(-)
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_crtc.c
|
|
+++ b/drivers/gpu/drm/vc4/vc4_crtc.c
|
|
@@ -827,12 +827,15 @@ static void vc4_disable_vblank(struct dr
|
|
{
|
|
struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
|
|
struct drm_device *dev = crtc->dev;
|
|
+ struct drm_encoder *encoder = vc4_get_crtc_encoder(crtc, crtc->state);
|
|
+ struct vc4_encoder *vc4_encoder = to_vc4_encoder(encoder);
|
|
int idx;
|
|
|
|
if (!drm_dev_enter(dev, &idx))
|
|
return;
|
|
|
|
- CRTC_WRITE(PV_INTEN, 0);
|
|
+ if (vc4_encoder->type != VC4_ENCODER_TYPE_DSI0)
|
|
+ CRTC_WRITE(PV_INTEN, 0);
|
|
|
|
drm_dev_exit(idx);
|
|
}
|
|
@@ -877,7 +880,14 @@ static void vc4_crtc_handle_page_flip(st
|
|
|
|
void vc4_crtc_handle_vblank(struct vc4_crtc *crtc)
|
|
{
|
|
+ struct drm_encoder *encoder = vc4_get_crtc_encoder(&crtc->base, crtc->base.state);
|
|
+ struct vc4_encoder *vc4_encoder = to_vc4_encoder(encoder);
|
|
+
|
|
crtc->t_vblank = ktime_get();
|
|
+
|
|
+ if (vc4_encoder && vc4_encoder->vblank)
|
|
+ vc4_encoder->vblank(encoder);
|
|
+
|
|
drm_crtc_handle_vblank(&crtc->base);
|
|
vc4_crtc_handle_page_flip(crtc);
|
|
}
|
|
--- a/drivers/gpu/drm/vc4/vc4_drv.h
|
|
+++ b/drivers/gpu/drm/vc4/vc4_drv.h
|
|
@@ -504,6 +504,7 @@ struct vc4_encoder {
|
|
|
|
void (*post_crtc_disable)(struct drm_encoder *encoder, struct drm_atomic_state *state);
|
|
void (*post_crtc_powerdown)(struct drm_encoder *encoder, struct drm_atomic_state *state);
|
|
+ void (*vblank)(struct drm_encoder *encoder);
|
|
};
|
|
|
|
#define to_vc4_encoder(_encoder) \
|