drm/xe: Use ordered WQ for G2H handler
authorMatthew Brost <matthew.brost@intel.com>
Mon, 6 May 2024 03:47:58 +0000 (20:47 -0700)
committerLucas De Marchi <lucas.demarchi@intel.com>
Thu, 9 May 2024 14:41:27 +0000 (09:41 -0500)
System work queues are shared, use a dedicated work queue for G2H
processing to avoid G2H processing getting block behind system tasks.

Fixes: dd08ebf6c352 ("drm/xe: Introduce a new DRM driver for Intel GPUs")
Cc: <stable@vger.kernel.org>
Signed-off-by: Matthew Brost <matthew.brost@intel.com>
Reviewed-by: Francois Dugast <francois.dugast@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240506034758.3697397-1-matthew.brost@intel.com
(cherry picked from commit 50aec9665e0babd62b9eee4e613d9a1ef8d2b7de)
Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
drivers/gpu/drm/xe/xe_guc_ct.c
drivers/gpu/drm/xe/xe_guc_ct.h
drivers/gpu/drm/xe/xe_guc_ct_types.h

index c62dbd6420db02af82bdbd4ca4c75f1ddd9092e3..8bbfa45798e2e73cbd15e5da45a2941cdacb707d 100644 (file)
@@ -120,6 +120,7 @@ static void guc_ct_fini(struct drm_device *drm, void *arg)
 {
        struct xe_guc_ct *ct = arg;
 
+       destroy_workqueue(ct->g2h_wq);
        xa_destroy(&ct->fence_lookup);
 }
 
@@ -145,6 +146,10 @@ int xe_guc_ct_init(struct xe_guc_ct *ct)
 
        xe_assert(xe, !(guc_ct_size() % PAGE_SIZE));
 
+       ct->g2h_wq = alloc_ordered_workqueue("xe-g2h-wq", 0);
+       if (!ct->g2h_wq)
+               return -ENOMEM;
+
        spin_lock_init(&ct->fast_lock);
        xa_init(&ct->fence_lookup);
        INIT_WORK(&ct->g2h_worker, g2h_worker_func);
index 5083e099064f4b5cb2f956dd08cfc614c078717e..105bb8e99a8d0f318b0de91954636067698a4e63 100644 (file)
@@ -34,7 +34,7 @@ static inline void xe_guc_ct_irq_handler(struct xe_guc_ct *ct)
                return;
 
        wake_up_all(&ct->wq);
-       queue_work(system_unbound_wq, &ct->g2h_worker);
+       queue_work(ct->g2h_wq, &ct->g2h_worker);
        xe_guc_ct_fast_path(ct);
 }
 
index d29144c9f20bbbfa6d2f0be096f00837dc9ee4c7..fede4c6e93cb6c81d73475c28bcc78c712e78092 100644 (file)
@@ -120,6 +120,8 @@ struct xe_guc_ct {
        wait_queue_head_t wq;
        /** @g2h_fence_wq: wait queue used for G2H fencing */
        wait_queue_head_t g2h_fence_wq;
+       /** @g2h_wq: used to process G2H */
+       struct workqueue_struct *g2h_wq;
        /** @msg: Message buffer */
        u32 msg[GUC_CTB_MSG_MAX_LEN];
        /** @fast_msg: Message buffer */