Changeset 5368
- Timestamp:
- 10/22/08 16:16:51 (5 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 5 modified
-
CHANGES (modified) (1 diff)
-
README (modified) (1 diff)
-
doc/busses/i2c-viapro (modified) (3 diffs)
-
kernel/busses/i2c-viapro.c (modified) (4 diffs)
-
mkpatch/mkpatch.pl (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r5367 r5368 11 11 Properly report bus arbitration lost (2.6 backport) 12 12 Module i2c-piix4: Minor cleanups (2.6 backport) 13 Module i2c-viapro: Add VX800/VX820 support (2.6 backport) 13 14 Program pwmconfig: Fix MINSTOP and MINSTART test functions (#2340) 14 15 Change default for MINTEMP from 0 to 20 degrees C -
lm-sensors/trunk/README
r5231 r5368 62 62 3Dfx Voodoo 3 and Banshee 63 63 VIA Technologies VT82C586B, VT82C596A/B, VT82C686A/B, VT8231, 64 VT8233, VT8233A, VT8235, VT8237R/A, VT8251, CX700 64 VT8233, VT8233A, VT8235, VT8237R/A, VT8251, 65 CX700, VX800/VX820 65 66 66 67 -
lm-sensors/trunk/doc/busses/i2c-viapro
r4319 r5368 15 15 * VIA Technologies, Inc. CX700 16 16 Datasheet: available on request and under NDA from VIA 17 18 * VIA Technologies, Inc. VX800/VX820 19 Datasheet: available on http://linux.via.com.tw 17 20 18 21 Authors: … … 50 53 device 1106:3287 (VT8251) 51 54 device 1106:8324 (CX700) 55 device 1106:8353 (VX800/VX820) 52 56 53 57 If none of these show up, you should look in the BIOS for settings like … … 58 62 are mainly useful to read from and write to EEPROMs. 59 63 60 The CX700 additionally appears to support SMBus PEC, although this driver61 doesn't implement it.64 The CX700/VX800/VX820 additionally appears to support SMBus PEC, although 65 this driver doesn't implement it. -
lm-sensors/trunk/kernel/busses/i2c-viapro.c
r4319 r5368 38 38 VT8251 0x3287 yes 39 39 CX700 0x8324 yes 40 VX800/VX820 0x8353 yes 40 41 41 42 Note: we assume there can only be one device, with one SMBus interface. … … 76 77 #ifndef PCI_DEVICE_ID_VIA_CX700 77 78 #define PCI_DEVICE_ID_VIA_CX700 0x8324 79 #endif 80 /* VX800 is undefined */ 81 #ifndef PCI_DEVICE_ID_VIA_VX800 82 #define PCI_DEVICE_ID_VIA_VX800 0x8353 78 83 #endif 79 84 … … 425 430 switch (id->device) { 426 431 case PCI_DEVICE_ID_VIA_CX700: 432 case PCI_DEVICE_ID_VIA_VX800: 427 433 case PCI_DEVICE_ID_VIA_8251: 428 434 case PCI_DEVICE_ID_VIA_8237: … … 530 536 .driver_data = SMBBA3 531 537 }, 538 { 539 .vendor = PCI_VENDOR_ID_VIA, 540 .device = PCI_DEVICE_ID_VIA_VX800, 541 .subvendor = PCI_ANY_ID, 542 .subdevice = PCI_ANY_ID, 543 .driver_data = SMBBA3 544 }, 532 545 { 0, } 533 546 }; -
lm-sensors/trunk/mkpatch/mkpatch.pl
r4739 r5368 268 268 kernel is running. 269 269 270 VIA Technologies, Inc. VT82C596/82C686/82xx and CX700 270 VIA Technologies, Inc. VT82C596/82C686/82xx and CX700/VX800/VX820 271 271 CONFIG_I2C_VIAPRO 272 272 If you say yes to this option, support will be included for the VIA … … 999 999 dep_tristate ' Savage 4' CONFIG_I2C_SAVAGE4 $CONFIG_I2C_ALGOBIT 1000 1000 dep_tristate ' VIA Technologies, Inc. VT82C586B' CONFIG_I2C_VIA $CONFIG_I2C_ALGOBIT 1001 dep_tristate ' VIA Technologies, Inc. VT82C596/82C686/82xx and CX700 ' CONFIG_I2C_VIAPRO $CONFIG_I2C1001 dep_tristate ' VIA Technologies, Inc. VT82C596/82C686/82xx and CX700/VX800/VX820' CONFIG_I2C_VIAPRO $CONFIG_I2C 1002 1002 dep_tristate ' Voodoo3 I2C interface' CONFIG_I2C_VOODOO3 $CONFIG_I2C_ALGOBIT 1003 1003 dep_tristate ' Pseudo ISA adapter (for some hardware sensors)' CONFIG_I2C_ISA $CONFIG_I2C
