blob: 9dc7646d49edd29888729ccbf42d2a9d248048bd [file] [log] [blame]
Eric Anholtd5b1a782015-11-30 12:13:37 -08001/*
2 * Copyright © 2014 Broadcom
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 */
23
24#include <linux/module.h>
25#include <linux/platform_device.h>
Eric Anholt001bdb52016-02-05 17:41:49 -080026#include <linux/pm_runtime.h>
Eric Anholtd5b1a782015-11-30 12:13:37 -080027#include <linux/device.h>
28#include <linux/io.h>
Ingo Molnar174cd4b2017-02-02 19:15:33 +010029#include <linux/sched/signal.h>
Eric Anholtd5b1a782015-11-30 12:13:37 -080030
31#include "uapi/drm/vc4_drm.h"
32#include "vc4_drv.h"
33#include "vc4_regs.h"
34#include "vc4_trace.h"
35
36static void
37vc4_queue_hangcheck(struct drm_device *dev)
38{
39 struct vc4_dev *vc4 = to_vc4_dev(dev);
40
41 mod_timer(&vc4->hangcheck.timer,
42 round_jiffies_up(jiffies + msecs_to_jiffies(100)));
43}
44
Eric Anholt21461362015-10-30 10:09:02 -070045struct vc4_hang_state {
46 struct drm_vc4_get_hang_state user_state;
47
48 u32 bo_count;
49 struct drm_gem_object **bo;
50};
51
52static void
53vc4_free_hang_state(struct drm_device *dev, struct vc4_hang_state *state)
54{
55 unsigned int i;
56
Eric Anholt21461362015-10-30 10:09:02 -070057 for (i = 0; i < state->user_state.bo_count; i++)
Daniel Vetterdb369722016-05-30 19:53:06 +020058 drm_gem_object_unreference_unlocked(state->bo[i]);
Eric Anholt21461362015-10-30 10:09:02 -070059
60 kfree(state);
61}
62
63int
64vc4_get_hang_state_ioctl(struct drm_device *dev, void *data,
65 struct drm_file *file_priv)
66{
67 struct drm_vc4_get_hang_state *get_state = data;
68 struct drm_vc4_get_hang_state_bo *bo_state;
69 struct vc4_hang_state *kernel_state;
70 struct drm_vc4_get_hang_state *state;
71 struct vc4_dev *vc4 = to_vc4_dev(dev);
72 unsigned long irqflags;
73 u32 i;
Dan Carpenter65c47772015-12-17 15:36:28 +030074 int ret = 0;
Eric Anholt21461362015-10-30 10:09:02 -070075
76 spin_lock_irqsave(&vc4->job_lock, irqflags);
77 kernel_state = vc4->hang_state;
78 if (!kernel_state) {
79 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
80 return -ENOENT;
81 }
82 state = &kernel_state->user_state;
83
84 /* If the user's array isn't big enough, just return the
85 * required array size.
86 */
87 if (get_state->bo_count < state->bo_count) {
88 get_state->bo_count = state->bo_count;
89 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
90 return 0;
91 }
92
93 vc4->hang_state = NULL;
94 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
95
96 /* Save the user's BO pointer, so we don't stomp it with the memcpy. */
97 state->bo = get_state->bo;
98 memcpy(get_state, state, sizeof(*state));
99
100 bo_state = kcalloc(state->bo_count, sizeof(*bo_state), GFP_KERNEL);
101 if (!bo_state) {
102 ret = -ENOMEM;
103 goto err_free;
104 }
105
106 for (i = 0; i < state->bo_count; i++) {
107 struct vc4_bo *vc4_bo = to_vc4_bo(kernel_state->bo[i]);
108 u32 handle;
109
110 ret = drm_gem_handle_create(file_priv, kernel_state->bo[i],
111 &handle);
112
113 if (ret) {
114 state->bo_count = i - 1;
115 goto err;
116 }
117 bo_state[i].handle = handle;
118 bo_state[i].paddr = vc4_bo->base.paddr;
119 bo_state[i].size = vc4_bo->base.base.size;
120 }
121
Dan Carpenter65c47772015-12-17 15:36:28 +0300122 if (copy_to_user((void __user *)(uintptr_t)get_state->bo,
123 bo_state,
124 state->bo_count * sizeof(*bo_state)))
125 ret = -EFAULT;
126
Eric Anholt21461362015-10-30 10:09:02 -0700127 kfree(bo_state);
128
129err_free:
130
131 vc4_free_hang_state(dev, kernel_state);
132
133err:
134 return ret;
135}
136
137static void
138vc4_save_hang_state(struct drm_device *dev)
139{
140 struct vc4_dev *vc4 = to_vc4_dev(dev);
141 struct drm_vc4_get_hang_state *state;
142 struct vc4_hang_state *kernel_state;
Varad Gautamca26d282016-02-17 19:08:21 +0530143 struct vc4_exec_info *exec[2];
Eric Anholt21461362015-10-30 10:09:02 -0700144 struct vc4_bo *bo;
145 unsigned long irqflags;
Varad Gautamca26d282016-02-17 19:08:21 +0530146 unsigned int i, j, unref_list_count, prev_idx;
Eric Anholt21461362015-10-30 10:09:02 -0700147
Dan Carpenter7e5082f2015-12-17 15:39:08 +0300148 kernel_state = kcalloc(1, sizeof(*kernel_state), GFP_KERNEL);
Eric Anholt21461362015-10-30 10:09:02 -0700149 if (!kernel_state)
150 return;
151
152 state = &kernel_state->user_state;
153
154 spin_lock_irqsave(&vc4->job_lock, irqflags);
Varad Gautamca26d282016-02-17 19:08:21 +0530155 exec[0] = vc4_first_bin_job(vc4);
156 exec[1] = vc4_first_render_job(vc4);
157 if (!exec[0] && !exec[1]) {
Eric Anholt21461362015-10-30 10:09:02 -0700158 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
159 return;
160 }
161
Varad Gautamca26d282016-02-17 19:08:21 +0530162 /* Get the bos from both binner and renderer into hang state. */
163 state->bo_count = 0;
164 for (i = 0; i < 2; i++) {
165 if (!exec[i])
166 continue;
Eric Anholt21461362015-10-30 10:09:02 -0700167
Varad Gautamca26d282016-02-17 19:08:21 +0530168 unref_list_count = 0;
169 list_for_each_entry(bo, &exec[i]->unref_list, unref_head)
170 unref_list_count++;
171 state->bo_count += exec[i]->bo_count + unref_list_count;
172 }
173
174 kernel_state->bo = kcalloc(state->bo_count,
175 sizeof(*kernel_state->bo), GFP_ATOMIC);
176
Eric Anholt21461362015-10-30 10:09:02 -0700177 if (!kernel_state->bo) {
178 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
179 return;
180 }
181
Varad Gautamca26d282016-02-17 19:08:21 +0530182 prev_idx = 0;
183 for (i = 0; i < 2; i++) {
184 if (!exec[i])
185 continue;
186
187 for (j = 0; j < exec[i]->bo_count; j++) {
188 drm_gem_object_reference(&exec[i]->bo[j]->base);
189 kernel_state->bo[j + prev_idx] = &exec[i]->bo[j]->base;
190 }
191
192 list_for_each_entry(bo, &exec[i]->unref_list, unref_head) {
193 drm_gem_object_reference(&bo->base.base);
194 kernel_state->bo[j + prev_idx] = &bo->base.base;
195 j++;
196 }
197 prev_idx = j + 1;
Eric Anholt21461362015-10-30 10:09:02 -0700198 }
199
Varad Gautamca26d282016-02-17 19:08:21 +0530200 if (exec[0])
201 state->start_bin = exec[0]->ct0ca;
202 if (exec[1])
203 state->start_render = exec[1]->ct1ca;
Eric Anholt21461362015-10-30 10:09:02 -0700204
205 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
206
207 state->ct0ca = V3D_READ(V3D_CTNCA(0));
208 state->ct0ea = V3D_READ(V3D_CTNEA(0));
209
210 state->ct1ca = V3D_READ(V3D_CTNCA(1));
211 state->ct1ea = V3D_READ(V3D_CTNEA(1));
212
213 state->ct0cs = V3D_READ(V3D_CTNCS(0));
214 state->ct1cs = V3D_READ(V3D_CTNCS(1));
215
216 state->ct0ra0 = V3D_READ(V3D_CT00RA0);
217 state->ct1ra0 = V3D_READ(V3D_CT01RA0);
218
219 state->bpca = V3D_READ(V3D_BPCA);
220 state->bpcs = V3D_READ(V3D_BPCS);
221 state->bpoa = V3D_READ(V3D_BPOA);
222 state->bpos = V3D_READ(V3D_BPOS);
223
224 state->vpmbase = V3D_READ(V3D_VPMBASE);
225
226 state->dbge = V3D_READ(V3D_DBGE);
227 state->fdbgo = V3D_READ(V3D_FDBGO);
228 state->fdbgb = V3D_READ(V3D_FDBGB);
229 state->fdbgr = V3D_READ(V3D_FDBGR);
230 state->fdbgs = V3D_READ(V3D_FDBGS);
231 state->errstat = V3D_READ(V3D_ERRSTAT);
232
233 spin_lock_irqsave(&vc4->job_lock, irqflags);
234 if (vc4->hang_state) {
235 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
236 vc4_free_hang_state(dev, kernel_state);
237 } else {
238 vc4->hang_state = kernel_state;
239 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
240 }
241}
242
Eric Anholtd5b1a782015-11-30 12:13:37 -0800243static void
244vc4_reset(struct drm_device *dev)
245{
246 struct vc4_dev *vc4 = to_vc4_dev(dev);
247
248 DRM_INFO("Resetting GPU.\n");
Eric Anholt36cb6252016-02-08 12:59:02 -0800249
250 mutex_lock(&vc4->power_lock);
251 if (vc4->power_refcount) {
252 /* Power the device off and back on the by dropping the
253 * reference on runtime PM.
254 */
255 pm_runtime_put_sync_suspend(&vc4->v3d->pdev->dev);
256 pm_runtime_get_sync(&vc4->v3d->pdev->dev);
257 }
258 mutex_unlock(&vc4->power_lock);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800259
260 vc4_irq_reset(dev);
261
262 /* Rearm the hangcheck -- another job might have been waiting
263 * for our hung one to get kicked off, and vc4_irq_reset()
264 * would have started it.
265 */
266 vc4_queue_hangcheck(dev);
267}
268
269static void
270vc4_reset_work(struct work_struct *work)
271{
272 struct vc4_dev *vc4 =
273 container_of(work, struct vc4_dev, hangcheck.reset_work);
274
Eric Anholt21461362015-10-30 10:09:02 -0700275 vc4_save_hang_state(vc4->dev);
276
Eric Anholtd5b1a782015-11-30 12:13:37 -0800277 vc4_reset(vc4->dev);
278}
279
280static void
281vc4_hangcheck_elapsed(unsigned long data)
282{
283 struct drm_device *dev = (struct drm_device *)data;
284 struct vc4_dev *vc4 = to_vc4_dev(dev);
285 uint32_t ct0ca, ct1ca;
Eric Anholtc4ce60d2016-02-08 11:19:14 -0800286 unsigned long irqflags;
Varad Gautamca26d282016-02-17 19:08:21 +0530287 struct vc4_exec_info *bin_exec, *render_exec;
Eric Anholtc4ce60d2016-02-08 11:19:14 -0800288
289 spin_lock_irqsave(&vc4->job_lock, irqflags);
Varad Gautamca26d282016-02-17 19:08:21 +0530290
291 bin_exec = vc4_first_bin_job(vc4);
292 render_exec = vc4_first_render_job(vc4);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800293
294 /* If idle, we can stop watching for hangs. */
Varad Gautamca26d282016-02-17 19:08:21 +0530295 if (!bin_exec && !render_exec) {
Eric Anholtc4ce60d2016-02-08 11:19:14 -0800296 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800297 return;
Eric Anholtc4ce60d2016-02-08 11:19:14 -0800298 }
Eric Anholtd5b1a782015-11-30 12:13:37 -0800299
300 ct0ca = V3D_READ(V3D_CTNCA(0));
301 ct1ca = V3D_READ(V3D_CTNCA(1));
302
303 /* If we've made any progress in execution, rearm the timer
304 * and wait.
305 */
Varad Gautamca26d282016-02-17 19:08:21 +0530306 if ((bin_exec && ct0ca != bin_exec->last_ct0ca) ||
307 (render_exec && ct1ca != render_exec->last_ct1ca)) {
308 if (bin_exec)
309 bin_exec->last_ct0ca = ct0ca;
310 if (render_exec)
311 render_exec->last_ct1ca = ct1ca;
Eric Anholtc4ce60d2016-02-08 11:19:14 -0800312 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800313 vc4_queue_hangcheck(dev);
314 return;
315 }
316
Eric Anholtc4ce60d2016-02-08 11:19:14 -0800317 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
318
Eric Anholtd5b1a782015-11-30 12:13:37 -0800319 /* We've gone too long with no progress, reset. This has to
320 * be done from a work struct, since resetting can sleep and
321 * this timer hook isn't allowed to.
322 */
323 schedule_work(&vc4->hangcheck.reset_work);
324}
325
326static void
327submit_cl(struct drm_device *dev, uint32_t thread, uint32_t start, uint32_t end)
328{
329 struct vc4_dev *vc4 = to_vc4_dev(dev);
330
331 /* Set the current and end address of the control list.
332 * Writing the end register is what starts the job.
333 */
334 V3D_WRITE(V3D_CTNCA(thread), start);
335 V3D_WRITE(V3D_CTNEA(thread), end);
336}
337
338int
339vc4_wait_for_seqno(struct drm_device *dev, uint64_t seqno, uint64_t timeout_ns,
340 bool interruptible)
341{
342 struct vc4_dev *vc4 = to_vc4_dev(dev);
343 int ret = 0;
344 unsigned long timeout_expire;
345 DEFINE_WAIT(wait);
346
347 if (vc4->finished_seqno >= seqno)
348 return 0;
349
350 if (timeout_ns == 0)
351 return -ETIME;
352
353 timeout_expire = jiffies + nsecs_to_jiffies(timeout_ns);
354
355 trace_vc4_wait_for_seqno_begin(dev, seqno, timeout_ns);
356 for (;;) {
357 prepare_to_wait(&vc4->job_wait_queue, &wait,
358 interruptible ? TASK_INTERRUPTIBLE :
359 TASK_UNINTERRUPTIBLE);
360
361 if (interruptible && signal_pending(current)) {
362 ret = -ERESTARTSYS;
363 break;
364 }
365
366 if (vc4->finished_seqno >= seqno)
367 break;
368
369 if (timeout_ns != ~0ull) {
370 if (time_after_eq(jiffies, timeout_expire)) {
371 ret = -ETIME;
372 break;
373 }
374 schedule_timeout(timeout_expire - jiffies);
375 } else {
376 schedule();
377 }
378 }
379
380 finish_wait(&vc4->job_wait_queue, &wait);
381 trace_vc4_wait_for_seqno_end(dev, seqno);
382
Eric Anholt13cf8902016-01-25 14:32:41 -0800383 return ret;
Eric Anholtd5b1a782015-11-30 12:13:37 -0800384}
385
386static void
387vc4_flush_caches(struct drm_device *dev)
388{
389 struct vc4_dev *vc4 = to_vc4_dev(dev);
390
391 /* Flush the GPU L2 caches. These caches sit on top of system
392 * L3 (the 128kb or so shared with the CPU), and are
393 * non-allocating in the L3.
394 */
395 V3D_WRITE(V3D_L2CACTL,
396 V3D_L2CACTL_L2CCLR);
397
398 V3D_WRITE(V3D_SLCACTL,
399 VC4_SET_FIELD(0xf, V3D_SLCACTL_T1CC) |
400 VC4_SET_FIELD(0xf, V3D_SLCACTL_T0CC) |
401 VC4_SET_FIELD(0xf, V3D_SLCACTL_UCC) |
402 VC4_SET_FIELD(0xf, V3D_SLCACTL_ICC));
403}
404
405/* Sets the registers for the next job to be actually be executed in
406 * the hardware.
407 *
408 * The job_lock should be held during this.
409 */
410void
Varad Gautamca26d282016-02-17 19:08:21 +0530411vc4_submit_next_bin_job(struct drm_device *dev)
Eric Anholtd5b1a782015-11-30 12:13:37 -0800412{
413 struct vc4_dev *vc4 = to_vc4_dev(dev);
Varad Gautamca26d282016-02-17 19:08:21 +0530414 struct vc4_exec_info *exec;
Eric Anholtd5b1a782015-11-30 12:13:37 -0800415
Varad Gautamca26d282016-02-17 19:08:21 +0530416again:
417 exec = vc4_first_bin_job(vc4);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800418 if (!exec)
419 return;
420
421 vc4_flush_caches(dev);
422
Varad Gautamca26d282016-02-17 19:08:21 +0530423 /* Either put the job in the binner if it uses the binner, or
424 * immediately move it to the to-be-rendered queue.
425 */
426 if (exec->ct0ca != exec->ct0ea) {
Eric Anholtd5b1a782015-11-30 12:13:37 -0800427 submit_cl(dev, 0, exec->ct0ca, exec->ct0ea);
Varad Gautamca26d282016-02-17 19:08:21 +0530428 } else {
429 vc4_move_job_to_render(dev, exec);
430 goto again;
431 }
432}
433
434void
435vc4_submit_next_render_job(struct drm_device *dev)
436{
437 struct vc4_dev *vc4 = to_vc4_dev(dev);
438 struct vc4_exec_info *exec = vc4_first_render_job(vc4);
439
440 if (!exec)
441 return;
442
Eric Anholtd5b1a782015-11-30 12:13:37 -0800443 submit_cl(dev, 1, exec->ct1ca, exec->ct1ea);
444}
445
Varad Gautamca26d282016-02-17 19:08:21 +0530446void
447vc4_move_job_to_render(struct drm_device *dev, struct vc4_exec_info *exec)
448{
449 struct vc4_dev *vc4 = to_vc4_dev(dev);
450 bool was_empty = list_empty(&vc4->render_job_list);
451
452 list_move_tail(&exec->head, &vc4->render_job_list);
453 if (was_empty)
454 vc4_submit_next_render_job(dev);
455}
456
Eric Anholtd5b1a782015-11-30 12:13:37 -0800457static void
458vc4_update_bo_seqnos(struct vc4_exec_info *exec, uint64_t seqno)
459{
460 struct vc4_bo *bo;
461 unsigned i;
462
463 for (i = 0; i < exec->bo_count; i++) {
464 bo = to_vc4_bo(&exec->bo[i]->base);
465 bo->seqno = seqno;
Eric Anholtcdec4d32017-04-12 12:12:02 -0700466
467 reservation_object_add_shared_fence(bo->resv, exec->fence);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800468 }
469
470 list_for_each_entry(bo, &exec->unref_list, unref_head) {
471 bo->seqno = seqno;
472 }
Eric Anholt7edabee2016-09-27 09:03:13 -0700473
474 for (i = 0; i < exec->rcl_write_bo_count; i++) {
475 bo = to_vc4_bo(&exec->rcl_write_bo[i]->base);
476 bo->write_seqno = seqno;
Eric Anholtcdec4d32017-04-12 12:12:02 -0700477
478 reservation_object_add_excl_fence(bo->resv, exec->fence);
Eric Anholt7edabee2016-09-27 09:03:13 -0700479 }
Eric Anholtd5b1a782015-11-30 12:13:37 -0800480}
481
Eric Anholtcdec4d32017-04-12 12:12:02 -0700482static void
483vc4_unlock_bo_reservations(struct drm_device *dev,
484 struct vc4_exec_info *exec,
485 struct ww_acquire_ctx *acquire_ctx)
486{
487 int i;
488
489 for (i = 0; i < exec->bo_count; i++) {
490 struct vc4_bo *bo = to_vc4_bo(&exec->bo[i]->base);
491
492 ww_mutex_unlock(&bo->resv->lock);
493 }
494
495 ww_acquire_fini(acquire_ctx);
496}
497
498/* Takes the reservation lock on all the BOs being referenced, so that
499 * at queue submit time we can update the reservations.
500 *
501 * We don't lock the RCL the tile alloc/state BOs, or overflow memory
502 * (all of which are on exec->unref_list). They're entirely private
503 * to vc4, so we don't attach dma-buf fences to them.
504 */
505static int
506vc4_lock_bo_reservations(struct drm_device *dev,
507 struct vc4_exec_info *exec,
508 struct ww_acquire_ctx *acquire_ctx)
509{
510 int contended_lock = -1;
511 int i, ret;
512 struct vc4_bo *bo;
513
514 ww_acquire_init(acquire_ctx, &reservation_ww_class);
515
516retry:
517 if (contended_lock != -1) {
518 bo = to_vc4_bo(&exec->bo[contended_lock]->base);
519 ret = ww_mutex_lock_slow_interruptible(&bo->resv->lock,
520 acquire_ctx);
521 if (ret) {
522 ww_acquire_done(acquire_ctx);
523 return ret;
524 }
525 }
526
527 for (i = 0; i < exec->bo_count; i++) {
528 if (i == contended_lock)
529 continue;
530
531 bo = to_vc4_bo(&exec->bo[i]->base);
532
533 ret = ww_mutex_lock_interruptible(&bo->resv->lock, acquire_ctx);
534 if (ret) {
535 int j;
536
537 for (j = 0; j < i; j++) {
538 bo = to_vc4_bo(&exec->bo[j]->base);
539 ww_mutex_unlock(&bo->resv->lock);
540 }
541
542 if (contended_lock != -1 && contended_lock >= i) {
543 bo = to_vc4_bo(&exec->bo[contended_lock]->base);
544
545 ww_mutex_unlock(&bo->resv->lock);
546 }
547
548 if (ret == -EDEADLK) {
549 contended_lock = i;
550 goto retry;
551 }
552
553 ww_acquire_done(acquire_ctx);
554 return ret;
555 }
556 }
557
558 ww_acquire_done(acquire_ctx);
559
560 /* Reserve space for our shared (read-only) fence references,
561 * before we commit the CL to the hardware.
562 */
563 for (i = 0; i < exec->bo_count; i++) {
564 bo = to_vc4_bo(&exec->bo[i]->base);
565
566 ret = reservation_object_reserve_shared(bo->resv);
567 if (ret) {
568 vc4_unlock_bo_reservations(dev, exec, acquire_ctx);
569 return ret;
570 }
571 }
572
573 return 0;
574}
575
Eric Anholtd5b1a782015-11-30 12:13:37 -0800576/* Queues a struct vc4_exec_info for execution. If no job is
577 * currently executing, then submits it.
578 *
579 * Unlike most GPUs, our hardware only handles one command list at a
580 * time. To queue multiple jobs at once, we'd need to edit the
581 * previous command list to have a jump to the new one at the end, and
582 * then bump the end address. That's a change for a later date,
583 * though.
584 */
Eric Anholtcdec4d32017-04-12 12:12:02 -0700585static int
586vc4_queue_submit(struct drm_device *dev, struct vc4_exec_info *exec,
587 struct ww_acquire_ctx *acquire_ctx)
Eric Anholtd5b1a782015-11-30 12:13:37 -0800588{
589 struct vc4_dev *vc4 = to_vc4_dev(dev);
590 uint64_t seqno;
591 unsigned long irqflags;
Eric Anholtcdec4d32017-04-12 12:12:02 -0700592 struct vc4_fence *fence;
593
594 fence = kzalloc(sizeof(*fence), GFP_KERNEL);
595 if (!fence)
596 return -ENOMEM;
597 fence->dev = dev;
Eric Anholtd5b1a782015-11-30 12:13:37 -0800598
599 spin_lock_irqsave(&vc4->job_lock, irqflags);
600
601 seqno = ++vc4->emit_seqno;
602 exec->seqno = seqno;
Eric Anholtcdec4d32017-04-12 12:12:02 -0700603
604 dma_fence_init(&fence->base, &vc4_fence_ops, &vc4->job_lock,
605 vc4->dma_fence_context, exec->seqno);
606 fence->seqno = exec->seqno;
607 exec->fence = &fence->base;
608
Eric Anholtd5b1a782015-11-30 12:13:37 -0800609 vc4_update_bo_seqnos(exec, seqno);
610
Eric Anholtcdec4d32017-04-12 12:12:02 -0700611 vc4_unlock_bo_reservations(dev, exec, acquire_ctx);
612
Varad Gautamca26d282016-02-17 19:08:21 +0530613 list_add_tail(&exec->head, &vc4->bin_job_list);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800614
615 /* If no job was executing, kick ours off. Otherwise, it'll
Varad Gautamca26d282016-02-17 19:08:21 +0530616 * get started when the previous job's flush done interrupt
Eric Anholtd5b1a782015-11-30 12:13:37 -0800617 * occurs.
618 */
Varad Gautamca26d282016-02-17 19:08:21 +0530619 if (vc4_first_bin_job(vc4) == exec) {
620 vc4_submit_next_bin_job(dev);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800621 vc4_queue_hangcheck(dev);
622 }
623
624 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
Eric Anholtcdec4d32017-04-12 12:12:02 -0700625
626 return 0;
Eric Anholtd5b1a782015-11-30 12:13:37 -0800627}
628
629/**
Eric Anholt72f793f2017-02-27 12:11:41 -0800630 * vc4_cl_lookup_bos() - Sets up exec->bo[] with the GEM objects
631 * referenced by the job.
632 * @dev: DRM device
633 * @file_priv: DRM file for this fd
634 * @exec: V3D job being set up
635 *
636 * The command validator needs to reference BOs by their index within
637 * the submitted job's BO list. This does the validation of the job's
638 * BO list and reference counting for the lifetime of the job.
639 *
640 * Note that this function doesn't need to unreference the BOs on
641 * failure, because that will happen at vc4_complete_exec() time.
Eric Anholtd5b1a782015-11-30 12:13:37 -0800642 */
643static int
644vc4_cl_lookup_bos(struct drm_device *dev,
645 struct drm_file *file_priv,
646 struct vc4_exec_info *exec)
647{
648 struct drm_vc4_submit_cl *args = exec->args;
649 uint32_t *handles;
650 int ret = 0;
651 int i;
652
653 exec->bo_count = args->bo_handle_count;
654
655 if (!exec->bo_count) {
656 /* See comment on bo_index for why we have to check
657 * this.
658 */
659 DRM_ERROR("Rendering requires BOs to validate\n");
660 return -EINVAL;
661 }
662
Michal Hocko20981052017-05-17 14:23:12 +0200663 exec->bo = kvmalloc_array(exec->bo_count,
664 sizeof(struct drm_gem_cma_object *),
665 GFP_KERNEL | __GFP_ZERO);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800666 if (!exec->bo) {
667 DRM_ERROR("Failed to allocate validated BO pointers\n");
668 return -ENOMEM;
669 }
670
Michal Hocko20981052017-05-17 14:23:12 +0200671 handles = kvmalloc_array(exec->bo_count, sizeof(uint32_t), GFP_KERNEL);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800672 if (!handles) {
Dan Carpenterb2cdeb12016-10-13 11:54:31 +0300673 ret = -ENOMEM;
Eric Anholtd5b1a782015-11-30 12:13:37 -0800674 DRM_ERROR("Failed to allocate incoming GEM handles\n");
675 goto fail;
676 }
677
Dan Carpenterb2cdeb12016-10-13 11:54:31 +0300678 if (copy_from_user(handles,
679 (void __user *)(uintptr_t)args->bo_handles,
680 exec->bo_count * sizeof(uint32_t))) {
681 ret = -EFAULT;
Eric Anholtd5b1a782015-11-30 12:13:37 -0800682 DRM_ERROR("Failed to copy in GEM handles\n");
683 goto fail;
684 }
685
686 spin_lock(&file_priv->table_lock);
687 for (i = 0; i < exec->bo_count; i++) {
688 struct drm_gem_object *bo = idr_find(&file_priv->object_idr,
689 handles[i]);
690 if (!bo) {
691 DRM_ERROR("Failed to look up GEM BO %d: %d\n",
692 i, handles[i]);
693 ret = -EINVAL;
694 spin_unlock(&file_priv->table_lock);
695 goto fail;
696 }
697 drm_gem_object_reference(bo);
698 exec->bo[i] = (struct drm_gem_cma_object *)bo;
699 }
700 spin_unlock(&file_priv->table_lock);
701
702fail:
Michal Hocko20981052017-05-17 14:23:12 +0200703 kvfree(handles);
Eric Anholt552416c2016-07-26 13:47:15 -0700704 return ret;
Eric Anholtd5b1a782015-11-30 12:13:37 -0800705}
706
707static int
708vc4_get_bcl(struct drm_device *dev, struct vc4_exec_info *exec)
709{
710 struct drm_vc4_submit_cl *args = exec->args;
711 void *temp = NULL;
712 void *bin;
713 int ret = 0;
714 uint32_t bin_offset = 0;
715 uint32_t shader_rec_offset = roundup(bin_offset + args->bin_cl_size,
716 16);
717 uint32_t uniforms_offset = shader_rec_offset + args->shader_rec_size;
718 uint32_t exec_size = uniforms_offset + args->uniforms_size;
719 uint32_t temp_size = exec_size + (sizeof(struct vc4_shader_state) *
720 args->shader_rec_count);
721 struct vc4_bo *bo;
722
Eric Anholt0f2ff822017-01-17 21:42:53 +1100723 if (shader_rec_offset < args->bin_cl_size ||
724 uniforms_offset < shader_rec_offset ||
Eric Anholtd5b1a782015-11-30 12:13:37 -0800725 exec_size < uniforms_offset ||
726 args->shader_rec_count >= (UINT_MAX /
727 sizeof(struct vc4_shader_state)) ||
728 temp_size < exec_size) {
729 DRM_ERROR("overflow in exec arguments\n");
Eric Anholt6b8ac632017-01-17 21:58:06 +1100730 ret = -EINVAL;
Eric Anholtd5b1a782015-11-30 12:13:37 -0800731 goto fail;
732 }
733
734 /* Allocate space where we'll store the copied in user command lists
735 * and shader records.
736 *
737 * We don't just copy directly into the BOs because we need to
738 * read the contents back for validation, and I think the
739 * bo->vaddr is uncached access.
740 */
Michal Hocko20981052017-05-17 14:23:12 +0200741 temp = kvmalloc_array(temp_size, 1, GFP_KERNEL);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800742 if (!temp) {
743 DRM_ERROR("Failed to allocate storage for copying "
744 "in bin/render CLs.\n");
745 ret = -ENOMEM;
746 goto fail;
747 }
748 bin = temp + bin_offset;
749 exec->shader_rec_u = temp + shader_rec_offset;
750 exec->uniforms_u = temp + uniforms_offset;
751 exec->shader_state = temp + exec_size;
752 exec->shader_state_size = args->shader_rec_count;
753
Dan Carpenter65c47772015-12-17 15:36:28 +0300754 if (copy_from_user(bin,
755 (void __user *)(uintptr_t)args->bin_cl,
756 args->bin_cl_size)) {
757 ret = -EFAULT;
Eric Anholtd5b1a782015-11-30 12:13:37 -0800758 goto fail;
759 }
760
Dan Carpenter65c47772015-12-17 15:36:28 +0300761 if (copy_from_user(exec->shader_rec_u,
762 (void __user *)(uintptr_t)args->shader_rec,
763 args->shader_rec_size)) {
764 ret = -EFAULT;
Eric Anholtd5b1a782015-11-30 12:13:37 -0800765 goto fail;
766 }
767
Dan Carpenter65c47772015-12-17 15:36:28 +0300768 if (copy_from_user(exec->uniforms_u,
769 (void __user *)(uintptr_t)args->uniforms,
770 args->uniforms_size)) {
771 ret = -EFAULT;
Eric Anholtd5b1a782015-11-30 12:13:37 -0800772 goto fail;
773 }
774
775 bo = vc4_bo_create(dev, exec_size, true);
Eric Anholt2c68f1f2016-01-25 14:13:12 -0800776 if (IS_ERR(bo)) {
Eric Anholtd5b1a782015-11-30 12:13:37 -0800777 DRM_ERROR("Couldn't allocate BO for binning\n");
Eric Anholt2c68f1f2016-01-25 14:13:12 -0800778 ret = PTR_ERR(bo);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800779 goto fail;
780 }
781 exec->exec_bo = &bo->base;
782
783 list_add_tail(&to_vc4_bo(&exec->exec_bo->base)->unref_head,
784 &exec->unref_list);
785
786 exec->ct0ca = exec->exec_bo->paddr + bin_offset;
787
788 exec->bin_u = bin;
789
790 exec->shader_rec_v = exec->exec_bo->vaddr + shader_rec_offset;
791 exec->shader_rec_p = exec->exec_bo->paddr + shader_rec_offset;
792 exec->shader_rec_size = args->shader_rec_size;
793
794 exec->uniforms_v = exec->exec_bo->vaddr + uniforms_offset;
795 exec->uniforms_p = exec->exec_bo->paddr + uniforms_offset;
796 exec->uniforms_size = args->uniforms_size;
797
798 ret = vc4_validate_bin_cl(dev,
799 exec->exec_bo->vaddr + bin_offset,
800 bin,
801 exec);
802 if (ret)
803 goto fail;
804
805 ret = vc4_validate_shader_recs(dev, exec);
Eric Anholt7edabee2016-09-27 09:03:13 -0700806 if (ret)
807 goto fail;
808
809 /* Block waiting on any previous rendering into the CS's VBO,
810 * IB, or textures, so that pixels are actually written by the
811 * time we try to read them.
812 */
813 ret = vc4_wait_for_seqno(dev, exec->bin_dep_seqno, ~0ull, true);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800814
815fail:
Michal Hocko20981052017-05-17 14:23:12 +0200816 kvfree(temp);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800817 return ret;
818}
819
820static void
821vc4_complete_exec(struct drm_device *dev, struct vc4_exec_info *exec)
822{
Eric Anholt001bdb52016-02-05 17:41:49 -0800823 struct vc4_dev *vc4 = to_vc4_dev(dev);
Eric Anholt553c9422017-03-27 16:10:25 -0700824 unsigned long irqflags;
Eric Anholtd5b1a782015-11-30 12:13:37 -0800825 unsigned i;
826
Eric Anholtcdec4d32017-04-12 12:12:02 -0700827 /* If we got force-completed because of GPU reset rather than
828 * through our IRQ handler, signal the fence now.
829 */
830 if (exec->fence)
831 dma_fence_signal(exec->fence);
832
Eric Anholtd5b1a782015-11-30 12:13:37 -0800833 if (exec->bo) {
834 for (i = 0; i < exec->bo_count; i++)
Daniel Vetterdb369722016-05-30 19:53:06 +0200835 drm_gem_object_unreference_unlocked(&exec->bo[i]->base);
Michal Hocko20981052017-05-17 14:23:12 +0200836 kvfree(exec->bo);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800837 }
838
839 while (!list_empty(&exec->unref_list)) {
840 struct vc4_bo *bo = list_first_entry(&exec->unref_list,
841 struct vc4_bo, unref_head);
842 list_del(&bo->unref_head);
Daniel Vetterdb369722016-05-30 19:53:06 +0200843 drm_gem_object_unreference_unlocked(&bo->base.base);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800844 }
Eric Anholtd5b1a782015-11-30 12:13:37 -0800845
Eric Anholt553c9422017-03-27 16:10:25 -0700846 /* Free up the allocation of any bin slots we used. */
847 spin_lock_irqsave(&vc4->job_lock, irqflags);
848 vc4->bin_alloc_used &= ~exec->bin_slots;
849 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
850
Eric Anholt36cb6252016-02-08 12:59:02 -0800851 mutex_lock(&vc4->power_lock);
Eric Anholt3a622342016-11-04 15:58:38 -0700852 if (--vc4->power_refcount == 0) {
853 pm_runtime_mark_last_busy(&vc4->v3d->pdev->dev);
854 pm_runtime_put_autosuspend(&vc4->v3d->pdev->dev);
855 }
Eric Anholt36cb6252016-02-08 12:59:02 -0800856 mutex_unlock(&vc4->power_lock);
Eric Anholt001bdb52016-02-05 17:41:49 -0800857
Eric Anholtd5b1a782015-11-30 12:13:37 -0800858 kfree(exec);
859}
860
861void
862vc4_job_handle_completed(struct vc4_dev *vc4)
863{
864 unsigned long irqflags;
Eric Anholtb501bac2015-11-30 12:34:01 -0800865 struct vc4_seqno_cb *cb, *cb_temp;
Eric Anholtd5b1a782015-11-30 12:13:37 -0800866
867 spin_lock_irqsave(&vc4->job_lock, irqflags);
868 while (!list_empty(&vc4->job_done_list)) {
869 struct vc4_exec_info *exec =
870 list_first_entry(&vc4->job_done_list,
871 struct vc4_exec_info, head);
872 list_del(&exec->head);
873
874 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
875 vc4_complete_exec(vc4->dev, exec);
876 spin_lock_irqsave(&vc4->job_lock, irqflags);
877 }
Eric Anholtb501bac2015-11-30 12:34:01 -0800878
879 list_for_each_entry_safe(cb, cb_temp, &vc4->seqno_cb_list, work.entry) {
880 if (cb->seqno <= vc4->finished_seqno) {
881 list_del_init(&cb->work.entry);
882 schedule_work(&cb->work);
883 }
884 }
885
Eric Anholtd5b1a782015-11-30 12:13:37 -0800886 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
887}
888
Eric Anholtb501bac2015-11-30 12:34:01 -0800889static void vc4_seqno_cb_work(struct work_struct *work)
890{
891 struct vc4_seqno_cb *cb = container_of(work, struct vc4_seqno_cb, work);
892
893 cb->func(cb);
894}
895
896int vc4_queue_seqno_cb(struct drm_device *dev,
897 struct vc4_seqno_cb *cb, uint64_t seqno,
898 void (*func)(struct vc4_seqno_cb *cb))
899{
900 struct vc4_dev *vc4 = to_vc4_dev(dev);
901 int ret = 0;
902 unsigned long irqflags;
903
904 cb->func = func;
905 INIT_WORK(&cb->work, vc4_seqno_cb_work);
906
907 spin_lock_irqsave(&vc4->job_lock, irqflags);
908 if (seqno > vc4->finished_seqno) {
909 cb->seqno = seqno;
910 list_add_tail(&cb->work.entry, &vc4->seqno_cb_list);
911 } else {
912 schedule_work(&cb->work);
913 }
914 spin_unlock_irqrestore(&vc4->job_lock, irqflags);
915
916 return ret;
917}
918
Eric Anholtd5b1a782015-11-30 12:13:37 -0800919/* Scheduled when any job has been completed, this walks the list of
920 * jobs that had completed and unrefs their BOs and frees their exec
921 * structs.
922 */
923static void
924vc4_job_done_work(struct work_struct *work)
925{
926 struct vc4_dev *vc4 =
927 container_of(work, struct vc4_dev, job_done_work);
928
929 vc4_job_handle_completed(vc4);
930}
931
932static int
933vc4_wait_for_seqno_ioctl_helper(struct drm_device *dev,
934 uint64_t seqno,
935 uint64_t *timeout_ns)
936{
937 unsigned long start = jiffies;
938 int ret = vc4_wait_for_seqno(dev, seqno, *timeout_ns, true);
939
940 if ((ret == -EINTR || ret == -ERESTARTSYS) && *timeout_ns != ~0ull) {
941 uint64_t delta = jiffies_to_nsecs(jiffies - start);
942
943 if (*timeout_ns >= delta)
944 *timeout_ns -= delta;
945 }
946
947 return ret;
948}
949
950int
951vc4_wait_seqno_ioctl(struct drm_device *dev, void *data,
952 struct drm_file *file_priv)
953{
954 struct drm_vc4_wait_seqno *args = data;
955
956 return vc4_wait_for_seqno_ioctl_helper(dev, args->seqno,
957 &args->timeout_ns);
958}
959
960int
961vc4_wait_bo_ioctl(struct drm_device *dev, void *data,
962 struct drm_file *file_priv)
963{
964 int ret;
965 struct drm_vc4_wait_bo *args = data;
966 struct drm_gem_object *gem_obj;
967 struct vc4_bo *bo;
968
Eric Anholte0015232016-01-25 13:05:00 -0800969 if (args->pad != 0)
970 return -EINVAL;
971
Chris Wilsona8ad0bd2016-05-09 11:04:54 +0100972 gem_obj = drm_gem_object_lookup(file_priv, args->handle);
Eric Anholtd5b1a782015-11-30 12:13:37 -0800973 if (!gem_obj) {
974 DRM_ERROR("Failed to look up GEM BO %d\n", args->handle);
975 return -EINVAL;
976 }
977 bo = to_vc4_bo(gem_obj);
978
979 ret = vc4_wait_for_seqno_ioctl_helper(dev, bo->seqno,
980 &args->timeout_ns);
981
982 drm_gem_object_unreference_unlocked(gem_obj);
983 return ret;
984}
985
986/**
Eric Anholt72f793f2017-02-27 12:11:41 -0800987 * vc4_submit_cl_ioctl() - Submits a job (frame) to the VC4.
988 * @dev: DRM device
989 * @data: ioctl argument
990 * @file_priv: DRM file for this fd
Eric Anholtd5b1a782015-11-30 12:13:37 -0800991 *
Eric Anholt72f793f2017-02-27 12:11:41 -0800992 * This is the main entrypoint for userspace to submit a 3D frame to
993 * the GPU. Userspace provides the binner command list (if
994 * applicable), and the kernel sets up the render command list to draw
995 * to the framebuffer described in the ioctl, using the command lists
996 * that the 3D engine's binner will produce.
Eric Anholtd5b1a782015-11-30 12:13:37 -0800997 */
998int
999vc4_submit_cl_ioctl(struct drm_device *dev, void *data,
1000 struct drm_file *file_priv)
1001{
1002 struct vc4_dev *vc4 = to_vc4_dev(dev);
1003 struct drm_vc4_submit_cl *args = data;
1004 struct vc4_exec_info *exec;
Eric Anholtcdec4d32017-04-12 12:12:02 -07001005 struct ww_acquire_ctx acquire_ctx;
Eric Anholt36cb6252016-02-08 12:59:02 -08001006 int ret = 0;
Eric Anholtd5b1a782015-11-30 12:13:37 -08001007
1008 if ((args->flags & ~VC4_SUBMIT_CL_USE_CLEAR_COLOR) != 0) {
1009 DRM_ERROR("Unknown flags: 0x%02x\n", args->flags);
1010 return -EINVAL;
1011 }
1012
1013 exec = kcalloc(1, sizeof(*exec), GFP_KERNEL);
1014 if (!exec) {
1015 DRM_ERROR("malloc failure on exec struct\n");
1016 return -ENOMEM;
1017 }
1018
Eric Anholt36cb6252016-02-08 12:59:02 -08001019 mutex_lock(&vc4->power_lock);
Eric Anholt925d05e2017-04-17 09:26:03 -07001020 if (vc4->power_refcount++ == 0) {
Eric Anholt36cb6252016-02-08 12:59:02 -08001021 ret = pm_runtime_get_sync(&vc4->v3d->pdev->dev);
Eric Anholt925d05e2017-04-17 09:26:03 -07001022 if (ret < 0) {
1023 mutex_unlock(&vc4->power_lock);
1024 vc4->power_refcount--;
1025 kfree(exec);
1026 return ret;
1027 }
Eric Anholt001bdb52016-02-05 17:41:49 -08001028 }
Eric Anholt925d05e2017-04-17 09:26:03 -07001029 mutex_unlock(&vc4->power_lock);
Eric Anholt001bdb52016-02-05 17:41:49 -08001030
Eric Anholtd5b1a782015-11-30 12:13:37 -08001031 exec->args = args;
1032 INIT_LIST_HEAD(&exec->unref_list);
1033
1034 ret = vc4_cl_lookup_bos(dev, file_priv, exec);
1035 if (ret)
1036 goto fail;
1037
1038 if (exec->args->bin_cl_size != 0) {
1039 ret = vc4_get_bcl(dev, exec);
1040 if (ret)
1041 goto fail;
1042 } else {
1043 exec->ct0ca = 0;
1044 exec->ct0ea = 0;
1045 }
1046
1047 ret = vc4_get_rcl(dev, exec);
1048 if (ret)
1049 goto fail;
1050
Eric Anholtcdec4d32017-04-12 12:12:02 -07001051 ret = vc4_lock_bo_reservations(dev, exec, &acquire_ctx);
1052 if (ret)
1053 goto fail;
1054
Eric Anholtd5b1a782015-11-30 12:13:37 -08001055 /* Clear this out of the struct we'll be putting in the queue,
1056 * since it's part of our stack.
1057 */
1058 exec->args = NULL;
1059
Eric Anholtcdec4d32017-04-12 12:12:02 -07001060 ret = vc4_queue_submit(dev, exec, &acquire_ctx);
1061 if (ret)
1062 goto fail;
Eric Anholtd5b1a782015-11-30 12:13:37 -08001063
1064 /* Return the seqno for our job. */
1065 args->seqno = vc4->emit_seqno;
1066
1067 return 0;
1068
1069fail:
1070 vc4_complete_exec(vc4->dev, exec);
1071
1072 return ret;
1073}
1074
1075void
1076vc4_gem_init(struct drm_device *dev)
1077{
1078 struct vc4_dev *vc4 = to_vc4_dev(dev);
1079
Eric Anholtcdec4d32017-04-12 12:12:02 -07001080 vc4->dma_fence_context = dma_fence_context_alloc(1);
1081
Varad Gautamca26d282016-02-17 19:08:21 +05301082 INIT_LIST_HEAD(&vc4->bin_job_list);
1083 INIT_LIST_HEAD(&vc4->render_job_list);
Eric Anholtd5b1a782015-11-30 12:13:37 -08001084 INIT_LIST_HEAD(&vc4->job_done_list);
Eric Anholtb501bac2015-11-30 12:34:01 -08001085 INIT_LIST_HEAD(&vc4->seqno_cb_list);
Eric Anholtd5b1a782015-11-30 12:13:37 -08001086 spin_lock_init(&vc4->job_lock);
1087
1088 INIT_WORK(&vc4->hangcheck.reset_work, vc4_reset_work);
1089 setup_timer(&vc4->hangcheck.timer,
1090 vc4_hangcheck_elapsed,
1091 (unsigned long)dev);
1092
1093 INIT_WORK(&vc4->job_done_work, vc4_job_done_work);
Eric Anholt36cb6252016-02-08 12:59:02 -08001094
1095 mutex_init(&vc4->power_lock);
Eric Anholtd5b1a782015-11-30 12:13:37 -08001096}
1097
1098void
1099vc4_gem_destroy(struct drm_device *dev)
1100{
1101 struct vc4_dev *vc4 = to_vc4_dev(dev);
1102
1103 /* Waiting for exec to finish would need to be done before
1104 * unregistering V3D.
1105 */
1106 WARN_ON(vc4->emit_seqno != vc4->finished_seqno);
1107
1108 /* V3D should already have disabled its interrupt and cleared
1109 * the overflow allocation registers. Now free the object.
1110 */
Eric Anholt553c9422017-03-27 16:10:25 -07001111 if (vc4->bin_bo) {
1112 drm_gem_object_put_unlocked(&vc4->bin_bo->base.base);
1113 vc4->bin_bo = NULL;
Eric Anholtd5b1a782015-11-30 12:13:37 -08001114 }
1115
Eric Anholt21461362015-10-30 10:09:02 -07001116 if (vc4->hang_state)
1117 vc4_free_hang_state(dev, vc4->hang_state);
Eric Anholtdef96522016-07-26 13:47:13 -07001118
1119 vc4_bo_cache_destroy(dev);
Eric Anholtd5b1a782015-11-30 12:13:37 -08001120}