Changeset 729
- Timestamp:
- 02/07/00 03:03:33 (9 years ago)
- Files:
-
- lm-sensors/trunk/CHANGES (modified) (1 diff)
- lm-sensors/trunk/CONTRIBUTORS (modified) (2 diffs)
- lm-sensors/trunk/README (modified) (2 diffs)
- lm-sensors/trunk/TODO (modified) (1 diff)
- lm-sensors/trunk/doc/busses/i2c-i810 (added)
- lm-sensors/trunk/kernel/busses/Module.mk (modified) (1 diff)
- lm-sensors/trunk/kernel/busses/i2c-i810.c (added)
- lm-sensors/trunk/prog/detect/sensors-detect (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
lm-sensors/trunk/CHANGES
r706 r729 16 16 2.5.0 (200001??) 17 17 Dropped all kernel 2.0 and 2.1 compatibility 18 Module i2c-i810: new 19 Module i2c-amd756: fixed region request 20 Module ddcmon: new 18 21 19 22 2.4.5 (20000116) lm-sensors/trunk/CONTRIBUTORS
r725 r729 25 25 Extended support for GL518SM and GL520SM sensors. 26 26 * Mark D. Studebaker <mdsxyz123@yahoo.com> 27 Author of the i2c-ali15x3 bus driver and the i2c-i810 bus driver.27 Author of the i2c-ali15x3, i2c-i801, and i2c-i810 bus drivers. 28 28 Added w83782d, w83783s, w83627hf, and as99127f support to the w83781d driver. 29 29 Added max1617, thmc10, gl523sm, and lm84 support to the adm1021 driver. … … 42 42 * Constantine Gavrilov <const-g@xpert.com> 43 43 Created and maintains the RPM files 44 45 44 * Simon Vogl <simon@tk.uni-linz.ac.at> 46 45 Wrote the new i2c kernel driver. This driver is indispensable for the lm-sensors/trunk/README
r706 r729 41 41 Intel ICH (used in the Intel 810 and 810E chipsets) 42 42 Intel PIIX4 (used in most Intel chipsets) 43 Intel I810 GMCH 43 44 SiS 5595 (used in many SiS chipsets) 45 3Dfx Voodoo 3 and Banshee 44 46 VIA Technologies 82C586B (used in most VIA chipsets) 45 47 VIA Technologies VT596A/B (used in some more modern VIA chipsets) … … 64 66 Dimms with EEPROMs 65 67 Intel Xeon processor embedded EEPROMs 68 DDC Monitor embedded EEPROMs 66 69 67 70 We could use some testers of hardware. If you own a specific monitoring lm-sensors/trunk/TODO
r727 r729 43 43 * Add MTP006F chip: http://www.myson.com/Pcd/MTP006/Mtp006.pdf 44 44 gfiala@s.netic.de (Guido Fiala) has one on his mainboard 45 * Rewrite i2c-voodoo3 to use i2c-algo-bit 46 * Add support for Via 686a integrated sensors 47 * Figure out what chips are appearing at 0x08 and 0x30 45 48 46 49 LIBRARY lm-sensors/trunk/kernel/busses/Module.mk
r681 r729 28 28 $(MODULE_DIR)/i2c-voodoo3.o \ 29 29 $(MODULE_DIR)/i2c-amd756.o \ 30 $(MODULE_DIR)/i2c-i810.o \ 30 31 $(MODULE_DIR)/i2c-sis5595.o 31 32 ifneq ($(shell if grep -q '^CONFIG_I2C_ALI15X3=y' $(LINUX)/.config; then echo 1; fi),1) lm-sensors/trunk/prog/detect/sensors-detect
r723 r729 225 225 match => sub { $_[0] =~ /Banshee adapter/ }, 226 226 }, 227 { 228 vendid => 0x8086, 229 devid => 0x7121, 230 func => 0, 231 procid => "Intel 82810 GMCH", 232 driver => "i2c-i810", 233 match => sub { $_[0] =~ /^I810/ }, 234 } , 235 { 236 vendid => 0x8086, 237 devid => 0x7123, 238 func => 0, 239 procid => "Intel 82810-DC100 GMCH", 240 driver => "i2c-i810", 241 match => sub { $_[0] =~ /^I810/ }, 242 } , 227 243 ); 228 244
