Changeset 1155
- Timestamp:
- 08/03/01 04:06:12 (7 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (2 diffs)
- lm-sensors/trunk/README (modified) (1 diff)
- lm-sensors/trunk/doc/busses/i2c-piix4 (modified) (2 diffs)
- lm-sensors/trunk/kernel/busses/i2c-piix4.c (modified) (3 diffs)
- lm-sensors/trunk/prog/detect/sensors-detect (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r1154 r1155 27 27 Module i2c-amd756: Add AMD 766 support 28 28 Module i2c-i801: Fix 82801BA detection broken by kernel 2.4.6 29 Module i2c-piix4: Add Serverworks CSB5 support 29 30 Module i2c-sis5595: Recognize unsupported chips and refuse to load 30 31 Module adm1025: Fixed temp2 min/max writes … … 36 37 Program sensors-detect: Fix ADM1024 and ADM1025 detection; 37 38 recognize unsupported SiS chips; 38 recognize AMD 766 .39 recognize AMD 766 and Serverworks CSB5. 39 40 40 41 2.6.0 (20010612) lm-sensors/trunk/README
r1154 r1155 39 39 Intel PIIX4 (used in many Intel chipsets) 40 40 Intel I810/I815 GMCH 41 ServerWorks OSB4 41 ServerWorks OSB4, CSB5 42 42 SiS 5595 43 43 3Dfx Voodoo 3 and Banshee lm-sensors/trunk/doc/busses/i2c-piix4
r966 r1155 6 6 * Intel 82371AB PIIX4 and PIIX4E 7 7 Datasheet: Publicly available at the Intel website 8 * ServerWorks southbridges8 * ServerWorks OSB4 and CSB5 southbridges 9 9 Datasheet: only available via NDA from ServerWorks 10 10 … … 61 61 driver on those mainboards. 62 62 63 The ServerWorks Southbridge isidentical to the PIIX4 in I2C support.63 The ServerWorks Southbridges are identical to the PIIX4 in I2C support. lm-sensors/trunk/kernel/busses/i2c-piix4.c
r1152 r1155 20 20 */ 21 21 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 */ 23 29 24 30 #include <linux/version.h> … … 146 152 static int __initdata piix4_initialized; 147 153 static unsigned short piix4_smba = 0; 148 static kind = 0;154 static int kind = 0; 149 155 150 156 /* Detect whether a PIIX4 can be found, and initialize it, where necessary. … … 494 500 } 495 501 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", 497 503 piix4_smba); 498 504 if ((res = i2c_add_adapter(&piix4_adapter))) { lm-sensors/trunk/prog/detect/sensors-detect
r1154 r1155 402 402 procid => "ServerWorks South Bridge", 403 403 driver => "i2c-piix4", 404 match => sub { $_[0] =~ /^SMBus OSB4 adapter at/ },404 match => sub { $_[0] =~ /^SMBus OSB4/ }, 405 405 } , 406 406 {
