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.
24 #include <linux/kthread.h>
25 #include <drm/gpu_scheduler.h>
27 #include "gpu_scheduler_trace.h"
29 #define to_drm_sched_job(sched_job) \
30 container_of((sched_job), struct drm_sched_job, queue_node)
33 * drm_sched_entity_init - Init a context entity used by scheduler when
36 * @entity: scheduler entity to init
37 * @rq_list: the list of run queue on which jobs from this
38 * entity can be submitted
39 * @num_rq_list: number of run queue in rq_list
40 * @guilty: atomic_t set to 1 when a job on this queue
41 * is found to be guilty causing a timeout
43 * Note: the rq_list should have atleast one element to schedule
46 * Returns 0 on success or a negative error code on failure.
48 int drm_sched_entity_init(struct drm_sched_entity *entity,
49 struct drm_sched_rq **rq_list,
50 unsigned int num_rq_list,
55 if (!(entity && rq_list && num_rq_list > 0 && rq_list[0]))
58 memset(entity, 0, sizeof(struct drm_sched_entity));
59 INIT_LIST_HEAD(&entity->list);
60 entity->rq = rq_list[0];
61 entity->guilty = guilty;
62 entity->num_rq_list = num_rq_list;
63 entity->rq_list = kcalloc(num_rq_list, sizeof(struct drm_sched_rq *),
68 for (i = 0; i < num_rq_list; ++i)
69 entity->rq_list[i] = rq_list[i];
70 entity->last_scheduled = NULL;
72 spin_lock_init(&entity->rq_lock);
73 spsc_queue_init(&entity->job_queue);
75 atomic_set(&entity->fence_seq, 0);
76 entity->fence_context = dma_fence_context_alloc(2);
80 EXPORT_SYMBOL(drm_sched_entity_init);
83 * drm_sched_entity_is_idle - Check if entity is idle
85 * @entity: scheduler entity
87 * Returns true if the entity does not have any unscheduled jobs.
89 static bool drm_sched_entity_is_idle(struct drm_sched_entity *entity)
91 rmb(); /* for list_empty to work without lock */
93 if (list_empty(&entity->list) ||
94 spsc_queue_peek(&entity->job_queue) == NULL)
101 * drm_sched_entity_is_ready - Check if entity is ready
103 * @entity: scheduler entity
105 * Return true if entity could provide a job.
107 bool drm_sched_entity_is_ready(struct drm_sched_entity *entity)
109 if (spsc_queue_peek(&entity->job_queue) == NULL)
112 if (READ_ONCE(entity->dependency))
119 * drm_sched_entity_get_free_sched - Get the rq from rq_list with least load
121 * @entity: scheduler entity
123 * Return the pointer to the rq with least load.
125 static struct drm_sched_rq *
126 drm_sched_entity_get_free_sched(struct drm_sched_entity *entity)
128 struct drm_sched_rq *rq = NULL;
129 unsigned int min_jobs = UINT_MAX, num_jobs;
132 for (i = 0; i < entity->num_rq_list; ++i) {
133 num_jobs = atomic_read(&entity->rq_list[i]->sched->num_jobs);
134 if (num_jobs < min_jobs) {
136 rq = entity->rq_list[i];
144 * drm_sched_entity_flush - Flush a context entity
146 * @entity: scheduler entity
147 * @timeout: time to wait in for Q to become empty in jiffies.
149 * Splitting drm_sched_entity_fini() into two functions, The first one does the
150 * waiting, removes the entity from the runqueue and returns an error when the
151 * process was killed.
153 * Returns the remaining time in jiffies left from the input timeout
155 long drm_sched_entity_flush(struct drm_sched_entity *entity, long timeout)
157 struct drm_gpu_scheduler *sched;
158 struct task_struct *last_user;
161 sched = entity->rq->sched;
163 * The client will not queue more IBs during this fini, consume existing
164 * queued IBs or discard them on SIGKILL
166 if (current->flags & PF_EXITING) {
168 ret = wait_event_timeout(
169 sched->job_scheduled,
170 drm_sched_entity_is_idle(entity),
173 wait_event_killable(sched->job_scheduled,
174 drm_sched_entity_is_idle(entity));
177 /* For killed process disable any more IBs enqueue right now */
178 last_user = cmpxchg(&entity->last_user, current->group_leader, NULL);
179 if ((!last_user || last_user == current->group_leader) &&
180 (current->flags & PF_EXITING) && (current->exit_code == SIGKILL)) {
181 spin_lock(&entity->rq_lock);
182 entity->stopped = true;
183 drm_sched_rq_remove_entity(entity->rq, entity);
184 spin_unlock(&entity->rq_lock);
189 EXPORT_SYMBOL(drm_sched_entity_flush);
192 * drm_sched_entity_kill_jobs - helper for drm_sched_entity_kill_jobs
195 * @cb: our callback structure
197 * Signal the scheduler finished fence when the entity in question is killed.
199 static void drm_sched_entity_kill_jobs_cb(struct dma_fence *f,
200 struct dma_fence_cb *cb)
202 struct drm_sched_job *job = container_of(cb, struct drm_sched_job,
205 drm_sched_fence_finished(job->s_fence);
206 WARN_ON(job->s_fence->parent);
207 dma_fence_put(&job->s_fence->finished);
208 job->sched->ops->free_job(job);
212 * drm_sched_entity_kill_jobs - Make sure all remaining jobs are killed
214 * @entity: entity which is cleaned up
216 * Makes sure that all remaining jobs in an entity are killed before it is
219 static void drm_sched_entity_kill_jobs(struct drm_sched_entity *entity)
221 struct drm_sched_job *job;
224 while ((job = to_drm_sched_job(spsc_queue_pop(&entity->job_queue)))) {
225 struct drm_sched_fence *s_fence = job->s_fence;
227 drm_sched_fence_scheduled(s_fence);
228 dma_fence_set_error(&s_fence->finished, -ESRCH);
231 * When pipe is hanged by older entity, new entity might
232 * not even have chance to submit it's first job to HW
233 * and so entity->last_scheduled will remain NULL
235 if (!entity->last_scheduled) {
236 drm_sched_entity_kill_jobs_cb(NULL, &job->finish_cb);
240 r = dma_fence_add_callback(entity->last_scheduled,
242 drm_sched_entity_kill_jobs_cb);
244 drm_sched_entity_kill_jobs_cb(NULL, &job->finish_cb);
246 DRM_ERROR("fence add callback failed (%d)\n", r);
251 * drm_sched_entity_cleanup - Destroy a context entity
253 * @entity: scheduler entity
255 * This should be called after @drm_sched_entity_do_release. It goes over the
256 * entity and signals all jobs with an error code if the process was killed.
259 void drm_sched_entity_fini(struct drm_sched_entity *entity)
261 struct drm_gpu_scheduler *sched;
263 sched = entity->rq->sched;
264 drm_sched_rq_remove_entity(entity->rq, entity);
266 /* Consumption of existing IBs wasn't completed. Forcefully
269 if (spsc_queue_peek(&entity->job_queue)) {
270 /* Park the kernel for a moment to make sure it isn't processing
273 kthread_park(sched->thread);
274 kthread_unpark(sched->thread);
275 if (entity->dependency) {
276 dma_fence_remove_callback(entity->dependency,
278 dma_fence_put(entity->dependency);
279 entity->dependency = NULL;
282 drm_sched_entity_kill_jobs(entity);
285 dma_fence_put(entity->last_scheduled);
286 entity->last_scheduled = NULL;
287 kfree(entity->rq_list);
289 EXPORT_SYMBOL(drm_sched_entity_fini);
292 * drm_sched_entity_fini - Destroy a context entity
294 * @entity: scheduler entity
296 * Calls drm_sched_entity_do_release() and drm_sched_entity_cleanup()
298 void drm_sched_entity_destroy(struct drm_sched_entity *entity)
300 drm_sched_entity_flush(entity, MAX_WAIT_SCHED_ENTITY_Q_EMPTY);
301 drm_sched_entity_fini(entity);
303 EXPORT_SYMBOL(drm_sched_entity_destroy);
306 * drm_sched_entity_clear_dep - callback to clear the entities dependency
308 static void drm_sched_entity_clear_dep(struct dma_fence *f,
309 struct dma_fence_cb *cb)
311 struct drm_sched_entity *entity =
312 container_of(cb, struct drm_sched_entity, cb);
314 entity->dependency = NULL;
319 * drm_sched_entity_clear_dep - callback to clear the entities dependency and
322 static void drm_sched_entity_wakeup(struct dma_fence *f,
323 struct dma_fence_cb *cb)
325 struct drm_sched_entity *entity =
326 container_of(cb, struct drm_sched_entity, cb);
328 drm_sched_entity_clear_dep(f, cb);
329 drm_sched_wakeup(entity->rq->sched);
333 * drm_sched_entity_set_rq_priority - helper for drm_sched_entity_set_priority
335 static void drm_sched_entity_set_rq_priority(struct drm_sched_rq **rq,
336 enum drm_sched_priority priority)
338 *rq = &(*rq)->sched->sched_rq[priority];
342 * drm_sched_entity_set_priority - Sets priority of the entity
344 * @entity: scheduler entity
345 * @priority: scheduler priority
347 * Update the priority of runqueus used for the entity.
349 void drm_sched_entity_set_priority(struct drm_sched_entity *entity,
350 enum drm_sched_priority priority)
354 spin_lock(&entity->rq_lock);
356 for (i = 0; i < entity->num_rq_list; ++i)
357 drm_sched_entity_set_rq_priority(&entity->rq_list[i], priority);
359 drm_sched_rq_remove_entity(entity->rq, entity);
360 drm_sched_entity_set_rq_priority(&entity->rq, priority);
361 drm_sched_rq_add_entity(entity->rq, entity);
363 spin_unlock(&entity->rq_lock);
365 EXPORT_SYMBOL(drm_sched_entity_set_priority);
368 * drm_sched_entity_add_dependency_cb - add callback for the entities dependency
370 * @entity: entity with dependency
372 * Add a callback to the current dependency of the entity to wake up the
373 * scheduler when the entity becomes available.
375 static bool drm_sched_entity_add_dependency_cb(struct drm_sched_entity *entity)
377 struct drm_gpu_scheduler *sched = entity->rq->sched;
378 struct dma_fence *fence = entity->dependency;
379 struct drm_sched_fence *s_fence;
381 if (fence->context == entity->fence_context ||
382 fence->context == entity->fence_context + 1) {
384 * Fence is a scheduled/finished fence from a job
385 * which belongs to the same entity, we can ignore
386 * fences from ourself
388 dma_fence_put(entity->dependency);
392 s_fence = to_drm_sched_fence(fence);
393 if (s_fence && s_fence->sched == sched) {
396 * Fence is from the same scheduler, only need to wait for
399 fence = dma_fence_get(&s_fence->scheduled);
400 dma_fence_put(entity->dependency);
401 entity->dependency = fence;
402 if (!dma_fence_add_callback(fence, &entity->cb,
403 drm_sched_entity_clear_dep))
406 /* Ignore it when it is already scheduled */
407 dma_fence_put(fence);
411 if (!dma_fence_add_callback(entity->dependency, &entity->cb,
412 drm_sched_entity_wakeup))
415 dma_fence_put(entity->dependency);
420 * drm_sched_entity_pop_job - get a ready to be scheduled job from the entity
422 * @entity: entity to get the job from
424 * Process all dependencies and try to get one job from the entities queue.
426 struct drm_sched_job *drm_sched_entity_pop_job(struct drm_sched_entity *entity)
428 struct drm_gpu_scheduler *sched = entity->rq->sched;
429 struct drm_sched_job *sched_job;
431 sched_job = to_drm_sched_job(spsc_queue_peek(&entity->job_queue));
435 while ((entity->dependency =
436 sched->ops->dependency(sched_job, entity))) {
438 if (drm_sched_entity_add_dependency_cb(entity)) {
440 trace_drm_sched_job_wait_dep(sched_job,
446 /* skip jobs from entity that marked guilty */
447 if (entity->guilty && atomic_read(entity->guilty))
448 dma_fence_set_error(&sched_job->s_fence->finished, -ECANCELED);
450 dma_fence_put(entity->last_scheduled);
451 entity->last_scheduled = dma_fence_get(&sched_job->s_fence->finished);
453 spsc_queue_pop(&entity->job_queue);
458 * drm_sched_entity_select_rq - select a new rq for the entity
460 * @entity: scheduler entity
462 * Check all prerequisites and select a new rq for the entity for load
465 void drm_sched_entity_select_rq(struct drm_sched_entity *entity)
467 struct dma_fence *fence;
468 struct drm_sched_rq *rq;
470 if (spsc_queue_count(&entity->job_queue) || entity->num_rq_list <= 1)
473 fence = READ_ONCE(entity->last_scheduled);
474 if (fence && !dma_fence_is_signaled(fence))
477 rq = drm_sched_entity_get_free_sched(entity);
478 if (rq == entity->rq)
481 spin_lock(&entity->rq_lock);
482 drm_sched_rq_remove_entity(entity->rq, entity);
484 spin_unlock(&entity->rq_lock);
488 * drm_sched_entity_push_job - Submit a job to the entity's job queue
490 * @sched_job: job to submit
491 * @entity: scheduler entity
493 * Note: To guarantee that the order of insertion to queue matches
494 * the job's fence sequence number this function should be
495 * called with drm_sched_job_init under common lock.
497 * Returns 0 for success, negative error code otherwise.
499 void drm_sched_entity_push_job(struct drm_sched_job *sched_job,
500 struct drm_sched_entity *entity)
504 trace_drm_sched_job(sched_job, entity);
505 atomic_inc(&entity->rq->sched->num_jobs);
506 WRITE_ONCE(entity->last_user, current->group_leader);
507 first = spsc_queue_push(&entity->job_queue, &sched_job->queue_node);
509 /* first job wakes up scheduler */
511 /* Add the entity to the run queue */
512 spin_lock(&entity->rq_lock);
513 if (entity->stopped) {
514 spin_unlock(&entity->rq_lock);
516 DRM_ERROR("Trying to push to a killed entity\n");
519 drm_sched_rq_add_entity(entity->rq, entity);
520 spin_unlock(&entity->rq_lock);
521 drm_sched_wakeup(entity->rq->sched);
524 EXPORT_SYMBOL(drm_sched_entity_push_job);