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#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
37
38#define VCE_IDLE_TIMEOUT_MS 1000
39
40
41#define FIRMWARE_BONAIRE "radeon/BONAIRE_vce.bin"
42
43MODULE_FIRMWARE(FIRMWARE_BONAIRE);
44
45static void radeon_vce_idle_work_handler(struct work_struct *work);
46
47
48
49
50
51
52
53
54int radeon_vce_init(struct radeon_device *rdev)
55{
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;
61 int i, r;
62
63 INIT_DELAYED_WORK(&rdev->vce.idle_work, radeon_vce_idle_work_handler);
64
65 switch (rdev->family) {
66 case CHIP_BONAIRE:
67 case CHIP_KAVERI:
68 case CHIP_KABINI:
69 case CHIP_HAWAII:
70 case CHIP_MULLINS:
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
85
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
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
121 if (rdev->vce.fw_version != ((40 << 24) | (2 << 16) | (2 << 8)))
122 return -EINVAL;
123
124
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,
129 RADEON_GEM_DOMAIN_VRAM, 0, NULL, NULL,
130 &rdev->vce.vcpu_bo);
131 if (r) {
132 dev_err(rdev->dev, "(%d) failed to allocate VCE bo\n", r);
133 return r;
134 }
135
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);
140 return r;
141 }
142
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);
149 return r;
150 }
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
162
163
164
165
166
167void radeon_vce_fini(struct radeon_device *rdev)
168{
169 if (rdev->vce.vcpu_bo == NULL)
170 return;
171
172 radeon_bo_unref(&rdev->vce.vcpu_bo);
173
174 release_firmware(rdev->vce_fw);
175}
176
177
178
179
180
181
182
183int radeon_vce_suspend(struct radeon_device *rdev)
184{
185 int i;
186
187 if (rdev->vce.vcpu_bo == NULL)
188 return 0;
189
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
198 return -EINVAL;
199}
200
201
202
203
204
205
206
207int radeon_vce_resume(struct radeon_device *rdev)
208{
209 void *cpu_addr;
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) {
217 dev_err(rdev->dev, "(%d) failed to reserve VCE bo\n", r);
218 return r;
219 }
220
221 r = radeon_bo_kmap(rdev->vce.vcpu_bo, &cpu_addr);
222 if (r) {
223 radeon_bo_unreserve(rdev->vce.vcpu_bo);
224 dev_err(rdev->dev, "(%d) VCE map failed\n", r);
225 return r;
226 }
227
228 memcpy(cpu_addr, rdev->vce_fw->data, rdev->vce_fw->size);
229
230 radeon_bo_kunmap(rdev->vce.vcpu_bo);
231
232 radeon_bo_unreserve(rdev->vce.vcpu_bo);
233
234 return 0;
235}
236
237
238
239
240
241
242
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
264
265
266
267
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
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
290
291
292
293
294
295
296
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
306 radeon_vce_note_usage(rdev);
307
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
320
321
322
323
324
325
326
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
345 ib.length_dw = 0;
346 ib.ptr[ib.length_dw++] = 0x0000000c;
347 ib.ptr[ib.length_dw++] = 0x00000001;
348 ib.ptr[ib.length_dw++] = handle;
349
350 ib.ptr[ib.length_dw++] = 0x00000030;
351 ib.ptr[ib.length_dw++] = 0x01000001;
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;
364 ib.ptr[ib.length_dw++] = 0x05000005;
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
372 r = radeon_ib_schedule(rdev, &ib, NULL, false);
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
387
388
389
390
391
392
393
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
412 ib.length_dw = 0;
413 ib.ptr[ib.length_dw++] = 0x0000000c;
414 ib.ptr[ib.length_dw++] = 0x00000001;
415 ib.ptr[ib.length_dw++] = handle;
416
417 ib.ptr[ib.length_dw++] = 0x00000014;
418 ib.ptr[ib.length_dw++] = 0x05000005;
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;
424 ib.ptr[ib.length_dw++] = 0x02000001;
425
426 for (i = ib.length_dw; i < ib_size_dw; ++i)
427 ib.ptr[i] = 0x0;
428
429 r = radeon_ib_schedule(rdev, &ib, NULL, false);
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
444
445
446
447
448
449
450
451
452int radeon_vce_cs_reloc(struct radeon_cs_parser *p, int lo, int hi,
453 unsigned size)
454{
455 struct radeon_cs_chunk *relocs_chunk;
456 struct radeon_bo_list *reloc;
457 uint64_t start, end, offset;
458 unsigned idx;
459
460 relocs_chunk = p->chunk_relocs;
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
470 reloc = &p->relocs[(idx / 4)];
471 start = reloc->gpu_offset;
472 end = start + radeon_bo_size(reloc->robj);
473 start += offset;
474
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 }
487
488 return 0;
489}
490
491
492
493
494
495
496
497
498
499
500
501static int radeon_vce_validate_handle(struct radeon_cs_parser *p,
502 uint32_t handle, bool *allocated)
503{
504 unsigned i;
505
506 *allocated = false;
507
508
509 for (i = 0; i < RADEON_MAX_VCE_HANDLES; ++i) {
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 }
515 return i;
516 }
517 }
518
519
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;
524 *allocated = true;
525 return i;
526 }
527 }
528
529 DRM_ERROR("No more free VCE handles!\n");
530 return -EINVAL;
531}
532
533
534
535
536
537
538
539int radeon_vce_cs_parse(struct radeon_cs_parser *p)
540{
541 int session_idx = -1;
542 bool destroyed = false, created = false, allocated = false;
543 uint32_t tmp, handle = 0;
544 uint32_t *size = &tmp;
545 int i, r = 0;
546
547 while (p->idx < p->chunk_ib->length_dw) {
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);
553 r = -EINVAL;
554 goto out;
555 }
556
557 if (destroyed) {
558 DRM_ERROR("No other command allowed after destroy!\n");
559 r = -EINVAL;
560 goto out;
561 }
562
563 switch (cmd) {
564 case 0x00000001:
565 handle = radeon_get_ib_value(p, p->idx + 2);
566 session_idx = radeon_vce_validate_handle(p, handle,
567 &allocated);
568 if (session_idx < 0)
569 return session_idx;
570 size = &p->rdev->vce.img_size[session_idx];
571 break;
572
573 case 0x00000002:
574 break;
575
576 case 0x01000001:
577 created = true;
578 if (!allocated) {
579 DRM_ERROR("Handle already in use!\n");
580 r = -EINVAL;
581 goto out;
582 }
583
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
589 case 0x04000001:
590 case 0x04000002:
591 case 0x04000005:
592 case 0x04000007:
593 case 0x04000008:
594 case 0x04000009:
595 break;
596
597 case 0x03000001:
598 r = radeon_vce_cs_reloc(p, p->idx + 10, p->idx + 9,
599 *size);
600 if (r)
601 goto out;
602
603 r = radeon_vce_cs_reloc(p, p->idx + 12, p->idx + 11,
604 *size / 3);
605 if (r)
606 goto out;
607 break;
608
609 case 0x02000001:
610 destroyed = true;
611 break;
612
613 case 0x05000001:
614 r = radeon_vce_cs_reloc(p, p->idx + 3, p->idx + 2,
615 *size * 2);
616 if (r)
617 goto out;
618 break;
619
620 case 0x05000004:
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)
625 goto out;
626 break;
627
628 case 0x05000005:
629 r = radeon_vce_cs_reloc(p, p->idx + 3, p->idx + 2,
630 4096);
631 if (r)
632 goto out;
633 break;
634
635 default:
636 DRM_ERROR("invalid VCE command (0x%x)!\n", cmd);
637 r = -EINVAL;
638 goto out;
639 }
640
641 if (session_idx == -1) {
642 DRM_ERROR("no session command at start of IB\n");
643 r = -EINVAL;
644 goto out;
645 }
646
647 p->idx += len / 4;
648 }
649
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
659
660
661 for (i = 0; i < RADEON_MAX_VCE_HANDLES; ++i)
662 atomic_cmpxchg(&p->rdev->vce.handles[i], handle, 0);
663 }
664
665 return r;
666}
667
668
669
670
671
672
673
674
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
696
697
698
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
712
713
714
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];
721 uint64_t addr = rdev->fence_drv[fence->ring].gpu_addr;
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
733
734
735
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);
751 radeon_ring_unlock_commit(rdev, ring, false);
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
773
774
775
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}
805