Changeset 5313
- Timestamp:
- 08/20/08 19:58:03 (5 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/detect/sensors-detect (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r5309 r5313 10 10 Add SMSC EMC2700LPC support 11 11 Add ITE IT8720 support 12 Add Texas Instruments TMP411 support 12 13 13 14 2.10.7 (20080701) -
lm-sensors/trunk/prog/detect/sensors-detect
r5311 r5313 1091 1091 }, 1092 1092 { 1093 name => "Texas Instruments TMP401 /TMP411",1093 name => "Texas Instruments TMP401", 1094 1094 driver => "tmp401", 1095 1095 i2c_addrs => [0x4c], 1096 1096 i2c_detect => sub { lm90_detect(9, @_); }, 1097 }, 1098 { 1099 name => "Texas Instruments TMP411", 1100 driver => "to-be-written", 1101 i2c_addrs => [0x4c..0x4e], 1102 i2c_detect => sub { lm90_detect(10, @_); }, 1097 1103 }, 1098 1104 { … … 3956 3962 # (0 = LM90, 1=LM89/LM99, 2=LM86, 3=ADM1032, 4=MAX6657/MAX6658/MAX6659, 3957 3963 # 5 = ADT7461, 6 = MAX6648/MAX6692, 7 = MAX6680/MAX6681, 3958 # 8 = W83L771W/G), 9 = T I TMP401/TMP4113964 # 8 = W83L771W/G), 9 = TMP401, 10 = TMP411 3959 3965 # $_[1]: A reference to the file descriptor to access this chip. 3960 3966 # $_[2]: Address … … 4042 4048 return if $rate > 0x0F; 4043 4049 return if $mid != 0x55; # Texas Instruments 4044 return if $cid != 0x11; # TMP401 /TMP4114050 return if $cid != 0x11; # TMP401 4045 4051 return 6; 4052 } 4053 if ($chip == 10) { 4054 return if ($conf & 0x1B) != 0; 4055 return if $rate > 0x0F; 4056 return if $mid != 0x55; # Texas Instruments 4057 return 6 if ($addr == 0x4c && $cid == 0x12); # TPM411A 4058 return 6 if ($addr == 0x4d && $cid == 0x13); # TMP411B 4059 return 6 if ($addr == 0x4e && $cid == 0x10); # TMP411C 4060 return; 4046 4061 } 4047 4062 return;
