hwmon: (ds1621) Add DS1731 chip support to ds1621 driver
[deliverable/linux.git] / Documentation / hwmon / ds1621
CommitLineData
7f15b664
M
1Kernel driver ds1621
2====================
3
4Supported chips:
cd6c8a42 5 * Dallas Semiconductor / Maxim Integrated DS1621
7f15b664 6 Prefix: 'ds1621'
ed7c34e8 7 Addresses scanned: none
cd6c8a42
RC
8 Datasheet: Publicly available from www.maximintegrated.com
9
7f15b664 10 * Dallas Semiconductor DS1625
ed7c34e8
RC
11 Prefix: 'ds1625'
12 Addresses scanned: none
cd6c8a42
RC
13 Datasheet: Publicly available from www.datasheetarchive.com
14
79c1cc1c
RC
15 * Maxim Integrated DS1631
16 Prefix: 'ds1631'
ed7c34e8 17 Addresses scanned: none
79c1cc1c
RC
18 Datasheet: Publicly available from www.maximintegrated.com
19
cd6c8a42
RC
20 * Maxim Integrated DS1721
21 Prefix: 'ds1721'
ed7c34e8 22 Addresses scanned: none
cd6c8a42 23 Datasheet: Publicly available from www.maximintegrated.com
7f15b664 24
260f81ff
RC
25 * Maxim Integrated DS1731
26 Prefix: 'ds1731'
27 Addresses scanned: none
28 Datasheet: Publicly available from www.maximintegrated.com
29
7f15b664
M
30Authors:
31 Christian W. Zuckschwerdt <zany@triq.net>
32 valuable contributions by Jan M. Sendler <sendler@sendler.de>
33 ported to 2.6 by Aurelien Jarno <aurelien@aurel32.net>
34 with the help of Jean Delvare <khali@linux-fr.org>
35
36Module Parameters
37------------------
38
39* polarity int
40 Output's polarity: 0 = active high, 1 = active low
41
42Description
43-----------
44
45The DS1621 is a (one instance) digital thermometer and thermostat. It has
46both high and low temperature limits which can be user defined (i.e.
47programmed into non-volatile on-chip registers). Temperature range is -55
48degree Celsius to +125 in 0.5 increments. You may convert this into a
49Fahrenheit range of -67 to +257 degrees with 0.9 steps. If polarity
50parameter is not provided, original value is used.
51
52As for the thermostat, behavior can also be programmed using the polarity
53toggle. On the one hand ("heater"), the thermostat output of the chip,
54Tout, will trigger when the low limit temperature is met or underrun and
55stays high until the high limit is met or exceeded. On the other hand
56("cooler"), vice versa. That way "heater" equals "active low", whereas
57"conditioner" equals "active high". Please note that the DS1621 data sheet
58is somewhat misleading in this point since setting the polarity bit does
59not simply invert Tout.
60
61A second thing is that, during extensive testing, Tout showed a tolerance
62of up to +/- 0.5 degrees even when compared against precise temperature
63readings. Be sure to have a high vs. low temperature limit gap of al least
641.0 degree Celsius to avoid Tout "bouncing", though!
65
25f3311a
JD
66The alarm bits are set when the high or low limits are met or exceeded and
67are reset by the module as soon as the respective temperature ranges are
68left.
7f15b664
M
69
70The alarm registers are in no way suitable to find out about the actual
71status of Tout. They will only tell you about its history, whether or not
72any of the limits have ever been met or exceeded since last power-up or
73reset. Be aware: When testing, it showed that the status of Tout can change
74with neither of the alarms set.
75
76Temperature conversion of the DS1621 takes up to 1000ms; internal access to
77non-volatile registers may last for 10ms or below.
cd6c8a42
RC
78
79The DS1625 is pin compatible and functionally equivalent with the DS1621,
260f81ff
RC
80but the DS1621 is meant to replace it. The DS1631, DS1721, and DS1731 are
81also pin compatible with the DS1621, but provide multi-resolution support.
79c1cc1c 82
ed7c34e8
RC
83Since there is no version or vendor identification register, there is
84no unique identification for these devices. Therefore, explicit device
85instantiation is required for correct device identification and functionality.
86
87And, for correct identification and operation, each device must be
88explicitly instantiated, one device per address, in this address
89range: 0x48..0x4f.
cd6c8a42
RC
90
91The DS1721 is pin compatible with the DS1621, has an accuracy of +/- 1.0
260f81ff
RC
92degree Celsius (from -10 to +85 degrees), a minimum/maximum alarm default
93setting of 75 and 80 degrees, and a maximum conversion time of 750ms.
3a8fe331
RC
94
95In addition, the DS1721 supports four resolution settings from 9 to 12 bits
260f81ff 96(defined in degrees C per LSB: 0.5, 0.25, 0.125, and 0.0625, respectively),
79c1cc1c
RC
97that are set at device power on to the highest resolution: 12-bits.
98
99One additional note about the ds1721 is that although the data sheet says
100the temperature flags (THF and TLF) are used internally, these flags do
101get set and cleared as the actual temperature crosses the min or max settings.
102
260f81ff
RC
103The DS1631 and DS1731 are pin compatible with the DS1621 and feature compatible
104with the DS1721. However, the DS1631 accuracy is +/- 0.5 degree Celsius (from 0
105to +70 degrees), while the DS1731 accuracy is +/-1 degree Celsius (from -10 to
106+85 degrees).
3a8fe331 107
260f81ff
RC
108The resolution mode for the DS1631, DS1721, or DS1731 can be changed from
109userspace, via the device 'update_interval' sysfs attribute. This attribute
110will normalize the range of input values to the device maximum resolution
111values defined in the datasheet as follows:
3a8fe331
RC
112
113Resolution Conversion Time Input Range
114 (C/LSB) (msec) (msec)
115--------------------------------------------
1160.5 93.75 0....94
1170.25 187.5 95...187
1180.125 375 188..375
1190.0625 750 376..infinity
120--------------------------------------
121
122The following examples show how the 'update_interval' attribute can be
123used to change the conversion time:
124
125$ cat update_interval
126750
127$ cat temp1_input
12822062
129$
130$ echo 300 > update_interval
131$ cat update_interval
132375
133$ cat temp1_input
13422125
135$
136$ echo 150 > update_interval
137$ cat update_interval
138188
139$ cat temp1_input
14022250
141$
142$ echo 1 > update_interval
143$ cat update_interval
14494
145$ cat temp1_input
14622000
147$
148$ echo 1000 > update_interval
149$ cat update_interval
150750
151$ cat temp1_input
15222062
153$
154
155As shown, the ds1621 driver automatically adjusts the 'update_interval'
156user input, via a step function. Reading back the 'update_interval' value
157after a write operation provides the conversion time used by the device.
158
159Mathematically, the resolution can be derived from the conversion time
160via the following function:
161
162 g(x) = 0.5 * [minimum_conversion_time/x]
163
164where:
165 -> 'x' = the output from 'update_interval'
166 -> 'g(x)' = the resolution in degrees C per LSB.
167 -> 93.75ms = minimum conversion time
This page took 0.846364 seconds and 5 git commands to generate.