amdgpu_ctx.c 9.1 KB
Newer Older
A
Alex Deucher 已提交
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
/*
 * 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.
 *
 * Authors: monk liu <monk.liu@amd.com>
 */

#include <drm/drmP.h>
26
#include <drm/drm_auth.h>
A
Alex Deucher 已提交
27 28
#include "amdgpu.h"

29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
static int amdgpu_ctx_priority_permit(struct drm_file *filp,
				      enum amd_sched_priority priority)
{
	/* NORMAL and below are accessible by everyone */
	if (priority <= AMD_SCHED_PRIORITY_NORMAL)
		return 0;

	if (capable(CAP_SYS_NICE))
		return 0;

	if (drm_is_current_master(filp))
		return 0;

	return -EACCES;
}

static int amdgpu_ctx_init(struct amdgpu_device *adev,
			   enum amd_sched_priority priority,
			   struct drm_file *filp,
			   struct amdgpu_ctx *ctx)
A
Alex Deucher 已提交
49
{
50
	unsigned i, j;
51
	int r;
A
Alex Deucher 已提交
52

53 54 55 56 57 58 59
	if (priority < 0 || priority >= AMD_SCHED_PRIORITY_MAX)
		return -EINVAL;

	r = amdgpu_ctx_priority_permit(filp, priority);
	if (r)
		return r;

60 61 62 63
	memset(ctx, 0, sizeof(*ctx));
	ctx->adev = adev;
	kref_init(&ctx->refcount);
	spin_lock_init(&ctx->ring_lock);
64
	ctx->fences = kcalloc(amdgpu_sched_jobs * AMDGPU_MAX_RINGS,
65
			      sizeof(struct dma_fence*), GFP_KERNEL);
66 67
	if (!ctx->fences)
		return -ENOMEM;
A
Alex Deucher 已提交
68

69 70
	for (i = 0; i < AMDGPU_MAX_RINGS; ++i) {
		ctx->rings[i].sequence = 1;
71
		ctx->rings[i].fences = &ctx->fences[amdgpu_sched_jobs * i];
72
	}
73 74 75

	ctx->reset_counter = atomic_read(&adev->gpu_reset_counter);

76 77
	/* create context entity for each ring */
	for (i = 0; i < adev->num_rings; i++) {
78
		struct amdgpu_ring *ring = adev->rings[i];
79
		struct amd_sched_rq *rq;
80

81
		rq = &ring->sched.sched_rq[priority];
M
Monk Liu 已提交
82 83 84 85

		if (ring == &adev->gfx.kiq.ring)
			continue;

86
		r = amd_sched_entity_init(&ring->sched, &ctx->rings[i].entity,
87 88
					  rq, amdgpu_sched_jobs);
		if (r)
89
			goto failed;
90 91
	}

92 93 94 95
	r = amdgpu_queue_mgr_init(adev, &ctx->queue_mgr);
	if (r)
		goto failed;

A
Alex Deucher 已提交
96
	return 0;
97 98 99 100 101 102 103 104

failed:
	for (j = 0; j < i; j++)
		amd_sched_entity_fini(&adev->rings[j]->sched,
				      &ctx->rings[j].entity);
	kfree(ctx->fences);
	ctx->fences = NULL;
	return r;
A
Alex Deucher 已提交
105 106
}

107
static void amdgpu_ctx_fini(struct amdgpu_ctx *ctx)
A
Alex Deucher 已提交
108
{
109 110 111
	struct amdgpu_device *adev = ctx->adev;
	unsigned i, j;

112 113 114
	if (!adev)
		return;

115
	for (i = 0; i < AMDGPU_MAX_RINGS; ++i)
116
		for (j = 0; j < amdgpu_sched_jobs; ++j)
117
			dma_fence_put(ctx->rings[i].fences[j]);
118
	kfree(ctx->fences);
119
	ctx->fences = NULL;
120

121 122 123
	for (i = 0; i < adev->num_rings; i++)
		amd_sched_entity_fini(&adev->rings[i]->sched,
				      &ctx->rings[i].entity);
124 125

	amdgpu_queue_mgr_fini(adev, &ctx->queue_mgr);
126 127 128 129
}

static int amdgpu_ctx_alloc(struct amdgpu_device *adev,
			    struct amdgpu_fpriv *fpriv,
130 131
			    struct drm_file *filp,
			    enum amd_sched_priority priority,
132 133 134
			    uint32_t *id)
{
	struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
A
Alex Deucher 已提交
135
	struct amdgpu_ctx *ctx;
136
	int r;
A
Alex Deucher 已提交
137

138 139 140 141 142 143 144
	ctx = kmalloc(sizeof(*ctx), GFP_KERNEL);
	if (!ctx)
		return -ENOMEM;

	mutex_lock(&mgr->lock);
	r = idr_alloc(&mgr->ctx_handles, ctx, 1, 0, GFP_KERNEL);
	if (r < 0) {
145
		mutex_unlock(&mgr->lock);
146 147 148
		kfree(ctx);
		return r;
	}
149

150
	*id = (uint32_t)r;
151
	r = amdgpu_ctx_init(adev, priority, filp, ctx);
152 153 154 155 156
	if (r) {
		idr_remove(&mgr->ctx_handles, *id);
		*id = 0;
		kfree(ctx);
	}
157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
	mutex_unlock(&mgr->lock);
	return r;
}

static void amdgpu_ctx_do_release(struct kref *ref)
{
	struct amdgpu_ctx *ctx;

	ctx = container_of(ref, struct amdgpu_ctx, refcount);

	amdgpu_ctx_fini(ctx);

	kfree(ctx);
}

static int amdgpu_ctx_free(struct amdgpu_fpriv *fpriv, uint32_t id)
{
	struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
	struct amdgpu_ctx *ctx;

	mutex_lock(&mgr->lock);
178 179
	ctx = idr_remove(&mgr->ctx_handles, id);
	if (ctx)
180
		kref_put(&ctx->refcount, amdgpu_ctx_do_release);
181
	mutex_unlock(&mgr->lock);
182
	return ctx ? 0 : -EINVAL;
A
Alex Deucher 已提交
183 184
}

185 186 187
static int amdgpu_ctx_query(struct amdgpu_device *adev,
			    struct amdgpu_fpriv *fpriv, uint32_t id,
			    union drm_amdgpu_ctx_out *out)
A
Alex Deucher 已提交
188 189
{
	struct amdgpu_ctx *ctx;
190
	struct amdgpu_ctx_mgr *mgr;
191
	unsigned reset_counter;
A
Alex Deucher 已提交
192

193 194 195 196
	if (!fpriv)
		return -EINVAL;

	mgr = &fpriv->ctx_mgr;
197
	mutex_lock(&mgr->lock);
A
Alex Deucher 已提交
198
	ctx = idr_find(&mgr->ctx_handles, id);
199
	if (!ctx) {
200
		mutex_unlock(&mgr->lock);
201
		return -EINVAL;
A
Alex Deucher 已提交
202
	}
203 204

	/* TODO: these two are always zero */
205 206
	out->state.flags = 0x0;
	out->state.hangs = 0x0;
207 208 209 210 211 212 213 214 215 216

	/* determine if a GPU reset has occured since the last call */
	reset_counter = atomic_read(&adev->gpu_reset_counter);
	/* TODO: this should ideally return NO, GUILTY, or INNOCENT. */
	if (ctx->reset_counter == reset_counter)
		out->state.reset_status = AMDGPU_CTX_NO_RESET;
	else
		out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET;
	ctx->reset_counter = reset_counter;

217
	mutex_unlock(&mgr->lock);
218
	return 0;
A
Alex Deucher 已提交
219 220
}

221 222 223 224 225 226 227 228 229 230 231 232
static enum amd_sched_priority amdgpu_to_sched_priority(int amdgpu_priority)
{
	switch (amdgpu_priority) {
	case AMDGPU_CTX_PRIORITY_HIGH_HW:
		return AMD_SCHED_PRIORITY_HIGH_HW;
	case AMDGPU_CTX_PRIORITY_HIGH_SW:
		return AMD_SCHED_PRIORITY_HIGH_SW;
	case AMDGPU_CTX_PRIORITY_NORMAL:
		return AMD_SCHED_PRIORITY_NORMAL;
	case AMDGPU_CTX_PRIORITY_LOW_SW:
	case AMDGPU_CTX_PRIORITY_LOW_HW:
		return AMD_SCHED_PRIORITY_LOW;
233 234
	case AMDGPU_CTX_PRIORITY_UNSET:
		return AMD_SCHED_PRIORITY_UNSET;
235 236
	default:
		WARN(1, "Invalid context priority %d\n", amdgpu_priority);
237
		return AMD_SCHED_PRIORITY_INVALID;
238 239 240
	}
}

A
Alex Deucher 已提交
241
int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
242
		     struct drm_file *filp)
A
Alex Deucher 已提交
243 244 245
{
	int r;
	uint32_t id;
246
	enum amd_sched_priority priority;
A
Alex Deucher 已提交
247 248 249 250 251 252 253

	union drm_amdgpu_ctx *args = data;
	struct amdgpu_device *adev = dev->dev_private;
	struct amdgpu_fpriv *fpriv = filp->driver_priv;

	r = 0;
	id = args->in.ctx_id;
254 255
	priority = amdgpu_to_sched_priority(args->in.priority);

256 257 258 259
	/* For backwards compatibility reasons, we need to accept
	 * ioctls with garbage in the priority field */
	if (priority == AMD_SCHED_PRIORITY_INVALID)
		priority = AMD_SCHED_PRIORITY_NORMAL;
A
Alex Deucher 已提交
260 261

	switch (args->in.op) {
262
	case AMDGPU_CTX_OP_ALLOC_CTX:
263
		r = amdgpu_ctx_alloc(adev, fpriv, filp, priority, &id);
264 265 266 267 268 269 270 271 272 273
		args->out.alloc.ctx_id = id;
		break;
	case AMDGPU_CTX_OP_FREE_CTX:
		r = amdgpu_ctx_free(fpriv, id);
		break;
	case AMDGPU_CTX_OP_QUERY_STATE:
		r = amdgpu_ctx_query(adev, fpriv, id, &args->out);
		break;
	default:
		return -EINVAL;
A
Alex Deucher 已提交
274 275 276 277
	}

	return r;
}
278 279 280 281

struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id)
{
	struct amdgpu_ctx *ctx;
282 283 284 285 286 287
	struct amdgpu_ctx_mgr *mgr;

	if (!fpriv)
		return NULL;

	mgr = &fpriv->ctx_mgr;
288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304

	mutex_lock(&mgr->lock);
	ctx = idr_find(&mgr->ctx_handles, id);
	if (ctx)
		kref_get(&ctx->refcount);
	mutex_unlock(&mgr->lock);
	return ctx;
}

int amdgpu_ctx_put(struct amdgpu_ctx *ctx)
{
	if (ctx == NULL)
		return -EINVAL;

	kref_put(&ctx->refcount, amdgpu_ctx_do_release);
	return 0;
}
305

306 307
int amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring,
			      struct dma_fence *fence, uint64_t* handler)
308 309
{
	struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
310
	uint64_t seq = cring->sequence;
311
	unsigned idx = 0;
312
	struct dma_fence *other = NULL;
313

314
	idx = seq & (amdgpu_sched_jobs - 1);
315
	other = cring->fences[idx];
316 317
	if (other) {
		signed long r;
318
		r = dma_fence_wait_timeout(other, true, MAX_SCHEDULE_TIMEOUT);
319
		if (r < 0)
320
			return r;
321 322
	}

323
	dma_fence_get(fence);
324 325 326

	spin_lock(&ctx->ring_lock);
	cring->fences[idx] = fence;
327
	cring->sequence++;
328 329
	spin_unlock(&ctx->ring_lock);

330
	dma_fence_put(other);
331 332
	if (handler)
		*handler = seq;
333

334
	return 0;
335 336
}

337 338
struct dma_fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
				       struct amdgpu_ring *ring, uint64_t seq)
339 340
{
	struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx];
341
	struct dma_fence *fence;
342 343

	spin_lock(&ctx->ring_lock);
344

M
Monk Liu 已提交
345 346 347
	if (seq == ~0ull)
		seq = ctx->rings[ring->idx].sequence - 1;

348
	if (seq >= cring->sequence) {
349 350 351 352
		spin_unlock(&ctx->ring_lock);
		return ERR_PTR(-EINVAL);
	}

353

354
	if (seq + amdgpu_sched_jobs < cring->sequence) {
355 356 357 358
		spin_unlock(&ctx->ring_lock);
		return NULL;
	}

359
	fence = dma_fence_get(cring->fences[seq & (amdgpu_sched_jobs - 1)]);
360 361 362 363
	spin_unlock(&ctx->ring_lock);

	return fence;
}
364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386

void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr)
{
	mutex_init(&mgr->lock);
	idr_init(&mgr->ctx_handles);
}

void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr)
{
	struct amdgpu_ctx *ctx;
	struct idr *idp;
	uint32_t id;

	idp = &mgr->ctx_handles;

	idr_for_each_entry(idp, ctx, id) {
		if (kref_put(&ctx->refcount, amdgpu_ctx_do_release) != 1)
			DRM_ERROR("ctx %p is still alive\n", ctx);
	}

	idr_destroy(&mgr->ctx_handles);
	mutex_destroy(&mgr->lock);
}