[lm-sensors] RE: vt8231.c
Roger Lucas
roger at planbit.co.uk
Thu Nov 3 00:31:42 CET 2005
Hi Jean,
No problem. I appreciate the effort you are spending on the code review.
- Roger
-----Original Message-----
From: Jean Delvare [mailto:khali at linux-fr.org]
Sent: 02 November 2005 20:56
To: Roger Lucas
Cc: Knut_Petersen at t-online.de; LM Sensors
Subject: Re: [lm-sensors] RE: vt8231.c
Hi Roger, Knut,
> > But if I use
> >
> > compute fan1 @/9 , @*9
> > set fan1_min 0
> > set fan1_div 1
> >
> > that results in a sensors output of
> >
> > fan1: 1324 RPM (min = 0 RPM, div = 1) ALARM
>
> I'm not sure exactly how the VT8231 generates its alarms. I'll have to
look
> into the device spec and see exactly what it does then get back to you.
This means that my suggestion of changing FAN_FROM_REG earlier today
was probably not correct, and FAN_TO_REG should be changed instead:
static inline u8 FAN_TO_REG(long rpm, int div)
{
if (rpm == 0)
return 255;
return SENSORS_LIMIT(1310720 / (rpm * div), 1, 254);
}
static inline long FAN_FROM_REG(u8 reg, int div)
{
if (reg == 0 || reg == 255)
return 0;
return (1310720 / (reg * div));
}
Ideally we should probably handle the fan speed measurement registers
and the low limit registers differently, as 255 means no low limit (0
RPM) but is still a valid speed measurement. However, I am not certain
the benefit is worth the additional code.
Roger: I am in the process of reviewing all your code. This takes some
time so please be patient. I couldn't finish the review today,
hopefully it will be OK tomorrow.
Thanks,
--
Jean Delvare
More information about the lm-sensors
mailing list