Home
last modified time | relevance | path

Searched refs:stage (Results 1 – 25 of 189) sorted by relevance

12345678

/linux/drivers/staging/media/atomisp/pci/runtime/pipeline/src/
H A Dpipeline.c40 static void pipeline_stage_destroy(struct ia_css_pipeline_stage *stage);
250 /* @brief Add a stage to pipeline.
253 * @param[in] stage_desc The description of the stage
254 * @param[out] stage The successor of the stage.
257 * Add a new stage to a non-NULL pipeline.
258 * The stage consists of an ISP binary or firmware and input and
264 struct ia_css_pipeline_stage **stage) in ia_css_pipeline_create_and_add_stage() argument
284 /* Find the last stage */ in ia_css_pipeline_create_and_add_stage()
289 * stage, i in ia_css_pipeline_create_and_add_stage()
329 struct ia_css_pipeline_stage *stage; ia_css_pipeline_finalize_stages() local
344 ia_css_pipeline_get_stage(struct ia_css_pipeline * pipeline,int mode,struct ia_css_pipeline_stage ** stage) ia_css_pipeline_get_stage() argument
364 ia_css_pipeline_get_stage_from_fw(struct ia_css_pipeline * pipeline,u32 fw_handle,struct ia_css_pipeline_stage ** stage) ia_css_pipeline_get_stage_from_fw() argument
403 ia_css_pipeline_get_output_stage(struct ia_css_pipeline * pipeline,int mode,struct ia_css_pipeline_stage ** stage) ia_css_pipeline_get_output_stage() argument
487 pipeline_stage_destroy(struct ia_css_pipeline_stage * stage) pipeline_stage_destroy() argument
561 struct ia_css_pipeline_stage *stage = NULL; pipeline_stage_create() local
684 struct ia_css_pipeline_stage *stage = NULL; ia_css_pipeline_set_zoom_stage() local
[all...]
/linux/arch/riscv/errata/thead/
H A Derrata.c27 static bool errata_probe_mae(unsigned int stage, in errata_probe_mae() argument
36 if (stage != RISCV_ALTERNATIVES_EARLY_BOOT && in errata_probe_mae()
37 stage != RISCV_ALTERNATIVES_MODULE) in errata_probe_mae()
109 static bool errata_probe_cmo(unsigned int stage, in errata_probe_cmo() argument
118 if (stage == RISCV_ALTERNATIVES_EARLY_BOOT) in errata_probe_cmo()
121 if (stage == RISCV_ALTERNATIVES_BOOT) { in errata_probe_cmo()
130 static bool errata_probe_pmu(unsigned int stage, in errata_probe_pmu() argument
140 if (stage == RISCV_ALTERNATIVES_EARLY_BOOT) in errata_probe_pmu()
146 static bool errata_probe_ghostwrite(unsigned int stage, in errata_probe_ghostwrite() argument
163 if (stage != RISCV_ALTERNATIVES_EARLY_BOOT) in errata_probe_ghostwrite()
[all …]
/linux/arch/powerpc/crypto/
H A Daesp10-ppc.pl122 my ($stage,$outperm,$outmask,$outhead,$outtail)=map("v$_",(7..11));
204 vsel $stage,$outhead,$outtail,$outmask
207 stvx $stage,0,$out
224 vsel $stage,$outhead,$outtail,$outmask
227 stvx $stage,0,$out
241 vsel $stage,$outhead,$outtail,$outmask
244 stvx $stage,0,$out
254 vsel $stage,$outhead,$outtail,$outmask
256 stvx $stage,0,$out
269 vsel $stage,$outhead,$outtail,$outmask
[all …]
/linux/tools/testing/selftests/kvm/s390/
H A Dtprot.c63 enum stage { enum
73 enum stage stage; member
139 static enum stage perform_next_stage(int *i, bool mapped_0) in perform_next_stage()
141 enum stage stage = tests[*i].stage; in perform_next_stage() local
145 for (; tests[*i].stage == stage; (*i)++) { in perform_next_stage()
163 return stage; in perform_next_stage()
185 #define HOST_SYNC_NO_TAP(vcpup, stage) \ argument
189 int __stage = (stage); \
199 #define HOST_SYNC(vcpu, stage) \ argument
201 HOST_SYNC_NO_TAP(vcpu, stage); \
[all …]
/linux/drivers/watchdog/
H A Dkempld_wdt.c77 struct kempld_wdt_stage stage[KEMPLD_WDT_MAX_STAGES]; member
103 struct kempld_wdt_stage *stage, in kempld_wdt_set_stage_action() argument
109 if (!stage || !stage->mask) in kempld_wdt_set_stage_action()
113 stage_cfg = kempld_read8(pld, KEMPLD_WDT_STAGE_CFG(stage->id)); in kempld_wdt_set_stage_action()
122 kempld_write8(pld, KEMPLD_WDT_STAGE_CFG(stage->id), stage_cfg); in kempld_wdt_set_stage_action()
129 struct kempld_wdt_stage *stage, in kempld_wdt_set_stage_timeout() argument
141 if (!stage) in kempld_wdt_set_stage_timeout()
149 if (stage_timeout64 > stage->mask) in kempld_wdt_set_stage_timeout()
152 stage_timeout = stage_timeout64 & stage->mask; in kempld_wdt_set_stage_timeout()
155 stage_cfg = kempld_read8(pld, KEMPLD_WDT_STAGE_CFG(stage->id)); in kempld_wdt_set_stage_timeout()
[all …]
/linux/tools/testing/selftests/kvm/x86/
H A Dhyperv_ipi.c92 int stage = 1, ipis_expected[2] = {0}; in sender_guest_code() local
95 GUEST_SYNC(stage++); in sender_guest_code()
109 GUEST_SYNC(stage++); in sender_guest_code()
116 GUEST_SYNC(stage++); in sender_guest_code()
129 GUEST_SYNC(stage++); in sender_guest_code()
138 GUEST_SYNC(stage++); in sender_guest_code()
151 GUEST_SYNC(stage++); in sender_guest_code()
160 GUEST_SYNC(stage++); in sender_guest_code()
174 GUEST_SYNC(stage++); in sender_guest_code()
183 GUEST_SYNC(stage++); in sender_guest_code()
[all …]
H A Dhyperv_tlb_flush.c194 int i, stage = 1;
201 GUEST_SYNC(stage++); in sender_guest_code()
213 GUEST_SYNC(stage++); in sender_guest_code()
227 GUEST_SYNC(stage++); in sender_guest_code()
240 GUEST_SYNC(stage++); in sender_guest_code()
255 GUEST_SYNC(stage++); in sender_guest_code()
270 GUEST_SYNC(stage++); in sender_guest_code()
288 GUEST_SYNC(stage++); in sender_guest_code()
306 GUEST_SYNC(stage++); in sender_guest_code()
327 GUEST_SYNC(stage in sender_guest_code()
205 int i, stage = 1; sender_guest_code() local
589 int stage = 1, r, i; main() local
[all...]
H A Dset_boot_cpu_id.c61 int stage; in run_vcpu() local
63 for (stage = 0; stage < 2; stage++) { in run_vcpu()
70 uc.args[1] == stage + 1, in run_vcpu()
72 stage + 1, (ulong)uc.args[1]); in run_vcpu()
76 TEST_ASSERT(stage == 1, in run_vcpu()
78 stage); in run_vcpu()
H A Dvmx_preemption_timer_test.c162 int stage; in main() local
180 for (stage = 1;; stage++) { in main()
198 uc.args[1] == stage, "Stage %d: Unexpected register values vmexit, got %lx", in main()
199 stage, (ulong)uc.args[1]); in main()
208 if (stage == 2) { in main()
211 stage, uc.args[2], uc.args[3]); in main()
214 stage, uc.args[4], uc.args[5]); in main()
218 stage, uc.args[2], uc.args[3]); in main()
222 stage, uc.args[4], uc.args[5]); in main()
H A Dstate_test.c229 void svm_check_nested_state(int stage, struct kvm_x86_state *state) in svm_check_nested_state() argument
234 if (stage == 4) in svm_check_nested_state()
236 if (stage == 6) in svm_check_nested_state()
247 if (stage == 6) in svm_check_nested_state()
252 void check_nested_state(int stage, struct kvm_x86_state *state) in check_nested_state() argument
255 svm_check_nested_state(stage, state); in check_nested_state()
268 int stage; in main() local
287 for (stage = 1;; stage++) { in main()
305 uc.args[1] == stage, "Stage %d: Unexpected register values vmexit, got %lx", in main()
306 stage, (ulong)uc.args[1]); in main()
[all …]
H A Dsmm_test.c122 int stage, stage_reported; in main() local
143 for (stage = 1;; stage++) { in main()
155 TEST_ASSERT(stage_reported == stage || in main()
158 stage, stage_reported); in main()
164 if (stage == 8) { in main()
173 if (stage == 10) in main()
H A Dhyperv_clock.c212 int stage; in main() local
229 for (stage = 1;; stage++) { in main()
241 TEST_ASSERT(stage == 11, "Testing ended prematurely, stage %d", in main()
242 stage); in main()
249 uc.args[1] == stage, in main()
251 stage, (ulong)uc.args[1]); in main()
254 if (stage == 7 || stage == 8 || stage == 10) { in main()
H A Dvmx_nested_la57_state_test.c81 int stage; in main() local
98 for (stage = 1;; stage++) { in main()
114 TEST_ASSERT(uc.args[1] == stage, in main()
115 "Expected stage %d, got stage %lu", stage, (ulong)uc.args[1]); in main()
116 if (stage == 1) { in main()
H A Dcpuid_test.c120 static void run_vcpu(struct kvm_vcpu *vcpu, int stage) in run_vcpu() argument
129 uc.args[1] == stage + 1, in run_vcpu()
131 stage + 1, (ulong)uc.args[1]); in run_vcpu()
222 int stage; in main() local
232 for (stage = 0; stage < 3; stage++) in main()
233 run_vcpu(vcpu, stage); in main()
H A Dhyperv_evmcs.c240 int stage; in main() local
265 for (stage = 1;; stage++) { in main()
283 uc.args[1] == stage, "Stage %d: Unexpected register values vmexit, got %lx", in main()
284 stage, (ulong)uc.args[1]); in main()
289 if (stage == 8) { in main()
299 if (stage == 9) { in main()
/linux/Documentation/leds/
H A Dleds-sc27xx.rst16 for the high stage. To be compatible with the hardware pattern
17 format, we should set brightness as 0 for rise stage, fall
18 stage and low stage.
20 - Min stage duration: 125 ms
21 - Max stage duration: 31875 ms
23 Since the stage duration step is 125 ms, the duration should be
/linux/tools/testing/selftests/kvm/arm64/
H A Dhypercalls.c59 static int stage = TEST_STAGE_REG_IFACE; variable
113 switch (stage) { in guest_test_hvc()
118 res.a0, hc_info->func_id, hc_info->arg1, stage); in guest_test_hvc()
123 res.a0, hc_info->func_id, hc_info->arg1, stage); in guest_test_hvc()
126 GUEST_FAIL("Unexpected stage = %u", stage); in guest_test_hvc()
133 while (stage != TEST_STAGE_END) { in guest_code()
134 switch (stage) { in guest_code()
145 GUEST_FAIL("Unexpected stage = %u", stage); in guest_code()
148 GUEST_SYNC(stage); in guest_code()
273 int prev_stage = stage; in test_guest_stage()
[all …]
/linux/tools/testing/selftests/damon/
H A D_damon_sysfs.py62 def stage(self): member in DamosAccessPattern
110 def stage(self): member in DamosQuotaGoal
163 def stage(self):
198 err = goal.stage()
237 def stage(self):
284 def stage(self):
334 def stage(self):
340 err = filter_.stage()
358 def stage(self):
380 def stage(sel
156 def stage(self): global() member in DamosQuota
214 def stage(self): global() member in DamosWatermarks
261 def stage(self): global() member in DamosFilter
311 def stage(self): global() member in DamosFilters
335 def stage(self): global() member in DamosDest
357 def stage(self): global() member in DamosDests
437 def stage(self): global() member in Damos
491 def stage(self): global() member in DamonTarget
520 def stage(self): global() member in IntervalsGoal
566 def stage(self): global() member in DamonAttrs
623 def stage(self): global() member in DamonCtx
[all...]
/linux/tools/testing/selftests/tc-testing/plugin-lib/
H A DnsPlugin.py86 def adjust_command(self, stage, command): argument
87 super().adjust_command(stage, command)
99 if stage == 'setup' or stage == 'execute' or stage == 'verify' or stage == 'teardown':
101 print('adjust_command: stage is {}; inserting netns stuff in command [{}] list [{}]'.format(stage, command, cmdlist))
228 def _exec_cmd(self, stage, command):
247 def _exec_cmd_batched(self, stage, command
221 _exec_cmd(self, stage, command) global() argument
240 _exec_cmd_batched(self, stage, commands) global() argument
[all...]
/linux/arch/riscv/include/asm/
H A Dalternative.h50 unsigned int stage);
53 unsigned int stage);
56 unsigned int stage);
59 unsigned int stage);
62 unsigned int stage);
/linux/tools/testing/selftests/liveupdate/
H A Dluo_test_utils.c180 void restore_and_read_stage(int state_session_fd, int token, int *stage) in daemonize_and_wait()
192 *stage = atoi(buf); in daemonize_and_wait()
232 {"stage", required_argument, 0, 's'}, in luo_test()
236 int stage = 1; in luo_test()
243 stage = atoi(optarg); in luo_test()
244 if (stage != 1 && stage != 2) in luo_test()
245 fail_exit("Invalid stage argument"); in luo_test()
251 return stage; in luo_test()
278 ksft_exit_fail_msg("Stage mismatch Requested --stage
156 restore_and_read_stage(int state_session_fd,int token,int * stage) restore_and_read_stage() argument
212 int stage = 1; parse_stage_args() local
[all...]
H A Dluo_kexec_simple.c50 int session_fd, mfd, stage; in run_stage_2() local
54 restore_and_read_stage(state_session_fd, STATE_MEMFD_TOKEN, &stage); in run_stage_2()
55 if (stage != 2) in run_stage_2()
56 fail_exit("Expected stage 2, but state file contains %d", stage); in run_stage_2()
/linux/Documentation/ABI/testing/
H A Dsysfs-bus-iio-health-afe440x7 specific stage number corresponding to datasheet stage names
19 calculated difference in the value of stage 1 - 2 and 3 - 4.
21 The LED current for the stage is controlled via
39 Transimpedance Amplifier during the associated stage.
/linux/drivers/staging/media/atomisp/pci/
H A Dsh_css_params.c699 const struct ia_css_pipeline_stage *stage,
863 const struct ia_css_pipeline_stage *stage, in ia_css_process_kernel()
871 struct ia_css_pipeline_stage *stage; in ia_css_process_kernel()
874 for (stage = pipeline->stages; stage; stage = stage->next) { in ia_css_process_kernel() local
875 if (!stage || !stage->binary) in ia_css_process_kernel()
877 process(pipeline->pipe_id, stage, param in ia_css_process_kernel()
866 ia_css_process_kernel(struct ia_css_stream * stream,struct ia_css_isp_parameters * params,void (* process)(unsigned int pipe_id,const struct ia_css_pipeline_stage * stage,struct ia_css_isp_parameters * params)) ia_css_process_kernel() argument
1069 ia_css_params_alloc_convert_sctbl(const struct ia_css_pipeline_stage * stage,const struct ia_css_shading_table * shading_table) ia_css_params_alloc_convert_sctbl() argument
1116 ia_css_params_store_sctbl(const struct ia_css_pipeline_stage * stage,ia_css_ptr sc_tbl,const struct ia_css_shading_table * sc_config) ia_css_params_store_sctbl() argument
1162 const struct ia_css_pipeline_stage *stage; ia_css_process_zoom_and_motion() local
3021 process_kernel_parameters(unsigned int pipe_id,struct ia_css_pipeline_stage * stage,struct ia_css_isp_parameters * params,unsigned int isp_pipe_version,unsigned int raw_bit_depth) process_kernel_parameters() argument
3088 struct ia_css_pipeline_stage *stage; sh_css_param_update_isp_params() local
3255 sh_css_params_write_to_ddr_internal(struct ia_css_pipe * pipe,unsigned int pipe_id,struct ia_css_isp_parameters * params,const struct ia_css_pipeline_stage * stage,struct sh_css_ddr_address_map * ddr_map,struct sh_css_ddr_address_map_size * ddr_map_size) sh_css_params_write_to_ddr_internal() argument
3760 sh_css_store_sp_stage_to_ddr(unsigned int pipe,unsigned int stage) sh_css_store_sp_stage_to_ddr() argument
3771 sh_css_store_isp_stage_to_ddr(unsigned int pipe,unsigned int stage) sh_css_store_isp_stage_to_ddr() argument
4526 struct ia_css_pipeline_stage *stage; ia_css_en_dz_capt_pipe() local
[all...]
/linux/drivers/net/wwan/iosm/
H A Diosm_ipc_mmio.c52 static bool ipc_mmio_is_valid_exec_stage(enum ipc_mem_exec_stage stage) in ipc_mmio_is_valid_exec_stage() argument
54 switch (stage) { in ipc_mmio_is_valid_exec_stage()
87 enum ipc_mem_exec_stage stage; in ipc_mmio_init() local
102 stage = ipc_mmio_get_exec_stage(ipc_mmio); in ipc_mmio_init()
103 if (ipc_mmio_is_valid_exec_stage(stage)) in ipc_mmio_init()
110 dev_err(ipc_mmio->dev, "invalid exec stage %X", stage); in ipc_mmio_init()

12345678