瀏覽代碼

ttm: Provide an API for starting and stopping the delayed workqueue

We want to be able to prevent the delayed workqueue from changing state
while we're reclocking, so add an API to block and unblock it.

Signed-off-by: Matthew Garrett <mjg@redhat.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Matthew Garrett 15 年之前
父節點
當前提交
7c5ee5366f
共有 2 個文件被更改,包括 31 次插入0 次删除
  1. 14 0
      drivers/gpu/drm/ttm/ttm_bo.c
  2. 17 0
      include/drm/ttm/ttm_bo_api.h

+ 14 - 0
drivers/gpu/drm/ttm/ttm_bo.c

@@ -604,6 +604,20 @@ void ttm_bo_unref(struct ttm_buffer_object **p_bo)
 }
 }
 EXPORT_SYMBOL(ttm_bo_unref);
 EXPORT_SYMBOL(ttm_bo_unref);
 
 
+int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev)
+{
+	return cancel_delayed_work_sync(&bdev->wq);
+}
+EXPORT_SYMBOL(ttm_bo_lock_delayed_workqueue);
+
+void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev, int resched)
+{
+	if (resched)
+		schedule_delayed_work(&bdev->wq,
+				      ((HZ / 100) < 1) ? 1 : HZ / 100);
+}
+EXPORT_SYMBOL(ttm_bo_unlock_delayed_workqueue);
+
 static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
 static int ttm_bo_evict(struct ttm_buffer_object *bo, bool interruptible,
 			bool no_wait_reserve, bool no_wait_gpu)
 			bool no_wait_reserve, bool no_wait_gpu)
 {
 {

+ 17 - 0
include/drm/ttm/ttm_bo_api.h

@@ -361,6 +361,23 @@ extern int ttm_bo_validate(struct ttm_buffer_object *bo,
  */
  */
 extern void ttm_bo_unref(struct ttm_buffer_object **bo);
 extern void ttm_bo_unref(struct ttm_buffer_object **bo);
 
 
+/**
+ * ttm_bo_lock_delayed_workqueue
+ *
+ * Prevent the delayed workqueue from running.
+ * Returns
+ * True if the workqueue was queued at the time
+ */
+extern int ttm_bo_lock_delayed_workqueue(struct ttm_bo_device *bdev);
+
+/**
+ * ttm_bo_unlock_delayed_workqueue
+ *
+ * Allows the delayed workqueue to run.
+ */
+extern void ttm_bo_unlock_delayed_workqueue(struct ttm_bo_device *bdev,
+					    int resched);
+
 /**
 /**
  * ttm_bo_synccpu_write_grab
  * ttm_bo_synccpu_write_grab
  *
  *