/Linux-v4.19/drivers/gpu/drm/v3d/ |
D | v3d_gem.c | 210 v3d_attach_object_fences(struct v3d_exec_info *exec) in v3d_attach_object_fences() argument 212 struct dma_fence *out_fence = &exec->render.base.s_fence->finished; in v3d_attach_object_fences() 216 for (i = 0; i < exec->bo_count; i++) { in v3d_attach_object_fences() 217 bo = to_v3d_bo(&exec->bo[i]->base); in v3d_attach_object_fences() 226 struct v3d_exec_info *exec, in v3d_unlock_bo_reservations() argument 231 for (i = 0; i < exec->bo_count; i++) { in v3d_unlock_bo_reservations() 232 struct v3d_bo *bo = to_v3d_bo(&exec->bo[i]->base); in v3d_unlock_bo_reservations() 249 struct v3d_exec_info *exec, in v3d_lock_bo_reservations() argument 260 bo = to_v3d_bo(&exec->bo[contended_lock]->base); in v3d_lock_bo_reservations() 269 for (i = 0; i < exec->bo_count; i++) { in v3d_lock_bo_reservations() [all …]
|
D | v3d_sched.c | 38 v3d_exec_put(job->exec); in v3d_job_free() 50 struct v3d_exec_info *exec = job->exec; in v3d_job_dependency() local 51 enum v3d_queue q = job == &exec->bin ? V3D_BIN : V3D_RENDER; in v3d_job_dependency() 65 fence = exec->bin_done_fence; in v3d_job_dependency() 67 exec->bin_done_fence = NULL; in v3d_job_dependency() 82 struct v3d_exec_info *exec = job->exec; in v3d_job_run() local 83 enum v3d_queue q = job == &exec->bin ? V3D_BIN : V3D_RENDER; in v3d_job_run() 84 struct v3d_dev *v3d = exec->v3d; in v3d_job_run() 97 v3d->bin_job = job->exec; in v3d_job_run() 104 v3d->render_job = job->exec; in v3d_job_run() [all …]
|
/Linux-v4.19/drivers/gpu/drm/vc4/ |
D | vc4_validate.c | 51 struct vc4_exec_info *exec, \ 106 vc4_use_bo(struct vc4_exec_info *exec, uint32_t hindex) in vc4_use_bo() argument 111 if (hindex >= exec->bo_count) { in vc4_use_bo() 113 hindex, exec->bo_count); in vc4_use_bo() 116 obj = exec->bo[hindex]; in vc4_use_bo() 129 vc4_use_handle(struct vc4_exec_info *exec, uint32_t gem_handles_packet_index) in vc4_use_handle() argument 131 return vc4_use_bo(exec, exec->bo_index[gem_handles_packet_index]); in vc4_use_handle() 135 validate_bin_pos(struct vc4_exec_info *exec, void *untrusted, uint32_t pos) in validate_bin_pos() argument 140 return (untrusted - 1 == exec->bin_u + pos); in validate_bin_pos() 159 vc4_check_tex_size(struct vc4_exec_info *exec, struct drm_gem_cma_object *fbo, in vc4_check_tex_size() argument [all …]
|
D | vc4_gem.c | 147 struct vc4_exec_info *exec[2]; in vc4_save_hang_state() local 159 exec[0] = vc4_first_bin_job(vc4); in vc4_save_hang_state() 160 exec[1] = vc4_first_render_job(vc4); in vc4_save_hang_state() 161 if (!exec[0] && !exec[1]) { in vc4_save_hang_state() 169 if (!exec[i]) in vc4_save_hang_state() 173 list_for_each_entry(bo, &exec[i]->unref_list, unref_head) in vc4_save_hang_state() 175 state->bo_count += exec[i]->bo_count + unref_list_count; in vc4_save_hang_state() 188 if (!exec[i]) in vc4_save_hang_state() 191 for (j = 0; j < exec[i]->bo_count; j++) { in vc4_save_hang_state() 192 bo = to_vc4_bo(&exec[i]->bo[j]->base); in vc4_save_hang_state() [all …]
|
D | vc4_irq.c | 64 struct vc4_exec_info *exec; in vc4_overflow_mem_work() local 82 exec = vc4_first_bin_job(vc4); in vc4_overflow_mem_work() 83 if (!exec) in vc4_overflow_mem_work() 84 exec = vc4_last_render_job(vc4); in vc4_overflow_mem_work() 85 if (exec) { in vc4_overflow_mem_work() 86 exec->bin_slots |= vc4->bin_alloc_overflow; in vc4_overflow_mem_work() 107 struct vc4_exec_info *next, *exec = vc4_first_bin_job(vc4); in vc4_irq_finish_bin_job() local 109 if (!exec) in vc4_irq_finish_bin_job() 112 vc4_move_job_to_render(dev, exec); in vc4_irq_finish_bin_job() 119 if (next && next->perfmon == exec->perfmon) in vc4_irq_finish_bin_job() [all …]
|
D | vc4_render_cl.c | 99 static uint32_t vc4_full_res_offset(struct vc4_exec_info *exec, in vc4_full_res_offset() argument 105 (DIV_ROUND_UP(exec->args->width, 32) * y + x); in vc4_full_res_offset() 123 static void emit_tile(struct vc4_exec_info *exec, in emit_tile() argument 127 struct drm_vc4_submit_cl *args = exec->args; in emit_tile() 139 vc4_full_res_offset(exec, setup->color_read, in emit_tile() 155 vc4_full_res_offset(exec, setup->zs_read, in emit_tile() 185 rcl_u32(setup, (exec->tile_alloc_offset + in emit_tile() 186 (y * exec->bin_tiles_x + x) * 32)); in emit_tile() 201 vc4_full_res_offset(exec, setup->msaa_color_write, in emit_tile() 219 vc4_full_res_offset(exec, setup->msaa_zs_write, in emit_tile() [all …]
|
D | vc4_drv.h | 733 void vc4_move_job_to_render(struct drm_device *dev, struct vc4_exec_info *exec); 789 struct vc4_exec_info *exec); 792 vc4_validate_shader_recs(struct drm_device *dev, struct vc4_exec_info *exec); 794 struct drm_gem_cma_object *vc4_use_bo(struct vc4_exec_info *exec, 797 int vc4_get_rcl(struct drm_device *dev, struct vc4_exec_info *exec); 799 bool vc4_check_tex_size(struct vc4_exec_info *exec,
|
/Linux-v4.19/include/uapi/linux/ |
D | a.out.h | 44 #define N_MAGIC(exec) ((exec).a_info & 0xffff) argument 46 #define N_MACHTYPE(exec) ((enum machine_type)(((exec).a_info >> 16) & 0xff)) argument 47 #define N_FLAGS(exec) (((exec).a_info >> 24) & 0xff) argument 48 #define N_SET_INFO(exec, magic, type, flags) \ argument 49 ((exec).a_info = ((magic) & 0xffff) \ 52 #define N_SET_MAGIC(exec, magic) \ argument 53 ((exec).a_info = (((exec).a_info & 0xffff0000) | ((magic) & 0xffff))) 55 #define N_SET_MACHTYPE(exec, machtype) \ argument 56 ((exec).a_info = \ 57 ((exec).a_info&0xff00ffff) | ((((int)(machtype))&0xff) << 16)) [all …]
|
/Linux-v4.19/tools/perf/util/ |
D | comm.c | 107 struct comm *comm__new(const char *str, u64 timestamp, bool exec) in comm__new() argument 115 comm->exec = exec; in comm__new() 126 int comm__override(struct comm *comm, const char *str, u64 timestamp, bool exec) in comm__override() argument 137 if (exec) in comm__override() 138 comm->exec = true; in comm__override()
|
D | comm.h | 15 bool exec; member 23 struct comm *comm__new(const char *str, u64 timestamp, bool exec); 26 bool exec);
|
D | thread.c | 187 if (comm->exec) in thread__exec_comm() 196 u64 timestamp, bool exec) in ____thread__set_comm() argument 202 int err = comm__override(curr, str, timestamp, exec); in ____thread__set_comm() 206 new = comm__new(str, timestamp, exec); in ____thread__set_comm() 211 if (exec) in ____thread__set_comm() 221 bool exec) in __thread__set_comm() argument 226 ret = ____thread__set_comm(thread, str, timestamp, exec); in __thread__set_comm()
|
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/subdev/timer/ |
D | base.c | 37 LIST_HEAD(exec); in nvkm_timer_alarm_trigger() 54 list_add(&alarm->exec, &exec); in nvkm_timer_alarm_trigger() 63 list_for_each_entry_safe(alarm, atemp, &exec, exec) { in nvkm_timer_alarm_trigger() 64 list_del(&alarm->exec); in nvkm_timer_alarm_trigger()
|
/Linux-v4.19/drivers/leds/ |
D | leds-lp8501.c | 164 u8 exec; in lp8501_run_engine() local 182 ret = lp55xx_read(chip, LP8501_REG_ENABLE, &exec); in lp8501_run_engine() 189 exec = (exec & ~LP8501_EXEC_ENG1_M) | LP8501_RUN_ENG1; in lp8501_run_engine() 194 exec = (exec & ~LP8501_EXEC_ENG2_M) | LP8501_RUN_ENG2; in lp8501_run_engine() 199 exec = (exec & ~LP8501_EXEC_ENG3_M) | LP8501_RUN_ENG3; in lp8501_run_engine() 205 lp55xx_update_bits(chip, LP8501_REG_ENABLE, LP8501_EXEC_M, exec); in lp8501_run_engine()
|
D | leds-lp5521.c | 178 u8 exec; in lp5521_run_engine() local 197 ret = lp55xx_read(chip, LP5521_REG_ENABLE, &exec); in lp5521_run_engine() 204 exec = (exec & ~LP5521_EXEC_R_M) | LP5521_RUN_R; in lp5521_run_engine() 209 exec = (exec & ~LP5521_EXEC_G_M) | LP5521_RUN_G; in lp5521_run_engine() 214 exec = (exec & ~LP5521_EXEC_B_M) | LP5521_RUN_B; in lp5521_run_engine() 220 lp55xx_update_bits(chip, LP5521_REG_ENABLE, LP5521_EXEC_M, exec); in lp5521_run_engine()
|
D | leds-lp5562.c | 160 u8 exec; in lp5562_run_engine() local 182 ret = lp55xx_read(chip, LP5562_REG_ENABLE, &exec); in lp5562_run_engine() 189 exec = (exec & ~LP5562_EXEC_ENG1_M) | LP5562_RUN_ENG1; in lp5562_run_engine() 194 exec = (exec & ~LP5562_EXEC_ENG2_M) | LP5562_RUN_ENG2; in lp5562_run_engine() 199 exec = (exec & ~LP5562_EXEC_ENG3_M) | LP5562_RUN_ENG3; in lp5562_run_engine() 205 lp55xx_update_bits(chip, LP5562_REG_ENABLE, LP5562_EXEC_M, exec); in lp5562_run_engine()
|
D | leds-lp5523.c | 234 u8 exec; in lp5523_run_engine() local 252 ret = lp55xx_read(chip, LP5523_REG_ENABLE, &exec); in lp5523_run_engine() 259 exec = (exec & ~LP5523_EXEC_ENG1_M) | LP5523_RUN_ENG1; in lp5523_run_engine() 264 exec = (exec & ~LP5523_EXEC_ENG2_M) | LP5523_RUN_ENG2; in lp5523_run_engine() 269 exec = (exec & ~LP5523_EXEC_ENG3_M) | LP5523_RUN_ENG3; in lp5523_run_engine() 275 lp55xx_update_bits(chip, LP5523_REG_ENABLE, LP5523_EXEC_M, exec); in lp5523_run_engine()
|
/Linux-v4.19/drivers/sbus/char/ |
D | oradax.c | 876 ctx->result.exec.status = DAX_SUBMIT_ERR_THR_INIT; in dax_ccb_exec() 883 ctx->result.exec.status = DAX_SUBMIT_ERR_NO_CA_AVAIL; in dax_ccb_exec() 893 ctx->result.exec.status = DAX_SUBMIT_ERR_CCB_ARR_MMU_MISS; in dax_ccb_exec() 901 ctx->result.exec.status = DAX_SUBMIT_ERR_NO_CA_AVAIL; in dax_ccb_exec() 907 ctx->result.exec.status = dax_preprocess_usr_ccbs(ctx, idx, nccbs); in dax_ccb_exec() 908 if (ctx->result.exec.status != DAX_SUBMIT_OK) in dax_ccb_exec() 911 ctx->result.exec.status = dax_lock_pages(ctx, idx, nccbs, in dax_ccb_exec() 912 &ctx->result.exec.status_data); in dax_ccb_exec() 913 if (ctx->result.exec.status != DAX_SUBMIT_OK) in dax_ccb_exec() 921 &accepted_len, &ctx->result.exec.status_data); in dax_ccb_exec() [all …]
|
/Linux-v4.19/arch/sparc/mm/ |
D | tlb.c | 71 bool exec, unsigned int hugepage_shift) in tlb_batch_add_one() argument 77 if (exec) in tlb_batch_add_one() 156 bool exec = pte_exec(*pte); in tlb_batch_pmd_scan() local 158 tlb_batch_add_one(mm, vaddr, exec, PAGE_SHIFT); in tlb_batch_pmd_scan() 208 bool exec = pte_exec(orig_pte); in __set_pmd_acct() local 210 tlb_batch_add_one(mm, addr, exec, REAL_HPAGE_SHIFT); in __set_pmd_acct() 211 tlb_batch_add_one(mm, addr + REAL_HPAGE_SIZE, exec, in __set_pmd_acct()
|
/Linux-v4.19/drivers/gpu/drm/i915/ |
D | i915_gem_execbuffer.c | 233 struct drm_i915_gem_exec_object2 *exec; /** ioctl execobj[] */ member 289 #define exec_entry(EB, VMA) (&(EB)->exec[(VMA)->exec_flags - (EB)->flags]) 474 entry->handle, (int)(entry - eb->exec)); in eb_validate_vma() 505 struct drm_i915_gem_exec_object2 *entry = &eb->exec[i]; in eb_add_vma() 764 u32 handle = eb->exec[i].handle; in eb_lookup_vmas() 812 eb_vma_misplaced(&eb->exec[i], vma, eb->flags[i])); in eb_lookup_vmas() 1555 const unsigned int nreloc = eb->exec[i].relocation_count; in eb_copy_relocations() 1564 err = check_relocations(&eb->exec[i]); in eb_copy_relocations() 1568 urelocs = u64_to_user_ptr(eb->exec[i].relocs_ptr); in eb_copy_relocations() 1613 eb->exec[i].relocs_ptr = (uintptr_t)relocs; in eb_copy_relocations() [all …]
|
/Linux-v4.19/arch/mips/mm/ |
D | c-tx39.c | 170 int exec = vma->vm_flags & VM_EXEC; in tx39_flush_cache_page() local 204 if (cpu_has_dc_aliases || exec) in tx39_flush_cache_page() 206 if (exec) in tx39_flush_cache_page() 216 if (cpu_has_dc_aliases || exec) in tx39_flush_cache_page() 218 if (exec) in tx39_flush_cache_page()
|
/Linux-v4.19/arch/alpha/kernel/ |
D | binfmt_loader.c | 11 struct exec *eh = (struct exec *)bprm->buf; in load_binary()
|
/Linux-v4.19/arch/x86/mm/ |
D | pageattr-test.c | 45 long lpg, gpg, spg, exec; member 54 s->lpg = s->gpg = s->spg = s->exec = 0; in print_split() 86 s->exec++; in print_split() 96 s->spg, s->lpg, s->gpg, s->exec, in print_split()
|
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/subdev/mxm/ |
D | mxms.c | 97 bool (*exec)(struct nvkm_mxm *, u8 *, void *), void *info) in mxms_foreach() 148 if (mxm->subdev.debug >= NV_DBG_DEBUG && (exec == NULL)) { in mxms_foreach() 170 if (!exec(mxm, desc, info)) in mxms_foreach()
|
/Linux-v4.19/arch/alpha/include/uapi/asm/ |
D | a.out.h | 54 struct exec struct 90 (sizeof(struct exec) + (x).fh.f_nscns*SCNHSZ + SCNROUND - 1) & ~(SCNROUND - 1))
|
/Linux-v4.19/drivers/gpu/drm/nouveau/nvkm/subdev/devinit/ |
D | gm200.c | 116 u32 exec, args; in gm200_devinit_post() local 126 ret = pmu_load(init, 0x04, post, &exec, &args); in gm200_devinit_post() 151 pmu_exec(init, exec); in gm200_devinit_post()
|