blob: c0817f7934e4c77222a825b528ebf4d3735edc73 [file] [log] [blame]
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +00001Kernel driver ds1621
2====================
3
4Supported chips:
Robert Coulsoncd6c8a42013-05-08 22:45:53 -07005 * Dallas Semiconductor / Maxim Integrated DS1621
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +00006 Prefix: 'ds1621'
Robert Coulsoned7c34e2013-05-23 09:22:22 -07007 Addresses scanned: none
Robert Coulsoncd6c8a42013-05-08 22:45:53 -07008 Datasheet: Publicly available from www.maximintegrated.com
9
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000010 * Dallas Semiconductor DS1625
Robert Coulsoned7c34e2013-05-23 09:22:22 -070011 Prefix: 'ds1625'
12 Addresses scanned: none
Robert Coulsoncd6c8a42013-05-08 22:45:53 -070013 Datasheet: Publicly available from www.datasheetarchive.com
14
Robert Coulson79c1cc12013-05-16 15:10:41 -070015 * Maxim Integrated DS1631
16 Prefix: 'ds1631'
Robert Coulsoned7c34e2013-05-23 09:22:22 -070017 Addresses scanned: none
Robert Coulson79c1cc12013-05-16 15:10:41 -070018 Datasheet: Publicly available from www.maximintegrated.com
19
Robert Coulsoncd6c8a42013-05-08 22:45:53 -070020 * Maxim Integrated DS1721
21 Prefix: 'ds1721'
Robert Coulsoned7c34e2013-05-23 09:22:22 -070022 Addresses scanned: none
Robert Coulsoncd6c8a42013-05-08 22:45:53 -070023 Datasheet: Publicly available from www.maximintegrated.com
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000024
Robert Coulson260f81f2013-06-10 18:46:02 -070025 * Maxim Integrated DS1731
26 Prefix: 'ds1731'
27 Addresses scanned: none
28 Datasheet: Publicly available from www.maximintegrated.com
29
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000030Authors:
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
Jean Delvare25f33112009-03-30 21:46:41 +020066The 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.
R.Marek@sh.cvut.cz7f15b662005-05-26 12:42:19 +000069
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.
Robert Coulsoncd6c8a42013-05-08 22:45:53 -070078
79The DS1625 is pin compatible and functionally equivalent with the DS1621,
Robert Coulson260f81f2013-06-10 18:46:02 -070080but the DS1621 is meant to replace it. The DS1631, DS1721, and DS1731 are
81also pin compatible with the DS1621, but provide multi-resolution support.
Robert Coulson79c1cc12013-05-16 15:10:41 -070082
Robert Coulsoned7c34e2013-05-23 09:22:22 -070083Since 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.
Robert Coulsoncd6c8a42013-05-08 22:45:53 -070090
91The DS1721 is pin compatible with the DS1621, has an accuracy of +/- 1.0
Robert Coulson260f81f2013-06-10 18:46:02 -070092degree Celsius (from -10 to +85 degrees), a minimum/maximum alarm default
93setting of 75 and 80 degrees, and a maximum conversion time of 750ms.
Robert Coulson3a8fe332013-05-08 22:45:54 -070094
95In addition, the DS1721 supports four resolution settings from 9 to 12 bits
Robert Coulson260f81f2013-06-10 18:46:02 -070096(defined in degrees C per LSB: 0.5, 0.25, 0.125, and 0.0625, respectively),
Robert Coulson79c1cc12013-05-16 15:10:41 -070097that are set at device power on to the highest resolution: 12-bits.
Robert Coulson3a8fe332013-05-08 22:45:54 -070098
Robert Coulson79c1cc12013-05-16 15:10:41 -070099One 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
Robert Coulson260f81f2013-06-10 18:46:02 -0700103The 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).
Robert Coulson79c1cc12013-05-16 15:10:41 -0700107
Robert Coulson260f81f2013-06-10 18:46:02 -0700108The 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:
Robert Coulson3a8fe332013-05-08 22:45:54 -0700112
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