]> www.infradead.org Git - users/hch/misc.git/commitdiff
drm/xe: Cancel pending TLB inval workers on teardown
authorStuart Summers <stuart.summers@intel.com>
Tue, 26 Aug 2025 18:29:04 +0000 (18:29 +0000)
committerMatthew Brost <matthew.brost@intel.com>
Wed, 27 Aug 2025 18:48:56 +0000 (11:48 -0700)
Add a new _fini() routine on the GT TLB invalidation
side to handle this worker cleanup on driver teardown.

v2: Move the TLB teardown to the gt fini() routine called during
    gt_init rather than in gt_alloc. This way the GT structure stays
    alive for while we reset the TLB state.

Signed-off-by: Stuart Summers <stuart.summers@intel.com>
Reviewed-by: Matthew Brost <matthew.brost@intel.com>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Link: https://lore.kernel.org/r/20250826182911.392550-3-stuart.summers@intel.com
drivers/gpu/drm/xe/xe_gt.c
drivers/gpu/drm/xe/xe_gt_tlb_invalidation.c
drivers/gpu/drm/xe/xe_gt_tlb_invalidation.h

index a3397f04abccef6f71d7711f20ae9b6c9f218a81..178c4783bbdaefa16be73704b07cf8073ef18e5f 100644 (file)
@@ -603,6 +603,8 @@ static void xe_gt_fini(void *arg)
        struct xe_gt *gt = arg;
        int i;
 
+       xe_gt_tlb_invalidation_fini(gt);
+
        for (i = 0; i < XE_ENGINE_CLASS_MAX; ++i)
                xe_hw_fence_irq_finish(&gt->fence_irq[i]);
 
index 75854b963d66ac368df113bf107440b03d15c782..db00c5adead9183f36e5b7c0c2af9cbea196b28e 100644 (file)
@@ -188,6 +188,18 @@ void xe_gt_tlb_invalidation_reset(struct xe_gt *gt)
        mutex_unlock(&gt->tlb_invalidation.seqno_lock);
 }
 
+/**
+ *
+ * xe_gt_tlb_invalidation_fini - Clean up GT TLB invalidation state
+ *
+ * Cancel pending fence workers and clean up any additional
+ * GT TLB invalidation state.
+ */
+void xe_gt_tlb_invalidation_fini(struct xe_gt *gt)
+{
+       xe_gt_tlb_invalidation_reset(gt);
+}
+
 static bool tlb_invalidation_seqno_past(struct xe_gt *gt, int seqno)
 {
        int seqno_recv = READ_ONCE(gt->tlb_invalidation.seqno_recv);
index f7f0f2eaf4b59ab776543bf35a98e488bc982901..3e4cff3922d6fa73e5b89715faf27cec5765f8c2 100644 (file)
@@ -16,6 +16,7 @@ struct xe_vm;
 struct xe_vma;
 
 int xe_gt_tlb_invalidation_init_early(struct xe_gt *gt);
+void xe_gt_tlb_invalidation_fini(struct xe_gt *gt);
 
 void xe_gt_tlb_invalidation_reset(struct xe_gt *gt);
 int xe_gt_tlb_invalidation_ggtt(struct xe_gt *gt);