Home
last modified time | relevance | path

Searched refs:tmax (Results 1 – 12 of 12) sorted by relevance

/Linux-v5.4/drivers/gpu/drm/msm/dsi/phy/
Ddsi_phy.c13 static inline s32 linear_inter(s32 tmax, s32 tmin, s32 percent, in linear_inter() argument
18 v = (tmax - tmin) * percent; in linear_inter()
29 s32 tmax, tmin, clk_z; in dsi_dphy_timing_calc_clk_zero() local
36 tmax = 511; in dsi_dphy_timing_calc_clk_zero()
39 tmax = 255; in dsi_dphy_timing_calc_clk_zero()
40 clk_z = linear_inter(tmax, tmin, pcnt, 0, true); in dsi_dphy_timing_calc_clk_zero()
54 s32 tmax, tmin; in msm_dsi_dphy_timing_calc() local
68 tmax = S_DIV_ROUND_UP(95 * coeff, ui) - 2; in msm_dsi_dphy_timing_calc()
70 timing->clk_prepare = linear_inter(tmax, tmin, pcnt0, 0, true); in msm_dsi_dphy_timing_calc()
82 tmax = S_DIV_ROUND_UP(temp, ui) - 2; in msm_dsi_dphy_timing_calc()
[all …]
/Linux-v5.4/drivers/macintosh/
Dwindfarm_pm91.c148 s32 tmax, tdelta, maxpow, powadj; in wf_smu_create_cpu_fans() local
165 tmax = ((s32)fvt->maxtemp) << 16; in wf_smu_create_cpu_fans()
167 tmax = 0x5e0000; /* 94 degree default */ in wf_smu_create_cpu_fans()
192 pid_param.tmax = tmax; in wf_smu_create_cpu_fans()
193 pid_param.ttarget = tmax - tdelta; in wf_smu_create_cpu_fans()
203 FIX32TOPRINT(pid_param.ttarget), FIX32TOPRINT(pid_param.tmax), in wf_smu_create_cpu_fans()
253 if (temp > st->pid.param.tmax) in wf_smu_cpu_fans_tick()
Dwindfarm_pm81.c399 s32 tmax, tdelta, maxpow, powadj; in wf_smu_create_cpu_fans() local
416 tmax = ((s32)fvt->maxtemp) << 16; in wf_smu_create_cpu_fans()
418 tmax = 0x5e0000; /* 94 degree default */ in wf_smu_create_cpu_fans()
446 pid_param.tmax = tmax; in wf_smu_create_cpu_fans()
447 pid_param.ttarget = tmax - tdelta; in wf_smu_create_cpu_fans()
457 FIX32TOPRINT(pid_param.ttarget), FIX32TOPRINT(pid_param.tmax), in wf_smu_create_cpu_fans()
507 if (temp > st->pid.param.tmax) in wf_smu_cpu_fans_tick()
Dwindfarm_pm112.c132 s32 tmax; in create_cpu_loop() local
147 tmax = fvt->maxtemp << 16; in create_cpu_loop()
149 tmax = 95 << 16; /* default to 95 degrees C */ in create_cpu_loop()
152 if (tmax < cpu_all_tmax) in create_cpu_loop()
153 cpu_all_tmax = tmax; in create_cpu_loop()
169 pid.ttarget = tmax - (piddata->target_temp_delta << 16); in create_cpu_loop()
170 pid.tmax = tmax; in create_cpu_loop()
Dwindfarm_rm31.c297 s32 tmax, ttarget, ptarget; in cpu_setup_pid() local
301 tmax = mpu->tmax << 16; in cpu_setup_pid()
306 cpu, FIX32TOPRINT(ttarget), FIX32TOPRINT(tmax)); in cpu_setup_pid()
309 if (tmax < cpu_all_tmax) in cpu_setup_pid()
310 cpu_all_tmax = tmax; in cpu_setup_pid()
327 pid.tmax = tmax; in cpu_setup_pid()
Dwindfarm_pm121.c647 s32 tmax, tdelta, maxpow, powadj; in pm121_create_cpu_fans() local
665 tmax = ((s32)fvt->maxtemp) << 16; in pm121_create_cpu_fans()
667 tmax = 0x5e0000; /* 94 degree default */ in pm121_create_cpu_fans()
692 pid_param.tmax = tmax; in pm121_create_cpu_fans()
693 pid_param.ttarget = tmax - tdelta; in pm121_create_cpu_fans()
703 FIX32TOPRINT(pid_param.ttarget), FIX32TOPRINT(pid_param.tmax), in pm121_create_cpu_fans()
752 if (temp > st->pid.param.tmax) in pm121_cpu_fans_tick()
Dwindfarm_pm72.c396 s32 tmax, ttarget, ptarget; in cpu_setup_pid() local
400 tmax = mpu->tmax << 16; in cpu_setup_pid()
405 cpu, FIX32TOPRINT(ttarget), FIX32TOPRINT(tmax)); in cpu_setup_pid()
408 if (tmax < cpu_all_tmax) in cpu_setup_pid()
409 cpu_all_tmax = tmax; in cpu_setup_pid()
426 pid.tmax = tmax; in cpu_setup_pid()
Dwindfarm_pid.h65 s32 tmax; /* PID input max */ member
Dwindfarm_mpu.h46 u8 tmax; /* 0x29 - Max temperature */ member
Dwindfarm_pid.c119 sval = st->param.tmax - (s32)(integ >> 20); in wf_cpu_pid_run()
/Linux-v5.4/drivers/leds/
Dleds-tca6507.c220 int tmax = msec * 9 / 8; in choose_times() local
231 if (t > tmax) in choose_times()
238 if (tt > tmax) in choose_times()
/Linux-v5.4/drivers/net/ethernet/marvell/
Dsky2.c4092 const u32 tmax = sky2_clk2us(hw, 0x0ffffff); in sky2_set_coalesce() local
4094 if (ecmd->tx_coalesce_usecs > tmax || in sky2_set_coalesce()
4095 ecmd->rx_coalesce_usecs > tmax || in sky2_set_coalesce()
4096 ecmd->rx_coalesce_usecs_irq > tmax) in sky2_set_coalesce()