Lines Matching full:work
31 * drm_flip_work_allocate_task - allocate a flip-work task
51 * @work: the flip-work
55 * func) on a work queue after drm_flip_work_commit() is called.
57 void drm_flip_work_queue_task(struct drm_flip_work *work, in drm_flip_work_queue_task() argument
62 spin_lock_irqsave(&work->lock, flags); in drm_flip_work_queue_task()
63 list_add_tail(&task->node, &work->queued); in drm_flip_work_queue_task()
64 spin_unlock_irqrestore(&work->lock, flags); in drm_flip_work_queue_task()
69 * drm_flip_work_queue - queue work
70 * @work: the flip-work
73 * Queues work, that will later be run (passed back to drm_flip_func_t
74 * func) on a work queue after drm_flip_work_commit() is called.
76 void drm_flip_work_queue(struct drm_flip_work *work, void *val) in drm_flip_work_queue() argument
83 drm_flip_work_queue_task(work, task); in drm_flip_work_queue()
85 DRM_ERROR("%s could not allocate task!\n", work->name); in drm_flip_work_queue()
86 work->func(work, val); in drm_flip_work_queue()
92 * drm_flip_work_commit - commit queued work
93 * @work: the flip-work
94 * @wq: the work-queue to run the queued work on
96 * Trigger work previously queued by drm_flip_work_queue() to run
97 * on a workqueue. The typical usage would be to queue work (via
99 * prior), and then from vblank irq commit the queued work.
101 void drm_flip_work_commit(struct drm_flip_work *work, in drm_flip_work_commit() argument
106 spin_lock_irqsave(&work->lock, flags); in drm_flip_work_commit()
107 list_splice_tail(&work->queued, &work->commited); in drm_flip_work_commit()
108 INIT_LIST_HEAD(&work->queued); in drm_flip_work_commit()
109 spin_unlock_irqrestore(&work->lock, flags); in drm_flip_work_commit()
110 queue_work(wq, &work->worker); in drm_flip_work_commit()
116 struct drm_flip_work *work = container_of(w, struct drm_flip_work, worker); in flip_worker() local
124 spin_lock_irqsave(&work->lock, flags); in flip_worker()
125 list_splice_tail(&work->commited, &tasks); in flip_worker()
126 INIT_LIST_HEAD(&work->commited); in flip_worker()
127 spin_unlock_irqrestore(&work->lock, flags); in flip_worker()
133 work->func(work, task->data); in flip_worker()
140 * drm_flip_work_init - initialize flip-work
141 * @work: the flip-work to initialize
143 * @func: the callback work function
145 * Initializes/allocates resources for the flip-work
147 void drm_flip_work_init(struct drm_flip_work *work, in drm_flip_work_init() argument
150 work->name = name; in drm_flip_work_init()
151 INIT_LIST_HEAD(&work->queued); in drm_flip_work_init()
152 INIT_LIST_HEAD(&work->commited); in drm_flip_work_init()
153 spin_lock_init(&work->lock); in drm_flip_work_init()
154 work->func = func; in drm_flip_work_init()
156 INIT_WORK(&work->worker, flip_worker); in drm_flip_work_init()
161 * drm_flip_work_cleanup - cleans up flip-work
162 * @work: the flip-work to cleanup
164 * Destroy resources allocated for the flip-work
166 void drm_flip_work_cleanup(struct drm_flip_work *work) in drm_flip_work_cleanup() argument
168 WARN_ON(!list_empty(&work->queued) || !list_empty(&work->commited)); in drm_flip_work_cleanup()