Changeset 4772

Show
Ignore:
Timestamp:
09/05/07 17:00:40 (6 years ago)
Author:
khali
Message:

Convert the default configuration file to use the new smybol names.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/branches/lm-sensors-3.0.0/etc/sensors.conf.eg

    r4755 r4772  
    173173# Sensor type adjustments (certain chips only): 
    174174# ...Set temp1 to processor's thermal diode: 
    175 #       set sensor1 1 (Winbond chips) 
    176 #       set sensor1 3 (IT87xx and MTP008 chips) 
     175#       set temp1_type 1 (Winbond chips) 
     176#       set temp1_type 3 (IT87xx and MTP008 chips) 
    177177# 
    178178# ...Set temp1 sensor to 3904 transistor: 
    179 #       set sensor1 2 (Winbond chips) 
     179#       set temp1_type 2 (Winbond chips) 
    180180# 
    181181# ...Set temp1 to thermistor: 
    182 #       set sensor1 3435 (Winbond chips) 
    183 #       set sensor1 2 (IT87xx and MTP008 chips) 
     182#       set temp1_type 3435 (Winbond chips) 
     183#       set temp1_type 2 (IT87xx and MTP008 chips) 
    184184# 
    185185# Often, a temperature sensor is disconnected; disable it with an ignore line: 
     
    199199# Here are some examples: 
    200200# 
    201 #       set in0_max vid*1.05 
    202 #       set in0_min vid*0.95 
    203 #       set temp1_over 40 
    204 #       set temp1_hyst 37 
     201#       set in0_max cpu0_vid*1.05 
     202#       set in0_min cpu0_vid*0.95 
     203#       set temp1_max 40 
     204#       set temp1_max_hyst 37 
    205205# 
    206206# Think of tempx_over as 'alarm set' and tempx_hyst as 'alarm clear' 
     
    241241# There is one other feature: the 'bus' statement. An example is below. 
    242242# 
    243 #       bus "i2c-0" "SMBus PIIX4 adapter at e800" "Non-I2C SMBus adapter" 
     243#       bus "i2c-0" "SMBus PIIX4 adapter at e800" 
    244244# 
    245245# If we refer from now on to 'i2c-0' in 'chip' lines, this will run-time 
     
    325325# Here, we assume the VID readings are valid, and we use a max. 5% deviation 
    326326 
    327 #    set in0_min vid*0.95 
    328 #    set in0_max vid*1.05 
    329 #    set in1_min vid*0.95 
    330 #    set in1_max vid*1.05 
     327#    set in0_min cpu0_vid*0.95 
     328#    set in0_max cpu0_vid*1.05 
     329#    set in1_min cpu0_vid*0.95 
     330#    set in1_max cpu0_vid*1.05 
    331331#    set in2_min 3.3 * 0.95 
    332332#    set in2_max 3.3 * 1.05 
     
    335335#    set in4_min 12 * 0.95 
    336336#    set in4_max 12 * 1.05 
    337 #    set in5_max -12 * 0.95 
    338 #    set in5_min -12 * 1.05 
    339 #    set in6_max -5 * 0.95 
    340 #    set in6_min -5 * 1.05 
    341  
    342 # Examples for lm78, lm78j, lm79 temperature limits 
    343 #    set temp_over 40 
    344 #    set temp_hyst 37 
     337#    set in5_min -12 * 0.95 
     338#    set in5_max -12 * 1.05 
     339#    set in6_min -5 * 0.95 
     340#    set in6_max -5 * 1.05 
     341 
     342# Examples for lm78, lm79 temperature limits 
     343#    set temp1_max      40 
     344#    set temp1_max_hyst 37 
    345345 
    346346# Examples for w83781d temperature limits 
    347 #    set temp1_over 40 
    348 #    set temp1_hyst 37 
    349 #    set temp2_over 52 
    350 #    set temp2_hyst 47 
    351 #    set temp3_over 52 
    352 #    set temp3_hyst 47 
     347#    set temp1_max      40 
     348#    set temp1_max_hyst 37 
     349#    set temp2_max      52 
     350#    set temp2_max_hyst 47 
     351#    set temp3_max      52 
     352#    set temp3_max_hyst 47 
    353353 
    354354# Examples of fan low speed limits 
     
    365365# generally show the M/B temperature while the lm75 temp sensor will show 
    366366# the CPU temperature. 
    367 #    label temp "M/B Temp" 
     367#    label temp1 "M/B Temp" 
    368368 
    369369# Uncomment the following line to enable beeps for all alarms on this chip 
     
    376376# Most boards don't need scaling. Following is 
    377377# for the Asus TX97-E. If it doesn't work for you, feel free to complain. 
    378 #   compute temp @*2.0, @/2.0 
     378#   compute temp1 @*2.0, @/2.0 
    379379 
    380380# Examples for temperature limits 
    381 #    set temp_over 70    
    382 #    set temp_hyst 65    
     381#    set temp1_max      70 
     382#    set temp1_max_hyst 65 
    383383 
    384384# In case a lm75 is used together with a lm78, the lm78 temp sensor will 
    385385# generally show the M/B temperature while the lm75 temp sensor will show 
    386386# the CPU temperature. 
    387 #    label temp "CPU Temp" 
     387#    label temp1 "CPU Temp" 
    388388 
    389389 
     
    421421# So the final formula is newt = (.345(1.20t - 62.77)) - 12). 
    422422# Put this in the sensors.conf file as 
    423 # compute temp ((.345 * ((1.20 * @) - 62.77)) - 12), ... 
     423# compute temp1 ((.345 * ((1.20 * @) - 62.77)) - 12), ... 
    424424# where ... is the inverse function I leave to you. 
    425425# 
     
    431431# Warning. You still don't have enough information to do this. 
    432432#            ThermistorType     = NTC-10KC15-1608-1P (10K at 25C; Beta = 3435) 
    433 #   compute temp ((X * ((1.20 * @) - 62.77)) - Y), ... 
     433#   compute temp1 ((X * ((1.20 * @) - 62.77)) - Y), ... 
    434434#            ThermistorType     = NTC-103KC15-1608-1P  (??) 
    435 #   compute temp ((X * ((1.20 * @) - 62.77)) - Y), ... 
     435#   compute temp1 ((X * ((1.20 * @) - 62.77)) - Y), ... 
    436436#            ThermistorType     = NTC-103AT-2 (10K at 25C; Beta = 3435) 
    437 #   compute temp ((X * ((1.20 * @) - 62.77)) - Y), ... 
     437#   compute temp1 ((X * ((1.20 * @) - 62.77)) - Y), ... 
    438438#            ThermistorType     = NTC-103JT   (10K at 25C; Beta = 3435) 
    439 #   compute temp ((X * ((1.20 * @) - 62.77)) - Y), ... 
     439#   compute temp1 ((X * ((1.20 * @) - 62.77)) - Y), ... 
    440440 
    441441# examples for sis5595 temperature limits; 
    442442# for sis5595, temp_hyst is really the low limit, not a hysteresis value 
    443 #    set temp_over 40 
    444 #    set temp_hyst 37 
     443#    set temp1_max      40 
     444#    set temp1_max_hyst 37 
    445445 
    446446 
     
    479479# set limits to 20% for the battery voltage 
    480480 
    481 #    set in0_min vid*0.95 
    482 #    set in0_max vid*1.05 
    483 #    set in1_min vid*0.95 
    484 #    set in1_max vid*1.05 
     481#    set in0_min cpu0_vid*0.95 
     482#    set in0_max cpu0_vid*1.05 
     483#    set in1_min cpu0_vid*0.95 
     484#    set in1_max cpu0_vid*1.05 
    485485#    set in2_min 3.3 * 0.95 
    486486#    set in2_max 3.3 * 1.05 
     
    502502# 3435 = thermistor with Beta = 3435 
    503503# If temperature changes very little, try 1 or 2. 
    504 #   set sensor1 1 
    505 #   set sensor2 2 
    506 #   set sensor3 3435 
     504#   set temp1_type 1 
     505#   set temp2_type 2 
     506#   set temp3_type 3435 
    507507 
    508508# examples for temperature limits 
    509 #    set temp1_over 40 
    510 #    set temp1_hyst 37 
    511 #    set temp2_over 52 
    512 #    set temp2_hyst 47 
    513 #    set temp3_over 52 
    514 #    set temp3_hyst 47 
     509#    set temp1_max      40 
     510#    set temp1_max_hyst 37 
     511#    set temp2_max      52 
     512#    set temp2_max_hyst 47 
     513#    set temp3_max      52 
     514#    set temp3_max_hyst 47 
    515515 
    516516 
     
    539539# set limits to 20% for the battery voltage 
    540540 
    541 #   set in0_min vid*0.95 
    542 #   set in0_max vid*1.05 
     541#   set in0_min cpu0_vid*0.95 
     542#   set in0_max cpu0_vid*1.05 
    543543#   set in2_min 3.3 * 0.95 
    544544#   set in2_max 3.3 * 1.05 
     
    556556# 3435 = thermistor with Beta = 3435 
    557557# If temperature changes very little, try 1 or 2. 
    558 #   set sensor1 1 
    559 #   set sensor2 2 
     558#   set temp1_type 1 
     559#   set temp2_type 2 
    560560 
    561561# examples for temperature limits 
    562 #    set temp1_over 40 
    563 #    set temp1_hyst 37 
    564 #    set temp2_over 52 
    565 #    set temp2_hyst 47 
     562#    set temp1_max      40 
     563#    set temp1_max_hyst 37 
     564#    set temp2_max      52 
     565#    set temp2_max_hyst 47 
    566566 
    567567 
     
    641641# 3435 = thermistor with Beta = 3435 
    642642# If temperature changes very little, try 1 or 2. 
    643 #   set sensor1 1 
    644 #   set sensor2 2 
    645 #   set sensor3 3435 
     643#   set temp1_type 1 
     644#   set temp2_type 2 
     645#   set temp3_type 3435 
    646646 
    647647# examples for temperature limits 
    648 #    set temp1_over 40 
    649 #    set temp1_hyst 37 
    650 #    set temp2_over 52 
    651 #    set temp2_hyst 47 
     648#    set temp1_max      40 
     649#    set temp1_max_hyst 37 
     650#    set temp2_max      52 
     651#    set temp2_max_hyst 47 
    652652 
    653653 
     
    687687# if your vid is wrong, you'll need to adjust in0_min and in0_max 
    688688 
    689 #   set in0_min vid * 0.95 
    690 #   set in0_max vid * 1.05 
     689#   set in0_min cpu0_vid * 0.95 
     690#   set in0_max cpu0_vid * 1.05 
    691691#   set in1_min 12 * 0.90 
    692692#   set in1_max 12 * 1.10 
     
    706706# 3435 = thermistor with Beta = 3435 
    707707# If temperature changes very little, try 1 or 2. 
    708 #   set sensor1 1 
    709 #   set sensor2 2 
    710 #   set sensor3 3435 
     708#   set temp1_type 1 
     709#   set temp2_type 2 
     710#   set temp3_type 3435 
    711711 
    712712    label temp1 "M/B Temp" 
     
    715715 
    716716# examples for temperature limits 
    717 #    set temp1_over 40 
    718 #    set temp1_hyst 37 
    719 #    set temp2_over 52 
    720 #    set temp2_hyst 47 
    721 #    set temp3_over 52 
    722 #    set temp3_hyst 47 
     717#    set temp1_max      40 
     718#    set temp1_max_hyst 37 
     719#    set temp2_max      52 
     720#    set temp2_max_hyst 47 
     721#    set temp3_max      52 
     722#    set temp3_max_hyst 47 
    723723 
    724724#   ignore fan1 
     
    776776# temp2 limits examples 
    777777 
    778 #    set temp2_over 42 
    779 #    set temp2_hyst 37 
     778#    set temp2_max      42 
     779#    set temp2_max_hyst 37 
    780780 
    781781# ignore examples 
     
    881881# set limits to 20% for the battery voltage 
    882882 
    883 #    set in0_min vid*0.95 
    884 #    set in0_max vid*1.05 
    885 #    set in1_min vid*0.95 
    886 #    set in1_max vid*1.05 
     883#    set in0_min cpu0_vid*0.95 
     884#    set in0_max cpu0_vid*1.05 
     885#    set in1_min cpu0_vid*0.95 
     886#    set in1_max cpu0_vid*1.05 
    887887#    set in2_min 3.3 * 0.95 
    888888#    set in2_max 3.3 * 1.05 
     
    891891#    set in4_min 12 * 0.90 
    892892#    set in4_max 12 * 1.10 
    893 #    set in5_max -12 * 0.90 
    894 #    set in5_min -12 * 1.10 
    895 #    set in6_max -5 * 0.95 
    896 #    set in6_min -5 * 1.05 
     893#    set in5_min -12 * 0.90 
     894#    set in5_max -12 * 1.10 
     895#    set in6_min -5 * 0.95 
     896#    set in6_max -5 * 1.05 
    897897 
    898898# examples for temperature limits 
    899 #    set temp1_over 40 
    900 #    set temp1_hyst 37 
    901 #    set temp2_over 52 
    902 #    set temp2_hyst 47 
    903 #    set temp3_over 52 
    904 #    set temp3_hyst 47 
     899#    set temp1_max      40 
     900#    set temp1_max_hyst 37 
     901#    set temp2_max      52 
     902#    set temp2_max_hyst 47 
     903#    set temp3_max      52 
     904#    set temp3_max_hyst 47 
    905905 
    906906 
     
    912912# reasonable values with EISCA connected Fan78 
    913913 
    914   label vdd "+5V" 
    915   label vin1 "+3.3V" 
    916   label vin2 "+12V" 
    917   label vin3 "Vcore" 
    918  
    919 # vin2 depends on external resistors (4,7k and 15k assumed here) 
    920 # vin1 and vin3 require no scaling 
    921  
    922   compute vin2 (197/47)*@  ,  @/(197/47) 
    923  
    924 #  set vdd_min 4.8 
    925 #  set vdd_max 5.2 
    926 #  set vin1_min 3.20 
    927 #  set vin1_max 3.40 
    928 #  set vin2_min 11.0 
    929 #  set vin2_max 13.0 
    930 #  set vin3_min 2.10 
    931 #  set vin3_max 2.30 
    932 #  set fan1_off 0 
     914  label in0 "+5V" 
     915  label in1 "+3.3V" 
     916  label in2 "+12V" 
     917  label in3 "Vcore" 
     918 
     919# in2 depends on external resistors (4,7k and 15k assumed here) 
     920# in1 and in3 require no scaling 
     921 
     922  compute in2 (197/47)*@  ,  @/(197/47) 
     923 
     924#  set in0_min 4.8 
     925#  set in0_max 5.2 
     926#  set in1_min 3.20 
     927#  set in1_max 3.40 
     928#  set in2_min 11.0 
     929#  set in2_max 13.0 
     930#  set in3_min 2.10 
     931#  set in3_max 2.30 
    933932#  set fan2_min 0 
    934  
    935 # Do NOT uncomment the following line with the Linux 2.6 kernel driver, 
    936 # as it'll raise an error. 
    937 # set iterate 2 
    938933 
    939934 
     
    949944# at the same time. 
    950945 
    951 # set two_temps 1 
    952  
    953   label vdd "+5V" 
    954   label vin1 "+3.3V" 
    955   label vin2 "+12V" 
    956   label vin3 "Vcore" 
    957   label vin4 "-12V" 
    958  
    959 # vin1 and vin3 require no scaling 
    960 # vin2 depends on external resistors (4,7k and 15k assumed) 
    961  
    962 # vin4 = ((R1+R2)/R2)*@ - (R1/R2)*vdd 
     946  label in0 "+5V" 
     947  label in1 "+3.3V" 
     948  label in2 "+12V" 
     949  label in3 "Vcore" 
     950  label in4 "-12V" 
     951 
     952# in1 and in3 require no scaling 
     953# in2 depends on external resistors (4,7k and 15k assumed) 
     954 
     955# in4 = ((R1+R2)/R2)*@ - (R1/R2)*vdd 
    963956# 
    964957#       -12 --| R1 |---t---| R2 |-- +5 
     
    967960# 
    968961 
    969   compute vin2 (197/47)*@  ,  @/(197/47) 
    970   compute vin4 (5*@)-(4*vdd) , (@+4*vdd)/5 
    971  
    972 #  set vdd_min 4.8 
    973 #  set vdd_max 5.2 
    974 #  set vin1_min 3.20 
    975 #  set vin1_max 3.40 
    976 #  set vin2_min 11.0 
    977 #  set vin2_max 13.0 
    978 #  set vin3_min 2.10 
    979 #  set vin3_max 2.30 
     962  compute in2 (197/47)*@  ,  @/(197/47) 
     963  compute in4 (5*@)-(4*in0) , (@+4*in0)/5 
     964 
     965#  set in0_min 4.8 
     966#  set in0_max 5.2 
     967#  set in1_min 3.20 
     968#  set in1_max 3.40 
     969#  set in2_min 11.0 
     970#  set in2_max 13.0 
     971#  set in3_min 2.10 
     972#  set in3_max 2.30 
    980973 
    981974 
     
    10391032#    set in6_max -5 * 0.95 
    10401033 
    1041 # examples for lm80 temperature limits 
    1042 # WARNING - nonstandard names and functions for the lm80!!! 
    10431034# All 4 of these limits apply to the single temperature sensor. 
    1044 # "hot" is like the standard alarm for most chips. 
    1045 # "os" is the threshold for the overtemperature shutdown output. 
    1046 # "os" may or may not do anything on your motherboard but it should 
    1047 #  be set higher than the "hot" thresholds. 
    1048 # Note that the /proc file 'temp" also has five entries instead of 
    1049 # the usual three. 
    1050 #    set temp_hot_hyst 45 
    1051 #    set temp_hot_max  52 
    1052 #    set temp_os_hyst  57 
    1053 #    set temp_os_max   62 
     1035# "crit" may or may not do anything on your motherboard but it should 
     1036#  be set higher than the "max" thresholds. 
     1037#    set temp1_max_hyst 45 
     1038#    set temp1_max  52 
     1039#    set temp1_crit_hyst  57 
     1040#    set temp1_crit   62 
    10541041 
    10551042 
     
    10721059# line below. 
    10731060 
    1074     label "2.0V" "CPU core" 
    1075     label "2.5V" "+2.5V" 
    1076     #ignore "2.5V" 
    1077     label "3.3V" "I/O" 
    1078     label "5.0V" "+5V" 
    1079     label "12V" "+12V" 
     1061    label in0 "CPU core" 
     1062    label in1 "+2.5V" 
     1063    #ignore in1 
     1064    label in2 "I/O" 
     1065    label in3 "+5V" 
     1066    label in4 "+12V" 
    10801067 
    10811068    label fan1  "CPU Fan" 
     
    11261113# due to noise.) 
    11271114 
    1128 #    set temp1_hyst 40 
    1129 #    set temp1_over 45 
    1130 #    set temp2_hyst 55 
    1131 #    set temp2_over 60 
    1132 #    set temp3_hyst 60 
    1133 #    set temp3_over 65 
     1115#    set temp1_max_hyst 40 
     1116#    set temp1_max      45 
     1117#    set temp2_max_hyst 55 
     1118#    set temp2_max      60 
     1119#    set temp3_max_hyst 60 
     1120#    set temp3_max      65 
    11341121 
    11351122# You could set your fan limits too, but the defaults should be fine. 
     
    11791166 
    11801167# examples for temperature limits 
    1181 #    set temp1_over 40 
    1182 #    set temp1_hyst 37 
    1183 #    set temp2_over 52 
    1184 #    set temp2_hyst 47 
    1185 #    set temp3_over 52 
    1186 #    set temp3_hyst 47 
     1168#    set temp1_max      40 
     1169#    set temp1_max_hyst 37 
     1170#    set temp2_max      52 
     1171#    set temp2_max_hyst 47 
     1172#    set temp3_max      52 
     1173#    set temp3_max_hyst 47 
    11871174 
    11881175# End of standard mtp008 configuration 
     
    12301217#    ignore temp1 
    12311218#    label temp2 "MB Temp" 
    1232 #    set temp2_over 52 
    1233 #    set temp2_hyst 47 
     1219#    set temp2_max 52 
     1220#    set temp2_max_hyst 47 
    12341221#    ignore temp3 
    12351222 
     
    12531240 
    12541241# Tolerate a 5% deviance for CPU power-supply 
    1255 #    set in1_min vid * 0.95 
    1256 #    set in1_max vid * 1.05 
     1242#    set in1_min cpu0_vid * 0.95 
     1243#    set in1_max cpu0_vid * 1.05 
    12571244# Tolerate a 10% deviance for other voltages 
    12581245#    set in0_min 2.5 * 0.90 
     
    12781265    label temp1 "CPU Temp" 
    12791266    label temp2 "M/B Temp" 
    1280 #    set temp1_low 10 
    1281 #    set temp1_high 60 
    1282 #    set temp2_low 10 
    1283 #    set temp2_high 45 
     1267#    set temp1_min 10 
     1268#    set temp1_max 60 
     1269#    set temp2_min 10 
     1270#    set temp2_max 45 
    12841271 
    12851272 
     
    13121299# with double quotes. 
    13131300 
    1314    label "2.5V"  "+2.5V" 
    1315    label Vccp1   "VCore" 
    1316    label "3.3V"  "+3.3V" 
    1317    label "5V"    "+5V" 
    1318    label "12V"   "+12V" 
    1319 #   label Vccp2   "VCore2" 
     1301   label in0  "+2.5V" 
     1302   label in1  "VCore" 
     1303   label in2  "+3.3V" 
     1304   label in3  "+5V" 
     1305   label in4  "+12V" 
     1306#   label in5  "VCore2" 
    13201307 
    13211308   label fan1 "CPU Fan" 
    13221309#   label fan2 "Case Fan" 
    13231310   label temp1 "M/B Temp" 
    1324    label CPU_Temp "CPU Temp" 
     1311   label temp2 "CPU Temp" 
    13251312#   label temp3 "AUX Temp" 
    13261313 
    1327 #   set Vccp1_min    vid * 0.95 
    1328 #   set Vccp1_max    vid * 1.05 
    1329 #   set "3.3V_min"   3.3 * 0.92 
    1330 #   set "3.3V_max"   3.3 * 1.08 
    1331 #   set "5V_min"       5 * 0.92 
    1332 #   set "5V_max"       5 * 1.08 
    1333 #   set "12V_min"     12 * 0.90 
    1334 #   set "12V_max"     12 * 1.10 
     1314#   set in1_min  cpu0_vid * 0.95 
     1315#   set in1_max  cpu0_vid * 1.05 
     1316#   set in2_min  3.3 * 0.92 
     1317#   set in2_max  3.3 * 1.08 
     1318#   set in3_min    5 * 0.92 
     1319#   set in3_max    5 * 1.08 
     1320#   set in4_min   12 * 0.90 
     1321#   set in4_max   12 * 1.10 
    13351322 
    13361323# These ones are mutually exclusive with temp3. If you have temp3, 
    13371324# comment out these lines as they will trigger errors on "sensors -s". 
    1338 #   set "2.5V_min"   2.5 * 0.92 
    1339 #   set "2.5V_max"   2.5 * 1.08 
    1340 #   set Vccp2_min    vid * 0.95 
    1341 #   set Vccp2_max    vid * 1.05 
     1325#   set in0_min  2.5 * 0.92 
     1326#   set in0_max  2.5 * 1.08 
     1327#   set in5_min  cpu0_vid * 0.95 
     1328#   set in5_max  cpu0_vid * 1.05 
    13421329 
    13431330# Increase fan clock dividers if your fans read 0 RPM while you know 
     
    13651352# Note that the Linux 2.6 driver needs no recompilation, it'll read the 
    13661353# configuration from the chip. 
    1367 #   label AIN1 "-12V" 
    1368 #   label AIN2 "-5V" 
    1369 #   set AIN1_min -12 * 0.95 
    1370 #   set AIN2_min -5 * 0.95 
    1371 #   set AIN1_max -12 * 1.05 
    1372 #   set AIN2_max -5 * 1.05 
    1373 #   compute AIN1 (7.50 * @) - 21.45  ,  (@ + 21.45) / 7.50 
    1374 #   compute AIN2 (4.05 * @) - 10.07  ,  (@ + 10.07) / 4.05 
     1354#   label in6 "-12V" 
     1355#   label in7 "-5V" 
     1356#   set in6_min -12 * 0.95 
     1357#   set in7_min -5 * 0.95 
     1358#   set in6_max -12 * 1.05 
     1359#   set in7_max -5 * 1.05 
     1360#   compute in6 (7.50 * @) - 21.45  ,  (@ + 21.45) / 7.50 
     1361#   compute in7 (4.05 * @) - 10.07  ,  (@ + 10.07) / 4.05 
    13751362 
    13761363chip "adm9240-*" "ds1780-*" "lm81-*" 
     
    13891376# with double quotes. 
    13901377# 
    1391 #   label "2.5V" "xxx" 
    1392 #   label Vccp1 "xxx" 
    1393 #   label "3.3V" "xxx" 
    1394 #   label "5V" "xxx" 
    1395 #   label "12V" "xxx" 
    1396 #   label Vccp2 "xxx" 
     1378#   label in0 "xxx" 
     1379#   label in1 "xxx" 
     1380#   label in2 "xxx" 
     1381#   label in3 "xxx" 
     1382#   label in4 "xxx" 
     1383#   label in5 "xxx" 
    13971384#   label fan1 "xxx" 
    13981385#   label fan2 "xxx" 
    1399 #   label temp "xxx" 
    1400 # 
    1401 #   set Vccp1_min xxx 
    1402 #   set "2.5V_min" xxx 
    1403 #   set "3.3V_min" xxx 
    1404 #   set "5V_min" xxx 
    1405 #   set "12V_min" xxx 
    1406 #   set Vccp2_min xxx 
    1407 # 
    1408 #   set Vccp1_max xxx 
    1409 #   set "2.5V_max" xxx 
    1410 #   set "3.3V_max" xxx 
    1411 #   set "5V_max" xxx 
    1412 #   set "12V_max" xxx 
    1413 #   set Vccp2_max xxx 
     1386#   label temp1 "xxx" 
     1387# 
     1388#   set in1_min xxx 
     1389#   set in0_min xxx 
     1390#   set in2_min xxx 
     1391#   set in3_min xxx 
     1392#   set in4_min xxx 
     1393#   set in5_min xxx 
     1394# 
     1395#   set in1_max xxx 
     1396#   set in0_max xxx 
     1397#   set in2_max xxx 
     1398#   set in3_max xxx 
     1399#   set in4_max xxx 
     1400#   set in5_max xxx 
    14141401# 
    14151402#   set fan1_div xxx    Note: do not uncomment with kernel 2.6 driver 
     
    14171404#   set fan1_min xxx 
    14181405#   set fan2_min xxx 
    1419 #   set temp1_hyst xxx 
    1420 #   set temp1_over xxx 
    1421  
    1422 #   compute "2.5V" xxx 
    1423 #   compute Vccp1 xxx 
    1424 #   compute "3.3V" xxx 
    1425 #   compute "5V" xxx 
    1426 #   compute "12V" xxx 
    1427 #   compute Vccp2 xxx 
    1428 #   compute temp xxx 
     1406#   set temp1_max_hyst xxx 
     1407#   set temp1_max xxx 
     1408 
     1409#   compute in0 xxx 
     1410#   compute in1 xxx 
     1411#   compute in2 xxx 
     1412#   compute in3 xxx 
     1413#   compute in4 xxx 
     1414#   compute in5 xxx 
     1415#   compute temp1 xxx 
    14291416 
    14301417chip "adm1024-*" 
     
    14341421    label fan1 "CPU1 fan" 
    14351422    label fan2 "CPU2 fan" 
    1436     label temp "SYS Temp" 
    1437     label temp1 "CPU2 Temp" 
    1438     label temp2 "CPU1 Temp" 
    1439     ignore "2.5V" # This register is also used for temp2 
    1440     ignore "Vccp1" 
    1441     ignore "Vccp2" 
     1423    label temp1 "SYS Temp" 
     1424    label temp2 "CPU2 Temp" 
     1425    label temp3 "CPU1 Temp" 
     1426    ignore in0 # This register is also used for temp3 
     1427    ignore in1 
     1428    ignore in5 
    14421429 
    14431430 
     
    14571444    label in7 "Stdby" 
    14581445    label in8 "VBat" 
    1459  
    1460     # vid is not monitored by IT8705F 
    1461     # comment out if you have IT8712 
    1462     ignore  vid 
    14631446 
    14641447# Incubus Saturnus reports that the IT87 chip on Asus A7V8X-X seems 
     
    15311514# 
    15321515# 2 = thermistor; 3 = thermal diode; 0 = unused 
    1533 #   set sensor1 3 
    1534 #   set sensor2 3 
    1535 #   set sensor3 3 
     1516#   set temp1_type 3 
     1517#   set temp2_type 3 
     1518#   set temp3_type 3 
    15361519# If a given sensor isn't used, you will probably want to ignore it 
    15371520# (see ignore statement right below). 
    15381521 
    15391522    label temp1       "M/B Temp" 
    1540 #    set   temp1_over  40 
    1541 #    set   temp1_low   15 
     1523#    set   temp1_max   40 
     1524#    set   temp1_min   15 
    15421525    label temp2       "CPU Temp" 
    1543 #    set   temp2_over  45 
    1544 #    set   temp2_low   15 
     1526#    set   temp2_max   45 
     1527#    set   temp2_min   15 
    15451528#   ignore temp3 
    15461529    label temp3       "Temp3" 
    1547 #    set   temp3_over  45 
    1548 #    set   temp3_low   15 
     1530#    set   temp3_max   45 
     1531#    set   temp3_min   15 
    15491532 
    15501533# The A7V8X-X has temperatures inverted, and needs a conversion for 
     
    16001583#    set in7_max 5 * 1.05 
    16011584    # vid not monitored by IT8705F 
    1602 #    ignore  vid 
     1585#    ignore  cpu0_vid 
    16031586 
    16041587#    compute in3 ((6.8/10)+1)*@ ,  @/((6.8/10)+1) 
     
    16381621# If vid (nominal CPU voltage) isn't correct, hardcode the correct value 
    16391622# instead. 
    1640 #    set in0_min  vid * 0.95 
    1641 #    set in0_max  vid * 1.05 
     1623#    set in0_min  cpu0_vid * 0.95 
     1624#    set in0_max  cpu0_vid * 1.05 
    16421625#    set in1_min  1.8 * 0.95 
    16431626#    set in1_max  1.8 * 1.05 
     
    16641647# 
    16651648# 2 = thermistor; 3 = thermal diode; 0 = unused 
    1666 #   set sensor1  3 
    1667 #   set sensor2  3 
    1668 #   set sensor3  3 
     1649#   set temp1_type  3 
     1650#   set temp2_type  3 
     1651#   set temp3_type  3 
    16691652 
    16701653# If a given sensor isn't used, you will probably want to ignore it 
     
    16771660#   ignore temp3 
    16781661 
    1679 #   set temp1_over  60 
    1680 #   set temp1_low   10 
    1681 #   set temp2_over  50 
    1682 #   set temp2_low   10 
     1662#   set temp1_max  60 
     1663#   set temp1_min  10 
     1664#   set temp2_max  50 
     1665#   set temp2_min  10 
    16831666 
    16841667# Fans 
     
    17121695# Voltage 
    17131696 
    1714     label volt12      "+12V" 
    1715     label volt5       "+5V" 
    1716     label voltbatt    "Battery" 
     1697    label in0         "+12V" 
     1698    label in1         "+5V" 
     1699    label in2         "Battery" 
    17171700 
    17181701 
     
    17381721# Voltage 
    17391722 
    1740     label volt12      "+12V" 
    1741     label volt5       "+5V" 
    1742     label voltbatt    "+3.3V" 
     1723    label in0         "+12V" 
     1724    label in1         "+5V" 
     1725    label in2         "+3.3V" 
    17431726 
    17441727 
     
    17681751    compute in2       (@ * (10 * 33) / 255) + (0 / 100), (@ - (0 / 100)) * 255 / (10 * 33) 
    17691752 
    1770 # Read documentation before enabling pwm settings 
    1771 # (see the fscher driver documentation in the kernel tree) 
    1772 # WARNING: IMPROPER VALUES MAY DAMAGE YOUR SYSTEM DUE TO OVERHEATING! 
    1773  
    1774 # Allow fans to turn off 
    1775 #    set pwm1          0 
    1776 #    set pwm2          0 
    1777 #    set pwm3          0 
    1778  
    1779 # Min cooling 
    1780 #    set pwm1          2 
    1781 #    set pwm2          1 
    1782 #    set pwm3          1 
    1783  
    1784 # Max cooling 
    1785 #    set pwm1          255 
    1786 #    set pwm2          255 
    1787 #    set pwm3          255 
    1788  
    17891753 
    17901754chip "pcf8591-*" 
     
    17931757# 
    17941758# Analog inputs 
    1795  
    1796    ignore ain_conf 
    1797 # Since Linux 2.6, input configuration is set as module parameter, 
    1798 # so the line below is for older kernels only. 
    1799 #  set    ain_conf    0 
    18001759 
    18011760# You may discard ch2 and ch3 if you don't use them (depends on the input 
    18021761# configuration) 
    1803 #  ignore ch2 
    1804 #  ignore ch3 
    1805  
    1806    label  ch0         "Chan. 0" 
    1807    label  ch1         "Chan. 1" 
    1808    label  ch2         "Chan. 2" 
    1809    label  ch3         "Chan. 3" 
     1762#  ignore in2 
     1763#  ignore in3 
     1764 
     1765   label  in0         "Chan. 0" 
     1766   label  in1         "Chan. 1" 
     1767   label  in2         "Chan. 2" 
     1768   label  in3         "Chan. 3" 
    18101769 
    18111770# The driver assumes Vref = 2.56V and Agnd = 0V. If it doesn't match 
    18121771# your hardware, you have to use compute lines. The example below is 
    18131772# correct for Vref = 5.0V and Agnd = 0V. 
    1814 #  compute ch0 (@ * 500 / 256), (@ * 256 / 500) 
    1815 #  compute ch1 (@ * 500 / 256), (@ * 256 / 500) 
    1816 #  compute ch2 (@ * 500 / 256), (@ * 256 / 500) 
    1817 #  compute ch3 (@ * 500 / 256), (@ * 256 / 500) 
    1818  
    1819 # Analog output 
    1820  
    1821    ignore aout_enable 
    1822 #   set    aout_enable 1 
    1823    label  aout        "Output" 
    1824 #   set    aout        0 
     1773#  compute in0 (@ * 500 / 256), (@ * 256 / 500) 
     1774#  compute in1 (@ * 500 / 256), (@ * 256 / 500) 
     1775#  compute in2 (@ * 500 / 256), (@ * 256 / 500) 
     1776#  compute in3 (@ * 500 / 256), (@ * 256 / 500) 
     1777 
    18251778 
    18261779chip "adm1021-*" "adm1023-*" "max1617-*" "max1617a-*" "thmc10-*" "lm84-*" "gl523sm-*" "mc1066-*" 
    18271780 
    1828    label temp           "Board Temp" 
    1829    label remote_temp    "CPU Temp" 
    1830 #   set temp_low                40 
    1831 #   set temp_over               70 
    1832 #   set remote_temp_low         40 
    1833 #   set remote_temp_over        70 
     1781   label temp1          "Board Temp" 
     1782   label temp2          "CPU Temp" 
     1783#   set temp1_min       40 
     1784#   set temp1_max       70 
     1785#   set temp2_min       40 
     1786#   set temp2_max       70 
    18341787 
    18351788chip "lm83-*" 
     
    18451798 
    18461799# change high limits to fit your needs 
    1847 #   set temp1_high 55 
    1848 #   set temp2_high 60 
    1849 #   set temp3_high 65 
    1850 #   set temp4_high 60 
     1800#   set temp1_max 55 
     1801#   set temp2_max 60 
     1802#   set temp3_max 65 
     1803#   set temp4_max 60 
    18511804 
    18521805# change critical limit to fit your needs 
    18531806# only one limit for all four temperatures 
    18541807# should be higher than each of the high limits above 
    1855 #   set tcrit 85 
     1808#   set temp3_crit 85 
    18561809 
    18571810 
     
    18661819 
    18671820# change critical limit and hysteresis to fit your needs 
    1868 #   set temp2_crit  50 
    1869 #   set temp2_hyst  40 
     1821#   set temp2_crit       50 
     1822#   set temp2_crit_hyst  40 
    18701823 
    18711824 
     
    18741827   label temp1 "M/B Temp" 
    18751828   label temp2 "CPU Temp" 
    1876    label tcrit1 "M/B Crit" 
    1877    label tcrit2 "CPU Crit" 
     1829   label temp1_crit "M/B Crit" 
     1830   label temp2_crit "CPU Crit" 
    18781831 
    18791832# change high and low limits to fit your needs 
    1880 #   set temp1_low 10 
    1881 #   set temp1_high 55 
    1882 #   set temp2_low 10 
    1883 #   set temp2_high 66 
     1833#   set temp1_min 10 
     1834#   set temp1_max 55 
     1835#   set temp2_min 10 
     1836#   set temp2_max 66 
    18841837 
    18851838# change critical limits to fit your needs 
    18861839# should be higher than the corresponding high limit above 
    1887 #   set tcrit1 75 
    1888 #   set tcrit2 85 
     1840#   set temp1_crit 75 
     1841#   set temp2_crit 85 
    18891842 
    18901843# change the hysteresis values (to critical limits) to fit your needs 
     
    18941847# between critical temperatures and respective absolute hysteresis can 
    18951848# never exceed this value 
    1896 #   set hyst1 70 
     1849#   set temp1_crit_hyst 70 
    18971850 
    18981851chip "lm99-*" 
     
    19001853   label temp1 "G/C Temp" 
    19011854   label temp2 "GPU Temp" 
    1902    label tcrit1 "G/C Crit" 
    1903    label tcrit2 "GPU Crit" 
     1855   label temp1_crit "G/C Crit" 
     1856   label temp2_crit "GPU Crit" 
    19041857 
    19051858# note #1: only the LM99 needs this; for a LM89, comment the compute line 
     
    19111864 
    19121865# change high and low limits to fit your needs 
    1913 #   set temp1_low  10 
    1914 #   set temp1_high 90 
    1915 #   set temp2_low  10 
    1916 #   set temp2_high 100 
     1866#   set temp1_min  10 
     1867#   set temp1_max 90 
     1868#   set temp2_min  10 
     1869#   set temp2_max 100 
    19171870 
    19181871# change critical limits to fit your needs 
    19191872# should be higher than the corresponding high limit above 
    1920 #   set tcrit1 100 
    1921 #   set tcrit2 110 
     1873#   set temp1_crit 100 
     1874#   set temp2_crit 110 
    19221875 
    19231876# change the hysteresis values (to critical limits) to fit your needs 
     
    19271880# between critical temperatures and respective absolute hysteresis can 
    19281881# never exceed this value 
    1929 #   set hyst1 105 
     1882#   set temp1_crit_hyst 105 
    19301883 
    19311884 
     
    19381891 
    19391892# Change limits to fit your needs. Note that temp2_crit is read-only. 
    1940 #   set temp1_high       50 
    1941 #   set temp2_low        10 
    1942 #   set temp2_high       70 
     1893#   set temp1_max        50 
     1894#   set temp2_min        10 
     1895#   set temp2_max        70 
    19431896#   set temp2_crit_hyst  75 
    19441897#   set fan1_min         2000 
     
    19461899 
    19471900chip "vt1211-*" 
    1948  
    1949 #                                                       1 for temp, 0 for volt. 
    1950 #       Sensor          Voltage Mode    Temp Mode       config bit 
    1951 #       --------        ------------    ---------       -------------- 
    1952 #       Reading 1                       temp1 
    1953 #       Reading 3                       temp2            
    1954 #       UCH1/Reading2   in0             temp3           0x04 (4) 
    1955 #       UCH2            in1             temp4           0x08 (8) 
    1956 #       UCH3            in2             temp5           0x10 (16) 
    1957 #       UCH4            in3             temp6           0x20 (32) 
    1958 #       UCH5            in4             temp7           0x40 (64) 
    1959 #       3.3V            in5 
    1960  
    1961 # Set uch1-2 to temp mode, uch3-5 to voltage mode. This works only  
    1962 # for the 2.4 driver. For the 2.6 driver use the uch_config module parameter. 
    1963 # If the value doesn't match the hardware wiring, you'll get weird readings! 
    1964 #    set config 12 
    1965  
    1966 # The 2.6 driver will automatically ignore the inputs which are not 
    1967 # configured, but the 2.4 driver will not so you'll need to add ignore 
    1968 # statements depending on the config value above. 
    1969 #   ignore in0 
    1970 #   ignore in1 
    1971 #   ignore temp3 
    1972 #   ignore temp4 
    1973     ignore temp5 
    1974     ignore temp6 
    1975     ignore temp7 
    19761901 
    19771902    label in0 "+3.3V" 
     
    20131938#   set in1_max 2.5 * 1.05 
    20141939# If your vid is wrong, hardcode the CPU voltage (e.g. 1.4) 
    2015 #   set in2_min vid * 0.97 
    2016 #   set in2_max vid * 1.03 
     1940#   set in2_min cpu0_vid * 0.97 
     1941#   set in2_max cpu0_vid * 1.03 
    20171942#   set in3_min 5.0 * 0.95 
    20181943#   set in3_max 5.0 * 1.05 
     
    20621987                   2.2 / (1 + (^ (3435 / 298.15 - 3435 / (273.15 + @)))) 
    20631988 
    2064 #    set temp1_hyst 80 
    2065 #    set temp1_over 85 
    2066 #    set temp2_hyst 60 
    2067 #    set temp2_over 65 
    2068 #    set temp3_hyst 60 
    2069 #    set temp3_over 65 
    2070 #    set temp4_hyst 40 
    2071 #    set temp4_over 45 
     1989#    set temp1_max_hyst 80 
     1990#    set temp1_max      85 
     1991#    set temp2_max_hyst 60 
     1992#    set temp2_max      65 
     1993#    set temp3_max_hyst 60 
     1994#    set temp3_max      65 
     1995#    set temp4_max_hyst 40 
     1996#    set temp4_max      45 
    20721997 
    20731998#    set fan1_min 3000 
     
    20752000 
    20762001chip "vt8231-*" 
    2077 # 
    2078 #                                                       1 for temp, 0 for volt. 
    2079 #       Sensor          Voltage Mode    Temp Mode       config bit 
    2080 #       --------        ------------    ---------       -------------- 
    2081 #       Reading 1                       temp1 
    2082 #       UCH1            in0             temp2           0x04 (4) 
    2083 #       UCH2            in1             temp3           0x08 (8) 
    2084 #       UCH3            in2             temp4           0x10 (16) 
    2085 #       UCH4            in3             temp5           0x20 (32) 
    2086 #       UCH5            in4             temp6           0x40 (64) 
    2087 #       3.3V            in5 
    2088 # 
    2089 # Hardware default is UCH1 in temp mode, UCH2-5 in voltage mode 
    2090 # Note that the Linux 2.6 driver will not let you change the channel 
    2091 # configuration. In theory, the BIOS should have done it properly. 
    2092 #   set config 4 
    2093  
    2094 #    ignore in0 
    2095 #    ignore temp3 
    2096 #    ignore temp4 
    2097 #    ignore temp5 
    2098 #    ignore temp6 
    20992002 
    21002003    label in1 "+2.5V" 
     
    21532056                   2.2 / (1 + (^ (3435 / 298.15 - 3435 / (273.15 + @)))) 
    21542057 
    2155 #    set temp1_hyst 60 
    2156 #    set temp1_over 65 
    2157 #    set temp2_hyst 40 
    2158 #    set temp2_over 45 
     2058#    set temp1_max_hyst 60 
     2059#    set temp1_max      65 
     2060#    set temp2_max_hyst 40 
     2061#    set temp2_max      45 
    21592062 
    21602063#    set fan1_min 3000 
     
    21932096 
    21942097    label in1 "VCore" 
    2195 #    set in1_min  vid * 0.95 
    2196 #    set in1_max  vid * 1.05 
     2098#    set in1_min  cpu0_vid * 0.95 
     2099#    set in1_max  cpu0_vid * 1.05 
    21972100 
    21982101    label in2 "+3.3V" 
     
    22422145 
    22432146    label in0 "VCore 1" 
    2244     #set in0_min vid * 0.95 
    2245     #set in0_max vid * 1.05 
     2147    #set in0_min cpu0_vid * 0.95 
     2148    #set in0_max cpu0_vid * 1.05 
    22462149 
    22472150    label in1 "VCore 2" 
    22482151    ignore in1 
    2249     #set in1_min vid * 0.95 
    2250     #set in1_max vid * 1.05 
     2152    #set in1_min cpu0_vid * 0.95 
     2153    #set in1_max cpu0_vid * 1.05 
    22512154 
    22522155    label in2 "+3.3V" 
     
    22772180 
    22782181    label temp1 "M/B Temp" 
    2279     #set temp1_over 45 
    2280     #set temp1_hyst 40 
     2182    #set temp1_max      45 
     2183    #set temp1_max_hyst 40 
    22812184 
    22822185    label temp2 "CPU Temp (Intel)" 
    22832186    #ignore temp2 
    2284     #set temp2_over 60 
    2285     #set temp2_hyst 50 
     2187    #set temp2_max      60 
     2188    #set temp2_max_hyst 50 
    22862189 
    22872190    # PWRTMP connector on P4S333, for external sensor 
    22882191    label temp3 "Power Temp" 
    22892192    #ignore temp3 
    2290     #set temp3_over 45 
    2291     #set temp3_hyst 40 
     2193    #set temp3_max      45 
     2194    #set temp3_max_hyst 40 
    22922195 
    22932196 
    22942197    # Used for Athlon diode, ignore for P4S333 
    22952198    label temp4 "CPU Temp (AMD)" 
    2296     #set temp4_over 60 
    2297     #set temp4_hyst 50 
     2199    #set temp4_max      60 
     2200    #set temp4_max_hyst 50 
    22982201    #ignore temp4 
    22992202 
     
    23352238#   label fan4   "Fan4" 
    23362239 
    2337 # PWM Outputs 
    2338    label pwm1   "CPU_PWM" 
    2339    label pwm2   "Fan2_PWM" 
    2340    label pwm3   "Fan3_PWM" 
    2341  
    23422240# Voltage scaling is done on-chip.  No 'compute' directive 
    23432241# should be necessary.  If in0 has external scaling set 
     
    23482246# Adjust fans speeds for actual pulses per rev 
    23492247#   compute fan1  @ * 2,  @ / 2    # 1 pulse per rev 
    2350 #   set fan1_ppr  1                # ADM1027 or ADT7463 
    23512248#   compute fan2  @ / 2,  @ * 2    # 4 pulse per rev 
    2352 #   set fan2_ppr  4                # ADM1027 or ADT7463 
    23532249 
    23542250# Ignore fans you (or your motherboard) don't have 
     
    23602256#   set in0_min  1.5 * 0.95 
    23612257#   set in0_max  1.5 * 1.05 
    2362 #   set in1_min  vid * 0.95 
    2363 #   set in1_max  vid * 1.05 
     2258#   set in1_min  cpu0_vid * 0.95 
     2259#   set in1_max  cpu0_vid * 1.05 
    23642260#   set in2_min  3.3 * 0.95 
    23652261#   set in2_max  3.3 * 1.05 
     
    25132409chip "lm92-*" 
    25142410 
    2515    label temp "CPU Temp" 
     2411   label temp1 "CPU Temp" 
    25162412 
    25172413# Change limits as you see fit 
    2518 #   set temp_low 14 
    2519 #   set temp_high 60 
    2520 #   set temp_crit 72 
    2521 # Hysteresis is computed from critical limit for Linux 2.6, 
    2522 # and from high limit for Linux 2.4. That might change in the future. 
    2523 # Whatever, the same relative hysteresis is used for all of low, high 
     2414#   set temp1_min 14 
     2415#   set temp1_max 60 
     2416#   set temp1_crit 72 
     2417# Hysteresis is computed from critical limit 
     2418# The same relative hysteresis is used for all of low, high 
    25242419# and critical limits. 
    2525 #   set temp_hyst 70 # Linux 2.6 
    2526 #   set temp_hyst 58 # Linux 2.4 
     2420#   set temp1_crit_hyst 70 
    25272421 
    25282422 
     
    25732467    
    25742468#  ignore temp3 
    2575 #  set temp1_over  45 
    2576 #  set temp1_hyst  40 
    2577 #  set temp2_over  45 
    2578 #  set temp2_hyst  40 
     2469#  set temp1_max       45 
     2470#  set temp1_max_hyst  40 
     2471#  set temp2_max       45 
     2472#  set temp2_max_hyst  40 
    25792473 
    25802474 
     
    26382532   label temp3 "Aux Temp" 
    26392533 
    2640    #set temp1_max   60 
    2641    #set temp1_hyst  58 
    2642    #set temp2_max   50 
    2643    #set temp2_hyst  48 
    2644    #set temp3_max   50 
    2645    #set temp3_hyst  48 
     2534   #set temp1_max       60 
     2535   #set temp1_max_hyst  58 
     2536   #set temp2_max       50 
     2537   #set temp2_max_hyst  48 
     2538   #set temp3_max       50 
     2539   #set temp3_max_hyst  48 
    26462540 
    26472541 
     
    27392633   label fan6   "Fan6" 
    27402634 
    2741 # PWM Outputs 
    2742    label pwm1   "CPU_PWM" 
    2743    label pwm2   "Fan2_PWM" 
    2744    label pwm3   "Fan3_PWM" 
    2745    label pwm5   "Fan5_PWM" 
    2746    label pwm6   "Fan6_PWM" 
    2747  
    27482635# Set voltage limits 
    27492636#   set in0_min   5.0 * 0.95