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 | #include <linux/kthread.h> |
| 25 | #include <linux/wait.h> |
| 26 | #include <linux/sched.h> |
| 27 | #include <drm/drmP.h> |
| 28 | #include "gpu_scheduler.h" |
| 29 | |
| 30 | /* Initialize a given run queue struct */ |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 31 | static void amd_sched_rq_init(struct amd_sched_rq *rq) |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 32 | { |
Christian König | 2b184d8 | 2015-08-18 14:41:25 +0200 | [diff] [blame] | 33 | spin_lock_init(&rq->lock); |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 34 | INIT_LIST_HEAD(&rq->entities); |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 35 | rq->current_entity = NULL; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 36 | } |
| 37 | |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 38 | static void amd_sched_rq_add_entity(struct amd_sched_rq *rq, |
| 39 | struct amd_sched_entity *entity) |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 40 | { |
Christian König | 2b184d8 | 2015-08-18 14:41:25 +0200 | [diff] [blame] | 41 | spin_lock(&rq->lock); |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 42 | list_add_tail(&entity->list, &rq->entities); |
Christian König | 2b184d8 | 2015-08-18 14:41:25 +0200 | [diff] [blame] | 43 | spin_unlock(&rq->lock); |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 44 | } |
| 45 | |
| 46 | static void amd_sched_rq_remove_entity(struct amd_sched_rq *rq, |
| 47 | struct amd_sched_entity *entity) |
| 48 | { |
Christian König | 2b184d8 | 2015-08-18 14:41:25 +0200 | [diff] [blame] | 49 | spin_lock(&rq->lock); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 50 | list_del_init(&entity->list); |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 51 | if (rq->current_entity == entity) |
| 52 | rq->current_entity = NULL; |
Christian König | 2b184d8 | 2015-08-18 14:41:25 +0200 | [diff] [blame] | 53 | spin_unlock(&rq->lock); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 54 | } |
| 55 | |
| 56 | /** |
| 57 | * Select next entity from a specified run queue with round robin policy. |
| 58 | * It could return the same entity as current one if current is the only |
| 59 | * available one in the queue. Return NULL if nothing available. |
| 60 | */ |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 61 | static struct amd_sched_entity * |
| 62 | amd_sched_rq_select_entity(struct amd_sched_rq *rq) |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 63 | { |
Christian König | 2b184d8 | 2015-08-18 14:41:25 +0200 | [diff] [blame] | 64 | struct amd_sched_entity *entity; |
Christian König | 4cd7f42c | 2015-08-05 18:18:52 +0200 | [diff] [blame] | 65 | |
Christian König | 2b184d8 | 2015-08-18 14:41:25 +0200 | [diff] [blame] | 66 | spin_lock(&rq->lock); |
| 67 | |
| 68 | entity = rq->current_entity; |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 69 | if (entity) { |
| 70 | list_for_each_entry_continue(entity, &rq->entities, list) { |
| 71 | if (!kfifo_is_empty(&entity->job_queue)) { |
| 72 | rq->current_entity = entity; |
Christian König | 2b184d8 | 2015-08-18 14:41:25 +0200 | [diff] [blame] | 73 | spin_unlock(&rq->lock); |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 74 | return rq->current_entity; |
| 75 | } |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 76 | } |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 77 | } |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 78 | |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 79 | list_for_each_entry(entity, &rq->entities, list) { |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 80 | |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 81 | if (!kfifo_is_empty(&entity->job_queue)) { |
| 82 | rq->current_entity = entity; |
Christian König | 2b184d8 | 2015-08-18 14:41:25 +0200 | [diff] [blame] | 83 | spin_unlock(&rq->lock); |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 84 | return rq->current_entity; |
| 85 | } |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 86 | |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 87 | if (entity == rq->current_entity) |
| 88 | break; |
| 89 | } |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 90 | |
Christian König | 2b184d8 | 2015-08-18 14:41:25 +0200 | [diff] [blame] | 91 | spin_unlock(&rq->lock); |
| 92 | |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 93 | return NULL; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | /** |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 97 | * Init a context entity used by scheduler when submit to HW ring. |
| 98 | * |
| 99 | * @sched The pointer to the scheduler |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 100 | * @entity The pointer to a valid amd_sched_entity |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 101 | * @rq The run queue this entity belongs |
Christian König | 0e89d0c | 2015-08-04 16:58:36 +0200 | [diff] [blame] | 102 | * @kernel If this is an entity for the kernel |
Jammy Zhou | 1333f72 | 2015-07-30 16:36:58 +0800 | [diff] [blame] | 103 | * @jobs The max number of jobs in the job queue |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 104 | * |
| 105 | * return 0 if succeed. negative error code on failure |
| 106 | */ |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 107 | int amd_sched_entity_init(struct amd_gpu_scheduler *sched, |
Christian König | 6f0e54a | 2015-08-05 21:22:10 +0200 | [diff] [blame] | 108 | struct amd_sched_entity *entity, |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 109 | struct amd_sched_rq *rq, |
Christian König | 6f0e54a | 2015-08-05 21:22:10 +0200 | [diff] [blame] | 110 | uint32_t jobs) |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 111 | { |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 112 | char name[20]; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 113 | |
| 114 | if (!(sched && entity && rq)) |
| 115 | return -EINVAL; |
| 116 | |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 117 | memset(entity, 0, sizeof(struct amd_sched_entity)); |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 118 | entity->belongto_rq = rq; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 119 | entity->scheduler = sched; |
| 120 | init_waitqueue_head(&entity->wait_queue); |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 121 | entity->fence_context = fence_context_alloc(1); |
| 122 | snprintf(name, sizeof(name), "c_entity[%llu]", entity->fence_context); |
| 123 | memcpy(entity->name, name, 20); |
Chunming Zhou | 1c8f805 | 2015-08-13 13:04:06 +0800 | [diff] [blame] | 124 | entity->need_wakeup = false; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 125 | if(kfifo_alloc(&entity->job_queue, |
Jammy Zhou | 1333f72 | 2015-07-30 16:36:58 +0800 | [diff] [blame] | 126 | jobs * sizeof(void *), |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 127 | GFP_KERNEL)) |
| 128 | return -EINVAL; |
| 129 | |
| 130 | spin_lock_init(&entity->queue_lock); |
Christian König | ce882e6 | 2015-08-19 15:00:55 +0200 | [diff] [blame] | 131 | atomic_set(&entity->fence_seq, 0); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 132 | |
| 133 | /* Add the entity to the run queue */ |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 134 | amd_sched_rq_add_entity(rq, entity); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 135 | return 0; |
| 136 | } |
| 137 | |
| 138 | /** |
| 139 | * Query if entity is initialized |
| 140 | * |
| 141 | * @sched Pointer to scheduler instance |
| 142 | * @entity The pointer to a valid scheduler entity |
| 143 | * |
| 144 | * return true if entity is initialized, false otherwise |
| 145 | */ |
Christian König | d54fdb9 | 2015-08-20 17:03:48 +0200 | [diff] [blame^] | 146 | static bool amd_sched_entity_is_initialized(struct amd_gpu_scheduler *sched, |
| 147 | struct amd_sched_entity *entity) |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 148 | { |
| 149 | return entity->scheduler == sched && |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 150 | entity->belongto_rq != NULL; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 151 | } |
| 152 | |
Christian König | aef4852 | 2015-08-20 14:47:46 +0200 | [diff] [blame] | 153 | /** |
| 154 | * Check if entity is idle |
| 155 | * |
| 156 | * @entity The pointer to a valid scheduler entity |
| 157 | * |
| 158 | * Return true if entity don't has any unscheduled jobs. |
| 159 | */ |
| 160 | static bool amd_sched_entity_is_idle(struct amd_sched_entity *entity) |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 161 | { |
Christian König | aef4852 | 2015-08-20 14:47:46 +0200 | [diff] [blame] | 162 | rmb(); |
| 163 | if (kfifo_is_empty(&entity->job_queue)) |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 164 | return true; |
| 165 | |
| 166 | return false; |
| 167 | } |
| 168 | |
| 169 | /** |
| 170 | * Destroy a context entity |
| 171 | * |
| 172 | * @sched Pointer to scheduler instance |
| 173 | * @entity The pointer to a valid scheduler entity |
| 174 | * |
| 175 | * return 0 if succeed. negative error code on failure |
| 176 | */ |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 177 | int amd_sched_entity_fini(struct amd_gpu_scheduler *sched, |
| 178 | struct amd_sched_entity *entity) |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 179 | { |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 180 | struct amd_sched_rq *rq = entity->belongto_rq; |
Christian König | aef4852 | 2015-08-20 14:47:46 +0200 | [diff] [blame] | 181 | long r; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 182 | |
Christian König | d54fdb9 | 2015-08-20 17:03:48 +0200 | [diff] [blame^] | 183 | if (!amd_sched_entity_is_initialized(sched, entity)) |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 184 | return 0; |
Chunming Zhou | 1c8f805 | 2015-08-13 13:04:06 +0800 | [diff] [blame] | 185 | entity->need_wakeup = true; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 186 | /** |
| 187 | * The client will not queue more IBs during this fini, consume existing |
| 188 | * queued IBs |
| 189 | */ |
Christian König | aef4852 | 2015-08-20 14:47:46 +0200 | [diff] [blame] | 190 | r = wait_event_timeout(entity->wait_queue, |
| 191 | amd_sched_entity_is_idle(entity), |
| 192 | msecs_to_jiffies(AMD_GPU_WAIT_IDLE_TIMEOUT_IN_MS)); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 193 | |
Christian König | aef4852 | 2015-08-20 14:47:46 +0200 | [diff] [blame] | 194 | if (r <= 0) |
Christian König | 9788ec4 | 2015-08-19 17:34:20 +0200 | [diff] [blame] | 195 | DRM_INFO("Entity %p is in waiting state during fini\n", |
| 196 | entity); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 197 | |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 198 | amd_sched_rq_remove_entity(rq, entity); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 199 | kfifo_free(&entity->job_queue); |
| 200 | return r; |
| 201 | } |
| 202 | |
| 203 | /** |
| 204 | * Submit a normal job to the job queue |
| 205 | * |
| 206 | * @sched The pointer to the scheduler |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 207 | * @c_entity The pointer to amd_sched_entity |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 208 | * @job The pointer to job required to submit |
Chunming Zhou | 80de591 | 2015-08-05 19:07:08 +0800 | [diff] [blame] | 209 | * return 0 if succeed. -1 if failed. |
| 210 | * -2 indicate queue is full for this client, client should wait untill |
| 211 | * scheduler consum some queued command. |
| 212 | * -1 other fail. |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 213 | */ |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 214 | int amd_sched_push_job(struct amd_sched_job *sched_job) |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 215 | { |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 216 | struct amd_sched_fence *fence = |
| 217 | amd_sched_fence_create(sched_job->s_entity); |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 218 | if (!fence) |
| 219 | return -EINVAL; |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 220 | fence_get(&fence->base); |
| 221 | sched_job->s_fence = fence; |
| 222 | while (kfifo_in_spinlocked(&sched_job->s_entity->job_queue, |
| 223 | &sched_job, sizeof(void *), |
| 224 | &sched_job->s_entity->queue_lock) != |
| 225 | sizeof(void *)) { |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 226 | /** |
| 227 | * Current context used up all its IB slots |
| 228 | * wait here, or need to check whether GPU is hung |
| 229 | */ |
| 230 | schedule(); |
| 231 | } |
Chunming Zhou | 1c8f805 | 2015-08-13 13:04:06 +0800 | [diff] [blame] | 232 | /* first job wake up scheduler */ |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 233 | if ((kfifo_len(&sched_job->s_entity->job_queue) / sizeof(void *)) == 1) |
| 234 | wake_up_interruptible(&sched_job->sched->wait_queue); |
Chunming Zhou | 80de591 | 2015-08-05 19:07:08 +0800 | [diff] [blame] | 235 | return 0; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 236 | } |
| 237 | |
Christian König | e688b728 | 2015-08-20 17:01:01 +0200 | [diff] [blame] | 238 | /** |
| 239 | * Return ture if we can push more jobs to the hw. |
| 240 | */ |
| 241 | static bool amd_sched_ready(struct amd_gpu_scheduler *sched) |
| 242 | { |
| 243 | return atomic_read(&sched->hw_rq_count) < |
| 244 | sched->hw_submission_limit; |
| 245 | } |
| 246 | |
| 247 | /** |
| 248 | * Select next entity containing real IB submissions |
| 249 | */ |
| 250 | static struct amd_sched_entity * |
| 251 | amd_sched_select_context(struct amd_gpu_scheduler *sched) |
| 252 | { |
| 253 | struct amd_sched_entity *tmp; |
| 254 | |
| 255 | if (!amd_sched_ready(sched)) |
| 256 | return NULL; |
| 257 | |
| 258 | /* Kernel run queue has higher priority than normal run queue*/ |
| 259 | tmp = amd_sched_rq_select_entity(&sched->kernel_rq); |
| 260 | if (tmp == NULL) |
| 261 | tmp = amd_sched_rq_select_entity(&sched->sched_rq); |
| 262 | |
| 263 | return tmp; |
| 264 | } |
| 265 | |
Christian König | 6f0e54a | 2015-08-05 21:22:10 +0200 | [diff] [blame] | 266 | static void amd_sched_process_job(struct fence *f, struct fence_cb *cb) |
| 267 | { |
| 268 | struct amd_sched_job *sched_job = |
| 269 | container_of(cb, struct amd_sched_job, cb); |
| 270 | struct amd_gpu_scheduler *sched; |
Christian König | 6f0e54a | 2015-08-05 21:22:10 +0200 | [diff] [blame] | 271 | |
| 272 | sched = sched_job->sched; |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 273 | amd_sched_fence_signal(sched_job->s_fence); |
Christian König | c746ba2 | 2015-08-19 16:12:15 +0200 | [diff] [blame] | 274 | atomic_dec(&sched->hw_rq_count); |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 275 | fence_put(&sched_job->s_fence->base); |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 276 | sched->ops->process_job(sched, sched_job); |
Christian König | 6f0e54a | 2015-08-05 21:22:10 +0200 | [diff] [blame] | 277 | wake_up_interruptible(&sched->wait_queue); |
| 278 | } |
| 279 | |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 280 | static int amd_sched_main(void *param) |
| 281 | { |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 282 | struct sched_param sparam = {.sched_priority = 1}; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 283 | struct amd_gpu_scheduler *sched = (struct amd_gpu_scheduler *)param; |
Christian König | f85a6dd | 2015-08-19 17:37:52 +0200 | [diff] [blame] | 284 | int r; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 285 | |
| 286 | sched_setscheduler(current, SCHED_FIFO, &sparam); |
| 287 | |
| 288 | while (!kthread_should_stop()) { |
Christian König | f85a6dd | 2015-08-19 17:37:52 +0200 | [diff] [blame] | 289 | struct amd_sched_entity *c_entity = NULL; |
| 290 | struct amd_sched_job *job; |
Christian König | 6f0e54a | 2015-08-05 21:22:10 +0200 | [diff] [blame] | 291 | struct fence *fence; |
| 292 | |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 293 | wait_event_interruptible(sched->wait_queue, |
Christian König | f85a6dd | 2015-08-19 17:37:52 +0200 | [diff] [blame] | 294 | kthread_should_stop() || |
| 295 | (c_entity = amd_sched_select_context(sched))); |
| 296 | |
| 297 | if (!c_entity) |
| 298 | continue; |
| 299 | |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 300 | r = kfifo_out(&c_entity->job_queue, &job, sizeof(void *)); |
| 301 | if (r != sizeof(void *)) |
| 302 | continue; |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 303 | r = 0; |
| 304 | if (sched->ops->prepare_job) |
| 305 | r = sched->ops->prepare_job(sched, c_entity, job); |
Chunming Zhou | 4cef926 | 2015-08-05 19:52:14 +0800 | [diff] [blame] | 306 | if (!r) { |
Christian König | c746ba2 | 2015-08-19 16:12:15 +0200 | [diff] [blame] | 307 | atomic_inc(&sched->hw_rq_count); |
Chunming Zhou | 4cef926 | 2015-08-05 19:52:14 +0800 | [diff] [blame] | 308 | } |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 309 | mutex_lock(&sched->sched_lock); |
Chunming Zhou | 953e8fd | 2015-08-06 15:19:12 +0800 | [diff] [blame] | 310 | fence = sched->ops->run_job(sched, c_entity, job); |
Christian König | 6f0e54a | 2015-08-05 21:22:10 +0200 | [diff] [blame] | 311 | if (fence) { |
Chunming Zhou | 953e8fd | 2015-08-06 15:19:12 +0800 | [diff] [blame] | 312 | r = fence_add_callback(fence, &job->cb, |
Christian König | 6f0e54a | 2015-08-05 21:22:10 +0200 | [diff] [blame] | 313 | amd_sched_process_job); |
| 314 | if (r == -ENOENT) |
Chunming Zhou | 953e8fd | 2015-08-06 15:19:12 +0800 | [diff] [blame] | 315 | amd_sched_process_job(fence, &job->cb); |
Christian König | 6f0e54a | 2015-08-05 21:22:10 +0200 | [diff] [blame] | 316 | else if (r) |
| 317 | DRM_ERROR("fence add callback failed (%d)\n", r); |
| 318 | fence_put(fence); |
| 319 | } |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 320 | mutex_unlock(&sched->sched_lock); |
Christian König | aef4852 | 2015-08-20 14:47:46 +0200 | [diff] [blame] | 321 | |
| 322 | if (c_entity->need_wakeup) { |
| 323 | c_entity->need_wakeup = false; |
| 324 | wake_up(&c_entity->wait_queue); |
| 325 | } |
| 326 | |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 327 | } |
| 328 | return 0; |
| 329 | } |
| 330 | |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 331 | /** |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 332 | * Create a gpu scheduler |
| 333 | * |
| 334 | * @device The device context for this scheduler |
| 335 | * @ops The backend operations for this scheduler. |
| 336 | * @id The scheduler is per ring, here is ring id. |
| 337 | * @granularity The minumum ms unit the scheduler will scheduled. |
| 338 | * @preemption Indicate whether this ring support preemption, 0 is no. |
| 339 | * |
| 340 | * return the pointer to scheduler for success, otherwise return NULL |
| 341 | */ |
| 342 | struct amd_gpu_scheduler *amd_sched_create(void *device, |
| 343 | struct amd_sched_backend_ops *ops, |
| 344 | unsigned ring, |
| 345 | unsigned granularity, |
Jammy Zhou | 4afcb30 | 2015-07-30 16:44:05 +0800 | [diff] [blame] | 346 | unsigned preemption, |
| 347 | unsigned hw_submission) |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 348 | { |
| 349 | struct amd_gpu_scheduler *sched; |
Christian König | 4cd7f42c | 2015-08-05 18:18:52 +0200 | [diff] [blame] | 350 | char name[20]; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 351 | |
| 352 | sched = kzalloc(sizeof(struct amd_gpu_scheduler), GFP_KERNEL); |
| 353 | if (!sched) |
| 354 | return NULL; |
| 355 | |
| 356 | sched->device = device; |
| 357 | sched->ops = ops; |
| 358 | sched->granularity = granularity; |
| 359 | sched->ring_id = ring; |
| 360 | sched->preemption = preemption; |
Chunming Zhou | 4cef926 | 2015-08-05 19:52:14 +0800 | [diff] [blame] | 361 | sched->hw_submission_limit = hw_submission; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 362 | snprintf(name, sizeof(name), "gpu_sched[%d]", ring); |
| 363 | mutex_init(&sched->sched_lock); |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 364 | amd_sched_rq_init(&sched->sched_rq); |
| 365 | amd_sched_rq_init(&sched->kernel_rq); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 366 | |
| 367 | init_waitqueue_head(&sched->wait_queue); |
Christian König | c746ba2 | 2015-08-19 16:12:15 +0200 | [diff] [blame] | 368 | atomic_set(&sched->hw_rq_count, 0); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 369 | /* Each scheduler will run on a seperate kernel thread */ |
Christian König | f495659 | 2015-08-20 16:59:38 +0200 | [diff] [blame] | 370 | sched->thread = kthread_run(amd_sched_main, sched, name); |
| 371 | if (IS_ERR(sched->thread)) { |
| 372 | DRM_ERROR("Failed to create scheduler for id %d.\n", ring); |
| 373 | kfree(sched); |
| 374 | return NULL; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 375 | } |
| 376 | |
Christian König | f495659 | 2015-08-20 16:59:38 +0200 | [diff] [blame] | 377 | return sched; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 378 | } |
| 379 | |
| 380 | /** |
| 381 | * Destroy a gpu scheduler |
| 382 | * |
| 383 | * @sched The pointer to the scheduler |
| 384 | * |
| 385 | * return 0 if succeed. -1 if failed. |
| 386 | */ |
| 387 | int amd_sched_destroy(struct amd_gpu_scheduler *sched) |
| 388 | { |
| 389 | kthread_stop(sched->thread); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 390 | kfree(sched); |
| 391 | return 0; |
| 392 | } |