1 // SPDX-License-Identifier: GPL-2.0+
2 /* Copyright (C) 2014-2018 Broadcom */
5 #include <drm/drm_syncobj.h>
6 #include <linux/module.h>
7 #include <linux/platform_device.h>
8 #include <linux/pm_runtime.h>
9 #include <linux/device.h>
11 #include <linux/sched/signal.h>
13 #include "uapi/drm/v3d_drm.h"
16 #include "v3d_trace.h"
19 v3d_init_core(struct v3d_dev *v3d, int core)
21 /* Set OVRTMUOUT, which means that the texture sampler uniform
22 * configuration's tmu output type field is used, instead of
23 * using the hardware default behavior based on the texture
24 * type. If you want the default behavior, you can still put
25 * "2" in the indirect texture state's output_type field.
27 V3D_CORE_WRITE(core, V3D_CTL_MISCCFG, V3D_MISCCFG_OVRTMUOUT);
29 /* Whenever we flush the L2T cache, we always want to flush
32 V3D_CORE_WRITE(core, V3D_CTL_L2TFLSTA, 0);
33 V3D_CORE_WRITE(core, V3D_CTL_L2TFLEND, ~0);
36 /* Sets invariant state for the HW. */
38 v3d_init_hw_state(struct v3d_dev *v3d)
40 v3d_init_core(v3d, 0);
44 v3d_idle_axi(struct v3d_dev *v3d, int core)
46 V3D_CORE_WRITE(core, V3D_GMP_CFG, V3D_GMP_CFG_STOP_REQ);
48 if (wait_for((V3D_CORE_READ(core, V3D_GMP_STATUS) &
49 (V3D_GMP_STATUS_RD_COUNT_MASK |
50 V3D_GMP_STATUS_WR_COUNT_MASK |
51 V3D_GMP_STATUS_CFG_BUSY)) == 0, 100)) {
52 DRM_ERROR("Failed to wait for safe GMP shutdown\n");
57 v3d_idle_gca(struct v3d_dev *v3d)
62 V3D_GCA_WRITE(V3D_GCA_SAFE_SHUTDOWN, V3D_GCA_SAFE_SHUTDOWN_EN);
64 if (wait_for((V3D_GCA_READ(V3D_GCA_SAFE_SHUTDOWN_ACK) &
65 V3D_GCA_SAFE_SHUTDOWN_ACK_ACKED) ==
66 V3D_GCA_SAFE_SHUTDOWN_ACK_ACKED, 100)) {
67 DRM_ERROR("Failed to wait for safe GCA shutdown\n");
72 v3d_reset_v3d(struct v3d_dev *v3d)
74 int version = V3D_BRIDGE_READ(V3D_TOP_GR_BRIDGE_REVISION);
76 if (V3D_GET_FIELD(version, V3D_TOP_GR_BRIDGE_MAJOR) == 2) {
77 V3D_BRIDGE_WRITE(V3D_TOP_GR_BRIDGE_SW_INIT_0,
78 V3D_TOP_GR_BRIDGE_SW_INIT_0_V3D_CLK_108_SW_INIT);
79 V3D_BRIDGE_WRITE(V3D_TOP_GR_BRIDGE_SW_INIT_0, 0);
81 /* GFXH-1383: The SW_INIT may cause a stray write to address 0
82 * of the unit, so reset it to its power-on value here.
84 V3D_WRITE(V3D_HUB_AXICFG, V3D_HUB_AXICFG_MAX_LEN_MASK);
86 WARN_ON_ONCE(V3D_GET_FIELD(version,
87 V3D_TOP_GR_BRIDGE_MAJOR) != 7);
88 V3D_BRIDGE_WRITE(V3D_TOP_GR_BRIDGE_SW_INIT_1,
89 V3D_TOP_GR_BRIDGE_SW_INIT_1_V3D_CLK_108_SW_INIT);
90 V3D_BRIDGE_WRITE(V3D_TOP_GR_BRIDGE_SW_INIT_1, 0);
93 v3d_init_hw_state(v3d);
97 v3d_reset(struct v3d_dev *v3d)
99 struct drm_device *dev = &v3d->drm;
101 DRM_ERROR("Resetting GPU.\n");
102 trace_v3d_reset_begin(dev);
104 /* XXX: only needed for safe powerdown, not reset. */
106 v3d_idle_axi(v3d, 0);
111 v3d_mmu_set_page_table(v3d);
114 trace_v3d_reset_end(dev);
118 v3d_flush_l3(struct v3d_dev *v3d)
121 u32 gca_ctrl = V3D_GCA_READ(V3D_GCA_CACHE_CTRL);
123 V3D_GCA_WRITE(V3D_GCA_CACHE_CTRL,
124 gca_ctrl | V3D_GCA_CACHE_CTRL_FLUSH);
127 V3D_GCA_WRITE(V3D_GCA_CACHE_CTRL,
128 gca_ctrl & ~V3D_GCA_CACHE_CTRL_FLUSH);
133 /* Invalidates the (read-only) L2 cache. */
135 v3d_invalidate_l2(struct v3d_dev *v3d, int core)
137 V3D_CORE_WRITE(core, V3D_CTL_L2CACTL,
143 v3d_invalidate_l1td(struct v3d_dev *v3d, int core)
145 V3D_CORE_WRITE(core, V3D_CTL_L2TCACTL, V3D_L2TCACTL_TMUWCF);
146 if (wait_for(!(V3D_CORE_READ(core, V3D_CTL_L2TCACTL) &
147 V3D_L2TCACTL_L2TFLS), 100)) {
148 DRM_ERROR("Timeout waiting for L1T write combiner flush\n");
152 /* Invalidates texture L2 cachelines */
154 v3d_flush_l2t(struct v3d_dev *v3d, int core)
156 v3d_invalidate_l1td(v3d, core);
158 V3D_CORE_WRITE(core, V3D_CTL_L2TCACTL,
159 V3D_L2TCACTL_L2TFLS |
160 V3D_SET_FIELD(V3D_L2TCACTL_FLM_FLUSH, V3D_L2TCACTL_FLM));
161 if (wait_for(!(V3D_CORE_READ(core, V3D_CTL_L2TCACTL) &
162 V3D_L2TCACTL_L2TFLS), 100)) {
163 DRM_ERROR("Timeout waiting for L2T flush\n");
167 /* Invalidates the slice caches. These are read-only caches. */
169 v3d_invalidate_slices(struct v3d_dev *v3d, int core)
171 V3D_CORE_WRITE(core, V3D_CTL_SLCACTL,
172 V3D_SET_FIELD(0xf, V3D_SLCACTL_TVCCS) |
173 V3D_SET_FIELD(0xf, V3D_SLCACTL_TDCCS) |
174 V3D_SET_FIELD(0xf, V3D_SLCACTL_UCC) |
175 V3D_SET_FIELD(0xf, V3D_SLCACTL_ICC));
178 /* Invalidates texture L2 cachelines */
180 v3d_invalidate_l2t(struct v3d_dev *v3d, int core)
184 V3D_L2TCACTL_L2TFLS |
185 V3D_SET_FIELD(V3D_L2TCACTL_FLM_CLEAR, V3D_L2TCACTL_FLM));
186 if (wait_for(!(V3D_CORE_READ(core, V3D_CTL_L2TCACTL) &
187 V3D_L2TCACTL_L2TFLS), 100)) {
188 DRM_ERROR("Timeout waiting for L2T invalidate\n");
193 v3d_invalidate_caches(struct v3d_dev *v3d)
197 v3d_invalidate_l2(v3d, 0);
198 v3d_invalidate_slices(v3d, 0);
199 v3d_flush_l2t(v3d, 0);
203 v3d_flush_caches(struct v3d_dev *v3d)
205 v3d_invalidate_l1td(v3d, 0);
206 v3d_invalidate_l2t(v3d, 0);
210 v3d_attach_object_fences(struct v3d_bo **bos, int bo_count,
211 struct dma_fence *fence)
215 for (i = 0; i < bo_count; i++) {
216 /* XXX: Use shared fences for read-only objects. */
217 reservation_object_add_excl_fence(bos[i]->resv, fence);
222 v3d_unlock_bo_reservations(struct v3d_bo **bos,
224 struct ww_acquire_ctx *acquire_ctx)
228 for (i = 0; i < bo_count; i++)
229 ww_mutex_unlock(&bos[i]->resv->lock);
231 ww_acquire_fini(acquire_ctx);
234 /* Takes the reservation lock on all the BOs being referenced, so that
235 * at queue submit time we can update the reservations.
237 * We don't lock the RCL the tile alloc/state BOs, or overflow memory
238 * (all of which are on exec->unref_list). They're entirely private
239 * to v3d, so we don't attach dma-buf fences to them.
242 v3d_lock_bo_reservations(struct v3d_bo **bos,
244 struct ww_acquire_ctx *acquire_ctx)
246 int contended_lock = -1;
249 ww_acquire_init(acquire_ctx, &reservation_ww_class);
252 if (contended_lock != -1) {
253 struct v3d_bo *bo = bos[contended_lock];
255 ret = ww_mutex_lock_slow_interruptible(&bo->resv->lock,
258 ww_acquire_done(acquire_ctx);
263 for (i = 0; i < bo_count; i++) {
264 if (i == contended_lock)
267 ret = ww_mutex_lock_interruptible(&bos[i]->resv->lock,
272 for (j = 0; j < i; j++)
273 ww_mutex_unlock(&bos[j]->resv->lock);
275 if (contended_lock != -1 && contended_lock >= i) {
276 struct v3d_bo *bo = bos[contended_lock];
278 ww_mutex_unlock(&bo->resv->lock);
281 if (ret == -EDEADLK) {
286 ww_acquire_done(acquire_ctx);
291 ww_acquire_done(acquire_ctx);
293 /* Reserve space for our shared (read-only) fence references,
294 * before we commit the CL to the hardware.
296 for (i = 0; i < bo_count; i++) {
297 ret = reservation_object_reserve_shared(bos[i]->resv, 1);
299 v3d_unlock_bo_reservations(bos, bo_count,
309 * v3d_cl_lookup_bos() - Sets up exec->bo[] with the GEM objects
310 * referenced by the job.
312 * @file_priv: DRM file for this fd
313 * @exec: V3D job being set up
315 * The command validator needs to reference BOs by their index within
316 * the submitted job's BO list. This does the validation of the job's
317 * BO list and reference counting for the lifetime of the job.
319 * Note that this function doesn't need to unreference the BOs on
320 * failure, because that will happen at v3d_exec_cleanup() time.
323 v3d_cl_lookup_bos(struct drm_device *dev,
324 struct drm_file *file_priv,
325 struct drm_v3d_submit_cl *args,
326 struct v3d_exec_info *exec)
332 exec->bo_count = args->bo_handle_count;
334 if (!exec->bo_count) {
335 /* See comment on bo_index for why we have to check
338 DRM_DEBUG("Rendering requires BOs\n");
342 exec->bo = kvmalloc_array(exec->bo_count,
343 sizeof(struct drm_gem_cma_object *),
344 GFP_KERNEL | __GFP_ZERO);
346 DRM_DEBUG("Failed to allocate validated BO pointers\n");
350 handles = kvmalloc_array(exec->bo_count, sizeof(u32), GFP_KERNEL);
353 DRM_DEBUG("Failed to allocate incoming GEM handles\n");
357 if (copy_from_user(handles,
358 (void __user *)(uintptr_t)args->bo_handles,
359 exec->bo_count * sizeof(u32))) {
361 DRM_DEBUG("Failed to copy in GEM handles\n");
365 spin_lock(&file_priv->table_lock);
366 for (i = 0; i < exec->bo_count; i++) {
367 struct drm_gem_object *bo = idr_find(&file_priv->object_idr,
370 DRM_DEBUG("Failed to look up GEM BO %d: %d\n",
373 spin_unlock(&file_priv->table_lock);
376 drm_gem_object_get(bo);
377 exec->bo[i] = to_v3d_bo(bo);
379 spin_unlock(&file_priv->table_lock);
387 v3d_exec_cleanup(struct kref *ref)
389 struct v3d_exec_info *exec = container_of(ref, struct v3d_exec_info,
391 struct v3d_dev *v3d = exec->v3d;
393 struct v3d_bo *bo, *save;
395 dma_fence_put(exec->bin.in_fence);
396 dma_fence_put(exec->render.in_fence);
398 dma_fence_put(exec->bin.done_fence);
399 dma_fence_put(exec->render.done_fence);
401 dma_fence_put(exec->bin_done_fence);
402 dma_fence_put(exec->render_done_fence);
404 for (i = 0; i < exec->bo_count; i++)
405 drm_gem_object_put_unlocked(&exec->bo[i]->base);
408 list_for_each_entry_safe(bo, save, &exec->unref_list, unref_head) {
409 drm_gem_object_put_unlocked(&bo->base);
412 pm_runtime_mark_last_busy(v3d->dev);
413 pm_runtime_put_autosuspend(v3d->dev);
418 void v3d_exec_put(struct v3d_exec_info *exec)
420 kref_put(&exec->refcount, v3d_exec_cleanup);
424 v3d_tfu_job_cleanup(struct kref *ref)
426 struct v3d_tfu_job *job = container_of(ref, struct v3d_tfu_job,
428 struct v3d_dev *v3d = job->v3d;
431 dma_fence_put(job->in_fence);
432 dma_fence_put(job->done_fence);
434 for (i = 0; i < ARRAY_SIZE(job->bo); i++) {
436 drm_gem_object_put_unlocked(&job->bo[i]->base);
439 pm_runtime_mark_last_busy(v3d->dev);
440 pm_runtime_put_autosuspend(v3d->dev);
445 void v3d_tfu_job_put(struct v3d_tfu_job *job)
447 kref_put(&job->refcount, v3d_tfu_job_cleanup);
451 v3d_wait_bo_ioctl(struct drm_device *dev, void *data,
452 struct drm_file *file_priv)
455 struct drm_v3d_wait_bo *args = data;
456 struct drm_gem_object *gem_obj;
458 ktime_t start = ktime_get();
460 unsigned long timeout_jiffies =
461 nsecs_to_jiffies_timeout(args->timeout_ns);
466 gem_obj = drm_gem_object_lookup(file_priv, args->handle);
468 DRM_DEBUG("Failed to look up GEM BO %d\n", args->handle);
471 bo = to_v3d_bo(gem_obj);
473 ret = reservation_object_wait_timeout_rcu(bo->resv,
482 /* Decrement the user's timeout, in case we got interrupted
483 * such that the ioctl will be restarted.
485 delta_ns = ktime_to_ns(ktime_sub(ktime_get(), start));
486 if (delta_ns < args->timeout_ns)
487 args->timeout_ns -= delta_ns;
489 args->timeout_ns = 0;
491 /* Asked to wait beyond the jiffie/scheduler precision? */
492 if (ret == -ETIME && args->timeout_ns)
495 drm_gem_object_put_unlocked(gem_obj);
501 * v3d_submit_cl_ioctl() - Submits a job (frame) to the V3D.
503 * @data: ioctl argument
504 * @file_priv: DRM file for this fd
506 * This is the main entrypoint for userspace to submit a 3D frame to
507 * the GPU. Userspace provides the binner command list (if
508 * applicable), and the kernel sets up the render command list to draw
509 * to the framebuffer described in the ioctl, using the command lists
510 * that the 3D engine's binner will produce.
513 v3d_submit_cl_ioctl(struct drm_device *dev, void *data,
514 struct drm_file *file_priv)
516 struct v3d_dev *v3d = to_v3d_dev(dev);
517 struct v3d_file_priv *v3d_priv = file_priv->driver_priv;
518 struct drm_v3d_submit_cl *args = data;
519 struct v3d_exec_info *exec;
520 struct ww_acquire_ctx acquire_ctx;
521 struct drm_syncobj *sync_out;
524 trace_v3d_submit_cl_ioctl(&v3d->drm, args->rcl_start, args->rcl_end);
526 if (args->pad != 0) {
527 DRM_INFO("pad must be zero: %d\n", args->pad);
531 exec = kcalloc(1, sizeof(*exec), GFP_KERNEL);
535 ret = pm_runtime_get_sync(v3d->dev);
541 kref_init(&exec->refcount);
543 ret = drm_syncobj_find_fence(file_priv, args->in_sync_bcl,
544 0, 0, &exec->bin.in_fence);
548 ret = drm_syncobj_find_fence(file_priv, args->in_sync_rcl,
549 0, 0, &exec->render.in_fence);
553 exec->qma = args->qma;
554 exec->qms = args->qms;
555 exec->qts = args->qts;
556 exec->bin.exec = exec;
557 exec->bin.start = args->bcl_start;
558 exec->bin.end = args->bcl_end;
559 exec->render.exec = exec;
560 exec->render.start = args->rcl_start;
561 exec->render.end = args->rcl_end;
563 INIT_LIST_HEAD(&exec->unref_list);
565 ret = v3d_cl_lookup_bos(dev, file_priv, args, exec);
569 ret = v3d_lock_bo_reservations(exec->bo, exec->bo_count,
574 mutex_lock(&v3d->sched_lock);
575 if (exec->bin.start != exec->bin.end) {
576 ret = drm_sched_job_init(&exec->bin.base,
577 &v3d_priv->sched_entity[V3D_BIN],
582 exec->bin_done_fence =
583 dma_fence_get(&exec->bin.base.s_fence->finished);
585 kref_get(&exec->refcount); /* put by scheduler job completion */
586 drm_sched_entity_push_job(&exec->bin.base,
587 &v3d_priv->sched_entity[V3D_BIN]);
590 ret = drm_sched_job_init(&exec->render.base,
591 &v3d_priv->sched_entity[V3D_RENDER],
596 exec->render_done_fence =
597 dma_fence_get(&exec->render.base.s_fence->finished);
599 kref_get(&exec->refcount); /* put by scheduler job completion */
600 drm_sched_entity_push_job(&exec->render.base,
601 &v3d_priv->sched_entity[V3D_RENDER]);
602 mutex_unlock(&v3d->sched_lock);
604 v3d_attach_object_fences(exec->bo, exec->bo_count,
605 exec->render_done_fence);
607 v3d_unlock_bo_reservations(exec->bo, exec->bo_count, &acquire_ctx);
609 /* Update the return sync object for the */
610 sync_out = drm_syncobj_find(file_priv, args->out_sync);
612 drm_syncobj_replace_fence(sync_out, exec->render_done_fence);
613 drm_syncobj_put(sync_out);
621 mutex_unlock(&v3d->sched_lock);
622 v3d_unlock_bo_reservations(exec->bo, exec->bo_count, &acquire_ctx);
630 * v3d_submit_tfu_ioctl() - Submits a TFU (texture formatting) job to the V3D.
632 * @data: ioctl argument
633 * @file_priv: DRM file for this fd
635 * Userspace provides the register setup for the TFU, which we don't
636 * need to validate since the TFU is behind the MMU.
639 v3d_submit_tfu_ioctl(struct drm_device *dev, void *data,
640 struct drm_file *file_priv)
642 struct v3d_dev *v3d = to_v3d_dev(dev);
643 struct v3d_file_priv *v3d_priv = file_priv->driver_priv;
644 struct drm_v3d_submit_tfu *args = data;
645 struct v3d_tfu_job *job;
646 struct ww_acquire_ctx acquire_ctx;
647 struct drm_syncobj *sync_out;
648 struct dma_fence *sched_done_fence;
652 trace_v3d_submit_tfu_ioctl(&v3d->drm, args->iia);
654 job = kcalloc(1, sizeof(*job), GFP_KERNEL);
658 ret = pm_runtime_get_sync(v3d->dev);
664 kref_init(&job->refcount);
666 ret = drm_syncobj_find_fence(file_priv, args->in_sync,
667 0, 0, &job->in_fence);
674 spin_lock(&file_priv->table_lock);
675 for (bo_count = 0; bo_count < ARRAY_SIZE(job->bo); bo_count++) {
676 struct drm_gem_object *bo;
678 if (!args->bo_handles[bo_count])
681 bo = idr_find(&file_priv->object_idr,
682 args->bo_handles[bo_count]);
684 DRM_DEBUG("Failed to look up GEM BO %d: %d\n",
685 bo_count, args->bo_handles[bo_count]);
687 spin_unlock(&file_priv->table_lock);
690 drm_gem_object_get(bo);
691 job->bo[bo_count] = to_v3d_bo(bo);
693 spin_unlock(&file_priv->table_lock);
695 ret = v3d_lock_bo_reservations(job->bo, bo_count, &acquire_ctx);
699 mutex_lock(&v3d->sched_lock);
700 ret = drm_sched_job_init(&job->base,
701 &v3d_priv->sched_entity[V3D_TFU],
706 sched_done_fence = dma_fence_get(&job->base.s_fence->finished);
708 kref_get(&job->refcount); /* put by scheduler job completion */
709 drm_sched_entity_push_job(&job->base, &v3d_priv->sched_entity[V3D_TFU]);
710 mutex_unlock(&v3d->sched_lock);
712 v3d_attach_object_fences(job->bo, bo_count, sched_done_fence);
714 v3d_unlock_bo_reservations(job->bo, bo_count, &acquire_ctx);
716 /* Update the return sync object */
717 sync_out = drm_syncobj_find(file_priv, args->out_sync);
719 drm_syncobj_replace_fence(sync_out, sched_done_fence);
720 drm_syncobj_put(sync_out);
722 dma_fence_put(sched_done_fence);
724 v3d_tfu_job_put(job);
729 mutex_unlock(&v3d->sched_lock);
730 v3d_unlock_bo_reservations(job->bo, bo_count, &acquire_ctx);
732 v3d_tfu_job_put(job);
738 v3d_gem_init(struct drm_device *dev)
740 struct v3d_dev *v3d = to_v3d_dev(dev);
741 u32 pt_size = 4096 * 1024;
744 for (i = 0; i < V3D_MAX_QUEUES; i++)
745 v3d->queue[i].fence_context = dma_fence_context_alloc(1);
747 spin_lock_init(&v3d->mm_lock);
748 spin_lock_init(&v3d->job_lock);
749 mutex_init(&v3d->bo_lock);
750 mutex_init(&v3d->reset_lock);
751 mutex_init(&v3d->sched_lock);
753 /* Note: We don't allocate address 0. Various bits of HW
754 * treat 0 as special, such as the occlusion query counters
755 * where 0 means "disabled".
757 drm_mm_init(&v3d->mm, 1, pt_size / sizeof(u32) - 1);
759 v3d->pt = dma_alloc_wc(v3d->dev, pt_size,
761 GFP_KERNEL | __GFP_NOWARN | __GFP_ZERO);
763 drm_mm_takedown(&v3d->mm);
765 "Failed to allocate page tables. "
766 "Please ensure you have CMA enabled.\n");
770 v3d_init_hw_state(v3d);
771 v3d_mmu_set_page_table(v3d);
773 ret = v3d_sched_init(v3d);
775 drm_mm_takedown(&v3d->mm);
776 dma_free_coherent(v3d->dev, 4096 * 1024, (void *)v3d->pt,
784 v3d_gem_destroy(struct drm_device *dev)
786 struct v3d_dev *v3d = to_v3d_dev(dev);
790 /* Waiting for exec to finish would need to be done before
793 WARN_ON(v3d->bin_job);
794 WARN_ON(v3d->render_job);
796 drm_mm_takedown(&v3d->mm);
798 dma_free_coherent(v3d->dev, 4096 * 1024, (void *)v3d->pt, v3d->pt_paddr);