Changeset 729

Show
Ignore:
Timestamp:
02/07/00 03:03:33 (9 years ago)
Author:
mds
Message:

(mds) Add i810 dual-bus (I2C/DDC) driver using algo-bit.

The i801 driver is for the standard I2C bus on an i810 board.
This driver adds the support for the DDC and TV-out busses.

Files:

Legend:

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

    r706 r729  
    16162.5.0 (200001??) 
    1717  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 
    1821 
    19222.4.5 (20000116) 
  • lm-sensors/trunk/CONTRIBUTORS

    r725 r729  
    2525  Extended support for GL518SM and GL520SM sensors. 
    2626* 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
    2828  Added w83782d, w83783s, w83627hf, and as99127f support to the w83781d driver. 
    2929  Added max1617, thmc10, gl523sm, and lm84 support to the adm1021 driver. 
     
    4242* Constantine Gavrilov <const-g@xpert.com> 
    4343  Created and maintains the RPM files 
    44  
    4544* Simon Vogl <simon@tk.uni-linz.ac.at> 
    4645  Wrote the new i2c kernel driver. This driver is indispensable for the 
  • lm-sensors/trunk/README

    r706 r729  
    4141  Intel ICH (used in the Intel 810 and 810E chipsets) 
    4242  Intel PIIX4 (used in most Intel chipsets) 
     43  Intel I810 GMCH 
    4344  SiS 5595 (used in many SiS chipsets) 
     45  3Dfx Voodoo 3 and Banshee 
    4446  VIA Technologies 82C586B (used in most VIA chipsets) 
    4547  VIA Technologies VT596A/B (used in some more modern VIA chipsets) 
     
    6466  Dimms with EEPROMs 
    6567  Intel Xeon processor embedded EEPROMs 
     68  DDC Monitor embedded EEPROMs 
    6669 
    6770We could use some testers of hardware. If you own a specific monitoring 
  • lm-sensors/trunk/TODO

    r727 r729  
    4343* Add MTP006F chip: http://www.myson.com/Pcd/MTP006/Mtp006.pdf 
    4444  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 
    4548 
    4649LIBRARY 
  • lm-sensors/trunk/kernel/busses/Module.mk

    r681 r729  
    2828                       $(MODULE_DIR)/i2c-voodoo3.o \ 
    2929                       $(MODULE_DIR)/i2c-amd756.o \ 
     30                       $(MODULE_DIR)/i2c-i810.o \ 
    3031                       $(MODULE_DIR)/i2c-sis5595.o 
    3132ifneq ($(shell if grep -q '^CONFIG_I2C_ALI15X3=y' $(LINUX)/.config; then echo 1; fi),1) 
  • lm-sensors/trunk/prog/detect/sensors-detect

    r723 r729  
    225225       match  => sub { $_[0] =~ /Banshee adapter/ }, 
    226226     }, 
     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     } ,  
    227243); 
    228244