drm/amdgpu: add mes ctx data in amdgpu_ring
authorJack Xiao <Jack.Xiao@amd.com>
Mon, 16 Mar 2020 09:12:23 +0000 (17:12 +0800)
committerAlex Deucher <alexander.deucher@amd.com>
Wed, 4 May 2022 14:03:20 +0000 (10:03 -0400)
Add mes context data structure in amdgpu_ring.

Signed-off-by: Jack Xiao <Jack.Xiao@amd.com>
Acked-by: Christian König <christian.koenig@amd.com>
Reviewed-by: Hawking Zhang <Hawking.Zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
drivers/gpu/drm/amd/amdgpu/amdgpu_ring.h

index 112c2b0..317a66b 100644 (file)
@@ -267,6 +267,11 @@ struct amdgpu_ring {
        int                     hw_prio;
        unsigned                num_hw_submission;
        atomic_t                *sched_score;
+
+       /* used for mes */
+       bool                    is_mes_queue;
+       uint32_t                hw_queue_id;
+       struct amdgpu_mes_ctx_data *mes_ctx;
 };
 
 #define amdgpu_ring_parse_cs(r, p, job, ib) ((r)->funcs->parse_cs((p), (job), (ib)))