1 // SPDX-License-Identifier: GPL-2.0+
3 * Copyright (C) 2014-2018 Broadcom
4 * Copyright (C) 2023 Raspberry Pi
7 #include <drm/drm_syncobj.h>
11 #include "v3d_trace.h"
13 /* Takes the reservation lock on all the BOs being referenced, so that
14 * at queue submit time we can update the reservations.
16 * We don't lock the RCL the tile alloc/state BOs, or overflow memory
17 * (all of which are on exec->unref_list). They're entirely private
18 * to v3d, so we don't attach dma-buf fences to them.
21 v3d_lock_bo_reservations(struct v3d_job *job,
22 struct ww_acquire_ctx *acquire_ctx)
26 ret = drm_gem_lock_reservations(job->bo, job->bo_count, acquire_ctx);
30 for (i = 0; i < job->bo_count; i++) {
31 ret = dma_resv_reserve_fences(job->bo[i]->resv, 1);
35 ret = drm_sched_job_add_implicit_dependencies(&job->base,
44 drm_gem_unlock_reservations(job->bo, job->bo_count, acquire_ctx);
49 * v3d_lookup_bos() - Sets up job->bo[] with the GEM objects
50 * referenced by the job.
52 * @file_priv: DRM file for this fd
53 * @job: V3D job being set up
54 * @bo_handles: GEM handles
55 * @bo_count: Number of GEM handles passed in
57 * The command validator needs to reference BOs by their index within
58 * the submitted job's BO list. This does the validation of the job's
59 * BO list and reference counting for the lifetime of the job.
61 * Note that this function doesn't need to unreference the BOs on
62 * failure, because that will happen at v3d_exec_cleanup() time.
65 v3d_lookup_bos(struct drm_device *dev,
66 struct drm_file *file_priv,
71 job->bo_count = bo_count;
74 /* See comment on bo_index for why we have to check
77 DRM_DEBUG("Rendering requires BOs\n");
81 return drm_gem_objects_lookup(file_priv,
82 (void __user *)(uintptr_t)bo_handles,
83 job->bo_count, &job->bo);
87 v3d_job_free(struct kref *ref)
89 struct v3d_job *job = container_of(ref, struct v3d_job, refcount);
93 for (i = 0; i < job->bo_count; i++)
94 drm_gem_object_put(job->bo[i]);
98 dma_fence_put(job->irq_fence);
99 dma_fence_put(job->done_fence);
102 v3d_perfmon_put(job->perfmon);
108 v3d_render_job_free(struct kref *ref)
110 struct v3d_render_job *job = container_of(ref, struct v3d_render_job,
112 struct v3d_bo *bo, *save;
114 list_for_each_entry_safe(bo, save, &job->unref_list, unref_head) {
115 drm_gem_object_put(&bo->base.base);
121 void v3d_job_cleanup(struct v3d_job *job)
126 drm_sched_job_cleanup(&job->base);
130 void v3d_job_put(struct v3d_job *job)
135 kref_put(&job->refcount, job->free);
139 v3d_job_allocate(void **container, size_t size)
141 *container = kcalloc(1, size, GFP_KERNEL);
143 DRM_ERROR("Cannot allocate memory for V3D job.\n");
151 v3d_job_deallocate(void **container)
158 v3d_job_init(struct v3d_dev *v3d, struct drm_file *file_priv,
159 struct v3d_job *job, void (*free)(struct kref *ref),
160 u32 in_sync, struct v3d_submit_ext *se, enum v3d_queue queue)
162 struct v3d_file_priv *v3d_priv = file_priv->driver_priv;
163 bool has_multisync = se && (se->flags & DRM_V3D_EXT_ID_MULTI_SYNC);
168 job->file = file_priv;
170 ret = drm_sched_job_init(&job->base, &v3d_priv->sched_entity[queue],
176 if (se->in_sync_count && se->wait_stage == queue) {
177 struct drm_v3d_sem __user *handle = u64_to_user_ptr(se->in_syncs);
179 for (i = 0; i < se->in_sync_count; i++) {
180 struct drm_v3d_sem in;
182 if (copy_from_user(&in, handle++, sizeof(in))) {
184 DRM_DEBUG("Failed to copy wait dep handle.\n");
187 ret = drm_sched_job_add_syncobj_dependency(&job->base, file_priv, in.handle, 0);
189 // TODO: Investigate why this was filtered out for the IOCTL.
190 if (ret && ret != -ENOENT)
195 ret = drm_sched_job_add_syncobj_dependency(&job->base, file_priv, in_sync, 0);
197 // TODO: Investigate why this was filtered out for the IOCTL.
198 if (ret && ret != -ENOENT)
202 kref_init(&job->refcount);
207 drm_sched_job_cleanup(&job->base);
212 v3d_push_job(struct v3d_job *job)
214 drm_sched_job_arm(&job->base);
216 job->done_fence = dma_fence_get(&job->base.s_fence->finished);
218 /* put by scheduler job completion */
219 kref_get(&job->refcount);
221 drm_sched_entity_push_job(&job->base);
225 v3d_attach_fences_and_unlock_reservation(struct drm_file *file_priv,
227 struct ww_acquire_ctx *acquire_ctx,
229 struct v3d_submit_ext *se,
230 struct dma_fence *done_fence)
232 struct drm_syncobj *sync_out;
233 bool has_multisync = se && (se->flags & DRM_V3D_EXT_ID_MULTI_SYNC);
236 for (i = 0; i < job->bo_count; i++) {
237 /* XXX: Use shared fences for read-only objects. */
238 dma_resv_add_fence(job->bo[i]->resv, job->done_fence,
239 DMA_RESV_USAGE_WRITE);
242 drm_gem_unlock_reservations(job->bo, job->bo_count, acquire_ctx);
244 /* Update the return sync object for the job */
245 /* If it only supports a single signal semaphore*/
246 if (!has_multisync) {
247 sync_out = drm_syncobj_find(file_priv, out_sync);
249 drm_syncobj_replace_fence(sync_out, done_fence);
250 drm_syncobj_put(sync_out);
255 /* If multiple semaphores extension is supported */
256 if (se->out_sync_count) {
257 for (i = 0; i < se->out_sync_count; i++) {
258 drm_syncobj_replace_fence(se->out_syncs[i].syncobj,
260 drm_syncobj_put(se->out_syncs[i].syncobj);
262 kvfree(se->out_syncs);
267 v3d_setup_csd_jobs_and_bos(struct drm_file *file_priv,
269 struct drm_v3d_submit_csd *args,
270 struct v3d_csd_job **job,
271 struct v3d_job **clean_job,
272 struct v3d_submit_ext *se,
273 struct ww_acquire_ctx *acquire_ctx)
277 ret = v3d_job_allocate((void *)job, sizeof(**job));
281 ret = v3d_job_init(v3d, file_priv, &(*job)->base,
282 v3d_job_free, args->in_sync, se, V3D_CSD);
284 v3d_job_deallocate((void *)job);
288 ret = v3d_job_allocate((void *)clean_job, sizeof(**clean_job));
292 ret = v3d_job_init(v3d, file_priv, *clean_job,
293 v3d_job_free, 0, NULL, V3D_CACHE_CLEAN);
295 v3d_job_deallocate((void *)clean_job);
299 (*job)->args = *args;
301 ret = v3d_lookup_bos(&v3d->drm, file_priv, *clean_job,
302 args->bo_handles, args->bo_handle_count);
306 return v3d_lock_bo_reservations(*clean_job, acquire_ctx);
310 v3d_put_multisync_post_deps(struct v3d_submit_ext *se)
314 if (!(se && se->out_sync_count))
317 for (i = 0; i < se->out_sync_count; i++)
318 drm_syncobj_put(se->out_syncs[i].syncobj);
319 kvfree(se->out_syncs);
323 v3d_get_multisync_post_deps(struct drm_file *file_priv,
324 struct v3d_submit_ext *se,
325 u32 count, u64 handles)
327 struct drm_v3d_sem __user *post_deps;
333 se->out_syncs = (struct v3d_submit_outsync *)
334 kvmalloc_array(count,
335 sizeof(struct v3d_submit_outsync),
340 post_deps = u64_to_user_ptr(handles);
342 for (i = 0; i < count; i++) {
343 struct drm_v3d_sem out;
345 if (copy_from_user(&out, post_deps++, sizeof(out))) {
347 DRM_DEBUG("Failed to copy post dep handles\n");
351 se->out_syncs[i].syncobj = drm_syncobj_find(file_priv,
353 if (!se->out_syncs[i].syncobj) {
358 se->out_sync_count = count;
363 for (i--; i >= 0; i--)
364 drm_syncobj_put(se->out_syncs[i].syncobj);
365 kvfree(se->out_syncs);
370 /* Get data for multiple binary semaphores synchronization. Parse syncobj
371 * to be signaled when job completes (out_sync).
374 v3d_get_multisync_submit_deps(struct drm_file *file_priv,
375 struct drm_v3d_extension __user *ext,
376 struct v3d_submit_ext *se)
378 struct drm_v3d_multi_sync multisync;
381 if (se->in_sync_count || se->out_sync_count) {
382 DRM_DEBUG("Two multisync extensions were added to the same job.");
386 if (copy_from_user(&multisync, ext, sizeof(multisync)))
392 ret = v3d_get_multisync_post_deps(file_priv, se, multisync.out_sync_count,
393 multisync.out_syncs);
397 se->in_sync_count = multisync.in_sync_count;
398 se->in_syncs = multisync.in_syncs;
399 se->flags |= DRM_V3D_EXT_ID_MULTI_SYNC;
400 se->wait_stage = multisync.wait_stage;
405 /* Get data for the indirect CSD job submission. */
407 v3d_get_cpu_indirect_csd_params(struct drm_file *file_priv,
408 struct drm_v3d_extension __user *ext,
409 struct v3d_cpu_job *job)
411 struct v3d_file_priv *v3d_priv = file_priv->driver_priv;
412 struct v3d_dev *v3d = v3d_priv->v3d;
413 struct drm_v3d_indirect_csd indirect_csd;
414 struct v3d_indirect_csd_info *info = &job->indirect_csd;
417 DRM_DEBUG("CPU job extension was attached to a GPU job.\n");
422 DRM_DEBUG("Two CPU job extensions were added to the same CPU job.\n");
426 if (copy_from_user(&indirect_csd, ext, sizeof(indirect_csd)))
429 if (!v3d_has_csd(v3d)) {
430 DRM_DEBUG("Attempting CSD submit on non-CSD hardware.\n");
434 job->job_type = V3D_CPU_JOB_TYPE_INDIRECT_CSD;
435 info->offset = indirect_csd.offset;
436 info->wg_size = indirect_csd.wg_size;
437 memcpy(&info->wg_uniform_offsets, &indirect_csd.wg_uniform_offsets,
438 sizeof(indirect_csd.wg_uniform_offsets));
440 info->indirect = drm_gem_object_lookup(file_priv, indirect_csd.indirect);
442 return v3d_setup_csd_jobs_and_bos(file_priv, v3d, &indirect_csd.submit,
443 &info->job, &info->clean_job,
444 NULL, &info->acquire_ctx);
447 /* Get data for the query timestamp job submission. */
449 v3d_get_cpu_timestamp_query_params(struct drm_file *file_priv,
450 struct drm_v3d_extension __user *ext,
451 struct v3d_cpu_job *job)
453 u32 __user *offsets, *syncs;
454 struct drm_v3d_timestamp_query timestamp;
457 DRM_DEBUG("CPU job extension was attached to a GPU job.\n");
462 DRM_DEBUG("Two CPU job extensions were added to the same CPU job.\n");
466 if (copy_from_user(×tamp, ext, sizeof(timestamp)))
472 job->job_type = V3D_CPU_JOB_TYPE_TIMESTAMP_QUERY;
474 job->timestamp_query.queries = kvmalloc_array(timestamp.count,
475 sizeof(struct v3d_timestamp_query),
477 if (!job->timestamp_query.queries)
480 offsets = u64_to_user_ptr(timestamp.offsets);
481 syncs = u64_to_user_ptr(timestamp.syncs);
483 for (int i = 0; i < timestamp.count; i++) {
486 if (copy_from_user(&offset, offsets++, sizeof(offset))) {
487 kvfree(job->timestamp_query.queries);
491 job->timestamp_query.queries[i].offset = offset;
493 if (copy_from_user(&sync, syncs++, sizeof(sync))) {
494 kvfree(job->timestamp_query.queries);
498 job->timestamp_query.queries[i].syncobj = drm_syncobj_find(file_priv, sync);
500 job->timestamp_query.count = timestamp.count;
506 v3d_get_cpu_reset_timestamp_params(struct drm_file *file_priv,
507 struct drm_v3d_extension __user *ext,
508 struct v3d_cpu_job *job)
511 struct drm_v3d_reset_timestamp_query reset;
514 DRM_DEBUG("CPU job extension was attached to a GPU job.\n");
519 DRM_DEBUG("Two CPU job extensions were added to the same CPU job.\n");
523 if (copy_from_user(&reset, ext, sizeof(reset)))
526 job->job_type = V3D_CPU_JOB_TYPE_RESET_TIMESTAMP_QUERY;
528 job->timestamp_query.queries = kvmalloc_array(reset.count,
529 sizeof(struct v3d_timestamp_query),
531 if (!job->timestamp_query.queries)
534 syncs = u64_to_user_ptr(reset.syncs);
536 for (int i = 0; i < reset.count; i++) {
539 job->timestamp_query.queries[i].offset = reset.offset + 8 * i;
541 if (copy_from_user(&sync, syncs++, sizeof(sync))) {
542 kvfree(job->timestamp_query.queries);
546 job->timestamp_query.queries[i].syncobj = drm_syncobj_find(file_priv, sync);
548 job->timestamp_query.count = reset.count;
553 /* Get data for the copy timestamp query results job submission. */
555 v3d_get_cpu_copy_query_results_params(struct drm_file *file_priv,
556 struct drm_v3d_extension __user *ext,
557 struct v3d_cpu_job *job)
559 u32 __user *offsets, *syncs;
560 struct drm_v3d_copy_timestamp_query copy;
564 DRM_DEBUG("CPU job extension was attached to a GPU job.\n");
569 DRM_DEBUG("Two CPU job extensions were added to the same CPU job.\n");
573 if (copy_from_user(©, ext, sizeof(copy)))
579 job->job_type = V3D_CPU_JOB_TYPE_COPY_TIMESTAMP_QUERY;
581 job->timestamp_query.queries = kvmalloc_array(copy.count,
582 sizeof(struct v3d_timestamp_query),
584 if (!job->timestamp_query.queries)
587 offsets = u64_to_user_ptr(copy.offsets);
588 syncs = u64_to_user_ptr(copy.syncs);
590 for (i = 0; i < copy.count; i++) {
593 if (copy_from_user(&offset, offsets++, sizeof(offset))) {
594 kvfree(job->timestamp_query.queries);
598 job->timestamp_query.queries[i].offset = offset;
600 if (copy_from_user(&sync, syncs++, sizeof(sync))) {
601 kvfree(job->timestamp_query.queries);
605 job->timestamp_query.queries[i].syncobj = drm_syncobj_find(file_priv, sync);
607 job->timestamp_query.count = copy.count;
609 job->copy.do_64bit = copy.do_64bit;
610 job->copy.do_partial = copy.do_partial;
611 job->copy.availability_bit = copy.availability_bit;
612 job->copy.offset = copy.offset;
613 job->copy.stride = copy.stride;
619 v3d_get_cpu_reset_performance_params(struct drm_file *file_priv,
620 struct drm_v3d_extension __user *ext,
621 struct v3d_cpu_job *job)
624 u64 __user *kperfmon_ids;
625 struct drm_v3d_reset_performance_query reset;
628 DRM_DEBUG("CPU job extension was attached to a GPU job.\n");
633 DRM_DEBUG("Two CPU job extensions were added to the same CPU job.\n");
637 if (copy_from_user(&reset, ext, sizeof(reset)))
640 job->job_type = V3D_CPU_JOB_TYPE_RESET_PERFORMANCE_QUERY;
642 job->performance_query.queries = kvmalloc_array(reset.count,
643 sizeof(struct v3d_performance_query),
645 if (!job->performance_query.queries)
648 syncs = u64_to_user_ptr(reset.syncs);
649 kperfmon_ids = u64_to_user_ptr(reset.kperfmon_ids);
651 for (int i = 0; i < reset.count; i++) {
654 u32 __user *ids_pointer;
657 if (copy_from_user(&sync, syncs++, sizeof(sync))) {
658 kvfree(job->performance_query.queries);
662 job->performance_query.queries[i].syncobj = drm_syncobj_find(file_priv, sync);
664 if (copy_from_user(&ids, kperfmon_ids++, sizeof(ids))) {
665 kvfree(job->performance_query.queries);
669 ids_pointer = u64_to_user_ptr(ids);
671 for (int j = 0; j < reset.nperfmons; j++) {
672 if (copy_from_user(&id, ids_pointer++, sizeof(id))) {
673 kvfree(job->performance_query.queries);
677 job->performance_query.queries[i].kperfmon_ids[j] = id;
680 job->performance_query.count = reset.count;
681 job->performance_query.nperfmons = reset.nperfmons;
687 v3d_get_cpu_copy_performance_query_params(struct drm_file *file_priv,
688 struct drm_v3d_extension __user *ext,
689 struct v3d_cpu_job *job)
692 u64 __user *kperfmon_ids;
693 struct drm_v3d_copy_performance_query copy;
696 DRM_DEBUG("CPU job extension was attached to a GPU job.\n");
701 DRM_DEBUG("Two CPU job extensions were added to the same CPU job.\n");
705 if (copy_from_user(©, ext, sizeof(copy)))
711 job->job_type = V3D_CPU_JOB_TYPE_COPY_PERFORMANCE_QUERY;
713 job->performance_query.queries = kvmalloc_array(copy.count,
714 sizeof(struct v3d_performance_query),
716 if (!job->performance_query.queries)
719 syncs = u64_to_user_ptr(copy.syncs);
720 kperfmon_ids = u64_to_user_ptr(copy.kperfmon_ids);
722 for (int i = 0; i < copy.count; i++) {
725 u32 __user *ids_pointer;
728 if (copy_from_user(&sync, syncs++, sizeof(sync))) {
729 kvfree(job->performance_query.queries);
733 job->performance_query.queries[i].syncobj = drm_syncobj_find(file_priv, sync);
735 if (copy_from_user(&ids, kperfmon_ids++, sizeof(ids))) {
736 kvfree(job->performance_query.queries);
740 ids_pointer = u64_to_user_ptr(ids);
742 for (int j = 0; j < copy.nperfmons; j++) {
743 if (copy_from_user(&id, ids_pointer++, sizeof(id))) {
744 kvfree(job->performance_query.queries);
748 job->performance_query.queries[i].kperfmon_ids[j] = id;
751 job->performance_query.count = copy.count;
752 job->performance_query.nperfmons = copy.nperfmons;
753 job->performance_query.ncounters = copy.ncounters;
755 job->copy.do_64bit = copy.do_64bit;
756 job->copy.do_partial = copy.do_partial;
757 job->copy.availability_bit = copy.availability_bit;
758 job->copy.offset = copy.offset;
759 job->copy.stride = copy.stride;
764 /* Whenever userspace sets ioctl extensions, v3d_get_extensions parses data
765 * according to the extension id (name).
768 v3d_get_extensions(struct drm_file *file_priv,
770 struct v3d_submit_ext *se,
771 struct v3d_cpu_job *job)
773 struct drm_v3d_extension __user *user_ext;
776 user_ext = u64_to_user_ptr(ext_handles);
778 struct drm_v3d_extension ext;
780 if (copy_from_user(&ext, user_ext, sizeof(ext))) {
781 DRM_DEBUG("Failed to copy submit extension\n");
786 case DRM_V3D_EXT_ID_MULTI_SYNC:
787 ret = v3d_get_multisync_submit_deps(file_priv, user_ext, se);
789 case DRM_V3D_EXT_ID_CPU_INDIRECT_CSD:
790 ret = v3d_get_cpu_indirect_csd_params(file_priv, user_ext, job);
792 case DRM_V3D_EXT_ID_CPU_TIMESTAMP_QUERY:
793 ret = v3d_get_cpu_timestamp_query_params(file_priv, user_ext, job);
795 case DRM_V3D_EXT_ID_CPU_RESET_TIMESTAMP_QUERY:
796 ret = v3d_get_cpu_reset_timestamp_params(file_priv, user_ext, job);
798 case DRM_V3D_EXT_ID_CPU_COPY_TIMESTAMP_QUERY:
799 ret = v3d_get_cpu_copy_query_results_params(file_priv, user_ext, job);
801 case DRM_V3D_EXT_ID_CPU_RESET_PERFORMANCE_QUERY:
802 ret = v3d_get_cpu_reset_performance_params(file_priv, user_ext, job);
804 case DRM_V3D_EXT_ID_CPU_COPY_PERFORMANCE_QUERY:
805 ret = v3d_get_cpu_copy_performance_query_params(file_priv, user_ext, job);
808 DRM_DEBUG_DRIVER("Unknown extension id: %d\n", ext.id);
815 user_ext = u64_to_user_ptr(ext.next);
822 * v3d_submit_cl_ioctl() - Submits a job (frame) to the V3D.
824 * @data: ioctl argument
825 * @file_priv: DRM file for this fd
827 * This is the main entrypoint for userspace to submit a 3D frame to
828 * the GPU. Userspace provides the binner command list (if
829 * applicable), and the kernel sets up the render command list to draw
830 * to the framebuffer described in the ioctl, using the command lists
831 * that the 3D engine's binner will produce.
834 v3d_submit_cl_ioctl(struct drm_device *dev, void *data,
835 struct drm_file *file_priv)
837 struct v3d_dev *v3d = to_v3d_dev(dev);
838 struct v3d_file_priv *v3d_priv = file_priv->driver_priv;
839 struct drm_v3d_submit_cl *args = data;
840 struct v3d_submit_ext se = {0};
841 struct v3d_bin_job *bin = NULL;
842 struct v3d_render_job *render = NULL;
843 struct v3d_job *clean_job = NULL;
844 struct v3d_job *last_job;
845 struct ww_acquire_ctx acquire_ctx;
848 trace_v3d_submit_cl_ioctl(&v3d->drm, args->rcl_start, args->rcl_end);
854 args->flags & ~(DRM_V3D_SUBMIT_CL_FLUSH_CACHE |
855 DRM_V3D_SUBMIT_EXTENSION)) {
856 DRM_INFO("invalid flags: %d\n", args->flags);
860 if (args->flags & DRM_V3D_SUBMIT_EXTENSION) {
861 ret = v3d_get_extensions(file_priv, args->extensions, &se, NULL);
863 DRM_DEBUG("Failed to get extensions.\n");
868 ret = v3d_job_allocate((void *)&render, sizeof(*render));
872 ret = v3d_job_init(v3d, file_priv, &render->base,
873 v3d_render_job_free, args->in_sync_rcl, &se, V3D_RENDER);
875 v3d_job_deallocate((void *)&render);
879 render->start = args->rcl_start;
880 render->end = args->rcl_end;
881 INIT_LIST_HEAD(&render->unref_list);
883 if (args->bcl_start != args->bcl_end) {
884 ret = v3d_job_allocate((void *)&bin, sizeof(*bin));
888 ret = v3d_job_init(v3d, file_priv, &bin->base,
889 v3d_job_free, args->in_sync_bcl, &se, V3D_BIN);
891 v3d_job_deallocate((void *)&bin);
895 bin->start = args->bcl_start;
896 bin->end = args->bcl_end;
897 bin->qma = args->qma;
898 bin->qms = args->qms;
899 bin->qts = args->qts;
900 bin->render = render;
903 if (args->flags & DRM_V3D_SUBMIT_CL_FLUSH_CACHE) {
904 ret = v3d_job_allocate((void *)&clean_job, sizeof(*clean_job));
908 ret = v3d_job_init(v3d, file_priv, clean_job,
909 v3d_job_free, 0, NULL, V3D_CACHE_CLEAN);
911 v3d_job_deallocate((void *)&clean_job);
915 last_job = clean_job;
917 last_job = &render->base;
920 ret = v3d_lookup_bos(dev, file_priv, last_job,
921 args->bo_handles, args->bo_handle_count);
925 ret = v3d_lock_bo_reservations(last_job, &acquire_ctx);
929 if (args->perfmon_id) {
930 render->base.perfmon = v3d_perfmon_find(v3d_priv,
933 if (!render->base.perfmon) {
939 mutex_lock(&v3d->sched_lock);
941 bin->base.perfmon = render->base.perfmon;
942 v3d_perfmon_get(bin->base.perfmon);
943 v3d_push_job(&bin->base);
945 ret = drm_sched_job_add_dependency(&render->base.base,
946 dma_fence_get(bin->base.done_fence));
951 v3d_push_job(&render->base);
954 struct dma_fence *render_fence =
955 dma_fence_get(render->base.done_fence);
956 ret = drm_sched_job_add_dependency(&clean_job->base,
960 clean_job->perfmon = render->base.perfmon;
961 v3d_perfmon_get(clean_job->perfmon);
962 v3d_push_job(clean_job);
965 mutex_unlock(&v3d->sched_lock);
967 v3d_attach_fences_and_unlock_reservation(file_priv,
972 last_job->done_fence);
974 v3d_job_put(&bin->base);
975 v3d_job_put(&render->base);
976 v3d_job_put(clean_job);
981 mutex_unlock(&v3d->sched_lock);
983 drm_gem_unlock_reservations(last_job->bo,
984 last_job->bo_count, &acquire_ctx);
986 v3d_job_cleanup((void *)bin);
987 v3d_job_cleanup((void *)render);
988 v3d_job_cleanup(clean_job);
989 v3d_put_multisync_post_deps(&se);
995 * v3d_submit_tfu_ioctl() - Submits a TFU (texture formatting) job to the V3D.
997 * @data: ioctl argument
998 * @file_priv: DRM file for this fd
1000 * Userspace provides the register setup for the TFU, which we don't
1001 * need to validate since the TFU is behind the MMU.
1004 v3d_submit_tfu_ioctl(struct drm_device *dev, void *data,
1005 struct drm_file *file_priv)
1007 struct v3d_dev *v3d = to_v3d_dev(dev);
1008 struct drm_v3d_submit_tfu *args = data;
1009 struct v3d_submit_ext se = {0};
1010 struct v3d_tfu_job *job = NULL;
1011 struct ww_acquire_ctx acquire_ctx;
1014 trace_v3d_submit_tfu_ioctl(&v3d->drm, args->iia);
1016 if (args->flags && !(args->flags & DRM_V3D_SUBMIT_EXTENSION)) {
1017 DRM_DEBUG("invalid flags: %d\n", args->flags);
1021 if (args->flags & DRM_V3D_SUBMIT_EXTENSION) {
1022 ret = v3d_get_extensions(file_priv, args->extensions, &se, NULL);
1024 DRM_DEBUG("Failed to get extensions.\n");
1029 ret = v3d_job_allocate((void *)&job, sizeof(*job));
1033 ret = v3d_job_init(v3d, file_priv, &job->base,
1034 v3d_job_free, args->in_sync, &se, V3D_TFU);
1036 v3d_job_deallocate((void *)&job);
1040 job->base.bo = kcalloc(ARRAY_SIZE(args->bo_handles),
1041 sizeof(*job->base.bo), GFP_KERNEL);
1042 if (!job->base.bo) {
1049 for (job->base.bo_count = 0;
1050 job->base.bo_count < ARRAY_SIZE(args->bo_handles);
1051 job->base.bo_count++) {
1052 struct drm_gem_object *bo;
1054 if (!args->bo_handles[job->base.bo_count])
1057 bo = drm_gem_object_lookup(file_priv, args->bo_handles[job->base.bo_count]);
1059 DRM_DEBUG("Failed to look up GEM BO %d: %d\n",
1061 args->bo_handles[job->base.bo_count]);
1065 job->base.bo[job->base.bo_count] = bo;
1068 ret = v3d_lock_bo_reservations(&job->base, &acquire_ctx);
1072 mutex_lock(&v3d->sched_lock);
1073 v3d_push_job(&job->base);
1074 mutex_unlock(&v3d->sched_lock);
1076 v3d_attach_fences_and_unlock_reservation(file_priv,
1077 &job->base, &acquire_ctx,
1080 job->base.done_fence);
1082 v3d_job_put(&job->base);
1087 v3d_job_cleanup((void *)job);
1088 v3d_put_multisync_post_deps(&se);
1094 * v3d_submit_csd_ioctl() - Submits a CSD (compute shader) job to the V3D.
1096 * @data: ioctl argument
1097 * @file_priv: DRM file for this fd
1099 * Userspace provides the register setup for the CSD, which we don't
1100 * need to validate since the CSD is behind the MMU.
1103 v3d_submit_csd_ioctl(struct drm_device *dev, void *data,
1104 struct drm_file *file_priv)
1106 struct v3d_dev *v3d = to_v3d_dev(dev);
1107 struct v3d_file_priv *v3d_priv = file_priv->driver_priv;
1108 struct drm_v3d_submit_csd *args = data;
1109 struct v3d_submit_ext se = {0};
1110 struct v3d_csd_job *job = NULL;
1111 struct v3d_job *clean_job = NULL;
1112 struct ww_acquire_ctx acquire_ctx;
1115 trace_v3d_submit_csd_ioctl(&v3d->drm, args->cfg[5], args->cfg[6]);
1120 if (!v3d_has_csd(v3d)) {
1121 DRM_DEBUG("Attempting CSD submit on non-CSD hardware\n");
1125 if (args->flags && !(args->flags & DRM_V3D_SUBMIT_EXTENSION)) {
1126 DRM_INFO("invalid flags: %d\n", args->flags);
1130 if (args->flags & DRM_V3D_SUBMIT_EXTENSION) {
1131 ret = v3d_get_extensions(file_priv, args->extensions, &se, NULL);
1133 DRM_DEBUG("Failed to get extensions.\n");
1138 ret = v3d_setup_csd_jobs_and_bos(file_priv, v3d, args,
1139 &job, &clean_job, &se,
1144 if (args->perfmon_id) {
1145 job->base.perfmon = v3d_perfmon_find(v3d_priv,
1147 if (!job->base.perfmon) {
1153 mutex_lock(&v3d->sched_lock);
1154 v3d_push_job(&job->base);
1156 ret = drm_sched_job_add_dependency(&clean_job->base,
1157 dma_fence_get(job->base.done_fence));
1159 goto fail_unreserve;
1161 v3d_push_job(clean_job);
1162 mutex_unlock(&v3d->sched_lock);
1164 v3d_attach_fences_and_unlock_reservation(file_priv,
1169 clean_job->done_fence);
1171 v3d_job_put(&job->base);
1172 v3d_job_put(clean_job);
1177 mutex_unlock(&v3d->sched_lock);
1179 drm_gem_unlock_reservations(clean_job->bo, clean_job->bo_count,
1182 v3d_job_cleanup((void *)job);
1183 v3d_job_cleanup(clean_job);
1184 v3d_put_multisync_post_deps(&se);
1189 static const unsigned int cpu_job_bo_handle_count[] = {
1190 [V3D_CPU_JOB_TYPE_INDIRECT_CSD] = 1,
1191 [V3D_CPU_JOB_TYPE_TIMESTAMP_QUERY] = 1,
1192 [V3D_CPU_JOB_TYPE_RESET_TIMESTAMP_QUERY] = 1,
1193 [V3D_CPU_JOB_TYPE_COPY_TIMESTAMP_QUERY] = 2,
1194 [V3D_CPU_JOB_TYPE_RESET_PERFORMANCE_QUERY] = 0,
1195 [V3D_CPU_JOB_TYPE_COPY_PERFORMANCE_QUERY] = 1,
1199 * v3d_submit_cpu_ioctl() - Submits a CPU job to the V3D.
1201 * @data: ioctl argument
1202 * @file_priv: DRM file for this fd
1204 * Userspace specifies the CPU job type and data required to perform its
1205 * operations through the drm_v3d_extension struct.
1208 v3d_submit_cpu_ioctl(struct drm_device *dev, void *data,
1209 struct drm_file *file_priv)
1211 struct v3d_dev *v3d = to_v3d_dev(dev);
1212 struct drm_v3d_submit_cpu *args = data;
1213 struct v3d_submit_ext se = {0};
1214 struct v3d_submit_ext *out_se = NULL;
1215 struct v3d_cpu_job *cpu_job = NULL;
1216 struct v3d_csd_job *csd_job = NULL;
1217 struct v3d_job *clean_job = NULL;
1218 struct ww_acquire_ctx acquire_ctx;
1221 if (args->flags && !(args->flags & DRM_V3D_SUBMIT_EXTENSION)) {
1222 DRM_INFO("Invalid flags: %d\n", args->flags);
1226 ret = v3d_job_allocate((void *)&cpu_job, sizeof(*cpu_job));
1230 if (args->flags & DRM_V3D_SUBMIT_EXTENSION) {
1231 ret = v3d_get_extensions(file_priv, args->extensions, &se, cpu_job);
1233 DRM_DEBUG("Failed to get extensions.\n");
1238 /* Every CPU job must have a CPU job user extension */
1239 if (!cpu_job->job_type) {
1240 DRM_DEBUG("CPU job must have a CPU job user extension.\n");
1245 if (args->bo_handle_count != cpu_job_bo_handle_count[cpu_job->job_type]) {
1246 DRM_DEBUG("This CPU job was not submitted with the proper number of BOs.\n");
1251 trace_v3d_submit_cpu_ioctl(&v3d->drm, cpu_job->job_type);
1253 ret = v3d_job_init(v3d, file_priv, &cpu_job->base,
1254 v3d_job_free, 0, &se, V3D_CPU);
1256 v3d_job_deallocate((void *)&cpu_job);
1260 clean_job = cpu_job->indirect_csd.clean_job;
1261 csd_job = cpu_job->indirect_csd.job;
1263 if (args->bo_handle_count) {
1264 ret = v3d_lookup_bos(dev, file_priv, &cpu_job->base,
1265 args->bo_handles, args->bo_handle_count);
1269 ret = v3d_lock_bo_reservations(&cpu_job->base, &acquire_ctx);
1274 mutex_lock(&v3d->sched_lock);
1275 v3d_push_job(&cpu_job->base);
1277 switch (cpu_job->job_type) {
1278 case V3D_CPU_JOB_TYPE_INDIRECT_CSD:
1279 ret = drm_sched_job_add_dependency(&csd_job->base.base,
1280 dma_fence_get(cpu_job->base.done_fence));
1282 goto fail_unreserve;
1284 v3d_push_job(&csd_job->base);
1286 ret = drm_sched_job_add_dependency(&clean_job->base,
1287 dma_fence_get(csd_job->base.done_fence));
1289 goto fail_unreserve;
1291 v3d_push_job(clean_job);
1297 mutex_unlock(&v3d->sched_lock);
1299 out_se = (cpu_job->job_type == V3D_CPU_JOB_TYPE_INDIRECT_CSD) ? NULL : &se;
1301 v3d_attach_fences_and_unlock_reservation(file_priv,
1304 out_se, cpu_job->base.done_fence);
1306 switch (cpu_job->job_type) {
1307 case V3D_CPU_JOB_TYPE_INDIRECT_CSD:
1308 v3d_attach_fences_and_unlock_reservation(file_priv,
1310 &cpu_job->indirect_csd.acquire_ctx,
1311 0, &se, clean_job->done_fence);
1317 v3d_job_put(&cpu_job->base);
1318 v3d_job_put(&csd_job->base);
1319 v3d_job_put(clean_job);
1324 mutex_unlock(&v3d->sched_lock);
1326 drm_gem_unlock_reservations(cpu_job->base.bo, cpu_job->base.bo_count,
1329 drm_gem_unlock_reservations(clean_job->bo, clean_job->bo_count,
1330 &cpu_job->indirect_csd.acquire_ctx);
1333 v3d_job_cleanup((void *)cpu_job);
1334 v3d_job_cleanup((void *)csd_job);
1335 v3d_job_cleanup(clean_job);
1336 v3d_put_multisync_post_deps(&se);
1337 kvfree(cpu_job->timestamp_query.queries);
1338 kvfree(cpu_job->performance_query.queries);