amdgpu_job.c 5.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
/*
 * Copyright 2015 Advanced Micro Devices, Inc.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 *
 */
#include <linux/kthread.h>
#include <linux/wait.h>
#include <linux/sched.h>
#include <drm/drmP.h>
#include "amdgpu.h"
29
#include "amdgpu_trace.h"
30

31
static void amdgpu_job_timedout(struct amd_sched_job *s_job)
32
{
33 34
	struct amdgpu_job *job = container_of(s_job, struct amdgpu_job, base);

35
	DRM_ERROR("ring %s timeout, last signaled seq=%u, last emitted seq=%u\n",
36 37 38
		  job->base.sched->name,
		  atomic_read(&job->ring->fence_drv.last_seq),
		  job->ring->fence_drv.sync_seq);
39

40
	amdgpu_gpu_recover(job->adev, job);
41 42
}

43
int amdgpu_job_alloc(struct amdgpu_device *adev, unsigned num_ibs,
44
		     struct amdgpu_job **job, struct amdgpu_vm *vm)
45 46 47 48 49 50 51 52 53 54 55 56 57
{
	size_t size = sizeof(struct amdgpu_job);

	if (num_ibs == 0)
		return -EINVAL;

	size += sizeof(struct amdgpu_ib) * num_ibs;

	*job = kzalloc(size, GFP_KERNEL);
	if (!*job)
		return -ENOMEM;

	(*job)->adev = adev;
58
	(*job)->vm = vm;
59 60 61
	(*job)->ibs = (void *)&(*job)[1];
	(*job)->num_ibs = num_ibs;

62
	amdgpu_sync_create(&(*job)->sync);
63
	amdgpu_sync_create(&(*job)->dep_sync);
64
	amdgpu_sync_create(&(*job)->sched_sync);
65
	(*job)->vram_lost_counter = atomic_read(&adev->vram_lost_counter);
66

67 68 69
	return 0;
}

70 71 72 73 74
int amdgpu_job_alloc_with_ib(struct amdgpu_device *adev, unsigned size,
			     struct amdgpu_job **job)
{
	int r;

75
	r = amdgpu_job_alloc(adev, 1, job, NULL);
76 77 78 79 80 81
	if (r)
		return r;

	r = amdgpu_ib_get(adev, NULL, size, &(*job)->ibs[0]);
	if (r)
		kfree(*job);
82 83
	else
		(*job)->vm_pd_addr = adev->gart.table_addr;
84 85 86 87

	return r;
}

88
void amdgpu_job_free_resources(struct amdgpu_job *job)
89
{
90
	struct dma_fence *f;
91 92
	unsigned i;

93
	/* use sched fence if available */
94
	f = job->base.s_fence ? &job->base.s_fence->finished : job->fence;
95 96

	for (i = 0; i < job->num_ibs; ++i)
97
		amdgpu_ib_free(job->adev, &job->ibs[i], f);
98 99
}

100
static void amdgpu_job_free_cb(struct amd_sched_job *s_job)
M
Monk Liu 已提交
101
{
102 103
	struct amdgpu_job *job = container_of(s_job, struct amdgpu_job, base);

104
	amdgpu_ring_priority_put(job->ring, s_job->s_priority);
105
	dma_fence_put(job->fence);
106
	amdgpu_sync_free(&job->sync);
107
	amdgpu_sync_free(&job->dep_sync);
108
	amdgpu_sync_free(&job->sched_sync);
M
Monk Liu 已提交
109 110 111
	kfree(job);
}

112 113 114
void amdgpu_job_free(struct amdgpu_job *job)
{
	amdgpu_job_free_resources(job);
115

116
	dma_fence_put(job->fence);
117
	amdgpu_sync_free(&job->sync);
118
	amdgpu_sync_free(&job->dep_sync);
119
	amdgpu_sync_free(&job->sched_sync);
120 121 122
	kfree(job);
}

123
int amdgpu_job_submit(struct amdgpu_job *job, struct amdgpu_ring *ring,
124
		      struct amd_sched_entity *entity, void *owner,
125
		      struct dma_fence **f)
126
{
127
	int r;
128 129
	job->ring = ring;

130 131 132
	if (!f)
		return -EINVAL;

133
	r = amd_sched_job_init(&job->base, &ring->sched, entity, owner);
134 135
	if (r)
		return r;
136 137

	job->owner = owner;
138
	job->fence_ctx = entity->fence_context;
139
	*f = dma_fence_get(&job->base.s_fence->finished);
140
	amdgpu_job_free_resources(job);
141
	amdgpu_ring_priority_get(job->ring, job->base.s_priority);
142
	amd_sched_entity_push_job(&job->base, entity);
143 144

	return 0;
145 146
}

147 148
static struct dma_fence *amdgpu_job_dependency(struct amd_sched_job *sched_job,
					       struct amd_sched_entity *s_entity)
149
{
150
	struct amdgpu_job *job = to_amdgpu_job(sched_job);
151
	struct amdgpu_vm *vm = job->vm;
152

153
	struct dma_fence *fence = amdgpu_sync_get_fence(&job->dep_sync);
154
	int r;
155

156
	if (amd_sched_dependency_optimized(fence, s_entity)) {
157 158 159 160 161 162
		r = amdgpu_sync_fence(job->adev, &job->sched_sync, fence);
		if (r)
			DRM_ERROR("Error adding fence to sync (%d)\n", r);
	}
	if (!fence)
		fence = amdgpu_sync_get_fence(&job->sync);
C
Chunming Zhou 已提交
163
	while (fence == NULL && vm && !job->vm_id) {
164
		struct amdgpu_ring *ring = job->ring;
165

166
		r = amdgpu_vm_grab_id(vm, ring, &job->sync,
167
				      &job->base.s_fence->finished,
168
				      job);
169
		if (r)
170 171
			DRM_ERROR("Error getting VM ID (%d)\n", r);

172
		fence = amdgpu_sync_get_fence(&job->sync);
173 174 175
	}

	return fence;
176 177
}

178
static struct dma_fence *amdgpu_job_run(struct amd_sched_job *sched_job)
179
{
180
	struct dma_fence *fence = NULL, *finished;
181
	struct amdgpu_device *adev;
182
	struct amdgpu_job *job;
183
	int r;
184

185
	if (!sched_job) {
186
		DRM_ERROR("job is null\n");
187
		return NULL;
188
	}
189
	job = to_amdgpu_job(sched_job);
190
	finished = &job->base.s_fence->finished;
191
	adev = job->adev;
192

193
	BUG_ON(amdgpu_sync_peek_fence(&job->sync, NULL));
194

195
	trace_amdgpu_sched_run_job(job);
196 197 198 199 200 201

	if (job->vram_lost_counter != atomic_read(&adev->vram_lost_counter))
		dma_fence_set_error(finished, -ECANCELED);/* skip IB as well if VRAM lost */

	if (finished->error < 0) {
		DRM_INFO("Skip scheduling IBs!\n");
202 203 204
	} else {
		r = amdgpu_ib_schedule(job->ring, job->num_ibs, job->ibs, job,
				       &fence);
205 206 207
		if (r)
			DRM_ERROR("Error scheduling IBs (%d)\n", r);
	}
208
	/* if gpu reset, hw fence will be replaced here */
209 210
	dma_fence_put(job->fence);
	job->fence = dma_fence_get(fence);
211

212
	amdgpu_job_free_resources(job);
213
	return fence;
214 215
}

216
const struct amd_sched_backend_ops amdgpu_sched_ops = {
217 218
	.dependency = amdgpu_job_dependency,
	.run_job = amdgpu_job_run,
219
	.timedout_job = amdgpu_job_timedout,
220
	.free_job = amdgpu_job_free_cb
221
};