blob: aeeeb72ebbc4052dc45d22935dea9f66b4870225 [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 */
Christian König182830a2016-07-01 17:43:57 +020039#define VCE_IDLE_TIMEOUT msecs_to_jiffies(1000)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040040
41/* Firmware Names */
42#ifdef CONFIG_DRM_AMDGPU_CIK
43#define FIRMWARE_BONAIRE "radeon/bonaire_vce.bin"
Christian Königedf600d2016-05-03 15:54:54 +020044#define FIRMWARE_KABINI "radeon/kabini_vce.bin"
45#define FIRMWARE_KAVERI "radeon/kaveri_vce.bin"
46#define FIRMWARE_HAWAII "radeon/hawaii_vce.bin"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040047#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"
Flora Cui2cc0c0b2016-03-14 18:33:29 -040053#define FIRMWARE_POLARIS10 "amdgpu/polaris10_vce.bin"
54#define FIRMWARE_POLARIS11 "amdgpu/polaris11_vce.bin"
Alex Deucherd38ceaf2015-04-20 16:55:21 -040055
56#ifdef CONFIG_DRM_AMDGPU_CIK
57MODULE_FIRMWARE(FIRMWARE_BONAIRE);
58MODULE_FIRMWARE(FIRMWARE_KABINI);
59MODULE_FIRMWARE(FIRMWARE_KAVERI);
60MODULE_FIRMWARE(FIRMWARE_HAWAII);
61MODULE_FIRMWARE(FIRMWARE_MULLINS);
62#endif
63MODULE_FIRMWARE(FIRMWARE_TONGA);
64MODULE_FIRMWARE(FIRMWARE_CARRIZO);
Alex Deucher188a9bc2015-07-27 14:24:14 -040065MODULE_FIRMWARE(FIRMWARE_FIJI);
Samuel Licfaba562015-10-08 16:27:55 -040066MODULE_FIRMWARE(FIRMWARE_STONEY);
Flora Cui2cc0c0b2016-03-14 18:33:29 -040067MODULE_FIRMWARE(FIRMWARE_POLARIS10);
68MODULE_FIRMWARE(FIRMWARE_POLARIS11);
Alex Deucherd38ceaf2015-04-20 16:55:21 -040069
70static void amdgpu_vce_idle_work_handler(struct work_struct *work);
71
72/**
73 * amdgpu_vce_init - allocate memory, load vce firmware
74 *
75 * @adev: amdgpu_device pointer
76 *
77 * First step to get VCE online, allocate memory and load the firmware
78 */
Leo Liue9822622015-05-06 14:31:27 -040079int amdgpu_vce_sw_init(struct amdgpu_device *adev, unsigned long size)
Alex Deucherd38ceaf2015-04-20 16:55:21 -040080{
Christian Königc5949892016-02-10 17:43:00 +010081 struct amdgpu_ring *ring;
82 struct amd_sched_rq *rq;
Alex Deucherd38ceaf2015-04-20 16:55:21 -040083 const char *fw_name;
84 const struct common_firmware_header *hdr;
85 unsigned ucode_version, version_major, version_minor, binary_id;
86 int i, r;
87
88 INIT_DELAYED_WORK(&adev->vce.idle_work, amdgpu_vce_idle_work_handler);
89
90 switch (adev->asic_type) {
91#ifdef CONFIG_DRM_AMDGPU_CIK
92 case CHIP_BONAIRE:
93 fw_name = FIRMWARE_BONAIRE;
94 break;
95 case CHIP_KAVERI:
96 fw_name = FIRMWARE_KAVERI;
97 break;
98 case CHIP_KABINI:
99 fw_name = FIRMWARE_KABINI;
100 break;
101 case CHIP_HAWAII:
102 fw_name = FIRMWARE_HAWAII;
103 break;
104 case CHIP_MULLINS:
105 fw_name = FIRMWARE_MULLINS;
106 break;
107#endif
108 case CHIP_TONGA:
109 fw_name = FIRMWARE_TONGA;
110 break;
111 case CHIP_CARRIZO:
112 fw_name = FIRMWARE_CARRIZO;
113 break;
Alex Deucher188a9bc2015-07-27 14:24:14 -0400114 case CHIP_FIJI:
115 fw_name = FIRMWARE_FIJI;
116 break;
Samuel Licfaba562015-10-08 16:27:55 -0400117 case CHIP_STONEY:
118 fw_name = FIRMWARE_STONEY;
119 break;
Flora Cui2cc0c0b2016-03-14 18:33:29 -0400120 case CHIP_POLARIS10:
121 fw_name = FIRMWARE_POLARIS10;
Sonny Jiang1b4eeea2016-03-11 14:33:40 -0500122 break;
Flora Cui2cc0c0b2016-03-14 18:33:29 -0400123 case CHIP_POLARIS11:
124 fw_name = FIRMWARE_POLARIS11;
Sonny Jiang1b4eeea2016-03-11 14:33:40 -0500125 break;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400126
127 default:
128 return -EINVAL;
129 }
130
131 r = request_firmware(&adev->vce.fw, fw_name, adev->dev);
132 if (r) {
133 dev_err(adev->dev, "amdgpu_vce: Can't load firmware \"%s\"\n",
134 fw_name);
135 return r;
136 }
137
138 r = amdgpu_ucode_validate(adev->vce.fw);
139 if (r) {
140 dev_err(adev->dev, "amdgpu_vce: Can't validate firmware \"%s\"\n",
141 fw_name);
142 release_firmware(adev->vce.fw);
143 adev->vce.fw = NULL;
144 return r;
145 }
146
147 hdr = (const struct common_firmware_header *)adev->vce.fw->data;
148
149 ucode_version = le32_to_cpu(hdr->ucode_version);
150 version_major = (ucode_version >> 20) & 0xfff;
151 version_minor = (ucode_version >> 8) & 0xfff;
152 binary_id = ucode_version & 0xff;
153 DRM_INFO("Found VCE firmware Version: %hhd.%hhd Binary ID: %hhd\n",
154 version_major, version_minor, binary_id);
155 adev->vce.fw_version = ((version_major << 24) | (version_minor << 16) |
156 (binary_id << 8));
157
158 /* allocate firmware, stack and heap BO */
159
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400160 r = amdgpu_bo_create(adev, size, PAGE_SIZE, true,
Alex Deucher857d9132015-08-27 00:14:16 -0400161 AMDGPU_GEM_DOMAIN_VRAM,
162 AMDGPU_GEM_CREATE_CPU_ACCESS_REQUIRED,
Christian König72d76682015-09-03 17:34:59 +0200163 NULL, NULL, &adev->vce.vcpu_bo);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400164 if (r) {
165 dev_err(adev->dev, "(%d) failed to allocate VCE bo\n", r);
166 return r;
167 }
168
169 r = amdgpu_bo_reserve(adev->vce.vcpu_bo, false);
170 if (r) {
171 amdgpu_bo_unref(&adev->vce.vcpu_bo);
172 dev_err(adev->dev, "(%d) failed to reserve VCE bo\n", r);
173 return r;
174 }
175
176 r = amdgpu_bo_pin(adev->vce.vcpu_bo, AMDGPU_GEM_DOMAIN_VRAM,
177 &adev->vce.gpu_addr);
178 amdgpu_bo_unreserve(adev->vce.vcpu_bo);
179 if (r) {
180 amdgpu_bo_unref(&adev->vce.vcpu_bo);
181 dev_err(adev->dev, "(%d) VCE bo pin failed\n", r);
182 return r;
183 }
184
Christian Königc5949892016-02-10 17:43:00 +0100185
186 ring = &adev->vce.ring[0];
187 rq = &ring->sched.sched_rq[AMD_SCHED_PRIORITY_NORMAL];
188 r = amd_sched_entity_init(&ring->sched, &adev->vce.entity,
189 rq, amdgpu_sched_jobs);
190 if (r != 0) {
191 DRM_ERROR("Failed setting up VCE run queue.\n");
192 return r;
193 }
194
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400195 for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i) {
196 atomic_set(&adev->vce.handles[i], 0);
197 adev->vce.filp[i] = NULL;
198 }
199
200 return 0;
201}
202
203/**
204 * amdgpu_vce_fini - free memory
205 *
206 * @adev: amdgpu_device pointer
207 *
208 * Last step on VCE teardown, free firmware memory
209 */
210int amdgpu_vce_sw_fini(struct amdgpu_device *adev)
211{
212 if (adev->vce.vcpu_bo == NULL)
213 return 0;
214
Christian Königc5949892016-02-10 17:43:00 +0100215 amd_sched_entity_fini(&adev->vce.ring[0].sched, &adev->vce.entity);
216
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400217 amdgpu_bo_unref(&adev->vce.vcpu_bo);
218
219 amdgpu_ring_fini(&adev->vce.ring[0]);
220 amdgpu_ring_fini(&adev->vce.ring[1]);
221
222 release_firmware(adev->vce.fw);
223
224 return 0;
225}
226
227/**
228 * amdgpu_vce_suspend - unpin VCE fw memory
229 *
230 * @adev: amdgpu_device pointer
231 *
232 */
233int amdgpu_vce_suspend(struct amdgpu_device *adev)
234{
235 int i;
236
237 if (adev->vce.vcpu_bo == NULL)
238 return 0;
239
240 for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i)
241 if (atomic_read(&adev->vce.handles[i]))
242 break;
243
244 if (i == AMDGPU_MAX_VCE_HANDLES)
245 return 0;
246
Rex Zhu85cc88f2016-04-12 19:25:52 +0800247 cancel_delayed_work_sync(&adev->vce.idle_work);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400248 /* TODO: suspending running encoding sessions isn't supported */
249 return -EINVAL;
250}
251
252/**
253 * amdgpu_vce_resume - pin VCE fw memory
254 *
255 * @adev: amdgpu_device pointer
256 *
257 */
258int amdgpu_vce_resume(struct amdgpu_device *adev)
259{
260 void *cpu_addr;
261 const struct common_firmware_header *hdr;
262 unsigned offset;
263 int r;
264
265 if (adev->vce.vcpu_bo == NULL)
266 return -EINVAL;
267
268 r = amdgpu_bo_reserve(adev->vce.vcpu_bo, false);
269 if (r) {
270 dev_err(adev->dev, "(%d) failed to reserve VCE bo\n", r);
271 return r;
272 }
273
274 r = amdgpu_bo_kmap(adev->vce.vcpu_bo, &cpu_addr);
275 if (r) {
276 amdgpu_bo_unreserve(adev->vce.vcpu_bo);
277 dev_err(adev->dev, "(%d) VCE map failed\n", r);
278 return r;
279 }
280
281 hdr = (const struct common_firmware_header *)adev->vce.fw->data;
282 offset = le32_to_cpu(hdr->ucode_array_offset_bytes);
283 memcpy(cpu_addr, (adev->vce.fw->data) + offset,
284 (adev->vce.fw->size) - offset);
285
286 amdgpu_bo_kunmap(adev->vce.vcpu_bo);
287
288 amdgpu_bo_unreserve(adev->vce.vcpu_bo);
289
290 return 0;
291}
292
293/**
294 * amdgpu_vce_idle_work_handler - power off VCE
295 *
296 * @work: pointer to work structure
297 *
298 * power of VCE when it's not used any more
299 */
300static void amdgpu_vce_idle_work_handler(struct work_struct *work)
301{
302 struct amdgpu_device *adev =
303 container_of(work, struct amdgpu_device, vce.idle_work.work);
304
305 if ((amdgpu_fence_count_emitted(&adev->vce.ring[0]) == 0) &&
306 (amdgpu_fence_count_emitted(&adev->vce.ring[1]) == 0)) {
307 if (adev->pm.dpm_enabled) {
308 amdgpu_dpm_enable_vce(adev, false);
309 } else {
310 amdgpu_asic_set_vce_clocks(adev, 0, 0);
311 }
312 } else {
Christian König182830a2016-07-01 17:43:57 +0200313 schedule_delayed_work(&adev->vce.idle_work, VCE_IDLE_TIMEOUT);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400314 }
315}
316
317/**
318 * amdgpu_vce_note_usage - power up VCE
319 *
320 * @adev: amdgpu_device pointer
321 *
322 * Make sure VCE is powerd up when we want to use it
323 */
324static void amdgpu_vce_note_usage(struct amdgpu_device *adev)
325{
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400326 bool set_clocks = !cancel_delayed_work_sync(&adev->vce.idle_work);
Christian König182830a2016-07-01 17:43:57 +0200327
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400328 set_clocks &= schedule_delayed_work(&adev->vce.idle_work,
Christian König182830a2016-07-01 17:43:57 +0200329 VCE_IDLE_TIMEOUT);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400330
Christian König182830a2016-07-01 17:43:57 +0200331 if (set_clocks) {
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400332 if (adev->pm.dpm_enabled) {
333 amdgpu_dpm_enable_vce(adev, true);
334 } else {
335 amdgpu_asic_set_vce_clocks(adev, 53300, 40000);
336 }
337 }
338}
339
340/**
341 * amdgpu_vce_free_handles - free still open VCE handles
342 *
343 * @adev: amdgpu_device pointer
344 * @filp: drm file pointer
345 *
346 * Close all VCE handles still open by this file pointer
347 */
348void amdgpu_vce_free_handles(struct amdgpu_device *adev, struct drm_file *filp)
349{
350 struct amdgpu_ring *ring = &adev->vce.ring[0];
351 int i, r;
352 for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i) {
353 uint32_t handle = atomic_read(&adev->vce.handles[i]);
Christian König182830a2016-07-01 17:43:57 +0200354
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400355 if (!handle || adev->vce.filp[i] != filp)
356 continue;
357
358 amdgpu_vce_note_usage(adev);
359
Christian König9f2ade32016-02-03 16:50:56 +0100360 r = amdgpu_vce_get_destroy_msg(ring, handle, false, NULL);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400361 if (r)
362 DRM_ERROR("Error destroying VCE handle (%d)!\n", r);
363
364 adev->vce.filp[i] = NULL;
365 atomic_set(&adev->vce.handles[i], 0);
366 }
367}
368
369/**
370 * amdgpu_vce_get_create_msg - generate a VCE create msg
371 *
372 * @adev: amdgpu_device pointer
373 * @ring: ring we should submit the msg to
374 * @handle: VCE session handle to use
375 * @fence: optional fence to return
376 *
377 * Open up a stream for HW test
378 */
379int amdgpu_vce_get_create_msg(struct amdgpu_ring *ring, uint32_t handle,
Chunming Zhoued40bfb2015-08-03 13:28:16 +0800380 struct fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400381{
382 const unsigned ib_size_dw = 1024;
Christian Königd71518b2016-02-01 12:20:25 +0100383 struct amdgpu_job *job;
384 struct amdgpu_ib *ib;
Chunming Zhou17635522015-08-03 11:43:19 +0800385 struct fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400386 uint64_t dummy;
387 int i, r;
388
Christian Königd71518b2016-02-01 12:20:25 +0100389 r = amdgpu_job_alloc_with_ib(ring->adev, ib_size_dw * 4, &job);
390 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400391 return r;
Christian Königd71518b2016-02-01 12:20:25 +0100392
393 ib = &job->ibs[0];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400394
Chunming Zhou81287652015-07-03 14:18:26 +0800395 dummy = ib->gpu_addr + 1024;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400396
397 /* stitch together an VCE create msg */
Chunming Zhou81287652015-07-03 14:18:26 +0800398 ib->length_dw = 0;
399 ib->ptr[ib->length_dw++] = 0x0000000c; /* len */
400 ib->ptr[ib->length_dw++] = 0x00000001; /* session cmd */
401 ib->ptr[ib->length_dw++] = handle;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400402
Leo Liud66f8e42015-11-18 11:57:33 -0500403 if ((ring->adev->vce.fw_version >> 24) >= 52)
404 ib->ptr[ib->length_dw++] = 0x00000040; /* len */
405 else
406 ib->ptr[ib->length_dw++] = 0x00000030; /* len */
Chunming Zhou81287652015-07-03 14:18:26 +0800407 ib->ptr[ib->length_dw++] = 0x01000001; /* create cmd */
408 ib->ptr[ib->length_dw++] = 0x00000000;
409 ib->ptr[ib->length_dw++] = 0x00000042;
410 ib->ptr[ib->length_dw++] = 0x0000000a;
411 ib->ptr[ib->length_dw++] = 0x00000001;
412 ib->ptr[ib->length_dw++] = 0x00000080;
413 ib->ptr[ib->length_dw++] = 0x00000060;
414 ib->ptr[ib->length_dw++] = 0x00000100;
415 ib->ptr[ib->length_dw++] = 0x00000100;
416 ib->ptr[ib->length_dw++] = 0x0000000c;
417 ib->ptr[ib->length_dw++] = 0x00000000;
Leo Liud66f8e42015-11-18 11:57:33 -0500418 if ((ring->adev->vce.fw_version >> 24) >= 52) {
419 ib->ptr[ib->length_dw++] = 0x00000000;
420 ib->ptr[ib->length_dw++] = 0x00000000;
421 ib->ptr[ib->length_dw++] = 0x00000000;
422 ib->ptr[ib->length_dw++] = 0x00000000;
423 }
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400424
Chunming Zhou81287652015-07-03 14:18:26 +0800425 ib->ptr[ib->length_dw++] = 0x00000014; /* len */
426 ib->ptr[ib->length_dw++] = 0x05000005; /* feedback buffer */
427 ib->ptr[ib->length_dw++] = upper_32_bits(dummy);
428 ib->ptr[ib->length_dw++] = dummy;
429 ib->ptr[ib->length_dw++] = 0x00000001;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400430
Chunming Zhou81287652015-07-03 14:18:26 +0800431 for (i = ib->length_dw; i < ib_size_dw; ++i)
432 ib->ptr[i] = 0x0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400433
Monk Liuc5637832016-04-19 20:11:32 +0800434 r = amdgpu_ib_schedule(ring, 1, ib, NULL, NULL, &f);
Christian König22a77cf2016-07-05 14:48:17 +0200435 job->fence = fence_get(f);
Chunming Zhou81287652015-07-03 14:18:26 +0800436 if (r)
437 goto err;
Christian König9f2ade32016-02-03 16:50:56 +0100438
439 amdgpu_job_free(job);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400440 if (fence)
Chunming Zhou17635522015-08-03 11:43:19 +0800441 *fence = fence_get(f);
Chunming Zhou281b4222015-08-12 12:58:31 +0800442 fence_put(f);
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800443 return 0;
Christian Königd71518b2016-02-01 12:20:25 +0100444
Chunming Zhou81287652015-07-03 14:18:26 +0800445err:
Christian Königd71518b2016-02-01 12:20:25 +0100446 amdgpu_job_free(job);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400447 return r;
448}
449
450/**
451 * amdgpu_vce_get_destroy_msg - generate a VCE destroy msg
452 *
453 * @adev: amdgpu_device pointer
454 * @ring: ring we should submit the msg to
455 * @handle: VCE session handle to use
456 * @fence: optional fence to return
457 *
458 * Close up a stream for HW test or if userspace failed to do so
459 */
460int amdgpu_vce_get_destroy_msg(struct amdgpu_ring *ring, uint32_t handle,
Christian König9f2ade32016-02-03 16:50:56 +0100461 bool direct, struct fence **fence)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400462{
463 const unsigned ib_size_dw = 1024;
Christian Königd71518b2016-02-01 12:20:25 +0100464 struct amdgpu_job *job;
465 struct amdgpu_ib *ib;
Chunming Zhou17635522015-08-03 11:43:19 +0800466 struct fence *f = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400467 uint64_t dummy;
468 int i, r;
469
Christian Königd71518b2016-02-01 12:20:25 +0100470 r = amdgpu_job_alloc_with_ib(ring->adev, ib_size_dw * 4, &job);
471 if (r)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400472 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400473
Christian Königd71518b2016-02-01 12:20:25 +0100474 ib = &job->ibs[0];
Chunming Zhou81287652015-07-03 14:18:26 +0800475 dummy = ib->gpu_addr + 1024;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400476
477 /* stitch together an VCE destroy msg */
Chunming Zhou81287652015-07-03 14:18:26 +0800478 ib->length_dw = 0;
479 ib->ptr[ib->length_dw++] = 0x0000000c; /* len */
480 ib->ptr[ib->length_dw++] = 0x00000001; /* session cmd */
481 ib->ptr[ib->length_dw++] = handle;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400482
Chunming Zhou81287652015-07-03 14:18:26 +0800483 ib->ptr[ib->length_dw++] = 0x00000014; /* len */
484 ib->ptr[ib->length_dw++] = 0x05000005; /* feedback buffer */
485 ib->ptr[ib->length_dw++] = upper_32_bits(dummy);
486 ib->ptr[ib->length_dw++] = dummy;
487 ib->ptr[ib->length_dw++] = 0x00000001;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400488
Chunming Zhou81287652015-07-03 14:18:26 +0800489 ib->ptr[ib->length_dw++] = 0x00000008; /* len */
490 ib->ptr[ib->length_dw++] = 0x02000001; /* destroy cmd */
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400491
Chunming Zhou81287652015-07-03 14:18:26 +0800492 for (i = ib->length_dw; i < ib_size_dw; ++i)
493 ib->ptr[i] = 0x0;
Christian König9f2ade32016-02-03 16:50:56 +0100494
495 if (direct) {
Monk Liuc5637832016-04-19 20:11:32 +0800496 r = amdgpu_ib_schedule(ring, 1, ib, NULL, NULL, &f);
Christian König22a77cf2016-07-05 14:48:17 +0200497 job->fence = fence_get(f);
Christian König9f2ade32016-02-03 16:50:56 +0100498 if (r)
499 goto err;
500
501 amdgpu_job_free(job);
502 } else {
Christian Königc5949892016-02-10 17:43:00 +0100503 r = amdgpu_job_submit(job, ring, &ring->adev->vce.entity,
Christian König9f2ade32016-02-03 16:50:56 +0100504 AMDGPU_FENCE_OWNER_UNDEFINED, &f);
505 if (r)
506 goto err;
507 }
508
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400509 if (fence)
Chunming Zhou17635522015-08-03 11:43:19 +0800510 *fence = fence_get(f);
Chunming Zhou281b4222015-08-12 12:58:31 +0800511 fence_put(f);
Chunming Zhoucadf97b2016-01-15 11:25:00 +0800512 return 0;
Christian Königd71518b2016-02-01 12:20:25 +0100513
Chunming Zhou81287652015-07-03 14:18:26 +0800514err:
Christian Königd71518b2016-02-01 12:20:25 +0100515 amdgpu_job_free(job);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400516 return r;
517}
518
519/**
520 * amdgpu_vce_cs_reloc - command submission relocation
521 *
522 * @p: parser context
523 * @lo: address of lower dword
524 * @hi: address of higher dword
Christian Königf1689ec2015-06-11 20:56:18 +0200525 * @size: minimum size
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400526 *
527 * Patch relocation inside command stream with real buffer address
528 */
Christian Königf1689ec2015-06-11 20:56:18 +0200529static int amdgpu_vce_cs_reloc(struct amdgpu_cs_parser *p, uint32_t ib_idx,
Christian Königdc783302015-06-12 14:16:20 +0200530 int lo, int hi, unsigned size, uint32_t index)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400531{
532 struct amdgpu_bo_va_mapping *mapping;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400533 struct amdgpu_bo *bo;
534 uint64_t addr;
535
Christian Königdc783302015-06-12 14:16:20 +0200536 if (index == 0xffffffff)
537 index = 0;
538
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400539 addr = ((uint64_t)amdgpu_get_ib_value(p, ib_idx, lo)) |
540 ((uint64_t)amdgpu_get_ib_value(p, ib_idx, hi)) << 32;
Christian Königdc783302015-06-12 14:16:20 +0200541 addr += ((uint64_t)size) * ((uint64_t)index);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400542
543 mapping = amdgpu_cs_find_mapping(p, addr, &bo);
544 if (mapping == NULL) {
Christian Königdc783302015-06-12 14:16:20 +0200545 DRM_ERROR("Can't find BO for addr 0x%010Lx %d %d %d %d\n",
546 addr, lo, hi, size, index);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400547 return -EINVAL;
548 }
549
Christian Königf1689ec2015-06-11 20:56:18 +0200550 if ((addr + (uint64_t)size) >
551 ((uint64_t)mapping->it.last + 1) * AMDGPU_GPU_PAGE_SIZE) {
552 DRM_ERROR("BO to small for addr 0x%010Lx %d %d\n",
553 addr, lo, hi);
554 return -EINVAL;
555 }
556
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400557 addr -= ((uint64_t)mapping->it.start) * AMDGPU_GPU_PAGE_SIZE;
558 addr += amdgpu_bo_gpu_offset(bo);
Christian Königdc783302015-06-12 14:16:20 +0200559 addr -= ((uint64_t)size) * ((uint64_t)index);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400560
Christian König7270f832016-01-31 11:00:41 +0100561 amdgpu_set_ib_value(p, ib_idx, lo, lower_32_bits(addr));
562 amdgpu_set_ib_value(p, ib_idx, hi, upper_32_bits(addr));
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400563
564 return 0;
565}
566
567/**
Christian Königf1689ec2015-06-11 20:56:18 +0200568 * amdgpu_vce_validate_handle - validate stream handle
569 *
570 * @p: parser context
571 * @handle: handle to validate
Christian König2f4b9362015-06-11 21:33:55 +0200572 * @allocated: allocated a new handle?
Christian Königf1689ec2015-06-11 20:56:18 +0200573 *
574 * Validates the handle and return the found session index or -EINVAL
575 * we we don't have another free session index.
576 */
577static int amdgpu_vce_validate_handle(struct amdgpu_cs_parser *p,
Christian Könige5223212016-07-01 22:19:25 +0200578 uint32_t handle, uint32_t *allocated)
Christian Königf1689ec2015-06-11 20:56:18 +0200579{
580 unsigned i;
581
582 /* validate the handle */
583 for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i) {
Christian König2f4b9362015-06-11 21:33:55 +0200584 if (atomic_read(&p->adev->vce.handles[i]) == handle) {
585 if (p->adev->vce.filp[i] != p->filp) {
586 DRM_ERROR("VCE handle collision detected!\n");
587 return -EINVAL;
588 }
Christian Königf1689ec2015-06-11 20:56:18 +0200589 return i;
Christian König2f4b9362015-06-11 21:33:55 +0200590 }
Christian Königf1689ec2015-06-11 20:56:18 +0200591 }
592
593 /* handle not found try to alloc a new one */
594 for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i) {
595 if (!atomic_cmpxchg(&p->adev->vce.handles[i], 0, handle)) {
596 p->adev->vce.filp[i] = p->filp;
597 p->adev->vce.img_size[i] = 0;
Christian Könige5223212016-07-01 22:19:25 +0200598 *allocated |= 1 << i;
Christian Königf1689ec2015-06-11 20:56:18 +0200599 return i;
600 }
601 }
602
603 DRM_ERROR("No more free VCE handles!\n");
604 return -EINVAL;
605}
606
607/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400608 * amdgpu_vce_cs_parse - parse and validate the command stream
609 *
610 * @p: parser context
611 *
612 */
613int amdgpu_vce_ring_parse_cs(struct amdgpu_cs_parser *p, uint32_t ib_idx)
614{
Christian König50838c82016-02-03 13:44:52 +0100615 struct amdgpu_ib *ib = &p->job->ibs[ib_idx];
Christian Königdc783302015-06-12 14:16:20 +0200616 unsigned fb_idx = 0, bs_idx = 0;
Christian Königf1689ec2015-06-11 20:56:18 +0200617 int session_idx = -1;
Christian Könige5223212016-07-01 22:19:25 +0200618 uint32_t destroyed = 0;
619 uint32_t created = 0;
620 uint32_t allocated = 0;
Christian Königf1689ec2015-06-11 20:56:18 +0200621 uint32_t tmp, handle = 0;
622 uint32_t *size = &tmp;
Christian König2f4b9362015-06-11 21:33:55 +0200623 int i, r = 0, idx = 0;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400624
625 amdgpu_vce_note_usage(p->adev);
626
627 while (idx < ib->length_dw) {
628 uint32_t len = amdgpu_get_ib_value(p, ib_idx, idx);
629 uint32_t cmd = amdgpu_get_ib_value(p, ib_idx, idx + 1);
630
631 if ((len < 8) || (len & 3)) {
632 DRM_ERROR("invalid VCE command length (%d)!\n", len);
Christian König2f4b9362015-06-11 21:33:55 +0200633 r = -EINVAL;
634 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400635 }
636
637 switch (cmd) {
Christian König182830a2016-07-01 17:43:57 +0200638 case 0x00000001: /* session */
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400639 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önige5223212016-07-01 22:19:25 +0200642 if (session_idx < 0) {
643 r = session_idx;
644 goto out;
645 }
Christian Königf1689ec2015-06-11 20:56:18 +0200646 size = &p->adev->vce.img_size[session_idx];
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400647 break;
648
Christian König182830a2016-07-01 17:43:57 +0200649 case 0x00000002: /* task info */
Christian Königdc783302015-06-12 14:16:20 +0200650 fb_idx = amdgpu_get_ib_value(p, ib_idx, idx + 6);
651 bs_idx = amdgpu_get_ib_value(p, ib_idx, idx + 7);
Christian Königf1689ec2015-06-11 20:56:18 +0200652 break;
653
Christian König182830a2016-07-01 17:43:57 +0200654 case 0x01000001: /* create */
Christian Könige5223212016-07-01 22:19:25 +0200655 created |= 1 << session_idx;
656 if (destroyed & (1 << session_idx)) {
657 destroyed &= ~(1 << session_idx);
658 allocated |= 1 << session_idx;
659
660 } else if (!(allocated & (1 << session_idx))) {
Christian König2f4b9362015-06-11 21:33:55 +0200661 DRM_ERROR("Handle already in use!\n");
662 r = -EINVAL;
663 goto out;
664 }
665
Christian Königf1689ec2015-06-11 20:56:18 +0200666 *size = amdgpu_get_ib_value(p, ib_idx, idx + 8) *
667 amdgpu_get_ib_value(p, ib_idx, idx + 10) *
668 8 * 3 / 2;
669 break;
670
Christian König182830a2016-07-01 17:43:57 +0200671 case 0x04000001: /* config extension */
672 case 0x04000002: /* pic control */
673 case 0x04000005: /* rate control */
674 case 0x04000007: /* motion estimation */
675 case 0x04000008: /* rdo */
676 case 0x04000009: /* vui */
677 case 0x05000002: /* auxiliary buffer */
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400678 break;
679
Christian König182830a2016-07-01 17:43:57 +0200680 case 0x03000001: /* encode */
Christian Königf1689ec2015-06-11 20:56:18 +0200681 r = amdgpu_vce_cs_reloc(p, ib_idx, idx + 10, idx + 9,
Christian Königdc783302015-06-12 14:16:20 +0200682 *size, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400683 if (r)
Christian König2f4b9362015-06-11 21:33:55 +0200684 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400685
Christian Königf1689ec2015-06-11 20:56:18 +0200686 r = amdgpu_vce_cs_reloc(p, ib_idx, idx + 12, idx + 11,
Christian Königdc783302015-06-12 14:16:20 +0200687 *size / 3, 0);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400688 if (r)
Christian König2f4b9362015-06-11 21:33:55 +0200689 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400690 break;
691
Christian König182830a2016-07-01 17:43:57 +0200692 case 0x02000001: /* destroy */
Christian Könige5223212016-07-01 22:19:25 +0200693 destroyed |= 1 << session_idx;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400694 break;
695
Christian König182830a2016-07-01 17:43:57 +0200696 case 0x05000001: /* context buffer */
Christian Königf1689ec2015-06-11 20:56:18 +0200697 r = amdgpu_vce_cs_reloc(p, ib_idx, idx + 3, idx + 2,
Christian Königdc783302015-06-12 14:16:20 +0200698 *size * 2, 0);
Christian Königf1689ec2015-06-11 20:56:18 +0200699 if (r)
Christian König2f4b9362015-06-11 21:33:55 +0200700 goto out;
Christian Königf1689ec2015-06-11 20:56:18 +0200701 break;
702
Christian König182830a2016-07-01 17:43:57 +0200703 case 0x05000004: /* video bitstream buffer */
Christian Königf1689ec2015-06-11 20:56:18 +0200704 tmp = amdgpu_get_ib_value(p, ib_idx, idx + 4);
705 r = amdgpu_vce_cs_reloc(p, ib_idx, idx + 3, idx + 2,
Christian Königdc783302015-06-12 14:16:20 +0200706 tmp, bs_idx);
Christian Königf1689ec2015-06-11 20:56:18 +0200707 if (r)
Christian König2f4b9362015-06-11 21:33:55 +0200708 goto out;
Christian Königf1689ec2015-06-11 20:56:18 +0200709 break;
710
Christian König182830a2016-07-01 17:43:57 +0200711 case 0x05000005: /* feedback buffer */
Christian Königf1689ec2015-06-11 20:56:18 +0200712 r = amdgpu_vce_cs_reloc(p, ib_idx, idx + 3, idx + 2,
Christian Königdc783302015-06-12 14:16:20 +0200713 4096, fb_idx);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400714 if (r)
Christian König2f4b9362015-06-11 21:33:55 +0200715 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400716 break;
717
718 default:
719 DRM_ERROR("invalid VCE command (0x%x)!\n", cmd);
Christian König2f4b9362015-06-11 21:33:55 +0200720 r = -EINVAL;
721 goto out;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400722 }
723
Christian Königf1689ec2015-06-11 20:56:18 +0200724 if (session_idx == -1) {
725 DRM_ERROR("no session command at start of IB\n");
Christian König2f4b9362015-06-11 21:33:55 +0200726 r = -EINVAL;
727 goto out;
Christian Königf1689ec2015-06-11 20:56:18 +0200728 }
729
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400730 idx += len / 4;
731 }
732
Christian Könige5223212016-07-01 22:19:25 +0200733 if (allocated & ~created) {
Christian König2f4b9362015-06-11 21:33:55 +0200734 DRM_ERROR("New session without create command!\n");
735 r = -ENOENT;
736 }
737
738out:
Christian Könige5223212016-07-01 22:19:25 +0200739 if (!r) {
740 /* No error, free all destroyed handle slots */
741 tmp = destroyed;
742 } else {
743 /* Error during parsing, free all allocated handle slots */
744 tmp = allocated;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400745 }
746
Christian Könige5223212016-07-01 22:19:25 +0200747 for (i = 0; i < AMDGPU_MAX_VCE_HANDLES; ++i)
748 if (tmp & (1 << i))
749 atomic_set(&p->adev->vce.handles[i], 0);
750
Christian König2f4b9362015-06-11 21:33:55 +0200751 return r;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400752}
753
754/**
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400755 * amdgpu_vce_ring_emit_ib - execute indirect buffer
756 *
757 * @ring: engine to use
758 * @ib: the IB to execute
759 *
760 */
Christian Königd88bf582016-05-06 17:50:03 +0200761void amdgpu_vce_ring_emit_ib(struct amdgpu_ring *ring, struct amdgpu_ib *ib,
762 unsigned vm_id, bool ctx_switch)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400763{
764 amdgpu_ring_write(ring, VCE_CMD_IB);
765 amdgpu_ring_write(ring, lower_32_bits(ib->gpu_addr));
766 amdgpu_ring_write(ring, upper_32_bits(ib->gpu_addr));
767 amdgpu_ring_write(ring, ib->length_dw);
768}
769
770/**
771 * amdgpu_vce_ring_emit_fence - add a fence command to the ring
772 *
773 * @ring: engine to use
774 * @fence: the fence
775 *
776 */
777void amdgpu_vce_ring_emit_fence(struct amdgpu_ring *ring, u64 addr, u64 seq,
Chunming Zhou890ee232015-06-01 14:35:03 +0800778 unsigned flags)
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400779{
Chunming Zhou890ee232015-06-01 14:35:03 +0800780 WARN_ON(flags & AMDGPU_FENCE_FLAG_64BIT);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400781
782 amdgpu_ring_write(ring, VCE_CMD_FENCE);
783 amdgpu_ring_write(ring, addr);
784 amdgpu_ring_write(ring, upper_32_bits(addr));
785 amdgpu_ring_write(ring, seq);
786 amdgpu_ring_write(ring, VCE_CMD_TRAP);
787 amdgpu_ring_write(ring, VCE_CMD_END);
788}
789
790/**
791 * amdgpu_vce_ring_test_ring - test if VCE ring is working
792 *
793 * @ring: the engine to test on
794 *
795 */
796int amdgpu_vce_ring_test_ring(struct amdgpu_ring *ring)
797{
798 struct amdgpu_device *adev = ring->adev;
799 uint32_t rptr = amdgpu_ring_get_rptr(ring);
800 unsigned i;
801 int r;
802
Christian Königa27de352016-01-21 11:28:53 +0100803 r = amdgpu_ring_alloc(ring, 16);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400804 if (r) {
805 DRM_ERROR("amdgpu: vce failed to lock ring %d (%d).\n",
806 ring->idx, r);
807 return r;
808 }
809 amdgpu_ring_write(ring, VCE_CMD_END);
Christian Königa27de352016-01-21 11:28:53 +0100810 amdgpu_ring_commit(ring);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400811
812 for (i = 0; i < adev->usec_timeout; i++) {
813 if (amdgpu_ring_get_rptr(ring) != rptr)
814 break;
815 DRM_UDELAY(1);
816 }
817
818 if (i < adev->usec_timeout) {
819 DRM_INFO("ring test on %d succeeded in %d usecs\n",
820 ring->idx, i);
821 } else {
822 DRM_ERROR("amdgpu: ring %d test failed\n",
823 ring->idx);
824 r = -ETIMEDOUT;
825 }
826
827 return r;
828}
829
830/**
831 * amdgpu_vce_ring_test_ib - test if VCE IBs are working
832 *
833 * @ring: the engine to test on
834 *
835 */
836int amdgpu_vce_ring_test_ib(struct amdgpu_ring *ring)
837{
Chunming Zhoued40bfb2015-08-03 13:28:16 +0800838 struct fence *fence = NULL;
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400839 int r;
840
Leo Liu898e50d2015-09-04 15:08:55 -0400841 /* skip vce ring1 ib test for now, since it's not reliable */
842 if (ring == &ring->adev->vce.ring[1])
843 return 0;
844
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400845 r = amdgpu_vce_get_create_msg(ring, 1, NULL);
846 if (r) {
847 DRM_ERROR("amdgpu: failed to get create msg (%d).\n", r);
848 goto error;
849 }
850
Christian König9f2ade32016-02-03 16:50:56 +0100851 r = amdgpu_vce_get_destroy_msg(ring, 1, true, &fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400852 if (r) {
853 DRM_ERROR("amdgpu: failed to get destroy ib (%d).\n", r);
854 goto error;
855 }
856
Chunming Zhoued40bfb2015-08-03 13:28:16 +0800857 r = fence_wait(fence, false);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400858 if (r) {
859 DRM_ERROR("amdgpu: fence wait failed (%d).\n", r);
860 } else {
861 DRM_INFO("ib test on ring %d succeeded\n", ring->idx);
862 }
863error:
Chunming Zhoued40bfb2015-08-03 13:28:16 +0800864 fence_put(fence);
Alex Deucherd38ceaf2015-04-20 16:55:21 -0400865 return r;
866}