Changeset 5934
- Timestamp:
- 02/18/11 18:58:41 (2 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
r5933 r5934 29 29 Fix detection of SPD EEPROM on DDR3 memory modules 30 30 Add detection of AMD family 12h and 14h thermal sensors 31 Add detection of EMC6D103S 31 32 32 33 3.2.0 (2010-10-10) -
lm-sensors/trunk/prog/detect/sensors-detect
r5933 r5934 553 553 i2c_detect => sub { lm85_detect(@_, 6); }, 554 554 }, { 555 name => "SMSC EMC6D103S", 556 driver => "to-be-written", # lm85 557 i2c_addrs => [0x2c..0x2e], 558 i2c_detect => sub { lm85_detect(@_, 8); }, 559 }, { 555 560 name => "Winbond WPCD377I", 556 561 driver => "not-a-sensor", … … 4742 4747 # Chip to detect: 0 = LM85, 1 = LM96000, 2 = ADM1027, 3 = ADT7463, 4743 4748 # 4 = EMC6D100/101, 5 = EMC6D102, 6 = EMC6D103, 4744 # 7 = WPCD377I (no sensors) 4749 # 7 = WPCD377I (no sensors), 8 = EMC6D103S 4745 4750 # Registers used: 4746 4751 # 0x3e: Vendor register … … 4777 4782 } elsif ($chip == 6) { 4778 4783 return if $vendor != 0x5c; # SMSC 4779 return if $verstep != 0x68; # EMC6D103 4784 return if $verstep != 0x68 # EMC6D103 A0 4785 && $verstep != 0x69; # EMC6D103 A1 4786 } elsif ($chip == 8) { 4787 return if $vendor != 0x5c; # SMSC 4788 return if $verstep != 0x6a; # EMC6D103S 4780 4789 } 4781 4790
