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