Home
last modified time | relevance | path

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

/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.c400 s32 tmax, tdelta, maxpow, powadj; in wf_smu_create_cpu_fans() local
417 tmax = ((s32)fvt->maxtemp) << 16; in wf_smu_create_cpu_fans()
419 tmax = 0x5e0000; /* 94 degree default */ in wf_smu_create_cpu_fans()
447 pid_param.tmax = tmax; in wf_smu_create_cpu_fans()
448 pid_param.ttarget = tmax - tdelta; in wf_smu_create_cpu_fans()
458 FIX32TOPRINT(pid_param.ttarget), FIX32TOPRINT(pid_param.tmax), in wf_smu_create_cpu_fans()
508 if (temp > st->pid.param.tmax) in wf_smu_cpu_fans_tick()
Dwindfarm_pm112.c133 s32 tmax; in create_cpu_loop() local
148 tmax = fvt->maxtemp << 16; in create_cpu_loop()
150 tmax = 95 << 16; /* default to 95 degrees C */ in create_cpu_loop()
153 if (tmax < cpu_all_tmax) in create_cpu_loop()
154 cpu_all_tmax = tmax; in create_cpu_loop()
170 pid.ttarget = tmax - (piddata->target_temp_delta << 16); in create_cpu_loop()
171 pid.tmax = tmax; in create_cpu_loop()
Dwindfarm_rm31.c298 s32 tmax, ttarget, ptarget; in cpu_setup_pid() local
302 tmax = mpu->tmax << 16; in cpu_setup_pid()
307 cpu, FIX32TOPRINT(ttarget), FIX32TOPRINT(tmax)); in cpu_setup_pid()
310 if (tmax < cpu_all_tmax) in cpu_setup_pid()
311 cpu_all_tmax = tmax; in cpu_setup_pid()
328 pid.tmax = tmax; in cpu_setup_pid()
Dwindfarm_pm121.c657 s32 tmax, tdelta, maxpow, powadj; in pm121_create_cpu_fans() local
675 tmax = ((s32)fvt->maxtemp) << 16; in pm121_create_cpu_fans()
677 tmax = 0x5e0000; /* 94 degree default */ in pm121_create_cpu_fans()
702 pid_param.tmax = tmax; in pm121_create_cpu_fans()
703 pid_param.ttarget = tmax - tdelta; in pm121_create_cpu_fans()
713 FIX32TOPRINT(pid_param.ttarget), FIX32TOPRINT(pid_param.tmax), in pm121_create_cpu_fans()
762 if (temp > st->pid.param.tmax) in pm121_cpu_fans_tick()
Dwindfarm_pm72.c397 s32 tmax, ttarget, ptarget; in cpu_setup_pid() local
401 tmax = mpu->tmax << 16; in cpu_setup_pid()
406 cpu, FIX32TOPRINT(ttarget), FIX32TOPRINT(tmax)); in cpu_setup_pid()
409 if (tmax < cpu_all_tmax) in cpu_setup_pid()
410 cpu_all_tmax = tmax; in cpu_setup_pid()
427 pid.tmax = tmax; in cpu_setup_pid()
Dtherm_pm72.c890 sval = (state->mpu.tmax << 16) - ((integ_p >> 20) & 0xffffffff); in do_cpu_pid()
945 if (temp_combi >= ((state0->mpu.tmax + 8) << 16)) { in do_monitor_cpu_combined()
949 } else if (temp_combi > (state0->mpu.tmax << 16)) { in do_monitor_cpu_combined()
952 temp_combi >> 16, state0->mpu.tmax, state0->overtemp); in do_monitor_cpu_combined()
1025 if (temp >= ((state->mpu.tmax + 8) << 16)) { in do_monitor_cpu_split()
1030 } else if (temp > (state->mpu.tmax << 16)) { in do_monitor_cpu_split()
1033 state->index, temp >> 16, state->mpu.tmax, state->overtemp); in do_monitor_cpu_split()
1093 if (temp >= ((state->mpu.tmax + 8) << 16)) { in do_monitor_cpu_rack()
1098 } else if (temp > (state->mpu.tmax << 16)) { in do_monitor_cpu_rack()
1101 state->index, temp >> 16, state->mpu.tmax, state->overtemp); in do_monitor_cpu_rack()
Dwindfarm_pid.h66 s32 tmax; /* PID input max */ member
Dwindfarm_mpu.h47 u8 tmax; /* 0x29 - Max temperature */ member
Dtherm_pm72.h36 u8 tmax; /* 0x29 - Max temperature */ member
Dwindfarm_pid.c120 sval = st->param.tmax - (s32)(integ >> 20); in wf_cpu_pid_run()
/drivers/leds/
Dleds-tca6507.c219 int tmax = msec * 9 / 8; in choose_times() local
230 if (t > tmax) in choose_times()
237 if (tt > tmax) in choose_times()
/drivers/net/ethernet/marvell/
Dsky2.c4111 const u32 tmax = sky2_clk2us(hw, 0x0ffffff); in sky2_set_coalesce() local
4113 if (ecmd->tx_coalesce_usecs > tmax || in sky2_set_coalesce()
4114 ecmd->rx_coalesce_usecs > tmax || in sky2_set_coalesce()
4115 ecmd->rx_coalesce_usecs_irq > tmax) in sky2_set_coalesce()