/Linux-v4.19/drivers/thermal/ |
D | qcom-spmi-temp-alarm.c | 69 unsigned int stage; member 125 unsigned int stage, stage_new, stage_old; in qpnp_tm_update_temp_no_adc() local 131 stage = ret; in qpnp_tm_update_temp_no_adc() 134 stage_new = stage; in qpnp_tm_update_temp_no_adc() 135 stage_old = chip->stage; in qpnp_tm_update_temp_no_adc() 137 stage_new = alarm_state_map[stage]; in qpnp_tm_update_temp_no_adc() 138 stage_old = alarm_state_map[chip->stage]; in qpnp_tm_update_temp_no_adc() 153 chip->stage = stage; in qpnp_tm_update_temp_no_adc() 203 unsigned int stage; in qpnp_tm_init() local 217 chip->stage = ret; in qpnp_tm_init() [all …]
|
/Linux-v4.19/drivers/watchdog/ |
D | kempld_wdt.c | 85 struct kempld_wdt_stage stage[KEMPLD_WDT_MAX_STAGES]; member 113 struct kempld_wdt_stage *stage, in kempld_wdt_set_stage_action() argument 119 if (!stage || !stage->mask) in kempld_wdt_set_stage_action() 123 stage_cfg = kempld_read8(pld, KEMPLD_WDT_STAGE_CFG(stage->id)); in kempld_wdt_set_stage_action() 132 kempld_write8(pld, KEMPLD_WDT_STAGE_CFG(stage->id), stage_cfg); in kempld_wdt_set_stage_action() 139 struct kempld_wdt_stage *stage, in kempld_wdt_set_stage_timeout() argument 151 if (!stage) in kempld_wdt_set_stage_timeout() 159 if (stage_timeout64 > stage->mask) in kempld_wdt_set_stage_timeout() 162 stage_timeout = stage_timeout64 & stage->mask; in kempld_wdt_set_stage_timeout() 165 stage_cfg = kempld_read8(pld, KEMPLD_WDT_STAGE_CFG(stage->id)); in kempld_wdt_set_stage_timeout() [all …]
|
/Linux-v4.19/tools/testing/selftests/tc-testing/plugin-lib/ |
D | nsPlugin.py | 41 def adjust_command(self, stage, command): argument 42 super().adjust_command(stage, command) 57 if stage == 'setup' or stage == 'execute' or stage == 'verify' or stage == 'teardown': 59 …nd: stage is {}; inserting netns stuff in command [{}] list [{}]'.format(stage, command, cmdlist)) 107 def _exec_cmd(self, stage, command): argument 115 self.adjust_command(stage, command)
|
D | valgrindPlugin.py | 56 def adjust_command(self, stage, command): argument 57 super().adjust_command(stage, command) 73 if stage == 'execute': 76 format(stage, command, cmdlist))
|
/Linux-v4.19/drivers/gpu/drm/msm/disp/dpu1/ |
D | dpu_hw_lm.c | 67 static inline int _stage_offset(struct dpu_hw_mixer *ctx, enum dpu_stage stage) in _stage_offset() argument 72 if (stage == DPU_STAGE_BASE) in _stage_offset() 74 else if (stage <= sblk->maxblendstages) in _stage_offset() 75 rc = sblk->blendstage_base[stage - DPU_STAGE_0]; in _stage_offset() 119 u32 stage, u32 fg_alpha, u32 bg_alpha, u32 blend_op) in dpu_hw_lm_setup_blend_config_sdm845() argument 125 if (stage == DPU_STAGE_BASE) in dpu_hw_lm_setup_blend_config_sdm845() 128 stage_off = _stage_offset(ctx, stage); in dpu_hw_lm_setup_blend_config_sdm845() 138 u32 stage, u32 fg_alpha, u32 bg_alpha, u32 blend_op) in dpu_hw_lm_setup_blend_config() argument 143 if (stage == DPU_STAGE_BASE) in dpu_hw_lm_setup_blend_config() 146 stage_off = _stage_offset(ctx, stage); in dpu_hw_lm_setup_blend_config()
|
D | dpu_crtc.c | 305 lm->ops.setup_blend_config(lm, pstate->stage, 0XFF, 0, in _dpu_crtc_setup_blend_cfg() 376 pstate->stage, in _dpu_crtc_blend_setup_mixer() 387 if (pstate->stage == DPU_STAGE_BASE && format->alpha_enable) in _dpu_crtc_blend_setup_mixer() 390 stage_idx = zpos_cnt[pstate->stage]++; in _dpu_crtc_blend_setup_mixer() 391 stage_cfg->stage[pstate->stage][stage_idx] = in _dpu_crtc_blend_setup_mixer() 393 stage_cfg->multirect_index[pstate->stage][stage_idx] = in _dpu_crtc_blend_setup_mixer() 412 1 << pstate->stage; in _dpu_crtc_blend_setup_mixer() 1451 int stage; member 1521 pstates[cnt].stage = pstate->normalized_zpos; in dpu_crtc_atomic_check() 1566 if (pstates[i].stage != z_pos) { in dpu_crtc_atomic_check() [all …]
|
/Linux-v4.19/drivers/gpu/drm/msm/disp/mdp5/ |
D | mdp5_ctl.c | 295 enum mdp_mixer_stage_id stage) in mdp_ctl_blend_mask() argument 298 case SSPP_VIG0: return MDP5_CTL_LAYER_REG_VIG0(stage); in mdp_ctl_blend_mask() 299 case SSPP_VIG1: return MDP5_CTL_LAYER_REG_VIG1(stage); in mdp_ctl_blend_mask() 300 case SSPP_VIG2: return MDP5_CTL_LAYER_REG_VIG2(stage); in mdp_ctl_blend_mask() 301 case SSPP_RGB0: return MDP5_CTL_LAYER_REG_RGB0(stage); in mdp_ctl_blend_mask() 302 case SSPP_RGB1: return MDP5_CTL_LAYER_REG_RGB1(stage); in mdp_ctl_blend_mask() 303 case SSPP_RGB2: return MDP5_CTL_LAYER_REG_RGB2(stage); in mdp_ctl_blend_mask() 304 case SSPP_DMA0: return MDP5_CTL_LAYER_REG_DMA0(stage); in mdp_ctl_blend_mask() 305 case SSPP_DMA1: return MDP5_CTL_LAYER_REG_DMA1(stage); in mdp_ctl_blend_mask() 306 case SSPP_VIG3: return MDP5_CTL_LAYER_REG_VIG3(stage); in mdp_ctl_blend_mask() [all …]
|
D | mdp5_crtc.c | 190 static inline u32 mdp5_lm_use_fg_alpha_mask(enum mdp_mixer_stage_id stage) in mdp5_lm_use_fg_alpha_mask() argument 192 switch (stage) { in mdp5_lm_use_fg_alpha_mask() 235 enum mdp5_pipe stage[STAGE_MAX + 1][MAX_PIPE_STAGE] = { { SSPP_NONE } }; in blend_setup() enum 241 #define blender(stage) ((stage) - STAGE0) in blend_setup() argument 260 pstates[pstate->stage] = pstate; in blend_setup() 261 stage[pstate->stage][PIPE_LEFT] = mdp5_plane_pipe(plane); in blend_setup() 267 r_stage[pstate->stage][PIPE_LEFT] = in blend_setup() 276 stage[pstate->stage][PIPE_RIGHT] = right_pipe; in blend_setup() 277 r_stage[pstate->stage][PIPE_RIGHT] = right_pipe; in blend_setup() 364 mdp5_ctl_blend(ctl, pipeline, stage, r_stage, plane_cnt, in blend_setup() [all …]
|
D | mdp5_kms.h | 116 enum mdp_mixer_stage_id stage; member 193 static inline const char *stage2name(enum mdp_mixer_stage_id stage) in stage2name() argument 202 return names[stage]; in stage2name()
|
/Linux-v4.19/drivers/gpu/drm/msm/disp/mdp4/ |
D | mdp4_kms.h | 113 enum mdp4_pipe pipe, enum mdp_mixer_stage_id stage) in mixercfg() argument 119 mixer_cfg |= MDP4_LAYERMIXER_IN_CFG_PIPE0(stage) | in mixercfg() 125 mixer_cfg |= MDP4_LAYERMIXER_IN_CFG_PIPE1(stage) | in mixercfg() 131 mixer_cfg |= MDP4_LAYERMIXER_IN_CFG_PIPE2(stage) | in mixercfg() 137 mixer_cfg |= MDP4_LAYERMIXER_IN_CFG_PIPE3(stage) | in mixercfg() 143 mixer_cfg |= MDP4_LAYERMIXER_IN_CFG_PIPE4(stage) | in mixercfg() 149 mixer_cfg |= MDP4_LAYERMIXER_IN_CFG_PIPE5(stage) | in mixercfg() 155 mixer_cfg |= MDP4_LAYERMIXER_IN_CFG_PIPE6(stage) | in mixercfg()
|
/Linux-v4.19/Documentation/ABI/testing/ |
D | sysfs-bus-iio-health-afe440x | 7 specific stage number corresponding to datasheet stage names 15 calculated difference in the value of stage 1 - 2 and 3 - 4. 33 Transimpedance Amplifier during the associated stage. 41 this stage. Y is the specific stage number.
|
/Linux-v4.19/tools/testing/selftests/tc-testing/ |
D | tdc.py | 29 def __init__(self, stage, output, message): argument 30 self.stage = stage 95 def call_adjust_command(self, stage, command): argument 97 command = pgn_inst.adjust_command(stage, command) 116 def exec_cmd(args, pm, stage, command): argument 126 command = pm.call_adjust_command(stage, command) 146 def prepare_env(args, pm, stage, prefix, cmdlist, output = None): argument 164 (proc, foutput) = exec_cmd(args, pm, stage, cmd) 176 stage, output, 252 stage = None [all …]
|
D | README | 83 stage does some setup if the test needs it. The teardown stage undoes 88 The execute and verify stages each run one command. The execute stage 90 verify stage checks the return code for success, and also compares 93 Each of the commands in any stage will run in a shell instance. 128 -P, --pause Pause execution just before post-suite stage 193 pre- and post-execute stage 194 adjust-command (runs in all stages and receives the stage name) 198 failure during setup or teardown stage. 202 The adjust-command hook receives the stage id (see list below) and the 228 runs each command in the execute stage under valgrind,
|
D | TdcPlugin.py | 43 def adjust_command(self, stage, command): argument 46 print(' -- {}.adjust_command {}'.format(self.sub_class, stage))
|
/Linux-v4.19/drivers/gpu/drm/tinydrm/ |
D | repaper.c | 193 enum repaper_stage stage) in repaper_even_pixels() argument 208 switch (stage) { in repaper_even_pixels() 239 enum repaper_stage stage) in repaper_odd_pixels() argument 253 switch (stage) { in repaper_odd_pixels() 289 enum repaper_stage stage) in repaper_all_pixels() argument 305 switch (stage) { in repaper_all_pixels() 333 enum repaper_stage stage) in repaper_one_line() argument 345 repaper_odd_pixels(epd, &p, data, fixed_value, mask, stage); in repaper_one_line() 356 repaper_even_pixels(epd, &p, data, fixed_value, mask, stage); in repaper_one_line() 370 repaper_all_pixels(epd, &p, data, fixed_value, mask, stage); in repaper_one_line() [all …]
|
/Linux-v4.19/drivers/media/radio/wl128x/ |
D | fmdrv_common.c | 179 fmdev->irq_info.handlers[fmdev->irq_info.stage](fmdev); in fm_irq_call() 183 static inline void fm_irq_call_stage(struct fmdev *fmdev, u8 stage) in fm_irq_call_stage() argument 185 fmdev->irq_info.stage = stage; in fm_irq_call_stage() 189 static inline void fm_irq_timeout_stage(struct fmdev *fmdev, u8 stage) in fm_irq_timeout_stage() argument 191 fmdev->irq_info.stage = stage; in fm_irq_timeout_stage() 285 if (irq_info->stage != 0) { in recv_tasklet() 287 irq_info->stage = 0; in recv_tasklet() 294 irq_info->handlers[irq_info->stage](fmdev); in recv_tasklet() 321 irq_info->handlers[irq_info->stage](fmdev); in recv_tasklet() 531 static inline void fm_irq_common_cmd_resp_helper(struct fmdev *fmdev, u8 stage) in fm_irq_common_cmd_resp_helper() argument [all …]
|
/Linux-v4.19/tools/testing/selftests/kvm/ |
D | state_test.c | 130 int stage; in main() local 149 for (stage = 1;; stage++) { in main() 173 regs1.rsi == stage, "Unexpected register values vmexit #%lx, got %lx", in main() 174 stage, (ulong) regs1.rsi); in main()
|
/Linux-v4.19/drivers/input/misc/ |
D | keyspan_remote.c | 120 int stage; member 188 switch(remote->stage) { in keyspan_check_data() 202 remote->stage = 1; in keyspan_check_data() 218 remote->stage = 0; in keyspan_check_data() 235 remote->stage = 0; in keyspan_check_data() 238 remote->stage = 2; in keyspan_check_data() 267 remote->stage = 0; in keyspan_check_data() 288 remote->stage = 0; in keyspan_check_data() 306 remote->stage = 0; in keyspan_check_data() 329 remote->stage = 0; in keyspan_check_data()
|
/Linux-v4.19/tools/testing/selftests/tc-testing/creating-plugins/ |
D | AddingPlugins.txt | 18 pre (the pre-suite stage) 23 post (the post-suite stage) 36 def adjust_command(self, stage, command) # see "ADJUST" below 71 the execution stage and a string which is the actual command to be 72 executed. The plugin can adjust the command, based on the stage of
|
/Linux-v4.19/drivers/staging/octeon-usb/ |
D | octeon-hcd.c | 284 enum cvmx_usb_stage stage; member 1364 switch (transaction->stage) { in cvmx_usb_start_channel_control() 1606 if ((transaction->stage & 1) == 0) { in cvmx_usb_start_channel() 1620 usbc_hcsplt.s.compsplt = (transaction->stage == in cvmx_usb_start_channel() 2084 transaction->stage = CVMX_USB_STAGE_NON_CONTROL; in cvmx_usb_complete() 2153 transaction->stage = CVMX_USB_STAGE_SETUP; in cvmx_usb_submit_transaction() 2155 transaction->stage = CVMX_USB_STAGE_NON_CONTROL; in cvmx_usb_submit_transaction() 2401 switch (transaction->stage) { in cvmx_usb_transfer_control() 2411 transaction->stage = in cvmx_usb_transfer_control() 2417 transaction->stage = CVMX_USB_STAGE_DATA; in cvmx_usb_transfer_control() [all …]
|
/Linux-v4.19/lib/zstd/ |
D | decompress.c | 90 ZSTD_dStage stage; member 109 dctx->stage = ZSTDds_getFrameHeaderSize; in ZSTD_decompressBegin() 1725 switch (dctx->stage) { in ZSTD_nextInputType() 1738 int ZSTD_isSkipFrame(ZSTD_DCtx *dctx) { return dctx->stage == ZSTDds_skipFrame; } /* for zbuff */ in ZSTD_isSkipFrame() 1751 switch (dctx->stage) { in ZSTD_decompressContinue() 1758 dctx->stage = ZSTDds_decodeSkippableHeader; in ZSTD_decompressContinue() 1767 dctx->stage = ZSTDds_decodeFrameHeader; in ZSTD_decompressContinue() 1776 dctx->stage = ZSTDds_decodeBlockHeader; in ZSTD_decompressContinue() 1788 dctx->stage = bp.lastBlock ? ZSTDds_decompressLastBlock : ZSTDds_decompressBlock; in ZSTD_decompressContinue() 1795 dctx->stage = ZSTDds_checkChecksum; in ZSTD_decompressContinue() [all …]
|
/Linux-v4.19/include/trace/events/ |
D | nilfs2.h | 33 __field(int, stage) 38 __entry->stage = sci->sc_stage.scnt; 43 show_collection_stage(__entry->stage))
|
/Linux-v4.19/sound/ppc/ |
D | snd_ps3.c | 214 int stage) in snd_ps3_bump_buffer() argument 216 if (!stage) in snd_ps3_bump_buffer() 233 int fill_stages, dma_ch, stage; in snd_ps3_program_dma() local 261 for (stage = 0; stage < fill_stages; stage++) { in snd_ps3_program_dma() 262 dma_ch = stage * 2 + ch; in snd_ps3_program_dma() 291 stage); in snd_ps3_program_dma()
|
/Linux-v4.19/drivers/staging/greybus/ |
D | bootrom.c | 143 static int find_firmware(struct gb_bootrom *bootrom, u8 stage) in find_firmware() argument 154 if (stage != 2) { in find_firmware() 156 stage); in find_firmware() 209 ret = find_firmware(bootrom, size_request->stage); in gb_bootrom_firmware_size_request()
|
/Linux-v4.19/drivers/crypto/vmx/ |
D | aesp8-ppc.pl | 122 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 …]
|