drm/radeon: make VCE handle check more strict
[linux-2.6-block.git] / drivers / gpu / drm / radeon / radeon_vce.c
CommitLineData
d93f7937
CK
1/*
2 * Copyright 2013 Advanced Micro Devices, Inc.
3 * All Rights Reserved.
4 *
5 * Permission is hereby granted, free of charge, to any person obtaining a
6 * copy of this software and associated documentation files (the
7 * "Software"), to deal in the Software without restriction, including
8 * without limitation the rights to use, copy, modify, merge, publish,
9 * distribute, sub license, and/or sell copies of the Software, and to
10 * permit persons to whom the Software is furnished to do so, subject to
11 * the following conditions:
12 *
13 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
14 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
15 * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
16 * THE COPYRIGHT HOLDERS, AUTHORS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
17 * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR
18 * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE
19 * USE OR OTHER DEALINGS IN THE SOFTWARE.
20 *
21 * The above copyright notice and this permission notice (including the
22 * next paragraph) shall be included in all copies or substantial portions
23 * of the Software.
24 *
25 * Authors: Christian König <christian.koenig@amd.com>
26 */
27
28#include <linux/firmware.h>
29#include <linux/module.h>
30#include <drm/drmP.h>
31#include <drm/drm.h>
32
33#include "radeon.h"
34#include "radeon_asic.h"
35#include "sid.h"
36
03afe6f6
AD
37/* 1 second timeout */
38#define VCE_IDLE_TIMEOUT_MS 1000
39
d93f7937
CK
40/* Firmware Names */
41#define FIRMWARE_BONAIRE "radeon/BONAIRE_vce.bin"
42
43MODULE_FIRMWARE(FIRMWARE_BONAIRE);
44
03afe6f6
AD
45static void radeon_vce_idle_work_handler(struct work_struct *work);
46
d93f7937
CK
47/**
48 * radeon_vce_init - allocate memory, load vce firmware
49 *
50 * @rdev: radeon_device pointer
51 *
52 * First step to get VCE online, allocate memory and load the firmware
53 */
54int radeon_vce_init(struct radeon_device *rdev)
55{
98ccc291
CK
56 static const char *fw_version = "[ATI LIB=VCEFW,";
57 static const char *fb_version = "[ATI LIB=VCEFWSTATS,";
58 unsigned long size;
59 const char *fw_name, *c;
60 uint8_t start, mid, end;
d93f7937
CK
61 int i, r;
62
03afe6f6
AD
63 INIT_DELAYED_WORK(&rdev->vce.idle_work, radeon_vce_idle_work_handler);
64
d93f7937
CK
65 switch (rdev->family) {
66 case CHIP_BONAIRE:
67 case CHIP_KAVERI:
68 case CHIP_KABINI:
d71c48f6 69 case CHIP_HAWAII:
428beddd 70 case CHIP_MULLINS:
d93f7937
CK
71 fw_name = FIRMWARE_BONAIRE;
72 break;
73
74 default:
75 return -EINVAL;
76 }
77
78 r = request_firmware(&rdev->vce_fw, fw_name, rdev->dev);
79 if (r) {
80 dev_err(rdev->dev, "radeon_vce: Can't load firmware \"%s\"\n",
81 fw_name);
82 return r;
83 }
84
98ccc291
CK
85 /* search for firmware version */
86
87 size = rdev->vce_fw->size - strlen(fw_version) - 9;
88 c = rdev->vce_fw->data;
89 for (;size > 0; --size, ++c)
90 if (strncmp(c, fw_version, strlen(fw_version)) == 0)
91 break;
92
93 if (size == 0)
94 return -EINVAL;
95
96 c += strlen(fw_version);
97 if (sscanf(c, "%2hhd.%2hhd.%2hhd]", &start, &mid, &end) != 3)
98 return -EINVAL;
99
100 /* search for feedback version */
101
102 size = rdev->vce_fw->size - strlen(fb_version) - 3;
103 c = rdev->vce_fw->data;
104 for (;size > 0; --size, ++c)
105 if (strncmp(c, fb_version, strlen(fb_version)) == 0)
106 break;
107
108 if (size == 0)
109 return -EINVAL;
110
111 c += strlen(fb_version);
112 if (sscanf(c, "%2u]", &rdev->vce.fb_version) != 1)
113 return -EINVAL;
114
115 DRM_INFO("Found VCE firmware/feedback version %hhd.%hhd.%hhd / %d!\n",
116 start, mid, end, rdev->vce.fb_version);
117
118 rdev->vce.fw_version = (start << 24) | (mid << 16) | (end << 8);
119
120 /* we can only work with this fw version for now */
121 if (rdev->vce.fw_version != ((40 << 24) | (2 << 16) | (2 << 8)))
122 return -EINVAL;
123
b03b4e4b 124 /* allocate firmware, stack and heap BO */
98ccc291
CK
125
126 size = RADEON_GPU_PAGE_ALIGN(rdev->vce_fw->size) +
127 RADEON_VCE_STACK_SIZE + RADEON_VCE_HEAP_SIZE;
128 r = radeon_bo_create(rdev, size, PAGE_SIZE, true,
831b6966
ML
129 RADEON_GEM_DOMAIN_VRAM, 0, NULL, NULL,
130 &rdev->vce.vcpu_bo);
d93f7937
CK
131 if (r) {
132 dev_err(rdev->dev, "(%d) failed to allocate VCE bo\n", r);
133 return r;
134 }
135
b03b4e4b
CK
136 r = radeon_bo_reserve(rdev->vce.vcpu_bo, false);
137 if (r) {
138 radeon_bo_unref(&rdev->vce.vcpu_bo);
139 dev_err(rdev->dev, "(%d) failed to reserve VCE bo\n", r);
d93f7937 140 return r;
b03b4e4b 141 }
d93f7937 142
b03b4e4b
CK
143 r = radeon_bo_pin(rdev->vce.vcpu_bo, RADEON_GEM_DOMAIN_VRAM,
144 &rdev->vce.gpu_addr);
145 radeon_bo_unreserve(rdev->vce.vcpu_bo);
146 if (r) {
147 radeon_bo_unref(&rdev->vce.vcpu_bo);
148 dev_err(rdev->dev, "(%d) VCE bo pin failed\n", r);
d93f7937 149 return r;
b03b4e4b 150 }
d93f7937
CK
151
152 for (i = 0; i < RADEON_MAX_VCE_HANDLES; ++i) {
153 atomic_set(&rdev->vce.handles[i], 0);
154 rdev->vce.filp[i] = NULL;
155 }
156
157 return 0;
158}
159
160/**
161 * radeon_vce_fini - free memory
162 *
163 * @rdev: radeon_device pointer
164 *
165 * Last step on VCE teardown, free firmware memory
166 */
167void radeon_vce_fini(struct radeon_device *rdev)
168{
b03b4e4b
CK
169 if (rdev->vce.vcpu_bo == NULL)
170 return;
171
d93f7937 172 radeon_bo_unref(&rdev->vce.vcpu_bo);
b03b4e4b
CK
173
174 release_firmware(rdev->vce_fw);
d93f7937
CK
175}
176
177/**
178 * radeon_vce_suspend - unpin VCE fw memory
179 *
180 * @rdev: radeon_device pointer
181 *
d93f7937
CK
182 */
183int radeon_vce_suspend(struct radeon_device *rdev)
184{
b03b4e4b 185 int i;
d93f7937
CK
186
187 if (rdev->vce.vcpu_bo == NULL)
188 return 0;
189
b03b4e4b
CK
190 for (i = 0; i < RADEON_MAX_VCE_HANDLES; ++i)
191 if (atomic_read(&rdev->vce.handles[i]))
192 break;
193
194 if (i == RADEON_MAX_VCE_HANDLES)
195 return 0;
196
197 /* TODO: suspending running encoding sessions isn't supported */
198 return -EINVAL;
d93f7937
CK
199}
200
201/**
202 * radeon_vce_resume - pin VCE fw memory
203 *
204 * @rdev: radeon_device pointer
205 *
d93f7937
CK
206 */
207int radeon_vce_resume(struct radeon_device *rdev)
208{
b03b4e4b 209 void *cpu_addr;
d93f7937
CK
210 int r;
211
212 if (rdev->vce.vcpu_bo == NULL)
213 return -EINVAL;
214
215 r = radeon_bo_reserve(rdev->vce.vcpu_bo, false);
216 if (r) {
d93f7937
CK
217 dev_err(rdev->dev, "(%d) failed to reserve VCE bo\n", r);
218 return r;
219 }
220
b03b4e4b 221 r = radeon_bo_kmap(rdev->vce.vcpu_bo, &cpu_addr);
d93f7937
CK
222 if (r) {
223 radeon_bo_unreserve(rdev->vce.vcpu_bo);
d93f7937
CK
224 dev_err(rdev->dev, "(%d) VCE map failed\n", r);
225 return r;
226 }
227
b03b4e4b
CK
228 memcpy(cpu_addr, rdev->vce_fw->data, rdev->vce_fw->size);
229
230 radeon_bo_kunmap(rdev->vce.vcpu_bo);
231
d93f7937
CK
232 radeon_bo_unreserve(rdev->vce.vcpu_bo);
233
234 return 0;
235}
236
03afe6f6
AD
237/**
238 * radeon_vce_idle_work_handler - power off VCE
239 *
240 * @work: pointer to work structure
241 *
242 * power of VCE when it's not used any more
243 */
244static void radeon_vce_idle_work_handler(struct work_struct *work)
245{
246 struct radeon_device *rdev =
247 container_of(work, struct radeon_device, vce.idle_work.work);
248
249 if ((radeon_fence_count_emitted(rdev, TN_RING_TYPE_VCE1_INDEX) == 0) &&
250 (radeon_fence_count_emitted(rdev, TN_RING_TYPE_VCE2_INDEX) == 0)) {
251 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled) {
252 radeon_dpm_enable_vce(rdev, false);
253 } else {
254 radeon_set_vce_clocks(rdev, 0, 0);
255 }
256 } else {
257 schedule_delayed_work(&rdev->vce.idle_work,
258 msecs_to_jiffies(VCE_IDLE_TIMEOUT_MS));
259 }
260}
261
262/**
263 * radeon_vce_note_usage - power up VCE
264 *
265 * @rdev: radeon_device pointer
266 *
267 * Make sure VCE is powerd up when we want to use it
268 */
269void radeon_vce_note_usage(struct radeon_device *rdev)
270{
271 bool streams_changed = false;
272 bool set_clocks = !cancel_delayed_work_sync(&rdev->vce.idle_work);
273 set_clocks &= schedule_delayed_work(&rdev->vce.idle_work,
274 msecs_to_jiffies(VCE_IDLE_TIMEOUT_MS));
275
276 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled) {
277 /* XXX figure out if the streams changed */
278 streams_changed = false;
279 }
280
281 if (set_clocks || streams_changed) {
282 if ((rdev->pm.pm_method == PM_METHOD_DPM) && rdev->pm.dpm_enabled) {
283 radeon_dpm_enable_vce(rdev, true);
284 } else {
285 radeon_set_vce_clocks(rdev, 53300, 40000);
286 }
287 }
288}
289
d93f7937
CK
290/**
291 * radeon_vce_free_handles - free still open VCE handles
292 *
293 * @rdev: radeon_device pointer
294 * @filp: drm file pointer
295 *
296 * Close all VCE handles still open by this file pointer
297 */
298void radeon_vce_free_handles(struct radeon_device *rdev, struct drm_file *filp)
299{
300 int i, r;
301 for (i = 0; i < RADEON_MAX_VCE_HANDLES; ++i) {
302 uint32_t handle = atomic_read(&rdev->vce.handles[i]);
303 if (!handle || rdev->vce.filp[i] != filp)
304 continue;
305
03afe6f6
AD
306 radeon_vce_note_usage(rdev);
307
d93f7937
CK
308 r = radeon_vce_get_destroy_msg(rdev, TN_RING_TYPE_VCE1_INDEX,
309 handle, NULL);
310 if (r)
311 DRM_ERROR("Error destroying VCE handle (%d)!\n", r);
312
313 rdev->vce.filp[i] = NULL;
314 atomic_set(&rdev->vce.handles[i], 0);
315 }
316}
317
318/**
319 * radeon_vce_get_create_msg - generate a VCE create msg
320 *
321 * @rdev: radeon_device pointer
322 * @ring: ring we should submit the msg to
323 * @handle: VCE session handle to use
324 * @fence: optional fence to return
325 *
326 * Open up a stream for HW test
327 */
328int radeon_vce_get_create_msg(struct radeon_device *rdev, int ring,
329 uint32_t handle, struct radeon_fence **fence)
330{
331 const unsigned ib_size_dw = 1024;
332 struct radeon_ib ib;
333 uint64_t dummy;
334 int i, r;
335
336 r = radeon_ib_get(rdev, ring, &ib, NULL, ib_size_dw * 4);
337 if (r) {
338 DRM_ERROR("radeon: failed to get ib (%d).\n", r);
339 return r;
340 }
341
342 dummy = ib.gpu_addr + 1024;
343
344 /* stitch together an VCE create msg */
345 ib.length_dw = 0;
346 ib.ptr[ib.length_dw++] = 0x0000000c; /* len */
347 ib.ptr[ib.length_dw++] = 0x00000001; /* session cmd */
348 ib.ptr[ib.length_dw++] = handle;
349
350 ib.ptr[ib.length_dw++] = 0x00000030; /* len */
351 ib.ptr[ib.length_dw++] = 0x01000001; /* create cmd */
352 ib.ptr[ib.length_dw++] = 0x00000000;
353 ib.ptr[ib.length_dw++] = 0x00000042;
354 ib.ptr[ib.length_dw++] = 0x0000000a;
355 ib.ptr[ib.length_dw++] = 0x00000001;
356 ib.ptr[ib.length_dw++] = 0x00000080;
357 ib.ptr[ib.length_dw++] = 0x00000060;
358 ib.ptr[ib.length_dw++] = 0x00000100;
359 ib.ptr[ib.length_dw++] = 0x00000100;
360 ib.ptr[ib.length_dw++] = 0x0000000c;
361 ib.ptr[ib.length_dw++] = 0x00000000;
362
363 ib.ptr[ib.length_dw++] = 0x00000014; /* len */
364 ib.ptr[ib.length_dw++] = 0x05000005; /* feedback buffer */
365 ib.ptr[ib.length_dw++] = upper_32_bits(dummy);
366 ib.ptr[ib.length_dw++] = dummy;
367 ib.ptr[ib.length_dw++] = 0x00000001;
368
369 for (i = ib.length_dw; i < ib_size_dw; ++i)
370 ib.ptr[i] = 0x0;
371
1538a9e0 372 r = radeon_ib_schedule(rdev, &ib, NULL, false);
d93f7937
CK
373 if (r) {
374 DRM_ERROR("radeon: failed to schedule ib (%d).\n", r);
375 }
376
377 if (fence)
378 *fence = radeon_fence_ref(ib.fence);
379
380 radeon_ib_free(rdev, &ib);
381
382 return r;
383}
384
385/**
386 * radeon_vce_get_destroy_msg - generate a VCE destroy msg
387 *
388 * @rdev: radeon_device pointer
389 * @ring: ring we should submit the msg to
390 * @handle: VCE session handle to use
391 * @fence: optional fence to return
392 *
393 * Close up a stream for HW test or if userspace failed to do so
394 */
395int radeon_vce_get_destroy_msg(struct radeon_device *rdev, int ring,
396 uint32_t handle, struct radeon_fence **fence)
397{
398 const unsigned ib_size_dw = 1024;
399 struct radeon_ib ib;
400 uint64_t dummy;
401 int i, r;
402
403 r = radeon_ib_get(rdev, ring, &ib, NULL, ib_size_dw * 4);
404 if (r) {
405 DRM_ERROR("radeon: failed to get ib (%d).\n", r);
406 return r;
407 }
408
409 dummy = ib.gpu_addr + 1024;
410
411 /* stitch together an VCE destroy msg */
412 ib.length_dw = 0;
413 ib.ptr[ib.length_dw++] = 0x0000000c; /* len */
414 ib.ptr[ib.length_dw++] = 0x00000001; /* session cmd */
415 ib.ptr[ib.length_dw++] = handle;
416
417 ib.ptr[ib.length_dw++] = 0x00000014; /* len */
418 ib.ptr[ib.length_dw++] = 0x05000005; /* feedback buffer */
419 ib.ptr[ib.length_dw++] = upper_32_bits(dummy);
420 ib.ptr[ib.length_dw++] = dummy;
421 ib.ptr[ib.length_dw++] = 0x00000001;
422
423 ib.ptr[ib.length_dw++] = 0x00000008; /* len */
424 ib.ptr[ib.length_dw++] = 0x02000001; /* destroy cmd */
425
426 for (i = ib.length_dw; i < ib_size_dw; ++i)
427 ib.ptr[i] = 0x0;
428
1538a9e0 429 r = radeon_ib_schedule(rdev, &ib, NULL, false);
d93f7937
CK
430 if (r) {
431 DRM_ERROR("radeon: failed to schedule ib (%d).\n", r);
432 }
433
434 if (fence)
435 *fence = radeon_fence_ref(ib.fence);
436
437 radeon_ib_free(rdev, &ib);
438
439 return r;
440}
441
442/**
443 * radeon_vce_cs_reloc - command submission relocation
444 *
445 * @p: parser context
446 * @lo: address of lower dword
447 * @hi: address of higher dword
2fc5703a 448 * @size: size of checker for relocation buffer
d93f7937
CK
449 *
450 * Patch relocation inside command stream with real buffer address
451 */
2fc5703a
LL
452int radeon_vce_cs_reloc(struct radeon_cs_parser *p, int lo, int hi,
453 unsigned size)
d93f7937
CK
454{
455 struct radeon_cs_chunk *relocs_chunk;
1d0c0942 456 struct radeon_bo_list *reloc;
2fc5703a 457 uint64_t start, end, offset;
d93f7937
CK
458 unsigned idx;
459
6d2d13dd 460 relocs_chunk = p->chunk_relocs;
d93f7937
CK
461 offset = radeon_get_ib_value(p, lo);
462 idx = radeon_get_ib_value(p, hi);
463
464 if (idx >= relocs_chunk->length_dw) {
465 DRM_ERROR("Relocs at %d after relocations chunk end %d !\n",
466 idx, relocs_chunk->length_dw);
467 return -EINVAL;
468 }
469
466be338 470 reloc = &p->relocs[(idx / 4)];
2fc5703a
LL
471 start = reloc->gpu_offset;
472 end = start + radeon_bo_size(reloc->robj);
473 start += offset;
d93f7937 474
2fc5703a
LL
475 p->ib.ptr[lo] = start & 0xFFFFFFFF;
476 p->ib.ptr[hi] = start >> 32;
477
478 if (end <= start) {
479 DRM_ERROR("invalid reloc offset %llX!\n", offset);
480 return -EINVAL;
481 }
482 if ((end - start) < size) {
483 DRM_ERROR("buffer to small (%d / %d)!\n",
484 (unsigned)(end - start), size);
485 return -EINVAL;
486 }
d93f7937
CK
487
488 return 0;
489}
490
2fc5703a
LL
491/**
492 * radeon_vce_validate_handle - validate stream handle
493 *
494 * @p: parser context
495 * @handle: handle to validate
29c63fe2 496 * @allocated: allocated a new handle?
2fc5703a
LL
497 *
498 * Validates the handle and return the found session index or -EINVAL
499 * we we don't have another free session index.
500 */
29c63fe2
CK
501static int radeon_vce_validate_handle(struct radeon_cs_parser *p,
502 uint32_t handle, bool *allocated)
2fc5703a
LL
503{
504 unsigned i;
505
29c63fe2
CK
506 *allocated = false;
507
2fc5703a
LL
508 /* validate the handle */
509 for (i = 0; i < RADEON_MAX_VCE_HANDLES; ++i) {
29c63fe2
CK
510 if (atomic_read(&p->rdev->vce.handles[i]) == handle) {
511 if (p->rdev->vce.filp[i] != p->filp) {
512 DRM_ERROR("VCE handle collision detected!\n");
513 return -EINVAL;
514 }
2fc5703a 515 return i;
29c63fe2 516 }
2fc5703a
LL
517 }
518
519 /* handle not found try to alloc a new one */
520 for (i = 0; i < RADEON_MAX_VCE_HANDLES; ++i) {
521 if (!atomic_cmpxchg(&p->rdev->vce.handles[i], 0, handle)) {
522 p->rdev->vce.filp[i] = p->filp;
523 p->rdev->vce.img_size[i] = 0;
29c63fe2 524 *allocated = true;
2fc5703a
LL
525 return i;
526 }
527 }
528
529 DRM_ERROR("No more free VCE handles!\n");
530 return -EINVAL;
531}
532
d93f7937
CK
533/**
534 * radeon_vce_cs_parse - parse and validate the command stream
535 *
536 * @p: parser context
537 *
538 */
539int radeon_vce_cs_parse(struct radeon_cs_parser *p)
540{
2fc5703a 541 int session_idx = -1;
29c63fe2 542 bool destroyed = false, created = false, allocated = false;
2fc5703a
LL
543 uint32_t tmp, handle = 0;
544 uint32_t *size = &tmp;
29c63fe2 545 int i, r = 0;
d93f7937 546
6d2d13dd 547 while (p->idx < p->chunk_ib->length_dw) {
d93f7937
CK
548 uint32_t len = radeon_get_ib_value(p, p->idx);
549 uint32_t cmd = radeon_get_ib_value(p, p->idx + 1);
550
551 if ((len < 8) || (len & 3)) {
552 DRM_ERROR("invalid VCE command length (%d)!\n", len);
29c63fe2
CK
553 r = -EINVAL;
554 goto out;
d93f7937
CK
555 }
556
2fc5703a
LL
557 if (destroyed) {
558 DRM_ERROR("No other command allowed after destroy!\n");
29c63fe2
CK
559 r = -EINVAL;
560 goto out;
2fc5703a
LL
561 }
562
d93f7937
CK
563 switch (cmd) {
564 case 0x00000001: // session
565 handle = radeon_get_ib_value(p, p->idx + 2);
29c63fe2
CK
566 session_idx = radeon_vce_validate_handle(p, handle,
567 &allocated);
2fc5703a
LL
568 if (session_idx < 0)
569 return session_idx;
570 size = &p->rdev->vce.img_size[session_idx];
d93f7937
CK
571 break;
572
573 case 0x00000002: // task info
2fc5703a
LL
574 break;
575
d93f7937 576 case 0x01000001: // create
29c63fe2
CK
577 created = true;
578 if (!allocated) {
579 DRM_ERROR("Handle already in use!\n");
580 r = -EINVAL;
581 goto out;
582 }
583
2fc5703a
LL
584 *size = radeon_get_ib_value(p, p->idx + 8) *
585 radeon_get_ib_value(p, p->idx + 10) *
586 8 * 3 / 2;
587 break;
588
d93f7937
CK
589 case 0x04000001: // config extension
590 case 0x04000002: // pic control
591 case 0x04000005: // rate control
592 case 0x04000007: // motion estimation
593 case 0x04000008: // rdo
1957d6be 594 case 0x04000009: // vui
d93f7937
CK
595 break;
596
597 case 0x03000001: // encode
2fc5703a
LL
598 r = radeon_vce_cs_reloc(p, p->idx + 10, p->idx + 9,
599 *size);
d93f7937 600 if (r)
29c63fe2 601 goto out;
d93f7937 602
2fc5703a
LL
603 r = radeon_vce_cs_reloc(p, p->idx + 12, p->idx + 11,
604 *size / 3);
d93f7937 605 if (r)
29c63fe2 606 goto out;
d93f7937
CK
607 break;
608
609 case 0x02000001: // destroy
2fc5703a 610 destroyed = true;
d93f7937
CK
611 break;
612
613 case 0x05000001: // context buffer
2fc5703a
LL
614 r = radeon_vce_cs_reloc(p, p->idx + 3, p->idx + 2,
615 *size * 2);
616 if (r)
29c63fe2 617 goto out;
2fc5703a
LL
618 break;
619
d93f7937 620 case 0x05000004: // video bitstream buffer
2fc5703a
LL
621 tmp = radeon_get_ib_value(p, p->idx + 4);
622 r = radeon_vce_cs_reloc(p, p->idx + 3, p->idx + 2,
623 tmp);
624 if (r)
29c63fe2 625 goto out;
2fc5703a
LL
626 break;
627
d93f7937 628 case 0x05000005: // feedback buffer
2fc5703a
LL
629 r = radeon_vce_cs_reloc(p, p->idx + 3, p->idx + 2,
630 4096);
d93f7937 631 if (r)
29c63fe2 632 goto out;
d93f7937
CK
633 break;
634
635 default:
636 DRM_ERROR("invalid VCE command (0x%x)!\n", cmd);
29c63fe2
CK
637 r = -EINVAL;
638 goto out;
d93f7937
CK
639 }
640
2fc5703a
LL
641 if (session_idx == -1) {
642 DRM_ERROR("no session command at start of IB\n");
29c63fe2
CK
643 r = -EINVAL;
644 goto out;
2fc5703a
LL
645 }
646
d93f7937
CK
647 p->idx += len / 4;
648 }
649
29c63fe2
CK
650 if (allocated && !created) {
651 DRM_ERROR("New session without create command!\n");
652 r = -ENOENT;
653 }
654
655out:
656 if ((!r && destroyed) || (r && allocated)) {
657 /*
658 * IB contains a destroy msg or we have allocated an
659 * handle and got an error, anyway free the handle
660 */
d93f7937
CK
661 for (i = 0; i < RADEON_MAX_VCE_HANDLES; ++i)
662 atomic_cmpxchg(&p->rdev->vce.handles[i], handle, 0);
d93f7937
CK
663 }
664
29c63fe2 665 return r;
d93f7937
CK
666}
667
668/**
669 * radeon_vce_semaphore_emit - emit a semaphore command
670 *
671 * @rdev: radeon_device pointer
672 * @ring: engine to use
673 * @semaphore: address of semaphore
674 * @emit_wait: true=emit wait, false=emit signal
675 *
676 */
677bool radeon_vce_semaphore_emit(struct radeon_device *rdev,
678 struct radeon_ring *ring,
679 struct radeon_semaphore *semaphore,
680 bool emit_wait)
681{
682 uint64_t addr = semaphore->gpu_addr;
683
684 radeon_ring_write(ring, VCE_CMD_SEMAPHORE);
685 radeon_ring_write(ring, (addr >> 3) & 0x000FFFFF);
686 radeon_ring_write(ring, (addr >> 23) & 0x000FFFFF);
687 radeon_ring_write(ring, 0x01003000 | (emit_wait ? 1 : 0));
688 if (!emit_wait)
689 radeon_ring_write(ring, VCE_CMD_END);
690
691 return true;
692}
693
694/**
695 * radeon_vce_ib_execute - execute indirect buffer
696 *
697 * @rdev: radeon_device pointer
698 * @ib: the IB to execute
699 *
700 */
701void radeon_vce_ib_execute(struct radeon_device *rdev, struct radeon_ib *ib)
702{
703 struct radeon_ring *ring = &rdev->ring[ib->ring];
704 radeon_ring_write(ring, VCE_CMD_IB);
705 radeon_ring_write(ring, ib->gpu_addr);
706 radeon_ring_write(ring, upper_32_bits(ib->gpu_addr));
707 radeon_ring_write(ring, ib->length_dw);
708}
709
710/**
711 * radeon_vce_fence_emit - add a fence command to the ring
712 *
713 * @rdev: radeon_device pointer
714 * @fence: the fence
715 *
716 */
717void radeon_vce_fence_emit(struct radeon_device *rdev,
718 struct radeon_fence *fence)
719{
720 struct radeon_ring *ring = &rdev->ring[fence->ring];
681941c1 721 uint64_t addr = rdev->fence_drv[fence->ring].gpu_addr;
d93f7937
CK
722
723 radeon_ring_write(ring, VCE_CMD_FENCE);
724 radeon_ring_write(ring, addr);
725 radeon_ring_write(ring, upper_32_bits(addr));
726 radeon_ring_write(ring, fence->seq);
727 radeon_ring_write(ring, VCE_CMD_TRAP);
728 radeon_ring_write(ring, VCE_CMD_END);
729}
730
731/**
732 * radeon_vce_ring_test - test if VCE ring is working
733 *
734 * @rdev: radeon_device pointer
735 * @ring: the engine to test on
736 *
737 */
738int radeon_vce_ring_test(struct radeon_device *rdev, struct radeon_ring *ring)
739{
740 uint32_t rptr = vce_v1_0_get_rptr(rdev, ring);
741 unsigned i;
742 int r;
743
744 r = radeon_ring_lock(rdev, ring, 16);
745 if (r) {
746 DRM_ERROR("radeon: vce failed to lock ring %d (%d).\n",
747 ring->idx, r);
748 return r;
749 }
750 radeon_ring_write(ring, VCE_CMD_END);
1538a9e0 751 radeon_ring_unlock_commit(rdev, ring, false);
d93f7937
CK
752
753 for (i = 0; i < rdev->usec_timeout; i++) {
754 if (vce_v1_0_get_rptr(rdev, ring) != rptr)
755 break;
756 DRM_UDELAY(1);
757 }
758
759 if (i < rdev->usec_timeout) {
760 DRM_INFO("ring test on %d succeeded in %d usecs\n",
761 ring->idx, i);
762 } else {
763 DRM_ERROR("radeon: ring %d test failed\n",
764 ring->idx);
765 r = -ETIMEDOUT;
766 }
767
768 return r;
769}
770
771/**
772 * radeon_vce_ib_test - test if VCE IBs are working
773 *
774 * @rdev: radeon_device pointer
775 * @ring: the engine to test on
776 *
777 */
778int radeon_vce_ib_test(struct radeon_device *rdev, struct radeon_ring *ring)
779{
780 struct radeon_fence *fence = NULL;
781 int r;
782
783 r = radeon_vce_get_create_msg(rdev, ring->idx, 1, NULL);
784 if (r) {
785 DRM_ERROR("radeon: failed to get create msg (%d).\n", r);
786 goto error;
787 }
788
789 r = radeon_vce_get_destroy_msg(rdev, ring->idx, 1, &fence);
790 if (r) {
791 DRM_ERROR("radeon: failed to get destroy ib (%d).\n", r);
792 goto error;
793 }
794
795 r = radeon_fence_wait(fence, false);
796 if (r) {
797 DRM_ERROR("radeon: fence wait failed (%d).\n", r);
798 } else {
799 DRM_INFO("ib test on ring %d succeeded\n", ring->idx);
800 }
801error:
802 radeon_fence_unref(&fence);
803 return r;
804}