Lines Matching refs:filep

109 static int kfd_open(struct inode *inode, struct file *filep)  in kfd_open()  argument
127 process = kfd_create_process(filep); in kfd_open()
139 filep->private_data = process; in kfd_open()
147 static int kfd_release(struct inode *inode, struct file *filep) in kfd_release() argument
149 struct kfd_process *process = filep->private_data; in kfd_release()
157 static int kfd_ioctl_get_version(struct file *filep, struct kfd_process *p, in kfd_ioctl_get_version() argument
274 static int kfd_ioctl_create_queue(struct file *filep, struct kfd_process *p, in kfd_ioctl_create_queue() argument
312 err = pqm_create_queue(&p->pqm, dev, filep, &q_properties, &queue_id, in kfd_ioctl_create_queue()
469 static int kfd_ioctl_get_queue_wave_state(struct file *filep, in kfd_ioctl_get_queue_wave_state() argument
487 static int kfd_ioctl_set_memory_policy(struct file *filep, in kfd_ioctl_set_memory_policy() argument
539 static int kfd_ioctl_set_trap_handler(struct file *filep, in kfd_ioctl_set_trap_handler() argument
571 static int kfd_ioctl_dbg_register(struct file *filep, in kfd_ioctl_dbg_register() argument
625 static int kfd_ioctl_dbg_unregister(struct file *filep, in kfd_ioctl_dbg_unregister() argument
663 static int kfd_ioctl_dbg_address_watch(struct file *filep, in kfd_ioctl_dbg_address_watch() argument
763 static int kfd_ioctl_dbg_wave_control(struct file *filep, in kfd_ioctl_dbg_wave_control() argument
847 static int kfd_ioctl_get_clock_counters(struct file *filep, in kfd_ioctl_get_clock_counters() argument
1127 static int kfd_ioctl_set_scratch_backing_va(struct file *filep, in kfd_ioctl_set_scratch_backing_va() argument
1163 static int kfd_ioctl_get_tile_config(struct file *filep, in kfd_ioctl_get_tile_config() argument
1205 static int kfd_ioctl_acquire_vm(struct file *filep, struct kfd_process *p, in kfd_ioctl_acquire_vm() argument
1268 static int kfd_ioctl_alloc_memory_of_gpu(struct file *filep, in kfd_ioctl_alloc_memory_of_gpu() argument
1359 static int kfd_ioctl_free_memory_of_gpu(struct file *filep, in kfd_ioctl_free_memory_of_gpu() argument
1406 static int kfd_ioctl_map_memory_to_gpu(struct file *filep, in kfd_ioctl_map_memory_to_gpu() argument
1516 static int kfd_ioctl_unmap_memory_from_gpu(struct file *filep, in kfd_ioctl_unmap_memory_from_gpu() argument
1603 static int kfd_ioctl_alloc_queue_gws(struct file *filep, in kfd_ioctl_alloc_queue_gws() argument
1642 static int kfd_ioctl_get_dmabuf_info(struct file *filep, in kfd_ioctl_get_dmabuf_info() argument
1697 static int kfd_ioctl_import_dmabuf(struct file *filep, in kfd_ioctl_import_dmabuf() argument
1754 static int kfd_ioctl_smi_events(struct file *filep, in kfd_ioctl_smi_events() argument
1869 static long kfd_ioctl(struct file *filep, unsigned int cmd, unsigned long arg) in kfd_ioctl() argument
1903 process = filep->private_data; in kfd_ioctl()
1942 retcode = func(filep, process, kdata); in kfd_ioctl()