amdgpu_ctx.c 14.4 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
#include "amdgpu.h"
28
#include "amdgpu_sched.h"
A
Alex Deucher 已提交
29

30 31 32 33 34 35 36 37 38 39 40 41
#define to_amdgpu_ctx_entity(e)	\
	container_of((e), struct amdgpu_ctx_entity, entity)

const unsigned int amdgpu_ctx_num_entities[AMDGPU_HW_IP_NUM] = {
	[AMDGPU_HW_IP_GFX]	=	1,
	[AMDGPU_HW_IP_COMPUTE]	=	4,
	[AMDGPU_HW_IP_DMA]	=	2,
	[AMDGPU_HW_IP_UVD]	=	1,
	[AMDGPU_HW_IP_VCE]	=	1,
	[AMDGPU_HW_IP_UVD_ENC]	=	1,
	[AMDGPU_HW_IP_VCN_DEC]	=	1,
	[AMDGPU_HW_IP_VCN_ENC]	=	1,
42
	[AMDGPU_HW_IP_VCN_JPEG]	=	1,
43 44 45 46 47 48 49 50 51 52 53
};

static int amdgput_ctx_total_num_entities(void)
{
	unsigned i, num_entities = 0;

	for (i = 0; i < AMDGPU_HW_IP_NUM; ++i)
		num_entities += amdgpu_ctx_num_entities[i];

	return num_entities;
}
54

55
static int amdgpu_ctx_priority_permit(struct drm_file *filp,
56
				      enum drm_sched_priority priority)
57 58
{
	/* NORMAL and below are accessible by everyone */
59
	if (priority <= DRM_SCHED_PRIORITY_NORMAL)
60 61 62 63 64 65 66 67 68 69 70 71
		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,
72
			   enum drm_sched_priority priority,
73 74
			   struct drm_file *filp,
			   struct amdgpu_ctx *ctx)
A
Alex Deucher 已提交
75
{
76 77
	unsigned num_entities = amdgput_ctx_total_num_entities();
	unsigned i, j;
78
	int r;
A
Alex Deucher 已提交
79

80
	if (priority < 0 || priority >= DRM_SCHED_PRIORITY_MAX)
81 82 83 84 85 86
		return -EINVAL;

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

87 88
	memset(ctx, 0, sizeof(*ctx));
	ctx->adev = adev;
89 90

	ctx->fences = kcalloc(amdgpu_sched_jobs * num_entities,
91
			      sizeof(struct dma_fence*), GFP_KERNEL);
92 93
	if (!ctx->fences)
		return -ENOMEM;
A
Alex Deucher 已提交
94

95 96 97 98 99 100 101
	ctx->entities[0] = kcalloc(num_entities,
				   sizeof(struct amdgpu_ctx_entity),
				   GFP_KERNEL);
	if (!ctx->entities[0]) {
		r = -ENOMEM;
		goto error_free_fences;
	}
102

103 104 105 106 107
	for (i = 0; i < num_entities; ++i) {
		struct amdgpu_ctx_entity *entity = &ctx->entities[0][i];

		entity->sequence = 1;
		entity->fences = &ctx->fences[amdgpu_sched_jobs * i];
108
	}
109 110 111 112 113 114 115
	for (i = 1; i < AMDGPU_HW_IP_NUM; ++i)
		ctx->entities[i] = ctx->entities[i - 1] +
			amdgpu_ctx_num_entities[i - 1];

	kref_init(&ctx->refcount);
	spin_lock_init(&ctx->ring_lock);
	mutex_init(&ctx->lock);
116 117

	ctx->reset_counter = atomic_read(&adev->gpu_reset_counter);
118
	ctx->reset_counter_query = ctx->reset_counter;
119
	ctx->vram_lost_counter = atomic_read(&adev->vram_lost_counter);
120
	ctx->init_priority = priority;
121
	ctx->override_priority = DRM_SCHED_PRIORITY_UNSET;
122

123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167
	for (i = 0; i < AMDGPU_HW_IP_NUM; ++i) {
		struct amdgpu_ring *rings[AMDGPU_MAX_RINGS];
		struct drm_sched_rq *rqs[AMDGPU_MAX_RINGS];
		unsigned num_rings;

		switch (i) {
		case AMDGPU_HW_IP_GFX:
			rings[0] = &adev->gfx.gfx_ring[0];
			num_rings = 1;
			break;
		case AMDGPU_HW_IP_COMPUTE:
			for (j = 0; j < adev->gfx.num_compute_rings; ++j)
				rings[j] = &adev->gfx.compute_ring[j];
			num_rings = adev->gfx.num_compute_rings;
			break;
		case AMDGPU_HW_IP_DMA:
			for (j = 0; j < adev->sdma.num_instances; ++j)
				rings[j] = &adev->sdma.instance[j].ring;
			num_rings = adev->sdma.num_instances;
			break;
		case AMDGPU_HW_IP_UVD:
			rings[0] = &adev->uvd.inst[0].ring;
			num_rings = 1;
			break;
		case AMDGPU_HW_IP_VCE:
			rings[0] = &adev->vce.ring[0];
			num_rings = 1;
			break;
		case AMDGPU_HW_IP_UVD_ENC:
			rings[0] = &adev->uvd.inst[0].ring_enc[0];
			num_rings = 1;
			break;
		case AMDGPU_HW_IP_VCN_DEC:
			rings[0] = &adev->vcn.ring_dec;
			num_rings = 1;
			break;
		case AMDGPU_HW_IP_VCN_ENC:
			rings[0] = &adev->vcn.ring_enc[0];
			num_rings = 1;
			break;
		case AMDGPU_HW_IP_VCN_JPEG:
			rings[0] = &adev->vcn.ring_jpeg;
			num_rings = 1;
			break;
		}
M
Monk Liu 已提交
168

169 170
		for (j = 0; j < num_rings; ++j)
			rqs[j] = &rings[j]->sched.sched_rq[priority];
M
Monk Liu 已提交
171

172 173 174
		for (j = 0; j < amdgpu_ctx_num_entities[i]; ++j)
			r = drm_sched_entity_init(&ctx->entities[i][j].entity,
						  rqs, num_rings, &ctx->guilty);
175
		if (r)
176
			goto error_cleanup_entities;
177 178
	}

A
Alex Deucher 已提交
179
	return 0;
180

181 182 183 184 185 186
error_cleanup_entities:
	for (i = 0; i < num_entities; ++i)
		drm_sched_entity_destroy(&ctx->entities[0][i].entity);
	kfree(ctx->entities[0]);

error_free_fences:
187 188 189
	kfree(ctx->fences);
	ctx->fences = NULL;
	return r;
A
Alex Deucher 已提交
190 191
}

192
static void amdgpu_ctx_fini(struct kref *ref)
A
Alex Deucher 已提交
193
{
194
	struct amdgpu_ctx *ctx = container_of(ref, struct amdgpu_ctx, refcount);
195
	unsigned num_entities = amdgput_ctx_total_num_entities();
196 197 198
	struct amdgpu_device *adev = ctx->adev;
	unsigned i, j;

199 200 201
	if (!adev)
		return;

202
	for (i = 0; i < num_entities; ++i)
203
		for (j = 0; j < amdgpu_sched_jobs; ++j)
204
			dma_fence_put(ctx->entities[0][i].fences[j]);
205
	kfree(ctx->fences);
206
	kfree(ctx->entities[0]);
207

208
	mutex_destroy(&ctx->lock);
209 210

	kfree(ctx);
211 212
}

213 214
int amdgpu_ctx_get_entity(struct amdgpu_ctx *ctx, u32 hw_ip, u32 instance,
			  u32 ring, struct drm_sched_entity **entity)
215
{
216 217 218 219
	if (hw_ip >= AMDGPU_HW_IP_NUM) {
		DRM_ERROR("unknown HW IP type: %d\n", hw_ip);
		return -EINVAL;
	}
220 221 222 223 224 225 226

	/* Right now all IPs have only one instance - multiple rings. */
	if (instance != 0) {
		DRM_DEBUG("invalid ip instance: %d\n", instance);
		return -EINVAL;
	}

227 228
	if (ring >= amdgpu_ctx_num_entities[hw_ip]) {
		DRM_DEBUG("invalid ring: %d %d\n", hw_ip, ring);
229 230 231
		return -EINVAL;
	}

232
	*entity = &ctx->entities[hw_ip][ring].entity;
233 234 235
	return 0;
}

236 237
static int amdgpu_ctx_alloc(struct amdgpu_device *adev,
			    struct amdgpu_fpriv *fpriv,
238
			    struct drm_file *filp,
239
			    enum drm_sched_priority priority,
240 241 242
			    uint32_t *id)
{
	struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr;
A
Alex Deucher 已提交
243
	struct amdgpu_ctx *ctx;
244
	int r;
A
Alex Deucher 已提交
245

246 247 248 249 250 251 252
	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) {
253
		mutex_unlock(&mgr->lock);
254 255 256
		kfree(ctx);
		return r;
	}
257

258
	*id = (uint32_t)r;
259
	r = amdgpu_ctx_init(adev, priority, filp, ctx);
260 261 262 263 264
	if (r) {
		idr_remove(&mgr->ctx_handles, *id);
		*id = 0;
		kfree(ctx);
	}
265 266 267 268 269 270 271
	mutex_unlock(&mgr->lock);
	return r;
}

static void amdgpu_ctx_do_release(struct kref *ref)
{
	struct amdgpu_ctx *ctx;
272
	unsigned num_entities;
273
	u32 i;
274 275 276

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

277 278 279
	num_entities = 0;
	for (i = 0; i < AMDGPU_HW_IP_NUM; i++)
		num_entities += amdgpu_ctx_num_entities[i];
280

281 282
	for (i = 0; i < num_entities; i++)
		drm_sched_entity_destroy(&ctx->entities[0][i].entity);
283

284
	amdgpu_ctx_fini(ref);
285 286 287 288 289 290 291 292
}

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);
293 294
	ctx = idr_remove(&mgr->ctx_handles, id);
	if (ctx)
295
		kref_put(&ctx->refcount, amdgpu_ctx_do_release);
296
	mutex_unlock(&mgr->lock);
297
	return ctx ? 0 : -EINVAL;
A
Alex Deucher 已提交
298 299
}

300 301 302
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 已提交
303 304
{
	struct amdgpu_ctx *ctx;
305
	struct amdgpu_ctx_mgr *mgr;
306
	unsigned reset_counter;
A
Alex Deucher 已提交
307

308 309 310 311
	if (!fpriv)
		return -EINVAL;

	mgr = &fpriv->ctx_mgr;
312
	mutex_lock(&mgr->lock);
A
Alex Deucher 已提交
313
	ctx = idr_find(&mgr->ctx_handles, id);
314
	if (!ctx) {
315
		mutex_unlock(&mgr->lock);
316
		return -EINVAL;
A
Alex Deucher 已提交
317
	}
318 319

	/* TODO: these two are always zero */
320 321
	out->state.flags = 0x0;
	out->state.hangs = 0x0;
322 323 324 325

	/* 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. */
326
	if (ctx->reset_counter_query == reset_counter)
327 328 329
		out->state.reset_status = AMDGPU_CTX_NO_RESET;
	else
		out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET;
330
	ctx->reset_counter_query = reset_counter;
331

332
	mutex_unlock(&mgr->lock);
333
	return 0;
A
Alex Deucher 已提交
334 335
}

M
Monk Liu 已提交
336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369
static int amdgpu_ctx_query2(struct amdgpu_device *adev,
	struct amdgpu_fpriv *fpriv, uint32_t id,
	union drm_amdgpu_ctx_out *out)
{
	struct amdgpu_ctx *ctx;
	struct amdgpu_ctx_mgr *mgr;

	if (!fpriv)
		return -EINVAL;

	mgr = &fpriv->ctx_mgr;
	mutex_lock(&mgr->lock);
	ctx = idr_find(&mgr->ctx_handles, id);
	if (!ctx) {
		mutex_unlock(&mgr->lock);
		return -EINVAL;
	}

	out->state.flags = 0x0;
	out->state.hangs = 0x0;

	if (ctx->reset_counter != atomic_read(&adev->gpu_reset_counter))
		out->state.flags |= AMDGPU_CTX_QUERY2_FLAGS_RESET;

	if (ctx->vram_lost_counter != atomic_read(&adev->vram_lost_counter))
		out->state.flags |= AMDGPU_CTX_QUERY2_FLAGS_VRAMLOST;

	if (atomic_read(&ctx->guilty))
		out->state.flags |= AMDGPU_CTX_QUERY2_FLAGS_GUILTY;

	mutex_unlock(&mgr->lock);
	return 0;
}

A
Alex Deucher 已提交
370
int amdgpu_ctx_ioctl(struct drm_device *dev, void *data,
371
		     struct drm_file *filp)
A
Alex Deucher 已提交
372 373 374
{
	int r;
	uint32_t id;
375
	enum drm_sched_priority priority;
A
Alex Deucher 已提交
376 377 378 379 380 381 382

	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;
383 384
	priority = amdgpu_to_sched_priority(args->in.priority);

385 386
	/* For backwards compatibility reasons, we need to accept
	 * ioctls with garbage in the priority field */
387 388
	if (priority == DRM_SCHED_PRIORITY_INVALID)
		priority = DRM_SCHED_PRIORITY_NORMAL;
A
Alex Deucher 已提交
389 390

	switch (args->in.op) {
391
	case AMDGPU_CTX_OP_ALLOC_CTX:
392
		r = amdgpu_ctx_alloc(adev, fpriv, filp, priority, &id);
393 394 395 396 397 398 399 400
		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;
M
Monk Liu 已提交
401 402 403
	case AMDGPU_CTX_OP_QUERY_STATE2:
		r = amdgpu_ctx_query2(adev, fpriv, id, &args->out);
		break;
404 405
	default:
		return -EINVAL;
A
Alex Deucher 已提交
406 407 408 409
	}

	return r;
}
410 411 412 413

struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id)
{
	struct amdgpu_ctx *ctx;
414 415 416 417 418 419
	struct amdgpu_ctx_mgr *mgr;

	if (!fpriv)
		return NULL;

	mgr = &fpriv->ctx_mgr;
420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436

	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;
}
437

438 439 440
void amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx,
			  struct drm_sched_entity *entity,
			  struct dma_fence *fence, uint64_t* handle)
441
{
442 443
	struct amdgpu_ctx_entity *centity = to_amdgpu_ctx_entity(entity);
	uint64_t seq = centity->sequence;
444
	struct dma_fence *other = NULL;
445
	unsigned idx = 0;
446

447
	idx = seq & (amdgpu_sched_jobs - 1);
448
	other = centity->fences[idx];
449 450
	if (other)
		BUG_ON(!dma_fence_is_signaled(other));
451

452
	dma_fence_get(fence);
453 454

	spin_lock(&ctx->ring_lock);
455 456
	centity->fences[idx] = fence;
	centity->sequence++;
457 458
	spin_unlock(&ctx->ring_lock);

459
	dma_fence_put(other);
460 461
	if (handle)
		*handle = seq;
462 463
}

464
struct dma_fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx,
465 466
				       struct drm_sched_entity *entity,
				       uint64_t seq)
467
{
468
	struct amdgpu_ctx_entity *centity = to_amdgpu_ctx_entity(entity);
469
	struct dma_fence *fence;
470 471

	spin_lock(&ctx->ring_lock);
472

M
Monk Liu 已提交
473
	if (seq == ~0ull)
474
		seq = centity->sequence - 1;
M
Monk Liu 已提交
475

476
	if (seq >= centity->sequence) {
477 478 479 480
		spin_unlock(&ctx->ring_lock);
		return ERR_PTR(-EINVAL);
	}

481

482
	if (seq + amdgpu_sched_jobs < centity->sequence) {
483 484 485 486
		spin_unlock(&ctx->ring_lock);
		return NULL;
	}

487
	fence = dma_fence_get(centity->fences[seq & (amdgpu_sched_jobs - 1)]);
488 489 490 491
	spin_unlock(&ctx->ring_lock);

	return fence;
}
492

493
void amdgpu_ctx_priority_override(struct amdgpu_ctx *ctx,
494
				  enum drm_sched_priority priority)
495
{
496
	unsigned num_entities = amdgput_ctx_total_num_entities();
497
	enum drm_sched_priority ctx_prio;
498
	unsigned i;
499 500 501

	ctx->override_priority = priority;

502
	ctx_prio = (ctx->override_priority == DRM_SCHED_PRIORITY_UNSET) ?
503 504
			ctx->init_priority : ctx->override_priority;

505 506
	for (i = 0; i < num_entities; i++) {
		struct drm_sched_entity *entity = &ctx->entities[0][i].entity;
507

508
		drm_sched_entity_set_priority(entity, ctx_prio);
509 510 511
	}
}

512 513
int amdgpu_ctx_wait_prev_fence(struct amdgpu_ctx *ctx,
			       struct drm_sched_entity *entity)
514
{
515 516 517
	struct amdgpu_ctx_entity *centity = to_amdgpu_ctx_entity(entity);
	unsigned idx = centity->sequence & (amdgpu_sched_jobs - 1);
	struct dma_fence *other = centity->fences[idx];
518 519 520

	if (other) {
		signed long r;
521
		r = dma_fence_wait(other, true);
522
		if (r < 0) {
523 524 525
			if (r != -ERESTARTSYS)
				DRM_ERROR("Error (%ld) waiting for fence!\n", r);

526 527 528 529 530 531 532
			return r;
		}
	}

	return 0;
}

533 534 535 536 537 538
void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr)
{
	mutex_init(&mgr->lock);
	idr_init(&mgr->ctx_handles);
}

539
void amdgpu_ctx_mgr_entity_flush(struct amdgpu_ctx_mgr *mgr)
540
{
541
	unsigned num_entities = amdgput_ctx_total_num_entities();
542 543 544
	struct amdgpu_ctx *ctx;
	struct idr *idp;
	uint32_t id, i;
545
	long max_wait = MAX_WAIT_SCHED_ENTITY_Q_EMPTY;
546 547 548

	idp = &mgr->ctx_handles;

549
	mutex_lock(&mgr->lock);
550 551
	idr_for_each_entry(idp, ctx, id) {

552 553
		if (!ctx->adev) {
			mutex_unlock(&mgr->lock);
554
			return;
555
		}
556

557 558
		for (i = 0; i < num_entities; i++) {
			struct drm_sched_entity *entity;
559

560 561
			entity = &ctx->entities[0][i].entity;
			max_wait = drm_sched_entity_flush(entity, max_wait);
562
		}
563
	}
564
	mutex_unlock(&mgr->lock);
565 566
}

567
void amdgpu_ctx_mgr_entity_fini(struct amdgpu_ctx_mgr *mgr)
568
{
569
	unsigned num_entities = amdgput_ctx_total_num_entities();
570 571 572 573 574 575 576 577 578 579 580
	struct amdgpu_ctx *ctx;
	struct idr *idp;
	uint32_t id, i;

	idp = &mgr->ctx_handles;

	idr_for_each_entry(idp, ctx, id) {

		if (!ctx->adev)
			return;

581 582 583
		if (kref_read(&ctx->refcount) != 1) {
			DRM_ERROR("ctx %p is still alive\n", ctx);
			continue;
584
		}
585 586 587

		for (i = 0; i < num_entities; i++)
			drm_sched_entity_fini(&ctx->entities[0][i].entity);
588 589 590
	}
}

591 592 593 594 595 596
void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr)
{
	struct amdgpu_ctx *ctx;
	struct idr *idp;
	uint32_t id;

597
	amdgpu_ctx_mgr_entity_fini(mgr);
598

599 600 601
	idp = &mgr->ctx_handles;

	idr_for_each_entry(idp, ctx, id) {
602
		if (kref_put(&ctx->refcount, amdgpu_ctx_fini) != 1)
603 604 605 606 607 608
			DRM_ERROR("ctx %p is still alive\n", ctx);
	}

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