Changeset 1275
- Timestamp:
- 12/29/01 01:20:48 (7 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (2 diffs)
- lm-sensors/trunk/README (modified) (1 diff)
- lm-sensors/trunk/doc/busses/i2c-amd756 (modified) (2 diffs)
- lm-sensors/trunk/kernel/busses/i2c-amd756.c (modified) (2 diffs)
- lm-sensors/trunk/prog/detect/sensors-detect (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r1273 r1275 21 21 File sensors.conf.eg: Un-ignore it87 in8, temp3, fan3 22 22 Library: Add PCF8591 and W83697HF support; fix w83* fan_min computes 23 Module i2c-amd756: Add support for AMD768 23 24 Module i2c-piix4: Check for uninitialized base address 24 25 Module fscscy: implement min/max for voltages and fans … … 29 30 Program sensors: Add PCF8591 and W83697HF support 30 31 Program sensors-detect: Add several Nvidia chips, add PCF8591, 31 fix Via686a and it87 detection 32 fix Via686a and it87 detection, 33 add AMD768 32 34 33 35 lm-sensors/trunk/README
r1246 r1275 34 34 At least the following I2C/SMBus adapters are supported: 35 35 Acer Labs M1533, M1535, and M1543C 36 AMD 756, 766 36 AMD 756, 766, and 768 37 37 Apple Hydra (used on some PPC machines) 38 38 DEC 21272/21274 (Tsunami/Typhoon - on Alpha boards) lm-sensors/trunk/doc/busses/i2c-amd756
r1153 r1275 6 6 * AMD 756 7 7 * AMD 766 8 * AMD 768 8 9 Datasheets: Publicly available on AMD website 9 10 … … 18 19 ----------- 19 20 20 This driver supports the AMD 756 and 766Peripheral Bus Controllers.21 This driver supports the AMD 756, 766, and 768 Peripheral Bus Controllers. lm-sensors/trunk/kernel/busses/i2c-amd756.c
r1201 r1275 26 26 27 27 /* 28 Supports AMD756 and AMD766.28 Supports AMD756, AMD766, and AMD768. 29 29 Note: we assume there can only be one device, with one SMBus interface. 30 30 */ … … 55 55 static int supported[] = {PCI_DEVICE_ID_AMD_756, 56 56 PCI_DEVICE_ID_AMD_766, 57 0x7443, /* AMD768 */ 57 58 0 }; 58 59 lm-sensors/trunk/prog/detect/sensors-detect
r1273 r1275 220 220 func => 3, 221 221 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", 222 230 driver => "i2c-amd756", 223 231 match => sub { $_[0] =~ /^SMBus AMD7X6 adapter at [0-9,a-f]{4}/ },
