Changeset 2047
- Timestamp:
- 11/09/03 03:19:35 (10 years ago)
- Location:
- lm-sensors/trunk
- Files:
-
- 2 modified
-
CHANGES (modified) (1 diff)
-
prog/detect/sensors-detect (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
lm-sensors/trunk/CHANGES
r2046 r2047 33 33 Program sensors-detect: Prefer Super I/O drivers; 34 34 Fix W83627HF and W83791D detection; detect CSB6; 35 Detect ADM1029,30,31,32 35 Detect ADM1029,30,31,32; 36 Detect W83637HF, W83697UF 36 37 37 38 -
lm-sensors/trunk/prog/detect/sensors-detect
r2044 r2047 53 53 # Each entry must have a vendid (Vendor ID), devid (Device ID), func (PCI 54 54 # Function) and procid (string as appears in /proc/pci; see linux/driver/pci, 55 # either pci.c or oldproc.c). If no driver is written yet, omit the 56 # driver (Driver Name) field. The match (Match Description) field should 55 # either pci.c or oldproc.c). If no driver is written yet, set the 56 # driver (Driver Name) field to "to-be-written". 57 # The match (Match Description) field should 57 58 # contain a function which returns zero if its two parameter matches 58 59 # the text as it would appear in /proc/bus/i2c. … … 791 792 # Each entry must have the following fields: 792 793 # name: The full chip name 793 # driver: The driver name (without .o extension). Put in something like794 # " Unwritten: <drivername>" if it is not yet available.794 # driver: The driver name (without .o extension). Put in exactly 795 # "to-be-written" if it is not yet available. 795 796 # i2c_addrs (optional): For I2C chips, the range of valid I2C addresses to 796 797 # probe. Recommend avoiding 0x69 because of clock chips. … … 1411 1412 }, 1412 1413 { 1414 name => "Winbond W83637HF Super IO Sensors", 1415 driver => "to-be-written", 1416 addrreg => 0x2e, 1417 exitreg => 0x2e, 1418 datareg => 0x2f, 1419 enter => [0x87, 0x87], 1420 devidreg => 0x20, 1421 devid => 0x70, 1422 logdevreg => 0x07, 1423 logdev => 0x0b, 1424 actreg => 0x30, 1425 actmask => 0x01, 1426 basereg => 0x60, 1427 exit => 0xaa, 1428 }, 1429 { 1413 1430 name => "Winbond W83697HF Super IO Sensors", 1414 1431 driver => "w83627hf", … … 1419 1436 devidreg => 0x20, 1420 1437 devid => 0x60, 1438 logdevreg => 0x07, 1439 logdev => 0x0b, 1440 actreg => 0x30, 1441 actmask => 0x01, 1442 basereg => 0x60, 1443 exit => 0xaa, 1444 }, 1445 { 1446 name => "Winbond W83697UF Super IO PWM", 1447 driver => "to-be-written", 1448 addrreg => 0x2e, 1449 exitreg => 0x2e, 1450 datareg => 0x2f, 1451 enter => [0x87, 0x87], 1452 devidreg => 0x20, 1453 devid => 0x68, 1421 1454 logdevreg => 0x07, 1422 1455 logdev => 0x0b,
