blob: 4c4c1421bf28f66462d8d0bf5f2ee70947005ac0 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * lm90.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring
Jean Delvare95238362010-03-05 22:17:14 +01004 * Copyright (C) 2003-2010 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Based on the lm83 driver. The LM90 is a sensor chip made by National
7 * Semiconductor. It reports up to two temperatures (its own plus up to
8 * one external one) with a 0.125 deg resolution (1 deg for local
Jean Delvarea874a102008-10-17 17:51:10 +02009 * temperature) and a 3-4 deg accuracy.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This driver also supports the LM89 and LM99, two other sensor chips
12 * made by National Semiconductor. Both have an increased remote
13 * temperature measurement accuracy (1 degree), and the LM99
14 * additionally shifts remote temperatures (measured and limits) by 16
Jean Delvare97ae60b2008-10-26 17:04:39 +010015 * degrees, which allows for higher temperatures measurement.
Steven Cole44bbe872005-05-03 18:21:25 -060016 * Note that there is no way to differentiate between both chips.
Jean Delvare97ae60b2008-10-26 17:04:39 +010017 * When device is auto-detected, the driver will assume an LM99.
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 *
19 * This driver also supports the LM86, another sensor chip made by
20 * National Semiconductor. It is exactly similar to the LM90 except it
21 * has a higher accuracy.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 *
23 * This driver also supports the ADM1032, a sensor chip made by Analog
24 * Devices. That chip is similar to the LM90, with a few differences
Jean Delvarea874a102008-10-17 17:51:10 +020025 * that are not handled by this driver. Among others, it has a higher
26 * accuracy than the LM90, much like the LM86 does.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
28 * This driver also supports the MAX6657, MAX6658 and MAX6659 sensor
Jean Delvarea874a102008-10-17 17:51:10 +020029 * chips made by Maxim. These chips are similar to the LM86.
Steven Cole44bbe872005-05-03 18:21:25 -060030 * Note that there is no easy way to differentiate between the three
Guenter Roeck69487082010-10-28 20:31:43 +020031 * variants. We use the device address to detect MAX6659, which will result
32 * in a detection as max6657 if it is on address 0x4c. The extra address
33 * and features of the MAX6659 are only supported if the chip is configured
34 * explicitly as max6659, or if its address is not 0x4c.
35 * These chips lack the remote temperature offset feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 *
Darrick J. Wong1a51e062009-03-12 13:36:38 +010037 * This driver also supports the MAX6646, MAX6647, MAX6648, MAX6649 and
38 * MAX6692 chips made by Maxim. These are again similar to the LM86,
39 * but they use unsigned temperature values and can report temperatures
40 * from 0 to 145 degrees.
Ben Hutchings271dabf2008-10-17 17:51:11 +020041 *
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -040042 * This driver also supports the MAX6680 and MAX6681, two other sensor
43 * chips made by Maxim. These are quite similar to the other Maxim
Jean Delvarea874a102008-10-17 17:51:10 +020044 * chips. The MAX6680 and MAX6681 only differ in the pinout so they can
45 * be treated identically.
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -040046 *
Guenter Roeck06e1c0a2010-10-28 20:31:43 +020047 * This driver also supports the MAX6695 and MAX6696, two other sensor
48 * chips made by Maxim. These are also quite similar to other Maxim
49 * chips, but support three temperature sensors instead of two. MAX6695
50 * and MAX6696 only differ in the pinout so they can be treated identically.
51 *
Guenter Roeck5a4e5e62011-04-29 16:33:35 +020052 * This driver also supports ADT7461 and ADT7461A from Analog Devices as well as
53 * NCT1008 from ON Semiconductor. The chips are supported in both compatibility
54 * and extended mode. They are mostly compatible with LM90 except for a data
55 * format difference for the temperature value registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 *
Stijn Devriendt2ef01792011-06-06 10:40:45 +000057 * This driver also supports the SA56004 from Philips. This device is
58 * pin-compatible with the LM86, the ED/EDP parts are also address-compatible.
59 *
Guenter Roeckae544f62012-03-23 10:02:18 +010060 * This driver also supports the G781 from GMT. This device is compatible
61 * with the ADM1032.
62 *
Wei Ni1daaceb2013-11-15 10:40:39 +010063 * This driver also supports TMP451 from Texas Instruments. This device is
64 * supported in both compatibility and extended mode. It's mostly compatible
65 * with ADT7461 except for local temperature low byte register and max
66 * conversion rate.
67 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070068 * Since the LM90 was the first chipset supported by this driver, most
69 * comments will refer to this chipset, but are actually general and
70 * concern all supported chipsets, unless mentioned otherwise.
71 *
72 * This program is free software; you can redistribute it and/or modify
73 * it under the terms of the GNU General Public License as published by
74 * the Free Software Foundation; either version 2 of the License, or
75 * (at your option) any later version.
76 *
77 * This program is distributed in the hope that it will be useful,
78 * but WITHOUT ANY WARRANTY; without even the implied warranty of
79 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
80 * GNU General Public License for more details.
81 *
82 * You should have received a copy of the GNU General Public License
83 * along with this program; if not, write to the Free Software
84 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
85 */
86
Linus Torvalds1da177e2005-04-16 15:20:36 -070087#include <linux/module.h>
88#include <linux/init.h>
89#include <linux/slab.h>
90#include <linux/jiffies.h>
91#include <linux/i2c.h>
Jean Delvare10c08f82005-06-06 19:34:45 +020092#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040093#include <linux/hwmon.h>
94#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010095#include <linux/mutex.h>
Jean Delvare0e39e012006-09-24 21:16:40 +020096#include <linux/sysfs.h>
Wei Ni109b1282013-11-15 10:40:39 +010097#include <linux/interrupt.h>
Wei Ni3e0f9642013-11-15 10:40:39 +010098#include <linux/regulator/consumer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070099
100/*
101 * Addresses to scan
102 * Address is fully defined internally and cannot be changed except for
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400103 * MAX6659, MAX6680 and MAX6681.
Guenter Roeck5a4e5e62011-04-29 16:33:35 +0200104 * LM86, LM89, LM90, LM99, ADM1032, ADM1032-1, ADT7461, ADT7461A, MAX6649,
105 * MAX6657, MAX6658, NCT1008 and W83L771 have address 0x4c.
106 * ADM1032-2, ADT7461-2, ADT7461A-2, LM89-1, LM99-1, MAX6646, and NCT1008D
107 * have address 0x4d.
Ben Hutchings271dabf2008-10-17 17:51:11 +0200108 * MAX6647 has address 0x4e.
Guenter Roeck13c84952010-10-28 20:31:43 +0200109 * MAX6659 can have address 0x4c, 0x4d or 0x4e.
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400110 * MAX6680 and MAX6681 can have address 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b,
111 * 0x4c, 0x4d or 0x4e.
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000112 * SA56004 can have address 0x48 through 0x4F.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
114
Mark M. Hoffman25e9c862008-02-17 22:28:03 -0500115static const unsigned short normal_i2c[] = {
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000116 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x48, 0x49, 0x4a, 0x4b, 0x4c,
117 0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700118
Guenter Roeck13c84952010-10-28 20:31:43 +0200119enum chips { lm90, adm1032, lm99, lm86, max6657, max6659, adt7461, max6680,
Wei Ni1daaceb2013-11-15 10:40:39 +0100120 max6646, w83l771, max6696, sa56004, g781, tmp451 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
122/*
123 * The LM90 registers
124 */
125
126#define LM90_REG_R_MAN_ID 0xFE
127#define LM90_REG_R_CHIP_ID 0xFF
128#define LM90_REG_R_CONFIG1 0x03
129#define LM90_REG_W_CONFIG1 0x09
130#define LM90_REG_R_CONFIG2 0xBF
131#define LM90_REG_W_CONFIG2 0xBF
132#define LM90_REG_R_CONVRATE 0x04
133#define LM90_REG_W_CONVRATE 0x0A
134#define LM90_REG_R_STATUS 0x02
135#define LM90_REG_R_LOCAL_TEMP 0x00
136#define LM90_REG_R_LOCAL_HIGH 0x05
137#define LM90_REG_W_LOCAL_HIGH 0x0B
138#define LM90_REG_R_LOCAL_LOW 0x06
139#define LM90_REG_W_LOCAL_LOW 0x0C
140#define LM90_REG_R_LOCAL_CRIT 0x20
141#define LM90_REG_W_LOCAL_CRIT 0x20
142#define LM90_REG_R_REMOTE_TEMPH 0x01
143#define LM90_REG_R_REMOTE_TEMPL 0x10
144#define LM90_REG_R_REMOTE_OFFSH 0x11
145#define LM90_REG_W_REMOTE_OFFSH 0x11
146#define LM90_REG_R_REMOTE_OFFSL 0x12
147#define LM90_REG_W_REMOTE_OFFSL 0x12
148#define LM90_REG_R_REMOTE_HIGHH 0x07
149#define LM90_REG_W_REMOTE_HIGHH 0x0D
150#define LM90_REG_R_REMOTE_HIGHL 0x13
151#define LM90_REG_W_REMOTE_HIGHL 0x13
152#define LM90_REG_R_REMOTE_LOWH 0x08
153#define LM90_REG_W_REMOTE_LOWH 0x0E
154#define LM90_REG_R_REMOTE_LOWL 0x14
155#define LM90_REG_W_REMOTE_LOWL 0x14
156#define LM90_REG_R_REMOTE_CRIT 0x19
157#define LM90_REG_W_REMOTE_CRIT 0x19
158#define LM90_REG_R_TCRIT_HYST 0x21
159#define LM90_REG_W_TCRIT_HYST 0x21
160
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200161/* MAX6646/6647/6649/6657/6658/6659/6695/6696 registers */
Jean Delvaref65e1702008-10-17 17:51:09 +0200162
163#define MAX6657_REG_R_LOCAL_TEMPL 0x11
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200164#define MAX6696_REG_R_STATUS2 0x12
Guenter Roeck69487082010-10-28 20:31:43 +0200165#define MAX6659_REG_R_REMOTE_EMERG 0x16
166#define MAX6659_REG_W_REMOTE_EMERG 0x16
167#define MAX6659_REG_R_LOCAL_EMERG 0x17
168#define MAX6659_REG_W_LOCAL_EMERG 0x17
Jean Delvaref65e1702008-10-17 17:51:09 +0200169
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000170/* SA56004 registers */
171
172#define SA56004_REG_R_LOCAL_TEMPL 0x22
173
Guenter Roeck0c01b642010-10-28 20:31:44 +0200174#define LM90_DEF_CONVRATE_RVAL 6 /* Def conversion rate register value */
175#define LM90_MAX_CONVRATE_MS 16000 /* Maximum conversion rate in ms */
176
Wei Ni1daaceb2013-11-15 10:40:39 +0100177/* TMP451 registers */
178#define TMP451_REG_R_LOCAL_TEMPL 0x15
179
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180/*
Nate Case23b2d472008-10-17 17:51:10 +0200181 * Device flags
182 */
Guenter Roeck88073bb2010-10-28 20:31:43 +0200183#define LM90_FLAG_ADT7461_EXT (1 << 0) /* ADT7461 extended mode */
184/* Device features */
185#define LM90_HAVE_OFFSET (1 << 1) /* temperature offset register */
Guenter Roeck88073bb2010-10-28 20:31:43 +0200186#define LM90_HAVE_REM_LIMIT_EXT (1 << 3) /* extended remote limit */
Guenter Roeck69487082010-10-28 20:31:43 +0200187#define LM90_HAVE_EMERGENCY (1 << 4) /* 3rd upper (emergency) limit */
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200188#define LM90_HAVE_EMERGENCY_ALARM (1 << 5)/* emergency alarm */
189#define LM90_HAVE_TEMP3 (1 << 6) /* 3rd temperature sensor */
Guenter Roeck11793242010-10-28 20:31:44 +0200190#define LM90_HAVE_BROKEN_ALERT (1 << 7) /* Broken alert */
Nate Case23b2d472008-10-17 17:51:10 +0200191
Wei Ni072de492013-11-15 10:40:38 +0100192/* LM90 status */
193#define LM90_STATUS_LTHRM (1 << 0) /* local THERM limit tripped */
194#define LM90_STATUS_RTHRM (1 << 1) /* remote THERM limit tripped */
195#define LM90_STATUS_ROPEN (1 << 2) /* remote is an open circuit */
196#define LM90_STATUS_RLOW (1 << 3) /* remote low temp limit tripped */
197#define LM90_STATUS_RHIGH (1 << 4) /* remote high temp limit tripped */
198#define LM90_STATUS_LLOW (1 << 5) /* local low temp limit tripped */
199#define LM90_STATUS_LHIGH (1 << 6) /* local high temp limit tripped */
200
201#define MAX6696_STATUS2_R2THRM (1 << 1) /* remote2 THERM limit tripped */
202#define MAX6696_STATUS2_R2OPEN (1 << 2) /* remote2 is an open circuit */
203#define MAX6696_STATUS2_R2LOW (1 << 3) /* remote2 low temp limit tripped */
204#define MAX6696_STATUS2_R2HIGH (1 << 4) /* remote2 high temp limit tripped */
205#define MAX6696_STATUS2_ROT2 (1 << 5) /* remote emergency limit tripped */
206#define MAX6696_STATUS2_R2OT2 (1 << 6) /* remote2 emergency limit tripped */
207#define MAX6696_STATUS2_LOT2 (1 << 7) /* local emergency limit tripped */
208
Nate Case23b2d472008-10-17 17:51:10 +0200209/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 * Driver data (common to all clients)
211 */
212
Jean Delvare9b0e8522008-07-16 19:30:15 +0200213static const struct i2c_device_id lm90_id[] = {
214 { "adm1032", adm1032 },
215 { "adt7461", adt7461 },
Guenter Roeck5a4e5e62011-04-29 16:33:35 +0200216 { "adt7461a", adt7461 },
Guenter Roeckae544f62012-03-23 10:02:18 +0100217 { "g781", g781 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200218 { "lm90", lm90 },
219 { "lm86", lm86 },
Jean Delvare97ae60b2008-10-26 17:04:39 +0100220 { "lm89", lm86 },
221 { "lm99", lm99 },
Ben Hutchings271dabf2008-10-17 17:51:11 +0200222 { "max6646", max6646 },
223 { "max6647", max6646 },
224 { "max6649", max6646 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200225 { "max6657", max6657 },
226 { "max6658", max6657 },
Guenter Roeck13c84952010-10-28 20:31:43 +0200227 { "max6659", max6659 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200228 { "max6680", max6680 },
229 { "max6681", max6680 },
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200230 { "max6695", max6696 },
231 { "max6696", max6696 },
Guenter Roeck5a4e5e62011-04-29 16:33:35 +0200232 { "nct1008", adt7461 },
Jean Delvare6771ea12010-03-05 22:17:13 +0100233 { "w83l771", w83l771 },
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000234 { "sa56004", sa56004 },
Wei Ni1daaceb2013-11-15 10:40:39 +0100235 { "tmp451", tmp451 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200236 { }
237};
238MODULE_DEVICE_TABLE(i2c, lm90_id);
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240/*
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200241 * chip type specific parameters
242 */
243struct lm90_params {
244 u32 flags; /* Capabilities */
245 u16 alert_alarms; /* Which alarm bits trigger ALERT# */
246 /* Upper 8 bits for max6695/96 */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200247 u8 max_convrate; /* Maximum conversion rate register value */
Jean Delvarea095f682011-07-27 23:22:25 -0700248 u8 reg_local_ext; /* Extended local temp register (optional) */
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200249};
250
251static const struct lm90_params lm90_params[] = {
252 [adm1032] = {
Guenter Roeck11793242010-10-28 20:31:44 +0200253 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
254 | LM90_HAVE_BROKEN_ALERT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200255 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200256 .max_convrate = 10,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200257 },
258 [adt7461] = {
Guenter Roeck11793242010-10-28 20:31:44 +0200259 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
260 | LM90_HAVE_BROKEN_ALERT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200261 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200262 .max_convrate = 10,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200263 },
Guenter Roeckae544f62012-03-23 10:02:18 +0100264 [g781] = {
265 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
266 | LM90_HAVE_BROKEN_ALERT,
267 .alert_alarms = 0x7c,
268 .max_convrate = 8,
269 },
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200270 [lm86] = {
271 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
272 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200273 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200274 },
275 [lm90] = {
276 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
277 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200278 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200279 },
280 [lm99] = {
281 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
282 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200283 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200284 },
285 [max6646] = {
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200286 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200287 .max_convrate = 6,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000288 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200289 },
290 [max6657] = {
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200291 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200292 .max_convrate = 8,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000293 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200294 },
295 [max6659] = {
Jean Delvarea095f682011-07-27 23:22:25 -0700296 .flags = LM90_HAVE_EMERGENCY,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200297 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200298 .max_convrate = 8,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000299 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200300 },
301 [max6680] = {
302 .flags = LM90_HAVE_OFFSET,
303 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200304 .max_convrate = 7,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200305 },
306 [max6696] = {
Jean Delvarea095f682011-07-27 23:22:25 -0700307 .flags = LM90_HAVE_EMERGENCY
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200308 | LM90_HAVE_EMERGENCY_ALARM | LM90_HAVE_TEMP3,
Guenter Roecke41fae2b2013-11-15 10:40:38 +0100309 .alert_alarms = 0x1c7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200310 .max_convrate = 6,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000311 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200312 },
313 [w83l771] = {
314 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
315 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200316 .max_convrate = 8,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200317 },
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000318 [sa56004] = {
Jean Delvarea095f682011-07-27 23:22:25 -0700319 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000320 .alert_alarms = 0x7b,
321 .max_convrate = 9,
322 .reg_local_ext = SA56004_REG_R_LOCAL_TEMPL,
323 },
Wei Ni1daaceb2013-11-15 10:40:39 +0100324 [tmp451] = {
325 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
326 | LM90_HAVE_BROKEN_ALERT,
327 .alert_alarms = 0x7c,
328 .max_convrate = 9,
329 .reg_local_ext = TMP451_REG_R_LOCAL_TEMPL,
330 }
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200331};
332
333/*
Wei Ni40465d92013-11-15 10:40:39 +0100334 * TEMP8 register index
335 */
336enum lm90_temp8_reg_index {
337 LOCAL_LOW = 0,
338 LOCAL_HIGH,
339 LOCAL_CRIT,
340 REMOTE_CRIT,
341 LOCAL_EMERG, /* max6659 and max6695/96 */
342 REMOTE_EMERG, /* max6659 and max6695/96 */
343 REMOTE2_CRIT, /* max6695/96 only */
344 REMOTE2_EMERG, /* max6695/96 only */
345 TEMP8_REG_NUM
346};
347
348/*
349 * TEMP11 register index
350 */
351enum lm90_temp11_reg_index {
352 REMOTE_TEMP = 0,
353 REMOTE_LOW,
354 REMOTE_HIGH,
355 REMOTE_OFFSET, /* except max6646, max6657/58/59, and max6695/96 */
356 LOCAL_TEMP,
357 REMOTE2_TEMP, /* max6695/96 only */
358 REMOTE2_LOW, /* max6695/96 only */
359 REMOTE2_HIGH, /* max6695/96 only */
360 TEMP11_REG_NUM
361};
362
363/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 * Client data (each client gets its own)
365 */
366
367struct lm90_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700368 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100369 struct mutex update_lock;
Wei Ni3e0f9642013-11-15 10:40:39 +0100370 struct regulator *regulator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371 char valid; /* zero until following fields are valid */
372 unsigned long last_updated; /* in jiffies */
373 int kind;
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200374 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375
Guenter Roeck0c01b642010-10-28 20:31:44 +0200376 int update_interval; /* in milliseconds */
377
Jean Delvare95238362010-03-05 22:17:14 +0100378 u8 config_orig; /* Original configuration register value */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200379 u8 convrate_orig; /* Original conversion rate register value */
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200380 u16 alert_alarms; /* Which alarm bits trigger ALERT# */
381 /* Upper 8 bits for max6695/96 */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200382 u8 max_convrate; /* Maximum conversion rate */
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000383 u8 reg_local_ext; /* local extension register offset */
Jean Delvare95238362010-03-05 22:17:14 +0100384
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 /* registers values */
Wei Ni40465d92013-11-15 10:40:39 +0100386 s8 temp8[TEMP8_REG_NUM];
387 s16 temp11[TEMP11_REG_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 u8 temp_hyst;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200389 u16 alarms; /* bitvector (upper 8 bits for max6695/96) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390};
391
392/*
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200393 * Support functions
394 */
395
396/*
397 * The ADM1032 supports PEC but not on write byte transactions, so we need
398 * to explicitly ask for a transaction without PEC.
399 */
400static inline s32 adm1032_write_byte(struct i2c_client *client, u8 value)
401{
402 return i2c_smbus_xfer(client->adapter, client->addr,
403 client->flags & ~I2C_CLIENT_PEC,
404 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
405}
406
407/*
408 * It is assumed that client->update_lock is held (unless we are in
409 * detection or initialization steps). This matters when PEC is enabled,
410 * because we don't want the address pointer to change between the write
411 * byte and the read byte transactions.
412 */
413static int lm90_read_reg(struct i2c_client *client, u8 reg, u8 *value)
414{
415 int err;
416
417 if (client->flags & I2C_CLIENT_PEC) {
418 err = adm1032_write_byte(client, reg);
419 if (err >= 0)
420 err = i2c_smbus_read_byte(client);
421 } else
422 err = i2c_smbus_read_byte_data(client, reg);
423
424 if (err < 0) {
425 dev_warn(&client->dev, "Register %#02x read failed (%d)\n",
426 reg, err);
427 return err;
428 }
429 *value = err;
430
431 return 0;
432}
433
434static int lm90_read16(struct i2c_client *client, u8 regh, u8 regl, u16 *value)
435{
436 int err;
437 u8 oldh, newh, l;
438
439 /*
440 * There is a trick here. We have to read two registers to have the
441 * sensor temperature, but we have to beware a conversion could occur
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300442 * between the readings. The datasheet says we should either use
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200443 * the one-shot conversion register, which we don't want to do
444 * (disables hardware monitoring) or monitor the busy bit, which is
445 * impossible (we can't read the values and monitor that bit at the
446 * exact same time). So the solution used here is to read the high
447 * byte once, then the low byte, then the high byte again. If the new
448 * high byte matches the old one, then we have a valid reading. Else
449 * we have to read the low byte again, and now we believe we have a
450 * correct reading.
451 */
452 if ((err = lm90_read_reg(client, regh, &oldh))
453 || (err = lm90_read_reg(client, regl, &l))
454 || (err = lm90_read_reg(client, regh, &newh)))
455 return err;
456 if (oldh != newh) {
457 err = lm90_read_reg(client, regl, &l);
458 if (err)
459 return err;
460 }
461 *value = (newh << 8) | l;
462
463 return 0;
464}
465
466/*
467 * client->update_lock must be held when calling this function (unless we are
468 * in detection or initialization steps), and while a remote channel other
469 * than channel 0 is selected. Also, calling code must make sure to re-select
470 * external channel 0 before releasing the lock. This is necessary because
471 * various registers have different meanings as a result of selecting a
472 * non-default remote channel.
473 */
474static inline void lm90_select_remote_channel(struct i2c_client *client,
475 struct lm90_data *data,
476 int channel)
477{
478 u8 config;
479
480 if (data->kind == max6696) {
481 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
482 config &= ~0x08;
483 if (channel)
484 config |= 0x08;
485 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
486 config);
487 }
488}
489
Guenter Roeck0c01b642010-10-28 20:31:44 +0200490/*
491 * Set conversion rate.
492 * client->update_lock must be held when calling this function (unless we are
493 * in detection or initialization steps).
494 */
495static void lm90_set_convrate(struct i2c_client *client, struct lm90_data *data,
496 unsigned int interval)
497{
498 int i;
499 unsigned int update_interval;
500
501 /* Shift calculations to avoid rounding errors */
502 interval <<= 6;
503
504 /* find the nearest update rate */
505 for (i = 0, update_interval = LM90_MAX_CONVRATE_MS << 6;
506 i < data->max_convrate; i++, update_interval >>= 1)
507 if (interval >= update_interval * 3 / 4)
508 break;
509
510 i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE, i);
511 data->update_interval = DIV_ROUND_CLOSEST(update_interval, 64);
512}
513
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200514static struct lm90_data *lm90_update_device(struct device *dev)
515{
516 struct i2c_client *client = to_i2c_client(dev);
517 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200518 unsigned long next_update;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200519
520 mutex_lock(&data->update_lock);
521
Jean Delvare78c2c2f2013-07-08 14:18:24 +0200522 next_update = data->last_updated +
523 msecs_to_jiffies(data->update_interval);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200524 if (time_after(jiffies, next_update) || !data->valid) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200525 u8 h, l;
526 u8 alarms;
527
528 dev_dbg(&client->dev, "Updating lm90 data.\n");
Wei Ni40465d92013-11-15 10:40:39 +0100529 lm90_read_reg(client, LM90_REG_R_LOCAL_LOW,
530 &data->temp8[LOCAL_LOW]);
531 lm90_read_reg(client, LM90_REG_R_LOCAL_HIGH,
532 &data->temp8[LOCAL_HIGH]);
533 lm90_read_reg(client, LM90_REG_R_LOCAL_CRIT,
534 &data->temp8[LOCAL_CRIT]);
535 lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT,
536 &data->temp8[REMOTE_CRIT]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200537 lm90_read_reg(client, LM90_REG_R_TCRIT_HYST, &data->temp_hyst);
538
Jean Delvarea095f682011-07-27 23:22:25 -0700539 if (data->reg_local_ext) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200540 lm90_read16(client, LM90_REG_R_LOCAL_TEMP,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000541 data->reg_local_ext,
Wei Ni40465d92013-11-15 10:40:39 +0100542 &data->temp11[LOCAL_TEMP]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200543 } else {
544 if (lm90_read_reg(client, LM90_REG_R_LOCAL_TEMP,
545 &h) == 0)
Wei Ni40465d92013-11-15 10:40:39 +0100546 data->temp11[LOCAL_TEMP] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200547 }
548 lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
Wei Ni40465d92013-11-15 10:40:39 +0100549 LM90_REG_R_REMOTE_TEMPL,
550 &data->temp11[REMOTE_TEMP]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200551
552 if (lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH, &h) == 0) {
Wei Ni40465d92013-11-15 10:40:39 +0100553 data->temp11[REMOTE_LOW] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200554 if ((data->flags & LM90_HAVE_REM_LIMIT_EXT)
555 && lm90_read_reg(client, LM90_REG_R_REMOTE_LOWL,
556 &l) == 0)
Wei Ni40465d92013-11-15 10:40:39 +0100557 data->temp11[REMOTE_LOW] |= l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200558 }
559 if (lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH, &h) == 0) {
Wei Ni40465d92013-11-15 10:40:39 +0100560 data->temp11[REMOTE_HIGH] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200561 if ((data->flags & LM90_HAVE_REM_LIMIT_EXT)
562 && lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHL,
563 &l) == 0)
Wei Ni40465d92013-11-15 10:40:39 +0100564 data->temp11[REMOTE_HIGH] |= l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200565 }
566
567 if (data->flags & LM90_HAVE_OFFSET) {
568 if (lm90_read_reg(client, LM90_REG_R_REMOTE_OFFSH,
569 &h) == 0
570 && lm90_read_reg(client, LM90_REG_R_REMOTE_OFFSL,
571 &l) == 0)
Wei Ni40465d92013-11-15 10:40:39 +0100572 data->temp11[REMOTE_OFFSET] = (h << 8) | l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200573 }
574 if (data->flags & LM90_HAVE_EMERGENCY) {
575 lm90_read_reg(client, MAX6659_REG_R_LOCAL_EMERG,
Wei Ni40465d92013-11-15 10:40:39 +0100576 &data->temp8[LOCAL_EMERG]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200577 lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG,
Wei Ni40465d92013-11-15 10:40:39 +0100578 &data->temp8[REMOTE_EMERG]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200579 }
580 lm90_read_reg(client, LM90_REG_R_STATUS, &alarms);
581 data->alarms = alarms; /* save as 16 bit value */
582
583 if (data->kind == max6696) {
584 lm90_select_remote_channel(client, data, 1);
585 lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT,
Wei Ni40465d92013-11-15 10:40:39 +0100586 &data->temp8[REMOTE2_CRIT]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200587 lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG,
Wei Ni40465d92013-11-15 10:40:39 +0100588 &data->temp8[REMOTE2_EMERG]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200589 lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
Wei Ni40465d92013-11-15 10:40:39 +0100590 LM90_REG_R_REMOTE_TEMPL,
591 &data->temp11[REMOTE2_TEMP]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200592 if (!lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH, &h))
Wei Ni40465d92013-11-15 10:40:39 +0100593 data->temp11[REMOTE2_LOW] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200594 if (!lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH, &h))
Wei Ni40465d92013-11-15 10:40:39 +0100595 data->temp11[REMOTE2_HIGH] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200596 lm90_select_remote_channel(client, data, 0);
597
598 if (!lm90_read_reg(client, MAX6696_REG_R_STATUS2,
599 &alarms))
600 data->alarms |= alarms << 8;
601 }
602
Guenter Roeckf36ffea2012-03-23 10:02:18 +0100603 /*
604 * Re-enable ALERT# output if it was originally enabled and
605 * relevant alarms are all clear
606 */
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200607 if ((data->config_orig & 0x80) == 0
608 && (data->alarms & data->alert_alarms) == 0) {
609 u8 config;
610
611 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
612 if (config & 0x80) {
613 dev_dbg(&client->dev, "Re-enabling ALERT#\n");
614 i2c_smbus_write_byte_data(client,
615 LM90_REG_W_CONFIG1,
616 config & ~0x80);
617 }
618 }
619
620 data->last_updated = jiffies;
621 data->valid = 1;
622 }
623
624 mutex_unlock(&data->update_lock);
625
626 return data;
627}
628
629/*
Nate Casecea50fe2008-10-17 17:51:10 +0200630 * Conversions
631 * For local temperatures and limits, critical limits and the hysteresis
632 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius.
633 * For remote temperatures and limits, it uses signed 11-bit values with
Ben Hutchings271dabf2008-10-17 17:51:11 +0200634 * LSB = 0.125 degree Celsius, left-justified in 16-bit registers. Some
635 * Maxim chips use unsigned values.
Nate Casecea50fe2008-10-17 17:51:10 +0200636 */
637
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200638static inline int temp_from_s8(s8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200639{
640 return val * 1000;
641}
642
Ben Hutchings271dabf2008-10-17 17:51:11 +0200643static inline int temp_from_u8(u8 val)
644{
645 return val * 1000;
646}
647
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200648static inline int temp_from_s16(s16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200649{
650 return val / 32 * 125;
651}
652
Ben Hutchings271dabf2008-10-17 17:51:11 +0200653static inline int temp_from_u16(u16 val)
654{
655 return val / 32 * 125;
656}
657
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200658static s8 temp_to_s8(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200659{
660 if (val <= -128000)
661 return -128;
662 if (val >= 127000)
663 return 127;
664 if (val < 0)
665 return (val - 500) / 1000;
666 return (val + 500) / 1000;
667}
668
Ben Hutchings271dabf2008-10-17 17:51:11 +0200669static u8 temp_to_u8(long val)
670{
671 if (val <= 0)
672 return 0;
673 if (val >= 255000)
674 return 255;
675 return (val + 500) / 1000;
676}
677
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200678static s16 temp_to_s16(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200679{
680 if (val <= -128000)
681 return 0x8000;
682 if (val >= 127875)
683 return 0x7FE0;
684 if (val < 0)
685 return (val - 62) / 125 * 32;
686 return (val + 62) / 125 * 32;
687}
688
689static u8 hyst_to_reg(long val)
690{
691 if (val <= 0)
692 return 0;
693 if (val >= 30500)
694 return 31;
695 return (val + 500) / 1000;
696}
697
698/*
Nate Case23b2d472008-10-17 17:51:10 +0200699 * ADT7461 in compatibility mode is almost identical to LM90 except that
700 * attempts to write values that are outside the range 0 < temp < 127 are
701 * treated as the boundary value.
702 *
703 * ADT7461 in "extended mode" operation uses unsigned integers offset by
704 * 64 (e.g., 0 -> -64 degC). The range is restricted to -64..191 degC.
Nate Casecea50fe2008-10-17 17:51:10 +0200705 */
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200706static inline int temp_from_u8_adt7461(struct lm90_data *data, u8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200707{
Nate Case23b2d472008-10-17 17:51:10 +0200708 if (data->flags & LM90_FLAG_ADT7461_EXT)
709 return (val - 64) * 1000;
710 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200711 return temp_from_s8(val);
Nate Casecea50fe2008-10-17 17:51:10 +0200712}
713
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200714static inline int temp_from_u16_adt7461(struct lm90_data *data, u16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200715{
Nate Case23b2d472008-10-17 17:51:10 +0200716 if (data->flags & LM90_FLAG_ADT7461_EXT)
717 return (val - 0x4000) / 64 * 250;
718 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200719 return temp_from_s16(val);
Nate Case23b2d472008-10-17 17:51:10 +0200720}
721
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200722static u8 temp_to_u8_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200723{
724 if (data->flags & LM90_FLAG_ADT7461_EXT) {
725 if (val <= -64000)
726 return 0;
727 if (val >= 191000)
728 return 0xFF;
729 return (val + 500 + 64000) / 1000;
730 } else {
731 if (val <= 0)
732 return 0;
733 if (val >= 127000)
734 return 127;
735 return (val + 500) / 1000;
736 }
737}
738
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200739static u16 temp_to_u16_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200740{
741 if (data->flags & LM90_FLAG_ADT7461_EXT) {
742 if (val <= -64000)
743 return 0;
744 if (val >= 191750)
745 return 0xFFC0;
746 return (val + 64000 + 125) / 250 * 64;
747 } else {
748 if (val <= 0)
749 return 0;
750 if (val >= 127750)
751 return 0x7FC0;
752 return (val + 125) / 250 * 64;
753 }
Nate Casecea50fe2008-10-17 17:51:10 +0200754}
755
756/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 * Sysfs stuff
758 */
759
Jean Delvare30d73942005-06-05 21:27:28 +0200760static ssize_t show_temp8(struct device *dev, struct device_attribute *devattr,
761 char *buf)
762{
763 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
764 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200765 int temp;
766
Wei Ni1daaceb2013-11-15 10:40:39 +0100767 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200768 temp = temp_from_u8_adt7461(data, data->temp8[attr->index]);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200769 else if (data->kind == max6646)
770 temp = temp_from_u8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200771 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200772 temp = temp_from_s8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200773
Jean Delvare97ae60b2008-10-26 17:04:39 +0100774 /* +16 degrees offset for temp2 for the LM99 */
775 if (data->kind == lm99 && attr->index == 3)
776 temp += 16000;
777
Nate Case23b2d472008-10-17 17:51:10 +0200778 return sprintf(buf, "%d\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780
Jean Delvare30d73942005-06-05 21:27:28 +0200781static ssize_t set_temp8(struct device *dev, struct device_attribute *devattr,
782 const char *buf, size_t count)
783{
Wei Ni40465d92013-11-15 10:40:39 +0100784 static const u8 reg[TEMP8_REG_NUM] = {
Jean Delvare30d73942005-06-05 21:27:28 +0200785 LM90_REG_W_LOCAL_LOW,
786 LM90_REG_W_LOCAL_HIGH,
787 LM90_REG_W_LOCAL_CRIT,
788 LM90_REG_W_REMOTE_CRIT,
Guenter Roeck69487082010-10-28 20:31:43 +0200789 MAX6659_REG_W_LOCAL_EMERG,
790 MAX6659_REG_W_REMOTE_EMERG,
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200791 LM90_REG_W_REMOTE_CRIT,
792 MAX6659_REG_W_REMOTE_EMERG,
Jean Delvare30d73942005-06-05 21:27:28 +0200793 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794
Jean Delvare30d73942005-06-05 21:27:28 +0200795 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
796 struct i2c_client *client = to_i2c_client(dev);
797 struct lm90_data *data = i2c_get_clientdata(client);
Jean Delvare30d73942005-06-05 21:27:28 +0200798 int nr = attr->index;
Guenter Roeck11e57812010-10-28 20:31:42 +0200799 long val;
800 int err;
801
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100802 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200803 if (err < 0)
804 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
Jean Delvare97ae60b2008-10-26 17:04:39 +0100806 /* +16 degrees offset for temp2 for the LM99 */
807 if (data->kind == lm99 && attr->index == 3)
808 val -= 16000;
809
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100810 mutex_lock(&data->update_lock);
Wei Ni1daaceb2013-11-15 10:40:39 +0100811 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200812 data->temp8[nr] = temp_to_u8_adt7461(data, val);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200813 else if (data->kind == max6646)
814 data->temp8[nr] = temp_to_u8(val);
Jean Delvare30d73942005-06-05 21:27:28 +0200815 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200816 data->temp8[nr] = temp_to_s8(val);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200817
818 lm90_select_remote_channel(client, data, nr >= 6);
Jean Delvaref65e1702008-10-17 17:51:09 +0200819 i2c_smbus_write_byte_data(client, reg[nr], data->temp8[nr]);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200820 lm90_select_remote_channel(client, data, 0);
821
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100822 mutex_unlock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200823 return count;
824}
825
826static ssize_t show_temp11(struct device *dev, struct device_attribute *devattr,
827 char *buf)
828{
Guenter Roeck96512862010-10-28 20:31:43 +0200829 struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
Jean Delvare30d73942005-06-05 21:27:28 +0200830 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200831 int temp;
832
Wei Ni1daaceb2013-11-15 10:40:39 +0100833 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200834 temp = temp_from_u16_adt7461(data, data->temp11[attr->index]);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200835 else if (data->kind == max6646)
836 temp = temp_from_u16(data->temp11[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200837 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200838 temp = temp_from_s16(data->temp11[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200839
Jean Delvare97ae60b2008-10-26 17:04:39 +0100840 /* +16 degrees offset for temp2 for the LM99 */
841 if (data->kind == lm99 && attr->index <= 2)
842 temp += 16000;
843
Nate Case23b2d472008-10-17 17:51:10 +0200844 return sprintf(buf, "%d\n", temp);
Jean Delvare30d73942005-06-05 21:27:28 +0200845}
846
847static ssize_t set_temp11(struct device *dev, struct device_attribute *devattr,
848 const char *buf, size_t count)
849{
Guenter Roeck96512862010-10-28 20:31:43 +0200850 struct {
851 u8 high;
852 u8 low;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200853 int channel;
854 } reg[5] = {
855 { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL, 0 },
856 { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL, 0 },
857 { LM90_REG_W_REMOTE_OFFSH, LM90_REG_W_REMOTE_OFFSL, 0 },
858 { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL, 1 },
859 { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL, 1 }
Jean Delvare30d73942005-06-05 21:27:28 +0200860 };
861
Guenter Roeck96512862010-10-28 20:31:43 +0200862 struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
Jean Delvare30d73942005-06-05 21:27:28 +0200863 struct i2c_client *client = to_i2c_client(dev);
864 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck96512862010-10-28 20:31:43 +0200865 int nr = attr->nr;
866 int index = attr->index;
Guenter Roeck11e57812010-10-28 20:31:42 +0200867 long val;
868 int err;
869
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100870 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200871 if (err < 0)
872 return err;
Jean Delvare30d73942005-06-05 21:27:28 +0200873
Jean Delvare97ae60b2008-10-26 17:04:39 +0100874 /* +16 degrees offset for temp2 for the LM99 */
Guenter Roeck96512862010-10-28 20:31:43 +0200875 if (data->kind == lm99 && index <= 2)
Jean Delvare97ae60b2008-10-26 17:04:39 +0100876 val -= 16000;
877
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100878 mutex_lock(&data->update_lock);
Wei Ni1daaceb2013-11-15 10:40:39 +0100879 if (data->kind == adt7461 || data->kind == tmp451)
Guenter Roeck96512862010-10-28 20:31:43 +0200880 data->temp11[index] = temp_to_u16_adt7461(data, val);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200881 else if (data->kind == max6646)
Guenter Roeck96512862010-10-28 20:31:43 +0200882 data->temp11[index] = temp_to_u8(val) << 8;
Guenter Roeck88073bb2010-10-28 20:31:43 +0200883 else if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
Guenter Roeck96512862010-10-28 20:31:43 +0200884 data->temp11[index] = temp_to_s16(val);
Guenter Roeck88073bb2010-10-28 20:31:43 +0200885 else
Guenter Roeck96512862010-10-28 20:31:43 +0200886 data->temp11[index] = temp_to_s8(val) << 8;
Jean Delvare5f502a82008-10-17 17:51:09 +0200887
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200888 lm90_select_remote_channel(client, data, reg[nr].channel);
Guenter Roeck96512862010-10-28 20:31:43 +0200889 i2c_smbus_write_byte_data(client, reg[nr].high,
890 data->temp11[index] >> 8);
Guenter Roeck88073bb2010-10-28 20:31:43 +0200891 if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
Guenter Roeck96512862010-10-28 20:31:43 +0200892 i2c_smbus_write_byte_data(client, reg[nr].low,
893 data->temp11[index] & 0xff);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200894 lm90_select_remote_channel(client, data, 0);
895
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100896 mutex_unlock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200897 return count;
898}
899
Guenter Roeck11e57812010-10-28 20:31:42 +0200900static ssize_t show_temphyst(struct device *dev,
901 struct device_attribute *devattr,
Jean Delvare30d73942005-06-05 21:27:28 +0200902 char *buf)
903{
904 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
905 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200906 int temp;
907
Wei Ni1daaceb2013-11-15 10:40:39 +0100908 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200909 temp = temp_from_u8_adt7461(data, data->temp8[attr->index]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100910 else if (data->kind == max6646)
911 temp = temp_from_u8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200912 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200913 temp = temp_from_s8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200914
Jean Delvare97ae60b2008-10-26 17:04:39 +0100915 /* +16 degrees offset for temp2 for the LM99 */
916 if (data->kind == lm99 && attr->index == 3)
917 temp += 16000;
918
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200919 return sprintf(buf, "%d\n", temp - temp_from_s8(data->temp_hyst));
Jean Delvare30d73942005-06-05 21:27:28 +0200920}
921
922static ssize_t set_temphyst(struct device *dev, struct device_attribute *dummy,
923 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924{
925 struct i2c_client *client = to_i2c_client(dev);
926 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck11e57812010-10-28 20:31:42 +0200927 long val;
928 int err;
Jean Delvareec38fa22008-10-26 17:04:39 +0100929 int temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100931 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200932 if (err < 0)
933 return err;
934
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100935 mutex_lock(&data->update_lock);
Wei Ni1daaceb2013-11-15 10:40:39 +0100936 if (data->kind == adt7461 || data->kind == tmp451)
Wei Ni40465d92013-11-15 10:40:39 +0100937 temp = temp_from_u8_adt7461(data, data->temp8[LOCAL_CRIT]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100938 else if (data->kind == max6646)
Wei Ni40465d92013-11-15 10:40:39 +0100939 temp = temp_from_u8(data->temp8[LOCAL_CRIT]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100940 else
Wei Ni40465d92013-11-15 10:40:39 +0100941 temp = temp_from_s8(data->temp8[LOCAL_CRIT]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100942
943 data->temp_hyst = hyst_to_reg(temp - val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 i2c_smbus_write_byte_data(client, LM90_REG_W_TCRIT_HYST,
Jean Delvareec38fa22008-10-26 17:04:39 +0100945 data->temp_hyst);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100946 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 return count;
948}
949
Jean Delvare30d73942005-06-05 21:27:28 +0200950static ssize_t show_alarms(struct device *dev, struct device_attribute *dummy,
951 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952{
953 struct lm90_data *data = lm90_update_device(dev);
954 return sprintf(buf, "%d\n", data->alarms);
955}
956
Jean Delvare2d457712006-09-24 20:52:15 +0200957static ssize_t show_alarm(struct device *dev, struct device_attribute
958 *devattr, char *buf)
959{
960 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
961 struct lm90_data *data = lm90_update_device(dev);
962 int bitnr = attr->index;
963
964 return sprintf(buf, "%d\n", (data->alarms >> bitnr) & 1);
965}
966
Guenter Roeck0c01b642010-10-28 20:31:44 +0200967static ssize_t show_update_interval(struct device *dev,
968 struct device_attribute *attr, char *buf)
969{
970 struct lm90_data *data = dev_get_drvdata(dev);
971
972 return sprintf(buf, "%u\n", data->update_interval);
973}
974
975static ssize_t set_update_interval(struct device *dev,
976 struct device_attribute *attr,
977 const char *buf, size_t count)
978{
979 struct i2c_client *client = to_i2c_client(dev);
980 struct lm90_data *data = i2c_get_clientdata(client);
981 unsigned long val;
982 int err;
983
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100984 err = kstrtoul(buf, 10, &val);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200985 if (err)
986 return err;
987
988 mutex_lock(&data->update_lock);
Guenter Roeck2a844c12013-01-09 08:09:34 -0800989 lm90_set_convrate(client, data, clamp_val(val, 0, 100000));
Guenter Roeck0c01b642010-10-28 20:31:44 +0200990 mutex_unlock(&data->update_lock);
991
992 return count;
993}
994
Wei Ni40465d92013-11-15 10:40:39 +0100995static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp11, NULL,
996 0, LOCAL_TEMP);
997static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp11, NULL,
998 0, REMOTE_TEMP);
Jean Delvare30d73942005-06-05 21:27:28 +0200999static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001000 set_temp8, LOCAL_LOW);
Guenter Roeck96512862010-10-28 20:31:43 +02001001static SENSOR_DEVICE_ATTR_2(temp2_min, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001002 set_temp11, 0, REMOTE_LOW);
Jean Delvare30d73942005-06-05 21:27:28 +02001003static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001004 set_temp8, LOCAL_HIGH);
Guenter Roeck96512862010-10-28 20:31:43 +02001005static SENSOR_DEVICE_ATTR_2(temp2_max, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001006 set_temp11, 1, REMOTE_HIGH);
Jean Delvare30d73942005-06-05 21:27:28 +02001007static SENSOR_DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001008 set_temp8, LOCAL_CRIT);
Jean Delvare30d73942005-06-05 21:27:28 +02001009static SENSOR_DEVICE_ATTR(temp2_crit, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001010 set_temp8, REMOTE_CRIT);
Jean Delvare30d73942005-06-05 21:27:28 +02001011static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001012 set_temphyst, LOCAL_CRIT);
1013static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, show_temphyst, NULL,
1014 REMOTE_CRIT);
Guenter Roeck96512862010-10-28 20:31:43 +02001015static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001016 set_temp11, 2, REMOTE_OFFSET);
Jean Delvare2d457712006-09-24 20:52:15 +02001017
1018/* Individual alarm files */
1019static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 0);
1020static SENSOR_DEVICE_ATTR(temp2_crit_alarm, S_IRUGO, show_alarm, NULL, 1);
Jean Delvare7817a392007-06-09 10:11:16 -04001021static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 2);
Jean Delvare2d457712006-09-24 20:52:15 +02001022static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3);
1023static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 4);
1024static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 5);
1025static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 6);
1026/* Raw alarm file for compatibility */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001027static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
1028
Guenter Roeck0c01b642010-10-28 20:31:44 +02001029static DEVICE_ATTR(update_interval, S_IRUGO | S_IWUSR, show_update_interval,
1030 set_update_interval);
1031
Jean Delvare0e39e012006-09-24 21:16:40 +02001032static struct attribute *lm90_attributes[] = {
1033 &sensor_dev_attr_temp1_input.dev_attr.attr,
1034 &sensor_dev_attr_temp2_input.dev_attr.attr,
1035 &sensor_dev_attr_temp1_min.dev_attr.attr,
1036 &sensor_dev_attr_temp2_min.dev_attr.attr,
1037 &sensor_dev_attr_temp1_max.dev_attr.attr,
1038 &sensor_dev_attr_temp2_max.dev_attr.attr,
1039 &sensor_dev_attr_temp1_crit.dev_attr.attr,
1040 &sensor_dev_attr_temp2_crit.dev_attr.attr,
1041 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
1042 &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr,
1043
1044 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
1045 &sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
Jean Delvare7817a392007-06-09 10:11:16 -04001046 &sensor_dev_attr_temp2_fault.dev_attr.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +02001047 &sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
1048 &sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
1049 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
1050 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
1051 &dev_attr_alarms.attr,
Guenter Roeck0c01b642010-10-28 20:31:44 +02001052 &dev_attr_update_interval.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +02001053 NULL
1054};
1055
1056static const struct attribute_group lm90_group = {
1057 .attrs = lm90_attributes,
1058};
1059
Guenter Roeck69487082010-10-28 20:31:43 +02001060/*
1061 * Additional attributes for devices with emergency sensors
1062 */
1063static SENSOR_DEVICE_ATTR(temp1_emergency, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001064 set_temp8, LOCAL_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001065static SENSOR_DEVICE_ATTR(temp2_emergency, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001066 set_temp8, REMOTE_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001067static SENSOR_DEVICE_ATTR(temp1_emergency_hyst, S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001068 NULL, LOCAL_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001069static SENSOR_DEVICE_ATTR(temp2_emergency_hyst, S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001070 NULL, REMOTE_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001071
1072static struct attribute *lm90_emergency_attributes[] = {
1073 &sensor_dev_attr_temp1_emergency.dev_attr.attr,
1074 &sensor_dev_attr_temp2_emergency.dev_attr.attr,
1075 &sensor_dev_attr_temp1_emergency_hyst.dev_attr.attr,
1076 &sensor_dev_attr_temp2_emergency_hyst.dev_attr.attr,
1077 NULL
1078};
1079
1080static const struct attribute_group lm90_emergency_group = {
1081 .attrs = lm90_emergency_attributes,
1082};
1083
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001084static SENSOR_DEVICE_ATTR(temp1_emergency_alarm, S_IRUGO, show_alarm, NULL, 15);
1085static SENSOR_DEVICE_ATTR(temp2_emergency_alarm, S_IRUGO, show_alarm, NULL, 13);
1086
1087static struct attribute *lm90_emergency_alarm_attributes[] = {
1088 &sensor_dev_attr_temp1_emergency_alarm.dev_attr.attr,
1089 &sensor_dev_attr_temp2_emergency_alarm.dev_attr.attr,
1090 NULL
1091};
1092
1093static const struct attribute_group lm90_emergency_alarm_group = {
1094 .attrs = lm90_emergency_alarm_attributes,
1095};
1096
1097/*
1098 * Additional attributes for devices with 3 temperature sensors
1099 */
Wei Ni40465d92013-11-15 10:40:39 +01001100static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp11, NULL,
1101 0, REMOTE2_TEMP);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001102static SENSOR_DEVICE_ATTR_2(temp3_min, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001103 set_temp11, 3, REMOTE2_LOW);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001104static SENSOR_DEVICE_ATTR_2(temp3_max, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001105 set_temp11, 4, REMOTE2_HIGH);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001106static SENSOR_DEVICE_ATTR(temp3_crit, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001107 set_temp8, REMOTE2_CRIT);
1108static SENSOR_DEVICE_ATTR(temp3_crit_hyst, S_IRUGO, show_temphyst, NULL,
1109 REMOTE2_CRIT);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001110static SENSOR_DEVICE_ATTR(temp3_emergency, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001111 set_temp8, REMOTE2_EMERG);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001112static SENSOR_DEVICE_ATTR(temp3_emergency_hyst, S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001113 NULL, REMOTE2_EMERG);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001114
1115static SENSOR_DEVICE_ATTR(temp3_crit_alarm, S_IRUGO, show_alarm, NULL, 9);
1116static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL, 10);
1117static SENSOR_DEVICE_ATTR(temp3_min_alarm, S_IRUGO, show_alarm, NULL, 11);
1118static SENSOR_DEVICE_ATTR(temp3_max_alarm, S_IRUGO, show_alarm, NULL, 12);
1119static SENSOR_DEVICE_ATTR(temp3_emergency_alarm, S_IRUGO, show_alarm, NULL, 14);
1120
1121static struct attribute *lm90_temp3_attributes[] = {
1122 &sensor_dev_attr_temp3_input.dev_attr.attr,
1123 &sensor_dev_attr_temp3_min.dev_attr.attr,
1124 &sensor_dev_attr_temp3_max.dev_attr.attr,
1125 &sensor_dev_attr_temp3_crit.dev_attr.attr,
1126 &sensor_dev_attr_temp3_crit_hyst.dev_attr.attr,
1127 &sensor_dev_attr_temp3_emergency.dev_attr.attr,
1128 &sensor_dev_attr_temp3_emergency_hyst.dev_attr.attr,
1129
1130 &sensor_dev_attr_temp3_fault.dev_attr.attr,
1131 &sensor_dev_attr_temp3_min_alarm.dev_attr.attr,
1132 &sensor_dev_attr_temp3_max_alarm.dev_attr.attr,
1133 &sensor_dev_attr_temp3_crit_alarm.dev_attr.attr,
1134 &sensor_dev_attr_temp3_emergency_alarm.dev_attr.attr,
1135 NULL
1136};
1137
1138static const struct attribute_group lm90_temp3_group = {
1139 .attrs = lm90_temp3_attributes,
1140};
1141
Jean Delvarec3df5802005-10-26 21:39:40 +02001142/* pec used for ADM1032 only */
1143static ssize_t show_pec(struct device *dev, struct device_attribute *dummy,
1144 char *buf)
1145{
1146 struct i2c_client *client = to_i2c_client(dev);
1147 return sprintf(buf, "%d\n", !!(client->flags & I2C_CLIENT_PEC));
1148}
1149
1150static ssize_t set_pec(struct device *dev, struct device_attribute *dummy,
1151 const char *buf, size_t count)
1152{
1153 struct i2c_client *client = to_i2c_client(dev);
Guenter Roeck11e57812010-10-28 20:31:42 +02001154 long val;
1155 int err;
1156
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001157 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +02001158 if (err < 0)
1159 return err;
Jean Delvarec3df5802005-10-26 21:39:40 +02001160
1161 switch (val) {
1162 case 0:
1163 client->flags &= ~I2C_CLIENT_PEC;
1164 break;
1165 case 1:
1166 client->flags |= I2C_CLIENT_PEC;
1167 break;
1168 default:
1169 return -EINVAL;
1170 }
1171
1172 return count;
1173}
1174
1175static DEVICE_ATTR(pec, S_IWUSR | S_IRUGO, show_pec, set_pec);
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177/*
1178 * Real code
1179 */
1180
Jean Delvare9b0e8522008-07-16 19:30:15 +02001181/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001182static int lm90_detect(struct i2c_client *client,
Jean Delvare9b0e8522008-07-16 19:30:15 +02001183 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001185 struct i2c_adapter *adapter = client->adapter;
1186 int address = client->addr;
Jean Delvare8f2fa772009-12-09 20:35:53 +01001187 const char *name = NULL;
Jean Delvareb2589ab2011-11-04 12:00:47 +01001188 int man_id, chip_id, config1, config2, convrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189
1190 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvare9b0e8522008-07-16 19:30:15 +02001191 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Jean Delvare8f2fa772009-12-09 20:35:53 +01001193 /* detection and identification */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001194 man_id = i2c_smbus_read_byte_data(client, LM90_REG_R_MAN_ID);
1195 chip_id = i2c_smbus_read_byte_data(client, LM90_REG_R_CHIP_ID);
1196 config1 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG1);
1197 convrate = i2c_smbus_read_byte_data(client, LM90_REG_R_CONVRATE);
1198 if (man_id < 0 || chip_id < 0 || config1 < 0 || convrate < 0)
Jean Delvare8f2fa772009-12-09 20:35:53 +01001199 return -ENODEV;
1200
Jean Delvaref90be422011-07-24 20:37:05 +02001201 if (man_id == 0x01 || man_id == 0x5C || man_id == 0x41) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001202 config2 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG2);
1203 if (config2 < 0)
Jean Delvare9b0e8522008-07-16 19:30:15 +02001204 return -ENODEV;
Jean Delvaref90be422011-07-24 20:37:05 +02001205 } else
Jean Delvareb2589ab2011-11-04 12:00:47 +01001206 config2 = 0; /* Make compiler happy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001207
Jean Delvaref90be422011-07-24 20:37:05 +02001208 if ((address == 0x4C || address == 0x4D)
1209 && man_id == 0x01) { /* National Semiconductor */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001210 if ((config1 & 0x2A) == 0x00
1211 && (config2 & 0xF8) == 0x00
1212 && convrate <= 0x09) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001213 if (address == 0x4C
1214 && (chip_id & 0xF0) == 0x20) { /* LM90 */
1215 name = "lm90";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001217 if ((chip_id & 0xF0) == 0x30) { /* LM89/LM99 */
1218 name = "lm99";
1219 dev_info(&adapter->dev,
1220 "Assuming LM99 chip at 0x%02x\n",
1221 address);
1222 dev_info(&adapter->dev,
1223 "If it is an LM89, instantiate it "
1224 "with the new_device sysfs "
1225 "interface\n");
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -04001226 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001227 if (address == 0x4C
1228 && (chip_id & 0xF0) == 0x10) { /* LM86 */
1229 name = "lm86";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001230 }
1231 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001232 } else
1233 if ((address == 0x4C || address == 0x4D)
1234 && man_id == 0x41) { /* Analog Devices */
1235 if ((chip_id & 0xF0) == 0x40 /* ADM1032 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001236 && (config1 & 0x3F) == 0x00
1237 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001238 name = "adm1032";
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001239 /*
1240 * The ADM1032 supports PEC, but only if combined
1241 * transactions are not used.
1242 */
Jean Delvare8f2fa772009-12-09 20:35:53 +01001243 if (i2c_check_functionality(adapter,
1244 I2C_FUNC_SMBUS_BYTE))
1245 info->flags |= I2C_CLIENT_PEC;
1246 } else
1247 if (chip_id == 0x51 /* ADT7461 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001248 && (config1 & 0x1B) == 0x00
1249 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001250 name = "adt7461";
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001251 } else
1252 if (chip_id == 0x57 /* ADT7461A, NCT1008 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001253 && (config1 & 0x1B) == 0x00
1254 && convrate <= 0x0A) {
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001255 name = "adt7461a";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001256 }
1257 } else
1258 if (man_id == 0x4D) { /* Maxim */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001259 int emerg, emerg2, status2;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001260
1261 /*
1262 * We read MAX6659_REG_R_REMOTE_EMERG twice, and re-read
1263 * LM90_REG_R_MAN_ID in between. If MAX6659_REG_R_REMOTE_EMERG
1264 * exists, both readings will reflect the same value. Otherwise,
1265 * the readings will be different.
1266 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001267 emerg = i2c_smbus_read_byte_data(client,
1268 MAX6659_REG_R_REMOTE_EMERG);
1269 man_id = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001270 LM90_REG_R_MAN_ID);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001271 emerg2 = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001272 MAX6659_REG_R_REMOTE_EMERG);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001273 status2 = i2c_smbus_read_byte_data(client,
1274 MAX6696_REG_R_STATUS2);
1275 if (emerg < 0 || man_id < 0 || emerg2 < 0 || status2 < 0)
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001276 return -ENODEV;
1277
Jean Delvare8f2fa772009-12-09 20:35:53 +01001278 /*
1279 * The MAX6657, MAX6658 and MAX6659 do NOT have a chip_id
1280 * register. Reading from that address will return the last
1281 * read value, which in our case is those of the man_id
1282 * register. Likewise, the config1 register seems to lack a
1283 * low nibble, so the value will be those of the previous
1284 * read, so in our case those of the man_id register.
Guenter Roeck13c84952010-10-28 20:31:43 +02001285 * MAX6659 has a third set of upper temperature limit registers.
1286 * Those registers also return values on MAX6657 and MAX6658,
1287 * thus the only way to detect MAX6659 is by its address.
1288 * For this reason it will be mis-detected as MAX6657 if its
1289 * address is 0x4C.
Jean Delvare8f2fa772009-12-09 20:35:53 +01001290 */
1291 if (chip_id == man_id
Guenter Roeck13c84952010-10-28 20:31:43 +02001292 && (address == 0x4C || address == 0x4D || address == 0x4E)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001293 && (config1 & 0x1F) == (man_id & 0x0F)
1294 && convrate <= 0x09) {
Guenter Roeck13c84952010-10-28 20:31:43 +02001295 if (address == 0x4C)
1296 name = "max6657";
1297 else
1298 name = "max6659";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001299 } else
1300 /*
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001301 * Even though MAX6695 and MAX6696 do not have a chip ID
1302 * register, reading it returns 0x01. Bit 4 of the config1
1303 * register is unused and should return zero when read. Bit 0 of
1304 * the status2 register is unused and should return zero when
1305 * read.
1306 *
1307 * MAX6695 and MAX6696 have an additional set of temperature
1308 * limit registers. We can detect those chips by checking if
1309 * one of those registers exists.
1310 */
1311 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001312 && (config1 & 0x10) == 0x00
1313 && (status2 & 0x01) == 0x00
1314 && emerg == emerg2
1315 && convrate <= 0x07) {
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001316 name = "max6696";
1317 } else
1318 /*
Jean Delvare8f2fa772009-12-09 20:35:53 +01001319 * The chip_id register of the MAX6680 and MAX6681 holds the
1320 * revision of the chip. The lowest bit of the config1 register
1321 * is unused and should return zero when read, so should the
1322 * second to last bit of config1 (software reset).
1323 */
1324 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001325 && (config1 & 0x03) == 0x00
1326 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001327 name = "max6680";
1328 } else
1329 /*
1330 * The chip_id register of the MAX6646/6647/6649 holds the
1331 * revision of the chip. The lowest 6 bits of the config1
1332 * register are unused and should return zero when read.
1333 */
1334 if (chip_id == 0x59
Jean Delvareb2589ab2011-11-04 12:00:47 +01001335 && (config1 & 0x3f) == 0x00
1336 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001337 name = "max6646";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001339 } else
1340 if (address == 0x4C
1341 && man_id == 0x5C) { /* Winbond/Nuvoton */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001342 if ((config1 & 0x2A) == 0x00
1343 && (config2 & 0xF8) == 0x00) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001344 if (chip_id == 0x01 /* W83L771W/G */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001345 && convrate <= 0x09) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001346 name = "w83l771";
1347 } else
1348 if ((chip_id & 0xFE) == 0x10 /* W83L771AWG/ASG */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001349 && convrate <= 0x08) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001350 name = "w83l771";
1351 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001352 }
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001353 } else
Jean Delvare6d101c52011-07-24 20:36:15 +02001354 if (address >= 0x48 && address <= 0x4F
1355 && man_id == 0xA1) { /* NXP Semiconductor/Philips */
Jean Delvare6d101c52011-07-24 20:36:15 +02001356 if (chip_id == 0x00
Jean Delvareb2589ab2011-11-04 12:00:47 +01001357 && (config1 & 0x2A) == 0x00
1358 && (config2 & 0xFE) == 0x00
1359 && convrate <= 0x09) {
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001360 name = "sa56004";
1361 }
Guenter Roeckae544f62012-03-23 10:02:18 +01001362 } else
1363 if ((address == 0x4C || address == 0x4D)
1364 && man_id == 0x47) { /* GMT */
1365 if (chip_id == 0x01 /* G781 */
1366 && (config1 & 0x3F) == 0x00
1367 && convrate <= 0x08)
1368 name = "g781";
Wei Ni1daaceb2013-11-15 10:40:39 +01001369 } else
1370 if (address == 0x4C
1371 && man_id == 0x55) { /* Texas Instruments */
1372 int local_ext;
1373
1374 local_ext = i2c_smbus_read_byte_data(client,
1375 TMP451_REG_R_LOCAL_TEMPL);
1376
1377 if (chip_id == 0x00 /* TMP451 */
1378 && (config1 & 0x1B) == 0x00
1379 && convrate <= 0x09
1380 && (local_ext & 0x0F) == 0x00)
1381 name = "tmp451";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001382 }
1383
Jean Delvare8f2fa772009-12-09 20:35:53 +01001384 if (!name) { /* identification failed */
1385 dev_dbg(&adapter->dev,
1386 "Unsupported chip at 0x%02x (man_id=0x%02X, "
1387 "chip_id=0x%02X)\n", address, man_id, chip_id);
1388 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001389 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001390
Jean Delvare9b0e8522008-07-16 19:30:15 +02001391 strlcpy(info->type, name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392
Jean Delvare9b0e8522008-07-16 19:30:15 +02001393 return 0;
1394}
1395
Guenter Roeckb6fc1ba2010-10-28 20:31:43 +02001396static void lm90_remove_files(struct i2c_client *client, struct lm90_data *data)
1397{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001398 struct device *dev = &client->dev;
1399
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001400 if (data->flags & LM90_HAVE_TEMP3)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001401 sysfs_remove_group(&dev->kobj, &lm90_temp3_group);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001402 if (data->flags & LM90_HAVE_EMERGENCY_ALARM)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001403 sysfs_remove_group(&dev->kobj, &lm90_emergency_alarm_group);
Guenter Roeck69487082010-10-28 20:31:43 +02001404 if (data->flags & LM90_HAVE_EMERGENCY)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001405 sysfs_remove_group(&dev->kobj, &lm90_emergency_group);
Guenter Roeckb6fc1ba2010-10-28 20:31:43 +02001406 if (data->flags & LM90_HAVE_OFFSET)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001407 device_remove_file(dev, &sensor_dev_attr_temp2_offset.dev_attr);
1408 device_remove_file(dev, &dev_attr_pec);
1409 sysfs_remove_group(&dev->kobj, &lm90_group);
Guenter Roeckb6fc1ba2010-10-28 20:31:43 +02001410}
1411
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001412static void lm90_restore_conf(struct i2c_client *client, struct lm90_data *data)
1413{
1414 /* Restore initial configuration */
1415 i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE,
1416 data->convrate_orig);
1417 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
1418 data->config_orig);
1419}
1420
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001421static void lm90_init_client(struct i2c_client *client)
1422{
Guenter Roeck0c01b642010-10-28 20:31:44 +02001423 u8 config, convrate;
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001424 struct lm90_data *data = i2c_get_clientdata(client);
1425
Guenter Roeck0c01b642010-10-28 20:31:44 +02001426 if (lm90_read_reg(client, LM90_REG_R_CONVRATE, &convrate) < 0) {
1427 dev_warn(&client->dev, "Failed to read convrate register!\n");
1428 convrate = LM90_DEF_CONVRATE_RVAL;
1429 }
1430 data->convrate_orig = convrate;
1431
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001432 /*
1433 * Start the conversions.
1434 */
Guenter Roeck0c01b642010-10-28 20:31:44 +02001435 lm90_set_convrate(client, data, 500); /* 500ms; 2Hz conversion rate */
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001436 if (lm90_read_reg(client, LM90_REG_R_CONFIG1, &config) < 0) {
1437 dev_warn(&client->dev, "Initialization failed!\n");
1438 return;
1439 }
1440 data->config_orig = config;
1441
1442 /* Check Temperature Range Select */
Wei Ni1daaceb2013-11-15 10:40:39 +01001443 if (data->kind == adt7461 || data->kind == tmp451) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001444 if (config & 0x04)
1445 data->flags |= LM90_FLAG_ADT7461_EXT;
1446 }
1447
1448 /*
1449 * Put MAX6680/MAX8881 into extended resolution (bit 0x10,
1450 * 0.125 degree resolution) and range (0x08, extend range
1451 * to -64 degree) mode for the remote temperature sensor.
1452 */
1453 if (data->kind == max6680)
1454 config |= 0x18;
1455
1456 /*
1457 * Select external channel 0 for max6695/96
1458 */
1459 if (data->kind == max6696)
1460 config &= ~0x08;
1461
1462 config &= 0xBF; /* run */
1463 if (config != data->config_orig) /* Only write if changed */
1464 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1, config);
1465}
1466
Wei Ni072de492013-11-15 10:40:38 +01001467static bool lm90_is_tripped(struct i2c_client *client, u16 *status)
1468{
1469 struct lm90_data *data = i2c_get_clientdata(client);
1470 u8 st, st2 = 0;
1471
1472 lm90_read_reg(client, LM90_REG_R_STATUS, &st);
1473
1474 if (data->kind == max6696)
1475 lm90_read_reg(client, MAX6696_REG_R_STATUS2, &st2);
1476
1477 *status = st | (st2 << 8);
1478
1479 if ((st & 0x7f) == 0 && (st2 & 0xfe) == 0)
1480 return false;
1481
1482 if ((st & (LM90_STATUS_LLOW | LM90_STATUS_LHIGH | LM90_STATUS_LTHRM)) ||
1483 (st2 & MAX6696_STATUS2_LOT2))
1484 dev_warn(&client->dev,
1485 "temp%d out of range, please check!\n", 1);
1486 if ((st & (LM90_STATUS_RLOW | LM90_STATUS_RHIGH | LM90_STATUS_RTHRM)) ||
1487 (st2 & MAX6696_STATUS2_ROT2))
1488 dev_warn(&client->dev,
1489 "temp%d out of range, please check!\n", 2);
1490 if (st & LM90_STATUS_ROPEN)
1491 dev_warn(&client->dev,
1492 "temp%d diode open, please check!\n", 2);
1493 if (st2 & (MAX6696_STATUS2_R2LOW | MAX6696_STATUS2_R2HIGH |
1494 MAX6696_STATUS2_R2THRM | MAX6696_STATUS2_R2OT2))
1495 dev_warn(&client->dev,
1496 "temp%d out of range, please check!\n", 3);
1497 if (st2 & MAX6696_STATUS2_R2OPEN)
1498 dev_warn(&client->dev,
1499 "temp%d diode open, please check!\n", 3);
1500
1501 return true;
1502}
1503
Wei Ni109b1282013-11-15 10:40:39 +01001504static irqreturn_t lm90_irq_thread(int irq, void *dev_id)
1505{
1506 struct i2c_client *client = dev_id;
1507 u16 status;
1508
1509 if (lm90_is_tripped(client, &status))
1510 return IRQ_HANDLED;
1511 else
1512 return IRQ_NONE;
1513}
1514
Jean Delvareb2589ab2011-11-04 12:00:47 +01001515static int lm90_probe(struct i2c_client *client,
Jean Delvare9b0e8522008-07-16 19:30:15 +02001516 const struct i2c_device_id *id)
1517{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001518 struct device *dev = &client->dev;
1519 struct i2c_adapter *adapter = to_i2c_adapter(dev->parent);
Jean Delvare9b0e8522008-07-16 19:30:15 +02001520 struct lm90_data *data;
Wei Ni3e0f9642013-11-15 10:40:39 +01001521 struct regulator *regulator;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001522 int err;
1523
Wei Ni3e0f9642013-11-15 10:40:39 +01001524 regulator = devm_regulator_get(dev, "vcc");
1525 if (IS_ERR(regulator))
1526 return PTR_ERR(regulator);
1527
1528 err = regulator_enable(regulator);
1529 if (err < 0) {
1530 dev_err(&client->dev,
1531 "Failed to enable regulator: %d\n", err);
1532 return err;
1533 }
1534
Guenter Roeck20f426f2012-06-02 09:58:10 -07001535 data = devm_kzalloc(&client->dev, sizeof(struct lm90_data), GFP_KERNEL);
1536 if (!data)
1537 return -ENOMEM;
1538
Jean Delvareb2589ab2011-11-04 12:00:47 +01001539 i2c_set_clientdata(client, data);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001540 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Wei Ni3e0f9642013-11-15 10:40:39 +01001542 data->regulator = regulator;
1543
Jean Delvare9b0e8522008-07-16 19:30:15 +02001544 /* Set the device type */
1545 data->kind = id->driver_data;
1546 if (data->kind == adm1032) {
1547 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
Jean Delvareb2589ab2011-11-04 12:00:47 +01001548 client->flags &= ~I2C_CLIENT_PEC;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001549 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001551 /*
1552 * Different devices have different alarm bits triggering the
1553 * ALERT# output
1554 */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001555 data->alert_alarms = lm90_params[data->kind].alert_alarms;
Jean Delvare53de3342010-03-05 22:17:15 +01001556
Guenter Roeck88073bb2010-10-28 20:31:43 +02001557 /* Set chip capabilities */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001558 data->flags = lm90_params[data->kind].flags;
Jean Delvarea095f682011-07-27 23:22:25 -07001559 data->reg_local_ext = lm90_params[data->kind].reg_local_ext;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001560
Guenter Roeck0c01b642010-10-28 20:31:44 +02001561 /* Set maximum conversion rate */
1562 data->max_convrate = lm90_params[data->kind].max_convrate;
1563
Linus Torvalds1da177e2005-04-16 15:20:36 -07001564 /* Initialize the LM90 chip */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001565 lm90_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001566
1567 /* Register sysfs hooks */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001568 err = sysfs_create_group(&dev->kobj, &lm90_group);
Guenter Roeck11e57812010-10-28 20:31:42 +02001569 if (err)
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001570 goto exit_restore;
Jean Delvareb2589ab2011-11-04 12:00:47 +01001571 if (client->flags & I2C_CLIENT_PEC) {
1572 err = device_create_file(dev, &dev_attr_pec);
Guenter Roeck11e57812010-10-28 20:31:42 +02001573 if (err)
Jean Delvare0e39e012006-09-24 21:16:40 +02001574 goto exit_remove_files;
1575 }
Guenter Roeck88073bb2010-10-28 20:31:43 +02001576 if (data->flags & LM90_HAVE_OFFSET) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001577 err = device_create_file(dev,
Guenter Roeck11e57812010-10-28 20:31:42 +02001578 &sensor_dev_attr_temp2_offset.dev_attr);
1579 if (err)
Jean Delvare69f2f962007-09-05 14:15:37 +02001580 goto exit_remove_files;
1581 }
Guenter Roeck69487082010-10-28 20:31:43 +02001582 if (data->flags & LM90_HAVE_EMERGENCY) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001583 err = sysfs_create_group(&dev->kobj, &lm90_emergency_group);
Guenter Roeck69487082010-10-28 20:31:43 +02001584 if (err)
1585 goto exit_remove_files;
1586 }
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001587 if (data->flags & LM90_HAVE_EMERGENCY_ALARM) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001588 err = sysfs_create_group(&dev->kobj,
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001589 &lm90_emergency_alarm_group);
1590 if (err)
1591 goto exit_remove_files;
1592 }
1593 if (data->flags & LM90_HAVE_TEMP3) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001594 err = sysfs_create_group(&dev->kobj, &lm90_temp3_group);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001595 if (err)
1596 goto exit_remove_files;
1597 }
Jean Delvare0e39e012006-09-24 21:16:40 +02001598
Jean Delvareb2589ab2011-11-04 12:00:47 +01001599 data->hwmon_dev = hwmon_device_register(dev);
Tony Jones1beeffe2007-08-20 13:46:20 -07001600 if (IS_ERR(data->hwmon_dev)) {
1601 err = PTR_ERR(data->hwmon_dev);
Jean Delvare0e39e012006-09-24 21:16:40 +02001602 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001603 }
1604
Wei Ni109b1282013-11-15 10:40:39 +01001605 if (client->irq) {
1606 dev_dbg(dev, "IRQ: %d\n", client->irq);
1607 err = devm_request_threaded_irq(dev, client->irq,
1608 NULL, lm90_irq_thread,
1609 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
1610 "lm90", client);
1611 if (err < 0) {
1612 dev_err(dev, "cannot request IRQ %d\n", client->irq);
1613 goto exit_remove_files;
1614 }
1615 }
1616
Linus Torvalds1da177e2005-04-16 15:20:36 -07001617 return 0;
1618
Jean Delvare0e39e012006-09-24 21:16:40 +02001619exit_remove_files:
Jean Delvareb2589ab2011-11-04 12:00:47 +01001620 lm90_remove_files(client, data);
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001621exit_restore:
1622 lm90_restore_conf(client, data);
Wei Ni3e0f9642013-11-15 10:40:39 +01001623 regulator_disable(data->regulator);
1624
Linus Torvalds1da177e2005-04-16 15:20:36 -07001625 return err;
1626}
1627
Jean Delvare9b0e8522008-07-16 19:30:15 +02001628static int lm90_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629{
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001630 struct lm90_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001631
Tony Jones1beeffe2007-08-20 13:46:20 -07001632 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeckb6fc1ba2010-10-28 20:31:43 +02001633 lm90_remove_files(client, data);
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001634 lm90_restore_conf(client, data);
Wei Ni3e0f9642013-11-15 10:40:39 +01001635 regulator_disable(data->regulator);
Jean Delvare95238362010-03-05 22:17:14 +01001636
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 return 0;
1638}
1639
Jean Delvare53de3342010-03-05 22:17:15 +01001640static void lm90_alert(struct i2c_client *client, unsigned int flag)
1641{
Wei Ni072de492013-11-15 10:40:38 +01001642 u16 alarms;
Jean Delvare53de3342010-03-05 22:17:15 +01001643
Wei Ni072de492013-11-15 10:40:38 +01001644 if (lm90_is_tripped(client, &alarms)) {
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001645 /*
1646 * Disable ALERT# output, because these chips don't implement
1647 * SMBus alert correctly; they should only hold the alert line
1648 * low briefly.
1649 */
Wei Ni072de492013-11-15 10:40:38 +01001650 struct lm90_data *data = i2c_get_clientdata(client);
1651
Guenter Roeck11793242010-10-28 20:31:44 +02001652 if ((data->flags & LM90_HAVE_BROKEN_ALERT)
Jean Delvare53de3342010-03-05 22:17:15 +01001653 && (alarms & data->alert_alarms)) {
Wei Ni072de492013-11-15 10:40:38 +01001654 u8 config;
Jean Delvare53de3342010-03-05 22:17:15 +01001655 dev_dbg(&client->dev, "Disabling ALERT#\n");
1656 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
1657 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
1658 config | 0x80);
1659 }
Wei Ni072de492013-11-15 10:40:38 +01001660 } else {
1661 dev_info(&client->dev, "Everything OK\n");
Jean Delvare53de3342010-03-05 22:17:15 +01001662 }
1663}
1664
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001665static struct i2c_driver lm90_driver = {
1666 .class = I2C_CLASS_HWMON,
1667 .driver = {
1668 .name = "lm90",
1669 },
1670 .probe = lm90_probe,
1671 .remove = lm90_remove,
1672 .alert = lm90_alert,
1673 .id_table = lm90_id,
1674 .detect = lm90_detect,
1675 .address_list = normal_i2c,
1676};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001677
Axel Linf0967ee2012-01-20 15:38:18 +08001678module_i2c_driver(lm90_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001679
1680MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
1681MODULE_DESCRIPTION("LM90/ADM1032 driver");
1682MODULE_LICENSE("GPL");