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 <linux/slab.h>
26 #include <linux/completion.h>
28 #include <drm/drm_print.h>
29 #include <drm/gpu_scheduler.h>
31 #include "gpu_scheduler_trace.h"
33 #define to_drm_sched_job(sched_job) \
34 container_of((sched_job), struct drm_sched_job, queue_node)
37 * drm_sched_entity_init - Init a context entity used by scheduler when
40 * @entity: scheduler entity to init
41 * @priority: priority of the entity
42 * @sched_list: the list of drm scheds on which jobs from this
43 * entity can be submitted
44 * @num_sched_list: number of drm sched in sched_list
45 * @guilty: atomic_t set to 1 when a job on this queue
46 * is found to be guilty causing a timeout
48 * Note: the sched_list should have at least one element to schedule
51 * Returns 0 on success or a negative error code on failure.
53 int drm_sched_entity_init(struct drm_sched_entity
*entity
,
54 enum drm_sched_priority priority
,
55 struct drm_gpu_scheduler
**sched_list
,
56 unsigned int num_sched_list
,
59 if (!(entity
&& sched_list
&& (num_sched_list
== 0 || sched_list
[0])))
62 memset(entity
, 0, sizeof(struct drm_sched_entity
));
63 INIT_LIST_HEAD(&entity
->list
);
65 entity
->guilty
= guilty
;
66 entity
->num_sched_list
= num_sched_list
;
67 entity
->priority
= priority
;
68 entity
->sched_list
= num_sched_list
> 1 ? sched_list
: NULL
;
69 entity
->last_scheduled
= NULL
;
72 entity
->rq
= &sched_list
[0]->sched_rq
[entity
->priority
];
74 init_completion(&entity
->entity_idle
);
76 spin_lock_init(&entity
->rq_lock
);
77 spsc_queue_init(&entity
->job_queue
);
79 atomic_set(&entity
->fence_seq
, 0);
80 entity
->fence_context
= dma_fence_context_alloc(2);
84 EXPORT_SYMBOL(drm_sched_entity_init
);
87 * drm_sched_entity_modify_sched - Modify sched of an entity
88 * @entity: scheduler entity to init
89 * @sched_list: the list of new drm scheds which will replace
90 * existing entity->sched_list
91 * @num_sched_list: number of drm sched in sched_list
93 void drm_sched_entity_modify_sched(struct drm_sched_entity
*entity
,
94 struct drm_gpu_scheduler
**sched_list
,
95 unsigned int num_sched_list
)
97 WARN_ON(!num_sched_list
|| !sched_list
);
99 entity
->sched_list
= sched_list
;
100 entity
->num_sched_list
= num_sched_list
;
102 EXPORT_SYMBOL(drm_sched_entity_modify_sched
);
105 * drm_sched_entity_is_idle - Check if entity is idle
107 * @entity: scheduler entity
109 * Returns true if the entity does not have any unscheduled jobs.
111 static bool drm_sched_entity_is_idle(struct drm_sched_entity
*entity
)
113 rmb(); /* for list_empty to work without lock */
115 if (list_empty(&entity
->list
) ||
116 spsc_queue_count(&entity
->job_queue
) == 0)
123 * drm_sched_entity_is_ready - Check if entity is ready
125 * @entity: scheduler entity
127 * Return true if entity could provide a job.
129 bool drm_sched_entity_is_ready(struct drm_sched_entity
*entity
)
131 if (spsc_queue_peek(&entity
->job_queue
) == NULL
)
134 if (READ_ONCE(entity
->dependency
))
141 * drm_sched_entity_flush - Flush a context entity
143 * @entity: scheduler entity
144 * @timeout: time to wait in for Q to become empty in jiffies.
146 * Splitting drm_sched_entity_fini() into two functions, The first one does the
147 * waiting, removes the entity from the runqueue and returns an error when the
148 * process was killed.
150 * Returns the remaining time in jiffies left from the input timeout
152 long drm_sched_entity_flush(struct drm_sched_entity
*entity
, long timeout
)
154 struct drm_gpu_scheduler
*sched
;
155 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 job
->sched
->ops
->free_job(job
);
211 * drm_sched_entity_kill_jobs - Make sure all remaining jobs are killed
213 * @entity: entity which is cleaned up
215 * Makes sure that all remaining jobs in an entity are killed before it is
218 static void drm_sched_entity_kill_jobs(struct drm_sched_entity
*entity
)
220 struct drm_sched_job
*job
;
223 while ((job
= to_drm_sched_job(spsc_queue_pop(&entity
->job_queue
)))) {
224 struct drm_sched_fence
*s_fence
= job
->s_fence
;
226 drm_sched_fence_scheduled(s_fence
);
227 dma_fence_set_error(&s_fence
->finished
, -ESRCH
);
230 * When pipe is hanged by older entity, new entity might
231 * not even have chance to submit it's first job to HW
232 * and so entity->last_scheduled will remain NULL
234 if (!entity
->last_scheduled
) {
235 drm_sched_entity_kill_jobs_cb(NULL
, &job
->finish_cb
);
239 r
= dma_fence_add_callback(entity
->last_scheduled
,
241 drm_sched_entity_kill_jobs_cb
);
243 drm_sched_entity_kill_jobs_cb(NULL
, &job
->finish_cb
);
245 DRM_ERROR("fence add callback failed (%d)\n", r
);
250 * drm_sched_entity_cleanup - Destroy a context entity
252 * @entity: scheduler entity
254 * This should be called after @drm_sched_entity_do_release. It goes over the
255 * entity and signals all jobs with an error code if the process was killed.
258 void drm_sched_entity_fini(struct drm_sched_entity
*entity
)
260 struct drm_gpu_scheduler
*sched
= NULL
;
263 sched
= entity
->rq
->sched
;
264 drm_sched_rq_remove_entity(entity
->rq
, entity
);
267 /* Consumption of existing IBs wasn't completed. Forcefully
270 if (spsc_queue_count(&entity
->job_queue
)) {
273 * Wait for thread to idle to make sure it isn't processing
276 wait_for_completion(&entity
->entity_idle
);
279 if (entity
->dependency
) {
280 dma_fence_remove_callback(entity
->dependency
,
282 dma_fence_put(entity
->dependency
);
283 entity
->dependency
= NULL
;
286 drm_sched_entity_kill_jobs(entity
);
289 dma_fence_put(entity
->last_scheduled
);
290 entity
->last_scheduled
= NULL
;
292 EXPORT_SYMBOL(drm_sched_entity_fini
);
295 * drm_sched_entity_fini - Destroy a context entity
297 * @entity: scheduler entity
299 * Calls drm_sched_entity_do_release() and drm_sched_entity_cleanup()
301 void drm_sched_entity_destroy(struct drm_sched_entity
*entity
)
303 drm_sched_entity_flush(entity
, MAX_WAIT_SCHED_ENTITY_Q_EMPTY
);
304 drm_sched_entity_fini(entity
);
306 EXPORT_SYMBOL(drm_sched_entity_destroy
);
309 * drm_sched_entity_clear_dep - callback to clear the entities dependency
311 static void drm_sched_entity_clear_dep(struct dma_fence
*f
,
312 struct dma_fence_cb
*cb
)
314 struct drm_sched_entity
*entity
=
315 container_of(cb
, struct drm_sched_entity
, cb
);
317 entity
->dependency
= NULL
;
322 * drm_sched_entity_clear_dep - callback to clear the entities dependency and
325 static void drm_sched_entity_wakeup(struct dma_fence
*f
,
326 struct dma_fence_cb
*cb
)
328 struct drm_sched_entity
*entity
=
329 container_of(cb
, struct drm_sched_entity
, cb
);
331 drm_sched_entity_clear_dep(f
, cb
);
332 drm_sched_wakeup(entity
->rq
->sched
);
336 * drm_sched_entity_set_priority - Sets priority of the entity
338 * @entity: scheduler entity
339 * @priority: scheduler priority
341 * Update the priority of runqueus used for the entity.
343 void drm_sched_entity_set_priority(struct drm_sched_entity
*entity
,
344 enum drm_sched_priority priority
)
346 spin_lock(&entity
->rq_lock
);
347 entity
->priority
= priority
;
348 spin_unlock(&entity
->rq_lock
);
350 EXPORT_SYMBOL(drm_sched_entity_set_priority
);
353 * drm_sched_entity_add_dependency_cb - add callback for the entities dependency
355 * @entity: entity with dependency
357 * Add a callback to the current dependency of the entity to wake up the
358 * scheduler when the entity becomes available.
360 static bool drm_sched_entity_add_dependency_cb(struct drm_sched_entity
*entity
)
362 struct drm_gpu_scheduler
*sched
= entity
->rq
->sched
;
363 struct dma_fence
*fence
= entity
->dependency
;
364 struct drm_sched_fence
*s_fence
;
366 if (fence
->context
== entity
->fence_context
||
367 fence
->context
== entity
->fence_context
+ 1) {
369 * Fence is a scheduled/finished fence from a job
370 * which belongs to the same entity, we can ignore
371 * fences from ourself
373 dma_fence_put(entity
->dependency
);
377 s_fence
= to_drm_sched_fence(fence
);
378 if (s_fence
&& s_fence
->sched
== sched
) {
381 * Fence is from the same scheduler, only need to wait for
384 fence
= dma_fence_get(&s_fence
->scheduled
);
385 dma_fence_put(entity
->dependency
);
386 entity
->dependency
= fence
;
387 if (!dma_fence_add_callback(fence
, &entity
->cb
,
388 drm_sched_entity_clear_dep
))
391 /* Ignore it when it is already scheduled */
392 dma_fence_put(fence
);
396 if (!dma_fence_add_callback(entity
->dependency
, &entity
->cb
,
397 drm_sched_entity_wakeup
))
400 dma_fence_put(entity
->dependency
);
405 * drm_sched_entity_pop_job - get a ready to be scheduled job from the entity
407 * @entity: entity to get the job from
409 * Process all dependencies and try to get one job from the entities queue.
411 struct drm_sched_job
*drm_sched_entity_pop_job(struct drm_sched_entity
*entity
)
413 struct drm_gpu_scheduler
*sched
= entity
->rq
->sched
;
414 struct drm_sched_job
*sched_job
;
416 sched_job
= to_drm_sched_job(spsc_queue_peek(&entity
->job_queue
));
420 while ((entity
->dependency
=
421 sched
->ops
->dependency(sched_job
, entity
))) {
422 trace_drm_sched_job_wait_dep(sched_job
, entity
->dependency
);
424 if (drm_sched_entity_add_dependency_cb(entity
))
428 /* skip jobs from entity that marked guilty */
429 if (entity
->guilty
&& atomic_read(entity
->guilty
))
430 dma_fence_set_error(&sched_job
->s_fence
->finished
, -ECANCELED
);
432 dma_fence_put(entity
->last_scheduled
);
433 entity
->last_scheduled
= dma_fence_get(&sched_job
->s_fence
->finished
);
435 spsc_queue_pop(&entity
->job_queue
);
440 * drm_sched_entity_select_rq - select a new rq for the entity
442 * @entity: scheduler entity
444 * Check all prerequisites and select a new rq for the entity for load
447 void drm_sched_entity_select_rq(struct drm_sched_entity
*entity
)
449 struct dma_fence
*fence
;
450 struct drm_gpu_scheduler
*sched
;
451 struct drm_sched_rq
*rq
;
453 if (spsc_queue_count(&entity
->job_queue
) || entity
->num_sched_list
<= 1)
456 fence
= READ_ONCE(entity
->last_scheduled
);
457 if (fence
&& !dma_fence_is_signaled(fence
))
460 spin_lock(&entity
->rq_lock
);
461 sched
= drm_sched_pick_best(entity
->sched_list
, entity
->num_sched_list
);
462 rq
= sched
? &sched
->sched_rq
[entity
->priority
] : NULL
;
463 if (rq
!= entity
->rq
) {
464 drm_sched_rq_remove_entity(entity
->rq
, entity
);
468 spin_unlock(&entity
->rq_lock
);
472 * drm_sched_entity_push_job - Submit a job to the entity's job queue
474 * @sched_job: job to submit
475 * @entity: scheduler entity
477 * Note: To guarantee that the order of insertion to queue matches
478 * the job's fence sequence number this function should be
479 * called with drm_sched_job_init under common lock.
481 * Returns 0 for success, negative error code otherwise.
483 void drm_sched_entity_push_job(struct drm_sched_job
*sched_job
,
484 struct drm_sched_entity
*entity
)
488 trace_drm_sched_job(sched_job
, entity
);
489 atomic_inc(&entity
->rq
->sched
->score
);
490 WRITE_ONCE(entity
->last_user
, current
->group_leader
);
491 first
= spsc_queue_push(&entity
->job_queue
, &sched_job
->queue_node
);
493 /* first job wakes up scheduler */
495 /* Add the entity to the run queue */
496 spin_lock(&entity
->rq_lock
);
497 if (entity
->stopped
) {
498 spin_unlock(&entity
->rq_lock
);
500 DRM_ERROR("Trying to push to a killed entity\n");
503 drm_sched_rq_add_entity(entity
->rq
, entity
);
504 spin_unlock(&entity
->rq_lock
);
505 drm_sched_wakeup(entity
->rq
->sched
);
508 EXPORT_SYMBOL(drm_sched_entity_push_job
);