amdgpu_vcn.c 17.6 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 29 30 31 32 33 34 35 36 37
/*
 * Copyright 2016 Advanced Micro Devices, Inc.
 * All Rights Reserved.
 *
 * 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, sub license, 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 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 NON-INFRINGEMENT. IN NO EVENT SHALL
 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS 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.
 *
 * The above copyright notice and this permission notice (including the
 * next paragraph) shall be included in all copies or substantial portions
 * of the Software.
 *
 */

#include <linux/firmware.h>
#include <linux/module.h>
#include <drm/drmP.h>
#include <drm/drm.h>

#include "amdgpu.h"
#include "amdgpu_pm.h"
#include "amdgpu_vcn.h"
#include "soc15d.h"
#include "soc15_common.h"

38
#include "vcn/vcn_1_0_offset.h"
39
#include "vcn/vcn_1_0_sh_mask.h"
40 41 42 43 44 45

/* 1 second timeout */
#define VCN_IDLE_TIMEOUT	msecs_to_jiffies(1000)

/* Firmware Names */
#define FIRMWARE_RAVEN		"amdgpu/raven_vcn.bin"
46
#define FIRMWARE_PICASSO	"amdgpu/picasso_vcn.bin"
47
#define FIRMWARE_RAVEN2		"amdgpu/raven2_vcn.bin"
48
#define FIRMWARE_NAVI10 	"amdgpu/navi10_vcn.bin"
49 50

MODULE_FIRMWARE(FIRMWARE_RAVEN);
51
MODULE_FIRMWARE(FIRMWARE_PICASSO);
52
MODULE_FIRMWARE(FIRMWARE_RAVEN2);
53
MODULE_FIRMWARE(FIRMWARE_NAVI10);
54 55 56 57 58 59 60 61

static void amdgpu_vcn_idle_work_handler(struct work_struct *work);

int amdgpu_vcn_sw_init(struct amdgpu_device *adev)
{
	unsigned long bo_size;
	const char *fw_name;
	const struct common_firmware_header *hdr;
62
	unsigned char fw_check;
63 64 65 66 67 68
	int r;

	INIT_DELAYED_WORK(&adev->vcn.idle_work, amdgpu_vcn_idle_work_handler);

	switch (adev->asic_type) {
	case CHIP_RAVEN:
69
		if (adev->rev_id >= 8)
70
			fw_name = FIRMWARE_RAVEN2;
71 72
		else if (adev->pdev->device == 0x15d8)
			fw_name = FIRMWARE_PICASSO;
73 74
		else
			fw_name = FIRMWARE_RAVEN;
75
		break;
76 77 78
	case CHIP_NAVI10:
		fw_name = FIRMWARE_NAVI10;
		break;
79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99
	default:
		return -EINVAL;
	}

	r = request_firmware(&adev->vcn.fw, fw_name, adev->dev);
	if (r) {
		dev_err(adev->dev, "amdgpu_vcn: Can't load firmware \"%s\"\n",
			fw_name);
		return r;
	}

	r = amdgpu_ucode_validate(adev->vcn.fw);
	if (r) {
		dev_err(adev->dev, "amdgpu_vcn: Can't validate firmware \"%s\"\n",
			fw_name);
		release_firmware(adev->vcn.fw);
		adev->vcn.fw = NULL;
		return r;
	}

	hdr = (const struct common_firmware_header *)adev->vcn.fw->data;
100
	adev->vcn.fw_version = le32_to_cpu(hdr->ucode_version);
101

102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127
	/* Bit 20-23, it is encode major and non-zero for new naming convention.
	 * This field is part of version minor and DRM_DISABLED_FLAG in old naming
	 * convention. Since the l:wq!atest version minor is 0x5B and DRM_DISABLED_FLAG
	 * is zero in old naming convention, this field is always zero so far.
	 * These four bits are used to tell which naming convention is present.
	 */
	fw_check = (le32_to_cpu(hdr->ucode_version) >> 20) & 0xf;
	if (fw_check) {
		unsigned int dec_ver, enc_major, enc_minor, vep, fw_rev;

		fw_rev = le32_to_cpu(hdr->ucode_version) & 0xfff;
		enc_minor = (le32_to_cpu(hdr->ucode_version) >> 12) & 0xff;
		enc_major = fw_check;
		dec_ver = (le32_to_cpu(hdr->ucode_version) >> 24) & 0xf;
		vep = (le32_to_cpu(hdr->ucode_version) >> 28) & 0xf;
		DRM_INFO("Found VCN firmware Version ENC: %hu.%hu DEC: %hu VEP: %hu Revision: %hu\n",
			enc_major, enc_minor, dec_ver, vep, fw_rev);
	} else {
		unsigned int version_major, version_minor, family_id;

		family_id = le32_to_cpu(hdr->ucode_version) & 0xff;
		version_major = (le32_to_cpu(hdr->ucode_version) >> 24) & 0xff;
		version_minor = (le32_to_cpu(hdr->ucode_version) >> 8) & 0xff;
		DRM_INFO("Found VCN firmware Version: %hu.%hu Family ID: %hu\n",
			version_major, version_minor, family_id);
	}
128

129
	bo_size = AMDGPU_VCN_STACK_SIZE + AMDGPU_VCN_CONTEXT_SIZE;
130 131
	if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP)
		bo_size += AMDGPU_GPU_PAGE_ALIGN(le32_to_cpu(hdr->ucode_size_bytes) + 8);
132 133 134 135 136 137 138 139 140 141 142 143 144
	r = amdgpu_bo_create_kernel(adev, bo_size, PAGE_SIZE,
				    AMDGPU_GEM_DOMAIN_VRAM, &adev->vcn.vcpu_bo,
				    &adev->vcn.gpu_addr, &adev->vcn.cpu_addr);
	if (r) {
		dev_err(adev->dev, "(%d) failed to allocate vcn bo\n", r);
		return r;
	}

	return 0;
}

int amdgpu_vcn_sw_fini(struct amdgpu_device *adev)
{
L
Leo Liu 已提交
145 146
	int i;

147
	kvfree(adev->vcn.saved_bo);
148 149 150 151 152 153 154

	amdgpu_bo_free_kernel(&adev->vcn.vcpu_bo,
			      &adev->vcn.gpu_addr,
			      (void **)&adev->vcn.cpu_addr);

	amdgpu_ring_fini(&adev->vcn.ring_dec);

L
Leo Liu 已提交
155 156 157
	for (i = 0; i < adev->vcn.num_enc_rings; ++i)
		amdgpu_ring_fini(&adev->vcn.ring_enc[i]);

158 159
	amdgpu_ring_fini(&adev->vcn.ring_jpeg);

160 161 162 163 164 165 166 167 168 169
	release_firmware(adev->vcn.fw);

	return 0;
}

int amdgpu_vcn_suspend(struct amdgpu_device *adev)
{
	unsigned size;
	void *ptr;

170 171
	cancel_delayed_work_sync(&adev->vcn.idle_work);

172 173 174 175 176 177
	if (adev->vcn.vcpu_bo == NULL)
		return 0;

	size = amdgpu_bo_size(adev->vcn.vcpu_bo);
	ptr = adev->vcn.cpu_addr;

178
	adev->vcn.saved_bo = kvmalloc(size, GFP_KERNEL);
179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
	if (!adev->vcn.saved_bo)
		return -ENOMEM;

	memcpy_fromio(adev->vcn.saved_bo, ptr, size);

	return 0;
}

int amdgpu_vcn_resume(struct amdgpu_device *adev)
{
	unsigned size;
	void *ptr;

	if (adev->vcn.vcpu_bo == NULL)
		return -EINVAL;

	size = amdgpu_bo_size(adev->vcn.vcpu_bo);
	ptr = adev->vcn.cpu_addr;

	if (adev->vcn.saved_bo != NULL) {
		memcpy_toio(ptr, adev->vcn.saved_bo, size);
200
		kvfree(adev->vcn.saved_bo);
201 202 203 204 205 206
		adev->vcn.saved_bo = NULL;
	} else {
		const struct common_firmware_header *hdr;
		unsigned offset;

		hdr = (const struct common_firmware_header *)adev->vcn.fw->data;
207 208 209 210 211 212 213
		if (adev->firmware.load_type != AMDGPU_FW_LOAD_PSP) {
			offset = le32_to_cpu(hdr->ucode_array_offset_bytes);
			memcpy_toio(adev->vcn.cpu_addr, adev->vcn.fw->data + offset,
				    le32_to_cpu(hdr->ucode_size_bytes));
			size -= le32_to_cpu(hdr->ucode_size_bytes);
			ptr += le32_to_cpu(hdr->ucode_size_bytes);
		}
214 215 216 217 218 219
		memset_io(ptr, 0, size);
	}

	return 0;
}

220 221 222 223
static void amdgpu_vcn_idle_work_handler(struct work_struct *work)
{
	struct amdgpu_device *adev =
		container_of(work, struct amdgpu_device, vcn.idle_work.work);
224 225
	unsigned int fences = 0;
	unsigned int i;
226 227 228 229

	for (i = 0; i < adev->vcn.num_enc_rings; ++i) {
		fences += amdgpu_fence_count_emitted(&adev->vcn.ring_enc[i]);
	}
230

231 232 233 234 235 236 237 238 239 240 241 242 243
	if (adev->pg_flags & AMD_PG_SUPPORT_VCN_DPG)	{
		struct dpg_pause_state new_state;

		if (fences)
			new_state.fw_based = VCN_DPG_STATE__PAUSE;
		else
			new_state.fw_based = VCN_DPG_STATE__UNPAUSE;

		if (amdgpu_fence_count_emitted(&adev->vcn.ring_jpeg))
			new_state.jpeg = VCN_DPG_STATE__PAUSE;
		else
			new_state.jpeg = VCN_DPG_STATE__UNPAUSE;

244
		adev->vcn.pause_dpg_mode(adev, &new_state);
245 246
	}

247
	fences += amdgpu_fence_count_emitted(&adev->vcn.ring_jpeg);
248
	fences += amdgpu_fence_count_emitted(&adev->vcn.ring_dec);
249

250
	if (fences == 0) {
251
		amdgpu_gfx_off_ctrl(adev, true);
R
Rex Zhu 已提交
252
		if (adev->pm.dpm_enabled)
253
			amdgpu_dpm_enable_uvd(adev, false);
R
Rex Zhu 已提交
254 255 256
		else
			amdgpu_device_ip_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_VCN,
							       AMD_PG_STATE_GATE);
257 258 259 260 261 262 263 264 265 266
	} else {
		schedule_delayed_work(&adev->vcn.idle_work, VCN_IDLE_TIMEOUT);
	}
}

void amdgpu_vcn_ring_begin_use(struct amdgpu_ring *ring)
{
	struct amdgpu_device *adev = ring->adev;
	bool set_clocks = !cancel_delayed_work_sync(&adev->vcn.idle_work);

267
	if (set_clocks) {
268
		amdgpu_gfx_off_ctrl(adev, false);
R
Rex Zhu 已提交
269 270 271 272 273
		if (adev->pm.dpm_enabled)
			amdgpu_dpm_enable_uvd(adev, true);
		else
			amdgpu_device_ip_set_powergating_state(adev, AMD_IP_BLOCK_TYPE_VCN,
							       AMD_PG_STATE_UNGATE);
274
	}
275 276 277

	if (adev->pg_flags & AMD_PG_SUPPORT_VCN_DPG)	{
		struct dpg_pause_state new_state;
278 279
		unsigned int fences = 0;
		unsigned int i;
280

281 282 283 284
		for (i = 0; i < adev->vcn.num_enc_rings; ++i) {
			fences += amdgpu_fence_count_emitted(&adev->vcn.ring_enc[i]);
		}
		if (fences)
285 286
			new_state.fw_based = VCN_DPG_STATE__PAUSE;
		else
287
			new_state.fw_based = VCN_DPG_STATE__UNPAUSE;
288

289
		if (amdgpu_fence_count_emitted(&adev->vcn.ring_jpeg))
290 291
			new_state.jpeg = VCN_DPG_STATE__PAUSE;
		else
292 293 294 295 296 297
			new_state.jpeg = VCN_DPG_STATE__UNPAUSE;

		if (ring->funcs->type == AMDGPU_RING_TYPE_VCN_ENC)
			new_state.fw_based = VCN_DPG_STATE__PAUSE;
		else if (ring->funcs->type == AMDGPU_RING_TYPE_VCN_JPEG)
			new_state.jpeg = VCN_DPG_STATE__PAUSE;
298

299
		adev->vcn.pause_dpg_mode(adev, &new_state);
300
	}
301 302 303 304 305 306 307
}

void amdgpu_vcn_ring_end_use(struct amdgpu_ring *ring)
{
	schedule_delayed_work(&ring->adev->vcn.idle_work, VCN_IDLE_TIMEOUT);
}

308 309 310 311 312 313 314
int amdgpu_vcn_dec_ring_test_ring(struct amdgpu_ring *ring)
{
	struct amdgpu_device *adev = ring->adev;
	uint32_t tmp = 0;
	unsigned i;
	int r;

315
	WREG32(adev->vcn.external.scratch9, 0xCAFEDEAD);
316
	r = amdgpu_ring_alloc(ring, 3);
317
	if (r)
318
		return r;
319
	amdgpu_ring_write(ring, PACKET0(adev->vcn.internal.scratch9, 0));
320 321 322
	amdgpu_ring_write(ring, 0xDEADBEEF);
	amdgpu_ring_commit(ring);
	for (i = 0; i < adev->usec_timeout; i++) {
323
		tmp = RREG32(adev->vcn.external.scratch9);
324 325 326 327 328
		if (tmp == 0xDEADBEEF)
			break;
		DRM_UDELAY(1);
	}

329 330 331
	if (i >= adev->usec_timeout)
		r = -ETIMEDOUT;

332 333 334
	return r;
}

335
static int amdgpu_vcn_dec_send_msg(struct amdgpu_ring *ring,
336
				   struct amdgpu_bo *bo,
337
				   struct dma_fence **fence)
338
{
339 340
	struct amdgpu_device *adev = ring->adev;
	struct dma_fence *f = NULL;
341 342 343 344 345 346 347 348 349 350 351
	struct amdgpu_job *job;
	struct amdgpu_ib *ib;
	uint64_t addr;
	int i, r;

	r = amdgpu_job_alloc_with_ib(adev, 64, &job);
	if (r)
		goto err;

	ib = &job->ibs[0];
	addr = amdgpu_bo_gpu_offset(bo);
L
Leo Liu 已提交
352
	ib->ptr[0] = PACKET0(adev->vcn.internal.data0, 0);
353
	ib->ptr[1] = addr;
L
Leo Liu 已提交
354
	ib->ptr[2] = PACKET0(adev->vcn.internal.data1, 0);
355
	ib->ptr[3] = addr >> 32;
L
Leo Liu 已提交
356
	ib->ptr[4] = PACKET0(adev->vcn.internal.cmd, 0);
357 358
	ib->ptr[5] = 0;
	for (i = 6; i < 16; i += 2) {
L
Leo Liu 已提交
359
		ib->ptr[i] = PACKET0(adev->vcn.internal.nop, 0);
360 361 362 363
		ib->ptr[i+1] = 0;
	}
	ib->length_dw = 16;

364
	r = amdgpu_job_submit_direct(job, ring, &f);
365 366
	if (r)
		goto err_free;
367

368 369 370
	amdgpu_bo_fence(bo, f, false);
	amdgpu_bo_unreserve(bo);
	amdgpu_bo_unref(&bo);
371 372 373 374 375 376 377 378 379 380 381

	if (fence)
		*fence = dma_fence_get(f);
	dma_fence_put(f);

	return 0;

err_free:
	amdgpu_job_free(job);

err:
382 383
	amdgpu_bo_unreserve(bo);
	amdgpu_bo_unref(&bo);
384 385 386 387 388 389 390
	return r;
}

static int amdgpu_vcn_dec_get_create_msg(struct amdgpu_ring *ring, uint32_t handle,
			      struct dma_fence **fence)
{
	struct amdgpu_device *adev = ring->adev;
391
	struct amdgpu_bo *bo = NULL;
392 393 394
	uint32_t *msg;
	int r, i;

395 396 397
	r = amdgpu_bo_create_reserved(adev, 1024, PAGE_SIZE,
				      AMDGPU_GEM_DOMAIN_VRAM,
				      &bo, NULL, (void **)&msg);
398 399 400
	if (r)
		return r;

401
	msg[0] = cpu_to_le32(0x00000028);
402
	msg[1] = cpu_to_le32(0x00000038);
403
	msg[2] = cpu_to_le32(0x00000001);
404
	msg[3] = cpu_to_le32(0x00000000);
405
	msg[4] = cpu_to_le32(handle);
406
	msg[5] = cpu_to_le32(0x00000000);
407 408
	msg[6] = cpu_to_le32(0x00000001);
	msg[7] = cpu_to_le32(0x00000028);
409
	msg[8] = cpu_to_le32(0x00000010);
410
	msg[9] = cpu_to_le32(0x00000000);
411 412
	msg[10] = cpu_to_le32(0x00000007);
	msg[11] = cpu_to_le32(0x00000000);
413 414 415
	msg[12] = cpu_to_le32(0x00000780);
	msg[13] = cpu_to_le32(0x00000440);
	for (i = 14; i < 1024; ++i)
416 417
		msg[i] = cpu_to_le32(0x0);

418
	return amdgpu_vcn_dec_send_msg(ring, bo, fence);
419 420 421
}

static int amdgpu_vcn_dec_get_destroy_msg(struct amdgpu_ring *ring, uint32_t handle,
422
			       struct dma_fence **fence)
423 424
{
	struct amdgpu_device *adev = ring->adev;
425
	struct amdgpu_bo *bo = NULL;
426 427 428
	uint32_t *msg;
	int r, i;

429 430 431
	r = amdgpu_bo_create_reserved(adev, 1024, PAGE_SIZE,
				      AMDGPU_GEM_DOMAIN_VRAM,
				      &bo, NULL, (void **)&msg);
432 433 434
	if (r)
		return r;

435 436 437 438 439 440 441
	msg[0] = cpu_to_le32(0x00000028);
	msg[1] = cpu_to_le32(0x00000018);
	msg[2] = cpu_to_le32(0x00000000);
	msg[3] = cpu_to_le32(0x00000002);
	msg[4] = cpu_to_le32(handle);
	msg[5] = cpu_to_le32(0x00000000);
	for (i = 6; i < 1024; ++i)
442 443
		msg[i] = cpu_to_le32(0x0);

444
	return amdgpu_vcn_dec_send_msg(ring, bo, fence);
445 446 447 448 449 450 451 452
}

int amdgpu_vcn_dec_ring_test_ib(struct amdgpu_ring *ring, long timeout)
{
	struct dma_fence *fence;
	long r;

	r = amdgpu_vcn_dec_get_create_msg(ring, 1, NULL);
453
	if (r)
454 455
		goto error;

456
	r = amdgpu_vcn_dec_get_destroy_msg(ring, 1, &fence);
457
	if (r)
458 459 460
		goto error;

	r = dma_fence_wait_timeout(fence, false, timeout);
461
	if (r == 0)
462
		r = -ETIMEDOUT;
463
	else if (r > 0)
464 465 466 467 468 469
		r = 0;

	dma_fence_put(fence);
error:
	return r;
}
L
Leo Liu 已提交
470

471 472 473
int amdgpu_vcn_enc_ring_test_ring(struct amdgpu_ring *ring)
{
	struct amdgpu_device *adev = ring->adev;
474
	uint32_t rptr;
475 476 477 478
	unsigned i;
	int r;

	r = amdgpu_ring_alloc(ring, 16);
479
	if (r)
480
		return r;
481

482 483
	rptr = amdgpu_ring_get_rptr(ring);

484
	amdgpu_ring_write(ring, VCN_ENC_CMD_END);
485 486 487 488 489 490 491 492
	amdgpu_ring_commit(ring);

	for (i = 0; i < adev->usec_timeout; i++) {
		if (amdgpu_ring_get_rptr(ring) != rptr)
			break;
		DRM_UDELAY(1);
	}

493
	if (i >= adev->usec_timeout)
494 495 496 497 498
		r = -ETIMEDOUT;

	return r;
}

L
Leo Liu 已提交
499 500 501
static int amdgpu_vcn_enc_get_create_msg(struct amdgpu_ring *ring, uint32_t handle,
			      struct dma_fence **fence)
{
L
Leo Liu 已提交
502
	const unsigned ib_size_dw = 16;
L
Leo Liu 已提交
503 504 505 506 507 508 509 510 511 512 513 514 515 516
	struct amdgpu_job *job;
	struct amdgpu_ib *ib;
	struct dma_fence *f = NULL;
	uint64_t dummy;
	int i, r;

	r = amdgpu_job_alloc_with_ib(ring->adev, ib_size_dw * 4, &job);
	if (r)
		return r;

	ib = &job->ibs[0];
	dummy = ib->gpu_addr + 1024;

	ib->length_dw = 0;
L
Leo Liu 已提交
517 518
	ib->ptr[ib->length_dw++] = 0x00000018;
	ib->ptr[ib->length_dw++] = 0x00000001; /* session info */
L
Leo Liu 已提交
519
	ib->ptr[ib->length_dw++] = handle;
L
Leo Liu 已提交
520 521 522
	ib->ptr[ib->length_dw++] = upper_32_bits(dummy);
	ib->ptr[ib->length_dw++] = dummy;
	ib->ptr[ib->length_dw++] = 0x0000000b;
L
Leo Liu 已提交
523

L
Leo Liu 已提交
524 525 526
	ib->ptr[ib->length_dw++] = 0x00000014;
	ib->ptr[ib->length_dw++] = 0x00000002; /* task info */
	ib->ptr[ib->length_dw++] = 0x0000001c;
L
Leo Liu 已提交
527 528 529
	ib->ptr[ib->length_dw++] = 0x00000000;
	ib->ptr[ib->length_dw++] = 0x00000000;

L
Leo Liu 已提交
530 531
	ib->ptr[ib->length_dw++] = 0x00000008;
	ib->ptr[ib->length_dw++] = 0x08000001; /* op initialize */
L
Leo Liu 已提交
532 533 534 535

	for (i = ib->length_dw; i < ib_size_dw; ++i)
		ib->ptr[i] = 0x0;

536
	r = amdgpu_job_submit_direct(job, ring, &f);
L
Leo Liu 已提交
537 538 539 540 541 542
	if (r)
		goto err;

	if (fence)
		*fence = dma_fence_get(f);
	dma_fence_put(f);
L
Leo Liu 已提交
543

L
Leo Liu 已提交
544 545 546 547 548 549 550 551
	return 0;

err:
	amdgpu_job_free(job);
	return r;
}

static int amdgpu_vcn_enc_get_destroy_msg(struct amdgpu_ring *ring, uint32_t handle,
L
Leo Liu 已提交
552
				struct dma_fence **fence)
L
Leo Liu 已提交
553
{
L
Leo Liu 已提交
554
	const unsigned ib_size_dw = 16;
L
Leo Liu 已提交
555 556 557
	struct amdgpu_job *job;
	struct amdgpu_ib *ib;
	struct dma_fence *f = NULL;
L
Leo Liu 已提交
558
	uint64_t dummy;
L
Leo Liu 已提交
559 560 561 562 563 564 565
	int i, r;

	r = amdgpu_job_alloc_with_ib(ring->adev, ib_size_dw * 4, &job);
	if (r)
		return r;

	ib = &job->ibs[0];
L
Leo Liu 已提交
566
	dummy = ib->gpu_addr + 1024;
L
Leo Liu 已提交
567 568

	ib->length_dw = 0;
L
Leo Liu 已提交
569 570
	ib->ptr[ib->length_dw++] = 0x00000018;
	ib->ptr[ib->length_dw++] = 0x00000001;
L
Leo Liu 已提交
571
	ib->ptr[ib->length_dw++] = handle;
L
Leo Liu 已提交
572 573 574
	ib->ptr[ib->length_dw++] = upper_32_bits(dummy);
	ib->ptr[ib->length_dw++] = dummy;
	ib->ptr[ib->length_dw++] = 0x0000000b;
L
Leo Liu 已提交
575

L
Leo Liu 已提交
576 577 578
	ib->ptr[ib->length_dw++] = 0x00000014;
	ib->ptr[ib->length_dw++] = 0x00000002;
	ib->ptr[ib->length_dw++] = 0x0000001c;
L
Leo Liu 已提交
579 580 581
	ib->ptr[ib->length_dw++] = 0x00000000;
	ib->ptr[ib->length_dw++] = 0x00000000;

L
Leo Liu 已提交
582 583
	ib->ptr[ib->length_dw++] = 0x00000008;
	ib->ptr[ib->length_dw++] = 0x08000002; /* op close session */
L
Leo Liu 已提交
584 585 586 587

	for (i = ib->length_dw; i < ib_size_dw; ++i)
		ib->ptr[i] = 0x0;

588
	r = amdgpu_job_submit_direct(job, ring, &f);
L
Leo Liu 已提交
589 590
	if (r)
		goto err;
L
Leo Liu 已提交
591 592 593 594

	if (fence)
		*fence = dma_fence_get(f);
	dma_fence_put(f);
L
Leo Liu 已提交
595

L
Leo Liu 已提交
596 597 598 599 600 601 602 603 604 605 606 607 608
	return 0;

err:
	amdgpu_job_free(job);
	return r;
}

int amdgpu_vcn_enc_ring_test_ib(struct amdgpu_ring *ring, long timeout)
{
	struct dma_fence *fence = NULL;
	long r;

	r = amdgpu_vcn_enc_get_create_msg(ring, 1, NULL);
609
	if (r)
L
Leo Liu 已提交
610 611
		goto error;

L
Leo Liu 已提交
612
	r = amdgpu_vcn_enc_get_destroy_msg(ring, 1, &fence);
613
	if (r)
L
Leo Liu 已提交
614 615 616
		goto error;

	r = dma_fence_wait_timeout(fence, false, timeout);
617
	if (r == 0)
L
Leo Liu 已提交
618
		r = -ETIMEDOUT;
619
	else if (r > 0)
L
Leo Liu 已提交
620
		r = 0;
621

L
Leo Liu 已提交
622 623 624 625
error:
	dma_fence_put(fence);
	return r;
}
626 627 628 629 630 631 632 633

int amdgpu_vcn_jpeg_ring_test_ring(struct amdgpu_ring *ring)
{
	struct amdgpu_device *adev = ring->adev;
	uint32_t tmp = 0;
	unsigned i;
	int r;

634
	WREG32(adev->vcn.external.jpeg_pitch, 0xCAFEDEAD);
635
	r = amdgpu_ring_alloc(ring, 3);
636
	if (r)
637 638
		return r;

639
	amdgpu_ring_write(ring, PACKET0(adev->vcn.internal.jpeg_pitch, 0));
640 641 642 643
	amdgpu_ring_write(ring, 0xDEADBEEF);
	amdgpu_ring_commit(ring);

	for (i = 0; i < adev->usec_timeout; i++) {
644
		tmp = RREG32(adev->vcn.external.jpeg_pitch);
645 646 647 648 649
		if (tmp == 0xDEADBEEF)
			break;
		DRM_UDELAY(1);
	}

650 651
	if (i >= adev->usec_timeout)
		r = -ETIMEDOUT;
652 653 654

	return r;
}
B
Boyuan Zhang 已提交
655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671

static int amdgpu_vcn_jpeg_set_reg(struct amdgpu_ring *ring, uint32_t handle,
		struct dma_fence **fence)
{
	struct amdgpu_device *adev = ring->adev;
	struct amdgpu_job *job;
	struct amdgpu_ib *ib;
	struct dma_fence *f = NULL;
	const unsigned ib_size_dw = 16;
	int i, r;

	r = amdgpu_job_alloc_with_ib(ring->adev, ib_size_dw * 4, &job);
	if (r)
		return r;

	ib = &job->ibs[0];

672
	ib->ptr[0] = PACKETJ(SOC15_REG_OFFSET(UVD, 0, mmUVD_SCRATCH9), 0, 0, PACKETJ_TYPE0);
B
Boyuan Zhang 已提交
673 674 675 676 677 678 679
	ib->ptr[1] = 0xDEADBEEF;
	for (i = 2; i < 16; i += 2) {
		ib->ptr[i] = PACKETJ(0, 0, 0, PACKETJ_TYPE6);
		ib->ptr[i+1] = 0;
	}
	ib->length_dw = 16;

680
	r = amdgpu_job_submit_direct(job, ring, &f);
B
Boyuan Zhang 已提交
681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703
	if (r)
		goto err;

	if (fence)
		*fence = dma_fence_get(f);
	dma_fence_put(f);

	return 0;

err:
	amdgpu_job_free(job);
	return r;
}

int amdgpu_vcn_jpeg_ring_test_ib(struct amdgpu_ring *ring, long timeout)
{
	struct amdgpu_device *adev = ring->adev;
	uint32_t tmp = 0;
	unsigned i;
	struct dma_fence *fence = NULL;
	long r = 0;

	r = amdgpu_vcn_jpeg_set_reg(ring, 1, &fence);
704
	if (r)
B
Boyuan Zhang 已提交
705 706 707 708 709 710 711 712
		goto error;

	r = dma_fence_wait_timeout(fence, false, timeout);
	if (r == 0) {
		r = -ETIMEDOUT;
		goto error;
	} else if (r < 0) {
		goto error;
713
	} else {
B
Boyuan Zhang 已提交
714
		r = 0;
715
	}
B
Boyuan Zhang 已提交
716 717

	for (i = 0; i < adev->usec_timeout; i++) {
718
		tmp = RREG32(SOC15_REG_OFFSET(UVD, 0, mmUVD_SCRATCH9));
B
Boyuan Zhang 已提交
719 720 721 722 723
		if (tmp == 0xDEADBEEF)
			break;
		DRM_UDELAY(1);
	}

724 725
	if (i >= adev->usec_timeout)
		r = -ETIMEDOUT;
B
Boyuan Zhang 已提交
726 727 728 729 730

	dma_fence_put(fence);
error:
	return r;
}