Changeset 1382

Show
Ignore:
Timestamp:
06/07/02 04:56:52 (6 years ago)
Author:
mds
Message:

add 82801DB (ICH4) support

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/trunk/doc/busses/i2c-i801

    r1197 r1382  
    99  * Intel 82801BA (ICH2 - part of the '815E' chipset) 
    1010  * Intel 82801CA/CAM (ICH3) 
     11  * Intel 82801DB (ICH4) 
    1112    Datasheets: Publicly available at the Intel website 
    1213 
  • lm-sensors/trunk/kernel/busses/i2c-i801.c

    r1201 r1382  
    2727    82801BA             2443            
    2828    82801CA/CAM         2483            
     29    82801DB             24C3            
    2930 
    3031    This driver supports several versions of Intel's I/O Controller Hubs (ICH). 
     
    6263#endif 
    6364#define PCI_DEVICE_ID_INTEL_82801CA_SMBUS       0x2483 
     65#define PCI_DEVICE_ID_INTEL_82801DB_SMBUS       0x24C3 
    6466 
    6567static int supported[] = {PCI_DEVICE_ID_INTEL_82801AA_3, 
     
    6769                          PCI_DEVICE_ID_INTEL_82801BA_2, 
    6870                          PCI_DEVICE_ID_INTEL_82801CA_SMBUS, 
     71                          PCI_DEVICE_ID_INTEL_82801DB_SMBUS, 
    6972                          0 }; 
    7073 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r1379 r1382  
    9494       func => 3, 
    9595       procid => "Intel 82801CA/CAM ICH3", 
     96       driver => "i2c-i801", 
     97       match => sub { $_[0] =~ /^SMBus I801 adapter at [0-9,a-f]{4}/ }, 
     98     } ,  
     99     {  
     100       vendid => 0x8086, 
     101       devid  => 0x24C3, 
     102       func => 3, 
     103       procid => "Intel 82801DB ICH4, 
    96104       driver => "i2c-i801", 
    97105       match => sub { $_[0] =~ /^SMBus I801 adapter at [0-9,a-f]{4}/ },