blob: 6d191fb40b38c308e2c1568cb91ca7c089182ca0 [file] [log] [blame]
Alex Deucherd38ceaf2015-04-20 16:55:21 -04001/*
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 "amdgpu.h"
34#include "amdgpu_pm.h"
35#include "amdgpu_vce.h"
36#include "cikd.h"
37
38/* 1 second timeout */
39#define VCE_IDLE_TIMEOUT_MS 1000
40
41/* Firmware Names */
42#ifdef CONFIG_DRM_AMDGPU_CIK
43#define FIRMWARE_BONAIRE "radeon/bonaire_vce.bin"
44#define FIRMWARE_KABINI "radeon/kabini_vce.bin"
45#define FIRMWARE_KAVERI "radeon/kaveri_vce.bin"
46#define FIRMWARE_HAWAII "radeon/hawaii_vce.bin"
47#define FIRMWARE_MULLINS "radeon/mullins_vce.bin"
48#endif
Jammy Zhouc65444f2015-05-13 22:49:04 +080049#define FIRMWARE_TONGA "amdgpu/tonga_vce.bin"
50#define FIRMWARE_CARRIZO "amdgpu/carrizo_vce.bin"
Alex Deucher188a9bc2015-07-27 14:24:14 -040051#define FIRMWARE_FIJI "amdgpu/fiji_vce.bin"
Samuel Licfaba562015-10-08 16:27:55 -040052#define FIRMWARE_STONEY "amdgpu/stoney_vce.bin"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040053
54#ifdef CONFIG_DRM_AMDGPU_CIK
55MODULE_FIRMWARE(FIRMWARE_BONAIRE);
56MODULE_FIRMWARE(FIRMWARE_KABINI);
57MODULE_FIRMWARE(FIRMWARE_KAVERI);
58MODULE_FIRMWARE(FIRMWARE_HAWAII);
59MODULE_FIRMWARE(FIRMWARE_MULLINS);
60#endif
61MODULE_FIRMWARE(FIRMWARE_TONGA);
62MODULE_FIRMWARE(FIRMWARE_CARRIZO);
Alex Deucher188a9bc2015-07-27 14:24:14 -040063MODULE_FIRMWARE(FIRMWARE_FIJI);
Samuel Licfaba562015-10-08 16:27:55 -040064MODULE_FIRMWARE(FIRMWARE_STONEY);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040065
66static void amdgpu_vce_idle_work_handler(struct work_struct *work);
67
68/**
69 * amdgpu_vce_init - allocate memory, load vce firmware
70 *
71 * @adev: amdgpu_device pointer
72 *
73 * First step to get VCE online, allocate memory and load the firmware
74 */
Leo Liue9822622015-05-06 14:31:27 -040075int amdgpu_vce_sw_init(struct amdgpu_device *adev, unsigned long size)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040076{
Christian Königc5949892016-02-10 17:43:00 +010077 struct amdgpu_ring *ring;
78 struct amd_sched_rq *rq;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040079 const char *fw_name;
80 const struct common_firmware_header *hdr;
81 unsigned ucode_version, version_major, version_minor, binary_id;
82 int i, r;
83
84 INIT_DELAYED_WORK(&adev->vce.idle_work, amdgpu_vce_idle_work_handler);
85
86 switch (adev->asic_type) {
87#ifdef CONFIG_DRM_AMDGPU_CIK
88 case CHIP_BONAIRE:
89 fw_name = FIRMWARE_BONAIRE;
90 break;
91 case CHIP_KAVERI:
92 fw_name = FIRMWARE_KAVERI;
93 break;
94 case CHIP_KABINI:
95 fw_name = FIRMWARE_KABINI;
96 break;
97 case CHIP_HAWAII:
98 fw_name = FIRMWARE_HAWAII;
99 break;
100 case CHIP_MULLINS:
101 fw_name = FIRMWARE_MULLINS;
102 break;
103#endif
104 case CHIP_TONGA:
105 fw_name = FIRMWARE_TONGA;
106 break;
107 case CHIP_CARRIZO:
108 fw_name = FIRMWARE_CARRIZO;
109 break;
Alex Deucher188a9bc2015-07-27 14:24:14 -0400110 case CHIP_FIJI:
111 fw_name = FIRMWARE_FIJI;
112 break;
Samuel Licfaba562015-10-08 16:27:55 -0400113 case CHIP_STONEY:
114 fw_name = FIRMWARE_STONEY;
115 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400116
117 default:
118 return -EINVAL;
119 }
120
121 r = request_firmware(&adev->vce.fw, fw_name, adev->dev);
122 if (r) {
123 dev_err(adev->dev, "amdgpu_vce: Can't load firmware \"%s\"\n",
124 fw_name);
125 return r;
126 }
127
128 r = amdgpu_ucode_validate(adev->vce.fw);
129 if (r) {
130 dev_err(adev->dev, "amdgpu_vce: Can't validate firmware \"%s\"\n",
131 fw_name);
132 release_firmware(adev->vce.fw);
133 adev->vce.fw = NULL;
134 return r;
135 }
136
137 hdr = (const struct common_firmware_header *)adev->vce.fw->data;
138
139 ucode_version = le32_to_cpu(hdr->ucode_version);
140 version_major = (ucode_version >> 20) & 0xfff;
141 version_minor = (ucode_version >> 8) & 0xfff;
142 binary_id = ucode_version & 0xff;
143 DRM_INFO("Found VCE firmware Version: %hhd.%hhd Binary ID: %hhd\n",
144 version_major, version_minor, binary_id);
145 adev->vce.fw_version = ((version_major << 24) | (version_minor << 16) |
146 (binary_id << 8));
147
148 /* allocate firmware, stack and heap BO */
149
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400150 r = amdgpu_bo_create(adev, size, PAGE_SIZE, true,
Alex Deucher857d9132015-08-27 00:14:16 -0400151 AMDGPU_GEM_DOMAIN_VRAM,
152 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED,
Christian König72d76682015-09-03 17:34:59 +0200153 NULL, NULL, &adev->vce.vcpu_bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400154 if (r) {
155 dev_err(adev->dev, "(%d) failed to allocate VCE bo\n", r);
156 return r;
157 }
158
159 r = amdgpu_bo_reserve(adev->vce.vcpu_bo, false);
160 if (r) {
161 amdgpu_bo_unref(&adev->vce.vcpu_bo);
162 dev_err(adev->dev, "(%d) failed to reserve VCE bo\n", r);
163 return r;
164 }
165
166 r = amdgpu_bo_pin(adev->vce.vcpu_bo, AMDGPU_GEM_DOMAIN_VRAM,
167 &adev->vce.gpu_addr);
168 amdgpu_bo_unreserve(adev->vce.vcpu_bo);
169 if (r) {
170 amdgpu_bo_unref(&adev->vce.vcpu_bo);
171 dev_err(adev->dev, "(%d) VCE bo pin failed\n", r);
172 return r;
173 }
174
Christian Königc5949892016-02-10 17:43:00 +0100175
176 ring = &adev->vce.ring[0];
177 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_NORMAL];
178 r = amd_sched_entity_init(&ring->sched, &adev->vce.entity,
179 rq, amdgpu_sched_jobs);
180 if (r != 0) {
181 DRM_ERROR("Failed setting up VCE run queue.\n");
182 return r;
183 }
184
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400185 for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i) {
186 atomic_set(&adev->vce.handles[i], 0);
187 adev->vce.filp[i] = NULL;
188 }
189
190 return 0;
191}
192
193/**
194 * amdgpu_vce_fini - free memory
195 *
196 * @adev: amdgpu_device pointer
197 *
198 * Last step on VCE teardown, free firmware memory
199 */
200int amdgpu_vce_sw_fini(struct amdgpu_device *adev)
201{
202 if (adev->vce.vcpu_bo == NULL)
203 return 0;
204
Christian Königc5949892016-02-10 17:43:00 +0100205 amd_sched_entity_fini(&adev->vce.ring[0].sched, &adev->vce.entity);
206
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400207 amdgpu_bo_unref(&adev->vce.vcpu_bo);
208
209 amdgpu_ring_fini(&adev->vce.ring[0]);
210 amdgpu_ring_fini(&adev->vce.ring[1]);
211
212 release_firmware(adev->vce.fw);
213
214 return 0;
215}
216
217/**
218 * amdgpu_vce_suspend - unpin VCE fw memory
219 *
220 * @adev: amdgpu_device pointer
221 *
222 */
223int amdgpu_vce_suspend(struct amdgpu_device *adev)
224{
225 int i;
226
227 if (adev->vce.vcpu_bo == NULL)
228 return 0;
229
230 for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i)
231 if (atomic_read(&adev->vce.handles[i]))
232 break;
233
234 if (i == AMDGPU_MAX_VCE_HANDLES)
235 return 0;
236
237 /* TODO: suspending running encoding sessions isn't supported */
238 return -EINVAL;
239}
240
241/**
242 * amdgpu_vce_resume - pin VCE fw memory
243 *
244 * @adev: amdgpu_device pointer
245 *
246 */
247int amdgpu_vce_resume(struct amdgpu_device *adev)
248{
249 void *cpu_addr;
250 const struct common_firmware_header *hdr;
251 unsigned offset;
252 int r;
253
254 if (adev->vce.vcpu_bo == NULL)
255 return -EINVAL;
256
257 r = amdgpu_bo_reserve(adev->vce.vcpu_bo, false);
258 if (r) {
259 dev_err(adev->dev, "(%d) failed to reserve VCE bo\n", r);
260 return r;
261 }
262
263 r = amdgpu_bo_kmap(adev->vce.vcpu_bo, &cpu_addr);
264 if (r) {
265 amdgpu_bo_unreserve(adev->vce.vcpu_bo);
266 dev_err(adev->dev, "(%d) VCE map failed\n", r);
267 return r;
268 }
269
270 hdr = (const struct common_firmware_header *)adev->vce.fw->data;
271 offset = le32_to_cpu(hdr->ucode_array_offset_bytes);
272 memcpy(cpu_addr, (adev->vce.fw->data) + offset,
273 (adev->vce.fw->size) - offset);
274
275 amdgpu_bo_kunmap(adev->vce.vcpu_bo);
276
277 amdgpu_bo_unreserve(adev->vce.vcpu_bo);
278
279 return 0;
280}
281
282/**
283 * amdgpu_vce_idle_work_handler - power off VCE
284 *
285 * @work: pointer to work structure
286 *
287 * power of VCE when it's not used any more
288 */
289static void amdgpu_vce_idle_work_handler(struct work_struct *work)
290{
291 struct amdgpu_device *adev =
292 container_of(work, struct amdgpu_device, vce.idle_work.work);
293
294 if ((amdgpu_fence_count_emitted(&adev->vce.ring[0]) == 0) &&
295 (amdgpu_fence_count_emitted(&adev->vce.ring[1]) == 0)) {
296 if (adev->pm.dpm_enabled) {
297 amdgpu_dpm_enable_vce(adev, false);
298 } else {
299 amdgpu_asic_set_vce_clocks(adev, 0, 0);
300 }
301 } else {
302 schedule_delayed_work(&adev->vce.idle_work,
303 msecs_to_jiffies(VCE_IDLE_TIMEOUT_MS));
304 }
305}
306
307/**
308 * amdgpu_vce_note_usage - power up VCE
309 *
310 * @adev: amdgpu_device pointer
311 *
312 * Make sure VCE is powerd up when we want to use it
313 */
314static void amdgpu_vce_note_usage(struct amdgpu_device *adev)
315{
316 bool streams_changed = false;
317 bool set_clocks = !cancel_delayed_work_sync(&adev->vce.idle_work);
318 set_clocks &= schedule_delayed_work(&adev->vce.idle_work,
319 msecs_to_jiffies(VCE_IDLE_TIMEOUT_MS));
320
321 if (adev->pm.dpm_enabled) {
322 /* XXX figure out if the streams changed */
323 streams_changed = false;
324 }
325
326 if (set_clocks || streams_changed) {
327 if (adev->pm.dpm_enabled) {
328 amdgpu_dpm_enable_vce(adev, true);
329 } else {
330 amdgpu_asic_set_vce_clocks(adev, 53300, 40000);
331 }
332 }
333}
334
335/**
336 * amdgpu_vce_free_handles - free still open VCE handles
337 *
338 * @adev: amdgpu_device pointer
339 * @filp: drm file pointer
340 *
341 * Close all VCE handles still open by this file pointer
342 */
343void amdgpu_vce_free_handles(struct amdgpu_device *adev, struct drm_file *filp)
344{
345 struct amdgpu_ring *ring = &adev->vce.ring[0];
346 int i, r;
347 for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i) {
348 uint32_t handle = atomic_read(&adev->vce.handles[i]);
349 if (!handle || adev->vce.filp[i] != filp)
350 continue;
351
352 amdgpu_vce_note_usage(adev);
353
Christian König9f2ade32016-02-03 16:50:56 +0100354 r = amdgpu_vce_get_destroy_msg(ring, handle, false, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400355 if (r)
356 DRM_ERROR("Error destroying VCE handle (%d)!\n", r);
357
358 adev->vce.filp[i] = NULL;
359 atomic_set(&adev->vce.handles[i], 0);
360 }
361}
362
363/**
364 * amdgpu_vce_get_create_msg - generate a VCE create msg
365 *
366 * @adev: amdgpu_device pointer
367 * @ring: ring we should submit the msg to
368 * @handle: VCE session handle to use
369 * @fence: optional fence to return
370 *
371 * Open up a stream for HW test
372 */
373int amdgpu_vce_get_create_msg(struct amdgpu_ring *ring, uint32_t handle,
Chunming Zhoued40bfb2015-08-03 13:28:16 +0800374 struct fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400375{
376 const unsigned ib_size_dw = 1024;
Christian Königd71518b2016-02-01 12:20:25 +0100377 struct amdgpu_job *job;
378 struct amdgpu_ib *ib;
Chunming Zhou17635522015-08-03 11:43:19 +0800379 struct fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400380 uint64_t dummy;
381 int i, r;
382
Christian Königd71518b2016-02-01 12:20:25 +0100383 r = amdgpu_job_alloc_with_ib(ring->adev, ib_size_dw * 4, &job);
384 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400385 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100386
387 ib = &job->ibs[0];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400388
Chunming Zhou81287652015-07-03 14:18:26 +0800389 dummy = ib->gpu_addr + 1024;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400390
391 /* stitch together an VCE create msg */
Chunming Zhou81287652015-07-03 14:18:26 +0800392 ib->length_dw = 0;
393 ib->ptr[ib->length_dw++] = 0x0000000c; /* len */
394 ib->ptr[ib->length_dw++] = 0x00000001; /* session cmd */
395 ib->ptr[ib->length_dw++] = handle;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400396
Leo Liud66f8e42015-11-18 11:57:33 -0500397 if ((ring->adev->vce.fw_version >> 24) >= 52)
398 ib->ptr[ib->length_dw++] = 0x00000040; /* len */
399 else
400 ib->ptr[ib->length_dw++] = 0x00000030; /* len */
Chunming Zhou81287652015-07-03 14:18:26 +0800401 ib->ptr[ib->length_dw++] = 0x01000001; /* create cmd */
402 ib->ptr[ib->length_dw++] = 0x00000000;
403 ib->ptr[ib->length_dw++] = 0x00000042;
404 ib->ptr[ib->length_dw++] = 0x0000000a;
405 ib->ptr[ib->length_dw++] = 0x00000001;
406 ib->ptr[ib->length_dw++] = 0x00000080;
407 ib->ptr[ib->length_dw++] = 0x00000060;
408 ib->ptr[ib->length_dw++] = 0x00000100;
409 ib->ptr[ib->length_dw++] = 0x00000100;
410 ib->ptr[ib->length_dw++] = 0x0000000c;
411 ib->ptr[ib->length_dw++] = 0x00000000;
Leo Liud66f8e42015-11-18 11:57:33 -0500412 if ((ring->adev->vce.fw_version >> 24) >= 52) {
413 ib->ptr[ib->length_dw++] = 0x00000000;
414 ib->ptr[ib->length_dw++] = 0x00000000;
415 ib->ptr[ib->length_dw++] = 0x00000000;
416 ib->ptr[ib->length_dw++] = 0x00000000;
417 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400418
Chunming Zhou81287652015-07-03 14:18:26 +0800419 ib->ptr[ib->length_dw++] = 0x00000014; /* len */
420 ib->ptr[ib->length_dw++] = 0x05000005; /* feedback buffer */
421 ib->ptr[ib->length_dw++] = upper_32_bits(dummy);
422 ib->ptr[ib->length_dw++] = dummy;
423 ib->ptr[ib->length_dw++] = 0x00000001;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400424
Chunming Zhou81287652015-07-03 14:18:26 +0800425 for (i = ib->length_dw; i < ib_size_dw; ++i)
426 ib->ptr[i] = 0x0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400427
Christian König336d1f52016-02-16 10:57:10 +0100428 r = amdgpu_ib_schedule(ring, 1, ib, NULL, &f);
Chunming Zhou81287652015-07-03 14:18:26 +0800429 if (r)
430 goto err;
Christian König9f2ade32016-02-03 16:50:56 +0100431
432 amdgpu_job_free(job);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400433 if (fence)
Chunming Zhou17635522015-08-03 11:43:19 +0800434 *fence = fence_get(f);
Chunming Zhou281b4222015-08-12 12:58:31 +0800435 fence_put(f);
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800436 return 0;
Christian Königd71518b2016-02-01 12:20:25 +0100437
Chunming Zhou81287652015-07-03 14:18:26 +0800438err:
Christian Königd71518b2016-02-01 12:20:25 +0100439 amdgpu_job_free(job);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400440 return r;
441}
442
443/**
444 * amdgpu_vce_get_destroy_msg - generate a VCE destroy msg
445 *
446 * @adev: amdgpu_device pointer
447 * @ring: ring we should submit the msg to
448 * @handle: VCE session handle to use
449 * @fence: optional fence to return
450 *
451 * Close up a stream for HW test or if userspace failed to do so
452 */
453int amdgpu_vce_get_destroy_msg(struct amdgpu_ring *ring, uint32_t handle,
Christian König9f2ade32016-02-03 16:50:56 +0100454 bool direct, struct fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400455{
456 const unsigned ib_size_dw = 1024;
Christian Königd71518b2016-02-01 12:20:25 +0100457 struct amdgpu_job *job;
458 struct amdgpu_ib *ib;
Chunming Zhou17635522015-08-03 11:43:19 +0800459 struct fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400460 uint64_t dummy;
461 int i, r;
462
Christian Königd71518b2016-02-01 12:20:25 +0100463 r = amdgpu_job_alloc_with_ib(ring->adev, ib_size_dw * 4, &job);
464 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400465 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400466
Christian Königd71518b2016-02-01 12:20:25 +0100467 ib = &job->ibs[0];
Chunming Zhou81287652015-07-03 14:18:26 +0800468 dummy = ib->gpu_addr + 1024;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400469
470 /* stitch together an VCE destroy msg */
Chunming Zhou81287652015-07-03 14:18:26 +0800471 ib->length_dw = 0;
472 ib->ptr[ib->length_dw++] = 0x0000000c; /* len */
473 ib->ptr[ib->length_dw++] = 0x00000001; /* session cmd */
474 ib->ptr[ib->length_dw++] = handle;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400475
Chunming Zhou81287652015-07-03 14:18:26 +0800476 ib->ptr[ib->length_dw++] = 0x00000014; /* len */
477 ib->ptr[ib->length_dw++] = 0x05000005; /* feedback buffer */
478 ib->ptr[ib->length_dw++] = upper_32_bits(dummy);
479 ib->ptr[ib->length_dw++] = dummy;
480 ib->ptr[ib->length_dw++] = 0x00000001;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400481
Chunming Zhou81287652015-07-03 14:18:26 +0800482 ib->ptr[ib->length_dw++] = 0x00000008; /* len */
483 ib->ptr[ib->length_dw++] = 0x02000001; /* destroy cmd */
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400484
Chunming Zhou81287652015-07-03 14:18:26 +0800485 for (i = ib->length_dw; i < ib_size_dw; ++i)
486 ib->ptr[i] = 0x0;
Christian König9f2ade32016-02-03 16:50:56 +0100487
488 if (direct) {
Christian König336d1f52016-02-16 10:57:10 +0100489 r = amdgpu_ib_schedule(ring, 1, ib, NULL, &f);
Christian König9f2ade32016-02-03 16:50:56 +0100490 if (r)
491 goto err;
492
493 amdgpu_job_free(job);
494 } else {
Christian Königc5949892016-02-10 17:43:00 +0100495 r = amdgpu_job_submit(job, ring, &ring->adev->vce.entity,
Christian König9f2ade32016-02-03 16:50:56 +0100496 AMDGPU_FENCE_OWNER_UNDEFINED, &f);
497 if (r)
498 goto err;
499 }
500
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400501 if (fence)
Chunming Zhou17635522015-08-03 11:43:19 +0800502 *fence = fence_get(f);
Chunming Zhou281b4222015-08-12 12:58:31 +0800503 fence_put(f);
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800504 return 0;
Christian Königd71518b2016-02-01 12:20:25 +0100505
Chunming Zhou81287652015-07-03 14:18:26 +0800506err:
Christian Königd71518b2016-02-01 12:20:25 +0100507 amdgpu_job_free(job);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400508 return r;
509}
510
511/**
512 * amdgpu_vce_cs_reloc - command submission relocation
513 *
514 * @p: parser context
515 * @lo: address of lower dword
516 * @hi: address of higher dword
Christian Königf1689ec2015-06-11 20:56:18 +0200517 * @size: minimum size
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400518 *
519 * Patch relocation inside command stream with real buffer address
520 */
Christian Königf1689ec2015-06-11 20:56:18 +0200521static int amdgpu_vce_cs_reloc(struct amdgpu_cs_parser *p, uint32_t ib_idx,
Christian Königdc783302015-06-12 14:16:20 +0200522 int lo, int hi, unsigned size, uint32_t index)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400523{
524 struct amdgpu_bo_va_mapping *mapping;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400525 struct amdgpu_bo *bo;
526 uint64_t addr;
527
Christian Königdc783302015-06-12 14:16:20 +0200528 if (index == 0xffffffff)
529 index = 0;
530
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400531 addr = ((uint64_t)amdgpu_get_ib_value(p, ib_idx, lo)) |
532 ((uint64_t)amdgpu_get_ib_value(p, ib_idx, hi)) << 32;
Christian Königdc783302015-06-12 14:16:20 +0200533 addr += ((uint64_t)size) * ((uint64_t)index);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400534
535 mapping = amdgpu_cs_find_mapping(p, addr, &bo);
536 if (mapping == NULL) {
Christian Königdc783302015-06-12 14:16:20 +0200537 DRM_ERROR("Can't find BO for addr 0x%010Lx %d %d %d %d\n",
538 addr, lo, hi, size, index);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400539 return -EINVAL;
540 }
541
Christian Königf1689ec2015-06-11 20:56:18 +0200542 if ((addr + (uint64_t)size) >
543 ((uint64_t)mapping->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) {
544 DRM_ERROR("BO to small for addr 0x%010Lx %d %d\n",
545 addr, lo, hi);
546 return -EINVAL;
547 }
548
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400549 addr -= ((uint64_t)mapping->it.start) * AMDGPU_GPU_PAGE_SIZE;
550 addr += amdgpu_bo_gpu_offset(bo);
Christian Königdc783302015-06-12 14:16:20 +0200551 addr -= ((uint64_t)size) * ((uint64_t)index);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400552
Christian König7270f832016-01-31 11:00:41 +0100553 amdgpu_set_ib_value(p, ib_idx, lo, lower_32_bits(addr));
554 amdgpu_set_ib_value(p, ib_idx, hi, upper_32_bits(addr));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400555
556 return 0;
557}
558
559/**
Christian Königf1689ec2015-06-11 20:56:18 +0200560 * amdgpu_vce_validate_handle - validate stream handle
561 *
562 * @p: parser context
563 * @handle: handle to validate
Christian König2f4b9362015-06-11 21:33:55 +0200564 * @allocated: allocated a new handle?
Christian Königf1689ec2015-06-11 20:56:18 +0200565 *
566 * Validates the handle and return the found session index or -EINVAL
567 * we we don't have another free session index.
568 */
569static int amdgpu_vce_validate_handle(struct amdgpu_cs_parser *p,
Christian König2f4b9362015-06-11 21:33:55 +0200570 uint32_t handle, bool *allocated)
Christian Königf1689ec2015-06-11 20:56:18 +0200571{
572 unsigned i;
573
Christian König2f4b9362015-06-11 21:33:55 +0200574 *allocated = false;
575
Christian Königf1689ec2015-06-11 20:56:18 +0200576 /* validate the handle */
577 for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i) {
Christian König2f4b9362015-06-11 21:33:55 +0200578 if (atomic_read(&p->adev->vce.handles[i]) == handle) {
579 if (p->adev->vce.filp[i] != p->filp) {
580 DRM_ERROR("VCE handle collision detected!\n");
581 return -EINVAL;
582 }
Christian Königf1689ec2015-06-11 20:56:18 +0200583 return i;
Christian König2f4b9362015-06-11 21:33:55 +0200584 }
Christian Königf1689ec2015-06-11 20:56:18 +0200585 }
586
587 /* handle not found try to alloc a new one */
588 for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i) {
589 if (!atomic_cmpxchg(&p->adev->vce.handles[i], 0, handle)) {
590 p->adev->vce.filp[i] = p->filp;
591 p->adev->vce.img_size[i] = 0;
Christian König2f4b9362015-06-11 21:33:55 +0200592 *allocated = true;
Christian Königf1689ec2015-06-11 20:56:18 +0200593 return i;
594 }
595 }
596
597 DRM_ERROR("No more free VCE handles!\n");
598 return -EINVAL;
599}
600
601/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400602 * amdgpu_vce_cs_parse - parse and validate the command stream
603 *
604 * @p: parser context
605 *
606 */
607int amdgpu_vce_ring_parse_cs(struct amdgpu_cs_parser *p, uint32_t ib_idx)
608{
Christian König50838c82016-02-03 13:44:52 +0100609 struct amdgpu_ib *ib = &p->job->ibs[ib_idx];
Christian Königdc783302015-06-12 14:16:20 +0200610 unsigned fb_idx = 0, bs_idx = 0;
Christian Königf1689ec2015-06-11 20:56:18 +0200611 int session_idx = -1;
612 bool destroyed = false;
Christian König2f4b9362015-06-11 21:33:55 +0200613 bool created = false;
614 bool allocated = false;
Christian Königf1689ec2015-06-11 20:56:18 +0200615 uint32_t tmp, handle = 0;
616 uint32_t *size = &tmp;
Christian König2f4b9362015-06-11 21:33:55 +0200617 int i, r = 0, idx = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400618
619 amdgpu_vce_note_usage(p->adev);
620
621 while (idx < ib->length_dw) {
622 uint32_t len = amdgpu_get_ib_value(p, ib_idx, idx);
623 uint32_t cmd = amdgpu_get_ib_value(p, ib_idx, idx + 1);
624
625 if ((len < 8) || (len & 3)) {
626 DRM_ERROR("invalid VCE command length (%d)!\n", len);
Christian König2f4b9362015-06-11 21:33:55 +0200627 r = -EINVAL;
628 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400629 }
630
Christian Königf1689ec2015-06-11 20:56:18 +0200631 if (destroyed) {
632 DRM_ERROR("No other command allowed after destroy!\n");
Christian König2f4b9362015-06-11 21:33:55 +0200633 r = -EINVAL;
634 goto out;
Christian Königf1689ec2015-06-11 20:56:18 +0200635 }
636
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400637 switch (cmd) {
638 case 0x00000001: // session
639 handle = amdgpu_get_ib_value(p, ib_idx, idx + 2);
Christian König2f4b9362015-06-11 21:33:55 +0200640 session_idx = amdgpu_vce_validate_handle(p, handle,
641 &allocated);
Christian Königf1689ec2015-06-11 20:56:18 +0200642 if (session_idx < 0)
643 return session_idx;
644 size = &p->adev->vce.img_size[session_idx];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400645 break;
646
647 case 0x00000002: // task info
Christian Königdc783302015-06-12 14:16:20 +0200648 fb_idx = amdgpu_get_ib_value(p, ib_idx, idx + 6);
649 bs_idx = amdgpu_get_ib_value(p, ib_idx, idx + 7);
Christian Königf1689ec2015-06-11 20:56:18 +0200650 break;
651
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400652 case 0x01000001: // create
Christian König2f4b9362015-06-11 21:33:55 +0200653 created = true;
654 if (!allocated) {
655 DRM_ERROR("Handle already in use!\n");
656 r = -EINVAL;
657 goto out;
658 }
659
Christian Königf1689ec2015-06-11 20:56:18 +0200660 *size = amdgpu_get_ib_value(p, ib_idx, idx + 8) *
661 amdgpu_get_ib_value(p, ib_idx, idx + 10) *
662 8 * 3 / 2;
663 break;
664
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400665 case 0x04000001: // config extension
666 case 0x04000002: // pic control
667 case 0x04000005: // rate control
668 case 0x04000007: // motion estimation
669 case 0x04000008: // rdo
670 case 0x04000009: // vui
671 case 0x05000002: // auxiliary buffer
672 break;
673
674 case 0x03000001: // encode
Christian Königf1689ec2015-06-11 20:56:18 +0200675 r = amdgpu_vce_cs_reloc(p, ib_idx, idx + 10, idx + 9,
Christian Königdc783302015-06-12 14:16:20 +0200676 *size, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400677 if (r)
Christian König2f4b9362015-06-11 21:33:55 +0200678 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400679
Christian Königf1689ec2015-06-11 20:56:18 +0200680 r = amdgpu_vce_cs_reloc(p, ib_idx, idx + 12, idx + 11,
Christian Königdc783302015-06-12 14:16:20 +0200681 *size / 3, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400682 if (r)
Christian König2f4b9362015-06-11 21:33:55 +0200683 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400684 break;
685
686 case 0x02000001: // destroy
Christian Königf1689ec2015-06-11 20:56:18 +0200687 destroyed = true;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400688 break;
689
690 case 0x05000001: // context buffer
Christian Königf1689ec2015-06-11 20:56:18 +0200691 r = amdgpu_vce_cs_reloc(p, ib_idx, idx + 3, idx + 2,
Christian Königdc783302015-06-12 14:16:20 +0200692 *size * 2, 0);
Christian Königf1689ec2015-06-11 20:56:18 +0200693 if (r)
Christian König2f4b9362015-06-11 21:33:55 +0200694 goto out;
Christian Königf1689ec2015-06-11 20:56:18 +0200695 break;
696
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400697 case 0x05000004: // video bitstream buffer
Christian Königf1689ec2015-06-11 20:56:18 +0200698 tmp = amdgpu_get_ib_value(p, ib_idx, idx + 4);
699 r = amdgpu_vce_cs_reloc(p, ib_idx, idx + 3, idx + 2,
Christian Königdc783302015-06-12 14:16:20 +0200700 tmp, bs_idx);
Christian Königf1689ec2015-06-11 20:56:18 +0200701 if (r)
Christian König2f4b9362015-06-11 21:33:55 +0200702 goto out;
Christian Königf1689ec2015-06-11 20:56:18 +0200703 break;
704
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400705 case 0x05000005: // feedback buffer
Christian Königf1689ec2015-06-11 20:56:18 +0200706 r = amdgpu_vce_cs_reloc(p, ib_idx, idx + 3, idx + 2,
Christian Königdc783302015-06-12 14:16:20 +0200707 4096, fb_idx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400708 if (r)
Christian König2f4b9362015-06-11 21:33:55 +0200709 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400710 break;
711
712 default:
713 DRM_ERROR("invalid VCE command (0x%x)!\n", cmd);
Christian König2f4b9362015-06-11 21:33:55 +0200714 r = -EINVAL;
715 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400716 }
717
Christian Königf1689ec2015-06-11 20:56:18 +0200718 if (session_idx == -1) {
719 DRM_ERROR("no session command at start of IB\n");
Christian König2f4b9362015-06-11 21:33:55 +0200720 r = -EINVAL;
721 goto out;
Christian Königf1689ec2015-06-11 20:56:18 +0200722 }
723
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400724 idx += len / 4;
725 }
726
Christian König2f4b9362015-06-11 21:33:55 +0200727 if (allocated && !created) {
728 DRM_ERROR("New session without create command!\n");
729 r = -ENOENT;
730 }
731
732out:
733 if ((!r && destroyed) || (r && allocated)) {
734 /*
735 * IB contains a destroy msg or we have allocated an
736 * handle and got an error, anyway free the handle
737 */
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400738 for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i)
739 atomic_cmpxchg(&p->adev->vce.handles[i], handle, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400740 }
741
Christian König2f4b9362015-06-11 21:33:55 +0200742 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400743}
744
745/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400746 * amdgpu_vce_ring_emit_ib - execute indirect buffer
747 *
748 * @ring: engine to use
749 * @ib: the IB to execute
750 *
751 */
752void amdgpu_vce_ring_emit_ib(struct amdgpu_ring *ring, struct amdgpu_ib *ib)
753{
754 amdgpu_ring_write(ring, VCE_CMD_IB);
755 amdgpu_ring_write(ring, lower_32_bits(ib->gpu_addr));
756 amdgpu_ring_write(ring, upper_32_bits(ib->gpu_addr));
757 amdgpu_ring_write(ring, ib->length_dw);
758}
759
760/**
761 * amdgpu_vce_ring_emit_fence - add a fence command to the ring
762 *
763 * @ring: engine to use
764 * @fence: the fence
765 *
766 */
767void amdgpu_vce_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq,
Chunming Zhou890ee232015-06-01 14:35:03 +0800768 unsigned flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400769{
Chunming Zhou890ee232015-06-01 14:35:03 +0800770 WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400771
772 amdgpu_ring_write(ring, VCE_CMD_FENCE);
773 amdgpu_ring_write(ring, addr);
774 amdgpu_ring_write(ring, upper_32_bits(addr));
775 amdgpu_ring_write(ring, seq);
776 amdgpu_ring_write(ring, VCE_CMD_TRAP);
777 amdgpu_ring_write(ring, VCE_CMD_END);
778}
779
780/**
781 * amdgpu_vce_ring_test_ring - test if VCE ring is working
782 *
783 * @ring: the engine to test on
784 *
785 */
786int amdgpu_vce_ring_test_ring(struct amdgpu_ring *ring)
787{
788 struct amdgpu_device *adev = ring->adev;
789 uint32_t rptr = amdgpu_ring_get_rptr(ring);
790 unsigned i;
791 int r;
792
Christian Königa27de352016-01-21 11:28:53 +0100793 r = amdgpu_ring_alloc(ring, 16);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400794 if (r) {
795 DRM_ERROR("amdgpu: vce failed to lock ring %d (%d).\n",
796 ring->idx, r);
797 return r;
798 }
799 amdgpu_ring_write(ring, VCE_CMD_END);
Christian Königa27de352016-01-21 11:28:53 +0100800 amdgpu_ring_commit(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400801
802 for (i = 0; i < adev->usec_timeout; i++) {
803 if (amdgpu_ring_get_rptr(ring) != rptr)
804 break;
805 DRM_UDELAY(1);
806 }
807
808 if (i < adev->usec_timeout) {
809 DRM_INFO("ring test on %d succeeded in %d usecs\n",
810 ring->idx, i);
811 } else {
812 DRM_ERROR("amdgpu: ring %d test failed\n",
813 ring->idx);
814 r = -ETIMEDOUT;
815 }
816
817 return r;
818}
819
820/**
821 * amdgpu_vce_ring_test_ib - test if VCE IBs are working
822 *
823 * @ring: the engine to test on
824 *
825 */
826int amdgpu_vce_ring_test_ib(struct amdgpu_ring *ring)
827{
Chunming Zhoued40bfb2015-08-03 13:28:16 +0800828 struct fence *fence = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400829 int r;
830
Leo Liu898e50d2015-09-04 15:08:55 -0400831 /* skip vce ring1 ib test for now, since it's not reliable */
832 if (ring == &ring->adev->vce.ring[1])
833 return 0;
834
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400835 r = amdgpu_vce_get_create_msg(ring, 1, NULL);
836 if (r) {
837 DRM_ERROR("amdgpu: failed to get create msg (%d).\n", r);
838 goto error;
839 }
840
Christian König9f2ade32016-02-03 16:50:56 +0100841 r = amdgpu_vce_get_destroy_msg(ring, 1, true, &fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400842 if (r) {
843 DRM_ERROR("amdgpu: failed to get destroy ib (%d).\n", r);
844 goto error;
845 }
846
Chunming Zhoued40bfb2015-08-03 13:28:16 +0800847 r = fence_wait(fence, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400848 if (r) {
849 DRM_ERROR("amdgpu: fence wait failed (%d).\n", r);
850 } else {
851 DRM_INFO("ib test on ring %d succeeded\n", ring->idx);
852 }
853error:
Chunming Zhoued40bfb2015-08-03 13:28:16 +0800854 fence_put(fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400855 return r;
856}