Changeset 1275

Show
Ignore:
Timestamp:
12/29/01 01:20:48 (7 years ago)
Author:
mds
Message:

add support for AMD768 to the i2c-amd756 bus driver

Files:

Legend:

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

    r1273 r1275  
    2121  File sensors.conf.eg: Un-ignore it87 in8, temp3, fan3 
    2222  Library: Add PCF8591 and W83697HF support; fix w83* fan_min computes 
     23  Module i2c-amd756: Add support for AMD768 
    2324  Module i2c-piix4: Check for uninitialized base address 
    2425  Module fscscy: implement min/max for voltages and fans 
     
    2930  Program sensors: Add PCF8591 and W83697HF support 
    3031  Program sensors-detect: Add several Nvidia chips, add PCF8591, 
    31                           fix Via686a and it87 detection 
     32                          fix Via686a and it87 detection, 
     33                          add AMD768 
    3234 
    3335 
  • lm-sensors/trunk/README

    r1246 r1275  
    3434At least the following I2C/SMBus adapters are supported: 
    3535  Acer Labs M1533, M1535, and M1543C 
    36   AMD 756, 766 
     36  AMD 756, 766, and 768 
    3737  Apple Hydra (used on some PPC machines) 
    3838  DEC 21272/21274 (Tsunami/Typhoon - on Alpha boards) 
  • lm-sensors/trunk/doc/busses/i2c-amd756

    r1153 r1275  
    66  * AMD 756 
    77  * AMD 766 
     8  * AMD 768 
    89    Datasheets: Publicly available on AMD website 
    910 
     
    1819----------- 
    1920 
    20 This driver supports the AMD 756 and 766 Peripheral Bus Controllers. 
     21This driver supports the AMD 756, 766, and 768 Peripheral Bus Controllers. 
  • lm-sensors/trunk/kernel/busses/i2c-amd756.c

    r1201 r1275  
    2626 
    2727/* 
    28    Supports AMD756 and AMD766
     28   Supports AMD756, AMD766, and AMD768
    2929   Note: we assume there can only be one device, with one SMBus interface. 
    3030*/ 
     
    5555static int supported[] = {PCI_DEVICE_ID_AMD_756, 
    5656                          PCI_DEVICE_ID_AMD_766, 
     57                          0x7443, /* AMD768 */ 
    5758                          0 }; 
    5859 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r1273 r1275  
    220220       func => 3, 
    221221       procid => "AMD-766 Athlon ACPI", 
     222       driver => "i2c-amd756", 
     223       match => sub { $_[0] =~ /^SMBus AMD7X6 adapter at [0-9,a-f]{4}/ }, 
     224     }, 
     225     {  
     226       vendid => 0x1022, 
     227       devid  => 0x7443, 
     228       func => 3, 
     229       procid => "AMD-768 System Management", 
    222230       driver => "i2c-amd756", 
    223231       match => sub { $_[0] =~ /^SMBus AMD7X6 adapter at [0-9,a-f]{4}/ },