Chunming Zhou | c1b69ed | 2015-07-21 13:45:14 +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 "amdgpu.h" |
Chunming Zhou | 7034dec | 2015-11-11 14:56:00 +0800 | [diff] [blame] | 29 | #include "amdgpu_trace.h" |
Chunming Zhou | c1b69ed | 2015-07-21 13:45:14 +0800 | [diff] [blame] | 30 | |
Christian König | 50838c8 | 2016-02-03 13:44:52 +0100 | [diff] [blame] | 31 | int amdgpu_job_alloc(struct amdgpu_device *adev, unsigned num_ibs, |
| 32 | struct amdgpu_job **job) |
| 33 | { |
| 34 | size_t size = sizeof(struct amdgpu_job); |
| 35 | |
| 36 | if (num_ibs == 0) |
| 37 | return -EINVAL; |
| 38 | |
| 39 | size += sizeof(struct amdgpu_ib) * num_ibs; |
| 40 | |
| 41 | *job = kzalloc(size, GFP_KERNEL); |
| 42 | if (!*job) |
| 43 | return -ENOMEM; |
| 44 | |
| 45 | (*job)->adev = adev; |
| 46 | (*job)->ibs = (void *)&(*job)[1]; |
| 47 | (*job)->num_ibs = num_ibs; |
Christian König | 50838c8 | 2016-02-03 13:44:52 +0100 | [diff] [blame] | 48 | |
Christian König | e86f9ce | 2016-02-08 12:13:05 +0100 | [diff] [blame] | 49 | amdgpu_sync_create(&(*job)->sync); |
| 50 | |
Christian König | 50838c8 | 2016-02-03 13:44:52 +0100 | [diff] [blame] | 51 | return 0; |
| 52 | } |
| 53 | |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 54 | int amdgpu_job_alloc_with_ib(struct amdgpu_device *adev, unsigned size, |
| 55 | struct amdgpu_job **job) |
| 56 | { |
| 57 | int r; |
| 58 | |
| 59 | r = amdgpu_job_alloc(adev, 1, job); |
| 60 | if (r) |
| 61 | return r; |
| 62 | |
| 63 | r = amdgpu_ib_get(adev, NULL, size, &(*job)->ibs[0]); |
| 64 | if (r) |
| 65 | kfree(*job); |
| 66 | |
| 67 | return r; |
| 68 | } |
| 69 | |
Christian König | 50838c8 | 2016-02-03 13:44:52 +0100 | [diff] [blame] | 70 | void amdgpu_job_free(struct amdgpu_job *job) |
| 71 | { |
| 72 | unsigned i; |
| 73 | |
| 74 | for (i = 0; i < job->num_ibs; ++i) |
| 75 | amdgpu_ib_free(job->adev, &job->ibs[i]); |
| 76 | |
| 77 | amdgpu_bo_unref(&job->uf.bo); |
Christian König | e86f9ce | 2016-02-08 12:13:05 +0100 | [diff] [blame] | 78 | amdgpu_sync_free(&job->sync); |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 79 | kfree(job); |
| 80 | } |
| 81 | |
| 82 | int amdgpu_job_submit(struct amdgpu_job *job, struct amdgpu_ring *ring, |
Christian König | 2bd9ccf | 2016-02-01 12:53:58 +0100 | [diff] [blame] | 83 | struct amd_sched_entity *entity, void *owner, |
| 84 | struct fence **f) |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 85 | { |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 86 | job->ring = ring; |
| 87 | job->base.sched = &ring->sched; |
Christian König | 2bd9ccf | 2016-02-01 12:53:58 +0100 | [diff] [blame] | 88 | job->base.s_entity = entity; |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 89 | job->base.s_fence = amd_sched_fence_create(job->base.s_entity, owner); |
| 90 | if (!job->base.s_fence) |
| 91 | return -ENOMEM; |
| 92 | |
| 93 | *f = fence_get(&job->base.s_fence->base); |
| 94 | |
| 95 | job->owner = owner; |
| 96 | amd_sched_entity_push_job(&job->base); |
| 97 | |
| 98 | return 0; |
Christian König | 50838c8 | 2016-02-03 13:44:52 +0100 | [diff] [blame] | 99 | } |
| 100 | |
Christian König | 0856cab | 2016-02-01 12:31:01 +0100 | [diff] [blame] | 101 | static struct fence *amdgpu_job_dependency(struct amd_sched_job *sched_job) |
Christian König | e61235d | 2015-08-25 11:05:36 +0200 | [diff] [blame] | 102 | { |
Junwei Zhang | a6db8a3 | 2015-09-09 09:21:19 +0800 | [diff] [blame] | 103 | struct amdgpu_job *job = to_amdgpu_job(sched_job); |
Christian König | 8d0a7ce | 2015-11-03 20:58:50 +0100 | [diff] [blame] | 104 | struct amdgpu_vm *vm = job->ibs->vm; |
| 105 | |
Christian König | e86f9ce | 2016-02-08 12:13:05 +0100 | [diff] [blame] | 106 | struct fence *fence = amdgpu_sync_get_fence(&job->sync); |
Christian König | 8d0a7ce | 2015-11-03 20:58:50 +0100 | [diff] [blame] | 107 | |
| 108 | if (fence == NULL && vm && !job->ibs->grabbed_vmid) { |
Christian König | b07c60c | 2016-01-31 12:29:04 +0100 | [diff] [blame] | 109 | struct amdgpu_ring *ring = job->ring; |
Christian König | 8d0a7ce | 2015-11-03 20:58:50 +0100 | [diff] [blame] | 110 | int r; |
| 111 | |
Christian König | e86f9ce | 2016-02-08 12:13:05 +0100 | [diff] [blame] | 112 | r = amdgpu_vm_grab_id(vm, ring, &job->sync, |
Christian König | 94dd0a4 | 2016-01-18 17:01:42 +0100 | [diff] [blame] | 113 | &job->base.s_fence->base); |
| 114 | if (r) |
Christian König | 8d0a7ce | 2015-11-03 20:58:50 +0100 | [diff] [blame] | 115 | DRM_ERROR("Error getting VM ID (%d)\n", r); |
Christian König | 94dd0a4 | 2016-01-18 17:01:42 +0100 | [diff] [blame] | 116 | else |
Christian König | 8d0a7ce | 2015-11-03 20:58:50 +0100 | [diff] [blame] | 117 | job->ibs->grabbed_vmid = true; |
Christian König | 8d0a7ce | 2015-11-03 20:58:50 +0100 | [diff] [blame] | 118 | |
Christian König | e86f9ce | 2016-02-08 12:13:05 +0100 | [diff] [blame] | 119 | fence = amdgpu_sync_get_fence(&job->sync); |
Christian König | 8d0a7ce | 2015-11-03 20:58:50 +0100 | [diff] [blame] | 120 | } |
| 121 | |
| 122 | return fence; |
Christian König | e61235d | 2015-08-25 11:05:36 +0200 | [diff] [blame] | 123 | } |
| 124 | |
Christian König | 0856cab | 2016-02-01 12:31:01 +0100 | [diff] [blame] | 125 | static struct fence *amdgpu_job_run(struct amd_sched_job *sched_job) |
Chunming Zhou | c1b69ed | 2015-07-21 13:45:14 +0800 | [diff] [blame] | 126 | { |
Christian König | ec72b80 | 2016-02-01 11:56:35 +0100 | [diff] [blame] | 127 | struct fence *fence = NULL; |
Junwei Zhang | 4c7eb91 | 2015-09-09 09:05:55 +0800 | [diff] [blame] | 128 | struct amdgpu_job *job; |
Christian König | bd755d0 | 2015-08-24 14:57:26 +0200 | [diff] [blame] | 129 | int r; |
Chunming Zhou | c1b69ed | 2015-07-21 13:45:14 +0800 | [diff] [blame] | 130 | |
Junwei Zhang | 4c7eb91 | 2015-09-09 09:05:55 +0800 | [diff] [blame] | 131 | if (!sched_job) { |
Chunming Zhou | 4cef926 | 2015-08-05 19:52:14 +0800 | [diff] [blame] | 132 | DRM_ERROR("job is null\n"); |
Christian König | 6f0e54a | 2015-08-05 21:22:10 +0200 | [diff] [blame] | 133 | return NULL; |
Chunming Zhou | 4cef926 | 2015-08-05 19:52:14 +0800 | [diff] [blame] | 134 | } |
Junwei Zhang | a6db8a3 | 2015-09-09 09:21:19 +0800 | [diff] [blame] | 135 | job = to_amdgpu_job(sched_job); |
Christian König | e86f9ce | 2016-02-08 12:13:05 +0100 | [diff] [blame] | 136 | |
| 137 | r = amdgpu_sync_wait(&job->sync); |
| 138 | if (r) { |
| 139 | DRM_ERROR("failed to sync wait (%d)\n", r); |
| 140 | return NULL; |
| 141 | } |
| 142 | |
Chunming Zhou | 7034dec | 2015-11-11 14:56:00 +0800 | [diff] [blame] | 143 | trace_amdgpu_sched_run_job(job); |
Christian König | e86f9ce | 2016-02-08 12:13:05 +0100 | [diff] [blame] | 144 | r = amdgpu_ib_schedule(job->ring, job->num_ibs, job->ibs, job->owner, |
| 145 | job->sync.last_vm_update, &fence); |
Christian König | 1886d1a | 2015-08-31 17:28:28 +0200 | [diff] [blame] | 146 | if (r) { |
| 147 | DRM_ERROR("Error scheduling IBs (%d)\n", r); |
Chunming Zhou | c1b69ed | 2015-07-21 13:45:14 +0800 | [diff] [blame] | 148 | goto err; |
Christian König | 1886d1a | 2015-08-31 17:28:28 +0200 | [diff] [blame] | 149 | } |
| 150 | |
Christian König | 1886d1a | 2015-08-31 17:28:28 +0200 | [diff] [blame] | 151 | err: |
Christian König | d71518b | 2016-02-01 12:20:25 +0100 | [diff] [blame] | 152 | amdgpu_job_free(job); |
Christian König | ec72b80 | 2016-02-01 11:56:35 +0100 | [diff] [blame] | 153 | return fence; |
Chunming Zhou | c1b69ed | 2015-07-21 13:45:14 +0800 | [diff] [blame] | 154 | } |
| 155 | |
| 156 | struct amd_sched_backend_ops amdgpu_sched_ops = { |
Christian König | 0856cab | 2016-02-01 12:31:01 +0100 | [diff] [blame] | 157 | .dependency = amdgpu_job_dependency, |
| 158 | .run_job = amdgpu_job_run, |
Chunming Zhou | c1b69ed | 2015-07-21 13:45:14 +0800 | [diff] [blame] | 159 | }; |