Lines Matching refs:temp
34 * sensors : hd-temp
46 * sensors : hd-temp
58 * sensors : hd-temp
75 * sensors : cpu-temp cpu-power
331 s32 new_setpoint, temp, scaled, cputarget;
341 rc = wf_sensor_get(sensor_hd_temp, &temp);
343 printk(KERN_WARNING "windfarm: HD temp sensor error %d\n",
349 DBG("wf_smu: System Fans tick ! HD temp: %d.%03d\n",
350 FIX32TOPRINT(temp));
352 if (temp > (st->pid.param.itarget + 0x50000))
355 new_setpoint = wf_pid_run(&st->pid, temp);
475 s32 new_setpoint, temp, power, systarget;
485 rc = wf_sensor_get(sensor_cpu_temp, &temp);
487 printk(KERN_WARNING "windfarm: CPU temp sensor error %d\n",
501 DBG("wf_smu: CPU Fans tick ! CPU temp: %d.%03d, power: %d.%03d\n",
502 FIX32TOPRINT(temp), FIX32TOPRINT(power));
505 if (temp > 0x4a0000)
508 if (temp > st->pid.param.tmax)
511 new_setpoint = wf_cpu_pid_run(&st->pid, power, temp);
661 if (sensor_cpu_temp == NULL && !strcmp(sr->name, "cpu-temp")) {
666 if (sensor_hd_temp == NULL && !strcmp(sr->name, "hd-temp")) {