Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 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 _GPU_SCHEDULER_H_ |
| 25 | #define _GPU_SCHEDULER_H_ |
| 26 | |
| 27 | #include <linux/kfifo.h> |
Chunming Zhou | 4cef926 | 2015-08-05 19:52:14 +0800 | [diff] [blame] | 28 | #include <linux/fence.h> |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 29 | |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 30 | struct amd_gpu_scheduler; |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 31 | struct amd_sched_rq; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 32 | |
Chunming Zhou | f5617f9 | 2015-11-05 11:41:50 +0800 | [diff] [blame] | 33 | extern struct kmem_cache *sched_fence_slab; |
| 34 | extern atomic_t sched_fence_slab_ref; |
| 35 | |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 36 | /** |
| 37 | * A scheduler entity is a wrapper around a job queue or a group |
Monk Liu | e472d25 | 2016-03-03 19:00:50 +0800 | [diff] [blame] | 38 | * of other entities. Entities take turns emitting jobs from their |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 39 | * job queues to corresponding hardware ring based on scheduling |
| 40 | * policy. |
| 41 | */ |
| 42 | struct amd_sched_entity { |
| 43 | struct list_head list; |
Christian König | 0f75aee | 2015-09-07 18:07:14 +0200 | [diff] [blame] | 44 | struct amd_sched_rq *rq; |
| 45 | struct amd_gpu_scheduler *sched; |
| 46 | |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 47 | spinlock_t queue_lock; |
Christian König | 0f75aee | 2015-09-07 18:07:14 +0200 | [diff] [blame] | 48 | struct kfifo job_queue; |
| 49 | |
| 50 | atomic_t fence_seq; |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 51 | uint64_t fence_context; |
Christian König | 0f75aee | 2015-09-07 18:07:14 +0200 | [diff] [blame] | 52 | |
Christian König | e61235d | 2015-08-25 11:05:36 +0200 | [diff] [blame] | 53 | struct fence *dependency; |
| 54 | struct fence_cb cb; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 55 | }; |
| 56 | |
| 57 | /** |
| 58 | * Run queue is a set of entities scheduling command submissions for |
| 59 | * one specific ring. It implements the scheduling policy that selects |
| 60 | * the next entity to emit commands from. |
| 61 | */ |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 62 | struct amd_sched_rq { |
Christian König | 2b184d8 | 2015-08-18 14:41:25 +0200 | [diff] [blame] | 63 | spinlock_t lock; |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 64 | struct list_head entities; |
| 65 | struct amd_sched_entity *current_entity; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 66 | }; |
| 67 | |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 68 | struct amd_sched_fence { |
Christian König | 6fc1367 | 2016-05-20 12:53:52 +0200 | [diff] [blame] | 69 | struct fence scheduled; |
| 70 | struct fence finished; |
Christian König | 258f3f9 | 2015-08-31 17:02:52 +0200 | [diff] [blame] | 71 | struct fence_cb cb; |
Chunming Zhou | 754ce0f | 2016-06-30 11:23:31 +0800 | [diff] [blame] | 72 | struct fence *parent; |
Christian König | 9b398fa | 2015-09-07 18:16:49 +0200 | [diff] [blame] | 73 | struct amd_gpu_scheduler *sched; |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 74 | spinlock_t lock; |
Chunming Zhou | 84f76ea | 2015-08-24 12:47:36 +0800 | [diff] [blame] | 75 | void *owner; |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 76 | }; |
| 77 | |
Chunming Zhou | 4cef926 | 2015-08-05 19:52:14 +0800 | [diff] [blame] | 78 | struct amd_sched_job { |
Chunming Zhou | 4cef926 | 2015-08-05 19:52:14 +0800 | [diff] [blame] | 79 | struct amd_gpu_scheduler *sched; |
Chunming Zhou | 953e8fd | 2015-08-06 15:19:12 +0800 | [diff] [blame] | 80 | struct amd_sched_entity *s_entity; |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 81 | struct amd_sched_fence *s_fence; |
Christian König | c5f74f7 | 2016-05-19 09:54:15 +0200 | [diff] [blame] | 82 | struct fence_cb finish_cb; |
| 83 | struct work_struct finish_work; |
| 84 | struct list_head node; |
| 85 | struct delayed_work work_tdr; |
Chunming Zhou | 4cef926 | 2015-08-05 19:52:14 +0800 | [diff] [blame] | 86 | }; |
| 87 | |
Christian König | 6fc1367 | 2016-05-20 12:53:52 +0200 | [diff] [blame] | 88 | extern const struct fence_ops amd_sched_fence_ops_scheduled; |
| 89 | extern const struct fence_ops amd_sched_fence_ops_finished; |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 90 | static inline struct amd_sched_fence *to_amd_sched_fence(struct fence *f) |
| 91 | { |
Christian König | 6fc1367 | 2016-05-20 12:53:52 +0200 | [diff] [blame] | 92 | if (f->ops == &amd_sched_fence_ops_scheduled) |
| 93 | return container_of(f, struct amd_sched_fence, scheduled); |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 94 | |
Christian König | 6fc1367 | 2016-05-20 12:53:52 +0200 | [diff] [blame] | 95 | if (f->ops == &amd_sched_fence_ops_finished) |
| 96 | return container_of(f, struct amd_sched_fence, finished); |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 97 | |
| 98 | return NULL; |
| 99 | } |
| 100 | |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 101 | /** |
| 102 | * Define the backend operations called by the scheduler, |
| 103 | * these functions should be implemented in driver side |
| 104 | */ |
| 105 | struct amd_sched_backend_ops { |
Junwei Zhang | 4c7eb91 | 2015-09-09 09:05:55 +0800 | [diff] [blame] | 106 | struct fence *(*dependency)(struct amd_sched_job *sched_job); |
| 107 | struct fence *(*run_job)(struct amd_sched_job *sched_job); |
Christian König | 0e51a77 | 2016-05-18 14:19:32 +0200 | [diff] [blame] | 108 | void (*timedout_job)(struct amd_sched_job *sched_job); |
Christian König | c5f74f7 | 2016-05-19 09:54:15 +0200 | [diff] [blame] | 109 | void (*free_job)(struct amd_sched_job *sched_job); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 110 | }; |
| 111 | |
Chunming Zhou | d033a6d | 2015-11-05 15:23:09 +0800 | [diff] [blame] | 112 | enum amd_sched_priority { |
| 113 | AMD_SCHED_PRIORITY_KERNEL = 0, |
| 114 | AMD_SCHED_PRIORITY_NORMAL, |
| 115 | AMD_SCHED_MAX_PRIORITY |
| 116 | }; |
| 117 | |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 118 | /** |
| 119 | * One scheduler is implemented for each hardware ring |
| 120 | */ |
| 121 | struct amd_gpu_scheduler { |
Nils Wallménius | 62250a9 | 2016-04-10 16:30:00 +0200 | [diff] [blame] | 122 | const struct amd_sched_backend_ops *ops; |
Christian König | 4f839a2 | 2015-09-08 20:22:31 +0200 | [diff] [blame] | 123 | uint32_t hw_submission_limit; |
Junwei Zhang | 2440ff2 | 2015-10-10 08:48:42 +0800 | [diff] [blame] | 124 | long timeout; |
Christian König | 4f839a2 | 2015-09-08 20:22:31 +0200 | [diff] [blame] | 125 | const char *name; |
Chunming Zhou | d033a6d | 2015-11-05 15:23:09 +0800 | [diff] [blame] | 126 | struct amd_sched_rq sched_rq[AMD_SCHED_MAX_PRIORITY]; |
Christian König | c2b6bd7 | 2015-08-25 21:39:31 +0200 | [diff] [blame] | 127 | wait_queue_head_t wake_up_worker; |
| 128 | wait_queue_head_t job_scheduled; |
Christian König | 4f839a2 | 2015-09-08 20:22:31 +0200 | [diff] [blame] | 129 | atomic_t hw_rq_count; |
| 130 | struct task_struct *thread; |
Monk Liu | 4835096 | 2016-03-04 14:33:44 +0800 | [diff] [blame] | 131 | struct list_head ring_mirror_list; |
| 132 | spinlock_t job_list_lock; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 133 | }; |
| 134 | |
Christian König | 4f839a2 | 2015-09-08 20:22:31 +0200 | [diff] [blame] | 135 | int amd_sched_init(struct amd_gpu_scheduler *sched, |
Nils Wallménius | 62250a9 | 2016-04-10 16:30:00 +0200 | [diff] [blame] | 136 | const struct amd_sched_backend_ops *ops, |
Junwei Zhang | 2440ff2 | 2015-10-10 08:48:42 +0800 | [diff] [blame] | 137 | uint32_t hw_submission, long timeout, const char *name); |
Christian König | 4f839a2 | 2015-09-08 20:22:31 +0200 | [diff] [blame] | 138 | void amd_sched_fini(struct amd_gpu_scheduler *sched); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 139 | |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 140 | int amd_sched_entity_init(struct amd_gpu_scheduler *sched, |
| 141 | struct amd_sched_entity *entity, |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 142 | struct amd_sched_rq *rq, |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 143 | uint32_t jobs); |
Christian König | 062c7fb | 2015-08-21 15:46:43 +0200 | [diff] [blame] | 144 | void amd_sched_entity_fini(struct amd_gpu_scheduler *sched, |
| 145 | struct amd_sched_entity *entity); |
Christian König | e284022 | 2015-11-05 19:49:48 +0100 | [diff] [blame] | 146 | void amd_sched_entity_push_job(struct amd_sched_job *sched_job); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 147 | |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 148 | struct amd_sched_fence *amd_sched_fence_create( |
Chunming Zhou | 84f76ea | 2015-08-24 12:47:36 +0800 | [diff] [blame] | 149 | struct amd_sched_entity *s_entity, void *owner); |
Christian König | 393a0bd | 2015-11-05 12:57:10 +0100 | [diff] [blame] | 150 | void amd_sched_fence_scheduled(struct amd_sched_fence *fence); |
Christian König | 6fc1367 | 2016-05-20 12:53:52 +0200 | [diff] [blame] | 151 | void amd_sched_fence_finished(struct amd_sched_fence *fence); |
Monk Liu | e686941 | 2016-03-07 12:49:55 +0800 | [diff] [blame] | 152 | int amd_sched_job_init(struct amd_sched_job *job, |
Christian König | 16a7133 | 2016-05-18 09:43:07 +0200 | [diff] [blame] | 153 | struct amd_gpu_scheduler *sched, |
| 154 | struct amd_sched_entity *entity, |
Christian König | 595a9cd | 2016-06-30 10:52:03 +0200 | [diff] [blame] | 155 | void *owner); |
Chunming Zhou | e686e75 | 2016-06-30 11:30:37 +0800 | [diff] [blame] | 156 | void amd_sched_hw_job_reset(struct amd_gpu_scheduler *sched); |
Chunming Zhou | ec75f57 | 2016-06-29 15:23:55 +0800 | [diff] [blame^] | 157 | void amd_sched_job_recovery(struct amd_gpu_scheduler *sched); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 158 | #endif |