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 | #define AMD_GPU_WAIT_IDLE_TIMEOUT_IN_MS 3000 |
| 31 | |
| 32 | struct amd_gpu_scheduler; |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 33 | struct amd_sched_rq; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 34 | |
| 35 | /** |
| 36 | * A scheduler entity is a wrapper around a job queue or a group |
| 37 | * of other entities. Entities take turns emitting jobs from their |
| 38 | * job queues to corresponding hardware ring based on scheduling |
| 39 | * policy. |
| 40 | */ |
| 41 | struct amd_sched_entity { |
| 42 | struct list_head list; |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 43 | struct amd_sched_rq *belongto_rq; |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 44 | spinlock_t lock; |
Christian König | ce882e6 | 2015-08-19 15:00:55 +0200 | [diff] [blame] | 45 | atomic_t fence_seq; |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 46 | /* the job_queue maintains the jobs submitted by clients */ |
| 47 | struct kfifo job_queue; |
| 48 | spinlock_t queue_lock; |
| 49 | struct amd_gpu_scheduler *scheduler; |
| 50 | wait_queue_head_t wait_queue; |
| 51 | wait_queue_head_t wait_emit; |
| 52 | bool is_pending; |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 53 | uint64_t fence_context; |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 54 | char name[20]; |
Chunming Zhou | 1c8f805 | 2015-08-13 13:04:06 +0800 | [diff] [blame] | 55 | bool need_wakeup; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 56 | }; |
| 57 | |
| 58 | /** |
| 59 | * Run queue is a set of entities scheduling command submissions for |
| 60 | * one specific ring. It implements the scheduling policy that selects |
| 61 | * the next entity to emit commands from. |
| 62 | */ |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 63 | struct amd_sched_rq { |
Christian König | 2b184d8 | 2015-08-18 14:41:25 +0200 | [diff] [blame] | 64 | spinlock_t lock; |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 65 | struct list_head entities; |
| 66 | struct amd_sched_entity *current_entity; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 67 | }; |
| 68 | |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 69 | struct amd_sched_fence { |
| 70 | struct fence base; |
| 71 | struct fence_cb cb; |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 72 | struct amd_sched_entity *entity; |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 73 | spinlock_t lock; |
| 74 | }; |
| 75 | |
Chunming Zhou | 4cef926 | 2015-08-05 19:52:14 +0800 | [diff] [blame] | 76 | struct amd_sched_job { |
Chunming Zhou | 4cef926 | 2015-08-05 19:52:14 +0800 | [diff] [blame] | 77 | struct fence_cb cb; |
| 78 | struct amd_gpu_scheduler *sched; |
Chunming Zhou | 953e8fd | 2015-08-06 15:19:12 +0800 | [diff] [blame] | 79 | struct amd_sched_entity *s_entity; |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 80 | struct amd_sched_fence *s_fence; |
Chunming Zhou | 4cef926 | 2015-08-05 19:52:14 +0800 | [diff] [blame] | 81 | }; |
| 82 | |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 83 | extern const struct fence_ops amd_sched_fence_ops; |
| 84 | static inline struct amd_sched_fence *to_amd_sched_fence(struct fence *f) |
| 85 | { |
| 86 | struct amd_sched_fence *__f = container_of(f, struct amd_sched_fence, base); |
| 87 | |
| 88 | if (__f->base.ops == &amd_sched_fence_ops) |
| 89 | return __f; |
| 90 | |
| 91 | return NULL; |
| 92 | } |
| 93 | |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 94 | /** |
| 95 | * Define the backend operations called by the scheduler, |
| 96 | * these functions should be implemented in driver side |
| 97 | */ |
| 98 | struct amd_sched_backend_ops { |
| 99 | int (*prepare_job)(struct amd_gpu_scheduler *sched, |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 100 | struct amd_sched_entity *c_entity, |
Chunming Zhou | 953e8fd | 2015-08-06 15:19:12 +0800 | [diff] [blame] | 101 | struct amd_sched_job *job); |
Christian König | 6f0e54a | 2015-08-05 21:22:10 +0200 | [diff] [blame] | 102 | struct fence *(*run_job)(struct amd_gpu_scheduler *sched, |
| 103 | struct amd_sched_entity *c_entity, |
| 104 | struct amd_sched_job *job); |
Chunming Zhou | 953e8fd | 2015-08-06 15:19:12 +0800 | [diff] [blame] | 105 | void (*process_job)(struct amd_gpu_scheduler *sched, |
| 106 | struct amd_sched_job *job); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 107 | }; |
| 108 | |
| 109 | /** |
| 110 | * One scheduler is implemented for each hardware ring |
| 111 | */ |
| 112 | struct amd_gpu_scheduler { |
| 113 | void *device; |
| 114 | struct task_struct *thread; |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 115 | struct amd_sched_rq sched_rq; |
| 116 | struct amd_sched_rq kernel_rq; |
Christian König | c746ba2 | 2015-08-19 16:12:15 +0200 | [diff] [blame^] | 117 | atomic_t hw_rq_count; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 118 | struct amd_sched_backend_ops *ops; |
| 119 | uint32_t ring_id; |
| 120 | uint32_t granularity; /* in ms unit */ |
| 121 | uint32_t preemption; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 122 | wait_queue_head_t wait_queue; |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 123 | struct amd_sched_entity *current_entity; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 124 | struct mutex sched_lock; |
Chunming Zhou | 4cef926 | 2015-08-05 19:52:14 +0800 | [diff] [blame] | 125 | uint32_t hw_submission_limit; |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 126 | }; |
| 127 | |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 128 | struct amd_gpu_scheduler *amd_sched_create(void *device, |
| 129 | struct amd_sched_backend_ops *ops, |
| 130 | uint32_t ring, |
| 131 | uint32_t granularity, |
Jammy Zhou | 4afcb30 | 2015-07-30 16:44:05 +0800 | [diff] [blame] | 132 | uint32_t preemption, |
| 133 | uint32_t hw_submission); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 134 | int amd_sched_destroy(struct amd_gpu_scheduler *sched); |
| 135 | |
Chunming Zhou | bb977d3 | 2015-08-18 15:16:40 +0800 | [diff] [blame] | 136 | int amd_sched_push_job(struct amd_sched_job *sched_job); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 137 | |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 138 | int amd_sched_entity_init(struct amd_gpu_scheduler *sched, |
| 139 | struct amd_sched_entity *entity, |
Christian König | 432a4ff | 2015-08-12 11:46:04 +0200 | [diff] [blame] | 140 | struct amd_sched_rq *rq, |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame] | 141 | uint32_t jobs); |
| 142 | int amd_sched_entity_fini(struct amd_gpu_scheduler *sched, |
| 143 | struct amd_sched_entity *entity); |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 144 | |
Chunming Zhou | f556cb0c | 2015-08-02 11:18:04 +0800 | [diff] [blame] | 145 | struct amd_sched_fence *amd_sched_fence_create( |
| 146 | struct amd_sched_entity *s_entity); |
| 147 | void amd_sched_fence_signal(struct amd_sched_fence *fence); |
| 148 | |
| 149 | |
Jammy Zhou | a72ce6f | 2015-05-22 18:55:07 +0800 | [diff] [blame] | 150 | #endif |