Home
last modified time | relevance | path

Searched refs:xef (Results 1 – 25 of 44) sorted by relevance

12

/linux/drivers/gpu/drm/xe/
H A Dxe_drm_client.c194 struct xe_file *xef = file->driver_priv; in show_meminfo() local
195 struct ttm_device *bdev = &xef->xe->ttm; in show_meminfo()
204 client = xef->client; in show_meminfo()
246 xe_assert(xef->xe, !list_empty(&bo->client_link)); in show_meminfo()
318 struct xe_file *xef = file->driver_priv; in show_run_ticks() local
319 struct xe_device *xe = xef->xe; in show_run_ticks()
337 wait_var_event(&xef->exec_queue.pending_removal, in show_run_ticks()
338 !atomic_read(&xef->exec_queue.pending_removal)); in show_run_ticks()
346 mutex_lock(&xef->exec_queue.lock); in show_run_ticks()
347 xa_for_each(&xef->exec_queue.xa, i, q) { in show_run_ticks()
[all …]
H A Dxe_device.c85 struct xe_file *xef; in xe_file_open() local
89 xef = kzalloc_obj(*xef); in xe_file_open()
90 if (!xef) in xe_file_open()
95 kfree(xef); in xe_file_open()
99 xef->drm = file; in xe_file_open()
100 xef->client = client; in xe_file_open()
101 xef->xe = xe; in xe_file_open()
103 mutex_init(&xef->vm.lock); in xe_file_open()
104 xa_init_flags(&xef->vm.xa, XA_FLAGS_ALLOC1); in xe_file_open()
106 mutex_init(&xef->exec_queue.lock); in xe_file_open()
[all …]
H A Dxe_exec_queue.c158 if (q->xef) in __xe_exec_queue_free()
159 xe_file_put(q->xef); in __xe_exec_queue_free()
510 if (q->xef && atomic_dec_and_test(&q->xef->exec_queue.pending_removal)) in xe_exec_queue_fini()
511 wake_up_var(&q->xef->exec_queue.pending_removal); in xe_exec_queue_fini()
543 struct xe_exec_queue *xe_exec_queue_lookup(struct xe_file *xef, u32 id) in xe_exec_queue_lookup() argument
547 mutex_lock(&xef->exec_queue.lock); in xe_exec_queue_lookup()
548 q = xa_load(&xef->exec_queue.xa, id); in xe_exec_queue_lookup()
551 mutex_unlock(&xef->exec_queue.lock); in xe_exec_queue_lookup()
735 primary = xe_exec_queue_lookup(q->vm->xef, primary_id); in xe_exec_queue_group_validate()
804 if (XE_IOCTL_DBG(xe, !q->vm->xef)) in exec_queue_set_multi_group()
[all …]
H A Dxe_exec.c114 struct xe_file *xef = to_xe_file(file); in xe_exec_ioctl() local
138 q = xe_exec_queue_lookup(xef, args->exec_queue_id); in xe_exec_ioctl()
175 err = xe_sync_entry_parse(xe, xef, &syncs[num_syncs], in xe_exec_ioctl()
H A Dxe_sync.c113 int xe_sync_entry_parse(struct xe_device *xe, struct xe_file *xef, in xe_sync_entry_parse() argument
143 sync->syncobj = drm_syncobj_find(xef->drm, sync_in.handle); in xe_sync_entry_parse()
166 sync->syncobj = drm_syncobj_find(xef->drm, sync_in.handle); in xe_sync_entry_parse()
H A Dxe_vm.c1477 struct xe_vm *xe_vm_create(struct xe_device *xe, u32 flags, struct xe_file *xef) in xe_vm_create() argument
1502 if (xef) in xe_vm_create()
1503 vm->xef = xe_file_get(xef); in xe_vm_create()
1650 if (xef && xe->info.has_asid) { in xe_vm_create()
1682 if (vm->xef) in xe_vm_create()
1683 xe_file_put(vm->xef); in xe_vm_create()
1867 if (vm->xef) in vm_destroy_work_func()
1868 xe_file_put(vm->xef); in vm_destroy_work_func()
1881 struct xe_vm *xe_vm_lookup(struct xe_file *xef, u32 id) in xe_vm_lookup() argument
1885 mutex_lock(&xef->vm.lock); in xe_vm_lookup()
[all …]
H A Dxe_tlb_inval_job.c136 q->xef ? q->xef->drm->client_id : 0); in xe_tlb_inval_job_create()
H A Dxe_oa.c86 struct xe_file *xef; member
880 xe_file_put(stream->xef); in xe_oa_stream_destroy()
1418 ret = xe_sync_entry_parse(oa->xe, param->xef, &param->syncs[num_syncs], in xe_oa_parse_syncs()
1554 param.xef = stream->xef; in xe_oa_config_locked()
1742 stream->xef = xe_file_get(param->xef); in xe_oa_stream_init()
1834 xe_file_put(stream->xef); in xe_oa_stream_init()
2021 struct xe_file *xef = to_xe_file(file); in xe_oa_stream_open_ioctl() local
2032 param.xef = xef; in xe_oa_stream_open_ioctl()
2047 param.exec_q = xe_exec_queue_lookup(xef, param.exec_queue_id); in xe_oa_stream_open_ioctl()
H A Dxe_vm.h29 struct xe_vm *xe_vm_create(struct xe_device *xe, u32 flags, struct xe_file *xef);
31 struct xe_vm *xe_vm_lookup(struct xe_file *xef, u32 id);
H A Dxe_exec_queue_types.h79 struct xe_file *xef; member
H A Dxe_exec_queue.h47 struct xe_exec_queue *xe_exec_queue_lookup(struct xe_file *xef, u32 id);
H A Dxe_vm_types.h350 struct xe_file *xef; member
H A Dxe_vm_madvise.c409 struct xe_file *xef = to_xe_file(file); in xe_vm_madvise_ioctl() local
425 vm = xe_vm_lookup(xef, args->vm_id); in xe_vm_madvise_ioctl()
H A Dxe_lrc.c1468 if ((vm && vm->xef) || init_flags & XE_LRC_CREATE_USER_CTX) /* userspace */ in xe_lrc_init()
1511 if (vm->xef) in xe_lrc_init()
1512 xe_drm_client_add_bo(vm->xef->client, lrc->bo); in xe_lrc_init()
H A Dxe_pt.c124 if (vm->xef) /* userspace */ in xe_pt_create()
141 if (vm->xef) in xe_pt_create()
142 xe_drm_client_add_bo(vm->xef->client, pt->bo); in xe_pt_create()
/linux/net/wireless/certs/
H A Dwens.hex21 0x19, 0x2d, 0x32, 0x52, 0xa0, 0x2e, 0x6c, 0xef,
24 0xc0, 0xb7, 0x5d, 0x47, 0x8e, 0x1a, 0xe1, 0xef,
64 0xef, 0x54, 0x68, 0xf7, 0x85, 0x9c, 0xe4, 0x51,
H A Dsforshee.hex38 0xef, 0x7a, 0x7f, 0xa5, 0xcb, 0x80, 0xc7, 0x30,
71 0x81, 0x57, 0x1a, 0xef, 0xb2, 0x38, 0x88, 0x58,
/linux/Documentation/hwmon/
H A Dmlxreg-fan.rst33 fan12 (tacho12) 0xef
/linux/arch/powerpc/boot/dts/fsl/
H A Dqoriq-mpic.dtsi81 0xef 0 0 0>;
H A Dqoriq-mpic4.3.dtsi87 0xef 0 0 0
/linux/Documentation/driver-api/tty/
H A Dn_gsm.rst117 0xf9, 0x03, 0xef, 0x03, 0xc3, 0x16, 0xf9
/linux/Documentation/dev-tools/
H A Dkfence.rst186 BUG: KFENCE: memory corruption in test_kmalloc_aligned_oob_write+0xef/0x184
189 test_kmalloc_aligned_oob_write+0xef/0x184
/linux/drivers/tty/vt/
H A Dcp437.uni271 0xef U+2229
/linux/Documentation/driver-api/i3c/
H A Dprotocol.rst142 (0x61-0x7f and 0xe0-0xef).
/linux/arch/arm64/boot/dts/renesas/
H A Dr9a09g056.dtsi1664 <&cpg CPG_MOD 0xef>;
1689 <&cpg CPG_MOD 0xef>;
1701 <&cpg CPG_MOD 0xef>;

12