blob: f4021a285460353ca0e4a2eda7b934d7839b57ff [file] [log] [blame]
Charles Spirakis98739642006-04-25 14:21:03 +02001Kernel driver w83791d
2=====================
3
4Supported chips:
5 * Winbond W83791D
6 Prefix: 'w83791d'
7 Addresses scanned: I2C 0x2c - 0x2f
Charles Spirakis125751cb2006-09-24 20:53:04 +02008 Datasheet: http://www.winbond-usa.com/products/winbond_products/pdfs/PCIC/W83791D_W83791Gb.pdf
Charles Spirakis98739642006-04-25 14:21:03 +02009
10Author: Charles Spirakis <bezaur@gmail.com>
11
12This driver was derived from the w83781d.c and w83792d.c source files.
13
14Credits:
15 w83781d.c:
16 Frodo Looijaard <frodol@dds.nl>,
17 Philip Edelbrock <phil@netroedge.com>,
18 and Mark Studebaker <mdsxyz123@yahoo.com>
19 w83792d.c:
Shane Huangf85b5202013-09-06 14:05:42 +020020 Shane Huang (Winbond),
Jean Delvare7188cc62006-12-12 18:18:30 +010021 Rudolf Marek <r.marek@assembler.cz>
Charles Spirakis98739642006-04-25 14:21:03 +020022
Charles Spirakis125751cb2006-09-24 20:53:04 +020023Additional contributors:
24 Sven Anders <anders@anduras.de>
Marc Hulsmanad02ad82008-08-06 22:41:04 +020025 Marc Hulsman <m.hulsman@tudelft.nl>
Charles Spirakis125751cb2006-09-24 20:53:04 +020026
Charles Spirakis98739642006-04-25 14:21:03 +020027Module Parameters
28-----------------
29
30* init boolean
31 (default 0)
32 Use 'init=1' to have the driver do extra software initializations.
33 The default behavior is to do the minimum initialization possible
34 and depend on the BIOS to properly setup the chip. If you know you
35 have a w83791d and you're having problems, try init=1 before trying
36 reset=1.
37
38* reset boolean
39 (default 0)
40 Use 'reset=1' to reset the chip (via index 0x40, bit 7). The default
41 behavior is no chip reset to preserve BIOS settings.
42
43* force_subclients=bus,caddr,saddr,saddr
44 This is used to force the i2c addresses for subclients of
45 a certain chip. Example usage is `force_subclients=0,0x2f,0x4a,0x4b'
46 to force the subclients of chip 0x2f on bus 0 to i2c addresses
47 0x4a and 0x4b.
48
49
50Description
51-----------
52
Charles Spirakis125751cb2006-09-24 20:53:04 +020053This driver implements support for the Winbond W83791D chip. The W83791G
54chip appears to be the same as the W83791D but is lead free.
Charles Spirakis98739642006-04-25 14:21:03 +020055
56Detection of the chip can sometimes be foiled because it can be in an
57internal state that allows no clean access (Bank with ID register is not
58currently selected). If you know the address of the chip, use a 'force'
59parameter; this will put it into a more well-behaved state first.
60
Marc Hulsman6495ce12008-10-17 17:51:17 +020061The driver implements three temperature sensors, ten voltage sensors,
62five fan rotation speed sensors and manual PWM control of each fan.
Charles Spirakis98739642006-04-25 14:21:03 +020063
64Temperatures are measured in degrees Celsius and measurement resolution is 1
65degC for temp1 and 0.5 degC for temp2 and temp3. An alarm is triggered when
66the temperature gets higher than the Overtemperature Shutdown value; it stays
67on until the temperature falls below the Hysteresis value.
68
Marc Hulsman6495ce12008-10-17 17:51:17 +020069Voltage sensors (also known as IN sensors) report their values in millivolts.
70An alarm is triggered if the voltage has crossed a programmable minimum
71or maximum limit.
72
Charles Spirakis98739642006-04-25 14:21:03 +020073Fan rotation speeds are reported in RPM (rotations per minute). An alarm is
74triggered if the rotation speed has dropped below a programmable limit. Fan
Marc Hulsmanad02ad82008-08-06 22:41:04 +020075readings can be divided by a programmable divider (1, 2, 4, 8, 16,
7632, 64 or 128 for all fans) to give the readings more range or accuracy.
Charles Spirakis98739642006-04-25 14:21:03 +020077
Marc Hulsman6495ce12008-10-17 17:51:17 +020078Each fan controlled is controlled by PWM. The PWM duty cycle can be read and
79set for each fan separately. Valid values range from 0 (stop) to 255 (full).
Marc Hulsmana5a45982008-10-17 17:51:17 +020080PWM 1-3 support Thermal Cruise mode, in which the PWMs are automatically
81regulated to keep respectively temp 1-3 at a certain target temperature.
82See below for the description of the sysfs-interface.
Charles Spirakis98739642006-04-25 14:21:03 +020083
Charles Spirakis64383122007-09-04 13:31:56 -070084The w83791d has a global bit used to enable beeping from the speaker when an
85alarm is triggered as well as a bitmask to enable or disable the beep for
86specific alarms. You need both the global beep enable bit and the
87corresponding beep bit to be on for a triggered alarm to sound a beep.
Charles Spirakis98739642006-04-25 14:21:03 +020088
Marc Hulsman6495ce12008-10-17 17:51:17 +020089The sysfs interface to the global enable is via the sysfs beep_enable file.
Charles Spirakis64383122007-09-04 13:31:56 -070090This file is used for both legacy and new code.
Charles Spirakis125751cb2006-09-24 20:53:04 +020091
Charles Spirakis64383122007-09-04 13:31:56 -070092The sysfs interface to the beep bitmask has migrated from the original legacy
93method of a single sysfs beep_mask file to a newer method using multiple
94*_beep files as described in .../Documentation/hwmon/sysfs-interface.
Charles Spirakis98739642006-04-25 14:21:03 +020095
Lucas De Marchi25985ed2011-03-30 22:57:33 -030096A similar change has occurred for the bitmap corresponding to the alarms. The
Charles Spirakis64383122007-09-04 13:31:56 -070097original legacy method used a single sysfs alarms file containing a bitmap
98of triggered alarms. The newer method uses multiple sysfs *_alarm files
99(again following the pattern described in sysfs-interface).
Charles Spirakis98739642006-04-25 14:21:03 +0200100
Charles Spirakis64383122007-09-04 13:31:56 -0700101Since both methods read and write the underlying hardware, they can be used
102interchangeably and changes in one will automatically be reflected by
103the other. If you use the legacy bitmask method, your user-space code is
104responsible for handling the fact that the alarms and beep_mask bitmaps
105are not the same (see the table below).
106
107NOTE: All new code should be written to use the newer sysfs-interface
108specification as that avoids bitmap problems and is the preferred interface
109going forward.
110
111The driver reads the hardware chip values at most once every three seconds.
112User mode code requesting values more often will receive cached values.
113
Marc Hulsmanb5938f82008-10-17 17:51:17 +0200114/sys files
115----------
116The sysfs-interface is documented in the 'sysfs-interface' file. Only
117chip-specific options are documented here.
118
119pwm[1-3]_enable - this file controls mode of fan/temperature control for
120 fan 1-3. Fan/PWM 4-5 only support manual mode.
121 * 1 Manual mode
Marc Hulsmana5a45982008-10-17 17:51:17 +0200122 * 2 Thermal Cruise mode
Marc Hulsmanb5938f82008-10-17 17:51:17 +0200123 * 3 Fan Speed Cruise mode (no further support)
124
Marc Hulsmana5a45982008-10-17 17:51:17 +0200125temp[1-3]_target - defines the target temperature for Thermal Cruise mode.
126 Unit: millidegree Celsius
127 RW
128
129temp[1-3]_tolerance - temperature tolerance for Thermal Cruise mode.
130 Specifies an interval around the target temperature
131 in which the fan speed is not changed.
132 Unit: millidegree Celsius
133 RW
134
Charles Spirakis64383122007-09-04 13:31:56 -0700135Alarms bitmap vs. beep_mask bitmask
136------------------------------------
137For legacy code using the alarms and beep_mask files:
138
139in0 (VCORE) : alarms: 0x000001 beep_mask: 0x000001
140in1 (VINR0) : alarms: 0x000002 beep_mask: 0x002000 <== mismatch
141in2 (+3.3VIN): alarms: 0x000004 beep_mask: 0x000004
142in3 (5VDD) : alarms: 0x000008 beep_mask: 0x000008
143in4 (+12VIN) : alarms: 0x000100 beep_mask: 0x000100
144in5 (-12VIN) : alarms: 0x000200 beep_mask: 0x000200
145in6 (-5VIN) : alarms: 0x000400 beep_mask: 0x000400
146in7 (VSB) : alarms: 0x080000 beep_mask: 0x010000 <== mismatch
147in8 (VBAT) : alarms: 0x100000 beep_mask: 0x020000 <== mismatch
148in9 (VINR1) : alarms: 0x004000 beep_mask: 0x004000
149temp1 : alarms: 0x000010 beep_mask: 0x000010
150temp2 : alarms: 0x000020 beep_mask: 0x000020
151temp3 : alarms: 0x002000 beep_mask: 0x000002 <== mismatch
152fan1 : alarms: 0x000040 beep_mask: 0x000040
153fan2 : alarms: 0x000080 beep_mask: 0x000080
154fan3 : alarms: 0x000800 beep_mask: 0x000800
155fan4 : alarms: 0x200000 beep_mask: 0x200000
156fan5 : alarms: 0x400000 beep_mask: 0x400000
157tart1 : alarms: 0x010000 beep_mask: 0x040000 <== mismatch
158tart2 : alarms: 0x020000 beep_mask: 0x080000 <== mismatch
159tart3 : alarms: 0x040000 beep_mask: 0x100000 <== mismatch
160case_open : alarms: 0x001000 beep_mask: 0x001000
161global_enable: alarms: -------- beep_mask: 0x800000 (modified via beep_enable)