2 * Copyright 2015 Advanced Micro Devices, Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
27 * The GPU scheduler provides entities which allow userspace to push jobs
28 * into software queues which are then scheduled on a hardware run queue.
29 * The software queues have a priority among them. The scheduler selects the entities
30 * from the run queue using a FIFO. The scheduler provides dependency handling
31 * features among jobs. The driver is supposed to provide callback functions for
32 * backend operations to the scheduler like submitting a job to hardware run queue,
33 * returning the dependencies of a job etc.
35 * The organisation of the scheduler is the following:
37 * 1. Each hw run queue has one scheduler
38 * 2. Each scheduler has multiple run queues with different priorities
39 * (e.g., HIGH_HW,HIGH_SW, KERNEL, NORMAL)
40 * 3. Each scheduler run queue has a queue of entities to schedule
41 * 4. Entities themselves maintain a queue of jobs that will be scheduled on
44 * The jobs in a entity are always scheduled in the order that they were pushed.
47 #include <linux/kthread.h>
48 #include <linux/wait.h>
49 #include <linux/sched.h>
50 #include <linux/completion.h>
51 #include <linux/dma-resv.h>
52 #include <uapi/linux/sched/types.h>
54 #include <drm/drm_print.h>
55 #include <drm/drm_gem.h>
56 #include <drm/gpu_scheduler.h>
57 #include <drm/spsc_queue.h>
59 #define CREATE_TRACE_POINTS
60 #include "gpu_scheduler_trace.h"
62 #define to_drm_sched_job(sched_job) \
63 container_of((sched_job), struct drm_sched_job, queue_node)
65 int drm_sched_policy = DRM_SCHED_POLICY_FIFO;
68 * DOC: sched_policy (int)
69 * Used to override default entities scheduling policy in a run queue.
71 MODULE_PARM_DESC(sched_policy, "Specify the scheduling policy for entities on a run-queue, " __stringify(DRM_SCHED_POLICY_RR) " = Round Robin, " __stringify(DRM_SCHED_POLICY_FIFO) " = FIFO (default).");
72 module_param_named(sched_policy, drm_sched_policy, int, 0444);
74 static __always_inline bool drm_sched_entity_compare_before(struct rb_node *a,
75 const struct rb_node *b)
77 struct drm_sched_entity *ent_a = rb_entry((a), struct drm_sched_entity, rb_tree_node);
78 struct drm_sched_entity *ent_b = rb_entry((b), struct drm_sched_entity, rb_tree_node);
80 return ktime_before(ent_a->oldest_job_waiting, ent_b->oldest_job_waiting);
83 static inline void drm_sched_rq_remove_fifo_locked(struct drm_sched_entity *entity)
85 struct drm_sched_rq *rq = entity->rq;
87 if (!RB_EMPTY_NODE(&entity->rb_tree_node)) {
88 rb_erase_cached(&entity->rb_tree_node, &rq->rb_tree_root);
89 RB_CLEAR_NODE(&entity->rb_tree_node);
93 void drm_sched_rq_update_fifo(struct drm_sched_entity *entity, ktime_t ts)
96 * Both locks need to be grabbed, one to protect from entity->rq change
97 * for entity from within concurrent drm_sched_entity_select_rq and the
98 * other to update the rb tree structure.
100 spin_lock(&entity->rq_lock);
101 spin_lock(&entity->rq->lock);
103 drm_sched_rq_remove_fifo_locked(entity);
105 entity->oldest_job_waiting = ts;
107 rb_add_cached(&entity->rb_tree_node, &entity->rq->rb_tree_root,
108 drm_sched_entity_compare_before);
110 spin_unlock(&entity->rq->lock);
111 spin_unlock(&entity->rq_lock);
115 * drm_sched_rq_init - initialize a given run queue struct
117 * @sched: scheduler instance to associate with this run queue
118 * @rq: scheduler run queue
120 * Initializes a scheduler runqueue.
122 static void drm_sched_rq_init(struct drm_gpu_scheduler *sched,
123 struct drm_sched_rq *rq)
125 spin_lock_init(&rq->lock);
126 INIT_LIST_HEAD(&rq->entities);
127 rq->rb_tree_root = RB_ROOT_CACHED;
128 rq->current_entity = NULL;
133 * drm_sched_rq_add_entity - add an entity
135 * @rq: scheduler run queue
136 * @entity: scheduler entity
138 * Adds a scheduler entity to the run queue.
140 void drm_sched_rq_add_entity(struct drm_sched_rq *rq,
141 struct drm_sched_entity *entity)
143 if (!list_empty(&entity->list))
146 spin_lock(&rq->lock);
148 atomic_inc(rq->sched->score);
149 list_add_tail(&entity->list, &rq->entities);
151 spin_unlock(&rq->lock);
155 * drm_sched_rq_remove_entity - remove an entity
157 * @rq: scheduler run queue
158 * @entity: scheduler entity
160 * Removes a scheduler entity from the run queue.
162 void drm_sched_rq_remove_entity(struct drm_sched_rq *rq,
163 struct drm_sched_entity *entity)
165 if (list_empty(&entity->list))
168 spin_lock(&rq->lock);
170 atomic_dec(rq->sched->score);
171 list_del_init(&entity->list);
173 if (rq->current_entity == entity)
174 rq->current_entity = NULL;
176 if (drm_sched_policy == DRM_SCHED_POLICY_FIFO)
177 drm_sched_rq_remove_fifo_locked(entity);
179 spin_unlock(&rq->lock);
183 * drm_sched_rq_select_entity_rr - Select an entity which could provide a job to run
185 * @rq: scheduler run queue to check.
187 * Try to find a ready entity, returns NULL if none found.
189 static struct drm_sched_entity *
190 drm_sched_rq_select_entity_rr(struct drm_sched_rq *rq)
192 struct drm_sched_entity *entity;
194 spin_lock(&rq->lock);
196 entity = rq->current_entity;
198 list_for_each_entry_continue(entity, &rq->entities, list) {
199 if (drm_sched_entity_is_ready(entity)) {
200 rq->current_entity = entity;
201 reinit_completion(&entity->entity_idle);
202 spin_unlock(&rq->lock);
208 list_for_each_entry(entity, &rq->entities, list) {
210 if (drm_sched_entity_is_ready(entity)) {
211 rq->current_entity = entity;
212 reinit_completion(&entity->entity_idle);
213 spin_unlock(&rq->lock);
217 if (entity == rq->current_entity)
221 spin_unlock(&rq->lock);
227 * drm_sched_rq_select_entity_fifo - Select an entity which provides a job to run
229 * @rq: scheduler run queue to check.
231 * Find oldest waiting ready entity, returns NULL if none found.
233 static struct drm_sched_entity *
234 drm_sched_rq_select_entity_fifo(struct drm_sched_rq *rq)
238 spin_lock(&rq->lock);
239 for (rb = rb_first_cached(&rq->rb_tree_root); rb; rb = rb_next(rb)) {
240 struct drm_sched_entity *entity;
242 entity = rb_entry(rb, struct drm_sched_entity, rb_tree_node);
243 if (drm_sched_entity_is_ready(entity)) {
244 rq->current_entity = entity;
245 reinit_completion(&entity->entity_idle);
249 spin_unlock(&rq->lock);
251 return rb ? rb_entry(rb, struct drm_sched_entity, rb_tree_node) : NULL;
255 * drm_sched_job_done - complete a job
256 * @s_job: pointer to the job which is done
258 * Finish the job's fence and wake up the worker thread.
260 static void drm_sched_job_done(struct drm_sched_job *s_job)
262 struct drm_sched_fence *s_fence = s_job->s_fence;
263 struct drm_gpu_scheduler *sched = s_fence->sched;
265 atomic_dec(&sched->hw_rq_count);
266 atomic_dec(sched->score);
268 trace_drm_sched_process_job(s_fence);
270 dma_fence_get(&s_fence->finished);
271 drm_sched_fence_finished(s_fence);
272 dma_fence_put(&s_fence->finished);
273 wake_up_interruptible(&sched->wake_up_worker);
277 * drm_sched_job_done_cb - the callback for a done job
279 * @cb: fence callbacks
281 static void drm_sched_job_done_cb(struct dma_fence *f, struct dma_fence_cb *cb)
283 struct drm_sched_job *s_job = container_of(cb, struct drm_sched_job, cb);
285 drm_sched_job_done(s_job);
289 * drm_sched_start_timeout - start timeout for reset worker
291 * @sched: scheduler instance to start the worker for
293 * Start the timeout for the given scheduler.
295 static void drm_sched_start_timeout(struct drm_gpu_scheduler *sched)
297 if (sched->timeout != MAX_SCHEDULE_TIMEOUT &&
298 !list_empty(&sched->pending_list))
299 queue_delayed_work(sched->timeout_wq, &sched->work_tdr, sched->timeout);
303 * drm_sched_fault - immediately start timeout handler
305 * @sched: scheduler where the timeout handling should be started.
307 * Start timeout handling immediately when the driver detects a hardware fault.
309 void drm_sched_fault(struct drm_gpu_scheduler *sched)
312 mod_delayed_work(sched->timeout_wq, &sched->work_tdr, 0);
314 EXPORT_SYMBOL(drm_sched_fault);
317 * drm_sched_suspend_timeout - Suspend scheduler job timeout
319 * @sched: scheduler instance for which to suspend the timeout
321 * Suspend the delayed work timeout for the scheduler. This is done by
322 * modifying the delayed work timeout to an arbitrary large value,
323 * MAX_SCHEDULE_TIMEOUT in this case.
325 * Returns the timeout remaining
328 unsigned long drm_sched_suspend_timeout(struct drm_gpu_scheduler *sched)
330 unsigned long sched_timeout, now = jiffies;
332 sched_timeout = sched->work_tdr.timer.expires;
335 * Modify the timeout to an arbitrarily large value. This also prevents
336 * the timeout to be restarted when new submissions arrive
338 if (mod_delayed_work(sched->timeout_wq, &sched->work_tdr, MAX_SCHEDULE_TIMEOUT)
339 && time_after(sched_timeout, now))
340 return sched_timeout - now;
342 return sched->timeout;
344 EXPORT_SYMBOL(drm_sched_suspend_timeout);
347 * drm_sched_resume_timeout - Resume scheduler job timeout
349 * @sched: scheduler instance for which to resume the timeout
350 * @remaining: remaining timeout
352 * Resume the delayed work timeout for the scheduler.
354 void drm_sched_resume_timeout(struct drm_gpu_scheduler *sched,
355 unsigned long remaining)
357 spin_lock(&sched->job_list_lock);
359 if (list_empty(&sched->pending_list))
360 cancel_delayed_work(&sched->work_tdr);
362 mod_delayed_work(sched->timeout_wq, &sched->work_tdr, remaining);
364 spin_unlock(&sched->job_list_lock);
366 EXPORT_SYMBOL(drm_sched_resume_timeout);
368 static void drm_sched_job_begin(struct drm_sched_job *s_job)
370 struct drm_gpu_scheduler *sched = s_job->sched;
372 spin_lock(&sched->job_list_lock);
373 list_add_tail(&s_job->list, &sched->pending_list);
374 drm_sched_start_timeout(sched);
375 spin_unlock(&sched->job_list_lock);
378 static void drm_sched_job_timedout(struct work_struct *work)
380 struct drm_gpu_scheduler *sched;
381 struct drm_sched_job *job;
382 enum drm_gpu_sched_stat status = DRM_GPU_SCHED_STAT_NOMINAL;
384 sched = container_of(work, struct drm_gpu_scheduler, work_tdr.work);
386 /* Protects against concurrent deletion in drm_sched_get_cleanup_job */
387 spin_lock(&sched->job_list_lock);
388 job = list_first_entry_or_null(&sched->pending_list,
389 struct drm_sched_job, list);
393 * Remove the bad job so it cannot be freed by concurrent
394 * drm_sched_cleanup_jobs. It will be reinserted back after sched->thread
395 * is parked at which point it's safe.
397 list_del_init(&job->list);
398 spin_unlock(&sched->job_list_lock);
400 status = job->sched->ops->timedout_job(job);
403 * Guilty job did complete and hence needs to be manually removed
404 * See drm_sched_stop doc.
406 if (sched->free_guilty) {
407 job->sched->ops->free_job(job);
408 sched->free_guilty = false;
411 spin_unlock(&sched->job_list_lock);
414 if (status != DRM_GPU_SCHED_STAT_ENODEV) {
415 spin_lock(&sched->job_list_lock);
416 drm_sched_start_timeout(sched);
417 spin_unlock(&sched->job_list_lock);
422 * drm_sched_stop - stop the scheduler
424 * @sched: scheduler instance
425 * @bad: job which caused the time out
427 * Stop the scheduler and also removes and frees all completed jobs.
428 * Note: bad job will not be freed as it might be used later and so it's
429 * callers responsibility to release it manually if it's not part of the
430 * pending list any more.
433 void drm_sched_stop(struct drm_gpu_scheduler *sched, struct drm_sched_job *bad)
435 struct drm_sched_job *s_job, *tmp;
437 kthread_park(sched->thread);
440 * Reinsert back the bad job here - now it's safe as
441 * drm_sched_get_cleanup_job cannot race against us and release the
442 * bad job at this point - we parked (waited for) any in progress
443 * (earlier) cleanups and drm_sched_get_cleanup_job will not be called
444 * now until the scheduler thread is unparked.
446 if (bad && bad->sched == sched)
448 * Add at the head of the queue to reflect it was the earliest
451 list_add(&bad->list, &sched->pending_list);
454 * Iterate the job list from later to earlier one and either deactive
455 * their HW callbacks or remove them from pending list if they already
457 * This iteration is thread safe as sched thread is stopped.
459 list_for_each_entry_safe_reverse(s_job, tmp, &sched->pending_list,
461 if (s_job->s_fence->parent &&
462 dma_fence_remove_callback(s_job->s_fence->parent,
464 dma_fence_put(s_job->s_fence->parent);
465 s_job->s_fence->parent = NULL;
466 atomic_dec(&sched->hw_rq_count);
469 * remove job from pending_list.
470 * Locking here is for concurrent resume timeout
472 spin_lock(&sched->job_list_lock);
473 list_del_init(&s_job->list);
474 spin_unlock(&sched->job_list_lock);
477 * Wait for job's HW fence callback to finish using s_job
478 * before releasing it.
480 * Job is still alive so fence refcount at least 1
482 dma_fence_wait(&s_job->s_fence->finished, false);
485 * We must keep bad job alive for later use during
486 * recovery by some of the drivers but leave a hint
487 * that the guilty job must be released.
490 sched->ops->free_job(s_job);
492 sched->free_guilty = true;
497 * Stop pending timer in flight as we rearm it in drm_sched_start. This
498 * avoids the pending timeout work in progress to fire right away after
499 * this TDR finished and before the newly restarted jobs had a
500 * chance to complete.
502 cancel_delayed_work(&sched->work_tdr);
505 EXPORT_SYMBOL(drm_sched_stop);
508 * drm_sched_start - recover jobs after a reset
510 * @sched: scheduler instance
511 * @full_recovery: proceed with complete sched restart
514 void drm_sched_start(struct drm_gpu_scheduler *sched, bool full_recovery)
516 struct drm_sched_job *s_job, *tmp;
520 * Locking the list is not required here as the sched thread is parked
521 * so no new jobs are being inserted or removed. Also concurrent
522 * GPU recovers can't run in parallel.
524 list_for_each_entry_safe(s_job, tmp, &sched->pending_list, list) {
525 struct dma_fence *fence = s_job->s_fence->parent;
527 atomic_inc(&sched->hw_rq_count);
533 r = dma_fence_add_callback(fence, &s_job->cb,
534 drm_sched_job_done_cb);
536 drm_sched_job_done(s_job);
538 DRM_DEV_ERROR(sched->dev, "fence add callback failed (%d)\n",
541 drm_sched_job_done(s_job);
545 spin_lock(&sched->job_list_lock);
546 drm_sched_start_timeout(sched);
547 spin_unlock(&sched->job_list_lock);
550 kthread_unpark(sched->thread);
552 EXPORT_SYMBOL(drm_sched_start);
555 * drm_sched_resubmit_jobs - Deprecated, don't use in new code!
557 * @sched: scheduler instance
559 * Re-submitting jobs was a concept AMD came up as cheap way to implement
560 * recovery after a job timeout.
562 * This turned out to be not working very well. First of all there are many
563 * problem with the dma_fence implementation and requirements. Either the
564 * implementation is risking deadlocks with core memory management or violating
565 * documented implementation details of the dma_fence object.
567 * Drivers can still save and restore their state for recovery operations, but
568 * we shouldn't make this a general scheduler feature around the dma_fence
571 void drm_sched_resubmit_jobs(struct drm_gpu_scheduler *sched)
573 struct drm_sched_job *s_job, *tmp;
574 uint64_t guilty_context;
575 bool found_guilty = false;
576 struct dma_fence *fence;
578 list_for_each_entry_safe(s_job, tmp, &sched->pending_list, list) {
579 struct drm_sched_fence *s_fence = s_job->s_fence;
581 if (!found_guilty && atomic_read(&s_job->karma) > sched->hang_limit) {
583 guilty_context = s_job->s_fence->scheduled.context;
586 if (found_guilty && s_job->s_fence->scheduled.context == guilty_context)
587 dma_fence_set_error(&s_fence->finished, -ECANCELED);
589 fence = sched->ops->run_job(s_job);
591 if (IS_ERR_OR_NULL(fence)) {
593 dma_fence_set_error(&s_fence->finished, PTR_ERR(fence));
595 s_job->s_fence->parent = NULL;
598 s_job->s_fence->parent = dma_fence_get(fence);
600 /* Drop for orignal kref_init */
601 dma_fence_put(fence);
605 EXPORT_SYMBOL(drm_sched_resubmit_jobs);
608 * drm_sched_job_init - init a scheduler job
609 * @job: scheduler job to init
610 * @entity: scheduler entity to use
611 * @owner: job owner for debugging
613 * Refer to drm_sched_entity_push_job() documentation
614 * for locking considerations.
616 * Drivers must make sure drm_sched_job_cleanup() if this function returns
617 * successfully, even when @job is aborted before drm_sched_job_arm() is called.
619 * WARNING: amdgpu abuses &drm_sched.ready to signal when the hardware
620 * has died, which can mean that there's no valid runqueue for a @entity.
621 * This function returns -ENOENT in this case (which probably should be -EIO as
622 * a more meanigful return value).
624 * Returns 0 for success, negative error code otherwise.
626 int drm_sched_job_init(struct drm_sched_job *job,
627 struct drm_sched_entity *entity,
633 job->entity = entity;
634 job->s_fence = drm_sched_fence_alloc(entity, owner);
638 INIT_LIST_HEAD(&job->list);
640 xa_init_flags(&job->dependencies, XA_FLAGS_ALLOC);
644 EXPORT_SYMBOL(drm_sched_job_init);
647 * drm_sched_job_arm - arm a scheduler job for execution
648 * @job: scheduler job to arm
650 * This arms a scheduler job for execution. Specifically it initializes the
651 * &drm_sched_job.s_fence of @job, so that it can be attached to struct dma_resv
652 * or other places that need to track the completion of this job.
654 * Refer to drm_sched_entity_push_job() documentation for locking
657 * This can only be called if drm_sched_job_init() succeeded.
659 void drm_sched_job_arm(struct drm_sched_job *job)
661 struct drm_gpu_scheduler *sched;
662 struct drm_sched_entity *entity = job->entity;
665 drm_sched_entity_select_rq(entity);
666 sched = entity->rq->sched;
669 job->s_priority = entity->rq - sched->sched_rq;
670 job->id = atomic64_inc_return(&sched->job_id_count);
672 drm_sched_fence_init(job->s_fence, job->entity);
674 EXPORT_SYMBOL(drm_sched_job_arm);
677 * drm_sched_job_add_dependency - adds the fence as a job dependency
678 * @job: scheduler job to add the dependencies to
679 * @fence: the dma_fence to add to the list of dependencies.
681 * Note that @fence is consumed in both the success and error cases.
684 * 0 on success, or an error on failing to expand the array.
686 int drm_sched_job_add_dependency(struct drm_sched_job *job,
687 struct dma_fence *fence)
689 struct dma_fence *entry;
697 /* Deduplicate if we already depend on a fence from the same context.
698 * This lets the size of the array of deps scale with the number of
699 * engines involved, rather than the number of BOs.
701 xa_for_each(&job->dependencies, index, entry) {
702 if (entry->context != fence->context)
705 if (dma_fence_is_later(fence, entry)) {
706 dma_fence_put(entry);
707 xa_store(&job->dependencies, index, fence, GFP_KERNEL);
709 dma_fence_put(fence);
714 ret = xa_alloc(&job->dependencies, &id, fence, xa_limit_32b, GFP_KERNEL);
716 dma_fence_put(fence);
720 EXPORT_SYMBOL(drm_sched_job_add_dependency);
723 * drm_sched_job_add_resv_dependencies - add all fences from the resv to the job
724 * @job: scheduler job to add the dependencies to
725 * @resv: the dma_resv object to get the fences from
726 * @usage: the dma_resv_usage to use to filter the fences
728 * This adds all fences matching the given usage from @resv to @job.
729 * Must be called with the @resv lock held.
732 * 0 on success, or an error on failing to expand the array.
734 int drm_sched_job_add_resv_dependencies(struct drm_sched_job *job,
735 struct dma_resv *resv,
736 enum dma_resv_usage usage)
738 struct dma_resv_iter cursor;
739 struct dma_fence *fence;
742 dma_resv_assert_held(resv);
744 dma_resv_for_each_fence(&cursor, resv, usage, fence) {
745 /* Make sure to grab an additional ref on the added fence */
746 dma_fence_get(fence);
747 ret = drm_sched_job_add_dependency(job, fence);
749 dma_fence_put(fence);
755 EXPORT_SYMBOL(drm_sched_job_add_resv_dependencies);
758 * drm_sched_job_add_implicit_dependencies - adds implicit dependencies as job
760 * @job: scheduler job to add the dependencies to
761 * @obj: the gem object to add new dependencies from.
762 * @write: whether the job might write the object (so we need to depend on
763 * shared fences in the reservation object).
765 * This should be called after drm_gem_lock_reservations() on your array of
766 * GEM objects used in the job but before updating the reservations with your
770 * 0 on success, or an error on failing to expand the array.
772 int drm_sched_job_add_implicit_dependencies(struct drm_sched_job *job,
773 struct drm_gem_object *obj,
776 return drm_sched_job_add_resv_dependencies(job, obj->resv,
777 dma_resv_usage_rw(write));
779 EXPORT_SYMBOL(drm_sched_job_add_implicit_dependencies);
782 * drm_sched_job_cleanup - clean up scheduler job resources
783 * @job: scheduler job to clean up
785 * Cleans up the resources allocated with drm_sched_job_init().
787 * Drivers should call this from their error unwind code if @job is aborted
788 * before drm_sched_job_arm() is called.
790 * After that point of no return @job is committed to be executed by the
791 * scheduler, and this function should be called from the
792 * &drm_sched_backend_ops.free_job callback.
794 void drm_sched_job_cleanup(struct drm_sched_job *job)
796 struct dma_fence *fence;
799 if (kref_read(&job->s_fence->finished.refcount)) {
800 /* drm_sched_job_arm() has been called */
801 dma_fence_put(&job->s_fence->finished);
803 /* aborted job before committing to run it */
804 drm_sched_fence_free(job->s_fence);
809 xa_for_each(&job->dependencies, index, fence) {
810 dma_fence_put(fence);
812 xa_destroy(&job->dependencies);
815 EXPORT_SYMBOL(drm_sched_job_cleanup);
818 * drm_sched_ready - is the scheduler ready
820 * @sched: scheduler instance
822 * Return true if we can push more jobs to the hw, otherwise false.
824 static bool drm_sched_ready(struct drm_gpu_scheduler *sched)
826 return atomic_read(&sched->hw_rq_count) <
827 sched->hw_submission_limit;
831 * drm_sched_wakeup - Wake up the scheduler when it is ready
833 * @sched: scheduler instance
836 void drm_sched_wakeup(struct drm_gpu_scheduler *sched)
838 if (drm_sched_ready(sched))
839 wake_up_interruptible(&sched->wake_up_worker);
843 * drm_sched_select_entity - Select next entity to process
845 * @sched: scheduler instance
847 * Returns the entity to process or NULL if none are found.
849 static struct drm_sched_entity *
850 drm_sched_select_entity(struct drm_gpu_scheduler *sched)
852 struct drm_sched_entity *entity;
855 if (!drm_sched_ready(sched))
858 /* Kernel run queue has higher priority than normal run queue*/
859 for (i = DRM_SCHED_PRIORITY_COUNT - 1; i >= DRM_SCHED_PRIORITY_MIN; i--) {
860 entity = drm_sched_policy == DRM_SCHED_POLICY_FIFO ?
861 drm_sched_rq_select_entity_fifo(&sched->sched_rq[i]) :
862 drm_sched_rq_select_entity_rr(&sched->sched_rq[i]);
871 * drm_sched_get_cleanup_job - fetch the next finished job to be destroyed
873 * @sched: scheduler instance
875 * Returns the next finished job from the pending list (if there is one)
876 * ready for it to be destroyed.
878 static struct drm_sched_job *
879 drm_sched_get_cleanup_job(struct drm_gpu_scheduler *sched)
881 struct drm_sched_job *job, *next;
883 spin_lock(&sched->job_list_lock);
885 job = list_first_entry_or_null(&sched->pending_list,
886 struct drm_sched_job, list);
888 if (job && dma_fence_is_signaled(&job->s_fence->finished)) {
889 /* remove job from pending_list */
890 list_del_init(&job->list);
892 /* cancel this job's TO timer */
893 cancel_delayed_work(&sched->work_tdr);
894 /* make the scheduled timestamp more accurate */
895 next = list_first_entry_or_null(&sched->pending_list,
896 typeof(*next), list);
899 next->s_fence->scheduled.timestamp =
900 job->s_fence->finished.timestamp;
901 /* start TO timer for next job */
902 drm_sched_start_timeout(sched);
908 spin_unlock(&sched->job_list_lock);
914 * drm_sched_pick_best - Get a drm sched from a sched_list with the least load
915 * @sched_list: list of drm_gpu_schedulers
916 * @num_sched_list: number of drm_gpu_schedulers in the sched_list
918 * Returns pointer of the sched with the least load or NULL if none of the
919 * drm_gpu_schedulers are ready
921 struct drm_gpu_scheduler *
922 drm_sched_pick_best(struct drm_gpu_scheduler **sched_list,
923 unsigned int num_sched_list)
925 struct drm_gpu_scheduler *sched, *picked_sched = NULL;
927 unsigned int min_score = UINT_MAX, num_score;
929 for (i = 0; i < num_sched_list; ++i) {
930 sched = sched_list[i];
933 DRM_WARN("scheduler %s is not ready, skipping",
938 num_score = atomic_read(sched->score);
939 if (num_score < min_score) {
940 min_score = num_score;
941 picked_sched = sched;
947 EXPORT_SYMBOL(drm_sched_pick_best);
950 * drm_sched_blocked - check if the scheduler is blocked
952 * @sched: scheduler instance
954 * Returns true if blocked, otherwise false.
956 static bool drm_sched_blocked(struct drm_gpu_scheduler *sched)
958 if (kthread_should_park()) {
967 * drm_sched_main - main scheduler thread
969 * @param: scheduler instance
973 static int drm_sched_main(void *param)
975 struct drm_gpu_scheduler *sched = (struct drm_gpu_scheduler *)param;
978 sched_set_fifo_low(current);
980 while (!kthread_should_stop()) {
981 struct drm_sched_entity *entity = NULL;
982 struct drm_sched_fence *s_fence;
983 struct drm_sched_job *sched_job;
984 struct dma_fence *fence;
985 struct drm_sched_job *cleanup_job = NULL;
987 wait_event_interruptible(sched->wake_up_worker,
988 (cleanup_job = drm_sched_get_cleanup_job(sched)) ||
989 (!drm_sched_blocked(sched) &&
990 (entity = drm_sched_select_entity(sched))) ||
991 kthread_should_stop());
994 sched->ops->free_job(cleanup_job);
999 sched_job = drm_sched_entity_pop_job(entity);
1002 complete_all(&entity->entity_idle);
1006 s_fence = sched_job->s_fence;
1008 atomic_inc(&sched->hw_rq_count);
1009 drm_sched_job_begin(sched_job);
1011 trace_drm_run_job(sched_job, entity);
1012 fence = sched->ops->run_job(sched_job);
1013 complete_all(&entity->entity_idle);
1014 drm_sched_fence_scheduled(s_fence);
1016 if (!IS_ERR_OR_NULL(fence)) {
1017 s_fence->parent = dma_fence_get(fence);
1018 /* Drop for original kref_init of the fence */
1019 dma_fence_put(fence);
1021 r = dma_fence_add_callback(fence, &sched_job->cb,
1022 drm_sched_job_done_cb);
1024 drm_sched_job_done(sched_job);
1026 DRM_DEV_ERROR(sched->dev, "fence add callback failed (%d)\n",
1030 dma_fence_set_error(&s_fence->finished, PTR_ERR(fence));
1032 drm_sched_job_done(sched_job);
1035 wake_up(&sched->job_scheduled);
1041 * drm_sched_init - Init a gpu scheduler instance
1043 * @sched: scheduler instance
1044 * @ops: backend operations for this scheduler
1045 * @hw_submission: number of hw submissions that can be in flight
1046 * @hang_limit: number of times to allow a job to hang before dropping it
1047 * @timeout: timeout value in jiffies for the scheduler
1048 * @timeout_wq: workqueue to use for timeout work. If NULL, the system_wq is
1050 * @score: optional score atomic shared with other schedulers
1051 * @name: name used for debugging
1052 * @dev: target &struct device
1054 * Return 0 on success, otherwise error code.
1056 int drm_sched_init(struct drm_gpu_scheduler *sched,
1057 const struct drm_sched_backend_ops *ops,
1058 unsigned hw_submission, unsigned hang_limit,
1059 long timeout, struct workqueue_struct *timeout_wq,
1060 atomic_t *score, const char *name, struct device *dev)
1064 sched->hw_submission_limit = hw_submission;
1066 sched->timeout = timeout;
1067 sched->timeout_wq = timeout_wq ? : system_wq;
1068 sched->hang_limit = hang_limit;
1069 sched->score = score ? score : &sched->_score;
1071 for (i = DRM_SCHED_PRIORITY_MIN; i < DRM_SCHED_PRIORITY_COUNT; i++)
1072 drm_sched_rq_init(sched, &sched->sched_rq[i]);
1074 init_waitqueue_head(&sched->wake_up_worker);
1075 init_waitqueue_head(&sched->job_scheduled);
1076 INIT_LIST_HEAD(&sched->pending_list);
1077 spin_lock_init(&sched->job_list_lock);
1078 atomic_set(&sched->hw_rq_count, 0);
1079 INIT_DELAYED_WORK(&sched->work_tdr, drm_sched_job_timedout);
1080 atomic_set(&sched->_score, 0);
1081 atomic64_set(&sched->job_id_count, 0);
1083 /* Each scheduler will run on a seperate kernel thread */
1084 sched->thread = kthread_run(drm_sched_main, sched, sched->name);
1085 if (IS_ERR(sched->thread)) {
1086 ret = PTR_ERR(sched->thread);
1087 sched->thread = NULL;
1088 DRM_DEV_ERROR(sched->dev, "Failed to create scheduler for %s.\n", name);
1092 sched->ready = true;
1095 EXPORT_SYMBOL(drm_sched_init);
1098 * drm_sched_fini - Destroy a gpu scheduler
1100 * @sched: scheduler instance
1102 * Tears down and cleans up the scheduler.
1104 void drm_sched_fini(struct drm_gpu_scheduler *sched)
1106 struct drm_sched_entity *s_entity;
1110 kthread_stop(sched->thread);
1112 for (i = DRM_SCHED_PRIORITY_COUNT - 1; i >= DRM_SCHED_PRIORITY_MIN; i--) {
1113 struct drm_sched_rq *rq = &sched->sched_rq[i];
1118 spin_lock(&rq->lock);
1119 list_for_each_entry(s_entity, &rq->entities, list)
1121 * Prevents reinsertion and marks job_queue as idle,
1122 * it will removed from rq in drm_sched_entity_fini
1125 s_entity->stopped = true;
1126 spin_unlock(&rq->lock);
1130 /* Wakeup everyone stuck in drm_sched_entity_flush for this scheduler */
1131 wake_up_all(&sched->job_scheduled);
1133 /* Confirm no work left behind accessing device structures */
1134 cancel_delayed_work_sync(&sched->work_tdr);
1136 sched->ready = false;
1138 EXPORT_SYMBOL(drm_sched_fini);
1141 * drm_sched_increase_karma - Update sched_entity guilty flag
1143 * @bad: The job guilty of time out
1145 * Increment on every hang caused by the 'bad' job. If this exceeds the hang
1146 * limit of the scheduler then the respective sched entity is marked guilty and
1147 * jobs from it will not be scheduled further
1149 void drm_sched_increase_karma(struct drm_sched_job *bad)
1152 struct drm_sched_entity *tmp;
1153 struct drm_sched_entity *entity;
1154 struct drm_gpu_scheduler *sched = bad->sched;
1156 /* don't change @bad's karma if it's from KERNEL RQ,
1157 * because sometimes GPU hang would cause kernel jobs (like VM updating jobs)
1158 * corrupt but keep in mind that kernel jobs always considered good.
1160 if (bad->s_priority != DRM_SCHED_PRIORITY_KERNEL) {
1161 atomic_inc(&bad->karma);
1163 for (i = DRM_SCHED_PRIORITY_MIN; i < DRM_SCHED_PRIORITY_KERNEL;
1165 struct drm_sched_rq *rq = &sched->sched_rq[i];
1167 spin_lock(&rq->lock);
1168 list_for_each_entry_safe(entity, tmp, &rq->entities, list) {
1169 if (bad->s_fence->scheduled.context ==
1170 entity->fence_context) {
1172 atomic_set(entity->guilty, 1);
1176 spin_unlock(&rq->lock);
1177 if (&entity->list != &rq->entities)
1182 EXPORT_SYMBOL(drm_sched_increase_karma);