]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/blob - drivers/gpu/drm/amd/amdgpu/amdgpu_job.c
eb0f7890401abe6b71fb5df79ca659278777792c
[mirror_ubuntu-jammy-kernel.git] / drivers / gpu / drm / amd / amdgpu / amdgpu_job.c
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"
29 #include "amdgpu_trace.h"
30
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;
48
49 amdgpu_sync_create(&(*job)->sync);
50
51 return 0;
52 }
53
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
70 void amdgpu_job_free(struct amdgpu_job *job)
71 {
72 unsigned i;
73 struct fence *f;
74 /* use sched fence if available */
75 f = (job->base.s_fence)? &job->base.s_fence->base : job->fence;
76
77 for (i = 0; i < job->num_ibs; ++i)
78 amdgpu_sa_bo_free(job->adev, &job->ibs[i].sa_bo, f);
79 fence_put(job->fence);
80
81 amdgpu_bo_unref(&job->uf.bo);
82 amdgpu_sync_free(&job->sync);
83 kfree(job);
84 }
85
86 int amdgpu_job_submit(struct amdgpu_job *job, struct amdgpu_ring *ring,
87 struct amd_sched_entity *entity, void *owner,
88 struct fence **f)
89 {
90 struct fence *fence;
91 int r;
92 job->ring = ring;
93
94 if (!f)
95 return -EINVAL;
96
97 r = amd_sched_job_init(&job->base, &ring->sched, entity, owner, &fence);
98 if (r)
99 return r;
100
101 job->owner = owner;
102 *f = fence_get(fence);
103 amd_sched_entity_push_job(&job->base);
104
105 return 0;
106 }
107
108 static struct fence *amdgpu_job_dependency(struct amd_sched_job *sched_job)
109 {
110 struct amdgpu_job *job = to_amdgpu_job(sched_job);
111 struct amdgpu_vm *vm = job->ibs->vm;
112
113 struct fence *fence = amdgpu_sync_get_fence(&job->sync);
114
115 if (fence == NULL && vm && !job->ibs->vm_id) {
116 struct amdgpu_ring *ring = job->ring;
117 unsigned i, vm_id;
118 uint64_t vm_pd_addr;
119 int r;
120
121 r = amdgpu_vm_grab_id(vm, ring, &job->sync,
122 &job->base.s_fence->base,
123 &vm_id, &vm_pd_addr);
124 if (r)
125 DRM_ERROR("Error getting VM ID (%d)\n", r);
126 else {
127 for (i = 0; i < job->num_ibs; ++i) {
128 job->ibs[i].vm_id = vm_id;
129 job->ibs[i].vm_pd_addr = vm_pd_addr;
130 }
131 }
132
133 fence = amdgpu_sync_get_fence(&job->sync);
134 }
135
136 return fence;
137 }
138
139 static struct fence *amdgpu_job_run(struct amd_sched_job *sched_job)
140 {
141 struct fence *fence = NULL;
142 struct amdgpu_job *job;
143 int r;
144
145 if (!sched_job) {
146 DRM_ERROR("job is null\n");
147 return NULL;
148 }
149 job = to_amdgpu_job(sched_job);
150
151 r = amdgpu_sync_wait(&job->sync);
152 if (r) {
153 DRM_ERROR("failed to sync wait (%d)\n", r);
154 return NULL;
155 }
156
157 trace_amdgpu_sched_run_job(job);
158 r = amdgpu_ib_schedule(job->ring, job->num_ibs, job->ibs,
159 job->sync.last_vm_update, &fence);
160 if (r) {
161 DRM_ERROR("Error scheduling IBs (%d)\n", r);
162 goto err;
163 }
164
165 err:
166 job->fence = fence;
167 amdgpu_job_free(job);
168 return fence;
169 }
170
171 struct amd_sched_backend_ops amdgpu_sched_ops = {
172 .dependency = amdgpu_job_dependency,
173 .run_job = amdgpu_job_run,
174 };