2018-08-06 14:25:32 +02:00
|
|
|
/*
|
|
|
|
* Copyright 2015 Advanced Micro Devices, Inc.
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
* copy of this software and associated documentation files (the "Software"),
|
|
|
|
* to deal in the Software without restriction, including without limitation
|
|
|
|
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
|
|
|
* and/or sell copies of the Software, and to permit persons to whom the
|
|
|
|
* Software is furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
|
|
|
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
|
|
|
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
|
|
|
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
|
|
|
* OTHER DEALINGS IN THE SOFTWARE.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/kthread.h>
|
2019-06-30 08:19:14 +02:00
|
|
|
#include <linux/slab.h>
|
2019-11-04 16:30:05 -05:00
|
|
|
#include <linux/completion.h>
|
2019-06-30 08:19:14 +02:00
|
|
|
|
|
|
|
#include <drm/drm_print.h>
|
2018-08-06 14:25:32 +02:00
|
|
|
#include <drm/gpu_scheduler.h>
|
|
|
|
|
2025-02-21 10:50:33 +00:00
|
|
|
#include "sched_internal.h"
|
2018-08-06 14:25:32 +02:00
|
|
|
|
2025-02-21 10:50:33 +00:00
|
|
|
#include "gpu_scheduler_trace.h"
|
2018-08-06 14:25:32 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* drm_sched_entity_init - Init a context entity used by scheduler when
|
|
|
|
* submit to HW ring.
|
|
|
|
*
|
|
|
|
* @entity: scheduler entity to init
|
2019-12-05 11:38:00 +01:00
|
|
|
* @priority: priority of the entity
|
|
|
|
* @sched_list: the list of drm scheds on which jobs from this
|
2018-08-06 14:25:32 +02:00
|
|
|
* entity can be submitted
|
2019-12-05 11:38:00 +01:00
|
|
|
* @num_sched_list: number of drm sched in sched_list
|
2018-08-06 14:25:32 +02:00
|
|
|
* @guilty: atomic_t set to 1 when a job on this queue
|
|
|
|
* is found to be guilty causing a timeout
|
|
|
|
*
|
2021-08-05 12:46:51 +02:00
|
|
|
* Note that the &sched_list must have at least one element to schedule the entity.
|
|
|
|
*
|
|
|
|
* For changing @priority later on at runtime see
|
|
|
|
* drm_sched_entity_set_priority(). For changing the set of schedulers
|
|
|
|
* @sched_list at runtime see drm_sched_entity_modify_sched().
|
|
|
|
*
|
2024-09-17 14:47:32 +00:00
|
|
|
* An entity is cleaned up by calling drm_sched_entity_fini(). See also
|
2021-08-05 12:46:51 +02:00
|
|
|
* drm_sched_entity_destroy().
|
2018-08-06 14:25:32 +02:00
|
|
|
*
|
|
|
|
* Returns 0 on success or a negative error code on failure.
|
2018-08-06 14:58:56 +02:00
|
|
|
*/
|
2018-08-06 14:25:32 +02:00
|
|
|
int drm_sched_entity_init(struct drm_sched_entity *entity,
|
2019-12-05 11:38:00 +01:00
|
|
|
enum drm_sched_priority priority,
|
|
|
|
struct drm_gpu_scheduler **sched_list,
|
|
|
|
unsigned int num_sched_list,
|
2018-08-06 14:25:32 +02:00
|
|
|
atomic_t *guilty)
|
|
|
|
{
|
2019-12-05 11:38:00 +01:00
|
|
|
if (!(entity && sched_list && (num_sched_list == 0 || sched_list[0])))
|
2018-08-06 14:25:32 +02:00
|
|
|
return -EINVAL;
|
|
|
|
|
|
|
|
memset(entity, 0, sizeof(struct drm_sched_entity));
|
|
|
|
INIT_LIST_HEAD(&entity->list);
|
2019-01-30 02:53:19 +01:00
|
|
|
entity->rq = NULL;
|
2018-08-06 14:25:32 +02:00
|
|
|
entity->guilty = guilty;
|
2019-12-05 11:38:00 +01:00
|
|
|
entity->num_sched_list = num_sched_list;
|
|
|
|
entity->priority = priority;
|
2024-03-14 22:39:26 -04:00
|
|
|
/*
|
|
|
|
* It's perfectly valid to initialize an entity without having a valid
|
|
|
|
* scheduler attached. It's just not valid to use the scheduler before it
|
|
|
|
* is initialized itself.
|
|
|
|
*/
|
2019-12-09 22:52:25 +01:00
|
|
|
entity->sched_list = num_sched_list > 1 ? sched_list : NULL;
|
2023-04-17 17:32:11 +02:00
|
|
|
RCU_INIT_POINTER(entity->last_scheduled, NULL);
|
2022-09-30 00:12:58 -04:00
|
|
|
RB_CLEAR_NODE(&entity->rb_tree_node);
|
2019-12-05 11:38:00 +01:00
|
|
|
|
2024-03-14 22:39:26 -04:00
|
|
|
if (num_sched_list && !sched_list[0]->sched_rq) {
|
|
|
|
/* Since every entry covered by num_sched_list
|
|
|
|
* should be non-NULL and therefore we warn drivers
|
|
|
|
* not to do this and to fix their DRM calling order.
|
2023-10-14 21:15:35 -04:00
|
|
|
*/
|
|
|
|
pr_warn("%s: called with uninitialized scheduler\n", __func__);
|
|
|
|
} else if (num_sched_list) {
|
2023-11-22 23:58:53 -05:00
|
|
|
/* The "priority" of an entity cannot exceed the number of run-queues of a
|
2023-11-22 22:08:48 -05:00
|
|
|
* scheduler. Protect against num_rqs being 0, by converting to signed. Choose
|
|
|
|
* the lowest priority available.
|
2023-10-14 21:15:35 -04:00
|
|
|
*/
|
2023-11-22 23:58:53 -05:00
|
|
|
if (entity->priority >= sched_list[0]->num_rqs) {
|
|
|
|
drm_err(sched_list[0], "entity with out-of-bounds priority:%u num_rqs:%u\n",
|
|
|
|
entity->priority, sched_list[0]->num_rqs);
|
|
|
|
entity->priority = max_t(s32, (s32) sched_list[0]->num_rqs - 1,
|
2023-11-22 22:08:48 -05:00
|
|
|
(s32) DRM_SCHED_PRIORITY_KERNEL);
|
2023-11-22 23:58:53 -05:00
|
|
|
}
|
2023-10-14 21:15:35 -04:00
|
|
|
entity->rq = sched_list[0]->sched_rq[entity->priority];
|
|
|
|
}
|
2018-08-06 14:25:32 +02:00
|
|
|
|
2019-11-04 16:30:05 -05:00
|
|
|
init_completion(&entity->entity_idle);
|
|
|
|
|
2020-10-02 08:55:18 +02:00
|
|
|
/* We start in an idle state. */
|
2022-11-23 03:13:03 +03:00
|
|
|
complete_all(&entity->entity_idle);
|
2020-10-02 08:55:18 +02:00
|
|
|
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_lock_init(&entity->lock);
|
2018-08-06 14:25:32 +02:00
|
|
|
spsc_queue_init(&entity->job_queue);
|
|
|
|
|
|
|
|
atomic_set(&entity->fence_seq, 0);
|
|
|
|
entity->fence_context = dma_fence_context_alloc(2);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_sched_entity_init);
|
|
|
|
|
2020-02-27 15:34:15 +01:00
|
|
|
/**
|
|
|
|
* drm_sched_entity_modify_sched - Modify sched of an entity
|
|
|
|
* @entity: scheduler entity to init
|
|
|
|
* @sched_list: the list of new drm scheds which will replace
|
|
|
|
* existing entity->sched_list
|
|
|
|
* @num_sched_list: number of drm sched in sched_list
|
2021-08-05 12:46:51 +02:00
|
|
|
*
|
|
|
|
* Note that this must be called under the same common lock for @entity as
|
|
|
|
* drm_sched_job_arm() and drm_sched_entity_push_job(), or the driver needs to
|
|
|
|
* guarantee through some other means that this is never called while new jobs
|
|
|
|
* can be pushed to @entity.
|
2020-02-27 15:34:15 +01:00
|
|
|
*/
|
|
|
|
void drm_sched_entity_modify_sched(struct drm_sched_entity *entity,
|
|
|
|
struct drm_gpu_scheduler **sched_list,
|
|
|
|
unsigned int num_sched_list)
|
|
|
|
{
|
|
|
|
WARN_ON(!num_sched_list || !sched_list);
|
|
|
|
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_lock(&entity->lock);
|
2020-02-27 15:34:15 +01:00
|
|
|
entity->sched_list = sched_list;
|
|
|
|
entity->num_sched_list = num_sched_list;
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_unlock(&entity->lock);
|
2020-02-27 15:34:15 +01:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_sched_entity_modify_sched);
|
|
|
|
|
2018-08-06 14:25:32 +02:00
|
|
|
static bool drm_sched_entity_is_idle(struct drm_sched_entity *entity)
|
|
|
|
{
|
2018-08-06 14:58:56 +02:00
|
|
|
rmb(); /* for list_empty to work without lock */
|
2018-08-06 14:25:32 +02:00
|
|
|
|
|
|
|
if (list_empty(&entity->list) ||
|
2021-05-12 10:26:45 -04:00
|
|
|
spsc_queue_count(&entity->job_queue) == 0 ||
|
|
|
|
entity->stopped)
|
2018-08-06 14:25:32 +02:00
|
|
|
return true;
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2023-04-17 17:32:11 +02:00
|
|
|
/**
|
|
|
|
* drm_sched_entity_error - return error of last scheduled job
|
|
|
|
* @entity: scheduler entity to check
|
|
|
|
*
|
|
|
|
* Opportunistically return the error of the last scheduled job. Result can
|
|
|
|
* change any time when new jobs are pushed to the hw.
|
|
|
|
*/
|
|
|
|
int drm_sched_entity_error(struct drm_sched_entity *entity)
|
|
|
|
{
|
|
|
|
struct dma_fence *fence;
|
|
|
|
int r;
|
|
|
|
|
|
|
|
rcu_read_lock();
|
|
|
|
fence = rcu_dereference(entity->last_scheduled);
|
|
|
|
r = fence ? fence->error : 0;
|
|
|
|
rcu_read_unlock();
|
|
|
|
|
|
|
|
return r;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_sched_entity_error);
|
|
|
|
|
2022-09-29 14:50:56 +02:00
|
|
|
static void drm_sched_entity_kill_jobs_work(struct work_struct *wrk)
|
|
|
|
{
|
|
|
|
struct drm_sched_job *job = container_of(wrk, typeof(*job), work);
|
|
|
|
|
2023-04-17 13:36:02 +02:00
|
|
|
drm_sched_fence_finished(job->s_fence, -ESRCH);
|
2022-09-29 14:50:56 +02:00
|
|
|
WARN_ON(job->s_fence->parent);
|
|
|
|
job->sched->ops->free_job(job);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Signal the scheduler finished fence when the entity in question is killed. */
|
|
|
|
static void drm_sched_entity_kill_jobs_cb(struct dma_fence *f,
|
|
|
|
struct dma_fence_cb *cb)
|
|
|
|
{
|
|
|
|
struct drm_sched_job *job = container_of(cb, struct drm_sched_job,
|
|
|
|
finish_cb);
|
2023-06-19 09:19:21 +02:00
|
|
|
unsigned long index;
|
2022-09-29 14:50:56 +02:00
|
|
|
|
|
|
|
dma_fence_put(f);
|
|
|
|
|
|
|
|
/* Wait for all dependencies to avoid data corruptions */
|
2023-06-19 09:19:21 +02:00
|
|
|
xa_for_each(&job->dependencies, index, f) {
|
|
|
|
struct drm_sched_fence *s_fence = to_drm_sched_fence(f);
|
|
|
|
|
|
|
|
if (s_fence && f == &s_fence->scheduled) {
|
|
|
|
/* The dependencies array had a reference on the scheduled
|
|
|
|
* fence, and the finished fence refcount might have
|
|
|
|
* dropped to zero. Use dma_fence_get_rcu() so we get
|
|
|
|
* a NULL fence in that case.
|
|
|
|
*/
|
|
|
|
f = dma_fence_get_rcu(&s_fence->finished);
|
|
|
|
|
|
|
|
/* Now that we have a reference on the finished fence,
|
|
|
|
* we can release the reference the dependencies array
|
|
|
|
* had on the scheduled fence.
|
|
|
|
*/
|
|
|
|
dma_fence_put(&s_fence->scheduled);
|
|
|
|
}
|
|
|
|
|
|
|
|
xa_erase(&job->dependencies, index);
|
|
|
|
if (f && !dma_fence_add_callback(f, &job->finish_cb,
|
|
|
|
drm_sched_entity_kill_jobs_cb))
|
2022-09-29 14:50:56 +02:00
|
|
|
return;
|
|
|
|
|
|
|
|
dma_fence_put(f);
|
|
|
|
}
|
|
|
|
|
|
|
|
INIT_WORK(&job->work, drm_sched_entity_kill_jobs_work);
|
|
|
|
schedule_work(&job->work);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Remove the entity from the scheduler and kill all pending jobs */
|
|
|
|
static void drm_sched_entity_kill(struct drm_sched_entity *entity)
|
|
|
|
{
|
|
|
|
struct drm_sched_job *job;
|
|
|
|
struct dma_fence *prev;
|
|
|
|
|
|
|
|
if (!entity->rq)
|
|
|
|
return;
|
|
|
|
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_lock(&entity->lock);
|
2022-09-29 14:50:56 +02:00
|
|
|
entity->stopped = true;
|
|
|
|
drm_sched_rq_remove_entity(entity->rq, entity);
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_unlock(&entity->lock);
|
2022-09-29 14:50:56 +02:00
|
|
|
|
|
|
|
/* Make sure this entity is not used by the scheduler at the moment */
|
|
|
|
wait_for_completion(&entity->entity_idle);
|
|
|
|
|
2023-04-17 17:32:11 +02:00
|
|
|
/* The entity is guaranteed to not be used by the scheduler */
|
|
|
|
prev = rcu_dereference_check(entity->last_scheduled, true);
|
|
|
|
dma_fence_get(prev);
|
2025-02-21 10:50:33 +00:00
|
|
|
while ((job = drm_sched_entity_queue_pop(entity))) {
|
2022-09-29 14:50:56 +02:00
|
|
|
struct drm_sched_fence *s_fence = job->s_fence;
|
|
|
|
|
|
|
|
dma_fence_get(&s_fence->finished);
|
|
|
|
if (!prev || dma_fence_add_callback(prev, &job->finish_cb,
|
|
|
|
drm_sched_entity_kill_jobs_cb))
|
|
|
|
drm_sched_entity_kill_jobs_cb(NULL, &job->finish_cb);
|
|
|
|
|
|
|
|
prev = &s_fence->finished;
|
|
|
|
}
|
|
|
|
dma_fence_put(prev);
|
|
|
|
}
|
|
|
|
|
2018-08-06 14:25:32 +02:00
|
|
|
/**
|
|
|
|
* drm_sched_entity_flush - Flush a context entity
|
|
|
|
*
|
|
|
|
* @entity: scheduler entity
|
|
|
|
* @timeout: time to wait in for Q to become empty in jiffies.
|
|
|
|
*
|
2018-08-06 14:58:56 +02:00
|
|
|
* Splitting drm_sched_entity_fini() into two functions, The first one does the
|
|
|
|
* waiting, removes the entity from the runqueue and returns an error when the
|
|
|
|
* process was killed.
|
2018-08-06 14:25:32 +02:00
|
|
|
*
|
|
|
|
* Returns the remaining time in jiffies left from the input timeout
|
|
|
|
*/
|
|
|
|
long drm_sched_entity_flush(struct drm_sched_entity *entity, long timeout)
|
|
|
|
{
|
|
|
|
struct drm_gpu_scheduler *sched;
|
|
|
|
struct task_struct *last_user;
|
|
|
|
long ret = timeout;
|
|
|
|
|
2019-01-30 02:53:19 +01:00
|
|
|
if (!entity->rq)
|
|
|
|
return 0;
|
|
|
|
|
2018-08-06 14:25:32 +02:00
|
|
|
sched = entity->rq->sched;
|
|
|
|
/**
|
|
|
|
* The client will not queue more IBs during this fini, consume existing
|
|
|
|
* queued IBs or discard them on SIGKILL
|
2018-08-06 14:58:56 +02:00
|
|
|
*/
|
2018-08-06 14:25:32 +02:00
|
|
|
if (current->flags & PF_EXITING) {
|
|
|
|
if (timeout)
|
|
|
|
ret = wait_event_timeout(
|
|
|
|
sched->job_scheduled,
|
|
|
|
drm_sched_entity_is_idle(entity),
|
|
|
|
timeout);
|
|
|
|
} else {
|
|
|
|
wait_event_killable(sched->job_scheduled,
|
|
|
|
drm_sched_entity_is_idle(entity));
|
|
|
|
}
|
|
|
|
|
|
|
|
/* For killed process disable any more IBs enqueue right now */
|
|
|
|
last_user = cmpxchg(&entity->last_user, current->group_leader, NULL);
|
|
|
|
if ((!last_user || last_user == current->group_leader) &&
|
2022-09-29 14:50:56 +02:00
|
|
|
(current->flags & PF_EXITING) && (current->exit_code == SIGKILL))
|
|
|
|
drm_sched_entity_kill(entity);
|
2018-08-06 14:25:32 +02:00
|
|
|
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_sched_entity_flush);
|
|
|
|
|
|
|
|
/**
|
2021-04-16 15:37:09 +01:00
|
|
|
* drm_sched_entity_fini - Destroy a context entity
|
2018-08-06 14:25:32 +02:00
|
|
|
*
|
|
|
|
* @entity: scheduler entity
|
|
|
|
*
|
2021-08-05 12:46:51 +02:00
|
|
|
* Cleanups up @entity which has been initialized by drm_sched_entity_init().
|
2018-08-06 14:25:32 +02:00
|
|
|
*
|
2021-08-05 12:46:51 +02:00
|
|
|
* If there are potentially job still in flight or getting newly queued
|
|
|
|
* drm_sched_entity_flush() must be called first. This function then goes over
|
|
|
|
* the entity and signals all jobs with an error code if the process was killed.
|
2018-08-06 14:25:32 +02:00
|
|
|
*/
|
|
|
|
void drm_sched_entity_fini(struct drm_sched_entity *entity)
|
|
|
|
{
|
2022-09-29 14:50:56 +02:00
|
|
|
/*
|
|
|
|
* If consumption of existing IBs wasn't completed. Forcefully remove
|
|
|
|
* them here. Also makes sure that the scheduler won't touch this entity
|
|
|
|
* any more.
|
2018-08-06 14:25:32 +02:00
|
|
|
*/
|
2022-09-29 14:50:56 +02:00
|
|
|
drm_sched_entity_kill(entity);
|
|
|
|
|
|
|
|
if (entity->dependency) {
|
|
|
|
dma_fence_remove_callback(entity->dependency, &entity->cb);
|
|
|
|
dma_fence_put(entity->dependency);
|
|
|
|
entity->dependency = NULL;
|
2018-08-06 14:25:32 +02:00
|
|
|
}
|
|
|
|
|
2023-04-17 17:32:11 +02:00
|
|
|
dma_fence_put(rcu_dereference_check(entity->last_scheduled, true));
|
|
|
|
RCU_INIT_POINTER(entity->last_scheduled, NULL);
|
2018-08-06 14:25:32 +02:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_sched_entity_fini);
|
|
|
|
|
|
|
|
/**
|
2021-04-16 15:37:09 +01:00
|
|
|
* drm_sched_entity_destroy - Destroy a context entity
|
2018-08-06 14:25:32 +02:00
|
|
|
* @entity: scheduler entity
|
|
|
|
*
|
2021-08-05 12:46:51 +02:00
|
|
|
* Calls drm_sched_entity_flush() and drm_sched_entity_fini() as a
|
|
|
|
* convenience wrapper.
|
2018-08-06 14:25:32 +02:00
|
|
|
*/
|
|
|
|
void drm_sched_entity_destroy(struct drm_sched_entity *entity)
|
|
|
|
{
|
|
|
|
drm_sched_entity_flush(entity, MAX_WAIT_SCHED_ENTITY_Q_EMPTY);
|
|
|
|
drm_sched_entity_fini(entity);
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_sched_entity_destroy);
|
|
|
|
|
2021-08-05 12:46:51 +02:00
|
|
|
/* drm_sched_entity_clear_dep - callback to clear the entities dependency */
|
2018-08-06 14:58:56 +02:00
|
|
|
static void drm_sched_entity_clear_dep(struct dma_fence *f,
|
|
|
|
struct dma_fence_cb *cb)
|
2018-08-06 14:25:32 +02:00
|
|
|
{
|
|
|
|
struct drm_sched_entity *entity =
|
|
|
|
container_of(cb, struct drm_sched_entity, cb);
|
2018-08-06 14:58:56 +02:00
|
|
|
|
2018-08-06 14:25:32 +02:00
|
|
|
entity->dependency = NULL;
|
|
|
|
dma_fence_put(f);
|
|
|
|
}
|
|
|
|
|
2020-11-05 14:45:05 +00:00
|
|
|
/*
|
2024-09-17 14:47:32 +00:00
|
|
|
* drm_sched_entity_wakeup - callback to clear the entity's dependency and
|
|
|
|
* wake up the scheduler
|
2018-08-06 14:58:56 +02:00
|
|
|
*/
|
|
|
|
static void drm_sched_entity_wakeup(struct dma_fence *f,
|
|
|
|
struct dma_fence_cb *cb)
|
2018-08-06 14:25:32 +02:00
|
|
|
{
|
|
|
|
struct drm_sched_entity *entity =
|
|
|
|
container_of(cb, struct drm_sched_entity, cb);
|
2018-08-06 14:58:56 +02:00
|
|
|
|
|
|
|
drm_sched_entity_clear_dep(f, cb);
|
2024-09-13 13:23:01 -07:00
|
|
|
drm_sched_wakeup(entity->rq->sched);
|
2018-08-06 14:25:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* drm_sched_entity_set_priority - Sets priority of the entity
|
|
|
|
*
|
|
|
|
* @entity: scheduler entity
|
|
|
|
* @priority: scheduler priority
|
|
|
|
*
|
2024-09-17 14:47:32 +00:00
|
|
|
* Update the priority of runqueues used for the entity.
|
2018-08-06 14:25:32 +02:00
|
|
|
*/
|
|
|
|
void drm_sched_entity_set_priority(struct drm_sched_entity *entity,
|
|
|
|
enum drm_sched_priority priority)
|
|
|
|
{
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_lock(&entity->lock);
|
2019-12-05 11:38:00 +01:00
|
|
|
entity->priority = priority;
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_unlock(&entity->lock);
|
2018-08-06 14:25:32 +02:00
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_sched_entity_set_priority);
|
|
|
|
|
2021-08-05 12:46:51 +02:00
|
|
|
/*
|
2018-08-06 14:58:56 +02:00
|
|
|
* Add a callback to the current dependency of the entity to wake up the
|
|
|
|
* scheduler when the entity becomes available.
|
|
|
|
*/
|
2018-08-06 14:25:32 +02:00
|
|
|
static bool drm_sched_entity_add_dependency_cb(struct drm_sched_entity *entity)
|
|
|
|
{
|
|
|
|
struct drm_gpu_scheduler *sched = entity->rq->sched;
|
2018-08-06 14:58:56 +02:00
|
|
|
struct dma_fence *fence = entity->dependency;
|
2018-08-06 14:25:32 +02:00
|
|
|
struct drm_sched_fence *s_fence;
|
|
|
|
|
|
|
|
if (fence->context == entity->fence_context ||
|
2018-08-06 14:58:56 +02:00
|
|
|
fence->context == entity->fence_context + 1) {
|
|
|
|
/*
|
|
|
|
* Fence is a scheduled/finished fence from a job
|
|
|
|
* which belongs to the same entity, we can ignore
|
|
|
|
* fences from ourself
|
|
|
|
*/
|
2018-08-06 14:25:32 +02:00
|
|
|
dma_fence_put(entity->dependency);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
s_fence = to_drm_sched_fence(fence);
|
2023-05-09 17:46:17 +08:00
|
|
|
if (!fence->error && s_fence && s_fence->sched == sched &&
|
2022-10-07 09:51:13 +02:00
|
|
|
!test_bit(DRM_SCHED_FENCE_DONT_PIPELINE, &fence->flags)) {
|
2018-08-06 14:25:32 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Fence is from the same scheduler, only need to wait for
|
|
|
|
* it to be scheduled
|
|
|
|
*/
|
|
|
|
fence = dma_fence_get(&s_fence->scheduled);
|
|
|
|
dma_fence_put(entity->dependency);
|
|
|
|
entity->dependency = fence;
|
|
|
|
if (!dma_fence_add_callback(fence, &entity->cb,
|
|
|
|
drm_sched_entity_clear_dep))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
/* Ignore it when it is already scheduled */
|
|
|
|
dma_fence_put(fence);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (!dma_fence_add_callback(entity->dependency, &entity->cb,
|
|
|
|
drm_sched_entity_wakeup))
|
|
|
|
return true;
|
|
|
|
|
|
|
|
dma_fence_put(entity->dependency);
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2022-09-29 14:50:56 +02:00
|
|
|
static struct dma_fence *
|
|
|
|
drm_sched_job_dependency(struct drm_sched_job *job,
|
|
|
|
struct drm_sched_entity *entity)
|
|
|
|
{
|
2023-06-19 09:19:21 +02:00
|
|
|
struct dma_fence *f;
|
|
|
|
|
|
|
|
/* We keep the fence around, so we can iterate over all dependencies
|
|
|
|
* in drm_sched_entity_kill_jobs_cb() to ensure all deps are signaled
|
|
|
|
* before killing the job.
|
|
|
|
*/
|
|
|
|
f = xa_load(&job->dependencies, job->last_dependency);
|
|
|
|
if (f) {
|
|
|
|
job->last_dependency++;
|
|
|
|
return dma_fence_get(f);
|
|
|
|
}
|
2022-09-29 14:50:56 +02:00
|
|
|
|
2022-09-29 15:01:57 +02:00
|
|
|
if (job->sched->ops->prepare_job)
|
|
|
|
return job->sched->ops->prepare_job(job, entity);
|
2022-09-29 14:50:56 +02:00
|
|
|
|
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
2018-08-06 14:25:32 +02:00
|
|
|
struct drm_sched_job *drm_sched_entity_pop_job(struct drm_sched_entity *entity)
|
|
|
|
{
|
2018-08-06 14:58:56 +02:00
|
|
|
struct drm_sched_job *sched_job;
|
2018-08-06 14:25:32 +02:00
|
|
|
|
2025-02-21 10:50:33 +00:00
|
|
|
sched_job = drm_sched_entity_queue_peek(entity);
|
2018-08-06 14:25:32 +02:00
|
|
|
if (!sched_job)
|
|
|
|
return NULL;
|
|
|
|
|
2018-08-06 14:58:56 +02:00
|
|
|
while ((entity->dependency =
|
2021-08-05 12:46:49 +02:00
|
|
|
drm_sched_job_dependency(sched_job, entity))) {
|
2018-12-07 11:16:53 -08:00
|
|
|
trace_drm_sched_job_wait_dep(sched_job, entity->dependency);
|
2018-08-06 14:58:56 +02:00
|
|
|
|
2018-12-07 11:16:53 -08:00
|
|
|
if (drm_sched_entity_add_dependency_cb(entity))
|
2018-08-06 14:25:32 +02:00
|
|
|
return NULL;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* skip jobs from entity that marked guilty */
|
|
|
|
if (entity->guilty && atomic_read(entity->guilty))
|
|
|
|
dma_fence_set_error(&sched_job->s_fence->finished, -ECANCELED);
|
|
|
|
|
2023-04-17 17:32:11 +02:00
|
|
|
dma_fence_put(rcu_dereference_check(entity->last_scheduled, true));
|
|
|
|
rcu_assign_pointer(entity->last_scheduled,
|
|
|
|
dma_fence_get(&sched_job->s_fence->finished));
|
2018-08-06 14:25:32 +02:00
|
|
|
|
2021-08-05 12:46:48 +02:00
|
|
|
/*
|
|
|
|
* If the queue is empty we allow drm_sched_entity_select_rq() to
|
|
|
|
* locklessly access ->last_scheduled. This only works if we set the
|
|
|
|
* pointer before we dequeue and if we a write barrier here.
|
|
|
|
*/
|
|
|
|
smp_wmb();
|
|
|
|
|
2018-08-06 14:25:32 +02:00
|
|
|
spsc_queue_pop(&entity->job_queue);
|
2022-09-30 00:12:58 -04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Update the entity's location in the min heap according to
|
|
|
|
* the timestamp of the next job, if any.
|
|
|
|
*/
|
|
|
|
if (drm_sched_policy == DRM_SCHED_POLICY_FIFO) {
|
|
|
|
struct drm_sched_job *next;
|
|
|
|
|
2025-02-21 10:50:33 +00:00
|
|
|
next = drm_sched_entity_queue_peek(entity);
|
2024-10-16 13:20:09 +01:00
|
|
|
if (next) {
|
2024-10-16 13:20:13 +01:00
|
|
|
struct drm_sched_rq *rq;
|
|
|
|
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_lock(&entity->lock);
|
2024-10-16 13:20:13 +01:00
|
|
|
rq = entity->rq;
|
|
|
|
spin_lock(&rq->lock);
|
|
|
|
drm_sched_rq_update_fifo_locked(entity, rq,
|
2024-10-16 13:20:09 +01:00
|
|
|
next->submit_ts);
|
2024-10-16 13:20:13 +01:00
|
|
|
spin_unlock(&rq->lock);
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_unlock(&entity->lock);
|
2024-10-16 13:20:09 +01:00
|
|
|
}
|
2022-09-30 00:12:58 -04:00
|
|
|
}
|
|
|
|
|
2023-04-18 12:04:53 +02:00
|
|
|
/* Jobs and entities might have different lifecycles. Since we're
|
|
|
|
* removing the job from the entities queue, set the jobs entity pointer
|
|
|
|
* to NULL to prevent any future access of the entity through this job.
|
|
|
|
*/
|
|
|
|
sched_job->entity = NULL;
|
|
|
|
|
2018-08-06 14:25:32 +02:00
|
|
|
return sched_job;
|
|
|
|
}
|
|
|
|
|
|
|
|
void drm_sched_entity_select_rq(struct drm_sched_entity *entity)
|
|
|
|
{
|
|
|
|
struct dma_fence *fence;
|
2020-03-13 11:39:27 +01:00
|
|
|
struct drm_gpu_scheduler *sched;
|
2018-08-06 14:25:32 +02:00
|
|
|
struct drm_sched_rq *rq;
|
|
|
|
|
2021-08-05 12:46:48 +02:00
|
|
|
/* single possible engine and already selected */
|
|
|
|
if (!entity->sched_list)
|
|
|
|
return;
|
|
|
|
|
|
|
|
/* queue non-empty, stay on the same engine */
|
|
|
|
if (spsc_queue_count(&entity->job_queue))
|
2018-08-06 14:25:32 +02:00
|
|
|
return;
|
|
|
|
|
2021-08-05 12:46:48 +02:00
|
|
|
/*
|
|
|
|
* Only when the queue is empty are we guaranteed that the scheduler
|
|
|
|
* thread cannot change ->last_scheduled. To enforce ordering we need
|
|
|
|
* a read barrier here. See drm_sched_entity_pop_job() for the other
|
|
|
|
* side.
|
|
|
|
*/
|
|
|
|
smp_rmb();
|
|
|
|
|
2023-04-17 17:32:11 +02:00
|
|
|
fence = rcu_dereference_check(entity->last_scheduled, true);
|
2021-08-05 12:46:48 +02:00
|
|
|
|
|
|
|
/* stay on the same engine if the previous job hasn't finished */
|
2018-08-06 14:25:32 +02:00
|
|
|
if (fence && !dma_fence_is_signaled(fence))
|
|
|
|
return;
|
|
|
|
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_lock(&entity->lock);
|
2020-03-13 11:39:27 +01:00
|
|
|
sched = drm_sched_pick_best(entity->sched_list, entity->num_sched_list);
|
2023-10-14 21:15:35 -04:00
|
|
|
rq = sched ? sched->sched_rq[entity->priority] : NULL;
|
2019-12-05 11:38:00 +01:00
|
|
|
if (rq != entity->rq) {
|
|
|
|
drm_sched_rq_remove_entity(entity->rq, entity);
|
|
|
|
entity->rq = rq;
|
|
|
|
}
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_unlock(&entity->lock);
|
2021-02-20 09:50:42 +01:00
|
|
|
|
|
|
|
if (entity->num_sched_list == 1)
|
|
|
|
entity->sched_list = NULL;
|
2018-08-06 14:25:32 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* drm_sched_entity_push_job - Submit a job to the entity's job queue
|
|
|
|
* @sched_job: job to submit
|
|
|
|
*
|
drm/sched: Split drm_sched_job_init
This is a very confusingly named function, because not just does it
init an object, it arms it and provides a point of no return for
pushing a job into the scheduler. It would be nice if that's a bit
clearer in the interface.
But the real reason is that I want to push the dependency tracking
helpers into the scheduler code, and that means drm_sched_job_init
must be called a lot earlier, without arming the job.
v2:
- don't change .gitignore (Steven)
- don't forget v3d (Emma)
v3: Emma noticed that I leak the memory allocated in
drm_sched_job_init if we bail out before the point of no return in
subsequent driver patches. To be able to fix this change
drm_sched_job_cleanup() so it can handle being called both before and
after drm_sched_job_arm().
Also improve the kerneldoc for this.
v4:
- Fix the drm_sched_job_cleanup logic, I inverted the booleans, as
usual (Melissa)
- Christian pointed out that drm_sched_entity_select_rq() also needs
to be moved into drm_sched_job_arm, which made me realize that the
job->id definitely needs to be moved too.
Shuffle things to fit between job_init and job_arm.
v5:
Reshuffle the split between init/arm once more, amdgpu abuses
drm_sched.ready to signal gpu reset failures. Also document this
somewhat. (Christian)
v6:
Rebase on top of the msm drm/sched support. Note that the
drm_sched_job_init() call is completely misplaced, and hence also the
split-out drm_sched_entity_push_job(). I've put in a FIXME which the next
patch will address.
v7: Drop the FIXME in msm, after discussions with Rob I agree it shouldn't
be a problem where it is now.
Acked-by: Christian König <christian.koenig@amd.com>
Acked-by: Melissa Wen <mwen@igalia.com>
Cc: Melissa Wen <melissa.srw@gmail.com>
Acked-by: Emma Anholt <emma@anholt.net>
Acked-by: Steven Price <steven.price@arm.com> (v2)
Reviewed-by: Boris Brezillon <boris.brezillon@collabora.com> (v5)
Signed-off-by: Daniel Vetter <daniel.vetter@intel.com>
Cc: Lucas Stach <l.stach@pengutronix.de>
Cc: Russell King <linux+etnaviv@armlinux.org.uk>
Cc: Christian Gmeiner <christian.gmeiner@gmail.com>
Cc: Qiang Yu <yuq825@gmail.com>
Cc: Rob Herring <robh@kernel.org>
Cc: Tomeu Vizoso <tomeu.vizoso@collabora.com>
Cc: Steven Price <steven.price@arm.com>
Cc: Alyssa Rosenzweig <alyssa.rosenzweig@collabora.com>
Cc: David Airlie <airlied@linux.ie>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Sumit Semwal <sumit.semwal@linaro.org>
Cc: "Christian König" <christian.koenig@amd.com>
Cc: Masahiro Yamada <masahiroy@kernel.org>
Cc: Kees Cook <keescook@chromium.org>
Cc: Adam Borowski <kilobyte@angband.pl>
Cc: Nick Terrell <terrelln@fb.com>
Cc: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Cc: Paul Menzel <pmenzel@molgen.mpg.de>
Cc: Sami Tolvanen <samitolvanen@google.com>
Cc: Viresh Kumar <viresh.kumar@linaro.org>
Cc: Alex Deucher <alexander.deucher@amd.com>
Cc: Dave Airlie <airlied@redhat.com>
Cc: Nirmoy Das <nirmoy.das@amd.com>
Cc: Deepak R Varma <mh12gx2825@gmail.com>
Cc: Lee Jones <lee.jones@linaro.org>
Cc: Kevin Wang <kevin1.wang@amd.com>
Cc: Chen Li <chenli@uniontech.com>
Cc: Luben Tuikov <luben.tuikov@amd.com>
Cc: "Marek Olšák" <marek.olsak@amd.com>
Cc: Dennis Li <Dennis.Li@amd.com>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Andrey Grodzovsky <andrey.grodzovsky@amd.com>
Cc: Sonny Jiang <sonny.jiang@amd.com>
Cc: Boris Brezillon <boris.brezillon@collabora.com>
Cc: Tian Tao <tiantao6@hisilicon.com>
Cc: etnaviv@lists.freedesktop.org
Cc: lima@lists.freedesktop.org
Cc: linux-media@vger.kernel.org
Cc: linaro-mm-sig@lists.linaro.org
Cc: Emma Anholt <emma@anholt.net>
Cc: Rob Clark <robdclark@gmail.com>
Cc: Sean Paul <sean@poorly.run>
Cc: linux-arm-msm@vger.kernel.org
Cc: freedreno@lists.freedesktop.org
Link: https://patchwork.freedesktop.org/patch/msgid/20210817084917.3555822-1-daniel.vetter@ffwll.ch
2021-08-17 10:49:16 +02:00
|
|
|
* Note: To guarantee that the order of insertion to queue matches the job's
|
|
|
|
* fence sequence number this function should be called with drm_sched_job_arm()
|
2021-08-05 12:46:51 +02:00
|
|
|
* under common lock for the struct drm_sched_entity that was set up for
|
|
|
|
* @sched_job in drm_sched_job_init().
|
2018-08-06 14:25:32 +02:00
|
|
|
*/
|
2021-08-05 12:46:50 +02:00
|
|
|
void drm_sched_entity_push_job(struct drm_sched_job *sched_job)
|
2018-08-06 14:25:32 +02:00
|
|
|
{
|
2021-08-05 12:46:50 +02:00
|
|
|
struct drm_sched_entity *entity = sched_job->entity;
|
2018-08-06 14:25:32 +02:00
|
|
|
bool first;
|
2023-04-06 01:37:39 +09:00
|
|
|
ktime_t submit_ts;
|
2018-08-06 14:25:32 +02:00
|
|
|
|
|
|
|
trace_drm_sched_job(sched_job, entity);
|
2024-09-30 15:07:49 +02:00
|
|
|
atomic_inc(entity->rq->sched->score);
|
2018-08-06 14:25:32 +02:00
|
|
|
WRITE_ONCE(entity->last_user, current->group_leader);
|
2023-04-06 01:37:39 +09:00
|
|
|
|
|
|
|
/*
|
|
|
|
* After the sched_job is pushed into the entity queue, it may be
|
|
|
|
* completed and freed up at any time. We can no longer access it.
|
|
|
|
* Make sure to set the submit_ts first, to avoid a race.
|
|
|
|
*/
|
|
|
|
sched_job->submit_ts = submit_ts = ktime_get();
|
2018-08-06 14:25:32 +02:00
|
|
|
first = spsc_queue_push(&entity->job_queue, &sched_job->queue_node);
|
|
|
|
|
|
|
|
/* first job wakes up scheduler */
|
|
|
|
if (first) {
|
2024-09-24 11:19:08 +01:00
|
|
|
struct drm_gpu_scheduler *sched;
|
|
|
|
struct drm_sched_rq *rq;
|
|
|
|
|
2018-08-06 14:25:32 +02:00
|
|
|
/* Add the entity to the run queue */
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_lock(&entity->lock);
|
2018-08-17 10:32:50 -04:00
|
|
|
if (entity->stopped) {
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_unlock(&entity->lock);
|
2018-08-17 10:32:50 -04:00
|
|
|
|
|
|
|
DRM_ERROR("Trying to push to a killed entity\n");
|
|
|
|
return;
|
|
|
|
}
|
2022-09-30 00:12:58 -04:00
|
|
|
|
2024-09-24 11:19:08 +01:00
|
|
|
rq = entity->rq;
|
|
|
|
sched = rq->sched;
|
|
|
|
|
2024-10-16 13:20:13 +01:00
|
|
|
spin_lock(&rq->lock);
|
2024-09-24 11:19:08 +01:00
|
|
|
drm_sched_rq_add_entity(rq, entity);
|
2022-09-30 00:12:58 -04:00
|
|
|
|
|
|
|
if (drm_sched_policy == DRM_SCHED_POLICY_FIFO)
|
2024-10-16 13:20:13 +01:00
|
|
|
drm_sched_rq_update_fifo_locked(entity, rq, submit_ts);
|
2024-10-16 13:20:09 +01:00
|
|
|
|
2024-10-16 13:20:13 +01:00
|
|
|
spin_unlock(&rq->lock);
|
2024-10-16 13:20:12 +01:00
|
|
|
spin_unlock(&entity->lock);
|
2022-09-30 00:12:58 -04:00
|
|
|
|
2024-09-24 11:19:08 +01:00
|
|
|
drm_sched_wakeup(sched);
|
2018-08-06 14:25:32 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
EXPORT_SYMBOL(drm_sched_entity_push_job);
|