Changeset 1155

Show
Ignore:
Timestamp:
08/03/01 04:06:12 (7 years ago)
Author:
mds
Message:

update serverworks match string

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • lm-sensors/trunk/CHANGES

    r1154 r1155  
    2727  Module i2c-amd756: Add AMD 766 support 
    2828  Module i2c-i801: Fix 82801BA detection broken by kernel 2.4.6 
     29  Module i2c-piix4: Add Serverworks CSB5 support 
    2930  Module i2c-sis5595: Recognize unsupported chips and refuse to load 
    3031  Module adm1025: Fixed temp2 min/max writes 
     
    3637  Program sensors-detect: Fix ADM1024 and ADM1025 detection; 
    3738                          recognize unsupported SiS chips; 
    38                           recognize AMD 766
     39                          recognize AMD 766 and Serverworks CSB5
    3940 
    40412.6.0 (20010612) 
  • lm-sensors/trunk/README

    r1154 r1155  
    3939  Intel PIIX4 (used in many Intel chipsets) 
    4040  Intel I810/I815 GMCH 
    41   ServerWorks OSB4 
     41  ServerWorks OSB4, CSB5 
    4242  SiS 5595 
    4343  3Dfx Voodoo 3 and Banshee 
  • lm-sensors/trunk/doc/busses/i2c-piix4

    r966 r1155  
    66  * Intel 82371AB PIIX4 and PIIX4E 
    77    Datasheet: Publicly available at the Intel website 
    8   * ServerWorks southbridges 
     8  * ServerWorks OSB4 and CSB5 southbridges 
    99    Datasheet: only available via NDA from ServerWorks 
    1010 
     
    6161driver on those mainboards. 
    6262 
    63 The ServerWorks Southbridge is identical to the PIIX4 in I2C support. 
     63The ServerWorks Southbridges are identical to the PIIX4 in I2C support. 
  • lm-sensors/trunk/kernel/busses/i2c-piix4.c

    r1152 r1155  
    2020*/ 
    2121 
    22 /* Note: we assume there can only be one PIIX4, with one SMBus interface */ 
     22/* 
     23   Supports: 
     24        Intel PIIX4 
     25        Serverworks OSB4, CSB5 
     26 
     27   Note: we assume there can only be one device, with one SMBus interface. 
     28*/ 
    2329 
    2430#include <linux/version.h> 
     
    146152static int __initdata piix4_initialized; 
    147153static unsigned short piix4_smba = 0; 
    148 static kind = 0; 
     154static int kind = 0; 
    149155 
    150156/* Detect whether a PIIX4 can be found, and initialize it, where necessary. 
     
    494500        } 
    495501        piix4_initialized++; 
    496         sprintf(piix4_adapter.name, kind==1?"SMBus PIIX4 adapter at %04x":"SMBus OSB4 adapter at %04x", 
     502        sprintf(piix4_adapter.name, kind==1?"SMBus PIIX4 adapter at %04x":"SMBus OSB4/CSB5 adapter at %04x", 
    497503                piix4_smba); 
    498504        if ((res = i2c_add_adapter(&piix4_adapter))) { 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r1154 r1155  
    402402       procid => "ServerWorks South Bridge", 
    403403       driver => "i2c-piix4", 
    404        match => sub { $_[0] =~ /^SMBus OSB4 adapter at / }, 
     404       match => sub { $_[0] =~ /^SMBus OSB4/ }, 
    405405     } ,  
    406406     {