diff --git a/CHANGES b/CHANGES index 2221c9d0..3e5199af 100644 --- a/CHANGES +++ b/CHANGES @@ -21,6 +21,7 @@ SVN-HEAD Add VIA VT1212 support Add SMSC EMC2700LPC support Add ITE IT8720 support + Add Texas Instruments TMP411 support 3.0.2 (2008-05-18) documentation: Delete the FAQ, now maintained on the wiki diff --git a/prog/detect/sensors-detect b/prog/detect/sensors-detect index 259d4846..28b4f6d6 100755 --- a/prog/detect/sensors-detect +++ b/prog/detect/sensors-detect @@ -1140,11 +1140,17 @@ use vars qw(@pci_adapters_sis5595 @pci_adapters_sis645 @pci_adapters_sis96x); i2c_detect => sub { lm90_detect(8, @_); }, }, { - name => "Texas Instruments TMP401/TMP411", + name => "Texas Instruments TMP401", driver => "tmp401", i2c_addrs => [0x4c], i2c_detect => sub { lm90_detect(9, @_); }, }, + { + name => "Texas Instruments TMP411", + driver => "to-be-written", + i2c_addrs => [0x4c..0x4e], + i2c_detect => sub { lm90_detect(10, @_); }, + }, { name => "National Semiconductor LM95231", driver => "to-be-written", @@ -4004,7 +4010,7 @@ sub lm83_detect # $_[0]: Chip to detect # (0 = LM90, 1 = LM89/LM99, 2 = LM86, 3 = ADM1032, 4 = MAX6654/MAX6690, # 5 = ADT7461, 6 = MAX6646/MAX6647/MAX6648/MAX6649/MAX6692, -# 7 = MAX6680/MAX6681, 8 = W83L771W/G, 9 = TI TMP401/TMP411) +# 7 = MAX6680/MAX6681, 8 = W83L771W/G, 9 = TMP401, 10 = TMP411) # $_[1]: A reference to the file descriptor to access this chip. # $_[2]: Address # Returns: undef if not detected, 6 or 8 if detected. @@ -4087,9 +4093,18 @@ sub lm90_detect return if ($conf & 0x1B) != 0; return if $rate > 0x0F; return if $mid != 0x55; # Texas Instruments - return if $cid != 0x11; # TMP401/TMP411 + return if $cid != 0x11; # TMP401 return 8; } + if ($chip == 10) { + return if ($conf & 0x1B) != 0; + return if $rate > 0x0F; + return if $mid != 0x55; # Texas Instruments + return 6 if ($addr == 0x4c && $cid == 0x12); # TPM411A + return 6 if ($addr == 0x4d && $cid == 0x13); # TMP411B + return 6 if ($addr == 0x4e && $cid == 0x10); # TMP411C + return; + } return; }