Home
last modified time | relevance | path

Searched refs:sync (Results 1 - 25 of 1915) sorted by relevance

12345678910>>...77

/third_party/mesa3d/src/gallium/frontends/lavapipe/
H A Dlvp_pipe_sync.c28 lvp_pipe_sync_validate(ASSERTED struct lvp_pipe_sync *sync) in lvp_pipe_sync_validate() argument
30 if (sync->signaled) in lvp_pipe_sync_validate()
31 assert(sync->fence == NULL); in lvp_pipe_sync_validate()
39 struct lvp_pipe_sync *sync = vk_sync_as_lvp_pipe_sync(vk_sync); in lvp_pipe_sync_init() local
41 mtx_init(&sync->lock, mtx_plain); in lvp_pipe_sync_init()
42 cnd_init(&sync->changed); in lvp_pipe_sync_init()
43 sync->signaled = (initial_value != 0); in lvp_pipe_sync_init()
44 sync->fence = NULL; in lvp_pipe_sync_init()
54 struct lvp_pipe_sync *sync = vk_sync_as_lvp_pipe_sync(vk_sync); in lvp_pipe_sync_finish() local
56 lvp_pipe_sync_validate(sync); in lvp_pipe_sync_finish()
64 lvp_pipe_sync_signal_with_fence(struct lvp_device *device, struct lvp_pipe_sync *sync, struct pipe_fence_handle *fence) lvp_pipe_sync_signal_with_fence() argument
82 struct lvp_pipe_sync *sync = vk_sync_as_lvp_pipe_sync(vk_sync); lvp_pipe_sync_signal() local
100 struct lvp_pipe_sync *sync = vk_sync_as_lvp_pipe_sync(vk_sync); lvp_pipe_sync_reset() local
143 lvp_pipe_sync_wait_locked(struct lvp_device *device, struct lvp_pipe_sync *sync, uint64_t wait_value, enum vk_sync_wait_flags wait_flags, uint64_t abs_timeout_ns) lvp_pipe_sync_wait_locked() argument
230 struct lvp_pipe_sync *sync = vk_sync_as_lvp_pipe_sync(vk_sync); lvp_pipe_sync_wait() local
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/i915/selftests/
H A Di915_syncmap.c101 static int check_syncmap_free(struct i915_syncmap **sync) in check_syncmap_free() argument
103 i915_syncmap_free(sync); in check_syncmap_free()
104 if (*sync) { in check_syncmap_free()
105 pr_err("sync not cleared after free\n"); in check_syncmap_free()
112 static int dump_syncmap(struct i915_syncmap *sync, int err) in dump_syncmap() argument
117 return check_syncmap_free(&sync); in dump_syncmap()
123 if (i915_syncmap_print_to_buf(sync, buf, PAGE_SIZE)) in dump_syncmap()
129 i915_syncmap_free(&sync); in dump_syncmap()
135 struct i915_syncmap *sync = (void *)~0ul; in igt_syncmap_init() local
142 i915_syncmap_init(&sync); in igt_syncmap_init()
163 check_one(struct i915_syncmap **sync, u64 context, u32 seqno) check_one() argument
206 struct i915_syncmap *sync; igt_syncmap_one() local
238 check_leaf(struct i915_syncmap **sync, u64 context, u32 seqno) check_leaf() argument
273 struct i915_syncmap *sync; igt_syncmap_join_above() local
334 struct i915_syncmap *sync; igt_syncmap_join_below() local
404 struct i915_syncmap *sync; igt_syncmap_neighbours() local
448 struct i915_syncmap *sync; igt_syncmap_compact() local
546 struct i915_syncmap *sync; igt_syncmap_random() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/i915/selftests/
H A Di915_syncmap.c101 static int check_syncmap_free(struct i915_syncmap **sync) in check_syncmap_free() argument
103 i915_syncmap_free(sync); in check_syncmap_free()
104 if (*sync) { in check_syncmap_free()
105 pr_err("sync not cleared after free\n"); in check_syncmap_free()
112 static int dump_syncmap(struct i915_syncmap *sync, int err) in dump_syncmap() argument
117 return check_syncmap_free(&sync); in dump_syncmap()
123 if (i915_syncmap_print_to_buf(sync, buf, PAGE_SIZE)) in dump_syncmap()
129 i915_syncmap_free(&sync); in dump_syncmap()
135 struct i915_syncmap *sync = (void *)~0ul; in igt_syncmap_init() local
142 i915_syncmap_init(&sync); in igt_syncmap_init()
163 check_one(struct i915_syncmap **sync, u64 context, u32 seqno) check_one() argument
206 struct i915_syncmap *sync; igt_syncmap_one() local
238 check_leaf(struct i915_syncmap **sync, u64 context, u32 seqno) check_leaf() argument
273 struct i915_syncmap *sync; igt_syncmap_join_above() local
334 struct i915_syncmap *sync; igt_syncmap_join_below() local
404 struct i915_syncmap *sync; igt_syncmap_neighbours() local
448 struct i915_syncmap *sync; igt_syncmap_compact() local
546 struct i915_syncmap *sync; igt_syncmap_random() local
[all...]
/third_party/mesa3d/src/vulkan/runtime/
H A Dvk_sync.c82 struct vk_sync *sync, in vk_sync_init()
94 assert(type->size >= sizeof(*sync)); in vk_sync_init()
95 memset(sync, 0, type->size); in vk_sync_init()
96 sync->type = type; in vk_sync_init()
97 sync->flags = flags; in vk_sync_init()
99 return type->init(device, sync, initial_value); in vk_sync_init()
104 struct vk_sync *sync) in vk_sync_finish()
106 sync->type->finish(device, sync); in vk_sync_finish()
116 struct vk_sync *sync; in vk_sync_create() local
81 vk_sync_init(struct vk_device *device, struct vk_sync *sync, const struct vk_sync_type *type, enum vk_sync_flags flags, uint64_t initial_value) vk_sync_init() argument
103 vk_sync_finish(struct vk_device *device, struct vk_sync *sync) vk_sync_finish() argument
135 vk_sync_destroy(struct vk_device *device, struct vk_sync *sync) vk_sync_destroy() argument
143 vk_sync_signal(struct vk_device *device, struct vk_sync *sync, uint64_t value) vk_sync_signal() argument
158 vk_sync_get_value(struct vk_device *device, struct vk_sync *sync, uint64_t *value) vk_sync_get_value() argument
167 vk_sync_reset(struct vk_device *device, struct vk_sync *sync) vk_sync_reset() argument
187 assert_valid_wait(struct vk_sync *sync, uint64_t wait_value, enum vk_sync_wait_flags wait_flags) assert_valid_wait() argument
214 __vk_sync_wait(struct vk_device *device, struct vk_sync *sync, uint64_t wait_value, enum vk_sync_wait_flags wait_flags, uint64_t abs_timeout_ns) __vk_sync_wait() argument
240 vk_sync_wait(struct vk_device *device, struct vk_sync *sync, uint64_t wait_value, enum vk_sync_wait_flags wait_flags, uint64_t abs_timeout_ns) vk_sync_wait() argument
349 vk_sync_import_opaque_fd(struct vk_device *device, struct vk_sync *sync, int fd) vk_sync_import_opaque_fd() argument
364 vk_sync_export_opaque_fd(struct vk_device *device, struct vk_sync *sync, int *fd) vk_sync_export_opaque_fd() argument
380 vk_sync_import_sync_file(struct vk_device *device, struct vk_sync *sync, int sync_file) vk_sync_import_sync_file() argument
396 vk_sync_export_sync_file(struct vk_device *device, struct vk_sync *sync, int *sync_file) vk_sync_export_sync_file() argument
[all...]
H A Dvk_sync.h39 /** Set if a sync type supports the binary mode of operation
59 /** Set if a sync type supports the timeline mode of operation
80 /** Set if this sync supports GPU waits */
83 /** Set if a sync type supports multiple GPU waits on one signal state
97 /** Set if a sync type supports vk_sync_wait() and vk_sync_wait_many() */
100 /** Set if a sync type supports vk_sync_reset()
106 /** Set if a sync type supports vk_sync_signal() */
111 * vk_sync_wait_many() will support the bit regardless. If the sync type
116 /** Set if a sync type supports the VK_SYNC_WAIT_PENDING bit
123 /** Set if a sync typ
295 struct vk_sync *sync; global() member
302 struct vk_sync *sync; global() member
[all...]
H A Dvk_sync_binary.c29 to_vk_sync_binary(struct vk_sync *sync) in to_vk_sync_binary() argument
31 assert(sync->type->init == vk_sync_binary_init); in to_vk_sync_binary()
33 return container_of(sync, struct vk_sync_binary, sync); in to_vk_sync_binary()
38 struct vk_sync *sync, in vk_sync_binary_init()
41 struct vk_sync_binary *binary = to_vk_sync_binary(sync); in vk_sync_binary_init()
44 container_of(binary->sync.type, struct vk_sync_binary_type, sync); in vk_sync_binary_init()
46 assert(!(sync->flags & VK_SYNC_IS_TIMELINE)); in vk_sync_binary_init()
47 assert(!(sync in vk_sync_binary_init()
37 vk_sync_binary_init(struct vk_device *device, struct vk_sync *sync, uint64_t initial_value) vk_sync_binary_init() argument
56 vk_sync_binary_finish(struct vk_device *device, struct vk_sync *sync) vk_sync_binary_finish() argument
65 vk_sync_binary_reset(struct vk_device *device, struct vk_sync *sync) vk_sync_binary_reset() argument
76 vk_sync_binary_signal(struct vk_device *device, struct vk_sync *sync, uint64_t value) vk_sync_binary_signal() argument
[all...]
/third_party/mesa3d/src/egl/main/
H A Deglsync.c39 * Parse the list of sync attributes and return the proper error code.
42 _eglParseSyncAttribList(_EGLSync *sync, const EGLAttrib *attrib_list) in _eglParseSyncAttribList() argument
56 if (sync->Type == EGL_SYNC_CL_EVENT_KHR) { in _eglParseSyncAttribList()
57 sync->CLEvent = val; in _eglParseSyncAttribList()
63 if (sync->Type == EGL_SYNC_NATIVE_FENCE_ANDROID) { in _eglParseSyncAttribList()
65 sync->SyncFd = val; in _eglParseSyncAttribList()
76 _eglLog(_EGL_DEBUG, "bad sync attribute 0x%" PRIxPTR, attr); in _eglParseSyncAttribList()
86 _eglInitSync(_EGLSync *sync, _EGLDisplay *disp, EGLenum type, in _eglInitSync() argument
91 _eglInitResource(&sync->Resource, sizeof(*sync), dis in _eglInitSync()
123 _eglGetSyncAttrib(_EGLDisplay *disp, _EGLSync *sync, EGLint attribute, EGLAttrib *value) _eglGetSyncAttrib() argument
[all...]
H A Deglsync.h42 /* A sync is a display resource */
54 _eglInitSync(_EGLSync *sync, _EGLDisplay *disp, EGLenum type,
59 _eglGetSyncAttrib(_EGLDisplay *disp, _EGLSync *sync,
64 * Increment reference count for the sync.
67 _eglGetSync(_EGLSync *sync) in _eglGetSync() argument
69 if (sync) in _eglGetSync()
70 _eglGetResource(&sync->Resource); in _eglGetSync()
71 return sync; in _eglGetSync()
76 * Decrement reference count for the sync.
79 _eglPutSync(_EGLSync *sync) in _eglPutSync() argument
90 _eglLinkSync(_EGLSync *sync) _eglLinkSync() argument
101 _eglUnlinkSync(_EGLSync *sync) _eglUnlinkSync() argument
114 _EGLSync *sync = (_EGLSync *) handle; _eglLookupSync() local
125 _eglGetSyncHandle(_EGLSync *sync) _eglGetSyncHandle() argument
[all...]
/kernel/linux/linux-5.10/tools/testing/selftests/powerpc/ptrace/
H A Dchild.h3 * Helper functions to sync execution between parent and child processes.
29 #define CHILD_FAIL_IF(x, sync) \
34 (sync)->child_gave_up = true; \
35 prod_parent(sync); \
40 #define PARENT_FAIL_IF(x, sync) \
45 (sync)->parent_gave_up = true; \
46 prod_child(sync); \
51 #define PARENT_SKIP_IF_UNSUPPORTED(x, sync) \
54 (sync)->parent_gave_up = true; \
55 prod_child(sync); \
60 init_child_sync(struct child_sync *sync) init_child_sync() argument
79 destroy_child_sync(struct child_sync *sync) destroy_child_sync() argument
85 wait_child(struct child_sync *sync) wait_child() argument
99 prod_child(struct child_sync *sync) prod_child() argument
113 wait_parent(struct child_sync *sync) wait_parent() argument
127 prod_parent(struct child_sync *sync) prod_parent() argument
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/powerpc/ptrace/
H A Dchild.h3 * Helper functions to sync execution between parent and child processes.
29 #define CHILD_FAIL_IF(x, sync) \
34 (sync)->child_gave_up = true; \
35 prod_parent(sync); \
40 #define PARENT_FAIL_IF(x, sync) \
45 (sync)->parent_gave_up = true; \
46 prod_child(sync); \
51 #define PARENT_SKIP_IF_UNSUPPORTED(x, sync, msg) \
54 (sync)->parent_gave_up = true; \
55 prod_child(sync); \
60 init_child_sync(struct child_sync *sync) init_child_sync() argument
79 destroy_child_sync(struct child_sync *sync) destroy_child_sync() argument
85 wait_child(struct child_sync *sync) wait_child() argument
99 prod_child(struct child_sync *sync) prod_child() argument
113 wait_parent(struct child_sync *sync) wait_parent() argument
127 prod_parent(struct child_sync *sync) prod_parent() argument
[all...]
/kernel/linux/linux-5.10/arch/powerpc/platforms/powermac/
H A Dcache.S45 sync
52 sync
58 sync
60 sync
81 sync
88 sync
91 sync
96 sync
106 3: sync
110 3: sync
[all...]
/kernel/linux/linux-6.6/arch/powerpc/platforms/powermac/
H A Dcache.S45 sync
52 sync
58 sync
60 sync
81 sync
88 sync
91 sync
96 sync
106 3: sync
110 3: sync
[all...]
/kernel/linux/linux-6.6/io_uring/
H A Dsync.c15 #include "sync.h"
27 struct io_sync *sync = io_kiocb_to_cmd(req, struct io_sync); in io_sfr_prep() local
32 sync->off = READ_ONCE(sqe->off); in io_sfr_prep()
33 sync->len = READ_ONCE(sqe->len); in io_sfr_prep()
34 sync->flags = READ_ONCE(sqe->sync_range_flags); in io_sfr_prep()
42 struct io_sync *sync = io_kiocb_to_cmd(req, struct io_sync); in io_sync_file_range() local
48 ret = sync_file_range(req->file, sync->off, sync->len, sync->flags); in io_sync_file_range()
55 struct io_sync *sync in io_fsync_prep() local
72 struct io_sync *sync = io_kiocb_to_cmd(req, struct io_sync); io_fsync() local
87 struct io_sync *sync = io_kiocb_to_cmd(req, struct io_sync); io_fallocate_prep() local
101 struct io_sync *sync = io_kiocb_to_cmd(req, struct io_sync); io_fallocate() local
[all...]
/kernel/linux/linux-5.10/arch/powerpc/kernel/
H A Dl2cr_6xx.S100 sync
107 sync
118 sync
120 sync
156 sync
158 sync
182 sync
196 sync
198 sync
202 21: sync
[all...]
H A Dcpu_setup_ppc970.S28 sync
31 sync
34 sync
37 sync
50 sync
104 sync
111 sync
155 sync
158 sync
162 sync
[all...]
/kernel/linux/linux-6.6/arch/powerpc/kernel/
H A Dl2cr_6xx.S100 sync
107 sync
118 sync
120 sync
156 sync
158 sync
182 sync
196 sync
198 sync
202 21: sync
[all...]
/kernel/linux/linux-5.10/drivers/clk/tegra/
H A Dclk-audio-sync.c15 struct tegra_clk_sync_source *sync = to_clk_sync_source(hw); in clk_sync_source_recalc_rate() local
17 return sync->rate; in clk_sync_source_recalc_rate()
23 struct tegra_clk_sync_source *sync = to_clk_sync_source(hw); in clk_sync_source_round_rate() local
25 if (rate > sync->max_rate) in clk_sync_source_round_rate()
34 struct tegra_clk_sync_source *sync = to_clk_sync_source(hw); in clk_sync_source_set_rate() local
36 sync->rate = rate; in clk_sync_source_set_rate()
49 struct tegra_clk_sync_source *sync; in tegra_clk_register_sync_source() local
53 sync = kzalloc(sizeof(*sync), GFP_KERNEL); in tegra_clk_register_sync_source()
54 if (!sync) { in tegra_clk_register_sync_source()
[all...]
/kernel/linux/linux-6.6/drivers/clk/tegra/
H A Dclk-audio-sync.c15 struct tegra_clk_sync_source *sync = to_clk_sync_source(hw); in clk_sync_source_recalc_rate() local
17 return sync->rate; in clk_sync_source_recalc_rate()
23 struct tegra_clk_sync_source *sync = to_clk_sync_source(hw); in clk_sync_source_round_rate() local
25 if (rate > sync->max_rate) in clk_sync_source_round_rate()
34 struct tegra_clk_sync_source *sync = to_clk_sync_source(hw); in clk_sync_source_set_rate() local
36 sync->rate = rate; in clk_sync_source_set_rate()
49 struct tegra_clk_sync_source *sync; in tegra_clk_register_sync_source() local
53 sync = kzalloc(sizeof(*sync), GFP_KERNEL); in tegra_clk_register_sync_source()
54 if (!sync) { in tegra_clk_register_sync_source()
[all...]
/third_party/mesa3d/src/intel/vulkan/
H A Danv_bo_sync.c29 to_anv_bo_sync(struct vk_sync *sync) in to_anv_bo_sync() argument
31 assert(sync->type == &anv_bo_sync_type); in to_anv_bo_sync()
32 return container_of(sync, struct anv_bo_sync, sync); in to_anv_bo_sync()
41 struct anv_bo_sync *sync = to_anv_bo_sync(vk_sync); in anv_bo_sync_init() local
43 sync->state = initial_value ? ANV_BO_SYNC_STATE_SIGNALED : in anv_bo_sync_init()
46 return anv_device_alloc_bo(device, "bo-sync", 4096, in anv_bo_sync_init()
50 &sync->bo); in anv_bo_sync_init()
58 struct anv_bo_sync *sync = to_anv_bo_sync(vk_sync); in anv_bo_sync_finish() local
60 anv_device_release_bo(device, sync in anv_bo_sync_finish()
67 struct anv_bo_sync *sync = to_anv_bo_sync(vk_sync); anv_bo_sync_reset() local
114 struct anv_bo_sync *sync = to_anv_bo_sync(waits[i].sync); anv_bo_sync_wait() local
171 struct anv_bo_sync *sync = to_anv_bo_sync(waits[i].sync); anv_bo_sync_wait() local
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/amd/amdgpu/
H A Damdgpu_sync.c43 * amdgpu_sync_create - zero init sync object
45 * @sync: sync object to initialize
47 * Just clear the sync object for now.
49 void amdgpu_sync_create(struct amdgpu_sync *sync) in amdgpu_sync_create() argument
51 hash_init(sync->fences); in amdgpu_sync_create()
52 sync->last_vm_update = NULL; in amdgpu_sync_create()
125 * @sync: sync object to add the fence to
131 static bool amdgpu_sync_add_later(struct amdgpu_sync *sync, struc argument
153 amdgpu_sync_fence(struct amdgpu_sync *sync, struct dma_fence *f) amdgpu_sync_fence() argument
181 amdgpu_sync_vm_fence(struct amdgpu_sync *sync, struct dma_fence *fence) amdgpu_sync_vm_fence() argument
200 amdgpu_sync_resv(struct amdgpu_device *adev, struct amdgpu_sync *sync, struct dma_resv *resv, enum amdgpu_sync_mode mode, void *owner) amdgpu_sync_resv() argument
287 amdgpu_sync_peek_fence(struct amdgpu_sync *sync, struct amdgpu_ring *ring) amdgpu_sync_peek_fence() argument
329 amdgpu_sync_get_fence(struct amdgpu_sync *sync) amdgpu_sync_get_fence() argument
385 amdgpu_sync_wait(struct amdgpu_sync *sync, bool intr) amdgpu_sync_wait() argument
411 amdgpu_sync_free(struct amdgpu_sync *sync) amdgpu_sync_free() argument
[all...]
/kernel/linux/linux-5.10/drivers/gpu/drm/radeon/
H A Dradeon_sync.c35 * radeon_sync_create - zero init sync object
37 * @sync: sync object to initialize
39 * Just clear the sync object for now.
41 void radeon_sync_create(struct radeon_sync *sync) in radeon_sync_create() argument
46 sync->semaphores[i] = NULL; in radeon_sync_create()
49 sync->sync_to[i] = NULL; in radeon_sync_create()
51 sync->last_vm_update = NULL; in radeon_sync_create()
55 * radeon_sync_fence - use the semaphore to sync to a fence
57 * @sync
62 radeon_sync_fence(struct radeon_sync *sync, struct radeon_fence *fence) radeon_sync_fence() argument
88 radeon_sync_resv(struct radeon_device *rdev, struct radeon_sync *sync, struct dma_resv *resv, bool shared) radeon_sync_resv() argument
136 radeon_sync_rings(struct radeon_device *rdev, struct radeon_sync *sync, int ring) radeon_sync_rings() argument
211 radeon_sync_free(struct radeon_device *rdev, struct radeon_sync *sync, struct radeon_fence *fence) radeon_sync_free() argument
[all...]
/kernel/linux/linux-6.6/tools/testing/selftests/kvm/
H A Dmemslot_perf_test.c149 "Unexpected sync ucall, got %lx", in vcpu_worker()
288 struct sync_area *sync; in prepare_vm() local
349 sync = (typeof(sync))vm_gpa2hva(data, MEM_SYNC_GPA, NULL); in prepare_vm()
350 sync->guest_page_size = data->vm->page_size; in prepare_vm()
351 atomic_init(&sync->start_flag, false); in prepare_vm()
352 atomic_init(&sync->exit_flag, false); in prepare_vm()
353 atomic_init(&sync->sync_flag, false); in prepare_vm()
382 static void let_guest_run(struct sync_area *sync) in let_guest_run() argument
384 atomic_store_explicit(&sync in let_guest_run()
389 struct sync_area *sync = (typeof(sync))MEM_SYNC_GPA; guest_spin_until_start() local
395 make_guest_exit(struct sync_area *sync) make_guest_exit() argument
402 struct sync_area *sync = (typeof(sync))MEM_SYNC_GPA; _guest_should_exit() local
415 host_perform_sync(struct sync_area *sync) host_perform_sync() argument
428 struct sync_area *sync = (typeof(sync))MEM_SYNC_GPA; guest_perform_sync() local
446 struct sync_area *sync = (typeof(sync))MEM_SYNC_GPA; guest_code_test_memslot_move() local
475 struct sync_area *sync = (typeof(sync))MEM_SYNC_GPA; guest_code_test_memslot_map() local
507 struct sync_area *sync = (typeof(sync))MEM_SYNC_GPA; guest_code_test_memslot_unmap() local
542 struct sync_area *sync = (typeof(sync))MEM_SYNC_GPA; guest_code_test_memslot_rw() local
574 test_memslot_move_prepare(struct vm_data *data, struct sync_area *sync, uint64_t *maxslots, bool isactive) test_memslot_move_prepare() argument
605 test_memslot_move_prepare_active(struct vm_data *data, struct sync_area *sync, uint64_t *maxslots) test_memslot_move_prepare_active() argument
612 test_memslot_move_prepare_inactive(struct vm_data *data, struct sync_area *sync, uint64_t *maxslots) test_memslot_move_prepare_inactive() argument
619 test_memslot_move_loop(struct vm_data *data, struct sync_area *sync) test_memslot_move_loop() argument
672 test_memslot_map_loop(struct vm_data *data, struct sync_area *sync) test_memslot_map_loop() argument
710 test_memslot_unmap_loop_common(struct vm_data *data, struct sync_area *sync, uint64_t chunk) test_memslot_unmap_loop_common() argument
737 test_memslot_unmap_loop(struct vm_data *data, struct sync_area *sync) test_memslot_unmap_loop() argument
748 test_memslot_unmap_loop_chunked(struct vm_data *data, struct sync_area *sync) test_memslot_unmap_loop_chunked() argument
757 test_memslot_rw_loop(struct vm_data *data, struct sync_area *sync) test_memslot_rw_loop() argument
800 struct sync_area *sync; test_execute() local
[all...]
/kernel/linux/linux-6.6/drivers/gpu/drm/radeon/
H A Dradeon_sync.c35 * radeon_sync_create - zero init sync object
37 * @sync: sync object to initialize
39 * Just clear the sync object for now.
41 void radeon_sync_create(struct radeon_sync *sync) in radeon_sync_create() argument
46 sync->semaphores[i] = NULL; in radeon_sync_create()
49 sync->sync_to[i] = NULL; in radeon_sync_create()
51 sync->last_vm_update = NULL; in radeon_sync_create()
55 * radeon_sync_fence - use the semaphore to sync to a fence
57 * @sync
62 radeon_sync_fence(struct radeon_sync *sync, struct radeon_fence *fence) radeon_sync_fence() argument
89 radeon_sync_resv(struct radeon_device *rdev, struct radeon_sync *sync, struct dma_resv *resv, bool shared) radeon_sync_resv() argument
121 radeon_sync_rings(struct radeon_device *rdev, struct radeon_sync *sync, int ring) radeon_sync_rings() argument
196 radeon_sync_free(struct radeon_device *rdev, struct radeon_sync *sync, struct radeon_fence *fence) radeon_sync_free() argument
[all...]
/kernel/linux/linux-5.10/arch/powerpc/platforms/52xx/
H A Dmpc52xx_sleep.S16 sync; isync;
25 sync
30 sync
40 sync; isync;
42 sync; isync;
57 sync; isync;
59 sync; isync;
73 sync
77 sync
82 sync
[all...]
/kernel/linux/linux-6.6/arch/powerpc/platforms/52xx/
H A Dmpc52xx_sleep.S16 sync; isync;
25 sync
30 sync
40 sync; isync;
42 sync; isync;
57 sync; isync;
59 sync; isync;
73 sync
77 sync
82 sync
[all...]

Completed in 13 milliseconds

12345678910>>...77