Revert "drm/lima: add usage counting method to ctx_mgr"
authorQiang Yu <yuq825@gmail.com>
Tue, 4 Apr 2023 00:26:01 +0000 (08:26 +0800)
committerQiang Yu <yuq825@gmail.com>
Wed, 5 Apr 2023 00:40:47 +0000 (08:40 +0800)
This reverts commit bccafec957a5c4b22ac29e53a39e82d0a0008348.

This is due to the depend commit has been reverted on upstream:
commit baad10973fdb ("Revert "drm/scheduler: track GPU active time per entity"")

Acked-by: Emil Velikov <emil.l.velikov@gmail.com>
Signed-off-by: Qiang Yu <yuq825@gmail.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20230404002601.24136-4-yq882255@163.com
drivers/gpu/drm/lima/lima_ctx.c
drivers/gpu/drm/lima/lima_ctx.h

index e008e586fad0f8b163c159371c157de0523254e3..891d5cd5019a7451200de317e9c9887b34d9377a 100644 (file)
@@ -15,7 +15,6 @@ int lima_ctx_create(struct lima_device *dev, struct lima_ctx_mgr *mgr, u32 *id)
        if (!ctx)
                return -ENOMEM;
        ctx->dev = dev;
-       ctx->mgr = mgr;
        kref_init(&ctx->refcnt);
 
        for (i = 0; i < lima_pipe_num; i++) {
@@ -43,17 +42,10 @@ err_out0:
 static void lima_ctx_do_release(struct kref *ref)
 {
        struct lima_ctx *ctx = container_of(ref, struct lima_ctx, refcnt);
-       struct lima_ctx_mgr *mgr = ctx->mgr;
        int i;
 
-       for (i = 0; i < lima_pipe_num; i++) {
-               struct lima_sched_context *context = &ctx->context[i];
-               struct drm_sched_entity *entity = &context->base;
-
-               mgr->elapsed_ns[i] += entity->elapsed_ns;
-
+       for (i = 0; i < lima_pipe_num; i++)
                lima_sched_context_fini(ctx->dev->pipe + i, ctx->context + i);
-       }
        kfree(ctx);
 }
 
@@ -107,23 +99,3 @@ void lima_ctx_mgr_fini(struct lima_ctx_mgr *mgr)
        xa_destroy(&mgr->handles);
        mutex_destroy(&mgr->lock);
 }
-
-void lima_ctx_mgr_usage(struct lima_ctx_mgr *mgr, u64 usage[lima_pipe_num])
-{
-       struct lima_ctx *ctx;
-       unsigned long id;
-
-       for (int i = 0; i < lima_pipe_num; i++)
-               usage[i] = mgr->elapsed_ns[i];
-
-       mutex_lock(&mgr->lock);
-       xa_for_each(&mgr->handles, id, ctx) {
-               for (int i = 0; i < lima_pipe_num; i++) {
-                       struct lima_sched_context *context = &ctx->context[i];
-                       struct drm_sched_entity *entity = &context->base;
-
-                       usage[i] += entity->elapsed_ns;
-               }
-       }
-       mutex_unlock(&mgr->lock);
-}
index 6068863880eba7e7187e0ff5d1bc85382be1ccc2..74e2be09090f65ef24872c6c534ff0a419c17e88 100644 (file)
@@ -12,7 +12,6 @@
 struct lima_ctx {
        struct kref refcnt;
        struct lima_device *dev;
-       struct lima_ctx_mgr *mgr;
        struct lima_sched_context context[lima_pipe_num];
        atomic_t guilty;
 
@@ -24,7 +23,6 @@ struct lima_ctx {
 struct lima_ctx_mgr {
        struct mutex lock;
        struct xarray handles;
-       u64 elapsed_ns[lima_pipe_num];
 };
 
 int lima_ctx_create(struct lima_device *dev, struct lima_ctx_mgr *mgr, u32 *id);
@@ -33,6 +31,5 @@ struct lima_ctx *lima_ctx_get(struct lima_ctx_mgr *mgr, u32 id);
 void lima_ctx_put(struct lima_ctx *ctx);
 void lima_ctx_mgr_init(struct lima_ctx_mgr *mgr);
 void lima_ctx_mgr_fini(struct lima_ctx_mgr *mgr);
-void lima_ctx_mgr_usage(struct lima_ctx_mgr *mgr, u64 usage[lima_pipe_num]);
 
 #endif