2022-05-16 21:40:32 +00:00
|
|
|
From 92f7f613ece28ecff26cbe5b5af20343bb624db1 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Maxime Ripard <maxime@cerno.tech>
|
|
|
|
Date: Mon, 2 May 2022 10:20:56 +0200
|
|
|
|
Subject: [PATCH] drm/vc4: crtc: Use an union to store the page flip
|
|
|
|
callback
|
|
|
|
|
|
|
|
We'll need to extend the vc4_async_flip_state structure to rely on
|
|
|
|
another callback implementation, so let's move the current one into a
|
|
|
|
union.
|
|
|
|
|
|
|
|
Signed-off-by: Maxime Ripard <maxime@cerno.tech>
|
|
|
|
---
|
|
|
|
drivers/gpu/drm/vc4/vc4_crtc.c | 30 +++++++++++++++++++-----------
|
|
|
|
1 file changed, 19 insertions(+), 11 deletions(-)
|
|
|
|
|
|
|
|
--- a/drivers/gpu/drm/vc4/vc4_crtc.c
|
|
|
|
+++ b/drivers/gpu/drm/vc4/vc4_crtc.c
|
2022-10-26 22:31:12 +00:00
|
|
|
@@ -802,18 +802,18 @@ struct vc4_async_flip_state {
|
2022-05-16 21:40:32 +00:00
|
|
|
struct drm_framebuffer *old_fb;
|
|
|
|
struct drm_pending_vblank_event *event;
|
|
|
|
|
|
|
|
- struct vc4_seqno_cb cb;
|
|
|
|
- struct dma_fence_cb fence_cb;
|
|
|
|
+ union {
|
|
|
|
+ struct dma_fence_cb fence;
|
|
|
|
+ struct vc4_seqno_cb seqno;
|
|
|
|
+ } cb;
|
|
|
|
};
|
|
|
|
|
|
|
|
/* Called when the V3D execution for the BO being flipped to is done, so that
|
|
|
|
* we can actually update the plane's address to point to it.
|
|
|
|
*/
|
|
|
|
static void
|
|
|
|
-vc4_async_page_flip_complete(struct vc4_seqno_cb *cb)
|
|
|
|
+vc4_async_page_flip_complete(struct vc4_async_flip_state *flip_state)
|
|
|
|
{
|
|
|
|
- struct vc4_async_flip_state *flip_state =
|
|
|
|
- container_of(cb, struct vc4_async_flip_state, cb);
|
|
|
|
struct drm_crtc *crtc = flip_state->crtc;
|
|
|
|
struct drm_device *dev = crtc->dev;
|
|
|
|
struct drm_plane *plane = crtc->primary;
|
2022-10-26 22:31:12 +00:00
|
|
|
@@ -849,13 +849,21 @@ vc4_async_page_flip_complete(struct vc4_
|
2022-05-16 21:40:32 +00:00
|
|
|
kfree(flip_state);
|
|
|
|
}
|
|
|
|
|
|
|
|
+static void vc4_async_page_flip_seqno_complete(struct vc4_seqno_cb *cb)
|
|
|
|
+{
|
|
|
|
+ struct vc4_async_flip_state *flip_state =
|
|
|
|
+ container_of(cb, struct vc4_async_flip_state, cb.seqno);
|
|
|
|
+
|
|
|
|
+ vc4_async_page_flip_complete(flip_state);
|
|
|
|
+}
|
|
|
|
+
|
|
|
|
static void vc4_async_page_flip_fence_complete(struct dma_fence *fence,
|
|
|
|
struct dma_fence_cb *cb)
|
|
|
|
{
|
|
|
|
struct vc4_async_flip_state *flip_state =
|
|
|
|
- container_of(cb, struct vc4_async_flip_state, fence_cb);
|
|
|
|
+ container_of(cb, struct vc4_async_flip_state, cb.fence);
|
|
|
|
|
|
|
|
- vc4_async_page_flip_complete(&flip_state->cb);
|
|
|
|
+ vc4_async_page_flip_complete(flip_state);
|
|
|
|
dma_fence_put(fence);
|
|
|
|
}
|
|
|
|
|
2022-10-26 22:31:12 +00:00
|
|
|
@@ -870,14 +878,14 @@ static int vc4_async_set_fence_cb(struct
|
2022-05-16 21:40:32 +00:00
|
|
|
if (!vc4->is_vc5) {
|
|
|
|
struct vc4_bo *bo = to_vc4_bo(&cma_bo->base);
|
|
|
|
|
|
|
|
- return vc4_queue_seqno_cb(dev, &flip_state->cb, bo->seqno,
|
|
|
|
- vc4_async_page_flip_complete);
|
|
|
|
+ return vc4_queue_seqno_cb(dev, &flip_state->cb.seqno, bo->seqno,
|
|
|
|
+ vc4_async_page_flip_seqno_complete);
|
|
|
|
}
|
|
|
|
|
|
|
|
fence = dma_fence_get(dma_resv_excl_fence(cma_bo->base.resv));
|
|
|
|
- if (dma_fence_add_callback(fence, &flip_state->fence_cb,
|
|
|
|
+ if (dma_fence_add_callback(fence, &flip_state->cb.fence,
|
|
|
|
vc4_async_page_flip_fence_complete))
|
|
|
|
- vc4_async_page_flip_fence_complete(fence, &flip_state->fence_cb);
|
|
|
|
+ vc4_async_page_flip_fence_complete(fence, &flip_state->cb.fence);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|