Home
last modified time | relevance | path

Searched refs:xef (Results 1 – 25 of 31) 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()
511 if (q->xef && atomic_dec_and_test(&q->xef->exec_queue.pending_removal)) in xe_exec_queue_fini()
512 wake_up_var(&q->xef->exec_queue.pending_removal); in xe_exec_queue_fini()
544 struct xe_exec_queue *xe_exec_queue_lookup(struct xe_file *xef, u32 id) in xe_exec_queue_lookup() argument
548 mutex_lock(&xef->exec_queue.lock); in xe_exec_queue_lookup()
549 q = xa_load(&xef->exec_queue.xa, id); in xe_exec_queue_lookup()
552 mutex_unlock(&xef->exec_queue.lock); in xe_exec_queue_lookup()
736 primary = xe_exec_queue_lookup(q->vm->xef, primary_id); in xe_exec_queue_group_validate()
805 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()
164 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_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_oa.c86 struct xe_file *xef; member
881 xe_file_put(stream->xef); in xe_oa_stream_destroy()
1419 ret = xe_sync_entry_parse(oa->xe, param->xef, &param->syncs[num_syncs], in xe_oa_parse_syncs()
1551 param.xef = stream->xef; in xe_oa_config_locked()
1739 stream->xef = xe_file_get(param->xef); in xe_oa_stream_init()
1831 xe_file_put(stream->xef); in xe_oa_stream_init()
2018 struct xe_file *xef = to_xe_file(file); in xe_oa_stream_open_ioctl() local
2029 param.xef = xef; in xe_oa_stream_open_ioctl()
2044 param.exec_q = xe_exec_queue_lookup(xef, param.exec_queue_id); in xe_oa_stream_open_ioctl()
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
418 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()
H A Dxe_guc_submit.c1543 if (q->vm && q->vm->xef) { in guc_exec_queue_timedout_job()
1544 process_name = q->vm->xef->process_name; in guc_exec_queue_timedout_job()
1545 pid = q->vm->xef->pid; in guc_exec_queue_timedout_job()
/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/fs/unicode/
H A Dutf8data.c_shipped131 0xff,0xe7,0xaa,0xae,0x00,0xe0,0xdc,0xef,0xcf,0x86,0xd5,0x1d,0xe4,0x51,0xee,0xe3,
135 0xd3,0x18,0xe2,0x43,0xef,0xe1,0x32,0xef,0x10,0x09,0x05,0xff,0xf0,0xa6,0xbe,0xb1,
136 0x00,0x05,0xff,0xf0,0xa7,0x83,0x92,0x00,0xd2,0x13,0xe1,0x5b,0xef,0x10,0x08,0x05,
164 0x86,0xd5,0x06,0xcf,0x06,0x00,0x00,0xe4,0xf7,0xf0,0xe3,0xe0,0xef,0xd2,0xa0,0xe1,
469 0x00,0xd1,0x8b,0xd0,0x0c,0xcf,0x86,0xe5,0x10,0x43,0x64,0xef,0x42,0x01,0xe6,0xcf,
641 0x8e,0x53,0xd1,0x0c,0xe0,0xef,0x52,0xcf,0x86,0x65,0x8d,0x52,0x04,0x00,0xe0,0x0d,
1014 0x00,0x00,0x08,0x00,0xcf,0x86,0xd5,0x07,0x64,0xef,0x61,0x08,0x00,0xd4,0x63,0xd3,
1220 0xd3,0x3c,0xd2,0x1c,0xd1,0x0c,0x10,0x04,0x01,0x00,0x01,0xff,0xef,0xbd,0x81,0x00,
1221 0x10,0x08,0x01,0xff,0xef,0xbd,0x82,0x00,0x01,0xff,0xef,0xbd,0x83,0x00,0xd1,0x10,
1222 0x10,0x08,0x01,0xff,0xef,0xbd,0x84,0x00,0x01,0xff,0xef,0xbd,0x85,0x00,0x10,0x08,
[all …]

12