blob: 44dd2bcc72bdd4d5fd8ab4efbf524f3b1e622706 [file] [log] [blame]
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +00001Kernel driver w83627hf
2======================
3
4Supported chips:
5 * Winbond W83627HF (ISA accesses ONLY)
6 Prefix: 'w83627hf'
7 Addresses scanned: ISA address retrieved from Super I/O registers
8 Datasheet: http://www.winbond.com/PDF/sheet/w83627hf.pdf
9 * Winbond W83627THF
10 Prefix: 'w83627thf'
11 Addresses scanned: ISA address retrieved from Super I/O registers
12 Datasheet: http://www.winbond.com/PDF/sheet/w83627thf.pdf
13 * Winbond W83697HF
14 Prefix: 'w83697hf'
15 Addresses scanned: ISA address retrieved from Super I/O registers
16 Datasheet: http://www.winbond.com/PDF/sheet/697hf.pdf
17 * Winbond W83637HF
18 Prefix: 'w83637hf'
19 Addresses scanned: ISA address retrieved from Super I/O registers
20 Datasheet: http://www.winbond.com/PDF/sheet/w83637hf.pdf
Jean Delvarec2db6ce2006-01-18 23:22:12 +010021 * Winbond W83687THF
22 Prefix: 'w83687thf'
23 Addresses scanned: ISA address retrieved from Super I/O registers
24 Datasheet: Provided by Winbond on request
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000025
26Authors:
27 Frodo Looijaard <frodol@dds.nl>,
28 Philip Edelbrock <phil@netroedge.com>,
29 Mark Studebaker <mdsxyz123@yahoo.com>,
30 Bernhard C. Schrenk <clemy@clemy.org>
31
32Module Parameters
33-----------------
34
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000035* force_i2c: int
36 Initialize the I2C address of the sensors
37* init: int
38 (default is 1)
39 Use 'init=0' to bypass initializing the chip.
40 Try this if your computer crashes when you load the module.
41
42Description
43-----------
44
45This driver implements support for ISA accesses *only* for
46the Winbond W83627HF, W83627THF, W83697HF and W83637HF Super I/O chips.
47We will refer to them collectively as Winbond chips.
48
49This driver supports ISA accesses, which should be more reliable
50than i2c accesses. Also, for Tyan boards which contain both a
51Super I/O chip and a second i2c-only Winbond chip (often a W83782D),
52using this driver will avoid i2c address conflicts and complex
53initialization that were required in the w83781d driver.
54
55If you really want i2c accesses for these Super I/O chips,
56use the w83781d driver. However this is not the preferred method
57now that this ISA driver has been developed.
58
Mark M. Hoffman5b319402005-11-26 20:10:56 +010059The w83627_HF_ uses pins 110-106 as VID0-VID4. The w83627_THF_ uses the
60same pins as GPIO[0:4]. Technically, the w83627_THF_ does not support a
61VID reading. However the two chips have the identical 128 pin package. So,
62it is possible or even likely for a w83627thf to have the VID signals routed
63to these pins despite their not being labeled for that purpose. Therefore,
64the w83627thf driver interprets these as VID. If the VID on your board
65doesn't work, first see doc/vid in the lm_sensors package[1]. If that still
66doesn't help, you may just ignore the bogus VID reading with no harm done.
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000067
Mark M. Hoffman5b319402005-11-26 20:10:56 +010068For further information on this driver see the w83781d driver documentation.
69
Jean Delvareec1d86c2007-11-18 23:46:10 +010070[1] http://www.lm-sensors.org/browser/lm-sensors/trunk/doc/vid
Jean Delvare89180232009-12-09 20:35:48 +010071
72Forcing the address
73-------------------
74
75The driver used to have a module parameter named force_addr, which could
76be used to force the base I/O address of the hardware monitoring block.
77This was meant as a workaround for mainboards with a broken BIOS. This
78module parameter is gone for technical reasons. If you need this feature,
79you can obtain the same result by using the isaset tool (part of
80lm-sensors) before loading the driver:
81
82# Enter the Super I/O config space
83isaset -y -f 0x2e 0x87
84isaset -y -f 0x2e 0x87
85
86# Select the hwmon logical device
87isaset -y 0x2e 0x2f 0x07 0x0b
88
89# Set the base I/O address (to 0x290 in this example)
90isaset -y 0x2e 0x2f 0x60 0x02
91isaset -y 0x2e 0x2f 0x61 0x90
92
93# Exit the Super-I/O config space
94isaset -y -f 0x2e 0xaa
95
96The above sequence assumes a Super-I/O config space at 0x2e/0x2f, but
970x4e/0x4f is also possible.