blob: 03735c4908916c78a598a962055d92ec3a652e9e [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
99/*
100 * Addresses to scan
101 * Address is fully defined internally and cannot be changed except for
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400102 * MAX6659, MAX6680 and MAX6681.
Guenter Roeck5a4e5e62011-04-29 16:33:35 +0200103 * LM86, LM89, LM90, LM99, ADM1032, ADM1032-1, ADT7461, ADT7461A, MAX6649,
104 * MAX6657, MAX6658, NCT1008 and W83L771 have address 0x4c.
105 * ADM1032-2, ADT7461-2, ADT7461A-2, LM89-1, LM99-1, MAX6646, and NCT1008D
106 * have address 0x4d.
Ben Hutchings271dabf2008-10-17 17:51:11 +0200107 * MAX6647 has address 0x4e.
Guenter Roeck13c84952010-10-28 20:31:43 +0200108 * MAX6659 can have address 0x4c, 0x4d or 0x4e.
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400109 * MAX6680 and MAX6681 can have address 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b,
110 * 0x4c, 0x4d or 0x4e.
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000111 * SA56004 can have address 0x48 through 0x4F.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 */
113
Mark M. Hoffman25e9c862008-02-17 22:28:03 -0500114static const unsigned short normal_i2c[] = {
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000115 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x48, 0x49, 0x4a, 0x4b, 0x4c,
116 0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Guenter Roeck13c84952010-10-28 20:31:43 +0200118enum chips { lm90, adm1032, lm99, lm86, max6657, max6659, adt7461, max6680,
Wei Ni1daaceb2013-11-15 10:40:39 +0100119 max6646, w83l771, max6696, sa56004, g781, tmp451 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700120
121/*
122 * The LM90 registers
123 */
124
125#define LM90_REG_R_MAN_ID 0xFE
126#define LM90_REG_R_CHIP_ID 0xFF
127#define LM90_REG_R_CONFIG1 0x03
128#define LM90_REG_W_CONFIG1 0x09
129#define LM90_REG_R_CONFIG2 0xBF
130#define LM90_REG_W_CONFIG2 0xBF
131#define LM90_REG_R_CONVRATE 0x04
132#define LM90_REG_W_CONVRATE 0x0A
133#define LM90_REG_R_STATUS 0x02
134#define LM90_REG_R_LOCAL_TEMP 0x00
135#define LM90_REG_R_LOCAL_HIGH 0x05
136#define LM90_REG_W_LOCAL_HIGH 0x0B
137#define LM90_REG_R_LOCAL_LOW 0x06
138#define LM90_REG_W_LOCAL_LOW 0x0C
139#define LM90_REG_R_LOCAL_CRIT 0x20
140#define LM90_REG_W_LOCAL_CRIT 0x20
141#define LM90_REG_R_REMOTE_TEMPH 0x01
142#define LM90_REG_R_REMOTE_TEMPL 0x10
143#define LM90_REG_R_REMOTE_OFFSH 0x11
144#define LM90_REG_W_REMOTE_OFFSH 0x11
145#define LM90_REG_R_REMOTE_OFFSL 0x12
146#define LM90_REG_W_REMOTE_OFFSL 0x12
147#define LM90_REG_R_REMOTE_HIGHH 0x07
148#define LM90_REG_W_REMOTE_HIGHH 0x0D
149#define LM90_REG_R_REMOTE_HIGHL 0x13
150#define LM90_REG_W_REMOTE_HIGHL 0x13
151#define LM90_REG_R_REMOTE_LOWH 0x08
152#define LM90_REG_W_REMOTE_LOWH 0x0E
153#define LM90_REG_R_REMOTE_LOWL 0x14
154#define LM90_REG_W_REMOTE_LOWL 0x14
155#define LM90_REG_R_REMOTE_CRIT 0x19
156#define LM90_REG_W_REMOTE_CRIT 0x19
157#define LM90_REG_R_TCRIT_HYST 0x21
158#define LM90_REG_W_TCRIT_HYST 0x21
159
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200160/* MAX6646/6647/6649/6657/6658/6659/6695/6696 registers */
Jean Delvaref65e1702008-10-17 17:51:09 +0200161
162#define MAX6657_REG_R_LOCAL_TEMPL 0x11
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200163#define MAX6696_REG_R_STATUS2 0x12
Guenter Roeck69487082010-10-28 20:31:43 +0200164#define MAX6659_REG_R_REMOTE_EMERG 0x16
165#define MAX6659_REG_W_REMOTE_EMERG 0x16
166#define MAX6659_REG_R_LOCAL_EMERG 0x17
167#define MAX6659_REG_W_LOCAL_EMERG 0x17
Jean Delvaref65e1702008-10-17 17:51:09 +0200168
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000169/* SA56004 registers */
170
171#define SA56004_REG_R_LOCAL_TEMPL 0x22
172
Guenter Roeck0c01b642010-10-28 20:31:44 +0200173#define LM90_DEF_CONVRATE_RVAL 6 /* Def conversion rate register value */
174#define LM90_MAX_CONVRATE_MS 16000 /* Maximum conversion rate in ms */
175
Wei Ni1daaceb2013-11-15 10:40:39 +0100176/* TMP451 registers */
177#define TMP451_REG_R_LOCAL_TEMPL 0x15
178
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179/*
Nate Case23b2d472008-10-17 17:51:10 +0200180 * Device flags
181 */
Guenter Roeck88073bb2010-10-28 20:31:43 +0200182#define LM90_FLAG_ADT7461_EXT (1 << 0) /* ADT7461 extended mode */
183/* Device features */
184#define LM90_HAVE_OFFSET (1 << 1) /* temperature offset register */
Guenter Roeck88073bb2010-10-28 20:31:43 +0200185#define LM90_HAVE_REM_LIMIT_EXT (1 << 3) /* extended remote limit */
Guenter Roeck69487082010-10-28 20:31:43 +0200186#define LM90_HAVE_EMERGENCY (1 << 4) /* 3rd upper (emergency) limit */
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200187#define LM90_HAVE_EMERGENCY_ALARM (1 << 5)/* emergency alarm */
188#define LM90_HAVE_TEMP3 (1 << 6) /* 3rd temperature sensor */
Guenter Roeck11793242010-10-28 20:31:44 +0200189#define LM90_HAVE_BROKEN_ALERT (1 << 7) /* Broken alert */
Nate Case23b2d472008-10-17 17:51:10 +0200190
Wei Ni072de492013-11-15 10:40:38 +0100191/* LM90 status */
192#define LM90_STATUS_LTHRM (1 << 0) /* local THERM limit tripped */
193#define LM90_STATUS_RTHRM (1 << 1) /* remote THERM limit tripped */
194#define LM90_STATUS_ROPEN (1 << 2) /* remote is an open circuit */
195#define LM90_STATUS_RLOW (1 << 3) /* remote low temp limit tripped */
196#define LM90_STATUS_RHIGH (1 << 4) /* remote high temp limit tripped */
197#define LM90_STATUS_LLOW (1 << 5) /* local low temp limit tripped */
198#define LM90_STATUS_LHIGH (1 << 6) /* local high temp limit tripped */
199
200#define MAX6696_STATUS2_R2THRM (1 << 1) /* remote2 THERM limit tripped */
201#define MAX6696_STATUS2_R2OPEN (1 << 2) /* remote2 is an open circuit */
202#define MAX6696_STATUS2_R2LOW (1 << 3) /* remote2 low temp limit tripped */
203#define MAX6696_STATUS2_R2HIGH (1 << 4) /* remote2 high temp limit tripped */
204#define MAX6696_STATUS2_ROT2 (1 << 5) /* remote emergency limit tripped */
205#define MAX6696_STATUS2_R2OT2 (1 << 6) /* remote2 emergency limit tripped */
206#define MAX6696_STATUS2_LOT2 (1 << 7) /* local emergency limit tripped */
207
Nate Case23b2d472008-10-17 17:51:10 +0200208/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 * Driver data (common to all clients)
210 */
211
Jean Delvare9b0e8522008-07-16 19:30:15 +0200212static const struct i2c_device_id lm90_id[] = {
213 { "adm1032", adm1032 },
214 { "adt7461", adt7461 },
Guenter Roeck5a4e5e62011-04-29 16:33:35 +0200215 { "adt7461a", adt7461 },
Guenter Roeckae544f62012-03-23 10:02:18 +0100216 { "g781", g781 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200217 { "lm90", lm90 },
218 { "lm86", lm86 },
Jean Delvare97ae60b2008-10-26 17:04:39 +0100219 { "lm89", lm86 },
220 { "lm99", lm99 },
Ben Hutchings271dabf2008-10-17 17:51:11 +0200221 { "max6646", max6646 },
222 { "max6647", max6646 },
223 { "max6649", max6646 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200224 { "max6657", max6657 },
225 { "max6658", max6657 },
Guenter Roeck13c84952010-10-28 20:31:43 +0200226 { "max6659", max6659 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200227 { "max6680", max6680 },
228 { "max6681", max6680 },
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200229 { "max6695", max6696 },
230 { "max6696", max6696 },
Guenter Roeck5a4e5e62011-04-29 16:33:35 +0200231 { "nct1008", adt7461 },
Jean Delvare6771ea12010-03-05 22:17:13 +0100232 { "w83l771", w83l771 },
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000233 { "sa56004", sa56004 },
Wei Ni1daaceb2013-11-15 10:40:39 +0100234 { "tmp451", tmp451 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200235 { }
236};
237MODULE_DEVICE_TABLE(i2c, lm90_id);
238
Linus Torvalds1da177e2005-04-16 15:20:36 -0700239/*
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200240 * chip type specific parameters
241 */
242struct lm90_params {
243 u32 flags; /* Capabilities */
244 u16 alert_alarms; /* Which alarm bits trigger ALERT# */
245 /* Upper 8 bits for max6695/96 */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200246 u8 max_convrate; /* Maximum conversion rate register value */
Jean Delvarea095f682011-07-27 23:22:25 -0700247 u8 reg_local_ext; /* Extended local temp register (optional) */
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200248};
249
250static const struct lm90_params lm90_params[] = {
251 [adm1032] = {
Guenter Roeck11793242010-10-28 20:31:44 +0200252 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
253 | LM90_HAVE_BROKEN_ALERT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200254 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200255 .max_convrate = 10,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200256 },
257 [adt7461] = {
Guenter Roeck11793242010-10-28 20:31:44 +0200258 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
259 | LM90_HAVE_BROKEN_ALERT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200260 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200261 .max_convrate = 10,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200262 },
Guenter Roeckae544f62012-03-23 10:02:18 +0100263 [g781] = {
264 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
265 | LM90_HAVE_BROKEN_ALERT,
266 .alert_alarms = 0x7c,
267 .max_convrate = 8,
268 },
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200269 [lm86] = {
270 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
271 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200272 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200273 },
274 [lm90] = {
275 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
276 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200277 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200278 },
279 [lm99] = {
280 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
281 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200282 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200283 },
284 [max6646] = {
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200285 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200286 .max_convrate = 6,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000287 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200288 },
289 [max6657] = {
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200290 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200291 .max_convrate = 8,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000292 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200293 },
294 [max6659] = {
Jean Delvarea095f682011-07-27 23:22:25 -0700295 .flags = LM90_HAVE_EMERGENCY,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200296 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200297 .max_convrate = 8,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000298 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200299 },
300 [max6680] = {
301 .flags = LM90_HAVE_OFFSET,
302 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200303 .max_convrate = 7,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200304 },
305 [max6696] = {
Jean Delvarea095f682011-07-27 23:22:25 -0700306 .flags = LM90_HAVE_EMERGENCY
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200307 | LM90_HAVE_EMERGENCY_ALARM | LM90_HAVE_TEMP3,
Guenter Roecke41fae2b2013-11-15 10:40:38 +0100308 .alert_alarms = 0x1c7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200309 .max_convrate = 6,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000310 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200311 },
312 [w83l771] = {
313 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
314 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200315 .max_convrate = 8,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200316 },
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000317 [sa56004] = {
Jean Delvarea095f682011-07-27 23:22:25 -0700318 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000319 .alert_alarms = 0x7b,
320 .max_convrate = 9,
321 .reg_local_ext = SA56004_REG_R_LOCAL_TEMPL,
322 },
Wei Ni1daaceb2013-11-15 10:40:39 +0100323 [tmp451] = {
324 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
325 | LM90_HAVE_BROKEN_ALERT,
326 .alert_alarms = 0x7c,
327 .max_convrate = 9,
328 .reg_local_ext = TMP451_REG_R_LOCAL_TEMPL,
329 }
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200330};
331
332/*
Wei Ni40465d92013-11-15 10:40:39 +0100333 * TEMP8 register index
334 */
335enum lm90_temp8_reg_index {
336 LOCAL_LOW = 0,
337 LOCAL_HIGH,
338 LOCAL_CRIT,
339 REMOTE_CRIT,
340 LOCAL_EMERG, /* max6659 and max6695/96 */
341 REMOTE_EMERG, /* max6659 and max6695/96 */
342 REMOTE2_CRIT, /* max6695/96 only */
343 REMOTE2_EMERG, /* max6695/96 only */
344 TEMP8_REG_NUM
345};
346
347/*
348 * TEMP11 register index
349 */
350enum lm90_temp11_reg_index {
351 REMOTE_TEMP = 0,
352 REMOTE_LOW,
353 REMOTE_HIGH,
354 REMOTE_OFFSET, /* except max6646, max6657/58/59, and max6695/96 */
355 LOCAL_TEMP,
356 REMOTE2_TEMP, /* max6695/96 only */
357 REMOTE2_LOW, /* max6695/96 only */
358 REMOTE2_HIGH, /* max6695/96 only */
359 TEMP11_REG_NUM
360};
361
362/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363 * Client data (each client gets its own)
364 */
365
366struct lm90_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700367 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100368 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 char valid; /* zero until following fields are valid */
370 unsigned long last_updated; /* in jiffies */
371 int kind;
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200372 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373
Guenter Roeck0c01b642010-10-28 20:31:44 +0200374 int update_interval; /* in milliseconds */
375
Jean Delvare95238362010-03-05 22:17:14 +0100376 u8 config_orig; /* Original configuration register value */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200377 u8 convrate_orig; /* Original conversion rate register value */
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200378 u16 alert_alarms; /* Which alarm bits trigger ALERT# */
379 /* Upper 8 bits for max6695/96 */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200380 u8 max_convrate; /* Maximum conversion rate */
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000381 u8 reg_local_ext; /* local extension register offset */
Jean Delvare95238362010-03-05 22:17:14 +0100382
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 /* registers values */
Wei Ni40465d92013-11-15 10:40:39 +0100384 s8 temp8[TEMP8_REG_NUM];
385 s16 temp11[TEMP11_REG_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 u8 temp_hyst;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200387 u16 alarms; /* bitvector (upper 8 bits for max6695/96) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388};
389
390/*
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200391 * Support functions
392 */
393
394/*
395 * The ADM1032 supports PEC but not on write byte transactions, so we need
396 * to explicitly ask for a transaction without PEC.
397 */
398static inline s32 adm1032_write_byte(struct i2c_client *client, u8 value)
399{
400 return i2c_smbus_xfer(client->adapter, client->addr,
401 client->flags & ~I2C_CLIENT_PEC,
402 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
403}
404
405/*
406 * It is assumed that client->update_lock is held (unless we are in
407 * detection or initialization steps). This matters when PEC is enabled,
408 * because we don't want the address pointer to change between the write
409 * byte and the read byte transactions.
410 */
411static int lm90_read_reg(struct i2c_client *client, u8 reg, u8 *value)
412{
413 int err;
414
415 if (client->flags & I2C_CLIENT_PEC) {
416 err = adm1032_write_byte(client, reg);
417 if (err >= 0)
418 err = i2c_smbus_read_byte(client);
419 } else
420 err = i2c_smbus_read_byte_data(client, reg);
421
422 if (err < 0) {
423 dev_warn(&client->dev, "Register %#02x read failed (%d)\n",
424 reg, err);
425 return err;
426 }
427 *value = err;
428
429 return 0;
430}
431
432static int lm90_read16(struct i2c_client *client, u8 regh, u8 regl, u16 *value)
433{
434 int err;
435 u8 oldh, newh, l;
436
437 /*
438 * There is a trick here. We have to read two registers to have the
439 * sensor temperature, but we have to beware a conversion could occur
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300440 * between the readings. The datasheet says we should either use
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200441 * the one-shot conversion register, which we don't want to do
442 * (disables hardware monitoring) or monitor the busy bit, which is
443 * impossible (we can't read the values and monitor that bit at the
444 * exact same time). So the solution used here is to read the high
445 * byte once, then the low byte, then the high byte again. If the new
446 * high byte matches the old one, then we have a valid reading. Else
447 * we have to read the low byte again, and now we believe we have a
448 * correct reading.
449 */
450 if ((err = lm90_read_reg(client, regh, &oldh))
451 || (err = lm90_read_reg(client, regl, &l))
452 || (err = lm90_read_reg(client, regh, &newh)))
453 return err;
454 if (oldh != newh) {
455 err = lm90_read_reg(client, regl, &l);
456 if (err)
457 return err;
458 }
459 *value = (newh << 8) | l;
460
461 return 0;
462}
463
464/*
465 * client->update_lock must be held when calling this function (unless we are
466 * in detection or initialization steps), and while a remote channel other
467 * than channel 0 is selected. Also, calling code must make sure to re-select
468 * external channel 0 before releasing the lock. This is necessary because
469 * various registers have different meanings as a result of selecting a
470 * non-default remote channel.
471 */
472static inline void lm90_select_remote_channel(struct i2c_client *client,
473 struct lm90_data *data,
474 int channel)
475{
476 u8 config;
477
478 if (data->kind == max6696) {
479 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
480 config &= ~0x08;
481 if (channel)
482 config |= 0x08;
483 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
484 config);
485 }
486}
487
Guenter Roeck0c01b642010-10-28 20:31:44 +0200488/*
489 * Set conversion rate.
490 * client->update_lock must be held when calling this function (unless we are
491 * in detection or initialization steps).
492 */
493static void lm90_set_convrate(struct i2c_client *client, struct lm90_data *data,
494 unsigned int interval)
495{
496 int i;
497 unsigned int update_interval;
498
499 /* Shift calculations to avoid rounding errors */
500 interval <<= 6;
501
502 /* find the nearest update rate */
503 for (i = 0, update_interval = LM90_MAX_CONVRATE_MS << 6;
504 i < data->max_convrate; i++, update_interval >>= 1)
505 if (interval >= update_interval * 3 / 4)
506 break;
507
508 i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE, i);
509 data->update_interval = DIV_ROUND_CLOSEST(update_interval, 64);
510}
511
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200512static struct lm90_data *lm90_update_device(struct device *dev)
513{
514 struct i2c_client *client = to_i2c_client(dev);
515 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200516 unsigned long next_update;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200517
518 mutex_lock(&data->update_lock);
519
Jean Delvare78c2c2f2013-07-08 14:18:24 +0200520 next_update = data->last_updated +
521 msecs_to_jiffies(data->update_interval);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200522 if (time_after(jiffies, next_update) || !data->valid) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200523 u8 h, l;
524 u8 alarms;
525
526 dev_dbg(&client->dev, "Updating lm90 data.\n");
Wei Ni40465d92013-11-15 10:40:39 +0100527 lm90_read_reg(client, LM90_REG_R_LOCAL_LOW,
528 &data->temp8[LOCAL_LOW]);
529 lm90_read_reg(client, LM90_REG_R_LOCAL_HIGH,
530 &data->temp8[LOCAL_HIGH]);
531 lm90_read_reg(client, LM90_REG_R_LOCAL_CRIT,
532 &data->temp8[LOCAL_CRIT]);
533 lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT,
534 &data->temp8[REMOTE_CRIT]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200535 lm90_read_reg(client, LM90_REG_R_TCRIT_HYST, &data->temp_hyst);
536
Jean Delvarea095f682011-07-27 23:22:25 -0700537 if (data->reg_local_ext) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200538 lm90_read16(client, LM90_REG_R_LOCAL_TEMP,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000539 data->reg_local_ext,
Wei Ni40465d92013-11-15 10:40:39 +0100540 &data->temp11[LOCAL_TEMP]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200541 } else {
542 if (lm90_read_reg(client, LM90_REG_R_LOCAL_TEMP,
543 &h) == 0)
Wei Ni40465d92013-11-15 10:40:39 +0100544 data->temp11[LOCAL_TEMP] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200545 }
546 lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
Wei Ni40465d92013-11-15 10:40:39 +0100547 LM90_REG_R_REMOTE_TEMPL,
548 &data->temp11[REMOTE_TEMP]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200549
550 if (lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH, &h) == 0) {
Wei Ni40465d92013-11-15 10:40:39 +0100551 data->temp11[REMOTE_LOW] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200552 if ((data->flags & LM90_HAVE_REM_LIMIT_EXT)
553 && lm90_read_reg(client, LM90_REG_R_REMOTE_LOWL,
554 &l) == 0)
Wei Ni40465d92013-11-15 10:40:39 +0100555 data->temp11[REMOTE_LOW] |= l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200556 }
557 if (lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH, &h) == 0) {
Wei Ni40465d92013-11-15 10:40:39 +0100558 data->temp11[REMOTE_HIGH] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200559 if ((data->flags & LM90_HAVE_REM_LIMIT_EXT)
560 && lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHL,
561 &l) == 0)
Wei Ni40465d92013-11-15 10:40:39 +0100562 data->temp11[REMOTE_HIGH] |= l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200563 }
564
565 if (data->flags & LM90_HAVE_OFFSET) {
566 if (lm90_read_reg(client, LM90_REG_R_REMOTE_OFFSH,
567 &h) == 0
568 && lm90_read_reg(client, LM90_REG_R_REMOTE_OFFSL,
569 &l) == 0)
Wei Ni40465d92013-11-15 10:40:39 +0100570 data->temp11[REMOTE_OFFSET] = (h << 8) | l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200571 }
572 if (data->flags & LM90_HAVE_EMERGENCY) {
573 lm90_read_reg(client, MAX6659_REG_R_LOCAL_EMERG,
Wei Ni40465d92013-11-15 10:40:39 +0100574 &data->temp8[LOCAL_EMERG]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200575 lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG,
Wei Ni40465d92013-11-15 10:40:39 +0100576 &data->temp8[REMOTE_EMERG]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200577 }
578 lm90_read_reg(client, LM90_REG_R_STATUS, &alarms);
579 data->alarms = alarms; /* save as 16 bit value */
580
581 if (data->kind == max6696) {
582 lm90_select_remote_channel(client, data, 1);
583 lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT,
Wei Ni40465d92013-11-15 10:40:39 +0100584 &data->temp8[REMOTE2_CRIT]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200585 lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG,
Wei Ni40465d92013-11-15 10:40:39 +0100586 &data->temp8[REMOTE2_EMERG]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200587 lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
Wei Ni40465d92013-11-15 10:40:39 +0100588 LM90_REG_R_REMOTE_TEMPL,
589 &data->temp11[REMOTE2_TEMP]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200590 if (!lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH, &h))
Wei Ni40465d92013-11-15 10:40:39 +0100591 data->temp11[REMOTE2_LOW] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200592 if (!lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH, &h))
Wei Ni40465d92013-11-15 10:40:39 +0100593 data->temp11[REMOTE2_HIGH] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200594 lm90_select_remote_channel(client, data, 0);
595
596 if (!lm90_read_reg(client, MAX6696_REG_R_STATUS2,
597 &alarms))
598 data->alarms |= alarms << 8;
599 }
600
Guenter Roeckf36ffea2012-03-23 10:02:18 +0100601 /*
602 * Re-enable ALERT# output if it was originally enabled and
603 * relevant alarms are all clear
604 */
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200605 if ((data->config_orig & 0x80) == 0
606 && (data->alarms & data->alert_alarms) == 0) {
607 u8 config;
608
609 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
610 if (config & 0x80) {
611 dev_dbg(&client->dev, "Re-enabling ALERT#\n");
612 i2c_smbus_write_byte_data(client,
613 LM90_REG_W_CONFIG1,
614 config & ~0x80);
615 }
616 }
617
618 data->last_updated = jiffies;
619 data->valid = 1;
620 }
621
622 mutex_unlock(&data->update_lock);
623
624 return data;
625}
626
627/*
Nate Casecea50fe2008-10-17 17:51:10 +0200628 * Conversions
629 * For local temperatures and limits, critical limits and the hysteresis
630 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius.
631 * For remote temperatures and limits, it uses signed 11-bit values with
Ben Hutchings271dabf2008-10-17 17:51:11 +0200632 * LSB = 0.125 degree Celsius, left-justified in 16-bit registers. Some
633 * Maxim chips use unsigned values.
Nate Casecea50fe2008-10-17 17:51:10 +0200634 */
635
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200636static inline int temp_from_s8(s8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200637{
638 return val * 1000;
639}
640
Ben Hutchings271dabf2008-10-17 17:51:11 +0200641static inline int temp_from_u8(u8 val)
642{
643 return val * 1000;
644}
645
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200646static inline int temp_from_s16(s16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200647{
648 return val / 32 * 125;
649}
650
Ben Hutchings271dabf2008-10-17 17:51:11 +0200651static inline int temp_from_u16(u16 val)
652{
653 return val / 32 * 125;
654}
655
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200656static s8 temp_to_s8(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200657{
658 if (val <= -128000)
659 return -128;
660 if (val >= 127000)
661 return 127;
662 if (val < 0)
663 return (val - 500) / 1000;
664 return (val + 500) / 1000;
665}
666
Ben Hutchings271dabf2008-10-17 17:51:11 +0200667static u8 temp_to_u8(long val)
668{
669 if (val <= 0)
670 return 0;
671 if (val >= 255000)
672 return 255;
673 return (val + 500) / 1000;
674}
675
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200676static s16 temp_to_s16(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200677{
678 if (val <= -128000)
679 return 0x8000;
680 if (val >= 127875)
681 return 0x7FE0;
682 if (val < 0)
683 return (val - 62) / 125 * 32;
684 return (val + 62) / 125 * 32;
685}
686
687static u8 hyst_to_reg(long val)
688{
689 if (val <= 0)
690 return 0;
691 if (val >= 30500)
692 return 31;
693 return (val + 500) / 1000;
694}
695
696/*
Nate Case23b2d472008-10-17 17:51:10 +0200697 * ADT7461 in compatibility mode is almost identical to LM90 except that
698 * attempts to write values that are outside the range 0 < temp < 127 are
699 * treated as the boundary value.
700 *
701 * ADT7461 in "extended mode" operation uses unsigned integers offset by
702 * 64 (e.g., 0 -> -64 degC). The range is restricted to -64..191 degC.
Nate Casecea50fe2008-10-17 17:51:10 +0200703 */
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200704static inline int temp_from_u8_adt7461(struct lm90_data *data, u8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200705{
Nate Case23b2d472008-10-17 17:51:10 +0200706 if (data->flags & LM90_FLAG_ADT7461_EXT)
707 return (val - 64) * 1000;
708 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200709 return temp_from_s8(val);
Nate Casecea50fe2008-10-17 17:51:10 +0200710}
711
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200712static inline int temp_from_u16_adt7461(struct lm90_data *data, u16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200713{
Nate Case23b2d472008-10-17 17:51:10 +0200714 if (data->flags & LM90_FLAG_ADT7461_EXT)
715 return (val - 0x4000) / 64 * 250;
716 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200717 return temp_from_s16(val);
Nate Case23b2d472008-10-17 17:51:10 +0200718}
719
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200720static u8 temp_to_u8_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200721{
722 if (data->flags & LM90_FLAG_ADT7461_EXT) {
723 if (val <= -64000)
724 return 0;
725 if (val >= 191000)
726 return 0xFF;
727 return (val + 500 + 64000) / 1000;
728 } else {
729 if (val <= 0)
730 return 0;
731 if (val >= 127000)
732 return 127;
733 return (val + 500) / 1000;
734 }
735}
736
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200737static u16 temp_to_u16_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200738{
739 if (data->flags & LM90_FLAG_ADT7461_EXT) {
740 if (val <= -64000)
741 return 0;
742 if (val >= 191750)
743 return 0xFFC0;
744 return (val + 64000 + 125) / 250 * 64;
745 } else {
746 if (val <= 0)
747 return 0;
748 if (val >= 127750)
749 return 0x7FC0;
750 return (val + 125) / 250 * 64;
751 }
Nate Casecea50fe2008-10-17 17:51:10 +0200752}
753
754/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700755 * Sysfs stuff
756 */
757
Jean Delvare30d73942005-06-05 21:27:28 +0200758static ssize_t show_temp8(struct device *dev, struct device_attribute *devattr,
759 char *buf)
760{
761 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
762 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200763 int temp;
764
Wei Ni1daaceb2013-11-15 10:40:39 +0100765 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200766 temp = temp_from_u8_adt7461(data, data->temp8[attr->index]);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200767 else if (data->kind == max6646)
768 temp = temp_from_u8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200769 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200770 temp = temp_from_s8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200771
Jean Delvare97ae60b2008-10-26 17:04:39 +0100772 /* +16 degrees offset for temp2 for the LM99 */
773 if (data->kind == lm99 && attr->index == 3)
774 temp += 16000;
775
Nate Case23b2d472008-10-17 17:51:10 +0200776 return sprintf(buf, "%d\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778
Jean Delvare30d73942005-06-05 21:27:28 +0200779static ssize_t set_temp8(struct device *dev, struct device_attribute *devattr,
780 const char *buf, size_t count)
781{
Wei Ni40465d92013-11-15 10:40:39 +0100782 static const u8 reg[TEMP8_REG_NUM] = {
Jean Delvare30d73942005-06-05 21:27:28 +0200783 LM90_REG_W_LOCAL_LOW,
784 LM90_REG_W_LOCAL_HIGH,
785 LM90_REG_W_LOCAL_CRIT,
786 LM90_REG_W_REMOTE_CRIT,
Guenter Roeck69487082010-10-28 20:31:43 +0200787 MAX6659_REG_W_LOCAL_EMERG,
788 MAX6659_REG_W_REMOTE_EMERG,
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200789 LM90_REG_W_REMOTE_CRIT,
790 MAX6659_REG_W_REMOTE_EMERG,
Jean Delvare30d73942005-06-05 21:27:28 +0200791 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Jean Delvare30d73942005-06-05 21:27:28 +0200793 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
794 struct i2c_client *client = to_i2c_client(dev);
795 struct lm90_data *data = i2c_get_clientdata(client);
Jean Delvare30d73942005-06-05 21:27:28 +0200796 int nr = attr->index;
Guenter Roeck11e57812010-10-28 20:31:42 +0200797 long val;
798 int err;
799
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100800 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200801 if (err < 0)
802 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803
Jean Delvare97ae60b2008-10-26 17:04:39 +0100804 /* +16 degrees offset for temp2 for the LM99 */
805 if (data->kind == lm99 && attr->index == 3)
806 val -= 16000;
807
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100808 mutex_lock(&data->update_lock);
Wei Ni1daaceb2013-11-15 10:40:39 +0100809 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200810 data->temp8[nr] = temp_to_u8_adt7461(data, val);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200811 else if (data->kind == max6646)
812 data->temp8[nr] = temp_to_u8(val);
Jean Delvare30d73942005-06-05 21:27:28 +0200813 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200814 data->temp8[nr] = temp_to_s8(val);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200815
816 lm90_select_remote_channel(client, data, nr >= 6);
Jean Delvaref65e1702008-10-17 17:51:09 +0200817 i2c_smbus_write_byte_data(client, reg[nr], data->temp8[nr]);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200818 lm90_select_remote_channel(client, data, 0);
819
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100820 mutex_unlock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200821 return count;
822}
823
824static ssize_t show_temp11(struct device *dev, struct device_attribute *devattr,
825 char *buf)
826{
Guenter Roeck96512862010-10-28 20:31:43 +0200827 struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
Jean Delvare30d73942005-06-05 21:27:28 +0200828 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200829 int temp;
830
Wei Ni1daaceb2013-11-15 10:40:39 +0100831 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200832 temp = temp_from_u16_adt7461(data, data->temp11[attr->index]);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200833 else if (data->kind == max6646)
834 temp = temp_from_u16(data->temp11[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200835 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200836 temp = temp_from_s16(data->temp11[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200837
Jean Delvare97ae60b2008-10-26 17:04:39 +0100838 /* +16 degrees offset for temp2 for the LM99 */
839 if (data->kind == lm99 && attr->index <= 2)
840 temp += 16000;
841
Nate Case23b2d472008-10-17 17:51:10 +0200842 return sprintf(buf, "%d\n", temp);
Jean Delvare30d73942005-06-05 21:27:28 +0200843}
844
845static ssize_t set_temp11(struct device *dev, struct device_attribute *devattr,
846 const char *buf, size_t count)
847{
Guenter Roeck96512862010-10-28 20:31:43 +0200848 struct {
849 u8 high;
850 u8 low;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200851 int channel;
852 } reg[5] = {
853 { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL, 0 },
854 { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL, 0 },
855 { LM90_REG_W_REMOTE_OFFSH, LM90_REG_W_REMOTE_OFFSL, 0 },
856 { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL, 1 },
857 { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL, 1 }
Jean Delvare30d73942005-06-05 21:27:28 +0200858 };
859
Guenter Roeck96512862010-10-28 20:31:43 +0200860 struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
Jean Delvare30d73942005-06-05 21:27:28 +0200861 struct i2c_client *client = to_i2c_client(dev);
862 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck96512862010-10-28 20:31:43 +0200863 int nr = attr->nr;
864 int index = attr->index;
Guenter Roeck11e57812010-10-28 20:31:42 +0200865 long val;
866 int err;
867
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100868 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200869 if (err < 0)
870 return err;
Jean Delvare30d73942005-06-05 21:27:28 +0200871
Jean Delvare97ae60b2008-10-26 17:04:39 +0100872 /* +16 degrees offset for temp2 for the LM99 */
Guenter Roeck96512862010-10-28 20:31:43 +0200873 if (data->kind == lm99 && index <= 2)
Jean Delvare97ae60b2008-10-26 17:04:39 +0100874 val -= 16000;
875
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100876 mutex_lock(&data->update_lock);
Wei Ni1daaceb2013-11-15 10:40:39 +0100877 if (data->kind == adt7461 || data->kind == tmp451)
Guenter Roeck96512862010-10-28 20:31:43 +0200878 data->temp11[index] = temp_to_u16_adt7461(data, val);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200879 else if (data->kind == max6646)
Guenter Roeck96512862010-10-28 20:31:43 +0200880 data->temp11[index] = temp_to_u8(val) << 8;
Guenter Roeck88073bb2010-10-28 20:31:43 +0200881 else if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
Guenter Roeck96512862010-10-28 20:31:43 +0200882 data->temp11[index] = temp_to_s16(val);
Guenter Roeck88073bb2010-10-28 20:31:43 +0200883 else
Guenter Roeck96512862010-10-28 20:31:43 +0200884 data->temp11[index] = temp_to_s8(val) << 8;
Jean Delvare5f502a82008-10-17 17:51:09 +0200885
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200886 lm90_select_remote_channel(client, data, reg[nr].channel);
Guenter Roeck96512862010-10-28 20:31:43 +0200887 i2c_smbus_write_byte_data(client, reg[nr].high,
888 data->temp11[index] >> 8);
Guenter Roeck88073bb2010-10-28 20:31:43 +0200889 if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
Guenter Roeck96512862010-10-28 20:31:43 +0200890 i2c_smbus_write_byte_data(client, reg[nr].low,
891 data->temp11[index] & 0xff);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200892 lm90_select_remote_channel(client, data, 0);
893
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100894 mutex_unlock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200895 return count;
896}
897
Guenter Roeck11e57812010-10-28 20:31:42 +0200898static ssize_t show_temphyst(struct device *dev,
899 struct device_attribute *devattr,
Jean Delvare30d73942005-06-05 21:27:28 +0200900 char *buf)
901{
902 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
903 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200904 int temp;
905
Wei Ni1daaceb2013-11-15 10:40:39 +0100906 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200907 temp = temp_from_u8_adt7461(data, data->temp8[attr->index]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100908 else if (data->kind == max6646)
909 temp = temp_from_u8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200910 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200911 temp = temp_from_s8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200912
Jean Delvare97ae60b2008-10-26 17:04:39 +0100913 /* +16 degrees offset for temp2 for the LM99 */
914 if (data->kind == lm99 && attr->index == 3)
915 temp += 16000;
916
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200917 return sprintf(buf, "%d\n", temp - temp_from_s8(data->temp_hyst));
Jean Delvare30d73942005-06-05 21:27:28 +0200918}
919
920static ssize_t set_temphyst(struct device *dev, struct device_attribute *dummy,
921 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922{
923 struct i2c_client *client = to_i2c_client(dev);
924 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck11e57812010-10-28 20:31:42 +0200925 long val;
926 int err;
Jean Delvareec38fa22008-10-26 17:04:39 +0100927 int temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100929 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200930 if (err < 0)
931 return err;
932
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100933 mutex_lock(&data->update_lock);
Wei Ni1daaceb2013-11-15 10:40:39 +0100934 if (data->kind == adt7461 || data->kind == tmp451)
Wei Ni40465d92013-11-15 10:40:39 +0100935 temp = temp_from_u8_adt7461(data, data->temp8[LOCAL_CRIT]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100936 else if (data->kind == max6646)
Wei Ni40465d92013-11-15 10:40:39 +0100937 temp = temp_from_u8(data->temp8[LOCAL_CRIT]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100938 else
Wei Ni40465d92013-11-15 10:40:39 +0100939 temp = temp_from_s8(data->temp8[LOCAL_CRIT]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100940
941 data->temp_hyst = hyst_to_reg(temp - val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 i2c_smbus_write_byte_data(client, LM90_REG_W_TCRIT_HYST,
Jean Delvareec38fa22008-10-26 17:04:39 +0100943 data->temp_hyst);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100944 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 return count;
946}
947
Jean Delvare30d73942005-06-05 21:27:28 +0200948static ssize_t show_alarms(struct device *dev, struct device_attribute *dummy,
949 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950{
951 struct lm90_data *data = lm90_update_device(dev);
952 return sprintf(buf, "%d\n", data->alarms);
953}
954
Jean Delvare2d457712006-09-24 20:52:15 +0200955static ssize_t show_alarm(struct device *dev, struct device_attribute
956 *devattr, char *buf)
957{
958 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
959 struct lm90_data *data = lm90_update_device(dev);
960 int bitnr = attr->index;
961
962 return sprintf(buf, "%d\n", (data->alarms >> bitnr) & 1);
963}
964
Guenter Roeck0c01b642010-10-28 20:31:44 +0200965static ssize_t show_update_interval(struct device *dev,
966 struct device_attribute *attr, char *buf)
967{
968 struct lm90_data *data = dev_get_drvdata(dev);
969
970 return sprintf(buf, "%u\n", data->update_interval);
971}
972
973static ssize_t set_update_interval(struct device *dev,
974 struct device_attribute *attr,
975 const char *buf, size_t count)
976{
977 struct i2c_client *client = to_i2c_client(dev);
978 struct lm90_data *data = i2c_get_clientdata(client);
979 unsigned long val;
980 int err;
981
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100982 err = kstrtoul(buf, 10, &val);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200983 if (err)
984 return err;
985
986 mutex_lock(&data->update_lock);
Guenter Roeck2a844c12013-01-09 08:09:34 -0800987 lm90_set_convrate(client, data, clamp_val(val, 0, 100000));
Guenter Roeck0c01b642010-10-28 20:31:44 +0200988 mutex_unlock(&data->update_lock);
989
990 return count;
991}
992
Wei Ni40465d92013-11-15 10:40:39 +0100993static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp11, NULL,
994 0, LOCAL_TEMP);
995static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp11, NULL,
996 0, REMOTE_TEMP);
Jean Delvare30d73942005-06-05 21:27:28 +0200997static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +0100998 set_temp8, LOCAL_LOW);
Guenter Roeck96512862010-10-28 20:31:43 +0200999static SENSOR_DEVICE_ATTR_2(temp2_min, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001000 set_temp11, 0, REMOTE_LOW);
Jean Delvare30d73942005-06-05 21:27:28 +02001001static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001002 set_temp8, LOCAL_HIGH);
Guenter Roeck96512862010-10-28 20:31:43 +02001003static SENSOR_DEVICE_ATTR_2(temp2_max, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001004 set_temp11, 1, REMOTE_HIGH);
Jean Delvare30d73942005-06-05 21:27:28 +02001005static SENSOR_DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001006 set_temp8, LOCAL_CRIT);
Jean Delvare30d73942005-06-05 21:27:28 +02001007static SENSOR_DEVICE_ATTR(temp2_crit, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001008 set_temp8, REMOTE_CRIT);
Jean Delvare30d73942005-06-05 21:27:28 +02001009static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001010 set_temphyst, LOCAL_CRIT);
1011static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, show_temphyst, NULL,
1012 REMOTE_CRIT);
Guenter Roeck96512862010-10-28 20:31:43 +02001013static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001014 set_temp11, 2, REMOTE_OFFSET);
Jean Delvare2d457712006-09-24 20:52:15 +02001015
1016/* Individual alarm files */
1017static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 0);
1018static SENSOR_DEVICE_ATTR(temp2_crit_alarm, S_IRUGO, show_alarm, NULL, 1);
Jean Delvare7817a392007-06-09 10:11:16 -04001019static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 2);
Jean Delvare2d457712006-09-24 20:52:15 +02001020static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3);
1021static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 4);
1022static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 5);
1023static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 6);
1024/* Raw alarm file for compatibility */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001025static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
1026
Guenter Roeck0c01b642010-10-28 20:31:44 +02001027static DEVICE_ATTR(update_interval, S_IRUGO | S_IWUSR, show_update_interval,
1028 set_update_interval);
1029
Jean Delvare0e39e012006-09-24 21:16:40 +02001030static struct attribute *lm90_attributes[] = {
1031 &sensor_dev_attr_temp1_input.dev_attr.attr,
1032 &sensor_dev_attr_temp2_input.dev_attr.attr,
1033 &sensor_dev_attr_temp1_min.dev_attr.attr,
1034 &sensor_dev_attr_temp2_min.dev_attr.attr,
1035 &sensor_dev_attr_temp1_max.dev_attr.attr,
1036 &sensor_dev_attr_temp2_max.dev_attr.attr,
1037 &sensor_dev_attr_temp1_crit.dev_attr.attr,
1038 &sensor_dev_attr_temp2_crit.dev_attr.attr,
1039 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
1040 &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr,
1041
1042 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
1043 &sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
Jean Delvare7817a392007-06-09 10:11:16 -04001044 &sensor_dev_attr_temp2_fault.dev_attr.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +02001045 &sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
1046 &sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
1047 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
1048 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
1049 &dev_attr_alarms.attr,
Guenter Roeck0c01b642010-10-28 20:31:44 +02001050 &dev_attr_update_interval.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +02001051 NULL
1052};
1053
1054static const struct attribute_group lm90_group = {
1055 .attrs = lm90_attributes,
1056};
1057
Guenter Roeck69487082010-10-28 20:31:43 +02001058/*
1059 * Additional attributes for devices with emergency sensors
1060 */
1061static SENSOR_DEVICE_ATTR(temp1_emergency, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001062 set_temp8, LOCAL_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001063static SENSOR_DEVICE_ATTR(temp2_emergency, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001064 set_temp8, REMOTE_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001065static SENSOR_DEVICE_ATTR(temp1_emergency_hyst, S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001066 NULL, LOCAL_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001067static SENSOR_DEVICE_ATTR(temp2_emergency_hyst, S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001068 NULL, REMOTE_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001069
1070static struct attribute *lm90_emergency_attributes[] = {
1071 &sensor_dev_attr_temp1_emergency.dev_attr.attr,
1072 &sensor_dev_attr_temp2_emergency.dev_attr.attr,
1073 &sensor_dev_attr_temp1_emergency_hyst.dev_attr.attr,
1074 &sensor_dev_attr_temp2_emergency_hyst.dev_attr.attr,
1075 NULL
1076};
1077
1078static const struct attribute_group lm90_emergency_group = {
1079 .attrs = lm90_emergency_attributes,
1080};
1081
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001082static SENSOR_DEVICE_ATTR(temp1_emergency_alarm, S_IRUGO, show_alarm, NULL, 15);
1083static SENSOR_DEVICE_ATTR(temp2_emergency_alarm, S_IRUGO, show_alarm, NULL, 13);
1084
1085static struct attribute *lm90_emergency_alarm_attributes[] = {
1086 &sensor_dev_attr_temp1_emergency_alarm.dev_attr.attr,
1087 &sensor_dev_attr_temp2_emergency_alarm.dev_attr.attr,
1088 NULL
1089};
1090
1091static const struct attribute_group lm90_emergency_alarm_group = {
1092 .attrs = lm90_emergency_alarm_attributes,
1093};
1094
1095/*
1096 * Additional attributes for devices with 3 temperature sensors
1097 */
Wei Ni40465d92013-11-15 10:40:39 +01001098static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp11, NULL,
1099 0, REMOTE2_TEMP);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001100static SENSOR_DEVICE_ATTR_2(temp3_min, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001101 set_temp11, 3, REMOTE2_LOW);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001102static SENSOR_DEVICE_ATTR_2(temp3_max, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001103 set_temp11, 4, REMOTE2_HIGH);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001104static SENSOR_DEVICE_ATTR(temp3_crit, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001105 set_temp8, REMOTE2_CRIT);
1106static SENSOR_DEVICE_ATTR(temp3_crit_hyst, S_IRUGO, show_temphyst, NULL,
1107 REMOTE2_CRIT);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001108static SENSOR_DEVICE_ATTR(temp3_emergency, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001109 set_temp8, REMOTE2_EMERG);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001110static SENSOR_DEVICE_ATTR(temp3_emergency_hyst, S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001111 NULL, REMOTE2_EMERG);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001112
1113static SENSOR_DEVICE_ATTR(temp3_crit_alarm, S_IRUGO, show_alarm, NULL, 9);
1114static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL, 10);
1115static SENSOR_DEVICE_ATTR(temp3_min_alarm, S_IRUGO, show_alarm, NULL, 11);
1116static SENSOR_DEVICE_ATTR(temp3_max_alarm, S_IRUGO, show_alarm, NULL, 12);
1117static SENSOR_DEVICE_ATTR(temp3_emergency_alarm, S_IRUGO, show_alarm, NULL, 14);
1118
1119static struct attribute *lm90_temp3_attributes[] = {
1120 &sensor_dev_attr_temp3_input.dev_attr.attr,
1121 &sensor_dev_attr_temp3_min.dev_attr.attr,
1122 &sensor_dev_attr_temp3_max.dev_attr.attr,
1123 &sensor_dev_attr_temp3_crit.dev_attr.attr,
1124 &sensor_dev_attr_temp3_crit_hyst.dev_attr.attr,
1125 &sensor_dev_attr_temp3_emergency.dev_attr.attr,
1126 &sensor_dev_attr_temp3_emergency_hyst.dev_attr.attr,
1127
1128 &sensor_dev_attr_temp3_fault.dev_attr.attr,
1129 &sensor_dev_attr_temp3_min_alarm.dev_attr.attr,
1130 &sensor_dev_attr_temp3_max_alarm.dev_attr.attr,
1131 &sensor_dev_attr_temp3_crit_alarm.dev_attr.attr,
1132 &sensor_dev_attr_temp3_emergency_alarm.dev_attr.attr,
1133 NULL
1134};
1135
1136static const struct attribute_group lm90_temp3_group = {
1137 .attrs = lm90_temp3_attributes,
1138};
1139
Jean Delvarec3df5802005-10-26 21:39:40 +02001140/* pec used for ADM1032 only */
1141static ssize_t show_pec(struct device *dev, struct device_attribute *dummy,
1142 char *buf)
1143{
1144 struct i2c_client *client = to_i2c_client(dev);
1145 return sprintf(buf, "%d\n", !!(client->flags & I2C_CLIENT_PEC));
1146}
1147
1148static ssize_t set_pec(struct device *dev, struct device_attribute *dummy,
1149 const char *buf, size_t count)
1150{
1151 struct i2c_client *client = to_i2c_client(dev);
Guenter Roeck11e57812010-10-28 20:31:42 +02001152 long val;
1153 int err;
1154
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001155 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +02001156 if (err < 0)
1157 return err;
Jean Delvarec3df5802005-10-26 21:39:40 +02001158
1159 switch (val) {
1160 case 0:
1161 client->flags &= ~I2C_CLIENT_PEC;
1162 break;
1163 case 1:
1164 client->flags |= I2C_CLIENT_PEC;
1165 break;
1166 default:
1167 return -EINVAL;
1168 }
1169
1170 return count;
1171}
1172
1173static DEVICE_ATTR(pec, S_IWUSR | S_IRUGO, show_pec, set_pec);
1174
Linus Torvalds1da177e2005-04-16 15:20:36 -07001175/*
1176 * Real code
1177 */
1178
Jean Delvare9b0e8522008-07-16 19:30:15 +02001179/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001180static int lm90_detect(struct i2c_client *client,
Jean Delvare9b0e8522008-07-16 19:30:15 +02001181 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001182{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001183 struct i2c_adapter *adapter = client->adapter;
1184 int address = client->addr;
Jean Delvare8f2fa772009-12-09 20:35:53 +01001185 const char *name = NULL;
Jean Delvareb2589ab2011-11-04 12:00:47 +01001186 int man_id, chip_id, config1, config2, convrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187
1188 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvare9b0e8522008-07-16 19:30:15 +02001189 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Jean Delvare8f2fa772009-12-09 20:35:53 +01001191 /* detection and identification */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001192 man_id = i2c_smbus_read_byte_data(client, LM90_REG_R_MAN_ID);
1193 chip_id = i2c_smbus_read_byte_data(client, LM90_REG_R_CHIP_ID);
1194 config1 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG1);
1195 convrate = i2c_smbus_read_byte_data(client, LM90_REG_R_CONVRATE);
1196 if (man_id < 0 || chip_id < 0 || config1 < 0 || convrate < 0)
Jean Delvare8f2fa772009-12-09 20:35:53 +01001197 return -ENODEV;
1198
Jean Delvaref90be422011-07-24 20:37:05 +02001199 if (man_id == 0x01 || man_id == 0x5C || man_id == 0x41) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001200 config2 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG2);
1201 if (config2 < 0)
Jean Delvare9b0e8522008-07-16 19:30:15 +02001202 return -ENODEV;
Jean Delvaref90be422011-07-24 20:37:05 +02001203 } else
Jean Delvareb2589ab2011-11-04 12:00:47 +01001204 config2 = 0; /* Make compiler happy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205
Jean Delvaref90be422011-07-24 20:37:05 +02001206 if ((address == 0x4C || address == 0x4D)
1207 && man_id == 0x01) { /* National Semiconductor */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001208 if ((config1 & 0x2A) == 0x00
1209 && (config2 & 0xF8) == 0x00
1210 && convrate <= 0x09) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001211 if (address == 0x4C
1212 && (chip_id & 0xF0) == 0x20) { /* LM90 */
1213 name = "lm90";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001215 if ((chip_id & 0xF0) == 0x30) { /* LM89/LM99 */
1216 name = "lm99";
1217 dev_info(&adapter->dev,
1218 "Assuming LM99 chip at 0x%02x\n",
1219 address);
1220 dev_info(&adapter->dev,
1221 "If it is an LM89, instantiate it "
1222 "with the new_device sysfs "
1223 "interface\n");
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -04001224 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001225 if (address == 0x4C
1226 && (chip_id & 0xF0) == 0x10) { /* LM86 */
1227 name = "lm86";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228 }
1229 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001230 } else
1231 if ((address == 0x4C || address == 0x4D)
1232 && man_id == 0x41) { /* Analog Devices */
1233 if ((chip_id & 0xF0) == 0x40 /* ADM1032 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001234 && (config1 & 0x3F) == 0x00
1235 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001236 name = "adm1032";
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001237 /*
1238 * The ADM1032 supports PEC, but only if combined
1239 * transactions are not used.
1240 */
Jean Delvare8f2fa772009-12-09 20:35:53 +01001241 if (i2c_check_functionality(adapter,
1242 I2C_FUNC_SMBUS_BYTE))
1243 info->flags |= I2C_CLIENT_PEC;
1244 } else
1245 if (chip_id == 0x51 /* ADT7461 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001246 && (config1 & 0x1B) == 0x00
1247 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001248 name = "adt7461";
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001249 } else
1250 if (chip_id == 0x57 /* ADT7461A, NCT1008 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001251 && (config1 & 0x1B) == 0x00
1252 && convrate <= 0x0A) {
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001253 name = "adt7461a";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001254 }
1255 } else
1256 if (man_id == 0x4D) { /* Maxim */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001257 int emerg, emerg2, status2;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001258
1259 /*
1260 * We read MAX6659_REG_R_REMOTE_EMERG twice, and re-read
1261 * LM90_REG_R_MAN_ID in between. If MAX6659_REG_R_REMOTE_EMERG
1262 * exists, both readings will reflect the same value. Otherwise,
1263 * the readings will be different.
1264 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001265 emerg = i2c_smbus_read_byte_data(client,
1266 MAX6659_REG_R_REMOTE_EMERG);
1267 man_id = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001268 LM90_REG_R_MAN_ID);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001269 emerg2 = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001270 MAX6659_REG_R_REMOTE_EMERG);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001271 status2 = i2c_smbus_read_byte_data(client,
1272 MAX6696_REG_R_STATUS2);
1273 if (emerg < 0 || man_id < 0 || emerg2 < 0 || status2 < 0)
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001274 return -ENODEV;
1275
Jean Delvare8f2fa772009-12-09 20:35:53 +01001276 /*
1277 * The MAX6657, MAX6658 and MAX6659 do NOT have a chip_id
1278 * register. Reading from that address will return the last
1279 * read value, which in our case is those of the man_id
1280 * register. Likewise, the config1 register seems to lack a
1281 * low nibble, so the value will be those of the previous
1282 * read, so in our case those of the man_id register.
Guenter Roeck13c84952010-10-28 20:31:43 +02001283 * MAX6659 has a third set of upper temperature limit registers.
1284 * Those registers also return values on MAX6657 and MAX6658,
1285 * thus the only way to detect MAX6659 is by its address.
1286 * For this reason it will be mis-detected as MAX6657 if its
1287 * address is 0x4C.
Jean Delvare8f2fa772009-12-09 20:35:53 +01001288 */
1289 if (chip_id == man_id
Guenter Roeck13c84952010-10-28 20:31:43 +02001290 && (address == 0x4C || address == 0x4D || address == 0x4E)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001291 && (config1 & 0x1F) == (man_id & 0x0F)
1292 && convrate <= 0x09) {
Guenter Roeck13c84952010-10-28 20:31:43 +02001293 if (address == 0x4C)
1294 name = "max6657";
1295 else
1296 name = "max6659";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001297 } else
1298 /*
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001299 * Even though MAX6695 and MAX6696 do not have a chip ID
1300 * register, reading it returns 0x01. Bit 4 of the config1
1301 * register is unused and should return zero when read. Bit 0 of
1302 * the status2 register is unused and should return zero when
1303 * read.
1304 *
1305 * MAX6695 and MAX6696 have an additional set of temperature
1306 * limit registers. We can detect those chips by checking if
1307 * one of those registers exists.
1308 */
1309 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001310 && (config1 & 0x10) == 0x00
1311 && (status2 & 0x01) == 0x00
1312 && emerg == emerg2
1313 && convrate <= 0x07) {
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001314 name = "max6696";
1315 } else
1316 /*
Jean Delvare8f2fa772009-12-09 20:35:53 +01001317 * The chip_id register of the MAX6680 and MAX6681 holds the
1318 * revision of the chip. The lowest bit of the config1 register
1319 * is unused and should return zero when read, so should the
1320 * second to last bit of config1 (software reset).
1321 */
1322 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001323 && (config1 & 0x03) == 0x00
1324 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001325 name = "max6680";
1326 } else
1327 /*
1328 * The chip_id register of the MAX6646/6647/6649 holds the
1329 * revision of the chip. The lowest 6 bits of the config1
1330 * register are unused and should return zero when read.
1331 */
1332 if (chip_id == 0x59
Jean Delvareb2589ab2011-11-04 12:00:47 +01001333 && (config1 & 0x3f) == 0x00
1334 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001335 name = "max6646";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001337 } else
1338 if (address == 0x4C
1339 && man_id == 0x5C) { /* Winbond/Nuvoton */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001340 if ((config1 & 0x2A) == 0x00
1341 && (config2 & 0xF8) == 0x00) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001342 if (chip_id == 0x01 /* W83L771W/G */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001343 && convrate <= 0x09) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001344 name = "w83l771";
1345 } else
1346 if ((chip_id & 0xFE) == 0x10 /* W83L771AWG/ASG */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001347 && convrate <= 0x08) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001348 name = "w83l771";
1349 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001350 }
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001351 } else
Jean Delvare6d101c52011-07-24 20:36:15 +02001352 if (address >= 0x48 && address <= 0x4F
1353 && man_id == 0xA1) { /* NXP Semiconductor/Philips */
Jean Delvare6d101c52011-07-24 20:36:15 +02001354 if (chip_id == 0x00
Jean Delvareb2589ab2011-11-04 12:00:47 +01001355 && (config1 & 0x2A) == 0x00
1356 && (config2 & 0xFE) == 0x00
1357 && convrate <= 0x09) {
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001358 name = "sa56004";
1359 }
Guenter Roeckae544f62012-03-23 10:02:18 +01001360 } else
1361 if ((address == 0x4C || address == 0x4D)
1362 && man_id == 0x47) { /* GMT */
1363 if (chip_id == 0x01 /* G781 */
1364 && (config1 & 0x3F) == 0x00
1365 && convrate <= 0x08)
1366 name = "g781";
Wei Ni1daaceb2013-11-15 10:40:39 +01001367 } else
1368 if (address == 0x4C
1369 && man_id == 0x55) { /* Texas Instruments */
1370 int local_ext;
1371
1372 local_ext = i2c_smbus_read_byte_data(client,
1373 TMP451_REG_R_LOCAL_TEMPL);
1374
1375 if (chip_id == 0x00 /* TMP451 */
1376 && (config1 & 0x1B) == 0x00
1377 && convrate <= 0x09
1378 && (local_ext & 0x0F) == 0x00)
1379 name = "tmp451";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 }
1381
Jean Delvare8f2fa772009-12-09 20:35:53 +01001382 if (!name) { /* identification failed */
1383 dev_dbg(&adapter->dev,
1384 "Unsupported chip at 0x%02x (man_id=0x%02X, "
1385 "chip_id=0x%02X)\n", address, man_id, chip_id);
1386 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001388
Jean Delvare9b0e8522008-07-16 19:30:15 +02001389 strlcpy(info->type, name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Jean Delvare9b0e8522008-07-16 19:30:15 +02001391 return 0;
1392}
1393
Guenter Roeckb6fc1ba2010-10-28 20:31:43 +02001394static void lm90_remove_files(struct i2c_client *client, struct lm90_data *data)
1395{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001396 struct device *dev = &client->dev;
1397
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001398 if (data->flags & LM90_HAVE_TEMP3)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001399 sysfs_remove_group(&dev->kobj, &lm90_temp3_group);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001400 if (data->flags & LM90_HAVE_EMERGENCY_ALARM)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001401 sysfs_remove_group(&dev->kobj, &lm90_emergency_alarm_group);
Guenter Roeck69487082010-10-28 20:31:43 +02001402 if (data->flags & LM90_HAVE_EMERGENCY)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001403 sysfs_remove_group(&dev->kobj, &lm90_emergency_group);
Guenter Roeckb6fc1ba2010-10-28 20:31:43 +02001404 if (data->flags & LM90_HAVE_OFFSET)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001405 device_remove_file(dev, &sensor_dev_attr_temp2_offset.dev_attr);
1406 device_remove_file(dev, &dev_attr_pec);
1407 sysfs_remove_group(&dev->kobj, &lm90_group);
Guenter Roeckb6fc1ba2010-10-28 20:31:43 +02001408}
1409
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001410static void lm90_restore_conf(struct i2c_client *client, struct lm90_data *data)
1411{
1412 /* Restore initial configuration */
1413 i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE,
1414 data->convrate_orig);
1415 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
1416 data->config_orig);
1417}
1418
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001419static void lm90_init_client(struct i2c_client *client)
1420{
Guenter Roeck0c01b642010-10-28 20:31:44 +02001421 u8 config, convrate;
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001422 struct lm90_data *data = i2c_get_clientdata(client);
1423
Guenter Roeck0c01b642010-10-28 20:31:44 +02001424 if (lm90_read_reg(client, LM90_REG_R_CONVRATE, &convrate) < 0) {
1425 dev_warn(&client->dev, "Failed to read convrate register!\n");
1426 convrate = LM90_DEF_CONVRATE_RVAL;
1427 }
1428 data->convrate_orig = convrate;
1429
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001430 /*
1431 * Start the conversions.
1432 */
Guenter Roeck0c01b642010-10-28 20:31:44 +02001433 lm90_set_convrate(client, data, 500); /* 500ms; 2Hz conversion rate */
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001434 if (lm90_read_reg(client, LM90_REG_R_CONFIG1, &config) < 0) {
1435 dev_warn(&client->dev, "Initialization failed!\n");
1436 return;
1437 }
1438 data->config_orig = config;
1439
1440 /* Check Temperature Range Select */
Wei Ni1daaceb2013-11-15 10:40:39 +01001441 if (data->kind == adt7461 || data->kind == tmp451) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001442 if (config & 0x04)
1443 data->flags |= LM90_FLAG_ADT7461_EXT;
1444 }
1445
1446 /*
1447 * Put MAX6680/MAX8881 into extended resolution (bit 0x10,
1448 * 0.125 degree resolution) and range (0x08, extend range
1449 * to -64 degree) mode for the remote temperature sensor.
1450 */
1451 if (data->kind == max6680)
1452 config |= 0x18;
1453
1454 /*
1455 * Select external channel 0 for max6695/96
1456 */
1457 if (data->kind == max6696)
1458 config &= ~0x08;
1459
1460 config &= 0xBF; /* run */
1461 if (config != data->config_orig) /* Only write if changed */
1462 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1, config);
1463}
1464
Wei Ni072de492013-11-15 10:40:38 +01001465static bool lm90_is_tripped(struct i2c_client *client, u16 *status)
1466{
1467 struct lm90_data *data = i2c_get_clientdata(client);
1468 u8 st, st2 = 0;
1469
1470 lm90_read_reg(client, LM90_REG_R_STATUS, &st);
1471
1472 if (data->kind == max6696)
1473 lm90_read_reg(client, MAX6696_REG_R_STATUS2, &st2);
1474
1475 *status = st | (st2 << 8);
1476
1477 if ((st & 0x7f) == 0 && (st2 & 0xfe) == 0)
1478 return false;
1479
1480 if ((st & (LM90_STATUS_LLOW | LM90_STATUS_LHIGH | LM90_STATUS_LTHRM)) ||
1481 (st2 & MAX6696_STATUS2_LOT2))
1482 dev_warn(&client->dev,
1483 "temp%d out of range, please check!\n", 1);
1484 if ((st & (LM90_STATUS_RLOW | LM90_STATUS_RHIGH | LM90_STATUS_RTHRM)) ||
1485 (st2 & MAX6696_STATUS2_ROT2))
1486 dev_warn(&client->dev,
1487 "temp%d out of range, please check!\n", 2);
1488 if (st & LM90_STATUS_ROPEN)
1489 dev_warn(&client->dev,
1490 "temp%d diode open, please check!\n", 2);
1491 if (st2 & (MAX6696_STATUS2_R2LOW | MAX6696_STATUS2_R2HIGH |
1492 MAX6696_STATUS2_R2THRM | MAX6696_STATUS2_R2OT2))
1493 dev_warn(&client->dev,
1494 "temp%d out of range, please check!\n", 3);
1495 if (st2 & MAX6696_STATUS2_R2OPEN)
1496 dev_warn(&client->dev,
1497 "temp%d diode open, please check!\n", 3);
1498
1499 return true;
1500}
1501
Wei Ni109b1282013-11-15 10:40:39 +01001502static irqreturn_t lm90_irq_thread(int irq, void *dev_id)
1503{
1504 struct i2c_client *client = dev_id;
1505 u16 status;
1506
1507 if (lm90_is_tripped(client, &status))
1508 return IRQ_HANDLED;
1509 else
1510 return IRQ_NONE;
1511}
1512
Jean Delvareb2589ab2011-11-04 12:00:47 +01001513static int lm90_probe(struct i2c_client *client,
Jean Delvare9b0e8522008-07-16 19:30:15 +02001514 const struct i2c_device_id *id)
1515{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001516 struct device *dev = &client->dev;
1517 struct i2c_adapter *adapter = to_i2c_adapter(dev->parent);
Jean Delvare9b0e8522008-07-16 19:30:15 +02001518 struct lm90_data *data;
1519 int err;
1520
Guenter Roeck20f426f2012-06-02 09:58:10 -07001521 data = devm_kzalloc(&client->dev, sizeof(struct lm90_data), GFP_KERNEL);
1522 if (!data)
1523 return -ENOMEM;
1524
Jean Delvareb2589ab2011-11-04 12:00:47 +01001525 i2c_set_clientdata(client, data);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001526 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
Jean Delvare9b0e8522008-07-16 19:30:15 +02001528 /* Set the device type */
1529 data->kind = id->driver_data;
1530 if (data->kind == adm1032) {
1531 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
Jean Delvareb2589ab2011-11-04 12:00:47 +01001532 client->flags &= ~I2C_CLIENT_PEC;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001533 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001535 /*
1536 * Different devices have different alarm bits triggering the
1537 * ALERT# output
1538 */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001539 data->alert_alarms = lm90_params[data->kind].alert_alarms;
Jean Delvare53de3342010-03-05 22:17:15 +01001540
Guenter Roeck88073bb2010-10-28 20:31:43 +02001541 /* Set chip capabilities */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001542 data->flags = lm90_params[data->kind].flags;
Jean Delvarea095f682011-07-27 23:22:25 -07001543 data->reg_local_ext = lm90_params[data->kind].reg_local_ext;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001544
Guenter Roeck0c01b642010-10-28 20:31:44 +02001545 /* Set maximum conversion rate */
1546 data->max_convrate = lm90_params[data->kind].max_convrate;
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 /* Initialize the LM90 chip */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001549 lm90_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001550
1551 /* Register sysfs hooks */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001552 err = sysfs_create_group(&dev->kobj, &lm90_group);
Guenter Roeck11e57812010-10-28 20:31:42 +02001553 if (err)
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001554 goto exit_restore;
Jean Delvareb2589ab2011-11-04 12:00:47 +01001555 if (client->flags & I2C_CLIENT_PEC) {
1556 err = device_create_file(dev, &dev_attr_pec);
Guenter Roeck11e57812010-10-28 20:31:42 +02001557 if (err)
Jean Delvare0e39e012006-09-24 21:16:40 +02001558 goto exit_remove_files;
1559 }
Guenter Roeck88073bb2010-10-28 20:31:43 +02001560 if (data->flags & LM90_HAVE_OFFSET) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001561 err = device_create_file(dev,
Guenter Roeck11e57812010-10-28 20:31:42 +02001562 &sensor_dev_attr_temp2_offset.dev_attr);
1563 if (err)
Jean Delvare69f2f962007-09-05 14:15:37 +02001564 goto exit_remove_files;
1565 }
Guenter Roeck69487082010-10-28 20:31:43 +02001566 if (data->flags & LM90_HAVE_EMERGENCY) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001567 err = sysfs_create_group(&dev->kobj, &lm90_emergency_group);
Guenter Roeck69487082010-10-28 20:31:43 +02001568 if (err)
1569 goto exit_remove_files;
1570 }
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001571 if (data->flags & LM90_HAVE_EMERGENCY_ALARM) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001572 err = sysfs_create_group(&dev->kobj,
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001573 &lm90_emergency_alarm_group);
1574 if (err)
1575 goto exit_remove_files;
1576 }
1577 if (data->flags & LM90_HAVE_TEMP3) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001578 err = sysfs_create_group(&dev->kobj, &lm90_temp3_group);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001579 if (err)
1580 goto exit_remove_files;
1581 }
Jean Delvare0e39e012006-09-24 21:16:40 +02001582
Jean Delvareb2589ab2011-11-04 12:00:47 +01001583 data->hwmon_dev = hwmon_device_register(dev);
Tony Jones1beeffe2007-08-20 13:46:20 -07001584 if (IS_ERR(data->hwmon_dev)) {
1585 err = PTR_ERR(data->hwmon_dev);
Jean Delvare0e39e012006-09-24 21:16:40 +02001586 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001587 }
1588
Wei Ni109b1282013-11-15 10:40:39 +01001589 if (client->irq) {
1590 dev_dbg(dev, "IRQ: %d\n", client->irq);
1591 err = devm_request_threaded_irq(dev, client->irq,
1592 NULL, lm90_irq_thread,
1593 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
1594 "lm90", client);
1595 if (err < 0) {
1596 dev_err(dev, "cannot request IRQ %d\n", client->irq);
1597 goto exit_remove_files;
1598 }
1599 }
1600
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601 return 0;
1602
Jean Delvare0e39e012006-09-24 21:16:40 +02001603exit_remove_files:
Jean Delvareb2589ab2011-11-04 12:00:47 +01001604 lm90_remove_files(client, data);
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001605exit_restore:
1606 lm90_restore_conf(client, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001607 return err;
1608}
1609
Jean Delvare9b0e8522008-07-16 19:30:15 +02001610static int lm90_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001611{
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001612 struct lm90_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613
Tony Jones1beeffe2007-08-20 13:46:20 -07001614 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeckb6fc1ba2010-10-28 20:31:43 +02001615 lm90_remove_files(client, data);
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001616 lm90_restore_conf(client, data);
Jean Delvare95238362010-03-05 22:17:14 +01001617
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 return 0;
1619}
1620
Jean Delvare53de3342010-03-05 22:17:15 +01001621static void lm90_alert(struct i2c_client *client, unsigned int flag)
1622{
Wei Ni072de492013-11-15 10:40:38 +01001623 u16 alarms;
Jean Delvare53de3342010-03-05 22:17:15 +01001624
Wei Ni072de492013-11-15 10:40:38 +01001625 if (lm90_is_tripped(client, &alarms)) {
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001626 /*
1627 * Disable ALERT# output, because these chips don't implement
1628 * SMBus alert correctly; they should only hold the alert line
1629 * low briefly.
1630 */
Wei Ni072de492013-11-15 10:40:38 +01001631 struct lm90_data *data = i2c_get_clientdata(client);
1632
Guenter Roeck11793242010-10-28 20:31:44 +02001633 if ((data->flags & LM90_HAVE_BROKEN_ALERT)
Jean Delvare53de3342010-03-05 22:17:15 +01001634 && (alarms & data->alert_alarms)) {
Wei Ni072de492013-11-15 10:40:38 +01001635 u8 config;
Jean Delvare53de3342010-03-05 22:17:15 +01001636 dev_dbg(&client->dev, "Disabling ALERT#\n");
1637 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
1638 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
1639 config | 0x80);
1640 }
Wei Ni072de492013-11-15 10:40:38 +01001641 } else {
1642 dev_info(&client->dev, "Everything OK\n");
Jean Delvare53de3342010-03-05 22:17:15 +01001643 }
1644}
1645
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001646static struct i2c_driver lm90_driver = {
1647 .class = I2C_CLASS_HWMON,
1648 .driver = {
1649 .name = "lm90",
1650 },
1651 .probe = lm90_probe,
1652 .remove = lm90_remove,
1653 .alert = lm90_alert,
1654 .id_table = lm90_id,
1655 .detect = lm90_detect,
1656 .address_list = normal_i2c,
1657};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001658
Axel Linf0967ee2012-01-20 15:38:18 +08001659module_i2c_driver(lm90_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001660
1661MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
1662MODULE_DESCRIPTION("LM90/ADM1032 driver");
1663MODULE_LICENSE("GPL");