125 lines · plain
1Kernel driver w83627hf2======================3 4Supported chips:5 * Winbond W83627HF (ISA accesses ONLY)6 Prefix: 'w83627hf'7 Addresses scanned: ISA address retrieved from Super I/O registers8 * Winbond W83627THF9 Prefix: 'w83627thf'10 Addresses scanned: ISA address retrieved from Super I/O registers11 * Winbond W83697HF12 Prefix: 'w83697hf'13 Addresses scanned: ISA address retrieved from Super I/O registers14 * Winbond W83637HF15 Prefix: 'w83637hf'16 Addresses scanned: ISA address retrieved from Super I/O registers17 * Winbond W83687THF18 Prefix: 'w83687thf'19 Addresses scanned: ISA address retrieved from Super I/O registers20 Datasheet: Provided by Winbond on request(http://www.winbond.com/hq/enu)21 22Authors:23 Frodo Looijaard <frodol@dds.nl>,24 Philip Edelbrock <phil@netroedge.com>,25 Mark Studebaker <mdsxyz123@yahoo.com>,26 Bernhard C. Schrenk <clemy@clemy.org>27 28Module Parameters29-----------------30 31* force_i2c: int32 Initialize the I2C address of the sensors33* init: int34 (default is 1)35 Use 'init=0' to bypass initializing the chip.36 Try this if your computer crashes when you load the module.37 38Description39-----------40 41This driver implements support for ISA accesses *only* for42the Winbond W83627HF, W83627THF, W83697HF and W83637HF Super I/O chips.43We will refer to them collectively as Winbond chips.44 45This driver supports ISA accesses, which should be more reliable46than i2c accesses. Also, for Tyan boards which contain both a47Super I/O chip and a second i2c-only Winbond chip (often a W83782D),48using this driver will avoid i2c address conflicts and complex49initialization that were required in the w83781d driver.50 51If you really want i2c accesses for these Super I/O chips,52use the w83781d driver. However this is not the preferred method53now that this ISA driver has been developed.54 55The `w83627_HF_` uses pins 110-106 as VID0-VID4. The `w83627_THF_` uses the56same pins as GPIO[0:4]. Technically, the `w83627_THF_` does not support a57VID reading. However the two chips have the identical 128 pin package. So,58it is possible or even likely for a w83627thf to have the VID signals routed59to these pins despite their not being labeled for that purpose. Therefore,60the w83627thf driver interprets these as VID. If the VID on your board61doesn't work, first see doc/vid in the lm_sensors package[1]. If that still62doesn't help, you may just ignore the bogus VID reading with no harm done.63 64For further information on this driver see the w83781d driver documentation.65 66[1] http://www.lm-sensors.org/browser/lm-sensors/trunk/doc/vid67 68Forcing the address69-------------------70 71The driver used to have a module parameter named force_addr, which could72be used to force the base I/O address of the hardware monitoring block.73This was meant as a workaround for mainboards with a broken BIOS. This74module parameter is gone for technical reasons. If you need this feature,75you can obtain the same result by using the isaset tool (part of76lm-sensors) before loading the driver:77 78# Enter the Super I/O config space::79 80 isaset -y -f 0x2e 0x8781 isaset -y -f 0x2e 0x8782 83# Select the hwmon logical device::84 85 isaset -y 0x2e 0x2f 0x07 0x0b86 87# Set the base I/O address (to 0x290 in this example)::88 89 isaset -y 0x2e 0x2f 0x60 0x0290 isaset -y 0x2e 0x2f 0x61 0x9091 92# Exit the Super-I/O config space::93 94 isaset -y -f 0x2e 0xaa95 96The above sequence assumes a Super-I/O config space at 0x2e/0x2f, but970x4e/0x4f is also possible.98 99Voltage pin mapping100-------------------101 102Here is a summary of the voltage pin mapping for the W83627THF. This103can be useful to convert data provided by board manufacturers into104working libsensors configuration statements:105 106 107- W83627THF108 109 110 ======== =============== =============== ===============111 Pin Name Register Sysfs attribute112 ======== =============== =============== ===============113 100 CPUVCORE 20h in0114 99 VIN0 21h in1115 98 VIN1 22h in2116 97 VIN2 24h in4117 114 AVCC 23h in3118 61 5VSB 50h (bank 5) in7119 74 VBAT 51h (bank 5) in8120 ======== =============== =============== ===============121 122For other supported devices, you'll have to take the hard path and123look up the information in the datasheet yourself (and then add it124to this document please.)125