Changeset 1239

Show
Ignore:
Timestamp:
11/16/01 11:21:57 (7 years ago)
Author:
knobi
Message:

(MKN) Update information on temperature sensor readings.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/trunk/doc/chips/fscscy

    r1226 r1239  
    6060 
    6161Temperatures are measured in degrees Celcius. The resolution is 1 degree. 
     62In addition to state and actual temperature, the temperature sensors also export 
     63a LIMIT temperature for each sensor. The meaning of the information itself is 
     64obvious. The rest is guesswork. It likely triggers an alarm/event as soon as it is 
     65reached. The authors feeling is that it is even a writeable register. But beeing of 
     66the cautios kind he did not implement writing the LIMIT resister. The driver itself 
     67keeps track of the minimum and maximum temperatures since module load. The more often 
     68the module is accessed, the more meaningful these values are.  
    6269 
    6370FAN rotation speeds are reported in RPM (rotations per minute).  
     
    8996    temp3_state           temp3           temp3     RW     0 
    9097    temp4_state           temp4           temp4     RW     0 
     98    temp1_lim             temp1           temp1     R*     0 
     99    temp2_lim             temp2           temp2     R*     0 
     100    temp3_lim             temp3           temp3     R*     0 
     101    temp4_lim             temp4           temp4     R*     0 
     102    temp1_min             temp1           temp1      R     0 
     103    temp2_min             temp2           temp2      R     0 
     104    temp3_min             temp3           temp3      R     0 
     105    temp4_min             temp4           temp4      R     0 
    91106    temp1_max             temp1           temp1      R     0 
    92107    temp2_max             temp2           temp2      R     0 
     
    121136   wdog_control     wdog_preset     wdog_preset     RW     0 
    122137         
     138  R*: Maybe writable, but due to lack of documentation the author did not dare 
     139      to implement it :-) 
    123140 
    124141 
     
    138155    temp3_state               FSCSCY_SYSCTL_TEMP3_STATE            temp2:1 
    139156    temp4_state               FSCSCY_SYSCTL_TEMP4_STATE            temp3:1 
    140     temp1_max                 FSCSCY_SYSCTL_TEMP1_MAX              temp0:3 
    141     temp2_max                 FSCSCY_SYSCTL_TEMP2_MAX              temp1:3 
    142     temp3_max                 FSCSCY_SYSCTL_TEMP3_MAX              temp2:3 
    143     temp4_max                 FSCSCY_SYSCTL_TEMP4_MAX              temp3:3 
     157    temp1_lim                 FSCSCY_SYSCTL_TEMP1_LIM              temp0:3 
     158    temp2_lim                 FSCSCY_SYSCTL_TEMP2_LIM              temp1:3 
     159    temp3_lim                 FSCSCY_SYSCTL_TEMP3_LIM              temp2:3 
     160    temp4_lim                 FSCSCY_SYSCTL_TEMP4_LIM              temp3:3 
     161    temp1_min                 FSCSCY_SYSCTL_TEMP1_MIN              temp0:4 
     162    temp2_min                 FSCSCY_SYSCTL_TEMP2_MIN              temp1:4 
     163    temp3_min                 FSCSCY_SYSCTL_TEMP3_MIN              temp2:4 
     164    temp4_min                 FSCSCY_SYSCTL_TEMP4_MIN              temp3:4 
     165    temp1_max                 FSCSCY_SYSCTL_TEMP1_MIN              temp0:5 
     166    temp2_max                 FSCSCY_SYSCTL_TEMP2_MIN              temp1:5 
     167    temp3_max                 FSCSCY_SYSCTL_TEMP3_MIN              temp2:5 
     168    temp4_max                 FSCSCY_SYSCTL_TEMP4_MIN              temp3:5 
    144169           fan1                      FSCSCY_SYSCTL_FAN1             fan0:4 
    145170           fan2                      FSCSCY_SYSCTL_FAN2             fan1:4