]> git.dujemihanovic.xyz Git - linux.git/commitdiff
drm/xe: Don't support execlists in xe_gt_tlb_invalidation layer
authorMatthew Brost <matthew.brost@intel.com>
Thu, 22 Feb 2024 23:20:21 +0000 (15:20 -0800)
committerMatthew Brost <matthew.brost@intel.com>
Fri, 23 Feb 2024 19:44:59 +0000 (11:44 -0800)
The xe_gt_tlb_invalidation layer implements TLB invalidations for a GuC
backend. Simply return if in execlists mode. A follow up may properly
implement the xe_gt_tlb_invalidation layer for both GuC and execlists.

Fixes: a9351846d945 ("drm/xe: Break of TLB invalidation into its own file")
Cc: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240222232021.3911545-4-matthew.brost@intel.com
drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c

index a7b1f7cfec87f903102aaf24fb4efe93c8a9c9ca..f29ee1ccfa71e2ca4ca2fa428f5b95c4f6e1ca17 100644 (file)
@@ -287,6 +287,14 @@ int xe_gt_tlb_invalidation_vma(struct xe_gt *gt,
 
        xe_gt_assert(gt, vma);
 
+       /* Execlists not supported */
+       if (gt_to_xe(gt)->info.force_execlist) {
+               if (fence)
+                       __invalidation_fence_signal(fence);
+
+               return 0;
+       }
+
        action[len++] = XE_GUC_ACTION_TLB_INVALIDATION;
        action[len++] = 0; /* seqno, replaced in send_tlb_invalidation */
        if (!xe->info.has_range_tlb_invalidation) {
@@ -355,6 +363,10 @@ int xe_gt_tlb_invalidation_wait(struct xe_gt *gt, int seqno)
        struct xe_guc *guc = &gt->uc.guc;
        int ret;
 
+       /* Execlists not supported */
+       if (gt_to_xe(gt)->info.force_execlist)
+               return 0;
+
        /*
         * XXX: See above, this algorithm only works if seqno are always in
         * order