summaryrefslogtreecommitdiff
path: root/drivers/gpu/drm/lima/lima_ctx.h
diff options
context:
space:
mode:
authorQiang Yu <yuq825@gmail.com>2023-04-04 03:26:01 +0300
committerQiang Yu <yuq825@gmail.com>2023-04-05 03:40:47 +0300
commit8678c8b305bb0de99eb05d6dae74e04ca46827a4 (patch)
tree43cca15040f6159408842c23bb1dbd5a5be83229 /drivers/gpu/drm/lima/lima_ctx.h
parent4ad17bf571730475bf62290399d52b26ece8228c (diff)
downloadlinux-8678c8b305bb0de99eb05d6dae74e04ca46827a4.tar.xz
Revert "drm/lima: add usage counting method to ctx_mgr"
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
Diffstat (limited to 'drivers/gpu/drm/lima/lima_ctx.h')
-rw-r--r--drivers/gpu/drm/lima/lima_ctx.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/gpu/drm/lima/lima_ctx.h b/drivers/gpu/drm/lima/lima_ctx.h
index 6068863880eb..74e2be09090f 100644
--- a/drivers/gpu/drm/lima/lima_ctx.h
+++ b/drivers/gpu/drm/lima/lima_ctx.h
@@ -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