Merge tag 'net-6.0-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net
[linux-block.git] / include / drm / gpu_scheduler.h
CommitLineData
1b1f42d8
LS
1/*
2 * Copyright 2015 Advanced Micro Devices, Inc.
3 *
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:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
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.
21 *
22 */
23
24#ifndef _DRM_GPU_SCHEDULER_H_
25#define _DRM_GPU_SCHEDULER_H_
26
27#include <drm/spsc_queue.h>
28#include <linux/dma-fence.h>
dc10218d 29#include <linux/completion.h>
ebd5f742 30#include <linux/xarray.h>
9b04369b 31#include <linux/workqueue.h>
1b1f42d8 32
741f01e6
AG
33#define MAX_WAIT_SCHED_ENTITY_Q_EMPTY msecs_to_jiffies(1000)
34
ebd5f742
DV
35struct drm_gem_object;
36
1b1f42d8
LS
37struct drm_gpu_scheduler;
38struct drm_sched_rq;
39
e2d732fd
LT
40/* These are often used as an (initial) index
41 * to an array, and as such should start at 0.
42 */
1b1f42d8
LS
43enum drm_sched_priority {
44 DRM_SCHED_PRIORITY_MIN,
1b1f42d8 45 DRM_SCHED_PRIORITY_NORMAL,
e2d732fd 46 DRM_SCHED_PRIORITY_HIGH,
1b1f42d8 47 DRM_SCHED_PRIORITY_KERNEL,
e2d732fd
LT
48
49 DRM_SCHED_PRIORITY_COUNT,
1b1f42d8
LS
50 DRM_SCHED_PRIORITY_UNSET = -2
51};
52
53/**
2d33948e
ND
54 * struct drm_sched_entity - A wrapper around a job queue (typically
55 * attached to the DRM file_priv).
56 *
1a61ee07
EA
57 * Entities will emit jobs in order to their corresponding hardware
58 * ring, and the scheduler will alternate between entities based on
59 * scheduling policy.
2d33948e 60 */
1b1f42d8 61struct drm_sched_entity {
981b04d9
DV
62 /**
63 * @list:
64 *
65 * Used to append this struct to the list of entities in the runqueue
66 * @rq under &drm_sched_rq.entities.
67 *
68 * Protected by &drm_sched_rq.lock of @rq.
69 */
1b1f42d8 70 struct list_head list;
981b04d9
DV
71
72 /**
73 * @rq:
74 *
75 * Runqueue on which this entity is currently scheduled.
76 *
77 * FIXME: Locking is very unclear for this. Writers are protected by
78 * @rq_lock, but readers are generally lockless and seem to just race
79 * with not even a READ_ONCE.
80 */
1b1f42d8 81 struct drm_sched_rq *rq;
981b04d9
DV
82
83 /**
84 * @sched_list:
85 *
86 * A list of schedulers (struct drm_gpu_scheduler). Jobs from this entity can
87 * be scheduled on any scheduler on this list.
88 *
89 * This can be modified by calling drm_sched_entity_modify_sched().
90 * Locking is entirely up to the driver, see the above function for more
91 * details.
92 *
93 * This will be set to NULL if &num_sched_list equals 1 and @rq has been
94 * set already.
95 *
96 * FIXME: This means priority changes through
97 * drm_sched_entity_set_priority() will be lost henceforth in this case.
98 */
b3ac1766 99 struct drm_gpu_scheduler **sched_list;
981b04d9
DV
100
101 /**
102 * @num_sched_list:
103 *
104 * Number of drm_gpu_schedulers in the @sched_list.
105 */
9e3e90c5 106 unsigned int num_sched_list;
981b04d9
DV
107
108 /**
109 * @priority:
110 *
111 * Priority of the entity. This can be modified by calling
112 * drm_sched_entity_set_priority(). Protected by &rq_lock.
113 */
b3ac1766 114 enum drm_sched_priority priority;
981b04d9
DV
115
116 /**
117 * @rq_lock:
118 *
119 * Lock to modify the runqueue to which this entity belongs.
120 */
1b1f42d8 121 spinlock_t rq_lock;
1b1f42d8 122
981b04d9
DV
123 /**
124 * @job_queue: the list of jobs of this entity.
125 */
1b1f42d8
LS
126 struct spsc_queue job_queue;
127
981b04d9
DV
128 /**
129 * @fence_seq:
130 *
131 * A linearly increasing seqno incremented with each new
132 * &drm_sched_fence which is part of the entity.
133 *
134 * FIXME: Callers of drm_sched_job_arm() need to ensure correct locking,
135 * this doesn't need to be atomic.
136 */
1b1f42d8 137 atomic_t fence_seq;
981b04d9
DV
138
139 /**
140 * @fence_context:
141 *
142 * A unique context for all the fences which belong to this entity. The
143 * &drm_sched_fence.scheduled uses the fence_context but
144 * &drm_sched_fence.finished uses fence_context + 1.
145 */
1b1f42d8
LS
146 uint64_t fence_context;
147
981b04d9
DV
148 /**
149 * @dependency:
150 *
151 * The dependency fence of the job which is on the top of the job queue.
152 */
1b1f42d8 153 struct dma_fence *dependency;
981b04d9
DV
154
155 /**
156 * @cb:
157 *
158 * Callback for the dependency fence above.
159 */
1b1f42d8 160 struct dma_fence_cb cb;
981b04d9
DV
161
162 /**
163 * @guilty:
164 *
165 * Points to entities' guilty.
166 */
2d33948e 167 atomic_t *guilty;
981b04d9
DV
168
169 /**
170 * @last_scheduled:
171 *
172 * Points to the finished fence of the last scheduled job. Only written
173 * by the scheduler thread, can be accessed locklessly from
174 * drm_sched_job_arm() iff the queue is empty.
175 */
2d33948e 176 struct dma_fence *last_scheduled;
981b04d9
DV
177
178 /**
179 * @last_user: last group leader pushing a job into the entity.
180 */
43bce41c 181 struct task_struct *last_user;
981b04d9
DV
182
183 /**
184 * @stopped:
185 *
186 * Marks the enity as removed from rq and destined for
187 * termination. This is set by calling drm_sched_entity_flush() and by
188 * drm_sched_fini().
189 */
62347a33 190 bool stopped;
981b04d9
DV
191
192 /**
193 * @entity_idle:
194 *
195 * Signals when entity is not in use, used to sequence entity cleanup in
196 * drm_sched_entity_fini().
197 */
83a7772b 198 struct completion entity_idle;
1b1f42d8
LS
199};
200
201/**
2d33948e
ND
202 * struct drm_sched_rq - queue of entities to be scheduled.
203 *
204 * @lock: to modify the entities list.
8dc9fbbf 205 * @sched: the scheduler to which this rq belongs to.
2d33948e
ND
206 * @entities: list of the entities to be scheduled.
207 * @current_entity: the entity which is to be scheduled.
208 *
1b1f42d8
LS
209 * Run queue is a set of entities scheduling command submissions for
210 * one specific ring. It implements the scheduling policy that selects
211 * the next entity to emit commands from.
2d33948e 212 */
1b1f42d8
LS
213struct drm_sched_rq {
214 spinlock_t lock;
8dc9fbbf 215 struct drm_gpu_scheduler *sched;
1b1f42d8
LS
216 struct list_head entities;
217 struct drm_sched_entity *current_entity;
218};
219
2d33948e
ND
220/**
221 * struct drm_sched_fence - fences corresponding to the scheduling of a job.
222 */
1b1f42d8 223struct drm_sched_fence {
2d33948e
ND
224 /**
225 * @scheduled: this fence is what will be signaled by the scheduler
226 * when the job is scheduled.
227 */
1b1f42d8 228 struct dma_fence scheduled;
1a61ee07 229
2d33948e
ND
230 /**
231 * @finished: this fence is what will be signaled by the scheduler
232 * when the job is completed.
233 *
234 * When setting up an out fence for the job, you should use
235 * this, since it's available immediately upon
236 * drm_sched_job_init(), and the fence returned by the driver
237 * from run_job() won't be created until the dependencies have
238 * resolved.
239 */
1b1f42d8 240 struct dma_fence finished;
1a61ee07 241
2d33948e
ND
242 /**
243 * @parent: the fence returned by &drm_sched_backend_ops.run_job
244 * when scheduling the job on hardware. We signal the
245 * &drm_sched_fence.finished fence once parent is signalled.
246 */
1b1f42d8 247 struct dma_fence *parent;
2d33948e
ND
248 /**
249 * @sched: the scheduler instance to which the job having this struct
250 * belongs to.
251 */
1b1f42d8 252 struct drm_gpu_scheduler *sched;
2d33948e
ND
253 /**
254 * @lock: the lock used by the scheduled and the finished fences.
255 */
1b1f42d8 256 spinlock_t lock;
2d33948e
ND
257 /**
258 * @owner: job owner for debugging
259 */
1b1f42d8
LS
260 void *owner;
261};
262
263struct drm_sched_fence *to_drm_sched_fence(struct dma_fence *f);
264
1a61ee07 265/**
2d33948e
ND
266 * struct drm_sched_job - A job to be run by an entity.
267 *
268 * @queue_node: used to append this struct to the queue of jobs in an entity.
c365d304 269 * @list: a job participates in a "pending" and "done" lists.
2d33948e
ND
270 * @sched: the scheduler instance on which this job is scheduled.
271 * @s_fence: contains the fences for the scheduling of job.
272 * @finish_cb: the callback for the finished fence.
e795df5b 273 * @work: Helper to reschdeule job kill to different context.
2d33948e
ND
274 * @id: a unique id assigned to each job scheduled on the scheduler.
275 * @karma: increment on every hang caused by this job. If this exceeds the hang
276 * limit of the scheduler then the job is marked guilty and will not
277 * be scheduled further.
278 * @s_priority: the priority of the job.
279 * @entity: the entity to which this job belongs.
3741540e 280 * @cb: the callback for the parent fence in s_fence.
1a61ee07
EA
281 *
282 * A job is created by the driver using drm_sched_job_init(), and
283 * should call drm_sched_entity_push_job() once it wants the scheduler
284 * to schedule the job.
285 */
1b1f42d8
LS
286struct drm_sched_job {
287 struct spsc_node queue_node;
8935ff00 288 struct list_head list;
1b1f42d8
LS
289 struct drm_gpu_scheduler *sched;
290 struct drm_sched_fence *s_fence;
542cff78
AG
291
292 /*
293 * work is used only after finish_cb has been used and will not be
294 * accessed anymore.
295 */
296 union {
297 struct dma_fence_cb finish_cb;
9b04369b 298 struct work_struct work;
542cff78
AG
299 };
300
1b1f42d8
LS
301 uint64_t id;
302 atomic_t karma;
303 enum drm_sched_priority s_priority;
8935ff00 304 struct drm_sched_entity *entity;
3741540e 305 struct dma_fence_cb cb;
ebd5f742
DV
306 /**
307 * @dependencies:
308 *
309 * Contains the dependencies as struct dma_fence for this job, see
310 * drm_sched_job_add_dependency() and
311 * drm_sched_job_add_implicit_dependencies().
312 */
313 struct xarray dependencies;
314
315 /** @last_dependency: tracks @dependencies as they signal */
316 unsigned long last_dependency;
1b1f42d8
LS
317};
318
319static inline bool drm_sched_invalidate_job(struct drm_sched_job *s_job,
320 int threshold)
321{
6efa4b46 322 return s_job && atomic_inc_return(&s_job->karma) > threshold;
1b1f42d8
LS
323}
324
a6a1f036
LT
325enum drm_gpu_sched_stat {
326 DRM_GPU_SCHED_STAT_NONE, /* Reserve 0 */
327 DRM_GPU_SCHED_STAT_NOMINAL,
328 DRM_GPU_SCHED_STAT_ENODEV,
329};
330
1b1f42d8 331/**
2d33948e
ND
332 * struct drm_sched_backend_ops
333 *
1b1f42d8 334 * Define the backend operations called by the scheduler,
2d33948e
ND
335 * these functions should be implemented in driver side.
336 */
1b1f42d8 337struct drm_sched_backend_ops {
2d33948e 338 /**
ebd5f742
DV
339 * @dependency:
340 *
341 * Called when the scheduler is considering scheduling this job next, to
342 * get another struct dma_fence for this job to block on. Once it
343 * returns NULL, run_job() may be called.
344 *
345 * If a driver exclusively uses drm_sched_job_add_dependency() and
346 * drm_sched_job_add_implicit_dependencies() this can be ommitted and
347 * left as NULL.
1a61ee07 348 */
1b1f42d8
LS
349 struct dma_fence *(*dependency)(struct drm_sched_job *sched_job,
350 struct drm_sched_entity *s_entity);
1a61ee07 351
2d33948e
ND
352 /**
353 * @run_job: Called to execute the job once all of the dependencies
354 * have been resolved. This may be called multiple times, if
1a61ee07
EA
355 * timedout_job() has happened and drm_sched_job_recovery()
356 * decides to try it again.
357 */
1b1f42d8 358 struct dma_fence *(*run_job)(struct drm_sched_job *sched_job);
1a61ee07 359
2d33948e 360 /**
a6a1f036
LT
361 * @timedout_job: Called when a job has taken too long to execute,
362 * to trigger GPU recovery.
363 *
1fad1b7e
BB
364 * This method is called in a workqueue context.
365 *
366 * Drivers typically issue a reset to recover from GPU hangs, and this
367 * procedure usually follows the following workflow:
368 *
369 * 1. Stop the scheduler using drm_sched_stop(). This will park the
370 * scheduler thread and cancel the timeout work, guaranteeing that
371 * nothing is queued while we reset the hardware queue
372 * 2. Try to gracefully stop non-faulty jobs (optional)
373 * 3. Issue a GPU reset (driver-specific)
374 * 4. Re-submit jobs using drm_sched_resubmit_jobs()
375 * 5. Restart the scheduler using drm_sched_start(). At that point, new
376 * jobs can be queued, and the scheduler thread is unblocked
377 *
78efe21b
BB
378 * Note that some GPUs have distinct hardware queues but need to reset
379 * the GPU globally, which requires extra synchronization between the
380 * timeout handler of the different &drm_gpu_scheduler. One way to
381 * achieve this synchronization is to create an ordered workqueue
382 * (using alloc_ordered_workqueue()) at the driver level, and pass this
383 * queue to drm_sched_init(), to guarantee that timeout handlers are
384 * executed sequentially. The above workflow needs to be slightly
385 * adjusted in that case:
386 *
387 * 1. Stop all schedulers impacted by the reset using drm_sched_stop()
388 * 2. Try to gracefully stop non-faulty jobs on all queues impacted by
389 * the reset (optional)
390 * 3. Issue a GPU reset on all faulty queues (driver-specific)
391 * 4. Re-submit jobs on all schedulers impacted by the reset using
392 * drm_sched_resubmit_jobs()
393 * 5. Restart all schedulers that were stopped in step #1 using
394 * drm_sched_start()
395 *
a6a1f036
LT
396 * Return DRM_GPU_SCHED_STAT_NOMINAL, when all is normal,
397 * and the underlying driver has started or completed recovery.
398 *
399 * Return DRM_GPU_SCHED_STAT_ENODEV, if the device is no longer
400 * available, i.e. has been unplugged.
1a61ee07 401 */
a6a1f036 402 enum drm_gpu_sched_stat (*timedout_job)(struct drm_sched_job *sched_job);
1a61ee07 403
2d33948e
ND
404 /**
405 * @free_job: Called once the job's finished fence has been signaled
406 * and it's time to clean it up.
1a61ee07 407 */
1b1f42d8
LS
408 void (*free_job)(struct drm_sched_job *sched_job);
409};
410
411/**
2d33948e
ND
412 * struct drm_gpu_scheduler
413 *
414 * @ops: backend operations provided by the driver.
415 * @hw_submission_limit: the max size of the hardware queue.
416 * @timeout: the time after which a job is removed from the scheduler.
417 * @name: name of the ring for which this scheduler is being used.
418 * @sched_rq: priority wise array of run queues.
419 * @wake_up_worker: the wait queue on which the scheduler sleeps until a job
420 * is ready to be scheduled.
421 * @job_scheduled: once @drm_sched_entity_do_release is called the scheduler
422 * waits on this wait queue until all the scheduled jobs are
423 * finished.
424 * @hw_rq_count: the number of jobs currently in the hardware queue.
425 * @job_id_count: used to assign unique id to the each job.
78efe21b 426 * @timeout_wq: workqueue used to queue @work_tdr
6a962430
ND
427 * @work_tdr: schedules a delayed call to @drm_sched_job_timedout after the
428 * timeout interval is over.
2d33948e 429 * @thread: the kthread on which the scheduler which run.
6efa4b46
LT
430 * @pending_list: the list of jobs which are currently in the job queue.
431 * @job_list_lock: lock to protect the pending_list.
2d33948e 432 * @hang_limit: once the hangs by a job crosses this limit then it is marked
95b2151f 433 * guilty and it will no longer be considered for scheduling.
d41a39dd 434 * @score: score to help loadbalancer pick a idle sched
be318fd8 435 * @_score: score used when the driver doesn't provide one
faf6e1a8 436 * @ready: marks if the underlying HW is ready to work
a5343b8a 437 * @free_guilty: A hit to time out handler to free the guilty job.
2d33948e
ND
438 *
439 * One scheduler is implemented for each hardware ring.
440 */
1b1f42d8
LS
441struct drm_gpu_scheduler {
442 const struct drm_sched_backend_ops *ops;
443 uint32_t hw_submission_limit;
444 long timeout;
445 const char *name;
e2d732fd 446 struct drm_sched_rq sched_rq[DRM_SCHED_PRIORITY_COUNT];
1b1f42d8
LS
447 wait_queue_head_t wake_up_worker;
448 wait_queue_head_t job_scheduled;
449 atomic_t hw_rq_count;
450 atomic64_t job_id_count;
78efe21b 451 struct workqueue_struct *timeout_wq;
6a962430 452 struct delayed_work work_tdr;
1b1f42d8 453 struct task_struct *thread;
6efa4b46 454 struct list_head pending_list;
1b1f42d8
LS
455 spinlock_t job_list_lock;
456 int hang_limit;
f2f12eb9
CK
457 atomic_t *score;
458 atomic_t _score;
d41a39dd 459 bool ready;
a5343b8a 460 bool free_guilty;
8ab62eda 461 struct device *dev;
1b1f42d8
LS
462};
463
464int drm_sched_init(struct drm_gpu_scheduler *sched,
465 const struct drm_sched_backend_ops *ops,
78efe21b
BB
466 uint32_t hw_submission, unsigned hang_limit,
467 long timeout, struct workqueue_struct *timeout_wq,
8ab62eda 468 atomic_t *score, const char *name, struct device *dev);
faf6e1a8 469
1b1f42d8 470void drm_sched_fini(struct drm_gpu_scheduler *sched);
620e762f
CK
471int drm_sched_job_init(struct drm_sched_job *job,
472 struct drm_sched_entity *entity,
473 void *owner);
dbe48d03 474void drm_sched_job_arm(struct drm_sched_job *job);
ebd5f742
DV
475int drm_sched_job_add_dependency(struct drm_sched_job *job,
476 struct dma_fence *fence);
477int drm_sched_job_add_implicit_dependencies(struct drm_sched_job *job,
478 struct drm_gem_object *obj,
479 bool write);
480
481
b37aced3
ND
482void drm_sched_entity_modify_sched(struct drm_sched_entity *entity,
483 struct drm_gpu_scheduler **sched_list,
484 unsigned int num_sched_list);
485
26efecf9 486void drm_sched_job_cleanup(struct drm_sched_job *job);
620e762f 487void drm_sched_wakeup(struct drm_gpu_scheduler *sched);
5918045c 488void drm_sched_stop(struct drm_gpu_scheduler *sched, struct drm_sched_job *bad);
222b5f04
AG
489void drm_sched_start(struct drm_gpu_scheduler *sched, bool full_recovery);
490void drm_sched_resubmit_jobs(struct drm_gpu_scheduler *sched);
e6c6338f 491void drm_sched_resubmit_jobs_ext(struct drm_gpu_scheduler *sched, int max);
222b5f04 492void drm_sched_increase_karma(struct drm_sched_job *bad);
e6c6338f
JZ
493void drm_sched_reset_karma(struct drm_sched_job *bad);
494void drm_sched_increase_karma_ext(struct drm_sched_job *bad, int type);
620e762f
CK
495bool drm_sched_dependency_optimized(struct dma_fence* fence,
496 struct drm_sched_entity *entity);
8fe159b0 497void drm_sched_fault(struct drm_gpu_scheduler *sched);
620e762f
CK
498void drm_sched_job_kickout(struct drm_sched_job *s_job);
499
500void drm_sched_rq_add_entity(struct drm_sched_rq *rq,
501 struct drm_sched_entity *entity);
502void drm_sched_rq_remove_entity(struct drm_sched_rq *rq,
503 struct drm_sched_entity *entity);
1b1f42d8 504
aa16b6c6 505int drm_sched_entity_init(struct drm_sched_entity *entity,
b3ac1766
ND
506 enum drm_sched_priority priority,
507 struct drm_gpu_scheduler **sched_list,
9e3e90c5 508 unsigned int num_sched_list,
8344c53f 509 atomic_t *guilty);
cdc50176
ND
510long drm_sched_entity_flush(struct drm_sched_entity *entity, long timeout);
511void drm_sched_entity_fini(struct drm_sched_entity *entity);
512void drm_sched_entity_destroy(struct drm_sched_entity *entity);
620e762f
CK
513void drm_sched_entity_select_rq(struct drm_sched_entity *entity);
514struct drm_sched_job *drm_sched_entity_pop_job(struct drm_sched_entity *entity);
0e10e9a1 515void drm_sched_entity_push_job(struct drm_sched_job *sched_job);
7febe4bf
CK
516void drm_sched_entity_set_priority(struct drm_sched_entity *entity,
517 enum drm_sched_priority priority);
620e762f
CK
518bool drm_sched_entity_is_ready(struct drm_sched_entity *entity);
519
dbe48d03 520struct drm_sched_fence *drm_sched_fence_alloc(
1b1f42d8 521 struct drm_sched_entity *s_entity, void *owner);
dbe48d03
DV
522void drm_sched_fence_init(struct drm_sched_fence *fence,
523 struct drm_sched_entity *entity);
d4c16733 524void drm_sched_fence_free(struct drm_sched_fence *fence);
dbe48d03 525
1b1f42d8
LS
526void drm_sched_fence_scheduled(struct drm_sched_fence *fence);
527void drm_sched_fence_finished(struct drm_sched_fence *fence);
1b1f42d8 528
1db8c142
SM
529unsigned long drm_sched_suspend_timeout(struct drm_gpu_scheduler *sched);
530void drm_sched_resume_timeout(struct drm_gpu_scheduler *sched,
531 unsigned long remaining);
ec2edcc2
ND
532struct drm_gpu_scheduler *
533drm_sched_pick_best(struct drm_gpu_scheduler **sched_list,
534 unsigned int num_sched_list);
1db8c142 535
1b1f42d8 536#endif