/openbmc/linux/drivers/dma-buf/ |
H A D | dma-resv.c | 65 u32 num_fences, max_fences; member 125 for (i = 0; i < list->num_fences; ++i) { in dma_resv_list_free() 182 int dma_resv_reserve_fences(struct dma_resv *obj, unsigned int num_fences) in dma_resv_reserve_fences() argument 191 if ((old->num_fences + num_fences) <= old->max_fences) in dma_resv_reserve_fences() 193 max = max(old->num_fences + num_fences, old->max_fences * 2); in dma_resv_reserve_fences() 195 max = max(4ul, roundup_pow_of_two(num_fences)); in dma_resv_reserve_fences() 208 for (i = 0, j = 0, k = max; i < (old ? old->num_fences : 0); ++i) { in dma_resv_reserve_fences() 218 new->num_fences = j; in dma_resv_reserve_fences() 264 fences->max_fences = fences->num_fences; in dma_resv_reset_max_fences() 297 count = fobj->num_fences; in dma_resv_add_fence() [all …]
|
H A D | dma-fence-array.c | 76 for (i = 0; i < array->num_fences; ++i) { in dma_fence_array_enable_signaling() 129 for (i = 0; i < array->num_fences; ++i) { in dma_fence_array_signaled() 145 for (i = 0; i < array->num_fences; ++i) in dma_fence_array_release() 158 for (i = 0; i < array->num_fences; ++i) in dma_fence_array_set_deadline() 191 struct dma_fence_array *dma_fence_array_create(int num_fences, in dma_fence_array_create() argument 199 WARN_ON(!num_fences || !fences); in dma_fence_array_create() 202 size += num_fences * sizeof(struct dma_fence_array_cb); in dma_fence_array_create() 212 array->num_fences = num_fences; in dma_fence_array_create() 213 atomic_set(&array->num_pending, signal_on_any ? 1 : num_fences); in dma_fence_array_create() 229 while (num_fences--) in dma_fence_array_create() [all …]
|
H A D | sync_file.c | 285 unsigned int num_fences; in sync_file_ioctl_fence_info() local 296 num_fences = 0; in sync_file_ioctl_fence_info() 298 ++num_fences; in sync_file_ioctl_fence_info() 306 if (!info.num_fences) { in sync_file_ioctl_fence_info() 313 if (info.num_fences < num_fences) in sync_file_ioctl_fence_info() 316 size = num_fences * sizeof(*fence_info); in sync_file_ioctl_fence_info() 321 num_fences = 0; in sync_file_ioctl_fence_info() 325 status = sync_fill_fence_info(fence, &fence_info[num_fences++]); in sync_file_ioctl_fence_info() 337 info.num_fences = num_fences; in sync_file_ioctl_fence_info()
|
H A D | st-dma-fence-unwrap.c | 46 static struct dma_fence *mock_array(unsigned int num_fences, ...) in mock_array() argument 53 fences = kcalloc(num_fences, sizeof(*fences), GFP_KERNEL); in mock_array() 57 va_start(valist, num_fences); in mock_array() 58 for (i = 0; i < num_fences; ++i) in mock_array() 62 array = dma_fence_array_create(num_fences, fences, in mock_array() 73 va_start(valist, num_fences); in mock_array() 74 for (i = 0; i < num_fences; ++i) in mock_array()
|
H A D | dma-fence-unwrap.c | 83 struct dma_fence *__dma_fence_unwrap_merge(unsigned int num_fences, in __dma_fence_unwrap_merge() argument 94 for (i = 0; i < num_fences; ++i) { in __dma_fence_unwrap_merge() 119 for (i = 0; i < num_fences; ++i) { in __dma_fence_unwrap_merge()
|
H A D | dma-buf.c | 399 unsigned int num_fences; in dma_buf_import_sync_file() local 418 num_fences = 0; in dma_buf_import_sync_file() 420 ++num_fences; in dma_buf_import_sync_file() 422 if (num_fences > 0) { in dma_buf_import_sync_file() 425 ret = dma_resv_reserve_fences(dmabuf->resv, num_fences); in dma_buf_import_sync_file()
|
H A D | sync_debug.c | 134 for (i = 0; i < array->num_fences; ++i) in sync_print_sync_file()
|
/openbmc/linux/tools/testing/selftests/sync/ |
H A D | sync.c | 88 int err, num_fences; in sync_file_info() local 100 num_fences = info->num_fences; in sync_file_info() 102 if (num_fences) { in sync_file_info() 104 info->num_fences = num_fences; in sync_file_info() 106 fence_info = calloc(num_fences, sizeof(*fence_info)); in sync_file_info() 139 count = info->num_fences; in sync_fence_size() 156 for (i = 0 ; i < info->num_fences ; i++) { in sync_fence_count_with_status()
|
/openbmc/linux/drivers/gpu/drm/i915/gt/ |
H A D | intel_ggtt_fencing.c | 513 for (i = 0; i < ggtt->num_fences; i++) in intel_ggtt_restore_fences() 843 int num_fences; in intel_ggtt_init_fences() local 852 num_fences = 0; in intel_ggtt_init_fences() 855 num_fences = 32; in intel_ggtt_init_fences() 859 num_fences = 16; in intel_ggtt_init_fences() 861 num_fences = 8; in intel_ggtt_init_fences() 864 num_fences = intel_uncore_read(uncore, in intel_ggtt_init_fences() 866 ggtt->fence_regs = kcalloc(num_fences, in intel_ggtt_init_fences() 870 num_fences = 0; in intel_ggtt_init_fences() 873 for (i = 0; i < num_fences; i++) { in intel_ggtt_init_fences() [all …]
|
H A D | intel_gt_types.h | 320 #define intel_gt_support_legacy_fencing(gt) ((gt)->ggtt->num_fences > 0)
|
/openbmc/linux/drivers/gpu/drm/ttm/ |
H A D | ttm_execbuf_util.c | 89 unsigned int num_fences; in ttm_eu_reserve_buffers() local 100 num_fences = max(entry->num_shared, 1u); in ttm_eu_reserve_buffers() 103 num_fences); in ttm_eu_reserve_buffers() 120 num_fences); in ttm_eu_reserve_buffers()
|
/openbmc/linux/drivers/gpu/drm/ |
H A D | drm_exec.c | 284 unsigned int num_fences) in drm_exec_prepare_obj() argument 292 ret = dma_resv_reserve_fences(obj->resv, num_fences); in drm_exec_prepare_obj() 318 unsigned int num_fences) in drm_exec_prepare_array() argument 323 ret = drm_exec_prepare_obj(exec, objects[i], num_fences); in drm_exec_prepare_array()
|
H A D | drm_atomic_uapi.c | 1156 unsigned int *num_fences) in prepare_signaling() argument 1202 (*num_fences + 1), GFP_KERNEL); in prepare_signaling() 1206 memset(&f[*num_fences], 0, sizeof(*f)); in prepare_signaling() 1208 f[*num_fences].out_fence_ptr = fence_ptr; in prepare_signaling() 1215 ret = setup_out_fence(&f[(*num_fences)++], fence); in prepare_signaling() 1241 (*num_fences + 1), GFP_KERNEL); in prepare_signaling() 1245 memset(&f[*num_fences], 0, sizeof(*f)); in prepare_signaling() 1247 f[*num_fences].out_fence_ptr = fence_ptr; in prepare_signaling() 1255 ret = setup_out_fence(&f[(*num_fences)++], fence); in prepare_signaling() 1279 unsigned int num_fences, in complete_signaling() argument [all …]
|
/openbmc/linux/include/linux/ |
H A D | dma-fence-array.h | 41 unsigned num_fences; member 79 struct dma_fence_array *dma_fence_array_create(int num_fences,
|
H A D | dma-resv.h | 213 unsigned int num_fences; member 469 int dma_resv_reserve_fences(struct dma_resv *obj, unsigned int num_fences); 476 unsigned int *num_fences, struct dma_fence ***fences);
|
H A D | dma-fence-unwrap.h | 51 struct dma_fence *__dma_fence_unwrap_merge(unsigned int num_fences,
|
/openbmc/linux/include/drm/ |
H A D | drm_exec.h | 144 unsigned int num_fences); 148 unsigned int num_fences);
|
/openbmc/linux/drivers/gpu/drm/i915/gem/ |
H A D | i915_gem_execbuffer.c | 313 unsigned long num_fences; member 2824 SIZE_MAX / sizeof(*f)) - eb->num_fences) in add_timeline_fence_array() 2836 (eb->num_fences + nfences) * sizeof(*f), in add_timeline_fence_array() 2842 f += eb->num_fences; in add_timeline_fence_array() 2934 eb->num_fences++; in add_timeline_fence_array() 2944 unsigned long num_fences = args->num_cliprects; in add_fence_array() local 2950 if (!num_fences) in add_fence_array() 2955 if (num_fences > min_t(unsigned long, in add_fence_array() 2957 SIZE_MAX / sizeof(*f) - eb->num_fences)) in add_fence_array() 2961 if (!access_ok(user, num_fences * sizeof(*user))) in add_fence_array() [all …]
|
H A D | i915_gem_tiling.c | 351 if (!to_gt(dev_priv)->ggtt->num_fences) in i915_gem_set_tiling_ioctl() 434 if (!to_gt(dev_priv)->ggtt->num_fences) in i915_gem_get_tiling_ioctl()
|
H A D | i915_gem_busy.c | 64 unsigned int nchild = array->num_fences; in __busy_set_if_active()
|
H A D | i915_gem_wait.c | 128 for (i = 0; i < array->num_fences; i++) in i915_gem_fence_wait_priority()
|
/openbmc/linux/include/uapi/linux/ |
H A D | sync_file.h | 73 __u32 num_fences; member
|
/openbmc/linux/drivers/gpu/drm/i915/ |
H A D | i915_getparam.c | 38 value = to_gt(i915)->ggtt->num_fences; in i915_getparam_ioctl()
|
/openbmc/linux/drivers/gpu/drm/i915/selftests/ |
H A D | i915_request.c | 285 atomic_long_t num_waits, num_fences; member 316 unsigned int num_waits = 0, num_fences = 0; in __igt_breadcrumbs_smoketest() local 439 num_fences += count; in __igt_breadcrumbs_smoketest() 445 atomic_long_add(num_fences, &t->num_fences); in __igt_breadcrumbs_smoketest() 527 atomic_long_read(&t.num_fences), in mock_breadcrumbs_smoketest() 1730 unsigned long num_waits, num_fences; in live_breadcrumbs_smoketest() local 1831 num_fences = 0; in live_breadcrumbs_smoketest() 1850 num_fences += atomic_long_read(&smoke[idx].num_fences); in live_breadcrumbs_smoketest() 1854 num_waits, num_fences, idx, ncpus); in live_breadcrumbs_smoketest()
|
/openbmc/linux/drivers/gpu/drm/amd/amdgpu/ |
H A D | amdgpu_vm.h | 408 unsigned int num_fences);
|