mirror of
https://github.com/lm-sensors/lm-sensors
synced 2025-08-31 06:15:15 +00:00
(mds) Add via686a integrated sensors support. Untested.
git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@742 7894878c-1315-0410-8ee3-d5d059ff63e0
This commit is contained in:
@@ -418,9 +418,148 @@ void print_sis5595(const sensors_chip_name *name)
|
||||
if (!sensors_get_label(*name,SENSORS_SIS5595_ALARMS,&label)) {
|
||||
print_label(label,10);
|
||||
printf("Board temperature input (usually LM75 chips) %s\n",
|
||||
alarms & SIS5595_ALARM_BTI?"ALARM":" ");
|
||||
alarms & SIS5595_ALARM_BTI ?"ALARM":" ");
|
||||
}
|
||||
free_the_label(&label);
|
||||
|
||||
}
|
||||
|
||||
void print_via686a(const sensors_chip_name *name)
|
||||
{
|
||||
char *label = NULL;
|
||||
double cur,min,max,fdiv;
|
||||
int alarms,valid;
|
||||
|
||||
if (!sensors_get_feature(*name,SENSORS_VIA686A_ALARMS,&cur))
|
||||
alarms = cur + 0.5;
|
||||
else {
|
||||
printf("ERROR: Can't get alarm data!\n");
|
||||
alarms = 0;
|
||||
}
|
||||
|
||||
if (!sensors_get_label_and_valid(*name,SENSORS_VIA686A_IN0,&label,&valid) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN0,&cur) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN0_MIN,&min) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN0_MAX,&max)) {
|
||||
if (valid) {
|
||||
print_label(label,10);
|
||||
printf("%+6.2f V (min = %+6.2f V, max = %+6.2f V) %s\n",
|
||||
cur,min,max,alarms&VIA686A_ALARM_IN0?"ALARM":"");
|
||||
}
|
||||
} else
|
||||
printf("ERROR: Can't get IN0 data!\n");
|
||||
free_the_label(&label);
|
||||
if (!sensors_get_label_and_valid(*name,SENSORS_VIA686A_IN1,&label,&valid) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN1,&cur) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN1_MIN,&min) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN1_MAX,&max)) {
|
||||
if (valid) {
|
||||
print_label(label,10);
|
||||
printf("%+6.2f V (min = %+6.2f V, max = %+6.2f V) %s\n",
|
||||
cur,min,max,alarms&VIA686A_ALARM_IN1?"ALARM":"");
|
||||
}
|
||||
} else
|
||||
printf("ERROR: Can't get IN1 data!\n");
|
||||
free_the_label(&label);
|
||||
if (!sensors_get_label_and_valid(*name,SENSORS_VIA686A_IN2,&label,&valid) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN2,&cur) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN2_MIN,&min) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN2_MAX,&max)) {
|
||||
if (valid) {
|
||||
print_label(label,10);
|
||||
printf("%+6.2f V (min = %+6.2f V, max = %+6.2f V) %s\n",
|
||||
cur,min,max,alarms&VIA686A_ALARM_IN2?"ALARM":"");
|
||||
}
|
||||
} else
|
||||
printf("ERROR: Can't get IN2 data!\n");
|
||||
free_the_label(&label);
|
||||
if (!sensors_get_label_and_valid(*name,SENSORS_VIA686A_IN3,&label,&valid) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN3,&cur) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN3_MIN,&min) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN3_MAX,&max)) {
|
||||
if (valid) {
|
||||
print_label(label,10);
|
||||
printf("%+6.2f V (min = %+6.2f V, max = %+6.2f V) %s\n",
|
||||
cur,min,max,alarms&VIA686A_ALARM_IN3?"ALARM":"");
|
||||
}
|
||||
} else
|
||||
printf("ERROR: Can't get IN3 data!\n");
|
||||
free_the_label(&label);
|
||||
if (!sensors_get_label_and_valid(*name,SENSORS_VIA686A_IN4,&label,&valid) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN4,&cur) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN4_MIN,&min) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_IN4_MAX,&max)) {
|
||||
if (valid) {
|
||||
print_label(label,10);
|
||||
printf("%+6.2f V (min = %+6.2f V, max = %+6.2f V) %s\n",
|
||||
cur,min,max,alarms&VIA686A_ALARM_IN4?"ALARM":"");
|
||||
}
|
||||
} else
|
||||
printf("ERROR: Can't get IN4 data!\n");
|
||||
free_the_label(&label);
|
||||
|
||||
if (!sensors_get_label_and_valid(*name,SENSORS_VIA686A_FAN1,&label,&valid) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_FAN1,&cur) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_FAN1_DIV,&fdiv) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_FAN1_MIN,&min)) {
|
||||
if (valid) {
|
||||
print_label(label,10);
|
||||
printf("%4.0f RPM (min = %4.0f RPM, div = %1.0f) %s\n",
|
||||
cur,min,fdiv, alarms&VIA686A_ALARM_FAN1?"ALARM":"");
|
||||
}
|
||||
} else
|
||||
printf("ERROR: Can't get FAN1 data!\n");
|
||||
free_the_label(&label);
|
||||
if (!sensors_get_label_and_valid(*name,SENSORS_VIA686A_FAN2,&label,&valid) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_FAN2,&cur) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_FAN2_DIV,&fdiv) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_FAN2_MIN,&min)) {
|
||||
if (valid) {
|
||||
print_label(label,10);
|
||||
printf("%4.0f RPM (min = %4.0f RPM, div = %1.0f) %s\n",
|
||||
cur,min,fdiv, alarms&VIA686A_ALARM_FAN2?"ALARM":"");
|
||||
}
|
||||
} else
|
||||
printf("ERROR: Can't get FAN2 data!\n");
|
||||
free_the_label(&label);
|
||||
|
||||
if (!sensors_get_label_and_valid(*name,SENSORS_VIA686A_TEMP,&label,&valid) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_TEMP,&cur) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_TEMP_HYST,&min) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_TEMP_OVER,&max)) {
|
||||
if (valid) {
|
||||
print_label(label,10);
|
||||
printf("%+3.0f C (limit = %+3.0f C, hysteresis = %+3.0f C) %s\n",
|
||||
cur,max,min, alarms&VIA686A_ALARM_TEMP?"ALARM":"");
|
||||
}
|
||||
} else
|
||||
printf("ERROR: Can't get TEMP data!\n");
|
||||
free_the_label(&label);
|
||||
if (!sensors_get_label_and_valid(*name,SENSORS_VIA686A_TEMP2,&label,&valid) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_TEMP2,&cur) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_TEMP2_HYST,&min) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_TEMP2_OVER,&max)) {
|
||||
if (valid) {
|
||||
print_label(label,10);
|
||||
printf("%+3.0f C (limit = %+3.0f C, hysteresis = %+3.0f C) %s\n",
|
||||
cur,max,min, alarms&VIA686A_ALARM_TEMP2?"ALARM":"");
|
||||
}
|
||||
} else
|
||||
printf("ERROR: Can't get TEMP2 data!\n");
|
||||
free_the_label(&label);
|
||||
if (!sensors_get_label_and_valid(*name,SENSORS_VIA686A_TEMP3,&label,&valid) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_TEMP3,&cur) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_TEMP3_HYST,&min) &&
|
||||
!sensors_get_feature(*name,SENSORS_VIA686A_TEMP3_OVER,&max)) {
|
||||
if (valid) {
|
||||
print_label(label,10);
|
||||
printf("%+3.0f C (limit = %+3.0f C, hysteresis = %+3.0f C) %s\n",
|
||||
cur,max,min, alarms&VIA686A_ALARM_TEMP3?"ALARM":"");
|
||||
}
|
||||
} else
|
||||
printf("ERROR: Can't get TEMP3 data!\n");
|
||||
free_the_label(&label);
|
||||
|
||||
}
|
||||
|
||||
void print_lm78(const sensors_chip_name *name)
|
||||
|
Reference in New Issue
Block a user