blob: 2a330bdbf1bc3db921a2752b95f2005f0440b71a [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_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 {
Guenter Roeck1de8b252014-04-04 18:01:35 +0200367 struct i2c_client *client;
Guenter Roeck084489e2014-04-04 18:01:35 +0200368 const struct attribute_group *groups[6];
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100369 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370 char valid; /* zero until following fields are valid */
371 unsigned long last_updated; /* in jiffies */
372 int kind;
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200373 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374
Wolfram Sang38bab982016-06-05 09:35:43 +0200375 unsigned int update_interval; /* in milliseconds */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200376
Jean Delvare95238362010-03-05 22:17:14 +0100377 u8 config_orig; /* Original configuration register value */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200378 u8 convrate_orig; /* Original conversion rate register value */
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200379 u16 alert_alarms; /* Which alarm bits trigger ALERT# */
380 /* Upper 8 bits for max6695/96 */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200381 u8 max_convrate; /* Maximum conversion rate */
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000382 u8 reg_local_ext; /* local extension register offset */
Jean Delvare95238362010-03-05 22:17:14 +0100383
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 /* registers values */
Wei Ni40465d92013-11-15 10:40:39 +0100385 s8 temp8[TEMP8_REG_NUM];
386 s16 temp11[TEMP11_REG_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 u8 temp_hyst;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200388 u16 alarms; /* bitvector (upper 8 bits for max6695/96) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389};
390
391/*
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200392 * Support functions
393 */
394
395/*
396 * The ADM1032 supports PEC but not on write byte transactions, so we need
397 * to explicitly ask for a transaction without PEC.
398 */
399static inline s32 adm1032_write_byte(struct i2c_client *client, u8 value)
400{
401 return i2c_smbus_xfer(client->adapter, client->addr,
402 client->flags & ~I2C_CLIENT_PEC,
403 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
404}
405
406/*
407 * It is assumed that client->update_lock is held (unless we are in
408 * detection or initialization steps). This matters when PEC is enabled,
409 * because we don't want the address pointer to change between the write
410 * byte and the read byte transactions.
411 */
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700412static int lm90_read_reg(struct i2c_client *client, u8 reg)
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200413{
414 int err;
415
416 if (client->flags & I2C_CLIENT_PEC) {
417 err = adm1032_write_byte(client, reg);
418 if (err >= 0)
419 err = i2c_smbus_read_byte(client);
420 } else
421 err = i2c_smbus_read_byte_data(client, reg);
422
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700423 return err;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200424}
425
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700426static int lm90_read16(struct i2c_client *client, u8 regh, u8 regl)
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200427{
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700428 int oldh, newh, l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200429
430 /*
431 * There is a trick here. We have to read two registers to have the
432 * sensor temperature, but we have to beware a conversion could occur
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300433 * between the readings. The datasheet says we should either use
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200434 * the one-shot conversion register, which we don't want to do
435 * (disables hardware monitoring) or monitor the busy bit, which is
436 * impossible (we can't read the values and monitor that bit at the
437 * exact same time). So the solution used here is to read the high
438 * byte once, then the low byte, then the high byte again. If the new
439 * high byte matches the old one, then we have a valid reading. Else
440 * we have to read the low byte again, and now we believe we have a
441 * correct reading.
442 */
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700443 oldh = lm90_read_reg(client, regh);
444 if (oldh < 0)
445 return oldh;
446 l = lm90_read_reg(client, regl);
447 if (l < 0)
448 return l;
449 newh = lm90_read_reg(client, regh);
450 if (newh < 0)
451 return newh;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200452 if (oldh != newh) {
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700453 l = lm90_read_reg(client, regl);
454 if (l < 0)
455 return l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200456 }
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700457 return (newh << 8) | l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200458}
459
460/*
461 * client->update_lock must be held when calling this function (unless we are
462 * in detection or initialization steps), and while a remote channel other
463 * than channel 0 is selected. Also, calling code must make sure to re-select
464 * external channel 0 before releasing the lock. This is necessary because
465 * various registers have different meanings as a result of selecting a
466 * non-default remote channel.
467 */
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700468static inline int lm90_select_remote_channel(struct i2c_client *client,
469 struct lm90_data *data,
470 int channel)
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200471{
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700472 int config;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200473
474 if (data->kind == max6696) {
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700475 config = lm90_read_reg(client, LM90_REG_R_CONFIG1);
476 if (config < 0)
477 return config;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200478 config &= ~0x08;
479 if (channel)
480 config |= 0x08;
481 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
482 config);
483 }
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700484 return 0;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200485}
486
Guenter Roeck0c01b642010-10-28 20:31:44 +0200487/*
488 * Set conversion rate.
489 * client->update_lock must be held when calling this function (unless we are
490 * in detection or initialization steps).
491 */
492static void lm90_set_convrate(struct i2c_client *client, struct lm90_data *data,
493 unsigned int interval)
494{
495 int i;
496 unsigned int update_interval;
497
498 /* Shift calculations to avoid rounding errors */
499 interval <<= 6;
500
501 /* find the nearest update rate */
502 for (i = 0, update_interval = LM90_MAX_CONVRATE_MS << 6;
503 i < data->max_convrate; i++, update_interval >>= 1)
504 if (interval >= update_interval * 3 / 4)
505 break;
506
507 i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE, i);
508 data->update_interval = DIV_ROUND_CLOSEST(update_interval, 64);
509}
510
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200511static struct lm90_data *lm90_update_device(struct device *dev)
512{
Guenter Roeck1de8b252014-04-04 18:01:35 +0200513 struct lm90_data *data = dev_get_drvdata(dev);
514 struct i2c_client *client = data->client;
Guenter Roeck0c01b642010-10-28 20:31:44 +0200515 unsigned long next_update;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700516 int val = 0;
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 dev_dbg(&client->dev, "Updating lm90 data.\n");
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700524 val = lm90_read_reg(client, LM90_REG_R_LOCAL_LOW);
525 if (val < 0)
526 goto error;
527 data->temp8[LOCAL_LOW] = val;
528
529 val = lm90_read_reg(client, LM90_REG_R_LOCAL_HIGH);
530 if (val < 0)
531 goto error;
532 data->temp8[LOCAL_HIGH] = val;
533
534 val = lm90_read_reg(client, LM90_REG_R_LOCAL_CRIT);
535 if (val < 0)
536 goto error;
537 data->temp8[LOCAL_CRIT] = val;
538
539 val = lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT);
540 if (val < 0)
541 goto error;
542 data->temp8[REMOTE_CRIT] = val;
543 val = lm90_read_reg(client, LM90_REG_R_TCRIT_HYST);
544 if (val < 0)
545 goto error;
546 data->temp_hyst = val;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200547
Jean Delvarea095f682011-07-27 23:22:25 -0700548 if (data->reg_local_ext) {
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700549 val = lm90_read16(client, LM90_REG_R_LOCAL_TEMP,
550 data->reg_local_ext);
551 if (val < 0)
552 goto error;
553 data->temp11[LOCAL_TEMP] = val;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200554 } else {
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700555 val = lm90_read_reg(client, LM90_REG_R_LOCAL_TEMP);
556 if (val < 0)
557 goto error;
558 data->temp11[LOCAL_TEMP] = val << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200559 }
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700560 val = lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
561 LM90_REG_R_REMOTE_TEMPL);
562 if (val < 0)
563 goto error;
564 data->temp11[REMOTE_TEMP] = val;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200565
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700566 lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH);
567 if (val < 0)
568 goto error;
569 data->temp11[REMOTE_LOW] = val << 8;
570 if (data->flags & LM90_HAVE_REM_LIMIT_EXT) {
571 val = lm90_read_reg(client, LM90_REG_R_REMOTE_LOWL);
572 if (val < 0)
573 goto error;
574 data->temp11[REMOTE_LOW] |= val;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200575 }
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700576 val = lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH);
577 if (val < 0)
578 goto error;
579 data->temp11[REMOTE_HIGH] = val << 8;
580 if (data->flags & LM90_HAVE_REM_LIMIT_EXT) {
581 val = lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHL);
582 if (val < 0)
583 goto error;
584 data->temp11[REMOTE_HIGH] |= val;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200585 }
586
587 if (data->flags & LM90_HAVE_OFFSET) {
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700588 val = lm90_read16(client, LM90_REG_R_REMOTE_OFFSH,
589 LM90_REG_R_REMOTE_OFFSL);
590 if (val < 0)
591 goto error;
592 data->temp11[REMOTE_OFFSET] = val;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200593 }
594 if (data->flags & LM90_HAVE_EMERGENCY) {
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700595 val = lm90_read_reg(client, MAX6659_REG_R_LOCAL_EMERG);
596 if (val < 0)
597 goto error;
598 data->temp8[LOCAL_EMERG] = val;
599 val = lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG);
600 if (val < 0)
601 goto error;
602 data->temp8[REMOTE_EMERG] = val;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200603 }
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700604 val = lm90_read_reg(client, LM90_REG_R_STATUS);
605 if (val < 0)
606 goto error;
607 data->alarms = val; /* lower 8 bit of alarms */
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200608
609 if (data->kind == max6696) {
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700610 val = lm90_select_remote_channel(client, data, 1);
611 if (val < 0)
612 goto error;
613
614 val = lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT);
615 if (val < 0)
616 goto error;
617 data->temp8[REMOTE2_CRIT] = val;
618
619 val = lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG);
620 if (val < 0)
621 goto error;
622 data->temp8[REMOTE2_EMERG] = val;
623
624 val = lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
625 LM90_REG_R_REMOTE_TEMPL);
626 if (val < 0)
627 goto error;
628 data->temp11[REMOTE2_TEMP] = val;
629
630 val = lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH);
631 if (val < 0)
632 goto error;
633 data->temp11[REMOTE2_LOW] = val << 8;
634
635 val = lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH);
636 if (val < 0)
637 goto error;
638 data->temp11[REMOTE2_HIGH] = val << 8;
639
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200640 lm90_select_remote_channel(client, data, 0);
641
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700642 val = lm90_read_reg(client, MAX6696_REG_R_STATUS2);
643 if (val < 0)
644 goto error;
645 data->alarms |= val << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200646 }
647
Guenter Roeckf36ffea2012-03-23 10:02:18 +0100648 /*
649 * Re-enable ALERT# output if it was originally enabled and
650 * relevant alarms are all clear
651 */
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700652 if (!(data->config_orig & 0x80) &&
653 !(data->alarms & data->alert_alarms)) {
654 val = lm90_read_reg(client, LM90_REG_R_CONFIG1);
655 if (val < 0)
656 goto error;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200657
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700658 if (val & 0x80) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200659 dev_dbg(&client->dev, "Re-enabling ALERT#\n");
660 i2c_smbus_write_byte_data(client,
661 LM90_REG_W_CONFIG1,
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700662 val & ~0x80);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200663 }
664 }
665
666 data->last_updated = jiffies;
667 data->valid = 1;
668 }
669
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700670error:
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200671 mutex_unlock(&data->update_lock);
672
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700673 if (val < 0)
674 return ERR_PTR(val);
675
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200676 return data;
677}
678
679/*
Nate Casecea50fe2008-10-17 17:51:10 +0200680 * Conversions
681 * For local temperatures and limits, critical limits and the hysteresis
682 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius.
683 * For remote temperatures and limits, it uses signed 11-bit values with
Ben Hutchings271dabf2008-10-17 17:51:11 +0200684 * LSB = 0.125 degree Celsius, left-justified in 16-bit registers. Some
685 * Maxim chips use unsigned values.
Nate Casecea50fe2008-10-17 17:51:10 +0200686 */
687
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200688static inline int temp_from_s8(s8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200689{
690 return val * 1000;
691}
692
Ben Hutchings271dabf2008-10-17 17:51:11 +0200693static inline int temp_from_u8(u8 val)
694{
695 return val * 1000;
696}
697
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200698static inline int temp_from_s16(s16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200699{
700 return val / 32 * 125;
701}
702
Ben Hutchings271dabf2008-10-17 17:51:11 +0200703static inline int temp_from_u16(u16 val)
704{
705 return val / 32 * 125;
706}
707
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200708static s8 temp_to_s8(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200709{
710 if (val <= -128000)
711 return -128;
712 if (val >= 127000)
713 return 127;
714 if (val < 0)
715 return (val - 500) / 1000;
716 return (val + 500) / 1000;
717}
718
Ben Hutchings271dabf2008-10-17 17:51:11 +0200719static u8 temp_to_u8(long val)
720{
721 if (val <= 0)
722 return 0;
723 if (val >= 255000)
724 return 255;
725 return (val + 500) / 1000;
726}
727
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200728static s16 temp_to_s16(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200729{
730 if (val <= -128000)
731 return 0x8000;
732 if (val >= 127875)
733 return 0x7FE0;
734 if (val < 0)
735 return (val - 62) / 125 * 32;
736 return (val + 62) / 125 * 32;
737}
738
739static u8 hyst_to_reg(long val)
740{
741 if (val <= 0)
742 return 0;
743 if (val >= 30500)
744 return 31;
745 return (val + 500) / 1000;
746}
747
748/*
Nate Case23b2d472008-10-17 17:51:10 +0200749 * ADT7461 in compatibility mode is almost identical to LM90 except that
750 * attempts to write values that are outside the range 0 < temp < 127 are
751 * treated as the boundary value.
752 *
753 * ADT7461 in "extended mode" operation uses unsigned integers offset by
754 * 64 (e.g., 0 -> -64 degC). The range is restricted to -64..191 degC.
Nate Casecea50fe2008-10-17 17:51:10 +0200755 */
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200756static inline int temp_from_u8_adt7461(struct lm90_data *data, u8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200757{
Nate Case23b2d472008-10-17 17:51:10 +0200758 if (data->flags & LM90_FLAG_ADT7461_EXT)
759 return (val - 64) * 1000;
760 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200761 return temp_from_s8(val);
Nate Casecea50fe2008-10-17 17:51:10 +0200762}
763
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200764static inline int temp_from_u16_adt7461(struct lm90_data *data, u16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200765{
Nate Case23b2d472008-10-17 17:51:10 +0200766 if (data->flags & LM90_FLAG_ADT7461_EXT)
767 return (val - 0x4000) / 64 * 250;
768 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200769 return temp_from_s16(val);
Nate Case23b2d472008-10-17 17:51:10 +0200770}
771
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200772static u8 temp_to_u8_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200773{
774 if (data->flags & LM90_FLAG_ADT7461_EXT) {
775 if (val <= -64000)
776 return 0;
777 if (val >= 191000)
778 return 0xFF;
779 return (val + 500 + 64000) / 1000;
780 } else {
781 if (val <= 0)
782 return 0;
783 if (val >= 127000)
784 return 127;
785 return (val + 500) / 1000;
786 }
787}
788
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200789static u16 temp_to_u16_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200790{
791 if (data->flags & LM90_FLAG_ADT7461_EXT) {
792 if (val <= -64000)
793 return 0;
794 if (val >= 191750)
795 return 0xFFC0;
796 return (val + 64000 + 125) / 250 * 64;
797 } else {
798 if (val <= 0)
799 return 0;
800 if (val >= 127750)
801 return 0x7FC0;
802 return (val + 125) / 250 * 64;
803 }
Nate Casecea50fe2008-10-17 17:51:10 +0200804}
805
806/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 * Sysfs stuff
808 */
809
Jean Delvare30d73942005-06-05 21:27:28 +0200810static ssize_t show_temp8(struct device *dev, struct device_attribute *devattr,
811 char *buf)
812{
813 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
814 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200815 int temp;
816
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700817 if (IS_ERR(data))
818 return PTR_ERR(data);
819
Wei Ni1daaceb2013-11-15 10:40:39 +0100820 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200821 temp = temp_from_u8_adt7461(data, data->temp8[attr->index]);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200822 else if (data->kind == max6646)
823 temp = temp_from_u8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200824 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200825 temp = temp_from_s8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200826
Jean Delvare97ae60b2008-10-26 17:04:39 +0100827 /* +16 degrees offset for temp2 for the LM99 */
828 if (data->kind == lm99 && attr->index == 3)
829 temp += 16000;
830
Nate Case23b2d472008-10-17 17:51:10 +0200831 return sprintf(buf, "%d\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833
Jean Delvare30d73942005-06-05 21:27:28 +0200834static ssize_t set_temp8(struct device *dev, struct device_attribute *devattr,
835 const char *buf, size_t count)
836{
Wei Ni40465d92013-11-15 10:40:39 +0100837 static const u8 reg[TEMP8_REG_NUM] = {
Jean Delvare30d73942005-06-05 21:27:28 +0200838 LM90_REG_W_LOCAL_LOW,
839 LM90_REG_W_LOCAL_HIGH,
840 LM90_REG_W_LOCAL_CRIT,
841 LM90_REG_W_REMOTE_CRIT,
Guenter Roeck69487082010-10-28 20:31:43 +0200842 MAX6659_REG_W_LOCAL_EMERG,
843 MAX6659_REG_W_REMOTE_EMERG,
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200844 LM90_REG_W_REMOTE_CRIT,
845 MAX6659_REG_W_REMOTE_EMERG,
Jean Delvare30d73942005-06-05 21:27:28 +0200846 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
Jean Delvare30d73942005-06-05 21:27:28 +0200848 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Guenter Roeck1de8b252014-04-04 18:01:35 +0200849 struct lm90_data *data = dev_get_drvdata(dev);
850 struct i2c_client *client = data->client;
Jean Delvare30d73942005-06-05 21:27:28 +0200851 int nr = attr->index;
Guenter Roeck11e57812010-10-28 20:31:42 +0200852 long val;
853 int err;
854
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100855 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200856 if (err < 0)
857 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858
Jean Delvare97ae60b2008-10-26 17:04:39 +0100859 /* +16 degrees offset for temp2 for the LM99 */
860 if (data->kind == lm99 && attr->index == 3)
861 val -= 16000;
862
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100863 mutex_lock(&data->update_lock);
Wei Ni1daaceb2013-11-15 10:40:39 +0100864 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200865 data->temp8[nr] = temp_to_u8_adt7461(data, val);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200866 else if (data->kind == max6646)
867 data->temp8[nr] = temp_to_u8(val);
Jean Delvare30d73942005-06-05 21:27:28 +0200868 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200869 data->temp8[nr] = temp_to_s8(val);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200870
871 lm90_select_remote_channel(client, data, nr >= 6);
Jean Delvaref65e1702008-10-17 17:51:09 +0200872 i2c_smbus_write_byte_data(client, reg[nr], data->temp8[nr]);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200873 lm90_select_remote_channel(client, data, 0);
874
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100875 mutex_unlock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200876 return count;
877}
878
879static ssize_t show_temp11(struct device *dev, struct device_attribute *devattr,
880 char *buf)
881{
Guenter Roeck96512862010-10-28 20:31:43 +0200882 struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
Jean Delvare30d73942005-06-05 21:27:28 +0200883 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200884 int temp;
885
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700886 if (IS_ERR(data))
887 return PTR_ERR(data);
888
Wei Ni1daaceb2013-11-15 10:40:39 +0100889 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200890 temp = temp_from_u16_adt7461(data, data->temp11[attr->index]);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200891 else if (data->kind == max6646)
892 temp = temp_from_u16(data->temp11[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200893 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200894 temp = temp_from_s16(data->temp11[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200895
Jean Delvare97ae60b2008-10-26 17:04:39 +0100896 /* +16 degrees offset for temp2 for the LM99 */
897 if (data->kind == lm99 && attr->index <= 2)
898 temp += 16000;
899
Nate Case23b2d472008-10-17 17:51:10 +0200900 return sprintf(buf, "%d\n", temp);
Jean Delvare30d73942005-06-05 21:27:28 +0200901}
902
903static ssize_t set_temp11(struct device *dev, struct device_attribute *devattr,
904 const char *buf, size_t count)
905{
Guenter Roeck96512862010-10-28 20:31:43 +0200906 struct {
907 u8 high;
908 u8 low;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200909 int channel;
910 } reg[5] = {
911 { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL, 0 },
912 { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL, 0 },
913 { LM90_REG_W_REMOTE_OFFSH, LM90_REG_W_REMOTE_OFFSL, 0 },
914 { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL, 1 },
915 { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL, 1 }
Jean Delvare30d73942005-06-05 21:27:28 +0200916 };
917
Guenter Roeck96512862010-10-28 20:31:43 +0200918 struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
Guenter Roeck1de8b252014-04-04 18:01:35 +0200919 struct lm90_data *data = dev_get_drvdata(dev);
920 struct i2c_client *client = data->client;
Guenter Roeck96512862010-10-28 20:31:43 +0200921 int nr = attr->nr;
922 int index = attr->index;
Guenter Roeck11e57812010-10-28 20:31:42 +0200923 long val;
924 int err;
925
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100926 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200927 if (err < 0)
928 return err;
Jean Delvare30d73942005-06-05 21:27:28 +0200929
Jean Delvare97ae60b2008-10-26 17:04:39 +0100930 /* +16 degrees offset for temp2 for the LM99 */
Guenter Roeck96512862010-10-28 20:31:43 +0200931 if (data->kind == lm99 && index <= 2)
Jean Delvare97ae60b2008-10-26 17:04:39 +0100932 val -= 16000;
933
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100934 mutex_lock(&data->update_lock);
Wei Ni1daaceb2013-11-15 10:40:39 +0100935 if (data->kind == adt7461 || data->kind == tmp451)
Guenter Roeck96512862010-10-28 20:31:43 +0200936 data->temp11[index] = temp_to_u16_adt7461(data, val);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200937 else if (data->kind == max6646)
Guenter Roeck96512862010-10-28 20:31:43 +0200938 data->temp11[index] = temp_to_u8(val) << 8;
Guenter Roeck88073bb2010-10-28 20:31:43 +0200939 else if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
Guenter Roeck96512862010-10-28 20:31:43 +0200940 data->temp11[index] = temp_to_s16(val);
Guenter Roeck88073bb2010-10-28 20:31:43 +0200941 else
Guenter Roeck96512862010-10-28 20:31:43 +0200942 data->temp11[index] = temp_to_s8(val) << 8;
Jean Delvare5f502a82008-10-17 17:51:09 +0200943
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200944 lm90_select_remote_channel(client, data, reg[nr].channel);
Guenter Roeck96512862010-10-28 20:31:43 +0200945 i2c_smbus_write_byte_data(client, reg[nr].high,
946 data->temp11[index] >> 8);
Guenter Roeck88073bb2010-10-28 20:31:43 +0200947 if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
Guenter Roeck96512862010-10-28 20:31:43 +0200948 i2c_smbus_write_byte_data(client, reg[nr].low,
949 data->temp11[index] & 0xff);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200950 lm90_select_remote_channel(client, data, 0);
951
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100952 mutex_unlock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200953 return count;
954}
955
Guenter Roeck11e57812010-10-28 20:31:42 +0200956static ssize_t show_temphyst(struct device *dev,
957 struct device_attribute *devattr,
Jean Delvare30d73942005-06-05 21:27:28 +0200958 char *buf)
959{
960 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
961 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200962 int temp;
963
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700964 if (IS_ERR(data))
965 return PTR_ERR(data);
966
Wei Ni1daaceb2013-11-15 10:40:39 +0100967 if (data->kind == adt7461 || data->kind == tmp451)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200968 temp = temp_from_u8_adt7461(data, data->temp8[attr->index]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100969 else if (data->kind == max6646)
970 temp = temp_from_u8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200971 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200972 temp = temp_from_s8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200973
Jean Delvare97ae60b2008-10-26 17:04:39 +0100974 /* +16 degrees offset for temp2 for the LM99 */
975 if (data->kind == lm99 && attr->index == 3)
976 temp += 16000;
977
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200978 return sprintf(buf, "%d\n", temp - temp_from_s8(data->temp_hyst));
Jean Delvare30d73942005-06-05 21:27:28 +0200979}
980
981static ssize_t set_temphyst(struct device *dev, struct device_attribute *dummy,
982 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983{
Guenter Roeck1de8b252014-04-04 18:01:35 +0200984 struct lm90_data *data = dev_get_drvdata(dev);
985 struct i2c_client *client = data->client;
Guenter Roeck11e57812010-10-28 20:31:42 +0200986 long val;
987 int err;
Jean Delvareec38fa22008-10-26 17:04:39 +0100988 int temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100990 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200991 if (err < 0)
992 return err;
993
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100994 mutex_lock(&data->update_lock);
Wei Ni1daaceb2013-11-15 10:40:39 +0100995 if (data->kind == adt7461 || data->kind == tmp451)
Wei Ni40465d92013-11-15 10:40:39 +0100996 temp = temp_from_u8_adt7461(data, data->temp8[LOCAL_CRIT]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100997 else if (data->kind == max6646)
Wei Ni40465d92013-11-15 10:40:39 +0100998 temp = temp_from_u8(data->temp8[LOCAL_CRIT]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100999 else
Wei Ni40465d92013-11-15 10:40:39 +01001000 temp = temp_from_s8(data->temp8[LOCAL_CRIT]);
Jean Delvareec38fa22008-10-26 17:04:39 +01001001
1002 data->temp_hyst = hyst_to_reg(temp - val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001003 i2c_smbus_write_byte_data(client, LM90_REG_W_TCRIT_HYST,
Jean Delvareec38fa22008-10-26 17:04:39 +01001004 data->temp_hyst);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001005 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 return count;
1007}
1008
Jean Delvare30d73942005-06-05 21:27:28 +02001009static ssize_t show_alarms(struct device *dev, struct device_attribute *dummy,
1010 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011{
1012 struct lm90_data *data = lm90_update_device(dev);
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001013
1014 if (IS_ERR(data))
1015 return PTR_ERR(data);
1016
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 return sprintf(buf, "%d\n", data->alarms);
1018}
1019
Jean Delvare2d457712006-09-24 20:52:15 +02001020static ssize_t show_alarm(struct device *dev, struct device_attribute
1021 *devattr, char *buf)
1022{
1023 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
1024 struct lm90_data *data = lm90_update_device(dev);
1025 int bitnr = attr->index;
1026
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001027 if (IS_ERR(data))
1028 return PTR_ERR(data);
1029
Jean Delvare2d457712006-09-24 20:52:15 +02001030 return sprintf(buf, "%d\n", (data->alarms >> bitnr) & 1);
1031}
1032
Guenter Roeck0c01b642010-10-28 20:31:44 +02001033static ssize_t show_update_interval(struct device *dev,
1034 struct device_attribute *attr, char *buf)
1035{
1036 struct lm90_data *data = dev_get_drvdata(dev);
1037
1038 return sprintf(buf, "%u\n", data->update_interval);
1039}
1040
1041static ssize_t set_update_interval(struct device *dev,
1042 struct device_attribute *attr,
1043 const char *buf, size_t count)
1044{
Guenter Roeck1de8b252014-04-04 18:01:35 +02001045 struct lm90_data *data = dev_get_drvdata(dev);
1046 struct i2c_client *client = data->client;
Guenter Roeck0c01b642010-10-28 20:31:44 +02001047 unsigned long val;
1048 int err;
1049
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001050 err = kstrtoul(buf, 10, &val);
Guenter Roeck0c01b642010-10-28 20:31:44 +02001051 if (err)
1052 return err;
1053
1054 mutex_lock(&data->update_lock);
Guenter Roeck2a844c12013-01-09 08:09:34 -08001055 lm90_set_convrate(client, data, clamp_val(val, 0, 100000));
Guenter Roeck0c01b642010-10-28 20:31:44 +02001056 mutex_unlock(&data->update_lock);
1057
1058 return count;
1059}
1060
Wei Ni40465d92013-11-15 10:40:39 +01001061static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp11, NULL,
1062 0, LOCAL_TEMP);
1063static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp11, NULL,
1064 0, REMOTE_TEMP);
Jean Delvare30d73942005-06-05 21:27:28 +02001065static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001066 set_temp8, LOCAL_LOW);
Guenter Roeck96512862010-10-28 20:31:43 +02001067static SENSOR_DEVICE_ATTR_2(temp2_min, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001068 set_temp11, 0, REMOTE_LOW);
Jean Delvare30d73942005-06-05 21:27:28 +02001069static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001070 set_temp8, LOCAL_HIGH);
Guenter Roeck96512862010-10-28 20:31:43 +02001071static SENSOR_DEVICE_ATTR_2(temp2_max, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001072 set_temp11, 1, REMOTE_HIGH);
Jean Delvare30d73942005-06-05 21:27:28 +02001073static SENSOR_DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001074 set_temp8, LOCAL_CRIT);
Jean Delvare30d73942005-06-05 21:27:28 +02001075static SENSOR_DEVICE_ATTR(temp2_crit, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001076 set_temp8, REMOTE_CRIT);
Jean Delvare30d73942005-06-05 21:27:28 +02001077static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001078 set_temphyst, LOCAL_CRIT);
1079static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, show_temphyst, NULL,
1080 REMOTE_CRIT);
Guenter Roeck96512862010-10-28 20:31:43 +02001081static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001082 set_temp11, 2, REMOTE_OFFSET);
Jean Delvare2d457712006-09-24 20:52:15 +02001083
1084/* Individual alarm files */
1085static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 0);
1086static SENSOR_DEVICE_ATTR(temp2_crit_alarm, S_IRUGO, show_alarm, NULL, 1);
Jean Delvare7817a392007-06-09 10:11:16 -04001087static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 2);
Jean Delvare2d457712006-09-24 20:52:15 +02001088static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3);
1089static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 4);
1090static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 5);
1091static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 6);
1092/* Raw alarm file for compatibility */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
1094
Guenter Roeck0c01b642010-10-28 20:31:44 +02001095static DEVICE_ATTR(update_interval, S_IRUGO | S_IWUSR, show_update_interval,
1096 set_update_interval);
1097
Jean Delvare0e39e012006-09-24 21:16:40 +02001098static struct attribute *lm90_attributes[] = {
1099 &sensor_dev_attr_temp1_input.dev_attr.attr,
1100 &sensor_dev_attr_temp2_input.dev_attr.attr,
1101 &sensor_dev_attr_temp1_min.dev_attr.attr,
1102 &sensor_dev_attr_temp2_min.dev_attr.attr,
1103 &sensor_dev_attr_temp1_max.dev_attr.attr,
1104 &sensor_dev_attr_temp2_max.dev_attr.attr,
1105 &sensor_dev_attr_temp1_crit.dev_attr.attr,
1106 &sensor_dev_attr_temp2_crit.dev_attr.attr,
1107 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
1108 &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr,
1109
1110 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
1111 &sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
Jean Delvare7817a392007-06-09 10:11:16 -04001112 &sensor_dev_attr_temp2_fault.dev_attr.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +02001113 &sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
1114 &sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
1115 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
1116 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
1117 &dev_attr_alarms.attr,
Guenter Roeck0c01b642010-10-28 20:31:44 +02001118 &dev_attr_update_interval.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +02001119 NULL
1120};
1121
1122static const struct attribute_group lm90_group = {
1123 .attrs = lm90_attributes,
1124};
1125
Guenter Roeck742192f2014-04-04 18:01:34 +02001126static struct attribute *lm90_temp2_offset_attributes[] = {
1127 &sensor_dev_attr_temp2_offset.dev_attr.attr,
1128 NULL
1129};
1130
1131static const struct attribute_group lm90_temp2_offset_group = {
1132 .attrs = lm90_temp2_offset_attributes,
1133};
1134
Guenter Roeck69487082010-10-28 20:31:43 +02001135/*
1136 * Additional attributes for devices with emergency sensors
1137 */
1138static SENSOR_DEVICE_ATTR(temp1_emergency, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001139 set_temp8, LOCAL_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001140static SENSOR_DEVICE_ATTR(temp2_emergency, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001141 set_temp8, REMOTE_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001142static SENSOR_DEVICE_ATTR(temp1_emergency_hyst, S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001143 NULL, LOCAL_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001144static SENSOR_DEVICE_ATTR(temp2_emergency_hyst, S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001145 NULL, REMOTE_EMERG);
Guenter Roeck69487082010-10-28 20:31:43 +02001146
1147static struct attribute *lm90_emergency_attributes[] = {
1148 &sensor_dev_attr_temp1_emergency.dev_attr.attr,
1149 &sensor_dev_attr_temp2_emergency.dev_attr.attr,
1150 &sensor_dev_attr_temp1_emergency_hyst.dev_attr.attr,
1151 &sensor_dev_attr_temp2_emergency_hyst.dev_attr.attr,
1152 NULL
1153};
1154
1155static const struct attribute_group lm90_emergency_group = {
1156 .attrs = lm90_emergency_attributes,
1157};
1158
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001159static SENSOR_DEVICE_ATTR(temp1_emergency_alarm, S_IRUGO, show_alarm, NULL, 15);
1160static SENSOR_DEVICE_ATTR(temp2_emergency_alarm, S_IRUGO, show_alarm, NULL, 13);
1161
1162static struct attribute *lm90_emergency_alarm_attributes[] = {
1163 &sensor_dev_attr_temp1_emergency_alarm.dev_attr.attr,
1164 &sensor_dev_attr_temp2_emergency_alarm.dev_attr.attr,
1165 NULL
1166};
1167
1168static const struct attribute_group lm90_emergency_alarm_group = {
1169 .attrs = lm90_emergency_alarm_attributes,
1170};
1171
1172/*
1173 * Additional attributes for devices with 3 temperature sensors
1174 */
Wei Ni40465d92013-11-15 10:40:39 +01001175static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp11, NULL,
1176 0, REMOTE2_TEMP);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001177static SENSOR_DEVICE_ATTR_2(temp3_min, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001178 set_temp11, 3, REMOTE2_LOW);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001179static SENSOR_DEVICE_ATTR_2(temp3_max, S_IWUSR | S_IRUGO, show_temp11,
Wei Ni40465d92013-11-15 10:40:39 +01001180 set_temp11, 4, REMOTE2_HIGH);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001181static SENSOR_DEVICE_ATTR(temp3_crit, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001182 set_temp8, REMOTE2_CRIT);
1183static SENSOR_DEVICE_ATTR(temp3_crit_hyst, S_IRUGO, show_temphyst, NULL,
1184 REMOTE2_CRIT);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001185static SENSOR_DEVICE_ATTR(temp3_emergency, S_IWUSR | S_IRUGO, show_temp8,
Wei Ni40465d92013-11-15 10:40:39 +01001186 set_temp8, REMOTE2_EMERG);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001187static SENSOR_DEVICE_ATTR(temp3_emergency_hyst, S_IRUGO, show_temphyst,
Wei Ni40465d92013-11-15 10:40:39 +01001188 NULL, REMOTE2_EMERG);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001189
1190static SENSOR_DEVICE_ATTR(temp3_crit_alarm, S_IRUGO, show_alarm, NULL, 9);
1191static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL, 10);
1192static SENSOR_DEVICE_ATTR(temp3_min_alarm, S_IRUGO, show_alarm, NULL, 11);
1193static SENSOR_DEVICE_ATTR(temp3_max_alarm, S_IRUGO, show_alarm, NULL, 12);
1194static SENSOR_DEVICE_ATTR(temp3_emergency_alarm, S_IRUGO, show_alarm, NULL, 14);
1195
1196static struct attribute *lm90_temp3_attributes[] = {
1197 &sensor_dev_attr_temp3_input.dev_attr.attr,
1198 &sensor_dev_attr_temp3_min.dev_attr.attr,
1199 &sensor_dev_attr_temp3_max.dev_attr.attr,
1200 &sensor_dev_attr_temp3_crit.dev_attr.attr,
1201 &sensor_dev_attr_temp3_crit_hyst.dev_attr.attr,
1202 &sensor_dev_attr_temp3_emergency.dev_attr.attr,
1203 &sensor_dev_attr_temp3_emergency_hyst.dev_attr.attr,
1204
1205 &sensor_dev_attr_temp3_fault.dev_attr.attr,
1206 &sensor_dev_attr_temp3_min_alarm.dev_attr.attr,
1207 &sensor_dev_attr_temp3_max_alarm.dev_attr.attr,
1208 &sensor_dev_attr_temp3_crit_alarm.dev_attr.attr,
1209 &sensor_dev_attr_temp3_emergency_alarm.dev_attr.attr,
1210 NULL
1211};
1212
1213static const struct attribute_group lm90_temp3_group = {
1214 .attrs = lm90_temp3_attributes,
1215};
1216
Jean Delvarec3df5802005-10-26 21:39:40 +02001217/* pec used for ADM1032 only */
1218static ssize_t show_pec(struct device *dev, struct device_attribute *dummy,
1219 char *buf)
1220{
1221 struct i2c_client *client = to_i2c_client(dev);
1222 return sprintf(buf, "%d\n", !!(client->flags & I2C_CLIENT_PEC));
1223}
1224
1225static ssize_t set_pec(struct device *dev, struct device_attribute *dummy,
1226 const char *buf, size_t count)
1227{
1228 struct i2c_client *client = to_i2c_client(dev);
Guenter Roeck11e57812010-10-28 20:31:42 +02001229 long val;
1230 int err;
1231
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001232 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +02001233 if (err < 0)
1234 return err;
Jean Delvarec3df5802005-10-26 21:39:40 +02001235
1236 switch (val) {
1237 case 0:
1238 client->flags &= ~I2C_CLIENT_PEC;
1239 break;
1240 case 1:
1241 client->flags |= I2C_CLIENT_PEC;
1242 break;
1243 default:
1244 return -EINVAL;
1245 }
1246
1247 return count;
1248}
1249
1250static DEVICE_ATTR(pec, S_IWUSR | S_IRUGO, show_pec, set_pec);
1251
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252/*
1253 * Real code
1254 */
1255
Jean Delvare9b0e8522008-07-16 19:30:15 +02001256/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001257static int lm90_detect(struct i2c_client *client,
Jean Delvare9b0e8522008-07-16 19:30:15 +02001258 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001260 struct i2c_adapter *adapter = client->adapter;
1261 int address = client->addr;
Jean Delvare8f2fa772009-12-09 20:35:53 +01001262 const char *name = NULL;
Jean Delvareb2589ab2011-11-04 12:00:47 +01001263 int man_id, chip_id, config1, config2, convrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvare9b0e8522008-07-16 19:30:15 +02001266 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
Jean Delvare8f2fa772009-12-09 20:35:53 +01001268 /* detection and identification */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001269 man_id = i2c_smbus_read_byte_data(client, LM90_REG_R_MAN_ID);
1270 chip_id = i2c_smbus_read_byte_data(client, LM90_REG_R_CHIP_ID);
1271 config1 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG1);
1272 convrate = i2c_smbus_read_byte_data(client, LM90_REG_R_CONVRATE);
1273 if (man_id < 0 || chip_id < 0 || config1 < 0 || convrate < 0)
Jean Delvare8f2fa772009-12-09 20:35:53 +01001274 return -ENODEV;
1275
Jean Delvaref90be422011-07-24 20:37:05 +02001276 if (man_id == 0x01 || man_id == 0x5C || man_id == 0x41) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001277 config2 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG2);
1278 if (config2 < 0)
Jean Delvare9b0e8522008-07-16 19:30:15 +02001279 return -ENODEV;
Jean Delvaref90be422011-07-24 20:37:05 +02001280 } else
Jean Delvareb2589ab2011-11-04 12:00:47 +01001281 config2 = 0; /* Make compiler happy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282
Jean Delvaref90be422011-07-24 20:37:05 +02001283 if ((address == 0x4C || address == 0x4D)
1284 && man_id == 0x01) { /* National Semiconductor */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001285 if ((config1 & 0x2A) == 0x00
1286 && (config2 & 0xF8) == 0x00
1287 && convrate <= 0x09) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001288 if (address == 0x4C
1289 && (chip_id & 0xF0) == 0x20) { /* LM90 */
1290 name = "lm90";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001292 if ((chip_id & 0xF0) == 0x30) { /* LM89/LM99 */
1293 name = "lm99";
1294 dev_info(&adapter->dev,
1295 "Assuming LM99 chip at 0x%02x\n",
1296 address);
1297 dev_info(&adapter->dev,
1298 "If it is an LM89, instantiate it "
1299 "with the new_device sysfs "
1300 "interface\n");
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -04001301 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001302 if (address == 0x4C
1303 && (chip_id & 0xF0) == 0x10) { /* LM86 */
1304 name = "lm86";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001305 }
1306 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001307 } else
1308 if ((address == 0x4C || address == 0x4D)
1309 && man_id == 0x41) { /* Analog Devices */
1310 if ((chip_id & 0xF0) == 0x40 /* ADM1032 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001311 && (config1 & 0x3F) == 0x00
1312 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001313 name = "adm1032";
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001314 /*
1315 * The ADM1032 supports PEC, but only if combined
1316 * transactions are not used.
1317 */
Jean Delvare8f2fa772009-12-09 20:35:53 +01001318 if (i2c_check_functionality(adapter,
1319 I2C_FUNC_SMBUS_BYTE))
1320 info->flags |= I2C_CLIENT_PEC;
1321 } else
1322 if (chip_id == 0x51 /* ADT7461 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001323 && (config1 & 0x1B) == 0x00
1324 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001325 name = "adt7461";
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001326 } else
1327 if (chip_id == 0x57 /* ADT7461A, NCT1008 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001328 && (config1 & 0x1B) == 0x00
1329 && convrate <= 0x0A) {
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001330 name = "adt7461a";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001331 }
1332 } else
1333 if (man_id == 0x4D) { /* Maxim */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001334 int emerg, emerg2, status2;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001335
1336 /*
1337 * We read MAX6659_REG_R_REMOTE_EMERG twice, and re-read
1338 * LM90_REG_R_MAN_ID in between. If MAX6659_REG_R_REMOTE_EMERG
1339 * exists, both readings will reflect the same value. Otherwise,
1340 * the readings will be different.
1341 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001342 emerg = i2c_smbus_read_byte_data(client,
1343 MAX6659_REG_R_REMOTE_EMERG);
1344 man_id = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001345 LM90_REG_R_MAN_ID);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001346 emerg2 = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001347 MAX6659_REG_R_REMOTE_EMERG);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001348 status2 = i2c_smbus_read_byte_data(client,
1349 MAX6696_REG_R_STATUS2);
1350 if (emerg < 0 || man_id < 0 || emerg2 < 0 || status2 < 0)
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001351 return -ENODEV;
1352
Jean Delvare8f2fa772009-12-09 20:35:53 +01001353 /*
1354 * The MAX6657, MAX6658 and MAX6659 do NOT have a chip_id
1355 * register. Reading from that address will return the last
1356 * read value, which in our case is those of the man_id
1357 * register. Likewise, the config1 register seems to lack a
1358 * low nibble, so the value will be those of the previous
1359 * read, so in our case those of the man_id register.
Guenter Roeck13c84952010-10-28 20:31:43 +02001360 * MAX6659 has a third set of upper temperature limit registers.
1361 * Those registers also return values on MAX6657 and MAX6658,
1362 * thus the only way to detect MAX6659 is by its address.
1363 * For this reason it will be mis-detected as MAX6657 if its
1364 * address is 0x4C.
Jean Delvare8f2fa772009-12-09 20:35:53 +01001365 */
1366 if (chip_id == man_id
Guenter Roeck13c84952010-10-28 20:31:43 +02001367 && (address == 0x4C || address == 0x4D || address == 0x4E)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001368 && (config1 & 0x1F) == (man_id & 0x0F)
1369 && convrate <= 0x09) {
Guenter Roeck13c84952010-10-28 20:31:43 +02001370 if (address == 0x4C)
1371 name = "max6657";
1372 else
1373 name = "max6659";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001374 } else
1375 /*
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001376 * Even though MAX6695 and MAX6696 do not have a chip ID
1377 * register, reading it returns 0x01. Bit 4 of the config1
1378 * register is unused and should return zero when read. Bit 0 of
1379 * the status2 register is unused and should return zero when
1380 * read.
1381 *
1382 * MAX6695 and MAX6696 have an additional set of temperature
1383 * limit registers. We can detect those chips by checking if
1384 * one of those registers exists.
1385 */
1386 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001387 && (config1 & 0x10) == 0x00
1388 && (status2 & 0x01) == 0x00
1389 && emerg == emerg2
1390 && convrate <= 0x07) {
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001391 name = "max6696";
1392 } else
1393 /*
Jean Delvare8f2fa772009-12-09 20:35:53 +01001394 * The chip_id register of the MAX6680 and MAX6681 holds the
1395 * revision of the chip. The lowest bit of the config1 register
1396 * is unused and should return zero when read, so should the
1397 * second to last bit of config1 (software reset).
1398 */
1399 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001400 && (config1 & 0x03) == 0x00
1401 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001402 name = "max6680";
1403 } else
1404 /*
1405 * The chip_id register of the MAX6646/6647/6649 holds the
1406 * revision of the chip. The lowest 6 bits of the config1
1407 * register are unused and should return zero when read.
1408 */
1409 if (chip_id == 0x59
Jean Delvareb2589ab2011-11-04 12:00:47 +01001410 && (config1 & 0x3f) == 0x00
1411 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001412 name = "max6646";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001414 } else
1415 if (address == 0x4C
1416 && man_id == 0x5C) { /* Winbond/Nuvoton */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001417 if ((config1 & 0x2A) == 0x00
1418 && (config2 & 0xF8) == 0x00) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001419 if (chip_id == 0x01 /* W83L771W/G */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001420 && convrate <= 0x09) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001421 name = "w83l771";
1422 } else
1423 if ((chip_id & 0xFE) == 0x10 /* W83L771AWG/ASG */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001424 && convrate <= 0x08) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001425 name = "w83l771";
1426 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001427 }
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001428 } else
Jean Delvare6d101c52011-07-24 20:36:15 +02001429 if (address >= 0x48 && address <= 0x4F
1430 && man_id == 0xA1) { /* NXP Semiconductor/Philips */
Jean Delvare6d101c52011-07-24 20:36:15 +02001431 if (chip_id == 0x00
Jean Delvareb2589ab2011-11-04 12:00:47 +01001432 && (config1 & 0x2A) == 0x00
1433 && (config2 & 0xFE) == 0x00
1434 && convrate <= 0x09) {
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001435 name = "sa56004";
1436 }
Guenter Roeckae544f62012-03-23 10:02:18 +01001437 } else
1438 if ((address == 0x4C || address == 0x4D)
1439 && man_id == 0x47) { /* GMT */
1440 if (chip_id == 0x01 /* G781 */
1441 && (config1 & 0x3F) == 0x00
1442 && convrate <= 0x08)
1443 name = "g781";
Wei Ni1daaceb2013-11-15 10:40:39 +01001444 } else
1445 if (address == 0x4C
1446 && man_id == 0x55) { /* Texas Instruments */
1447 int local_ext;
1448
1449 local_ext = i2c_smbus_read_byte_data(client,
1450 TMP451_REG_R_LOCAL_TEMPL);
1451
1452 if (chip_id == 0x00 /* TMP451 */
1453 && (config1 & 0x1B) == 0x00
1454 && convrate <= 0x09
1455 && (local_ext & 0x0F) == 0x00)
1456 name = "tmp451";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 }
1458
Jean Delvare8f2fa772009-12-09 20:35:53 +01001459 if (!name) { /* identification failed */
1460 dev_dbg(&adapter->dev,
1461 "Unsupported chip at 0x%02x (man_id=0x%02X, "
1462 "chip_id=0x%02X)\n", address, man_id, chip_id);
1463 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001465
Jean Delvare9b0e8522008-07-16 19:30:15 +02001466 strlcpy(info->type, name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467
Jean Delvare9b0e8522008-07-16 19:30:15 +02001468 return 0;
1469}
1470
Guenter Roeck1f17a442016-06-13 06:19:11 -07001471static void lm90_restore_conf(void *_data)
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001472{
Guenter Roeck1f17a442016-06-13 06:19:11 -07001473 struct lm90_data *data = _data;
1474 struct i2c_client *client = data->client;
1475
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001476 /* Restore initial configuration */
1477 i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE,
1478 data->convrate_orig);
1479 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
1480 data->config_orig);
1481}
1482
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001483static int lm90_init_client(struct i2c_client *client, struct lm90_data *data)
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001484{
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001485 int config, convrate;
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001486
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001487 convrate = lm90_read_reg(client, LM90_REG_R_CONVRATE);
1488 if (convrate < 0)
1489 return convrate;
Guenter Roeck0c01b642010-10-28 20:31:44 +02001490 data->convrate_orig = convrate;
1491
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001492 /*
1493 * Start the conversions.
1494 */
Guenter Roeck0c01b642010-10-28 20:31:44 +02001495 lm90_set_convrate(client, data, 500); /* 500ms; 2Hz conversion rate */
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001496 config = lm90_read_reg(client, LM90_REG_R_CONFIG1);
1497 if (config < 0)
1498 return config;
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001499 data->config_orig = config;
1500
1501 /* Check Temperature Range Select */
Wei Ni1daaceb2013-11-15 10:40:39 +01001502 if (data->kind == adt7461 || data->kind == tmp451) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001503 if (config & 0x04)
1504 data->flags |= LM90_FLAG_ADT7461_EXT;
1505 }
1506
1507 /*
1508 * Put MAX6680/MAX8881 into extended resolution (bit 0x10,
1509 * 0.125 degree resolution) and range (0x08, extend range
1510 * to -64 degree) mode for the remote temperature sensor.
1511 */
1512 if (data->kind == max6680)
1513 config |= 0x18;
1514
1515 /*
1516 * Select external channel 0 for max6695/96
1517 */
1518 if (data->kind == max6696)
1519 config &= ~0x08;
1520
1521 config &= 0xBF; /* run */
1522 if (config != data->config_orig) /* Only write if changed */
1523 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1, config);
Guenter Roeck1f17a442016-06-13 06:19:11 -07001524
1525 devm_add_action(&client->dev, lm90_restore_conf, data);
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001526
1527 return 0;
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001528}
1529
Wei Ni072de492013-11-15 10:40:38 +01001530static bool lm90_is_tripped(struct i2c_client *client, u16 *status)
1531{
1532 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001533 int st, st2 = 0;
Wei Ni072de492013-11-15 10:40:38 +01001534
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001535 st = lm90_read_reg(client, LM90_REG_R_STATUS);
1536 if (st < 0)
1537 return false;
Wei Ni072de492013-11-15 10:40:38 +01001538
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001539 if (data->kind == max6696) {
1540 st2 = lm90_read_reg(client, MAX6696_REG_R_STATUS2);
1541 if (st2 < 0)
1542 return false;
1543 }
Wei Ni072de492013-11-15 10:40:38 +01001544
1545 *status = st | (st2 << 8);
1546
1547 if ((st & 0x7f) == 0 && (st2 & 0xfe) == 0)
1548 return false;
1549
1550 if ((st & (LM90_STATUS_LLOW | LM90_STATUS_LHIGH | LM90_STATUS_LTHRM)) ||
1551 (st2 & MAX6696_STATUS2_LOT2))
1552 dev_warn(&client->dev,
1553 "temp%d out of range, please check!\n", 1);
1554 if ((st & (LM90_STATUS_RLOW | LM90_STATUS_RHIGH | LM90_STATUS_RTHRM)) ||
1555 (st2 & MAX6696_STATUS2_ROT2))
1556 dev_warn(&client->dev,
1557 "temp%d out of range, please check!\n", 2);
1558 if (st & LM90_STATUS_ROPEN)
1559 dev_warn(&client->dev,
1560 "temp%d diode open, please check!\n", 2);
1561 if (st2 & (MAX6696_STATUS2_R2LOW | MAX6696_STATUS2_R2HIGH |
1562 MAX6696_STATUS2_R2THRM | MAX6696_STATUS2_R2OT2))
1563 dev_warn(&client->dev,
1564 "temp%d out of range, please check!\n", 3);
1565 if (st2 & MAX6696_STATUS2_R2OPEN)
1566 dev_warn(&client->dev,
1567 "temp%d diode open, please check!\n", 3);
1568
1569 return true;
1570}
1571
Wei Ni109b1282013-11-15 10:40:39 +01001572static irqreturn_t lm90_irq_thread(int irq, void *dev_id)
1573{
1574 struct i2c_client *client = dev_id;
1575 u16 status;
1576
1577 if (lm90_is_tripped(client, &status))
1578 return IRQ_HANDLED;
1579 else
1580 return IRQ_NONE;
1581}
1582
Guenter Roeck1f17a442016-06-13 06:19:11 -07001583static void lm90_remove_pec(void *dev)
1584{
1585 device_remove_file(dev, &dev_attr_pec);
1586}
1587
1588static void lm90_regulator_disable(void *regulator)
1589{
1590 regulator_disable(regulator);
1591}
1592
Jean Delvareb2589ab2011-11-04 12:00:47 +01001593static int lm90_probe(struct i2c_client *client,
Jean Delvare9b0e8522008-07-16 19:30:15 +02001594 const struct i2c_device_id *id)
1595{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001596 struct device *dev = &client->dev;
1597 struct i2c_adapter *adapter = to_i2c_adapter(dev->parent);
Jean Delvare9b0e8522008-07-16 19:30:15 +02001598 struct lm90_data *data;
Wei Ni3e0f9642013-11-15 10:40:39 +01001599 struct regulator *regulator;
Guenter Roeck6e5f62b2016-06-13 06:28:03 -07001600 struct device *hwmon_dev;
Guenter Roeck084489e2014-04-04 18:01:35 +02001601 int groups = 0;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001602 int err;
1603
Wei Ni3e0f9642013-11-15 10:40:39 +01001604 regulator = devm_regulator_get(dev, "vcc");
1605 if (IS_ERR(regulator))
1606 return PTR_ERR(regulator);
1607
1608 err = regulator_enable(regulator);
1609 if (err < 0) {
Guenter Roeckd89fa682014-04-04 18:01:35 +02001610 dev_err(dev, "Failed to enable regulator: %d\n", err);
Wei Ni3e0f9642013-11-15 10:40:39 +01001611 return err;
1612 }
1613
Guenter Roeck1f17a442016-06-13 06:19:11 -07001614 devm_add_action(dev, lm90_regulator_disable, regulator);
1615
Guenter Roeckd89fa682014-04-04 18:01:35 +02001616 data = devm_kzalloc(dev, sizeof(struct lm90_data), GFP_KERNEL);
Guenter Roeck20f426f2012-06-02 09:58:10 -07001617 if (!data)
1618 return -ENOMEM;
1619
Guenter Roeck1de8b252014-04-04 18:01:35 +02001620 data->client = client;
Jean Delvareb2589ab2011-11-04 12:00:47 +01001621 i2c_set_clientdata(client, data);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001622 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623
Jean Delvare9b0e8522008-07-16 19:30:15 +02001624 /* Set the device type */
1625 data->kind = id->driver_data;
1626 if (data->kind == adm1032) {
1627 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
Jean Delvareb2589ab2011-11-04 12:00:47 +01001628 client->flags &= ~I2C_CLIENT_PEC;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001629 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001631 /*
1632 * Different devices have different alarm bits triggering the
1633 * ALERT# output
1634 */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001635 data->alert_alarms = lm90_params[data->kind].alert_alarms;
Jean Delvare53de3342010-03-05 22:17:15 +01001636
Guenter Roeck88073bb2010-10-28 20:31:43 +02001637 /* Set chip capabilities */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001638 data->flags = lm90_params[data->kind].flags;
Jean Delvarea095f682011-07-27 23:22:25 -07001639 data->reg_local_ext = lm90_params[data->kind].reg_local_ext;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001640
Guenter Roeck0c01b642010-10-28 20:31:44 +02001641 /* Set maximum conversion rate */
1642 data->max_convrate = lm90_params[data->kind].max_convrate;
1643
Linus Torvalds1da177e2005-04-16 15:20:36 -07001644 /* Initialize the LM90 chip */
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001645 err = lm90_init_client(client, data);
1646 if (err < 0) {
1647 dev_err(dev, "Failed to initialize device\n");
1648 return err;
1649 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650
1651 /* Register sysfs hooks */
Guenter Roeck084489e2014-04-04 18:01:35 +02001652 data->groups[groups++] = &lm90_group;
1653
1654 if (data->flags & LM90_HAVE_OFFSET)
1655 data->groups[groups++] = &lm90_temp2_offset_group;
1656
1657 if (data->flags & LM90_HAVE_EMERGENCY)
1658 data->groups[groups++] = &lm90_emergency_group;
1659
1660 if (data->flags & LM90_HAVE_EMERGENCY_ALARM)
1661 data->groups[groups++] = &lm90_emergency_alarm_group;
1662
1663 if (data->flags & LM90_HAVE_TEMP3)
1664 data->groups[groups++] = &lm90_temp3_group;
1665
Jean Delvareb2589ab2011-11-04 12:00:47 +01001666 if (client->flags & I2C_CLIENT_PEC) {
1667 err = device_create_file(dev, &dev_attr_pec);
Guenter Roeck11e57812010-10-28 20:31:42 +02001668 if (err)
Guenter Roeck1f17a442016-06-13 06:19:11 -07001669 return err;
1670 devm_add_action(dev, lm90_remove_pec, dev);
Jean Delvare0e39e012006-09-24 21:16:40 +02001671 }
Guenter Roeck084489e2014-04-04 18:01:35 +02001672
Guenter Roeck6e5f62b2016-06-13 06:28:03 -07001673 hwmon_dev = devm_hwmon_device_register_with_groups(dev, client->name,
1674 data, data->groups);
1675 if (IS_ERR(hwmon_dev))
1676 return PTR_ERR(hwmon_dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001677
Wei Ni109b1282013-11-15 10:40:39 +01001678 if (client->irq) {
1679 dev_dbg(dev, "IRQ: %d\n", client->irq);
1680 err = devm_request_threaded_irq(dev, client->irq,
1681 NULL, lm90_irq_thread,
1682 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
1683 "lm90", client);
1684 if (err < 0) {
1685 dev_err(dev, "cannot request IRQ %d\n", client->irq);
Guenter Roeck6e5f62b2016-06-13 06:28:03 -07001686 return err;
Wei Ni109b1282013-11-15 10:40:39 +01001687 }
1688 }
1689
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001691}
1692
Jean Delvare53de3342010-03-05 22:17:15 +01001693static void lm90_alert(struct i2c_client *client, unsigned int flag)
1694{
Wei Ni072de492013-11-15 10:40:38 +01001695 u16 alarms;
Jean Delvare53de3342010-03-05 22:17:15 +01001696
Wei Ni072de492013-11-15 10:40:38 +01001697 if (lm90_is_tripped(client, &alarms)) {
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001698 /*
1699 * Disable ALERT# output, because these chips don't implement
1700 * SMBus alert correctly; they should only hold the alert line
1701 * low briefly.
1702 */
Wei Ni072de492013-11-15 10:40:38 +01001703 struct lm90_data *data = i2c_get_clientdata(client);
1704
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001705 if ((data->flags & LM90_HAVE_BROKEN_ALERT) &&
1706 (alarms & data->alert_alarms)) {
1707 int config;
1708
Jean Delvare53de3342010-03-05 22:17:15 +01001709 dev_dbg(&client->dev, "Disabling ALERT#\n");
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001710 config = lm90_read_reg(client, LM90_REG_R_CONFIG1);
1711 if (config >= 0)
1712 i2c_smbus_write_byte_data(client,
1713 LM90_REG_W_CONFIG1,
1714 config | 0x80);
Jean Delvare53de3342010-03-05 22:17:15 +01001715 }
Wei Ni072de492013-11-15 10:40:38 +01001716 } else {
1717 dev_info(&client->dev, "Everything OK\n");
Jean Delvare53de3342010-03-05 22:17:15 +01001718 }
1719}
1720
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001721static struct i2c_driver lm90_driver = {
1722 .class = I2C_CLASS_HWMON,
1723 .driver = {
1724 .name = "lm90",
1725 },
1726 .probe = lm90_probe,
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001727 .alert = lm90_alert,
1728 .id_table = lm90_id,
1729 .detect = lm90_detect,
1730 .address_list = normal_i2c,
1731};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732
Axel Linf0967ee2012-01-20 15:38:18 +08001733module_i2c_driver(lm90_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001734
Jean Delvare7c81c602014-01-29 20:40:08 +01001735MODULE_AUTHOR("Jean Delvare <jdelvare@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736MODULE_DESCRIPTION("LM90/ADM1032 driver");
1737MODULE_LICENSE("GPL");