blob: 34cd971a9afa05a2ca8e91ab96665aa5594cff4d [file] [log] [blame]
Chunming Zhouc1b69ed2015-07-21 13:45:14 +08001/*
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 Zhou7034dec2015-11-11 14:56:00 +080029#include "amdgpu_trace.h"
Chunming Zhouc1b69ed2015-07-21 13:45:14 +080030
Christian König0e51a772016-05-18 14:19:32 +020031static void amdgpu_job_timedout(struct amd_sched_job *s_job)
Monk Liu0de24792016-03-04 18:51:02 +080032{
Christian König0e51a772016-05-18 14:19:32 +020033 struct amdgpu_job *job = container_of(s_job, struct amdgpu_job, base);
34
Monk Liu0de24792016-03-04 18:51:02 +080035 DRM_ERROR("ring %s timeout, last signaled seq=%u, last emitted seq=%u\n",
Christian König0e51a772016-05-18 14:19:32 +020036 job->base.sched->name,
37 atomic_read(&job->ring->fence_drv.last_seq),
38 job->ring->fence_drv.sync_seq);
Monk Liu0de24792016-03-04 18:51:02 +080039}
40
Christian König50838c82016-02-03 13:44:52 +010041int amdgpu_job_alloc(struct amdgpu_device *adev, unsigned num_ibs,
Monk Liuc5637832016-04-19 20:11:32 +080042 struct amdgpu_job **job, struct amdgpu_vm *vm)
Christian König50838c82016-02-03 13:44:52 +010043{
44 size_t size = sizeof(struct amdgpu_job);
45
46 if (num_ibs == 0)
47 return -EINVAL;
48
49 size += sizeof(struct amdgpu_ib) * num_ibs;
50
51 *job = kzalloc(size, GFP_KERNEL);
52 if (!*job)
53 return -ENOMEM;
54
55 (*job)->adev = adev;
Monk Liuc5637832016-04-19 20:11:32 +080056 (*job)->vm = vm;
Christian König50838c82016-02-03 13:44:52 +010057 (*job)->ibs = (void *)&(*job)[1];
58 (*job)->num_ibs = num_ibs;
Christian König50838c82016-02-03 13:44:52 +010059
Christian Könige86f9ce2016-02-08 12:13:05 +010060 amdgpu_sync_create(&(*job)->sync);
61
Christian König50838c82016-02-03 13:44:52 +010062 return 0;
63}
64
Christian Königd71518b2016-02-01 12:20:25 +010065int amdgpu_job_alloc_with_ib(struct amdgpu_device *adev, unsigned size,
66 struct amdgpu_job **job)
67{
68 int r;
69
Monk Liuc5637832016-04-19 20:11:32 +080070 r = amdgpu_job_alloc(adev, 1, job, NULL);
Christian Königd71518b2016-02-01 12:20:25 +010071 if (r)
72 return r;
73
74 r = amdgpu_ib_get(adev, NULL, size, &(*job)->ibs[0]);
75 if (r)
76 kfree(*job);
77
78 return r;
79}
80
Christian König1e24e312016-05-18 13:12:12 +020081static void amdgpu_job_free_resources(struct amdgpu_job *job)
Christian König50838c82016-02-03 13:44:52 +010082{
Monk Liu676d8c22016-03-17 13:57:09 +080083 struct fence *f;
Christian König1ab0d212016-05-18 13:09:47 +020084 unsigned i;
85
Monk Liu676d8c22016-03-17 13:57:09 +080086 /* use sched fence if available */
Christian König1ab0d212016-05-18 13:09:47 +020087 f = job->base.s_fence ? &job->base.s_fence->base : job->fence;
Christian König50838c82016-02-03 13:44:52 +010088
89 for (i = 0; i < job->num_ibs; ++i)
Christian König1ab0d212016-05-18 13:09:47 +020090 amdgpu_ib_free(job->adev, &job->ibs[i], f);
Monk Liu73cfa5f2016-03-17 13:48:13 +080091 fence_put(job->fence);
Christian König50838c82016-02-03 13:44:52 +010092
Christian König758ac172016-05-06 22:14:00 +020093 amdgpu_bo_unref(&job->uf_bo);
Christian Könige86f9ce2016-02-08 12:13:05 +010094 amdgpu_sync_free(&job->sync);
Christian Königd71518b2016-02-01 12:20:25 +010095}
96
Christian Königc5f74f72016-05-19 09:54:15 +020097void amdgpu_job_free_cb(struct amd_sched_job *s_job)
Monk Liub6723c82016-03-10 12:14:44 +080098{
Christian Königc5f74f72016-05-19 09:54:15 +020099 struct amdgpu_job *job = container_of(s_job, struct amdgpu_job, base);
100
Monk Liub6723c82016-03-10 12:14:44 +0800101 kfree(job);
102}
103
Christian König1e24e312016-05-18 13:12:12 +0200104void amdgpu_job_free(struct amdgpu_job *job)
105{
106 amdgpu_job_free_resources(job);
107 kfree(job);
108}
109
Christian Königd71518b2016-02-01 12:20:25 +0100110int amdgpu_job_submit(struct amdgpu_job *job, struct amdgpu_ring *ring,
Christian König2bd9ccf2016-02-01 12:53:58 +0100111 struct amd_sched_entity *entity, void *owner,
112 struct fence **f)
Christian Königd71518b2016-02-01 12:20:25 +0100113{
Monk Liue6869412016-03-07 12:49:55 +0800114 struct fence *fence;
115 int r;
Christian Königd71518b2016-02-01 12:20:25 +0100116 job->ring = ring;
Christian Königd71518b2016-02-01 12:20:25 +0100117
Monk Liue6869412016-03-07 12:49:55 +0800118 if (!f)
119 return -EINVAL;
120
Christian Königc5f74f72016-05-19 09:54:15 +0200121 r = amd_sched_job_init(&job->base, &ring->sched, entity, owner, &fence);
Monk Liue6869412016-03-07 12:49:55 +0800122 if (r)
123 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100124
125 job->owner = owner;
Christian König92f25092016-05-06 15:57:42 +0200126 job->ctx = entity->fence_context;
Monk Liue6869412016-03-07 12:49:55 +0800127 *f = fence_get(fence);
Christian Königd71518b2016-02-01 12:20:25 +0100128 amd_sched_entity_push_job(&job->base);
129
130 return 0;
Christian König50838c82016-02-03 13:44:52 +0100131}
132
Christian König0856cab2016-02-01 12:31:01 +0100133static struct fence *amdgpu_job_dependency(struct amd_sched_job *sched_job)
Christian Könige61235d2015-08-25 11:05:36 +0200134{
Junwei Zhanga6db8a32015-09-09 09:21:19 +0800135 struct amdgpu_job *job = to_amdgpu_job(sched_job);
Monk Liuc5637832016-04-19 20:11:32 +0800136 struct amdgpu_vm *vm = job->vm;
Christian König8d0a7ce2015-11-03 20:58:50 +0100137
Christian Könige86f9ce2016-02-08 12:13:05 +0100138 struct fence *fence = amdgpu_sync_get_fence(&job->sync);
Christian König8d0a7ce2015-11-03 20:58:50 +0100139
Christian Königd88bf582016-05-06 17:50:03 +0200140 if (fence == NULL && vm && !job->vm_id) {
Christian Königb07c60c2016-01-31 12:29:04 +0100141 struct amdgpu_ring *ring = job->ring;
Christian König8d0a7ce2015-11-03 20:58:50 +0100142 int r;
143
Christian Könige86f9ce2016-02-08 12:13:05 +0100144 r = amdgpu_vm_grab_id(vm, ring, &job->sync,
Christian König4ff37a82016-02-26 16:18:26 +0100145 &job->base.s_fence->base,
Christian Königd88bf582016-05-06 17:50:03 +0200146 &job->vm_id, &job->vm_pd_addr);
Christian König94dd0a42016-01-18 17:01:42 +0100147 if (r)
Christian König8d0a7ce2015-11-03 20:58:50 +0100148 DRM_ERROR("Error getting VM ID (%d)\n", r);
Christian König8d0a7ce2015-11-03 20:58:50 +0100149
Christian Könige86f9ce2016-02-08 12:13:05 +0100150 fence = amdgpu_sync_get_fence(&job->sync);
Christian König8d0a7ce2015-11-03 20:58:50 +0100151 }
152
153 return fence;
Christian Könige61235d2015-08-25 11:05:36 +0200154}
155
Christian König0856cab2016-02-01 12:31:01 +0100156static struct fence *amdgpu_job_run(struct amd_sched_job *sched_job)
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800157{
Christian Königec72b802016-02-01 11:56:35 +0100158 struct fence *fence = NULL;
Junwei Zhang4c7eb912015-09-09 09:05:55 +0800159 struct amdgpu_job *job;
Christian Königbd755d02015-08-24 14:57:26 +0200160 int r;
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800161
Junwei Zhang4c7eb912015-09-09 09:05:55 +0800162 if (!sched_job) {
Chunming Zhou4cef9262015-08-05 19:52:14 +0800163 DRM_ERROR("job is null\n");
Christian König6f0e54a2015-08-05 21:22:10 +0200164 return NULL;
Chunming Zhou4cef9262015-08-05 19:52:14 +0800165 }
Junwei Zhanga6db8a32015-09-09 09:21:19 +0800166 job = to_amdgpu_job(sched_job);
Christian Könige86f9ce2016-02-08 12:13:05 +0100167
168 r = amdgpu_sync_wait(&job->sync);
169 if (r) {
170 DRM_ERROR("failed to sync wait (%d)\n", r);
171 return NULL;
172 }
173
Chunming Zhou7034dec2015-11-11 14:56:00 +0800174 trace_amdgpu_sched_run_job(job);
Christian König336d1f52016-02-16 10:57:10 +0100175 r = amdgpu_ib_schedule(job->ring, job->num_ibs, job->ibs,
Monk Liuc5637832016-04-19 20:11:32 +0800176 job->sync.last_vm_update, job, &fence);
Christian König1886d1a2015-08-31 17:28:28 +0200177 if (r) {
178 DRM_ERROR("Error scheduling IBs (%d)\n", r);
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800179 goto err;
Christian König1886d1a2015-08-31 17:28:28 +0200180 }
181
Christian König1886d1a2015-08-31 17:28:28 +0200182err:
Monk Liu73cfa5f2016-03-17 13:48:13 +0800183 job->fence = fence;
Christian König1e24e312016-05-18 13:12:12 +0200184 amdgpu_job_free_resources(job);
Christian Königec72b802016-02-01 11:56:35 +0100185 return fence;
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800186}
187
Nils Wallménius62250a92016-04-10 16:30:00 +0200188const struct amd_sched_backend_ops amdgpu_sched_ops = {
Christian König0856cab2016-02-01 12:31:01 +0100189 .dependency = amdgpu_job_dependency,
190 .run_job = amdgpu_job_run,
Christian König0e51a772016-05-18 14:19:32 +0200191 .timedout_job = amdgpu_job_timedout,
Christian Königc5f74f72016-05-19 09:54:15 +0200192 .free_job = amdgpu_job_free_cb
Chunming Zhouc1b69ed2015-07-21 13:45:14 +0800193};