blob: 9ad7401f3b2c6250535b77645808cc6ce5165cb2 [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 Delvare7c81c602014-01-29 20:40:08 +01004 * Copyright (C) 2003-2010 Jean Delvare <jdelvare@suse.de>
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;
Guenter Roeck084489e2014-04-04 18:01:35 +0200369 const struct attribute_group *groups[6];
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100370 struct mutex update_lock;
Wei Ni3e0f9642013-11-15 10:40:39 +0100371 struct regulator *regulator;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372 char valid; /* zero until following fields are valid */
373 unsigned long last_updated; /* in jiffies */
374 int kind;
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200375 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376
Guenter Roeck0c01b642010-10-28 20:31:44 +0200377 int update_interval; /* in milliseconds */
378
Jean Delvare95238362010-03-05 22:17:14 +0100379 u8 config_orig; /* Original configuration register value */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200380 u8 convrate_orig; /* Original conversion rate register value */
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200381 u16 alert_alarms; /* Which alarm bits trigger ALERT# */
382 /* Upper 8 bits for max6695/96 */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200383 u8 max_convrate; /* Maximum conversion rate */
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000384 u8 reg_local_ext; /* local extension register offset */
Jean Delvare95238362010-03-05 22:17:14 +0100385
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386 /* registers values */
Wei Ni40465d92013-11-15 10:40:39 +0100387 s8 temp8[TEMP8_REG_NUM];
388 s16 temp11[TEMP11_REG_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 u8 temp_hyst;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200390 u16 alarms; /* bitvector (upper 8 bits for max6695/96) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391};
392
393/*
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200394 * Support functions
395 */
396
397/*
398 * The ADM1032 supports PEC but not on write byte transactions, so we need
399 * to explicitly ask for a transaction without PEC.
400 */
401static inline s32 adm1032_write_byte(struct i2c_client *client, u8 value)
402{
403 return i2c_smbus_xfer(client->adapter, client->addr,
404 client->flags & ~I2C_CLIENT_PEC,
405 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
406}
407
408/*
409 * It is assumed that client->update_lock is held (unless we are in
410 * detection or initialization steps). This matters when PEC is enabled,
411 * because we don't want the address pointer to change between the write
412 * byte and the read byte transactions.
413 */
414static int lm90_read_reg(struct i2c_client *client, u8 reg, u8 *value)
415{
416 int err;
417
418 if (client->flags & I2C_CLIENT_PEC) {
419 err = adm1032_write_byte(client, reg);
420 if (err >= 0)
421 err = i2c_smbus_read_byte(client);
422 } else
423 err = i2c_smbus_read_byte_data(client, reg);
424
425 if (err < 0) {
426 dev_warn(&client->dev, "Register %#02x read failed (%d)\n",
427 reg, err);
428 return err;
429 }
430 *value = err;
431
432 return 0;
433}
434
435static int lm90_read16(struct i2c_client *client, u8 regh, u8 regl, u16 *value)
436{
437 int err;
438 u8 oldh, newh, l;
439
440 /*
441 * There is a trick here. We have to read two registers to have the
442 * sensor temperature, but we have to beware a conversion could occur
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300443 * between the readings. The datasheet says we should either use
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200444 * the one-shot conversion register, which we don't want to do
445 * (disables hardware monitoring) or monitor the busy bit, which is
446 * impossible (we can't read the values and monitor that bit at the
447 * exact same time). So the solution used here is to read the high
448 * byte once, then the low byte, then the high byte again. If the new
449 * high byte matches the old one, then we have a valid reading. Else
450 * we have to read the low byte again, and now we believe we have a
451 * correct reading.
452 */
453 if ((err = lm90_read_reg(client, regh, &oldh))
454 || (err = lm90_read_reg(client, regl, &l))
455 || (err = lm90_read_reg(client, regh, &newh)))
456 return err;
457 if (oldh != newh) {
458 err = lm90_read_reg(client, regl, &l);
459 if (err)
460 return err;
461 }
462 *value = (newh << 8) | l;
463
464 return 0;
465}
466
467/*
468 * client->update_lock must be held when calling this function (unless we are
469 * in detection or initialization steps), and while a remote channel other
470 * than channel 0 is selected. Also, calling code must make sure to re-select
471 * external channel 0 before releasing the lock. This is necessary because
472 * various registers have different meanings as a result of selecting a
473 * non-default remote channel.
474 */
475static inline void lm90_select_remote_channel(struct i2c_client *client,
476 struct lm90_data *data,
477 int channel)
478{
479 u8 config;
480
481 if (data->kind == max6696) {
482 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
483 config &= ~0x08;
484 if (channel)
485 config |= 0x08;
486 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
487 config);
488 }
489}
490
Guenter Roeck0c01b642010-10-28 20:31:44 +0200491/*
492 * Set conversion rate.
493 * client->update_lock must be held when calling this function (unless we are
494 * in detection or initialization steps).
495 */
496static void lm90_set_convrate(struct i2c_client *client, struct lm90_data *data,
497 unsigned int interval)
498{
499 int i;
500 unsigned int update_interval;
501
502 /* Shift calculations to avoid rounding errors */
503 interval <<= 6;
504
505 /* find the nearest update rate */
506 for (i = 0, update_interval = LM90_MAX_CONVRATE_MS << 6;
507 i < data->max_convrate; i++, update_interval >>= 1)
508 if (interval >= update_interval * 3 / 4)
509 break;
510
511 i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE, i);
512 data->update_interval = DIV_ROUND_CLOSEST(update_interval, 64);
513}
514
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200515static struct lm90_data *lm90_update_device(struct device *dev)
516{
517 struct i2c_client *client = to_i2c_client(dev);
518 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200519 unsigned long next_update;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200520
521 mutex_lock(&data->update_lock);
522
Jean Delvare78c2c2f2013-07-08 14:18:24 +0200523 next_update = data->last_updated +
524 msecs_to_jiffies(data->update_interval);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200525 if (time_after(jiffies, next_update) || !data->valid) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200526 u8 h, l;
527 u8 alarms;
528
529 dev_dbg(&client->dev, "Updating lm90 data.\n");
Wei Ni40465d92013-11-15 10:40:39 +0100530 lm90_read_reg(client, LM90_REG_R_LOCAL_LOW,
531 &data->temp8[LOCAL_LOW]);
532 lm90_read_reg(client, LM90_REG_R_LOCAL_HIGH,
533 &data->temp8[LOCAL_HIGH]);
534 lm90_read_reg(client, LM90_REG_R_LOCAL_CRIT,
535 &data->temp8[LOCAL_CRIT]);
536 lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT,
537 &data->temp8[REMOTE_CRIT]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200538 lm90_read_reg(client, LM90_REG_R_TCRIT_HYST, &data->temp_hyst);
539
Jean Delvarea095f682011-07-27 23:22:25 -0700540 if (data->reg_local_ext) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200541 lm90_read16(client, LM90_REG_R_LOCAL_TEMP,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000542 data->reg_local_ext,
Wei Ni40465d92013-11-15 10:40:39 +0100543 &data->temp11[LOCAL_TEMP]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200544 } else {
545 if (lm90_read_reg(client, LM90_REG_R_LOCAL_TEMP,
546 &h) == 0)
Wei Ni40465d92013-11-15 10:40:39 +0100547 data->temp11[LOCAL_TEMP] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200548 }
549 lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
Wei Ni40465d92013-11-15 10:40:39 +0100550 LM90_REG_R_REMOTE_TEMPL,
551 &data->temp11[REMOTE_TEMP]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200552
553 if (lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH, &h) == 0) {
Wei Ni40465d92013-11-15 10:40:39 +0100554 data->temp11[REMOTE_LOW] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200555 if ((data->flags & LM90_HAVE_REM_LIMIT_EXT)
556 && lm90_read_reg(client, LM90_REG_R_REMOTE_LOWL,
557 &l) == 0)
Wei Ni40465d92013-11-15 10:40:39 +0100558 data->temp11[REMOTE_LOW] |= l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200559 }
560 if (lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH, &h) == 0) {
Wei Ni40465d92013-11-15 10:40:39 +0100561 data->temp11[REMOTE_HIGH] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200562 if ((data->flags & LM90_HAVE_REM_LIMIT_EXT)
563 && lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHL,
564 &l) == 0)
Wei Ni40465d92013-11-15 10:40:39 +0100565 data->temp11[REMOTE_HIGH] |= l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200566 }
567
568 if (data->flags & LM90_HAVE_OFFSET) {
569 if (lm90_read_reg(client, LM90_REG_R_REMOTE_OFFSH,
570 &h) == 0
571 && lm90_read_reg(client, LM90_REG_R_REMOTE_OFFSL,
572 &l) == 0)
Wei Ni40465d92013-11-15 10:40:39 +0100573 data->temp11[REMOTE_OFFSET] = (h << 8) | l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200574 }
575 if (data->flags & LM90_HAVE_EMERGENCY) {
576 lm90_read_reg(client, MAX6659_REG_R_LOCAL_EMERG,
Wei Ni40465d92013-11-15 10:40:39 +0100577 &data->temp8[LOCAL_EMERG]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200578 lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG,
Wei Ni40465d92013-11-15 10:40:39 +0100579 &data->temp8[REMOTE_EMERG]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200580 }
581 lm90_read_reg(client, LM90_REG_R_STATUS, &alarms);
582 data->alarms = alarms; /* save as 16 bit value */
583
584 if (data->kind == max6696) {
585 lm90_select_remote_channel(client, data, 1);
586 lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT,
Wei Ni40465d92013-11-15 10:40:39 +0100587 &data->temp8[REMOTE2_CRIT]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200588 lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG,
Wei Ni40465d92013-11-15 10:40:39 +0100589 &data->temp8[REMOTE2_EMERG]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200590 lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
Wei Ni40465d92013-11-15 10:40:39 +0100591 LM90_REG_R_REMOTE_TEMPL,
592 &data->temp11[REMOTE2_TEMP]);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200593 if (!lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH, &h))
Wei Ni40465d92013-11-15 10:40:39 +0100594 data->temp11[REMOTE2_LOW] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200595 if (!lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH, &h))
Wei Ni40465d92013-11-15 10:40:39 +0100596 data->temp11[REMOTE2_HIGH] = h << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200597 lm90_select_remote_channel(client, data, 0);
598
599 if (!lm90_read_reg(client, MAX6696_REG_R_STATUS2,
600 &alarms))
601 data->alarms |= alarms << 8;
602 }
603
Guenter Roeckf36ffea2012-03-23 10:02:18 +0100604 /*
605 * Re-enable ALERT# output if it was originally enabled and
606 * relevant alarms are all clear
607 */
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200608 if ((data->config_orig & 0x80) == 0
609 && (data->alarms & data->alert_alarms) == 0) {
610 u8 config;
611
612 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
613 if (config & 0x80) {
614 dev_dbg(&client->dev, "Re-enabling ALERT#\n");
615 i2c_smbus_write_byte_data(client,
616 LM90_REG_W_CONFIG1,
617 config & ~0x80);
618 }
619 }
620
621 data->last_updated = jiffies;
622 data->valid = 1;
623 }
624
625 mutex_unlock(&data->update_lock);
626
627 return data;
628}
629
630/*
Nate Casecea50fe2008-10-17 17:51:10 +0200631 * Conversions
632 * For local temperatures and limits, critical limits and the hysteresis
633 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius.
634 * For remote temperatures and limits, it uses signed 11-bit values with
Ben Hutchings271dabf2008-10-17 17:51:11 +0200635 * LSB = 0.125 degree Celsius, left-justified in 16-bit registers. Some
636 * Maxim chips use unsigned values.
Nate Casecea50fe2008-10-17 17:51:10 +0200637 */
638
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200639static inline int temp_from_s8(s8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200640{
641 return val * 1000;
642}
643
Ben Hutchings271dabf2008-10-17 17:51:11 +0200644static inline int temp_from_u8(u8 val)
645{
646 return val * 1000;
647}
648
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200649static inline int temp_from_s16(s16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200650{
651 return val / 32 * 125;
652}
653
Ben Hutchings271dabf2008-10-17 17:51:11 +0200654static inline int temp_from_u16(u16 val)
655{
656 return val / 32 * 125;
657}
658
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200659static s8 temp_to_s8(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200660{
661 if (val <= -128000)
662 return -128;
663 if (val >= 127000)
664 return 127;
665 if (val < 0)
666 return (val - 500) / 1000;
667 return (val + 500) / 1000;
668}
669
Ben Hutchings271dabf2008-10-17 17:51:11 +0200670static u8 temp_to_u8(long val)
671{
672 if (val <= 0)
673 return 0;
674 if (val >= 255000)
675 return 255;
676 return (val + 500) / 1000;
677}
678
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200679static s16 temp_to_s16(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200680{
681 if (val <= -128000)
682 return 0x8000;
683 if (val >= 127875)
684 return 0x7FE0;
685 if (val < 0)
686 return (val - 62) / 125 * 32;
687 return (val + 62) / 125 * 32;
688}
689
690static u8 hyst_to_reg(long val)
691{
692 if (val <= 0)
693 return 0;
694 if (val >= 30500)
695 return 31;
696 return (val + 500) / 1000;
697}
698
699/*
Nate Case23b2d472008-10-17 17:51:10 +0200700 * ADT7461 in compatibility mode is almost identical to LM90 except that
701 * attempts to write values that are outside the range 0 < temp < 127 are
702 * treated as the boundary value.
703 *
704 * ADT7461 in "extended mode" operation uses unsigned integers offset by
705 * 64 (e.g., 0 -> -64 degC). The range is restricted to -64..191 degC.
Nate Casecea50fe2008-10-17 17:51:10 +0200706 */
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200707static inline int temp_from_u8_adt7461(struct lm90_data *data, u8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200708{
Nate Case23b2d472008-10-17 17:51:10 +0200709 if (data->flags & LM90_FLAG_ADT7461_EXT)
710 return (val - 64) * 1000;
711 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200712 return temp_from_s8(val);
Nate Casecea50fe2008-10-17 17:51:10 +0200713}
714
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200715static inline int temp_from_u16_adt7461(struct lm90_data *data, u16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200716{
Nate Case23b2d472008-10-17 17:51:10 +0200717 if (data->flags & LM90_FLAG_ADT7461_EXT)
718 return (val - 0x4000) / 64 * 250;
719 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200720 return temp_from_s16(val);
Nate Case23b2d472008-10-17 17:51:10 +0200721}
722
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200723static u8 temp_to_u8_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200724{
725 if (data->flags & LM90_FLAG_ADT7461_EXT) {
726 if (val <= -64000)
727 return 0;
728 if (val >= 191000)
729 return 0xFF;
730 return (val + 500 + 64000) / 1000;
731 } else {
732 if (val <= 0)
733 return 0;
734 if (val >= 127000)
735 return 127;
736 return (val + 500) / 1000;
737 }
738}
739
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200740static u16 temp_to_u16_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200741{
742 if (data->flags & LM90_FLAG_ADT7461_EXT) {
743 if (val <= -64000)
744 return 0;
745 if (val >= 191750)
746 return 0xFFC0;
747 return (val + 64000 + 125) / 250 * 64;
748 } else {
749 if (val <= 0)
750 return 0;
751 if (val >= 127750)
752 return 0x7FC0;
753 return (val + 125) / 250 * 64;
754 }
Nate Casecea50fe2008-10-17 17:51:10 +0200755}
756
757/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758 * Sysfs stuff
759 */
760
Jean Delvare30d73942005-06-05 21:27:28 +0200761static ssize_t show_temp8(struct device *dev, struct device_attribute *devattr,
762 char *buf)
763{
764 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
765 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200766 int temp;
767
Wei Ni1daaceb2013-11-15 10:40:39 +0100768 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200769 temp = temp_from_u8_adt7461(data, data->temp8[attr->index]);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200770 else if (data->kind == max6646)
771 temp = temp_from_u8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200772 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200773 temp = temp_from_s8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200774
Jean Delvare97ae60b2008-10-26 17:04:39 +0100775 /* +16 degrees offset for temp2 for the LM99 */
776 if (data->kind == lm99 && attr->index == 3)
777 temp += 16000;
778
Nate Case23b2d472008-10-17 17:51:10 +0200779 return sprintf(buf, "%d\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
Jean Delvare30d73942005-06-05 21:27:28 +0200782static ssize_t set_temp8(struct device *dev, struct device_attribute *devattr,
783 const char *buf, size_t count)
784{
Wei Ni40465d92013-11-15 10:40:39 +0100785 static const u8 reg[TEMP8_REG_NUM] = {
Jean Delvare30d73942005-06-05 21:27:28 +0200786 LM90_REG_W_LOCAL_LOW,
787 LM90_REG_W_LOCAL_HIGH,
788 LM90_REG_W_LOCAL_CRIT,
789 LM90_REG_W_REMOTE_CRIT,
Guenter Roeck69487082010-10-28 20:31:43 +0200790 MAX6659_REG_W_LOCAL_EMERG,
791 MAX6659_REG_W_REMOTE_EMERG,
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200792 LM90_REG_W_REMOTE_CRIT,
793 MAX6659_REG_W_REMOTE_EMERG,
Jean Delvare30d73942005-06-05 21:27:28 +0200794 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Jean Delvare30d73942005-06-05 21:27:28 +0200796 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
797 struct i2c_client *client = to_i2c_client(dev);
798 struct lm90_data *data = i2c_get_clientdata(client);
Jean Delvare30d73942005-06-05 21:27:28 +0200799 int nr = attr->index;
Guenter Roeck11e57812010-10-28 20:31:42 +0200800 long val;
801 int err;
802
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100803 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200804 if (err < 0)
805 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700806
Jean Delvare97ae60b2008-10-26 17:04:39 +0100807 /* +16 degrees offset for temp2 for the LM99 */
808 if (data->kind == lm99 && attr->index == 3)
809 val -= 16000;
810
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100811 mutex_lock(&data->update_lock);
Wei Ni1daaceb2013-11-15 10:40:39 +0100812 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200813 data->temp8[nr] = temp_to_u8_adt7461(data, val);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200814 else if (data->kind == max6646)
815 data->temp8[nr] = temp_to_u8(val);
Jean Delvare30d73942005-06-05 21:27:28 +0200816 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200817 data->temp8[nr] = temp_to_s8(val);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200818
819 lm90_select_remote_channel(client, data, nr >= 6);
Jean Delvaref65e1702008-10-17 17:51:09 +0200820 i2c_smbus_write_byte_data(client, reg[nr], data->temp8[nr]);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200821 lm90_select_remote_channel(client, data, 0);
822
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100823 mutex_unlock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200824 return count;
825}
826
827static ssize_t show_temp11(struct device *dev, struct device_attribute *devattr,
828 char *buf)
829{
Guenter Roeck96512862010-10-28 20:31:43 +0200830 struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
Jean Delvare30d73942005-06-05 21:27:28 +0200831 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200832 int temp;
833
Wei Ni1daaceb2013-11-15 10:40:39 +0100834 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200835 temp = temp_from_u16_adt7461(data, data->temp11[attr->index]);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200836 else if (data->kind == max6646)
837 temp = temp_from_u16(data->temp11[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200838 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200839 temp = temp_from_s16(data->temp11[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200840
Jean Delvare97ae60b2008-10-26 17:04:39 +0100841 /* +16 degrees offset for temp2 for the LM99 */
842 if (data->kind == lm99 && attr->index <= 2)
843 temp += 16000;
844
Nate Case23b2d472008-10-17 17:51:10 +0200845 return sprintf(buf, "%d\n", temp);
Jean Delvare30d73942005-06-05 21:27:28 +0200846}
847
848static ssize_t set_temp11(struct device *dev, struct device_attribute *devattr,
849 const char *buf, size_t count)
850{
Guenter Roeck96512862010-10-28 20:31:43 +0200851 struct {
852 u8 high;
853 u8 low;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200854 int channel;
855 } reg[5] = {
856 { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL, 0 },
857 { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL, 0 },
858 { LM90_REG_W_REMOTE_OFFSH, LM90_REG_W_REMOTE_OFFSL, 0 },
859 { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL, 1 },
860 { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL, 1 }
Jean Delvare30d73942005-06-05 21:27:28 +0200861 };
862
Guenter Roeck96512862010-10-28 20:31:43 +0200863 struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
Jean Delvare30d73942005-06-05 21:27:28 +0200864 struct i2c_client *client = to_i2c_client(dev);
865 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck96512862010-10-28 20:31:43 +0200866 int nr = attr->nr;
867 int index = attr->index;
Guenter Roeck11e57812010-10-28 20:31:42 +0200868 long val;
869 int err;
870
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100871 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200872 if (err < 0)
873 return err;
Jean Delvare30d73942005-06-05 21:27:28 +0200874
Jean Delvare97ae60b2008-10-26 17:04:39 +0100875 /* +16 degrees offset for temp2 for the LM99 */
Guenter Roeck96512862010-10-28 20:31:43 +0200876 if (data->kind == lm99 && index <= 2)
Jean Delvare97ae60b2008-10-26 17:04:39 +0100877 val -= 16000;
878
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100879 mutex_lock(&data->update_lock);
Wei Ni1daaceb2013-11-15 10:40:39 +0100880 if (data->kind == adt7461 || data->kind == tmp451)
Guenter Roeck96512862010-10-28 20:31:43 +0200881 data->temp11[index] = temp_to_u16_adt7461(data, val);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200882 else if (data->kind == max6646)
Guenter Roeck96512862010-10-28 20:31:43 +0200883 data->temp11[index] = temp_to_u8(val) << 8;
Guenter Roeck88073bb2010-10-28 20:31:43 +0200884 else if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
Guenter Roeck96512862010-10-28 20:31:43 +0200885 data->temp11[index] = temp_to_s16(val);
Guenter Roeck88073bb2010-10-28 20:31:43 +0200886 else
Guenter Roeck96512862010-10-28 20:31:43 +0200887 data->temp11[index] = temp_to_s8(val) << 8;
Jean Delvare5f502a82008-10-17 17:51:09 +0200888
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200889 lm90_select_remote_channel(client, data, reg[nr].channel);
Guenter Roeck96512862010-10-28 20:31:43 +0200890 i2c_smbus_write_byte_data(client, reg[nr].high,
891 data->temp11[index] >> 8);
Guenter Roeck88073bb2010-10-28 20:31:43 +0200892 if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
Guenter Roeck96512862010-10-28 20:31:43 +0200893 i2c_smbus_write_byte_data(client, reg[nr].low,
894 data->temp11[index] & 0xff);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200895 lm90_select_remote_channel(client, data, 0);
896
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100897 mutex_unlock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200898 return count;
899}
900
Guenter Roeck11e57812010-10-28 20:31:42 +0200901static ssize_t show_temphyst(struct device *dev,
902 struct device_attribute *devattr,
Jean Delvare30d73942005-06-05 21:27:28 +0200903 char *buf)
904{
905 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
906 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200907 int temp;
908
Wei Ni1daaceb2013-11-15 10:40:39 +0100909 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200910 temp = temp_from_u8_adt7461(data, data->temp8[attr->index]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100911 else if (data->kind == max6646)
912 temp = temp_from_u8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200913 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200914 temp = temp_from_s8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200915
Jean Delvare97ae60b2008-10-26 17:04:39 +0100916 /* +16 degrees offset for temp2 for the LM99 */
917 if (data->kind == lm99 && attr->index == 3)
918 temp += 16000;
919
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200920 return sprintf(buf, "%d\n", temp - temp_from_s8(data->temp_hyst));
Jean Delvare30d73942005-06-05 21:27:28 +0200921}
922
923static ssize_t set_temphyst(struct device *dev, struct device_attribute *dummy,
924 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925{
926 struct i2c_client *client = to_i2c_client(dev);
927 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck11e57812010-10-28 20:31:42 +0200928 long val;
929 int err;
Jean Delvareec38fa22008-10-26 17:04:39 +0100930 int temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100932 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200933 if (err < 0)
934 return err;
935
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100936 mutex_lock(&data->update_lock);
Wei Ni1daaceb2013-11-15 10:40:39 +0100937 if (data->kind == adt7461 || data->kind == tmp451)
Wei Ni40465d92013-11-15 10:40:39 +0100938 temp = temp_from_u8_adt7461(data, data->temp8[LOCAL_CRIT]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100939 else if (data->kind == max6646)
Wei Ni40465d92013-11-15 10:40:39 +0100940 temp = temp_from_u8(data->temp8[LOCAL_CRIT]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100941 else
Wei Ni40465d92013-11-15 10:40:39 +0100942 temp = temp_from_s8(data->temp8[LOCAL_CRIT]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100943
944 data->temp_hyst = hyst_to_reg(temp - val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 i2c_smbus_write_byte_data(client, LM90_REG_W_TCRIT_HYST,
Jean Delvareec38fa22008-10-26 17:04:39 +0100946 data->temp_hyst);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100947 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 return count;
949}
950
Jean Delvare30d73942005-06-05 21:27:28 +0200951static ssize_t show_alarms(struct device *dev, struct device_attribute *dummy,
952 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953{
954 struct lm90_data *data = lm90_update_device(dev);
955 return sprintf(buf, "%d\n", data->alarms);
956}
957
Jean Delvare2d457712006-09-24 20:52:15 +0200958static ssize_t show_alarm(struct device *dev, struct device_attribute
959 *devattr, char *buf)
960{
961 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
962 struct lm90_data *data = lm90_update_device(dev);
963 int bitnr = attr->index;
964
965 return sprintf(buf, "%d\n", (data->alarms >> bitnr) & 1);
966}
967
Guenter Roeck0c01b642010-10-28 20:31:44 +0200968static ssize_t show_update_interval(struct device *dev,
969 struct device_attribute *attr, char *buf)
970{
971 struct lm90_data *data = dev_get_drvdata(dev);
972
973 return sprintf(buf, "%u\n", data->update_interval);
974}
975
976static ssize_t set_update_interval(struct device *dev,
977 struct device_attribute *attr,
978 const char *buf, size_t count)
979{
980 struct i2c_client *client = to_i2c_client(dev);
981 struct lm90_data *data = i2c_get_clientdata(client);
982 unsigned long val;
983 int err;
984
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100985 err = kstrtoul(buf, 10, &val);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200986 if (err)
987 return err;
988
989 mutex_lock(&data->update_lock);
Guenter Roeck2a844c12013-01-09 08:09:34 -0800990 lm90_set_convrate(client, data, clamp_val(val, 0, 100000));
Guenter Roeck0c01b642010-10-28 20:31:44 +0200991 mutex_unlock(&data->update_lock);
992
993 return count;
994}
995
Wei Ni40465d92013-11-15 10:40:39 +0100996static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp11, NULL,
997 0, LOCAL_TEMP);
998static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp11, NULL,
999 0, REMOTE_TEMP);
Jean Delvare30d73942005-06-05 21:27:28 +02001000static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001001 set_temp8, LOCAL_LOW);
Guenter Roeck96512862010-10-28 20:31:43 +02001002static SENSOR_DEVICE_ATTR_2(temp2_min, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001003 set_temp11, 0, REMOTE_LOW);
Jean Delvare30d73942005-06-05 21:27:28 +02001004static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001005 set_temp8, LOCAL_HIGH);
Guenter Roeck96512862010-10-28 20:31:43 +02001006static SENSOR_DEVICE_ATTR_2(temp2_max, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001007 set_temp11, 1, REMOTE_HIGH);
Jean Delvare30d73942005-06-05 21:27:28 +02001008static SENSOR_DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001009 set_temp8, LOCAL_CRIT);
Jean Delvare30d73942005-06-05 21:27:28 +02001010static SENSOR_DEVICE_ATTR(temp2_crit, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001011 set_temp8, REMOTE_CRIT);
Jean Delvare30d73942005-06-05 21:27:28 +02001012static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001013 set_temphyst, LOCAL_CRIT);
1014static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, show_temphyst, NULL,
1015 REMOTE_CRIT);
Guenter Roeck96512862010-10-28 20:31:43 +02001016static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001017 set_temp11, 2, REMOTE_OFFSET);
Jean Delvare2d457712006-09-24 20:52:15 +02001018
1019/* Individual alarm files */
1020static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 0);
1021static SENSOR_DEVICE_ATTR(temp2_crit_alarm, S_IRUGO, show_alarm, NULL, 1);
Jean Delvare7817a392007-06-09 10:11:16 -04001022static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 2);
Jean Delvare2d457712006-09-24 20:52:15 +02001023static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3);
1024static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 4);
1025static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 5);
1026static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 6);
1027/* Raw alarm file for compatibility */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001028static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
1029
Guenter Roeck0c01b642010-10-28 20:31:44 +02001030static DEVICE_ATTR(update_interval, S_IRUGO | S_IWUSR, show_update_interval,
1031 set_update_interval);
1032
Jean Delvare0e39e012006-09-24 21:16:40 +02001033static struct attribute *lm90_attributes[] = {
1034 &sensor_dev_attr_temp1_input.dev_attr.attr,
1035 &sensor_dev_attr_temp2_input.dev_attr.attr,
1036 &sensor_dev_attr_temp1_min.dev_attr.attr,
1037 &sensor_dev_attr_temp2_min.dev_attr.attr,
1038 &sensor_dev_attr_temp1_max.dev_attr.attr,
1039 &sensor_dev_attr_temp2_max.dev_attr.attr,
1040 &sensor_dev_attr_temp1_crit.dev_attr.attr,
1041 &sensor_dev_attr_temp2_crit.dev_attr.attr,
1042 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
1043 &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr,
1044
1045 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
1046 &sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
Jean Delvare7817a392007-06-09 10:11:16 -04001047 &sensor_dev_attr_temp2_fault.dev_attr.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +02001048 &sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
1049 &sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
1050 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
1051 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
1052 &dev_attr_alarms.attr,
Guenter Roeck0c01b642010-10-28 20:31:44 +02001053 &dev_attr_update_interval.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +02001054 NULL
1055};
1056
1057static const struct attribute_group lm90_group = {
1058 .attrs = lm90_attributes,
1059};
1060
Guenter Roeck742192f2014-04-04 18:01:34 +02001061static struct attribute *lm90_temp2_offset_attributes[] = {
1062 &sensor_dev_attr_temp2_offset.dev_attr.attr,
1063 NULL
1064};
1065
1066static const struct attribute_group lm90_temp2_offset_group = {
1067 .attrs = lm90_temp2_offset_attributes,
1068};
1069
Guenter Roeck69487082010-10-28 20:31:43 +02001070/*
1071 * Additional attributes for devices with emergency sensors
1072 */
1073static SENSOR_DEVICE_ATTR(temp1_emergency, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001074 set_temp8, LOCAL_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001075static SENSOR_DEVICE_ATTR(temp2_emergency, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001076 set_temp8, REMOTE_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001077static SENSOR_DEVICE_ATTR(temp1_emergency_hyst, S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001078 NULL, LOCAL_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001079static SENSOR_DEVICE_ATTR(temp2_emergency_hyst, S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001080 NULL, REMOTE_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001081
1082static struct attribute *lm90_emergency_attributes[] = {
1083 &sensor_dev_attr_temp1_emergency.dev_attr.attr,
1084 &sensor_dev_attr_temp2_emergency.dev_attr.attr,
1085 &sensor_dev_attr_temp1_emergency_hyst.dev_attr.attr,
1086 &sensor_dev_attr_temp2_emergency_hyst.dev_attr.attr,
1087 NULL
1088};
1089
1090static const struct attribute_group lm90_emergency_group = {
1091 .attrs = lm90_emergency_attributes,
1092};
1093
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001094static SENSOR_DEVICE_ATTR(temp1_emergency_alarm, S_IRUGO, show_alarm, NULL, 15);
1095static SENSOR_DEVICE_ATTR(temp2_emergency_alarm, S_IRUGO, show_alarm, NULL, 13);
1096
1097static struct attribute *lm90_emergency_alarm_attributes[] = {
1098 &sensor_dev_attr_temp1_emergency_alarm.dev_attr.attr,
1099 &sensor_dev_attr_temp2_emergency_alarm.dev_attr.attr,
1100 NULL
1101};
1102
1103static const struct attribute_group lm90_emergency_alarm_group = {
1104 .attrs = lm90_emergency_alarm_attributes,
1105};
1106
1107/*
1108 * Additional attributes for devices with 3 temperature sensors
1109 */
Wei Ni40465d92013-11-15 10:40:39 +01001110static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp11, NULL,
1111 0, REMOTE2_TEMP);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001112static SENSOR_DEVICE_ATTR_2(temp3_min, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001113 set_temp11, 3, REMOTE2_LOW);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001114static SENSOR_DEVICE_ATTR_2(temp3_max, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001115 set_temp11, 4, REMOTE2_HIGH);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001116static SENSOR_DEVICE_ATTR(temp3_crit, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001117 set_temp8, REMOTE2_CRIT);
1118static SENSOR_DEVICE_ATTR(temp3_crit_hyst, S_IRUGO, show_temphyst, NULL,
1119 REMOTE2_CRIT);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001120static SENSOR_DEVICE_ATTR(temp3_emergency, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001121 set_temp8, REMOTE2_EMERG);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001122static SENSOR_DEVICE_ATTR(temp3_emergency_hyst, S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001123 NULL, REMOTE2_EMERG);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001124
1125static SENSOR_DEVICE_ATTR(temp3_crit_alarm, S_IRUGO, show_alarm, NULL, 9);
1126static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL, 10);
1127static SENSOR_DEVICE_ATTR(temp3_min_alarm, S_IRUGO, show_alarm, NULL, 11);
1128static SENSOR_DEVICE_ATTR(temp3_max_alarm, S_IRUGO, show_alarm, NULL, 12);
1129static SENSOR_DEVICE_ATTR(temp3_emergency_alarm, S_IRUGO, show_alarm, NULL, 14);
1130
1131static struct attribute *lm90_temp3_attributes[] = {
1132 &sensor_dev_attr_temp3_input.dev_attr.attr,
1133 &sensor_dev_attr_temp3_min.dev_attr.attr,
1134 &sensor_dev_attr_temp3_max.dev_attr.attr,
1135 &sensor_dev_attr_temp3_crit.dev_attr.attr,
1136 &sensor_dev_attr_temp3_crit_hyst.dev_attr.attr,
1137 &sensor_dev_attr_temp3_emergency.dev_attr.attr,
1138 &sensor_dev_attr_temp3_emergency_hyst.dev_attr.attr,
1139
1140 &sensor_dev_attr_temp3_fault.dev_attr.attr,
1141 &sensor_dev_attr_temp3_min_alarm.dev_attr.attr,
1142 &sensor_dev_attr_temp3_max_alarm.dev_attr.attr,
1143 &sensor_dev_attr_temp3_crit_alarm.dev_attr.attr,
1144 &sensor_dev_attr_temp3_emergency_alarm.dev_attr.attr,
1145 NULL
1146};
1147
1148static const struct attribute_group lm90_temp3_group = {
1149 .attrs = lm90_temp3_attributes,
1150};
1151
Jean Delvarec3df5802005-10-26 21:39:40 +02001152/* pec used for ADM1032 only */
1153static ssize_t show_pec(struct device *dev, struct device_attribute *dummy,
1154 char *buf)
1155{
1156 struct i2c_client *client = to_i2c_client(dev);
1157 return sprintf(buf, "%d\n", !!(client->flags & I2C_CLIENT_PEC));
1158}
1159
1160static ssize_t set_pec(struct device *dev, struct device_attribute *dummy,
1161 const char *buf, size_t count)
1162{
1163 struct i2c_client *client = to_i2c_client(dev);
Guenter Roeck11e57812010-10-28 20:31:42 +02001164 long val;
1165 int err;
1166
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001167 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +02001168 if (err < 0)
1169 return err;
Jean Delvarec3df5802005-10-26 21:39:40 +02001170
1171 switch (val) {
1172 case 0:
1173 client->flags &= ~I2C_CLIENT_PEC;
1174 break;
1175 case 1:
1176 client->flags |= I2C_CLIENT_PEC;
1177 break;
1178 default:
1179 return -EINVAL;
1180 }
1181
1182 return count;
1183}
1184
1185static DEVICE_ATTR(pec, S_IWUSR | S_IRUGO, show_pec, set_pec);
1186
Linus Torvalds1da177e2005-04-16 15:20:36 -07001187/*
1188 * Real code
1189 */
1190
Jean Delvare9b0e8522008-07-16 19:30:15 +02001191/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001192static int lm90_detect(struct i2c_client *client,
Jean Delvare9b0e8522008-07-16 19:30:15 +02001193 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001194{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001195 struct i2c_adapter *adapter = client->adapter;
1196 int address = client->addr;
Jean Delvare8f2fa772009-12-09 20:35:53 +01001197 const char *name = NULL;
Jean Delvareb2589ab2011-11-04 12:00:47 +01001198 int man_id, chip_id, config1, config2, convrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
1200 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvare9b0e8522008-07-16 19:30:15 +02001201 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001202
Jean Delvare8f2fa772009-12-09 20:35:53 +01001203 /* detection and identification */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001204 man_id = i2c_smbus_read_byte_data(client, LM90_REG_R_MAN_ID);
1205 chip_id = i2c_smbus_read_byte_data(client, LM90_REG_R_CHIP_ID);
1206 config1 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG1);
1207 convrate = i2c_smbus_read_byte_data(client, LM90_REG_R_CONVRATE);
1208 if (man_id < 0 || chip_id < 0 || config1 < 0 || convrate < 0)
Jean Delvare8f2fa772009-12-09 20:35:53 +01001209 return -ENODEV;
1210
Jean Delvaref90be422011-07-24 20:37:05 +02001211 if (man_id == 0x01 || man_id == 0x5C || man_id == 0x41) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001212 config2 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG2);
1213 if (config2 < 0)
Jean Delvare9b0e8522008-07-16 19:30:15 +02001214 return -ENODEV;
Jean Delvaref90be422011-07-24 20:37:05 +02001215 } else
Jean Delvareb2589ab2011-11-04 12:00:47 +01001216 config2 = 0; /* Make compiler happy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217
Jean Delvaref90be422011-07-24 20:37:05 +02001218 if ((address == 0x4C || address == 0x4D)
1219 && man_id == 0x01) { /* National Semiconductor */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001220 if ((config1 & 0x2A) == 0x00
1221 && (config2 & 0xF8) == 0x00
1222 && convrate <= 0x09) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001223 if (address == 0x4C
1224 && (chip_id & 0xF0) == 0x20) { /* LM90 */
1225 name = "lm90";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001227 if ((chip_id & 0xF0) == 0x30) { /* LM89/LM99 */
1228 name = "lm99";
1229 dev_info(&adapter->dev,
1230 "Assuming LM99 chip at 0x%02x\n",
1231 address);
1232 dev_info(&adapter->dev,
1233 "If it is an LM89, instantiate it "
1234 "with the new_device sysfs "
1235 "interface\n");
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -04001236 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001237 if (address == 0x4C
1238 && (chip_id & 0xF0) == 0x10) { /* LM86 */
1239 name = "lm86";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 }
1241 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001242 } else
1243 if ((address == 0x4C || address == 0x4D)
1244 && man_id == 0x41) { /* Analog Devices */
1245 if ((chip_id & 0xF0) == 0x40 /* ADM1032 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001246 && (config1 & 0x3F) == 0x00
1247 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001248 name = "adm1032";
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001249 /*
1250 * The ADM1032 supports PEC, but only if combined
1251 * transactions are not used.
1252 */
Jean Delvare8f2fa772009-12-09 20:35:53 +01001253 if (i2c_check_functionality(adapter,
1254 I2C_FUNC_SMBUS_BYTE))
1255 info->flags |= I2C_CLIENT_PEC;
1256 } else
1257 if (chip_id == 0x51 /* ADT7461 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001258 && (config1 & 0x1B) == 0x00
1259 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001260 name = "adt7461";
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001261 } else
1262 if (chip_id == 0x57 /* ADT7461A, NCT1008 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001263 && (config1 & 0x1B) == 0x00
1264 && convrate <= 0x0A) {
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001265 name = "adt7461a";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001266 }
1267 } else
1268 if (man_id == 0x4D) { /* Maxim */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001269 int emerg, emerg2, status2;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001270
1271 /*
1272 * We read MAX6659_REG_R_REMOTE_EMERG twice, and re-read
1273 * LM90_REG_R_MAN_ID in between. If MAX6659_REG_R_REMOTE_EMERG
1274 * exists, both readings will reflect the same value. Otherwise,
1275 * the readings will be different.
1276 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001277 emerg = i2c_smbus_read_byte_data(client,
1278 MAX6659_REG_R_REMOTE_EMERG);
1279 man_id = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001280 LM90_REG_R_MAN_ID);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001281 emerg2 = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001282 MAX6659_REG_R_REMOTE_EMERG);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001283 status2 = i2c_smbus_read_byte_data(client,
1284 MAX6696_REG_R_STATUS2);
1285 if (emerg < 0 || man_id < 0 || emerg2 < 0 || status2 < 0)
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001286 return -ENODEV;
1287
Jean Delvare8f2fa772009-12-09 20:35:53 +01001288 /*
1289 * The MAX6657, MAX6658 and MAX6659 do NOT have a chip_id
1290 * register. Reading from that address will return the last
1291 * read value, which in our case is those of the man_id
1292 * register. Likewise, the config1 register seems to lack a
1293 * low nibble, so the value will be those of the previous
1294 * read, so in our case those of the man_id register.
Guenter Roeck13c84952010-10-28 20:31:43 +02001295 * MAX6659 has a third set of upper temperature limit registers.
1296 * Those registers also return values on MAX6657 and MAX6658,
1297 * thus the only way to detect MAX6659 is by its address.
1298 * For this reason it will be mis-detected as MAX6657 if its
1299 * address is 0x4C.
Jean Delvare8f2fa772009-12-09 20:35:53 +01001300 */
1301 if (chip_id == man_id
Guenter Roeck13c84952010-10-28 20:31:43 +02001302 && (address == 0x4C || address == 0x4D || address == 0x4E)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001303 && (config1 & 0x1F) == (man_id & 0x0F)
1304 && convrate <= 0x09) {
Guenter Roeck13c84952010-10-28 20:31:43 +02001305 if (address == 0x4C)
1306 name = "max6657";
1307 else
1308 name = "max6659";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001309 } else
1310 /*
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001311 * Even though MAX6695 and MAX6696 do not have a chip ID
1312 * register, reading it returns 0x01. Bit 4 of the config1
1313 * register is unused and should return zero when read. Bit 0 of
1314 * the status2 register is unused and should return zero when
1315 * read.
1316 *
1317 * MAX6695 and MAX6696 have an additional set of temperature
1318 * limit registers. We can detect those chips by checking if
1319 * one of those registers exists.
1320 */
1321 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001322 && (config1 & 0x10) == 0x00
1323 && (status2 & 0x01) == 0x00
1324 && emerg == emerg2
1325 && convrate <= 0x07) {
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001326 name = "max6696";
1327 } else
1328 /*
Jean Delvare8f2fa772009-12-09 20:35:53 +01001329 * The chip_id register of the MAX6680 and MAX6681 holds the
1330 * revision of the chip. The lowest bit of the config1 register
1331 * is unused and should return zero when read, so should the
1332 * second to last bit of config1 (software reset).
1333 */
1334 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001335 && (config1 & 0x03) == 0x00
1336 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001337 name = "max6680";
1338 } else
1339 /*
1340 * The chip_id register of the MAX6646/6647/6649 holds the
1341 * revision of the chip. The lowest 6 bits of the config1
1342 * register are unused and should return zero when read.
1343 */
1344 if (chip_id == 0x59
Jean Delvareb2589ab2011-11-04 12:00:47 +01001345 && (config1 & 0x3f) == 0x00
1346 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001347 name = "max6646";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001348 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001349 } else
1350 if (address == 0x4C
1351 && man_id == 0x5C) { /* Winbond/Nuvoton */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001352 if ((config1 & 0x2A) == 0x00
1353 && (config2 & 0xF8) == 0x00) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001354 if (chip_id == 0x01 /* W83L771W/G */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001355 && convrate <= 0x09) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001356 name = "w83l771";
1357 } else
1358 if ((chip_id & 0xFE) == 0x10 /* W83L771AWG/ASG */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001359 && convrate <= 0x08) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001360 name = "w83l771";
1361 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001362 }
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001363 } else
Jean Delvare6d101c52011-07-24 20:36:15 +02001364 if (address >= 0x48 && address <= 0x4F
1365 && man_id == 0xA1) { /* NXP Semiconductor/Philips */
Jean Delvare6d101c52011-07-24 20:36:15 +02001366 if (chip_id == 0x00
Jean Delvareb2589ab2011-11-04 12:00:47 +01001367 && (config1 & 0x2A) == 0x00
1368 && (config2 & 0xFE) == 0x00
1369 && convrate <= 0x09) {
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001370 name = "sa56004";
1371 }
Guenter Roeckae544f62012-03-23 10:02:18 +01001372 } else
1373 if ((address == 0x4C || address == 0x4D)
1374 && man_id == 0x47) { /* GMT */
1375 if (chip_id == 0x01 /* G781 */
1376 && (config1 & 0x3F) == 0x00
1377 && convrate <= 0x08)
1378 name = "g781";
Wei Ni1daaceb2013-11-15 10:40:39 +01001379 } else
1380 if (address == 0x4C
1381 && man_id == 0x55) { /* Texas Instruments */
1382 int local_ext;
1383
1384 local_ext = i2c_smbus_read_byte_data(client,
1385 TMP451_REG_R_LOCAL_TEMPL);
1386
1387 if (chip_id == 0x00 /* TMP451 */
1388 && (config1 & 0x1B) == 0x00
1389 && convrate <= 0x09
1390 && (local_ext & 0x0F) == 0x00)
1391 name = "tmp451";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001392 }
1393
Jean Delvare8f2fa772009-12-09 20:35:53 +01001394 if (!name) { /* identification failed */
1395 dev_dbg(&adapter->dev,
1396 "Unsupported chip at 0x%02x (man_id=0x%02X, "
1397 "chip_id=0x%02X)\n", address, man_id, chip_id);
1398 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001400
Jean Delvare9b0e8522008-07-16 19:30:15 +02001401 strlcpy(info->type, name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402
Jean Delvare9b0e8522008-07-16 19:30:15 +02001403 return 0;
1404}
1405
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001406static void lm90_restore_conf(struct i2c_client *client, struct lm90_data *data)
1407{
1408 /* Restore initial configuration */
1409 i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE,
1410 data->convrate_orig);
1411 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
1412 data->config_orig);
1413}
1414
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001415static void lm90_init_client(struct i2c_client *client)
1416{
Guenter Roeck0c01b642010-10-28 20:31:44 +02001417 u8 config, convrate;
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001418 struct lm90_data *data = i2c_get_clientdata(client);
1419
Guenter Roeck0c01b642010-10-28 20:31:44 +02001420 if (lm90_read_reg(client, LM90_REG_R_CONVRATE, &convrate) < 0) {
1421 dev_warn(&client->dev, "Failed to read convrate register!\n");
1422 convrate = LM90_DEF_CONVRATE_RVAL;
1423 }
1424 data->convrate_orig = convrate;
1425
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001426 /*
1427 * Start the conversions.
1428 */
Guenter Roeck0c01b642010-10-28 20:31:44 +02001429 lm90_set_convrate(client, data, 500); /* 500ms; 2Hz conversion rate */
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001430 if (lm90_read_reg(client, LM90_REG_R_CONFIG1, &config) < 0) {
1431 dev_warn(&client->dev, "Initialization failed!\n");
1432 return;
1433 }
1434 data->config_orig = config;
1435
1436 /* Check Temperature Range Select */
Wei Ni1daaceb2013-11-15 10:40:39 +01001437 if (data->kind == adt7461 || data->kind == tmp451) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001438 if (config & 0x04)
1439 data->flags |= LM90_FLAG_ADT7461_EXT;
1440 }
1441
1442 /*
1443 * Put MAX6680/MAX8881 into extended resolution (bit 0x10,
1444 * 0.125 degree resolution) and range (0x08, extend range
1445 * to -64 degree) mode for the remote temperature sensor.
1446 */
1447 if (data->kind == max6680)
1448 config |= 0x18;
1449
1450 /*
1451 * Select external channel 0 for max6695/96
1452 */
1453 if (data->kind == max6696)
1454 config &= ~0x08;
1455
1456 config &= 0xBF; /* run */
1457 if (config != data->config_orig) /* Only write if changed */
1458 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1, config);
1459}
1460
Wei Ni072de492013-11-15 10:40:38 +01001461static bool lm90_is_tripped(struct i2c_client *client, u16 *status)
1462{
1463 struct lm90_data *data = i2c_get_clientdata(client);
1464 u8 st, st2 = 0;
1465
1466 lm90_read_reg(client, LM90_REG_R_STATUS, &st);
1467
1468 if (data->kind == max6696)
1469 lm90_read_reg(client, MAX6696_REG_R_STATUS2, &st2);
1470
1471 *status = st | (st2 << 8);
1472
1473 if ((st & 0x7f) == 0 && (st2 & 0xfe) == 0)
1474 return false;
1475
1476 if ((st & (LM90_STATUS_LLOW | LM90_STATUS_LHIGH | LM90_STATUS_LTHRM)) ||
1477 (st2 & MAX6696_STATUS2_LOT2))
1478 dev_warn(&client->dev,
1479 "temp%d out of range, please check!\n", 1);
1480 if ((st & (LM90_STATUS_RLOW | LM90_STATUS_RHIGH | LM90_STATUS_RTHRM)) ||
1481 (st2 & MAX6696_STATUS2_ROT2))
1482 dev_warn(&client->dev,
1483 "temp%d out of range, please check!\n", 2);
1484 if (st & LM90_STATUS_ROPEN)
1485 dev_warn(&client->dev,
1486 "temp%d diode open, please check!\n", 2);
1487 if (st2 & (MAX6696_STATUS2_R2LOW | MAX6696_STATUS2_R2HIGH |
1488 MAX6696_STATUS2_R2THRM | MAX6696_STATUS2_R2OT2))
1489 dev_warn(&client->dev,
1490 "temp%d out of range, please check!\n", 3);
1491 if (st2 & MAX6696_STATUS2_R2OPEN)
1492 dev_warn(&client->dev,
1493 "temp%d diode open, please check!\n", 3);
1494
1495 return true;
1496}
1497
Wei Ni109b1282013-11-15 10:40:39 +01001498static irqreturn_t lm90_irq_thread(int irq, void *dev_id)
1499{
1500 struct i2c_client *client = dev_id;
1501 u16 status;
1502
1503 if (lm90_is_tripped(client, &status))
1504 return IRQ_HANDLED;
1505 else
1506 return IRQ_NONE;
1507}
1508
Jean Delvareb2589ab2011-11-04 12:00:47 +01001509static int lm90_probe(struct i2c_client *client,
Jean Delvare9b0e8522008-07-16 19:30:15 +02001510 const struct i2c_device_id *id)
1511{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001512 struct device *dev = &client->dev;
1513 struct i2c_adapter *adapter = to_i2c_adapter(dev->parent);
Jean Delvare9b0e8522008-07-16 19:30:15 +02001514 struct lm90_data *data;
Wei Ni3e0f9642013-11-15 10:40:39 +01001515 struct regulator *regulator;
Guenter Roeck084489e2014-04-04 18:01:35 +02001516 int groups = 0;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001517 int err;
1518
Wei Ni3e0f9642013-11-15 10:40:39 +01001519 regulator = devm_regulator_get(dev, "vcc");
1520 if (IS_ERR(regulator))
1521 return PTR_ERR(regulator);
1522
1523 err = regulator_enable(regulator);
1524 if (err < 0) {
Guenter Roeckd89fa682014-04-04 18:01:35 +02001525 dev_err(dev, "Failed to enable regulator: %d\n", err);
Wei Ni3e0f9642013-11-15 10:40:39 +01001526 return err;
1527 }
1528
Guenter Roeckd89fa682014-04-04 18:01:35 +02001529 data = devm_kzalloc(dev, sizeof(struct lm90_data), GFP_KERNEL);
Guenter Roeck20f426f2012-06-02 09:58:10 -07001530 if (!data)
1531 return -ENOMEM;
1532
Jean Delvareb2589ab2011-11-04 12:00:47 +01001533 i2c_set_clientdata(client, data);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001534 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535
Wei Ni3e0f9642013-11-15 10:40:39 +01001536 data->regulator = regulator;
1537
Jean Delvare9b0e8522008-07-16 19:30:15 +02001538 /* Set the device type */
1539 data->kind = id->driver_data;
1540 if (data->kind == adm1032) {
1541 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
Jean Delvareb2589ab2011-11-04 12:00:47 +01001542 client->flags &= ~I2C_CLIENT_PEC;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001543 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001545 /*
1546 * Different devices have different alarm bits triggering the
1547 * ALERT# output
1548 */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001549 data->alert_alarms = lm90_params[data->kind].alert_alarms;
Jean Delvare53de3342010-03-05 22:17:15 +01001550
Guenter Roeck88073bb2010-10-28 20:31:43 +02001551 /* Set chip capabilities */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001552 data->flags = lm90_params[data->kind].flags;
Jean Delvarea095f682011-07-27 23:22:25 -07001553 data->reg_local_ext = lm90_params[data->kind].reg_local_ext;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001554
Guenter Roeck0c01b642010-10-28 20:31:44 +02001555 /* Set maximum conversion rate */
1556 data->max_convrate = lm90_params[data->kind].max_convrate;
1557
Linus Torvalds1da177e2005-04-16 15:20:36 -07001558 /* Initialize the LM90 chip */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001559 lm90_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560
1561 /* Register sysfs hooks */
Guenter Roeck084489e2014-04-04 18:01:35 +02001562 data->groups[groups++] = &lm90_group;
1563
1564 if (data->flags & LM90_HAVE_OFFSET)
1565 data->groups[groups++] = &lm90_temp2_offset_group;
1566
1567 if (data->flags & LM90_HAVE_EMERGENCY)
1568 data->groups[groups++] = &lm90_emergency_group;
1569
1570 if (data->flags & LM90_HAVE_EMERGENCY_ALARM)
1571 data->groups[groups++] = &lm90_emergency_alarm_group;
1572
1573 if (data->flags & LM90_HAVE_TEMP3)
1574 data->groups[groups++] = &lm90_temp3_group;
1575
Jean Delvareb2589ab2011-11-04 12:00:47 +01001576 if (client->flags & I2C_CLIENT_PEC) {
1577 err = device_create_file(dev, &dev_attr_pec);
Guenter Roeck11e57812010-10-28 20:31:42 +02001578 if (err)
Guenter Roeck084489e2014-04-04 18:01:35 +02001579 goto exit_restore;
Jean Delvare0e39e012006-09-24 21:16:40 +02001580 }
Guenter Roeck084489e2014-04-04 18:01:35 +02001581
1582 err = sysfs_create_groups(&dev->kobj, data->groups);
1583 if (err)
1584 goto exit_remove_pec;
Jean Delvare0e39e012006-09-24 21:16:40 +02001585
Jean Delvareb2589ab2011-11-04 12:00:47 +01001586 data->hwmon_dev = hwmon_device_register(dev);
Tony Jones1beeffe2007-08-20 13:46:20 -07001587 if (IS_ERR(data->hwmon_dev)) {
1588 err = PTR_ERR(data->hwmon_dev);
Jean Delvare0e39e012006-09-24 21:16:40 +02001589 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001590 }
1591
Wei Ni109b1282013-11-15 10:40:39 +01001592 if (client->irq) {
1593 dev_dbg(dev, "IRQ: %d\n", client->irq);
1594 err = devm_request_threaded_irq(dev, client->irq,
1595 NULL, lm90_irq_thread,
1596 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
1597 "lm90", client);
1598 if (err < 0) {
1599 dev_err(dev, "cannot request IRQ %d\n", client->irq);
Guenter Roeck3d489ac2013-12-12 08:05:32 +01001600 goto exit_unregister;
Wei Ni109b1282013-11-15 10:40:39 +01001601 }
1602 }
1603
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604 return 0;
1605
Guenter Roeck3d489ac2013-12-12 08:05:32 +01001606exit_unregister:
1607 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare0e39e012006-09-24 21:16:40 +02001608exit_remove_files:
Guenter Roeck084489e2014-04-04 18:01:35 +02001609 sysfs_remove_groups(&dev->kobj, data->groups);
1610exit_remove_pec:
1611 device_remove_file(dev, &dev_attr_pec);
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001612exit_restore:
1613 lm90_restore_conf(client, data);
Wei Ni3e0f9642013-11-15 10:40:39 +01001614 regulator_disable(data->regulator);
1615
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 return err;
1617}
1618
Jean Delvare9b0e8522008-07-16 19:30:15 +02001619static int lm90_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620{
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001621 struct lm90_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001622
Tony Jones1beeffe2007-08-20 13:46:20 -07001623 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeck084489e2014-04-04 18:01:35 +02001624 sysfs_remove_groups(&client->dev.kobj, data->groups);
1625 device_remove_file(&client->dev, &dev_attr_pec);
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001626 lm90_restore_conf(client, data);
Wei Ni3e0f9642013-11-15 10:40:39 +01001627 regulator_disable(data->regulator);
Jean Delvare95238362010-03-05 22:17:14 +01001628
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 return 0;
1630}
1631
Jean Delvare53de3342010-03-05 22:17:15 +01001632static void lm90_alert(struct i2c_client *client, unsigned int flag)
1633{
Wei Ni072de492013-11-15 10:40:38 +01001634 u16 alarms;
Jean Delvare53de3342010-03-05 22:17:15 +01001635
Wei Ni072de492013-11-15 10:40:38 +01001636 if (lm90_is_tripped(client, &alarms)) {
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001637 /*
1638 * Disable ALERT# output, because these chips don't implement
1639 * SMBus alert correctly; they should only hold the alert line
1640 * low briefly.
1641 */
Wei Ni072de492013-11-15 10:40:38 +01001642 struct lm90_data *data = i2c_get_clientdata(client);
1643
Guenter Roeck11793242010-10-28 20:31:44 +02001644 if ((data->flags & LM90_HAVE_BROKEN_ALERT)
Jean Delvare53de3342010-03-05 22:17:15 +01001645 && (alarms & data->alert_alarms)) {
Wei Ni072de492013-11-15 10:40:38 +01001646 u8 config;
Jean Delvare53de3342010-03-05 22:17:15 +01001647 dev_dbg(&client->dev, "Disabling ALERT#\n");
1648 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
1649 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
1650 config | 0x80);
1651 }
Wei Ni072de492013-11-15 10:40:38 +01001652 } else {
1653 dev_info(&client->dev, "Everything OK\n");
Jean Delvare53de3342010-03-05 22:17:15 +01001654 }
1655}
1656
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001657static struct i2c_driver lm90_driver = {
1658 .class = I2C_CLASS_HWMON,
1659 .driver = {
1660 .name = "lm90",
1661 },
1662 .probe = lm90_probe,
1663 .remove = lm90_remove,
1664 .alert = lm90_alert,
1665 .id_table = lm90_id,
1666 .detect = lm90_detect,
1667 .address_list = normal_i2c,
1668};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001669
Axel Linf0967ee2012-01-20 15:38:18 +08001670module_i2c_driver(lm90_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671
Jean Delvare7c81c602014-01-29 20:40:08 +01001672MODULE_AUTHOR("Jean Delvare <jdelvare@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001673MODULE_DESCRIPTION("LM90/ADM1032 driver");
1674MODULE_LICENSE("GPL");