Changeset 5658

Show
Ignore:
Timestamp:
02/18/09 21:31:49 (4 years ago)
Author:
jwrdegoede
Message:

sensors-detect: Add detection of FSC Hades and Syleus IC's

Location:
lm-sensors/trunk
Files:
2 modified

Legend:

Unmodified
Added
Removed
  • lm-sensors/trunk/CHANGES

    r5657 r5658  
    8080                  Exclude auto-loaded PCI and USB drivers from list (#2368) 
    8181                  Special case probing i2c address 0x73 (to not crash FSC ICs) 
     82                  Add detection of FSC Hades and Syleus IC's 
    8283  sensors-detect-stat.pl: Delete (functionality merged into sensors-detect) 
    8384  sysconfig-lm_sensors-convert: Sample config file conversion script (#2246) 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r5657 r5658  
    10261026                i2c_detect => sub { fsc_detect(@_, 5); }, 
    10271027        }, { 
     1028                name => "FSC Hades", 
     1029                driver => "fschmd", 
     1030                i2c_addrs => [0x73], 
     1031                i2c_detect => sub { fsc_detect(@_, 6); }, 
     1032        }, { 
     1033                name => "FSC Syleus", 
     1034                driver => "fschmd", 
     1035                i2c_addrs => [0x73], 
     1036                i2c_detect => sub { fsc_detect(@_, 7); }, 
     1037        }, { 
    10281038                name => "ALi M5879", 
    10291039                driver => "to-be-written", 
     
    46504660        return if $chip == 4 and $id ne 'HMD';  # Heimdal 
    46514661        return if $chip == 5 and $id ne 'HRC';  # Heracles 
     4662        return if $chip == 6 and $id ne 'HDS';  # Hades 
     4663        return if $chip == 7 and $id ne 'SYL';  # Syleus 
    46524664 
    46534665        return 8;