blob: 74019dff2550efef903814d3ffaaaee4e168ad91 [file] [log] [blame]
Thomas Gleixner74ba9202019-05-20 09:19:02 +02001// SPDX-License-Identifier: GPL-2.0-or-later
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
3 * lm90.c - Part of lm_sensors, Linux kernel modules for hardware
4 * monitoring
Jean Delvare7c81c60f2014-01-29 20:40:08 +01005 * Copyright (C) 2003-2010 Jean Delvare <jdelvare@suse.de>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Based on the lm83 driver. The LM90 is a sensor chip made by National
8 * Semiconductor. It reports up to two temperatures (its own plus up to
9 * one external one) with a 0.125 deg resolution (1 deg for local
Jean Delvarea874a102008-10-17 17:51:10 +020010 * temperature) and a 3-4 deg accuracy.
Linus Torvalds1da177e2005-04-16 15:20:36 -070011 *
12 * This driver also supports the LM89 and LM99, two other sensor chips
13 * made by National Semiconductor. Both have an increased remote
14 * temperature measurement accuracy (1 degree), and the LM99
15 * additionally shifts remote temperatures (measured and limits) by 16
Jean Delvare97ae60b2008-10-26 17:04:39 +010016 * degrees, which allows for higher temperatures measurement.
Steven Cole44bbe872005-05-03 18:21:25 -060017 * Note that there is no way to differentiate between both chips.
Jean Delvare97ae60b2008-10-26 17:04:39 +010018 * When device is auto-detected, the driver will assume an LM99.
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 *
20 * This driver also supports the LM86, another sensor chip made by
21 * National Semiconductor. It is exactly similar to the LM90 except it
22 * has a higher accuracy.
Linus Torvalds1da177e2005-04-16 15:20:36 -070023 *
24 * This driver also supports the ADM1032, a sensor chip made by Analog
25 * Devices. That chip is similar to the LM90, with a few differences
Jean Delvarea874a102008-10-17 17:51:10 +020026 * that are not handled by this driver. Among others, it has a higher
27 * accuracy than the LM90, much like the LM86 does.
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 *
29 * This driver also supports the MAX6657, MAX6658 and MAX6659 sensor
Jean Delvarea874a102008-10-17 17:51:10 +020030 * chips made by Maxim. These chips are similar to the LM86.
Steven Cole44bbe872005-05-03 18:21:25 -060031 * Note that there is no easy way to differentiate between the three
Guenter Roeck69487082010-10-28 20:31:43 +020032 * variants. We use the device address to detect MAX6659, which will result
33 * in a detection as max6657 if it is on address 0x4c. The extra address
34 * and features of the MAX6659 are only supported if the chip is configured
35 * explicitly as max6659, or if its address is not 0x4c.
36 * These chips lack the remote temperature offset feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -070037 *
Guenter Roeck16ba51b2021-11-13 08:55:06 -080038 * This driver also supports the MAX6654 chip made by Maxim. This chip can be
39 * at 9 different addresses, similar to MAX6680/MAX6681. The MAX6654 is similar
40 * to MAX6657/MAX6658/MAX6659, but does not support critical temperature
41 * limits. Extended range is available by setting the configuration register
42 * accordingly, and is done during initialization. Extended precision is only
43 * available at conversion rates of 1 Hz and slower. Note that extended
44 * precision is not enabled by default, as this driver initializes all chips
45 * to 2 Hz by design.
Josh Lehan229d4952020-05-13 11:42:48 -070046 *
Darrick J. Wong1a51e062009-03-12 13:36:38 +010047 * This driver also supports the MAX6646, MAX6647, MAX6648, MAX6649 and
48 * MAX6692 chips made by Maxim. These are again similar to the LM86,
49 * but they use unsigned temperature values and can report temperatures
50 * from 0 to 145 degrees.
Ben Hutchings271dabf2008-10-17 17:51:11 +020051 *
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -040052 * This driver also supports the MAX6680 and MAX6681, two other sensor
53 * chips made by Maxim. These are quite similar to the other Maxim
Jean Delvarea874a102008-10-17 17:51:10 +020054 * chips. The MAX6680 and MAX6681 only differ in the pinout so they can
55 * be treated identically.
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -040056 *
Guenter Roeck06e1c0a2010-10-28 20:31:43 +020057 * This driver also supports the MAX6695 and MAX6696, two other sensor
58 * chips made by Maxim. These are also quite similar to other Maxim
59 * chips, but support three temperature sensors instead of two. MAX6695
60 * and MAX6696 only differ in the pinout so they can be treated identically.
61 *
Guenter Roeck5a4e5e62011-04-29 16:33:35 +020062 * This driver also supports ADT7461 and ADT7461A from Analog Devices as well as
63 * NCT1008 from ON Semiconductor. The chips are supported in both compatibility
64 * and extended mode. They are mostly compatible with LM90 except for a data
65 * format difference for the temperature value registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 *
Stijn Devriendt2ef01792011-06-06 10:40:45 +000067 * This driver also supports the SA56004 from Philips. This device is
68 * pin-compatible with the LM86, the ED/EDP parts are also address-compatible.
69 *
Guenter Roeckae544f62012-03-23 10:02:18 +010070 * This driver also supports the G781 from GMT. This device is compatible
71 * with the ADM1032.
72 *
Guenter Roeckf8344f72021-10-18 20:03:32 -070073 * This driver also supports TMP451 and TMP461 from Texas Instruments.
74 * Those devices are supported in both compatibility and extended mode.
75 * They are mostly compatible with ADT7461 except for local temperature
76 * low byte register and max conversion rate.
Wei Ni1daaceb2013-11-15 10:40:39 +010077 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * Since the LM90 was the first chipset supported by this driver, most
79 * comments will refer to this chipset, but are actually general and
80 * concern all supported chipsets, unless mentioned otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -070081 */
82
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#include <linux/module.h>
84#include <linux/init.h>
85#include <linux/slab.h>
86#include <linux/jiffies.h>
87#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040088#include <linux/hwmon.h>
89#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010090#include <linux/mutex.h>
Javier Martinez Canillasdf8d57b2017-02-24 10:13:04 -030091#include <linux/of_device.h>
Jean Delvare0e39e012006-09-24 21:16:40 +020092#include <linux/sysfs.h>
Wei Ni109b1282013-11-15 10:40:39 +010093#include <linux/interrupt.h>
Wei Ni3e0f9642013-11-15 10:40:39 +010094#include <linux/regulator/consumer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070095
96/*
97 * Addresses to scan
98 * Address is fully defined internally and cannot be changed except for
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -040099 * MAX6659, MAX6680 and MAX6681.
Guenter Roeck5a4e5e62011-04-29 16:33:35 +0200100 * LM86, LM89, LM90, LM99, ADM1032, ADM1032-1, ADT7461, ADT7461A, MAX6649,
101 * MAX6657, MAX6658, NCT1008 and W83L771 have address 0x4c.
102 * ADM1032-2, ADT7461-2, ADT7461A-2, LM89-1, LM99-1, MAX6646, and NCT1008D
103 * have address 0x4d.
Ben Hutchings271dabf2008-10-17 17:51:11 +0200104 * MAX6647 has address 0x4e.
Guenter Roeck13c84952010-10-28 20:31:43 +0200105 * MAX6659 can have address 0x4c, 0x4d or 0x4e.
Josh Lehan229d4952020-05-13 11:42:48 -0700106 * MAX6654, MAX6680, and MAX6681 can have address 0x18, 0x19, 0x1a, 0x29,
107 * 0x2a, 0x2b, 0x4c, 0x4d or 0x4e.
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000108 * SA56004 can have address 0x48 through 0x4F.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 */
110
Mark M. Hoffman25e9c862008-02-17 22:28:03 -0500111static const unsigned short normal_i2c[] = {
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000112 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x48, 0x49, 0x4a, 0x4b, 0x4c,
113 0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114
Guenter Roeck13c84952010-10-28 20:31:43 +0200115enum chips { lm90, adm1032, lm99, lm86, max6657, max6659, adt7461, max6680,
Guenter Roeckf8344f72021-10-18 20:03:32 -0700116 max6646, w83l771, max6696, sa56004, g781, tmp451, tmp461, max6654 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
118/*
119 * The LM90 registers
120 */
121
122#define LM90_REG_R_MAN_ID 0xFE
123#define LM90_REG_R_CHIP_ID 0xFF
124#define LM90_REG_R_CONFIG1 0x03
125#define LM90_REG_W_CONFIG1 0x09
126#define LM90_REG_R_CONFIG2 0xBF
127#define LM90_REG_W_CONFIG2 0xBF
128#define LM90_REG_R_CONVRATE 0x04
129#define LM90_REG_W_CONVRATE 0x0A
130#define LM90_REG_R_STATUS 0x02
131#define LM90_REG_R_LOCAL_TEMP 0x00
132#define LM90_REG_R_LOCAL_HIGH 0x05
133#define LM90_REG_W_LOCAL_HIGH 0x0B
134#define LM90_REG_R_LOCAL_LOW 0x06
135#define LM90_REG_W_LOCAL_LOW 0x0C
136#define LM90_REG_R_LOCAL_CRIT 0x20
137#define LM90_REG_W_LOCAL_CRIT 0x20
138#define LM90_REG_R_REMOTE_TEMPH 0x01
139#define LM90_REG_R_REMOTE_TEMPL 0x10
140#define LM90_REG_R_REMOTE_OFFSH 0x11
141#define LM90_REG_W_REMOTE_OFFSH 0x11
142#define LM90_REG_R_REMOTE_OFFSL 0x12
143#define LM90_REG_W_REMOTE_OFFSL 0x12
144#define LM90_REG_R_REMOTE_HIGHH 0x07
145#define LM90_REG_W_REMOTE_HIGHH 0x0D
146#define LM90_REG_R_REMOTE_HIGHL 0x13
147#define LM90_REG_W_REMOTE_HIGHL 0x13
148#define LM90_REG_R_REMOTE_LOWH 0x08
149#define LM90_REG_W_REMOTE_LOWH 0x0E
150#define LM90_REG_R_REMOTE_LOWL 0x14
151#define LM90_REG_W_REMOTE_LOWL 0x14
152#define LM90_REG_R_REMOTE_CRIT 0x19
153#define LM90_REG_W_REMOTE_CRIT 0x19
154#define LM90_REG_R_TCRIT_HYST 0x21
155#define LM90_REG_W_TCRIT_HYST 0x21
156
Josh Lehan229d4952020-05-13 11:42:48 -0700157/* MAX6646/6647/6649/6654/6657/6658/6659/6695/6696 registers */
Jean Delvaref65e1702008-10-17 17:51:09 +0200158
159#define MAX6657_REG_R_LOCAL_TEMPL 0x11
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200160#define MAX6696_REG_R_STATUS2 0x12
Guenter Roeck69487082010-10-28 20:31:43 +0200161#define MAX6659_REG_R_REMOTE_EMERG 0x16
162#define MAX6659_REG_W_REMOTE_EMERG 0x16
163#define MAX6659_REG_R_LOCAL_EMERG 0x17
164#define MAX6659_REG_W_LOCAL_EMERG 0x17
Jean Delvaref65e1702008-10-17 17:51:09 +0200165
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000166/* SA56004 registers */
167
168#define SA56004_REG_R_LOCAL_TEMPL 0x22
169
Guenter Roeck0c01b642010-10-28 20:31:44 +0200170#define LM90_MAX_CONVRATE_MS 16000 /* Maximum conversion rate in ms */
171
Guenter Roeckf8344f72021-10-18 20:03:32 -0700172/* TMP451/TMP461 registers */
Wei Ni1daaceb2013-11-15 10:40:39 +0100173#define TMP451_REG_R_LOCAL_TEMPL 0x15
Guenter Roeckf8344f72021-10-18 20:03:32 -0700174#define TMP451_REG_CONALERT 0x22
175
176#define TMP461_REG_CHEN 0x16
177#define TMP461_REG_DFC 0x24
Wei Ni1daaceb2013-11-15 10:40:39 +0100178
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 */
Guenter Roeckf347e242021-10-21 01:49:50 -0700190#define LM90_HAVE_EXTENDED_TEMP (1 << 8) /* extended temperature support*/
191#define LM90_PAUSE_FOR_CONFIG (1 << 9) /* Pause conversion for config */
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800192#define LM90_HAVE_CRIT (1 << 10)/* Chip supports CRIT/OVERT register */
Guenter Roeckda7dc052021-11-26 22:43:39 -0800193#define LM90_HAVE_CRIT_ALRM_SWP (1 << 11)/* critical alarm bits swapped */
Nate Case23b2d472008-10-17 17:51:10 +0200194
Wei Ni072de492013-11-15 10:40:38 +0100195/* LM90 status */
196#define LM90_STATUS_LTHRM (1 << 0) /* local THERM limit tripped */
197#define LM90_STATUS_RTHRM (1 << 1) /* remote THERM limit tripped */
198#define LM90_STATUS_ROPEN (1 << 2) /* remote is an open circuit */
199#define LM90_STATUS_RLOW (1 << 3) /* remote low temp limit tripped */
200#define LM90_STATUS_RHIGH (1 << 4) /* remote high temp limit tripped */
201#define LM90_STATUS_LLOW (1 << 5) /* local low temp limit tripped */
202#define LM90_STATUS_LHIGH (1 << 6) /* local high temp limit tripped */
Guenter Roeckcdc52872021-12-03 13:42:22 -0800203#define LM90_STATUS_BUSY (1 << 7) /* conversion is ongoing */
Wei Ni072de492013-11-15 10:40:38 +0100204
205#define MAX6696_STATUS2_R2THRM (1 << 1) /* remote2 THERM limit tripped */
206#define MAX6696_STATUS2_R2OPEN (1 << 2) /* remote2 is an open circuit */
207#define MAX6696_STATUS2_R2LOW (1 << 3) /* remote2 low temp limit tripped */
208#define MAX6696_STATUS2_R2HIGH (1 << 4) /* remote2 high temp limit tripped */
209#define MAX6696_STATUS2_ROT2 (1 << 5) /* remote emergency limit tripped */
210#define MAX6696_STATUS2_R2OT2 (1 << 6) /* remote2 emergency limit tripped */
211#define MAX6696_STATUS2_LOT2 (1 << 7) /* local emergency limit tripped */
212
Nate Case23b2d472008-10-17 17:51:10 +0200213/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214 * Driver data (common to all clients)
215 */
216
Jean Delvare9b0e8522008-07-16 19:30:15 +0200217static const struct i2c_device_id lm90_id[] = {
218 { "adm1032", adm1032 },
219 { "adt7461", adt7461 },
Guenter Roeck5a4e5e62011-04-29 16:33:35 +0200220 { "adt7461a", adt7461 },
Guenter Roeckae544f62012-03-23 10:02:18 +0100221 { "g781", g781 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200222 { "lm90", lm90 },
223 { "lm86", lm86 },
Jean Delvare97ae60b2008-10-26 17:04:39 +0100224 { "lm89", lm86 },
225 { "lm99", lm99 },
Ben Hutchings271dabf2008-10-17 17:51:11 +0200226 { "max6646", max6646 },
227 { "max6647", max6646 },
228 { "max6649", max6646 },
Josh Lehan229d4952020-05-13 11:42:48 -0700229 { "max6654", max6654 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200230 { "max6657", max6657 },
231 { "max6658", max6657 },
Guenter Roeck13c84952010-10-28 20:31:43 +0200232 { "max6659", max6659 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200233 { "max6680", max6680 },
234 { "max6681", max6680 },
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200235 { "max6695", max6696 },
236 { "max6696", max6696 },
Guenter Roeck5a4e5e62011-04-29 16:33:35 +0200237 { "nct1008", adt7461 },
Jean Delvare6771ea12010-03-05 22:17:13 +0100238 { "w83l771", w83l771 },
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000239 { "sa56004", sa56004 },
Wei Ni1daaceb2013-11-15 10:40:39 +0100240 { "tmp451", tmp451 },
Guenter Roeckf8344f72021-10-18 20:03:32 -0700241 { "tmp461", tmp461 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200242 { }
243};
244MODULE_DEVICE_TABLE(i2c, lm90_id);
245
Guenter Roeck787afaa2019-04-04 06:21:17 -0700246static const struct of_device_id __maybe_unused lm90_of_match[] = {
Javier Martinez Canillasdf8d57b2017-02-24 10:13:04 -0300247 {
248 .compatible = "adi,adm1032",
249 .data = (void *)adm1032
250 },
251 {
252 .compatible = "adi,adt7461",
253 .data = (void *)adt7461
254 },
255 {
256 .compatible = "adi,adt7461a",
257 .data = (void *)adt7461
258 },
259 {
260 .compatible = "gmt,g781",
261 .data = (void *)g781
262 },
263 {
264 .compatible = "national,lm90",
265 .data = (void *)lm90
266 },
267 {
268 .compatible = "national,lm86",
269 .data = (void *)lm86
270 },
271 {
272 .compatible = "national,lm89",
273 .data = (void *)lm86
274 },
275 {
276 .compatible = "national,lm99",
277 .data = (void *)lm99
278 },
279 {
280 .compatible = "dallas,max6646",
281 .data = (void *)max6646
282 },
283 {
284 .compatible = "dallas,max6647",
285 .data = (void *)max6646
286 },
287 {
288 .compatible = "dallas,max6649",
289 .data = (void *)max6646
290 },
291 {
Josh Lehan229d4952020-05-13 11:42:48 -0700292 .compatible = "dallas,max6654",
293 .data = (void *)max6654
294 },
295 {
Javier Martinez Canillasdf8d57b2017-02-24 10:13:04 -0300296 .compatible = "dallas,max6657",
297 .data = (void *)max6657
298 },
299 {
300 .compatible = "dallas,max6658",
301 .data = (void *)max6657
302 },
303 {
304 .compatible = "dallas,max6659",
305 .data = (void *)max6659
306 },
307 {
308 .compatible = "dallas,max6680",
309 .data = (void *)max6680
310 },
311 {
312 .compatible = "dallas,max6681",
313 .data = (void *)max6680
314 },
315 {
316 .compatible = "dallas,max6695",
317 .data = (void *)max6696
318 },
319 {
320 .compatible = "dallas,max6696",
321 .data = (void *)max6696
322 },
323 {
324 .compatible = "onnn,nct1008",
325 .data = (void *)adt7461
326 },
327 {
328 .compatible = "winbond,w83l771",
329 .data = (void *)w83l771
330 },
331 {
332 .compatible = "nxp,sa56004",
333 .data = (void *)sa56004
334 },
335 {
336 .compatible = "ti,tmp451",
337 .data = (void *)tmp451
338 },
Guenter Roeckf8344f72021-10-18 20:03:32 -0700339 {
340 .compatible = "ti,tmp461",
341 .data = (void *)tmp461
342 },
Javier Martinez Canillasdf8d57b2017-02-24 10:13:04 -0300343 { },
344};
345MODULE_DEVICE_TABLE(of, lm90_of_match);
346
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347/*
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200348 * chip type specific parameters
349 */
350struct lm90_params {
351 u32 flags; /* Capabilities */
352 u16 alert_alarms; /* Which alarm bits trigger ALERT# */
353 /* Upper 8 bits for max6695/96 */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200354 u8 max_convrate; /* Maximum conversion rate register value */
Jean Delvarea095f682011-07-27 23:22:25 -0700355 u8 reg_local_ext; /* Extended local temp register (optional) */
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200356};
357
358static const struct lm90_params lm90_params[] = {
359 [adm1032] = {
Guenter Roeck11793242010-10-28 20:31:44 +0200360 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800361 | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_CRIT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200362 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200363 .max_convrate = 10,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200364 },
365 [adt7461] = {
Guenter Roeck11793242010-10-28 20:31:44 +0200366 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800367 | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_EXTENDED_TEMP
368 | LM90_HAVE_CRIT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200369 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200370 .max_convrate = 10,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200371 },
Guenter Roeckae544f62012-03-23 10:02:18 +0100372 [g781] = {
373 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800374 | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_CRIT,
Guenter Roeckae544f62012-03-23 10:02:18 +0100375 .alert_alarms = 0x7c,
376 .max_convrate = 8,
377 },
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200378 [lm86] = {
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800379 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
380 | LM90_HAVE_CRIT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200381 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200382 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200383 },
384 [lm90] = {
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800385 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
386 | LM90_HAVE_CRIT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200387 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200388 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200389 },
390 [lm99] = {
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800391 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
392 | LM90_HAVE_CRIT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200393 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200394 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200395 },
396 [max6646] = {
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800397 .flags = LM90_HAVE_CRIT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200398 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200399 .max_convrate = 6,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000400 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200401 },
Josh Lehan229d4952020-05-13 11:42:48 -0700402 [max6654] = {
403 .alert_alarms = 0x7c,
404 .max_convrate = 7,
405 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
406 },
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200407 [max6657] = {
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800408 .flags = LM90_PAUSE_FOR_CONFIG | LM90_HAVE_CRIT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200409 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200410 .max_convrate = 8,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000411 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200412 },
413 [max6659] = {
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800414 .flags = LM90_HAVE_EMERGENCY | LM90_HAVE_CRIT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200415 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200416 .max_convrate = 8,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000417 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200418 },
419 [max6680] = {
Guenter Roeckda7dc052021-11-26 22:43:39 -0800420 .flags = LM90_HAVE_OFFSET | LM90_HAVE_CRIT
421 | LM90_HAVE_CRIT_ALRM_SWP,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200422 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200423 .max_convrate = 7,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200424 },
425 [max6696] = {
Jean Delvarea095f682011-07-27 23:22:25 -0700426 .flags = LM90_HAVE_EMERGENCY
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800427 | LM90_HAVE_EMERGENCY_ALARM | LM90_HAVE_TEMP3 | LM90_HAVE_CRIT,
Guenter Roecke41fae2b2013-11-15 10:40:38 +0100428 .alert_alarms = 0x1c7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200429 .max_convrate = 6,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000430 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200431 },
432 [w83l771] = {
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800433 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT | LM90_HAVE_CRIT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200434 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200435 .max_convrate = 8,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200436 },
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000437 [sa56004] = {
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800438 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT | LM90_HAVE_CRIT,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000439 .alert_alarms = 0x7b,
440 .max_convrate = 9,
441 .reg_local_ext = SA56004_REG_R_LOCAL_TEMPL,
442 },
Wei Ni1daaceb2013-11-15 10:40:39 +0100443 [tmp451] = {
444 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800445 | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_EXTENDED_TEMP | LM90_HAVE_CRIT,
Wei Ni1daaceb2013-11-15 10:40:39 +0100446 .alert_alarms = 0x7c,
447 .max_convrate = 9,
448 .reg_local_ext = TMP451_REG_R_LOCAL_TEMPL,
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700449 },
Guenter Roeckf8344f72021-10-18 20:03:32 -0700450 [tmp461] = {
451 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800452 | LM90_HAVE_BROKEN_ALERT | LM90_HAVE_EXTENDED_TEMP | LM90_HAVE_CRIT,
Guenter Roeckf8344f72021-10-18 20:03:32 -0700453 .alert_alarms = 0x7c,
454 .max_convrate = 9,
455 .reg_local_ext = TMP451_REG_R_LOCAL_TEMPL,
456 },
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200457};
458
459/*
Wei Ni40465d92013-11-15 10:40:39 +0100460 * TEMP8 register index
461 */
462enum lm90_temp8_reg_index {
463 LOCAL_LOW = 0,
464 LOCAL_HIGH,
465 LOCAL_CRIT,
466 REMOTE_CRIT,
467 LOCAL_EMERG, /* max6659 and max6695/96 */
468 REMOTE_EMERG, /* max6659 and max6695/96 */
469 REMOTE2_CRIT, /* max6695/96 only */
470 REMOTE2_EMERG, /* max6695/96 only */
471 TEMP8_REG_NUM
472};
473
474/*
475 * TEMP11 register index
476 */
477enum lm90_temp11_reg_index {
478 REMOTE_TEMP = 0,
479 REMOTE_LOW,
480 REMOTE_HIGH,
481 REMOTE_OFFSET, /* except max6646, max6657/58/59, and max6695/96 */
482 LOCAL_TEMP,
483 REMOTE2_TEMP, /* max6695/96 only */
484 REMOTE2_LOW, /* max6695/96 only */
485 REMOTE2_HIGH, /* max6695/96 only */
486 TEMP11_REG_NUM
487};
488
489/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490 * Client data (each client gets its own)
491 */
492
493struct lm90_data {
Guenter Roeck1de8b252014-04-04 18:01:35 +0200494 struct i2c_client *client;
Dmitry Osipenko94dbd232021-06-19 00:54:53 +0300495 struct device *hwmon_dev;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700496 u32 channel_config[4];
497 struct hwmon_channel_info temp_info;
498 const struct hwmon_channel_info *info[3];
499 struct hwmon_chip_info chip;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100500 struct mutex update_lock;
Guenter Roeck2f83ab72016-06-18 15:39:08 -0700501 bool valid; /* true if register values are valid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502 unsigned long last_updated; /* in jiffies */
503 int kind;
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200504 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505
Wolfram Sang38bab982016-06-05 09:35:43 +0200506 unsigned int update_interval; /* in milliseconds */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200507
Guenter Roeckb849e5d2019-06-30 15:14:19 -0700508 u8 config; /* Current configuration register value */
Jean Delvare95238362010-03-05 22:17:14 +0100509 u8 config_orig; /* Original configuration register value */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200510 u8 convrate_orig; /* Original conversion rate register value */
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200511 u16 alert_alarms; /* Which alarm bits trigger ALERT# */
512 /* Upper 8 bits for max6695/96 */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200513 u8 max_convrate; /* Maximum conversion rate */
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000514 u8 reg_local_ext; /* local extension register offset */
Jean Delvare95238362010-03-05 22:17:14 +0100515
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 /* registers values */
Wei Ni40465d92013-11-15 10:40:39 +0100517 s8 temp8[TEMP8_REG_NUM];
518 s16 temp11[TEMP11_REG_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 u8 temp_hyst;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200520 u16 alarms; /* bitvector (upper 8 bits for max6695/96) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521};
522
523/*
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200524 * Support functions
525 */
526
527/*
528 * The ADM1032 supports PEC but not on write byte transactions, so we need
529 * to explicitly ask for a transaction without PEC.
530 */
531static inline s32 adm1032_write_byte(struct i2c_client *client, u8 value)
532{
533 return i2c_smbus_xfer(client->adapter, client->addr,
534 client->flags & ~I2C_CLIENT_PEC,
535 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
536}
537
538/*
539 * It is assumed that client->update_lock is held (unless we are in
540 * detection or initialization steps). This matters when PEC is enabled,
541 * because we don't want the address pointer to change between the write
542 * byte and the read byte transactions.
543 */
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700544static int lm90_read_reg(struct i2c_client *client, u8 reg)
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200545{
546 int err;
547
548 if (client->flags & I2C_CLIENT_PEC) {
549 err = adm1032_write_byte(client, reg);
550 if (err >= 0)
551 err = i2c_smbus_read_byte(client);
552 } else
553 err = i2c_smbus_read_byte_data(client, reg);
554
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700555 return err;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200556}
557
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700558static int lm90_read16(struct i2c_client *client, u8 regh, u8 regl)
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200559{
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700560 int oldh, newh, l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200561
562 /*
563 * There is a trick here. We have to read two registers to have the
564 * sensor temperature, but we have to beware a conversion could occur
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300565 * between the readings. The datasheet says we should either use
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200566 * the one-shot conversion register, which we don't want to do
567 * (disables hardware monitoring) or monitor the busy bit, which is
568 * impossible (we can't read the values and monitor that bit at the
569 * exact same time). So the solution used here is to read the high
570 * byte once, then the low byte, then the high byte again. If the new
571 * high byte matches the old one, then we have a valid reading. Else
572 * we have to read the low byte again, and now we believe we have a
573 * correct reading.
574 */
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700575 oldh = lm90_read_reg(client, regh);
576 if (oldh < 0)
577 return oldh;
578 l = lm90_read_reg(client, regl);
579 if (l < 0)
580 return l;
581 newh = lm90_read_reg(client, regh);
582 if (newh < 0)
583 return newh;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200584 if (oldh != newh) {
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700585 l = lm90_read_reg(client, regl);
586 if (l < 0)
587 return l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200588 }
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700589 return (newh << 8) | l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200590}
591
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700592static int lm90_update_confreg(struct lm90_data *data, u8 config)
593{
594 if (data->config != config) {
595 int err;
596
597 err = i2c_smbus_write_byte_data(data->client,
598 LM90_REG_W_CONFIG1,
599 config);
600 if (err)
601 return err;
602 data->config = config;
603 }
604 return 0;
605}
606
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200607/*
608 * client->update_lock must be held when calling this function (unless we are
609 * in detection or initialization steps), and while a remote channel other
610 * than channel 0 is selected. Also, calling code must make sure to re-select
611 * external channel 0 before releasing the lock. This is necessary because
612 * various registers have different meanings as a result of selecting a
613 * non-default remote channel.
614 */
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700615static int lm90_select_remote_channel(struct lm90_data *data, int channel)
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200616{
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700617 int err = 0;
618
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200619 if (data->kind == max6696) {
Guenter Roeckb849e5d2019-06-30 15:14:19 -0700620 u8 config = data->config & ~0x08;
Guenter Roeckb849e5d2019-06-30 15:14:19 -0700621
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200622 if (channel)
623 config |= 0x08;
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700624 err = lm90_update_confreg(data, config);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200625 }
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700626 return err;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200627}
628
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700629static int lm90_write_convrate(struct lm90_data *data, int val)
Boyang Yu62456182019-06-28 19:06:36 +0000630{
Guenter Roeckb849e5d2019-06-30 15:14:19 -0700631 u8 config = data->config;
Boyang Yu62456182019-06-28 19:06:36 +0000632 int err;
Boyang Yu62456182019-06-28 19:06:36 +0000633
634 /* Save config and pause conversion */
635 if (data->flags & LM90_PAUSE_FOR_CONFIG) {
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700636 err = lm90_update_confreg(data, config | 0x40);
637 if (err < 0)
638 return err;
Boyang Yu62456182019-06-28 19:06:36 +0000639 }
640
641 /* Set conv rate */
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700642 err = i2c_smbus_write_byte_data(data->client, LM90_REG_W_CONVRATE, val);
Boyang Yu62456182019-06-28 19:06:36 +0000643
644 /* Revert change to config */
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700645 lm90_update_confreg(data, config);
Boyang Yu62456182019-06-28 19:06:36 +0000646
647 return err;
648}
649
Guenter Roeck0c01b642010-10-28 20:31:44 +0200650/*
651 * Set conversion rate.
652 * client->update_lock must be held when calling this function (unless we are
653 * in detection or initialization steps).
654 */
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700655static int lm90_set_convrate(struct i2c_client *client, struct lm90_data *data,
656 unsigned int interval)
Guenter Roeck0c01b642010-10-28 20:31:44 +0200657{
Guenter Roeck0c01b642010-10-28 20:31:44 +0200658 unsigned int update_interval;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700659 int i, err;
Guenter Roeck0c01b642010-10-28 20:31:44 +0200660
661 /* Shift calculations to avoid rounding errors */
662 interval <<= 6;
663
664 /* find the nearest update rate */
665 for (i = 0, update_interval = LM90_MAX_CONVRATE_MS << 6;
666 i < data->max_convrate; i++, update_interval >>= 1)
667 if (interval >= update_interval * 3 / 4)
668 break;
669
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700670 err = lm90_write_convrate(data, i);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200671 data->update_interval = DIV_ROUND_CLOSEST(update_interval, 64);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700672 return err;
Guenter Roeck0c01b642010-10-28 20:31:44 +0200673}
674
Guenter Roeck10bfef42016-06-13 19:26:45 -0700675static int lm90_update_limits(struct device *dev)
676{
677 struct lm90_data *data = dev_get_drvdata(dev);
678 struct i2c_client *client = data->client;
679 int val;
680
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800681 if (data->flags & LM90_HAVE_CRIT) {
682 val = lm90_read_reg(client, LM90_REG_R_LOCAL_CRIT);
683 if (val < 0)
684 return val;
685 data->temp8[LOCAL_CRIT] = val;
Guenter Roeck10bfef42016-06-13 19:26:45 -0700686
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800687 val = lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT);
688 if (val < 0)
689 return val;
690 data->temp8[REMOTE_CRIT] = val;
Guenter Roeck10bfef42016-06-13 19:26:45 -0700691
Guenter Roeck16ba51b2021-11-13 08:55:06 -0800692 val = lm90_read_reg(client, LM90_REG_R_TCRIT_HYST);
693 if (val < 0)
694 return val;
695 data->temp_hyst = val;
696 }
Guenter Roeck10bfef42016-06-13 19:26:45 -0700697
Guenter Roeckbe9d6372016-07-25 14:47:18 -0700698 val = lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH);
Guenter Roeck10bfef42016-06-13 19:26:45 -0700699 if (val < 0)
700 return val;
701 data->temp11[REMOTE_LOW] = val << 8;
702
703 if (data->flags & LM90_HAVE_REM_LIMIT_EXT) {
704 val = lm90_read_reg(client, LM90_REG_R_REMOTE_LOWL);
705 if (val < 0)
706 return val;
707 data->temp11[REMOTE_LOW] |= val;
708 }
709
710 val = lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH);
711 if (val < 0)
712 return val;
713 data->temp11[REMOTE_HIGH] = val << 8;
714
715 if (data->flags & LM90_HAVE_REM_LIMIT_EXT) {
716 val = lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHL);
717 if (val < 0)
718 return val;
719 data->temp11[REMOTE_HIGH] |= val;
720 }
721
722 if (data->flags & LM90_HAVE_OFFSET) {
723 val = lm90_read16(client, LM90_REG_R_REMOTE_OFFSH,
724 LM90_REG_R_REMOTE_OFFSL);
725 if (val < 0)
726 return val;
727 data->temp11[REMOTE_OFFSET] = val;
728 }
729
730 if (data->flags & LM90_HAVE_EMERGENCY) {
731 val = lm90_read_reg(client, MAX6659_REG_R_LOCAL_EMERG);
732 if (val < 0)
733 return val;
734 data->temp8[LOCAL_EMERG] = val;
735
736 val = lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG);
737 if (val < 0)
738 return val;
739 data->temp8[REMOTE_EMERG] = val;
740 }
741
742 if (data->kind == max6696) {
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700743 val = lm90_select_remote_channel(data, 1);
Guenter Roeck10bfef42016-06-13 19:26:45 -0700744 if (val < 0)
745 return val;
746
747 val = lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT);
748 if (val < 0)
749 return val;
750 data->temp8[REMOTE2_CRIT] = val;
751
752 val = lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG);
753 if (val < 0)
754 return val;
755 data->temp8[REMOTE2_EMERG] = val;
756
757 val = lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH);
758 if (val < 0)
759 return val;
760 data->temp11[REMOTE2_LOW] = val << 8;
761
762 val = lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH);
763 if (val < 0)
764 return val;
765 data->temp11[REMOTE2_HIGH] = val << 8;
766
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700767 lm90_select_remote_channel(data, 0);
Guenter Roeck10bfef42016-06-13 19:26:45 -0700768 }
769
770 return 0;
771}
772
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700773static int lm90_update_device(struct device *dev)
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200774{
Guenter Roeck1de8b252014-04-04 18:01:35 +0200775 struct lm90_data *data = dev_get_drvdata(dev);
776 struct i2c_client *client = data->client;
Guenter Roeck0c01b642010-10-28 20:31:44 +0200777 unsigned long next_update;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700778 int val;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200779
Guenter Roeck10bfef42016-06-13 19:26:45 -0700780 if (!data->valid) {
781 val = lm90_update_limits(dev);
782 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700783 return val;
Guenter Roeck10bfef42016-06-13 19:26:45 -0700784 }
785
Jean Delvare78c2c2f2013-07-08 14:18:24 +0200786 next_update = data->last_updated +
787 msecs_to_jiffies(data->update_interval);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200788 if (time_after(jiffies, next_update) || !data->valid) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200789 dev_dbg(&client->dev, "Updating lm90 data.\n");
Guenter Roeck10bfef42016-06-13 19:26:45 -0700790
Guenter Roeck2f83ab72016-06-18 15:39:08 -0700791 data->valid = false;
Guenter Roeck10bfef42016-06-13 19:26:45 -0700792
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700793 val = lm90_read_reg(client, LM90_REG_R_LOCAL_LOW);
794 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700795 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700796 data->temp8[LOCAL_LOW] = val;
797
798 val = lm90_read_reg(client, LM90_REG_R_LOCAL_HIGH);
799 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700800 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700801 data->temp8[LOCAL_HIGH] = val;
802
Jean Delvarea095f682011-07-27 23:22:25 -0700803 if (data->reg_local_ext) {
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700804 val = lm90_read16(client, LM90_REG_R_LOCAL_TEMP,
805 data->reg_local_ext);
806 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700807 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700808 data->temp11[LOCAL_TEMP] = val;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200809 } else {
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700810 val = lm90_read_reg(client, LM90_REG_R_LOCAL_TEMP);
811 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700812 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700813 data->temp11[LOCAL_TEMP] = val << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200814 }
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700815 val = lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
816 LM90_REG_R_REMOTE_TEMPL);
817 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700818 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700819 data->temp11[REMOTE_TEMP] = val;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200820
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700821 val = lm90_read_reg(client, LM90_REG_R_STATUS);
822 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700823 return val;
Guenter Roeckcdc52872021-12-03 13:42:22 -0800824 data->alarms = val & ~LM90_STATUS_BUSY;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200825
826 if (data->kind == max6696) {
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700827 val = lm90_select_remote_channel(data, 1);
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700828 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700829 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700830
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700831 val = lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
832 LM90_REG_R_REMOTE_TEMPL);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700833 if (val < 0) {
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700834 lm90_select_remote_channel(data, 0);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700835 return val;
836 }
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700837 data->temp11[REMOTE2_TEMP] = val;
838
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700839 lm90_select_remote_channel(data, 0);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200840
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700841 val = lm90_read_reg(client, MAX6696_REG_R_STATUS2);
842 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700843 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700844 data->alarms |= val << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200845 }
846
Guenter Roeckf36ffea2012-03-23 10:02:18 +0100847 /*
848 * Re-enable ALERT# output if it was originally enabled and
849 * relevant alarms are all clear
850 */
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700851 if (!(data->config_orig & 0x80) &&
852 !(data->alarms & data->alert_alarms)) {
Guenter Roeckb849e5d2019-06-30 15:14:19 -0700853 if (data->config & 0x80) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200854 dev_dbg(&client->dev, "Re-enabling ALERT#\n");
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700855 lm90_update_confreg(data, data->config & ~0x80);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200856 }
857 }
858
859 data->last_updated = jiffies;
Guenter Roeck2f83ab72016-06-18 15:39:08 -0700860 data->valid = true;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200861 }
862
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700863 return 0;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200864}
865
866/*
Nate Casecea50fe2008-10-17 17:51:10 +0200867 * Conversions
868 * For local temperatures and limits, critical limits and the hysteresis
869 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius.
870 * For remote temperatures and limits, it uses signed 11-bit values with
Ben Hutchings271dabf2008-10-17 17:51:11 +0200871 * LSB = 0.125 degree Celsius, left-justified in 16-bit registers. Some
872 * Maxim chips use unsigned values.
Nate Casecea50fe2008-10-17 17:51:10 +0200873 */
874
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200875static inline int temp_from_s8(s8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200876{
877 return val * 1000;
878}
879
Ben Hutchings271dabf2008-10-17 17:51:11 +0200880static inline int temp_from_u8(u8 val)
881{
882 return val * 1000;
883}
884
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200885static inline int temp_from_s16(s16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200886{
887 return val / 32 * 125;
888}
889
Ben Hutchings271dabf2008-10-17 17:51:11 +0200890static inline int temp_from_u16(u16 val)
891{
892 return val / 32 * 125;
893}
894
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200895static s8 temp_to_s8(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200896{
897 if (val <= -128000)
898 return -128;
899 if (val >= 127000)
900 return 127;
901 if (val < 0)
902 return (val - 500) / 1000;
903 return (val + 500) / 1000;
904}
905
Ben Hutchings271dabf2008-10-17 17:51:11 +0200906static u8 temp_to_u8(long val)
907{
908 if (val <= 0)
909 return 0;
910 if (val >= 255000)
911 return 255;
912 return (val + 500) / 1000;
913}
914
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200915static s16 temp_to_s16(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200916{
917 if (val <= -128000)
918 return 0x8000;
919 if (val >= 127875)
920 return 0x7FE0;
921 if (val < 0)
922 return (val - 62) / 125 * 32;
923 return (val + 62) / 125 * 32;
924}
925
926static u8 hyst_to_reg(long val)
927{
928 if (val <= 0)
929 return 0;
930 if (val >= 30500)
931 return 31;
932 return (val + 500) / 1000;
933}
934
935/*
Nate Case23b2d472008-10-17 17:51:10 +0200936 * ADT7461 in compatibility mode is almost identical to LM90 except that
937 * attempts to write values that are outside the range 0 < temp < 127 are
938 * treated as the boundary value.
939 *
940 * ADT7461 in "extended mode" operation uses unsigned integers offset by
941 * 64 (e.g., 0 -> -64 degC). The range is restricted to -64..191 degC.
Nate Casecea50fe2008-10-17 17:51:10 +0200942 */
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200943static inline int temp_from_u8_adt7461(struct lm90_data *data, u8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200944{
Nate Case23b2d472008-10-17 17:51:10 +0200945 if (data->flags & LM90_FLAG_ADT7461_EXT)
946 return (val - 64) * 1000;
Guenter Roeck589f7072016-06-18 19:58:26 -0700947 return temp_from_s8(val);
Nate Casecea50fe2008-10-17 17:51:10 +0200948}
949
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200950static inline int temp_from_u16_adt7461(struct lm90_data *data, u16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200951{
Nate Case23b2d472008-10-17 17:51:10 +0200952 if (data->flags & LM90_FLAG_ADT7461_EXT)
953 return (val - 0x4000) / 64 * 250;
Guenter Roeck589f7072016-06-18 19:58:26 -0700954 return temp_from_s16(val);
Nate Case23b2d472008-10-17 17:51:10 +0200955}
956
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200957static u8 temp_to_u8_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200958{
959 if (data->flags & LM90_FLAG_ADT7461_EXT) {
960 if (val <= -64000)
961 return 0;
962 if (val >= 191000)
963 return 0xFF;
964 return (val + 500 + 64000) / 1000;
Nate Case23b2d472008-10-17 17:51:10 +0200965 }
Guenter Roeck589f7072016-06-18 19:58:26 -0700966 if (val <= 0)
967 return 0;
968 if (val >= 127000)
969 return 127;
970 return (val + 500) / 1000;
Nate Case23b2d472008-10-17 17:51:10 +0200971}
972
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200973static u16 temp_to_u16_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200974{
975 if (data->flags & LM90_FLAG_ADT7461_EXT) {
976 if (val <= -64000)
977 return 0;
978 if (val >= 191750)
979 return 0xFFC0;
980 return (val + 64000 + 125) / 250 * 64;
Nate Case23b2d472008-10-17 17:51:10 +0200981 }
Guenter Roeck589f7072016-06-18 19:58:26 -0700982 if (val <= 0)
983 return 0;
984 if (val >= 127750)
985 return 0x7FC0;
986 return (val + 125) / 250 * 64;
Nate Casecea50fe2008-10-17 17:51:10 +0200987}
988
Jean Delvarec3df5802005-10-26 21:39:40 +0200989/* pec used for ADM1032 only */
Julia Lawalle57959a2016-12-22 13:05:22 +0100990static ssize_t pec_show(struct device *dev, struct device_attribute *dummy,
Jean Delvarec3df5802005-10-26 21:39:40 +0200991 char *buf)
992{
993 struct i2c_client *client = to_i2c_client(dev);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700994
Jean Delvarec3df5802005-10-26 21:39:40 +0200995 return sprintf(buf, "%d\n", !!(client->flags & I2C_CLIENT_PEC));
996}
997
Julia Lawalle57959a2016-12-22 13:05:22 +0100998static ssize_t pec_store(struct device *dev, struct device_attribute *dummy,
999 const char *buf, size_t count)
Jean Delvarec3df5802005-10-26 21:39:40 +02001000{
1001 struct i2c_client *client = to_i2c_client(dev);
Guenter Roeck11e57812010-10-28 20:31:42 +02001002 long val;
1003 int err;
1004
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001005 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +02001006 if (err < 0)
1007 return err;
Jean Delvarec3df5802005-10-26 21:39:40 +02001008
1009 switch (val) {
1010 case 0:
1011 client->flags &= ~I2C_CLIENT_PEC;
1012 break;
1013 case 1:
1014 client->flags |= I2C_CLIENT_PEC;
1015 break;
1016 default:
1017 return -EINVAL;
1018 }
1019
1020 return count;
1021}
1022
Julia Lawalle57959a2016-12-22 13:05:22 +01001023static DEVICE_ATTR_RW(pec);
Jean Delvarec3df5802005-10-26 21:39:40 +02001024
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001025static int lm90_get_temp11(struct lm90_data *data, int index)
1026{
1027 s16 temp11 = data->temp11[index];
1028 int temp;
1029
Guenter Roeckf347e242021-10-21 01:49:50 -07001030 if (data->flags & LM90_HAVE_EXTENDED_TEMP)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001031 temp = temp_from_u16_adt7461(data, temp11);
1032 else if (data->kind == max6646)
1033 temp = temp_from_u16(temp11);
1034 else
1035 temp = temp_from_s16(temp11);
1036
1037 /* +16 degrees offset for temp2 for the LM99 */
1038 if (data->kind == lm99 && index <= 2)
1039 temp += 16000;
1040
1041 return temp;
1042}
1043
1044static int lm90_set_temp11(struct lm90_data *data, int index, long val)
1045{
1046 static struct reg {
1047 u8 high;
1048 u8 low;
1049 } reg[] = {
1050 [REMOTE_LOW] = { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL },
1051 [REMOTE_HIGH] = { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL },
1052 [REMOTE_OFFSET] = { LM90_REG_W_REMOTE_OFFSH, LM90_REG_W_REMOTE_OFFSL },
1053 [REMOTE2_LOW] = { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL },
1054 [REMOTE2_HIGH] = { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL }
1055 };
1056 struct i2c_client *client = data->client;
1057 struct reg *regp = &reg[index];
1058 int err;
1059
1060 /* +16 degrees offset for temp2 for the LM99 */
Dmitry Osipenkob50aa492021-06-23 07:22:30 +03001061 if (data->kind == lm99 && index <= 2) {
1062 /* prevent integer underflow */
1063 val = max(val, -128000l);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001064 val -= 16000;
Dmitry Osipenkob50aa492021-06-23 07:22:30 +03001065 }
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001066
Guenter Roeckf347e242021-10-21 01:49:50 -07001067 if (data->flags & LM90_HAVE_EXTENDED_TEMP)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001068 data->temp11[index] = temp_to_u16_adt7461(data, val);
1069 else if (data->kind == max6646)
1070 data->temp11[index] = temp_to_u8(val) << 8;
1071 else if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
1072 data->temp11[index] = temp_to_s16(val);
1073 else
1074 data->temp11[index] = temp_to_s8(val) << 8;
1075
Guenter Roeck7a1d2202019-06-30 15:40:34 -07001076 lm90_select_remote_channel(data, index >= 3);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001077 err = i2c_smbus_write_byte_data(client, regp->high,
1078 data->temp11[index] >> 8);
1079 if (err < 0)
1080 return err;
1081 if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
1082 err = i2c_smbus_write_byte_data(client, regp->low,
1083 data->temp11[index] & 0xff);
1084
Guenter Roeck7a1d2202019-06-30 15:40:34 -07001085 lm90_select_remote_channel(data, 0);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001086 return err;
1087}
1088
1089static int lm90_get_temp8(struct lm90_data *data, int index)
1090{
1091 s8 temp8 = data->temp8[index];
1092 int temp;
1093
Guenter Roeckf347e242021-10-21 01:49:50 -07001094 if (data->flags & LM90_HAVE_EXTENDED_TEMP)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001095 temp = temp_from_u8_adt7461(data, temp8);
1096 else if (data->kind == max6646)
1097 temp = temp_from_u8(temp8);
1098 else
1099 temp = temp_from_s8(temp8);
1100
1101 /* +16 degrees offset for temp2 for the LM99 */
1102 if (data->kind == lm99 && index == 3)
1103 temp += 16000;
1104
1105 return temp;
1106}
1107
1108static int lm90_set_temp8(struct lm90_data *data, int index, long val)
1109{
1110 static const u8 reg[TEMP8_REG_NUM] = {
1111 LM90_REG_W_LOCAL_LOW,
1112 LM90_REG_W_LOCAL_HIGH,
1113 LM90_REG_W_LOCAL_CRIT,
1114 LM90_REG_W_REMOTE_CRIT,
1115 MAX6659_REG_W_LOCAL_EMERG,
1116 MAX6659_REG_W_REMOTE_EMERG,
1117 LM90_REG_W_REMOTE_CRIT,
1118 MAX6659_REG_W_REMOTE_EMERG,
1119 };
1120 struct i2c_client *client = data->client;
1121 int err;
1122
1123 /* +16 degrees offset for temp2 for the LM99 */
Dmitry Osipenkob50aa492021-06-23 07:22:30 +03001124 if (data->kind == lm99 && index == 3) {
1125 /* prevent integer underflow */
1126 val = max(val, -128000l);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001127 val -= 16000;
Dmitry Osipenkob50aa492021-06-23 07:22:30 +03001128 }
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001129
Guenter Roeckf347e242021-10-21 01:49:50 -07001130 if (data->flags & LM90_HAVE_EXTENDED_TEMP)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001131 data->temp8[index] = temp_to_u8_adt7461(data, val);
1132 else if (data->kind == max6646)
1133 data->temp8[index] = temp_to_u8(val);
1134 else
1135 data->temp8[index] = temp_to_s8(val);
1136
Guenter Roeck7a1d2202019-06-30 15:40:34 -07001137 lm90_select_remote_channel(data, index >= 6);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001138 err = i2c_smbus_write_byte_data(client, reg[index], data->temp8[index]);
Guenter Roeck7a1d2202019-06-30 15:40:34 -07001139 lm90_select_remote_channel(data, 0);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001140
1141 return err;
1142}
1143
1144static int lm90_get_temphyst(struct lm90_data *data, int index)
1145{
1146 int temp;
1147
Guenter Roeckf347e242021-10-21 01:49:50 -07001148 if (data->flags & LM90_HAVE_EXTENDED_TEMP)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001149 temp = temp_from_u8_adt7461(data, data->temp8[index]);
1150 else if (data->kind == max6646)
1151 temp = temp_from_u8(data->temp8[index]);
1152 else
1153 temp = temp_from_s8(data->temp8[index]);
1154
1155 /* +16 degrees offset for temp2 for the LM99 */
1156 if (data->kind == lm99 && index == 3)
1157 temp += 16000;
1158
1159 return temp - temp_from_s8(data->temp_hyst);
1160}
1161
1162static int lm90_set_temphyst(struct lm90_data *data, long val)
1163{
1164 struct i2c_client *client = data->client;
1165 int temp;
1166 int err;
1167
Guenter Roeckf347e242021-10-21 01:49:50 -07001168 if (data->flags & LM90_HAVE_EXTENDED_TEMP)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001169 temp = temp_from_u8_adt7461(data, data->temp8[LOCAL_CRIT]);
1170 else if (data->kind == max6646)
1171 temp = temp_from_u8(data->temp8[LOCAL_CRIT]);
1172 else
1173 temp = temp_from_s8(data->temp8[LOCAL_CRIT]);
1174
Guenter Roeck55840b92021-11-17 09:51:47 -08001175 /* prevent integer overflow/underflow */
1176 val = clamp_val(val, -128000l, 255000l);
Dmitry Osipenkob50aa492021-06-23 07:22:30 +03001177
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001178 data->temp_hyst = hyst_to_reg(temp - val);
1179 err = i2c_smbus_write_byte_data(client, LM90_REG_W_TCRIT_HYST,
1180 data->temp_hyst);
1181 return err;
1182}
1183
1184static const u8 lm90_temp_index[3] = {
1185 LOCAL_TEMP, REMOTE_TEMP, REMOTE2_TEMP
1186};
1187
1188static const u8 lm90_temp_min_index[3] = {
1189 LOCAL_LOW, REMOTE_LOW, REMOTE2_LOW
1190};
1191
1192static const u8 lm90_temp_max_index[3] = {
1193 LOCAL_HIGH, REMOTE_HIGH, REMOTE2_HIGH
1194};
1195
1196static const u8 lm90_temp_crit_index[3] = {
1197 LOCAL_CRIT, REMOTE_CRIT, REMOTE2_CRIT
1198};
1199
1200static const u8 lm90_temp_emerg_index[3] = {
1201 LOCAL_EMERG, REMOTE_EMERG, REMOTE2_EMERG
1202};
1203
1204static const u8 lm90_min_alarm_bits[3] = { 5, 3, 11 };
Michael Wallee9572fd2017-01-02 17:53:39 +01001205static const u8 lm90_max_alarm_bits[3] = { 6, 4, 12 };
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001206static const u8 lm90_crit_alarm_bits[3] = { 0, 1, 9 };
Guenter Roeckda7dc052021-11-26 22:43:39 -08001207static const u8 lm90_crit_alarm_bits_swapped[3] = { 1, 0, 9 };
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001208static const u8 lm90_emergency_alarm_bits[3] = { 15, 13, 14 };
1209static const u8 lm90_fault_bits[3] = { 0, 2, 10 };
1210
1211static int lm90_temp_read(struct device *dev, u32 attr, int channel, long *val)
1212{
1213 struct lm90_data *data = dev_get_drvdata(dev);
1214 int err;
1215
1216 mutex_lock(&data->update_lock);
1217 err = lm90_update_device(dev);
1218 mutex_unlock(&data->update_lock);
1219 if (err)
1220 return err;
1221
1222 switch (attr) {
1223 case hwmon_temp_input:
1224 *val = lm90_get_temp11(data, lm90_temp_index[channel]);
1225 break;
1226 case hwmon_temp_min_alarm:
1227 *val = (data->alarms >> lm90_min_alarm_bits[channel]) & 1;
1228 break;
1229 case hwmon_temp_max_alarm:
1230 *val = (data->alarms >> lm90_max_alarm_bits[channel]) & 1;
1231 break;
1232 case hwmon_temp_crit_alarm:
Guenter Roeckda7dc052021-11-26 22:43:39 -08001233 if (data->flags & LM90_HAVE_CRIT_ALRM_SWP)
1234 *val = (data->alarms >> lm90_crit_alarm_bits_swapped[channel]) & 1;
1235 else
1236 *val = (data->alarms >> lm90_crit_alarm_bits[channel]) & 1;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001237 break;
1238 case hwmon_temp_emergency_alarm:
1239 *val = (data->alarms >> lm90_emergency_alarm_bits[channel]) & 1;
1240 break;
1241 case hwmon_temp_fault:
1242 *val = (data->alarms >> lm90_fault_bits[channel]) & 1;
1243 break;
1244 case hwmon_temp_min:
1245 if (channel == 0)
1246 *val = lm90_get_temp8(data,
1247 lm90_temp_min_index[channel]);
1248 else
1249 *val = lm90_get_temp11(data,
1250 lm90_temp_min_index[channel]);
1251 break;
1252 case hwmon_temp_max:
1253 if (channel == 0)
1254 *val = lm90_get_temp8(data,
1255 lm90_temp_max_index[channel]);
1256 else
1257 *val = lm90_get_temp11(data,
1258 lm90_temp_max_index[channel]);
1259 break;
1260 case hwmon_temp_crit:
1261 *val = lm90_get_temp8(data, lm90_temp_crit_index[channel]);
1262 break;
1263 case hwmon_temp_crit_hyst:
1264 *val = lm90_get_temphyst(data, lm90_temp_crit_index[channel]);
1265 break;
1266 case hwmon_temp_emergency:
1267 *val = lm90_get_temp8(data, lm90_temp_emerg_index[channel]);
1268 break;
1269 case hwmon_temp_emergency_hyst:
1270 *val = lm90_get_temphyst(data, lm90_temp_emerg_index[channel]);
1271 break;
1272 case hwmon_temp_offset:
1273 *val = lm90_get_temp11(data, REMOTE_OFFSET);
1274 break;
1275 default:
1276 return -EOPNOTSUPP;
1277 }
1278 return 0;
1279}
1280
1281static int lm90_temp_write(struct device *dev, u32 attr, int channel, long val)
1282{
1283 struct lm90_data *data = dev_get_drvdata(dev);
1284 int err;
1285
1286 mutex_lock(&data->update_lock);
1287
1288 err = lm90_update_device(dev);
1289 if (err)
1290 goto error;
1291
1292 switch (attr) {
1293 case hwmon_temp_min:
1294 if (channel == 0)
1295 err = lm90_set_temp8(data,
1296 lm90_temp_min_index[channel],
1297 val);
1298 else
1299 err = lm90_set_temp11(data,
1300 lm90_temp_min_index[channel],
1301 val);
1302 break;
1303 case hwmon_temp_max:
1304 if (channel == 0)
1305 err = lm90_set_temp8(data,
1306 lm90_temp_max_index[channel],
1307 val);
1308 else
1309 err = lm90_set_temp11(data,
1310 lm90_temp_max_index[channel],
1311 val);
1312 break;
1313 case hwmon_temp_crit:
1314 err = lm90_set_temp8(data, lm90_temp_crit_index[channel], val);
1315 break;
1316 case hwmon_temp_crit_hyst:
1317 err = lm90_set_temphyst(data, val);
1318 break;
1319 case hwmon_temp_emergency:
1320 err = lm90_set_temp8(data, lm90_temp_emerg_index[channel], val);
1321 break;
1322 case hwmon_temp_offset:
1323 err = lm90_set_temp11(data, REMOTE_OFFSET, val);
1324 break;
1325 default:
1326 err = -EOPNOTSUPP;
1327 break;
1328 }
1329error:
1330 mutex_unlock(&data->update_lock);
1331
1332 return err;
1333}
1334
1335static umode_t lm90_temp_is_visible(const void *data, u32 attr, int channel)
1336{
1337 switch (attr) {
1338 case hwmon_temp_input:
1339 case hwmon_temp_min_alarm:
1340 case hwmon_temp_max_alarm:
1341 case hwmon_temp_crit_alarm:
1342 case hwmon_temp_emergency_alarm:
1343 case hwmon_temp_emergency_hyst:
1344 case hwmon_temp_fault:
Guenter Roeck33348512018-12-10 14:02:12 -08001345 return 0444;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001346 case hwmon_temp_min:
1347 case hwmon_temp_max:
1348 case hwmon_temp_crit:
1349 case hwmon_temp_emergency:
1350 case hwmon_temp_offset:
Guenter Roeck33348512018-12-10 14:02:12 -08001351 return 0644;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001352 case hwmon_temp_crit_hyst:
1353 if (channel == 0)
Guenter Roeck33348512018-12-10 14:02:12 -08001354 return 0644;
1355 return 0444;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001356 default:
1357 return 0;
1358 }
1359}
1360
1361static int lm90_chip_read(struct device *dev, u32 attr, int channel, long *val)
1362{
1363 struct lm90_data *data = dev_get_drvdata(dev);
1364 int err;
1365
1366 mutex_lock(&data->update_lock);
1367 err = lm90_update_device(dev);
1368 mutex_unlock(&data->update_lock);
1369 if (err)
1370 return err;
1371
1372 switch (attr) {
1373 case hwmon_chip_update_interval:
1374 *val = data->update_interval;
1375 break;
1376 case hwmon_chip_alarms:
1377 *val = data->alarms;
1378 break;
1379 default:
1380 return -EOPNOTSUPP;
1381 }
1382
1383 return 0;
1384}
1385
1386static int lm90_chip_write(struct device *dev, u32 attr, int channel, long val)
1387{
1388 struct lm90_data *data = dev_get_drvdata(dev);
1389 struct i2c_client *client = data->client;
1390 int err;
1391
1392 mutex_lock(&data->update_lock);
1393
1394 err = lm90_update_device(dev);
1395 if (err)
1396 goto error;
1397
1398 switch (attr) {
1399 case hwmon_chip_update_interval:
1400 err = lm90_set_convrate(client, data,
1401 clamp_val(val, 0, 100000));
1402 break;
1403 default:
1404 err = -EOPNOTSUPP;
1405 break;
1406 }
1407error:
1408 mutex_unlock(&data->update_lock);
1409
1410 return err;
1411}
1412
1413static umode_t lm90_chip_is_visible(const void *data, u32 attr, int channel)
1414{
1415 switch (attr) {
1416 case hwmon_chip_update_interval:
Guenter Roeck33348512018-12-10 14:02:12 -08001417 return 0644;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001418 case hwmon_chip_alarms:
Guenter Roeck33348512018-12-10 14:02:12 -08001419 return 0444;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001420 default:
1421 return 0;
1422 }
1423}
1424
1425static int lm90_read(struct device *dev, enum hwmon_sensor_types type,
1426 u32 attr, int channel, long *val)
1427{
1428 switch (type) {
1429 case hwmon_chip:
1430 return lm90_chip_read(dev, attr, channel, val);
1431 case hwmon_temp:
1432 return lm90_temp_read(dev, attr, channel, val);
1433 default:
1434 return -EOPNOTSUPP;
1435 }
1436}
1437
1438static int lm90_write(struct device *dev, enum hwmon_sensor_types type,
1439 u32 attr, int channel, long val)
1440{
1441 switch (type) {
1442 case hwmon_chip:
1443 return lm90_chip_write(dev, attr, channel, val);
1444 case hwmon_temp:
1445 return lm90_temp_write(dev, attr, channel, val);
1446 default:
1447 return -EOPNOTSUPP;
1448 }
1449}
1450
1451static umode_t lm90_is_visible(const void *data, enum hwmon_sensor_types type,
1452 u32 attr, int channel)
1453{
1454 switch (type) {
1455 case hwmon_chip:
1456 return lm90_chip_is_visible(data, attr, channel);
1457 case hwmon_temp:
1458 return lm90_temp_is_visible(data, attr, channel);
1459 default:
1460 return 0;
1461 }
1462}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001463
Jean Delvare9b0e8522008-07-16 19:30:15 +02001464/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001465static int lm90_detect(struct i2c_client *client,
Jean Delvare9b0e8522008-07-16 19:30:15 +02001466 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001467{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001468 struct i2c_adapter *adapter = client->adapter;
1469 int address = client->addr;
Jean Delvare8f2fa772009-12-09 20:35:53 +01001470 const char *name = NULL;
Jean Delvareb2589ab2011-11-04 12:00:47 +01001471 int man_id, chip_id, config1, config2, convrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
1473 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvare9b0e8522008-07-16 19:30:15 +02001474 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001475
Jean Delvare8f2fa772009-12-09 20:35:53 +01001476 /* detection and identification */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001477 man_id = i2c_smbus_read_byte_data(client, LM90_REG_R_MAN_ID);
1478 chip_id = i2c_smbus_read_byte_data(client, LM90_REG_R_CHIP_ID);
1479 config1 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG1);
1480 convrate = i2c_smbus_read_byte_data(client, LM90_REG_R_CONVRATE);
1481 if (man_id < 0 || chip_id < 0 || config1 < 0 || convrate < 0)
Jean Delvare8f2fa772009-12-09 20:35:53 +01001482 return -ENODEV;
1483
Guenter Roeckfce15c42021-11-06 10:02:44 -07001484 if (man_id == 0x01 || man_id == 0x5C || man_id == 0xA1) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001485 config2 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG2);
1486 if (config2 < 0)
Jean Delvare9b0e8522008-07-16 19:30:15 +02001487 return -ENODEV;
Guenter Roeckfce15c42021-11-06 10:02:44 -07001488 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489
Jean Delvaref90be422011-07-24 20:37:05 +02001490 if ((address == 0x4C || address == 0x4D)
1491 && man_id == 0x01) { /* National Semiconductor */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001492 if ((config1 & 0x2A) == 0x00
1493 && (config2 & 0xF8) == 0x00
1494 && convrate <= 0x09) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001495 if (address == 0x4C
1496 && (chip_id & 0xF0) == 0x20) { /* LM90 */
1497 name = "lm90";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001499 if ((chip_id & 0xF0) == 0x30) { /* LM89/LM99 */
1500 name = "lm99";
1501 dev_info(&adapter->dev,
1502 "Assuming LM99 chip at 0x%02x\n",
1503 address);
1504 dev_info(&adapter->dev,
1505 "If it is an LM89, instantiate it "
1506 "with the new_device sysfs "
1507 "interface\n");
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -04001508 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001509 if (address == 0x4C
1510 && (chip_id & 0xF0) == 0x10) { /* LM86 */
1511 name = "lm86";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 }
1513 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001514 } else
1515 if ((address == 0x4C || address == 0x4D)
1516 && man_id == 0x41) { /* Analog Devices */
1517 if ((chip_id & 0xF0) == 0x40 /* ADM1032 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001518 && (config1 & 0x3F) == 0x00
1519 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001520 name = "adm1032";
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001521 /*
1522 * The ADM1032 supports PEC, but only if combined
1523 * transactions are not used.
1524 */
Jean Delvare8f2fa772009-12-09 20:35:53 +01001525 if (i2c_check_functionality(adapter,
1526 I2C_FUNC_SMBUS_BYTE))
1527 info->flags |= I2C_CLIENT_PEC;
1528 } else
1529 if (chip_id == 0x51 /* ADT7461 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001530 && (config1 & 0x1B) == 0x00
1531 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001532 name = "adt7461";
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001533 } else
1534 if (chip_id == 0x57 /* ADT7461A, NCT1008 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001535 && (config1 & 0x1B) == 0x00
1536 && convrate <= 0x0A) {
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001537 name = "adt7461a";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001538 }
1539 } else
1540 if (man_id == 0x4D) { /* Maxim */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001541 int emerg, emerg2, status2;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001542
1543 /*
1544 * We read MAX6659_REG_R_REMOTE_EMERG twice, and re-read
1545 * LM90_REG_R_MAN_ID in between. If MAX6659_REG_R_REMOTE_EMERG
1546 * exists, both readings will reflect the same value. Otherwise,
1547 * the readings will be different.
1548 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001549 emerg = i2c_smbus_read_byte_data(client,
1550 MAX6659_REG_R_REMOTE_EMERG);
1551 man_id = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001552 LM90_REG_R_MAN_ID);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001553 emerg2 = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001554 MAX6659_REG_R_REMOTE_EMERG);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001555 status2 = i2c_smbus_read_byte_data(client,
1556 MAX6696_REG_R_STATUS2);
1557 if (emerg < 0 || man_id < 0 || emerg2 < 0 || status2 < 0)
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001558 return -ENODEV;
1559
Jean Delvare8f2fa772009-12-09 20:35:53 +01001560 /*
1561 * The MAX6657, MAX6658 and MAX6659 do NOT have a chip_id
1562 * register. Reading from that address will return the last
1563 * read value, which in our case is those of the man_id
1564 * register. Likewise, the config1 register seems to lack a
1565 * low nibble, so the value will be those of the previous
1566 * read, so in our case those of the man_id register.
Guenter Roeck13c84952010-10-28 20:31:43 +02001567 * MAX6659 has a third set of upper temperature limit registers.
1568 * Those registers also return values on MAX6657 and MAX6658,
1569 * thus the only way to detect MAX6659 is by its address.
1570 * For this reason it will be mis-detected as MAX6657 if its
1571 * address is 0x4C.
Jean Delvare8f2fa772009-12-09 20:35:53 +01001572 */
1573 if (chip_id == man_id
Guenter Roeck13c84952010-10-28 20:31:43 +02001574 && (address == 0x4C || address == 0x4D || address == 0x4E)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001575 && (config1 & 0x1F) == (man_id & 0x0F)
1576 && convrate <= 0x09) {
Guenter Roeck13c84952010-10-28 20:31:43 +02001577 if (address == 0x4C)
1578 name = "max6657";
1579 else
1580 name = "max6659";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001581 } else
1582 /*
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001583 * Even though MAX6695 and MAX6696 do not have a chip ID
1584 * register, reading it returns 0x01. Bit 4 of the config1
1585 * register is unused and should return zero when read. Bit 0 of
1586 * the status2 register is unused and should return zero when
1587 * read.
1588 *
1589 * MAX6695 and MAX6696 have an additional set of temperature
1590 * limit registers. We can detect those chips by checking if
1591 * one of those registers exists.
1592 */
1593 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001594 && (config1 & 0x10) == 0x00
1595 && (status2 & 0x01) == 0x00
1596 && emerg == emerg2
1597 && convrate <= 0x07) {
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001598 name = "max6696";
1599 } else
1600 /*
Jean Delvare8f2fa772009-12-09 20:35:53 +01001601 * The chip_id register of the MAX6680 and MAX6681 holds the
1602 * revision of the chip. The lowest bit of the config1 register
1603 * is unused and should return zero when read, so should the
1604 * second to last bit of config1 (software reset).
1605 */
1606 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001607 && (config1 & 0x03) == 0x00
1608 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001609 name = "max6680";
1610 } else
1611 /*
1612 * The chip_id register of the MAX6646/6647/6649 holds the
1613 * revision of the chip. The lowest 6 bits of the config1
1614 * register are unused and should return zero when read.
1615 */
1616 if (chip_id == 0x59
Jean Delvareb2589ab2011-11-04 12:00:47 +01001617 && (config1 & 0x3f) == 0x00
1618 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001619 name = "max6646";
Josh Lehan229d4952020-05-13 11:42:48 -07001620 } else
1621 /*
1622 * The chip_id of the MAX6654 holds the revision of the chip.
1623 * The lowest 3 bits of the config1 register are unused and
1624 * should return zero when read.
1625 */
1626 if (chip_id == 0x08
1627 && (config1 & 0x07) == 0x00
1628 && convrate <= 0x07) {
1629 name = "max6654";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001630 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001631 } else
1632 if (address == 0x4C
1633 && man_id == 0x5C) { /* Winbond/Nuvoton */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001634 if ((config1 & 0x2A) == 0x00
1635 && (config2 & 0xF8) == 0x00) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001636 if (chip_id == 0x01 /* W83L771W/G */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001637 && convrate <= 0x09) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001638 name = "w83l771";
1639 } else
1640 if ((chip_id & 0xFE) == 0x10 /* W83L771AWG/ASG */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001641 && convrate <= 0x08) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001642 name = "w83l771";
1643 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001644 }
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001645 } else
Jean Delvare6d101c52011-07-24 20:36:15 +02001646 if (address >= 0x48 && address <= 0x4F
1647 && man_id == 0xA1) { /* NXP Semiconductor/Philips */
Jean Delvare6d101c52011-07-24 20:36:15 +02001648 if (chip_id == 0x00
Jean Delvareb2589ab2011-11-04 12:00:47 +01001649 && (config1 & 0x2A) == 0x00
1650 && (config2 & 0xFE) == 0x00
1651 && convrate <= 0x09) {
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001652 name = "sa56004";
1653 }
Guenter Roeckae544f62012-03-23 10:02:18 +01001654 } else
1655 if ((address == 0x4C || address == 0x4D)
1656 && man_id == 0x47) { /* GMT */
1657 if (chip_id == 0x01 /* G781 */
1658 && (config1 & 0x3F) == 0x00
1659 && convrate <= 0x08)
1660 name = "g781";
Wei Ni1daaceb2013-11-15 10:40:39 +01001661 } else
Guenter Roeckf8344f72021-10-18 20:03:32 -07001662 if (man_id == 0x55 && chip_id == 0x00 &&
1663 (config1 & 0x1B) == 0x00 && convrate <= 0x09) {
1664 int local_ext, conalert, chen, dfc;
Wei Ni1daaceb2013-11-15 10:40:39 +01001665
1666 local_ext = i2c_smbus_read_byte_data(client,
1667 TMP451_REG_R_LOCAL_TEMPL);
Guenter Roeckf8344f72021-10-18 20:03:32 -07001668 conalert = i2c_smbus_read_byte_data(client,
1669 TMP451_REG_CONALERT);
1670 chen = i2c_smbus_read_byte_data(client, TMP461_REG_CHEN);
1671 dfc = i2c_smbus_read_byte_data(client, TMP461_REG_DFC);
Wei Ni1daaceb2013-11-15 10:40:39 +01001672
Guenter Roeckf8344f72021-10-18 20:03:32 -07001673 if ((local_ext & 0x0F) == 0x00 &&
1674 (conalert & 0xf1) == 0x01 &&
1675 (chen & 0xfc) == 0x00 &&
1676 (dfc & 0xfc) == 0x00) {
1677 if (address == 0x4c && !(chen & 0x03))
1678 name = "tmp451";
1679 else if (address >= 0x48 && address <= 0x4f)
1680 name = "tmp461";
1681 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 }
1683
Jean Delvare8f2fa772009-12-09 20:35:53 +01001684 if (!name) { /* identification failed */
1685 dev_dbg(&adapter->dev,
1686 "Unsupported chip at 0x%02x (man_id=0x%02X, "
1687 "chip_id=0x%02X)\n", address, man_id, chip_id);
1688 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001689 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001690
Jean Delvare9b0e8522008-07-16 19:30:15 +02001691 strlcpy(info->type, name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001692
Jean Delvare9b0e8522008-07-16 19:30:15 +02001693 return 0;
1694}
1695
Guenter Roeck1f17a442016-06-13 06:19:11 -07001696static void lm90_restore_conf(void *_data)
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001697{
Guenter Roeck1f17a442016-06-13 06:19:11 -07001698 struct lm90_data *data = _data;
1699 struct i2c_client *client = data->client;
1700
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001701 /* Restore initial configuration */
Guenter Roeck7a1d2202019-06-30 15:40:34 -07001702 lm90_write_convrate(data, data->convrate_orig);
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001703 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
1704 data->config_orig);
1705}
1706
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001707static int lm90_init_client(struct i2c_client *client, struct lm90_data *data)
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001708{
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001709 int config, convrate;
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001710
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001711 convrate = lm90_read_reg(client, LM90_REG_R_CONVRATE);
1712 if (convrate < 0)
1713 return convrate;
Guenter Roeck0c01b642010-10-28 20:31:44 +02001714 data->convrate_orig = convrate;
1715
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001716 /*
1717 * Start the conversions.
1718 */
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001719 config = lm90_read_reg(client, LM90_REG_R_CONFIG1);
1720 if (config < 0)
1721 return config;
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001722 data->config_orig = config;
Guenter Roeckb849e5d2019-06-30 15:14:19 -07001723 data->config = config;
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001724
Boyang Yu62456182019-06-28 19:06:36 +00001725 lm90_set_convrate(client, data, 500); /* 500ms; 2Hz conversion rate */
1726
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001727 /* Check Temperature Range Select */
Guenter Roeckf347e242021-10-21 01:49:50 -07001728 if (data->flags & LM90_HAVE_EXTENDED_TEMP) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001729 if (config & 0x04)
1730 data->flags |= LM90_FLAG_ADT7461_EXT;
1731 }
1732
1733 /*
1734 * Put MAX6680/MAX8881 into extended resolution (bit 0x10,
1735 * 0.125 degree resolution) and range (0x08, extend range
1736 * to -64 degree) mode for the remote temperature sensor.
1737 */
1738 if (data->kind == max6680)
1739 config |= 0x18;
1740
1741 /*
Josh Lehan229d4952020-05-13 11:42:48 -07001742 * Put MAX6654 into extended range (0x20, extend minimum range from
1743 * 0 degrees to -64 degrees). Note that extended resolution is not
1744 * possible on the MAX6654 unless conversion rate is set to 1 Hz or
1745 * slower, which is intentionally not done by default.
1746 */
1747 if (data->kind == max6654)
1748 config |= 0x20;
1749
1750 /*
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001751 * Select external channel 0 for max6695/96
1752 */
1753 if (data->kind == max6696)
1754 config &= ~0x08;
1755
Dmitry Osipenko2abdc352021-06-19 00:54:54 +03001756 /*
1757 * Interrupt is enabled by default on reset, but it may be disabled
1758 * by bootloader, unmask it.
1759 */
1760 if (client->irq)
1761 config &= ~0x80;
1762
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001763 config &= 0xBF; /* run */
Guenter Roeck7a1d2202019-06-30 15:40:34 -07001764 lm90_update_confreg(data, config);
Guenter Roeck1f17a442016-06-13 06:19:11 -07001765
Guenter Roeckc5fcf012016-07-25 14:53:23 -07001766 return devm_add_action_or_reset(&client->dev, lm90_restore_conf, data);
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001767}
1768
Wei Ni072de492013-11-15 10:40:38 +01001769static bool lm90_is_tripped(struct i2c_client *client, u16 *status)
1770{
1771 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001772 int st, st2 = 0;
Wei Ni072de492013-11-15 10:40:38 +01001773
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001774 st = lm90_read_reg(client, LM90_REG_R_STATUS);
1775 if (st < 0)
1776 return false;
Wei Ni072de492013-11-15 10:40:38 +01001777
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001778 if (data->kind == max6696) {
1779 st2 = lm90_read_reg(client, MAX6696_REG_R_STATUS2);
1780 if (st2 < 0)
1781 return false;
1782 }
Wei Ni072de492013-11-15 10:40:38 +01001783
1784 *status = st | (st2 << 8);
1785
1786 if ((st & 0x7f) == 0 && (st2 & 0xfe) == 0)
1787 return false;
1788
1789 if ((st & (LM90_STATUS_LLOW | LM90_STATUS_LHIGH | LM90_STATUS_LTHRM)) ||
1790 (st2 & MAX6696_STATUS2_LOT2))
Dmitry Osipenko94dbd232021-06-19 00:54:53 +03001791 dev_dbg(&client->dev,
1792 "temp%d out of range, please check!\n", 1);
Wei Ni072de492013-11-15 10:40:38 +01001793 if ((st & (LM90_STATUS_RLOW | LM90_STATUS_RHIGH | LM90_STATUS_RTHRM)) ||
1794 (st2 & MAX6696_STATUS2_ROT2))
Dmitry Osipenko94dbd232021-06-19 00:54:53 +03001795 dev_dbg(&client->dev,
1796 "temp%d out of range, please check!\n", 2);
Wei Ni072de492013-11-15 10:40:38 +01001797 if (st & LM90_STATUS_ROPEN)
Dmitry Osipenko94dbd232021-06-19 00:54:53 +03001798 dev_dbg(&client->dev,
1799 "temp%d diode open, please check!\n", 2);
Wei Ni072de492013-11-15 10:40:38 +01001800 if (st2 & (MAX6696_STATUS2_R2LOW | MAX6696_STATUS2_R2HIGH |
1801 MAX6696_STATUS2_R2THRM | MAX6696_STATUS2_R2OT2))
Dmitry Osipenko94dbd232021-06-19 00:54:53 +03001802 dev_dbg(&client->dev,
1803 "temp%d out of range, please check!\n", 3);
Wei Ni072de492013-11-15 10:40:38 +01001804 if (st2 & MAX6696_STATUS2_R2OPEN)
Dmitry Osipenko94dbd232021-06-19 00:54:53 +03001805 dev_dbg(&client->dev,
1806 "temp%d diode open, please check!\n", 3);
1807
1808 if (st & LM90_STATUS_LLOW)
1809 hwmon_notify_event(data->hwmon_dev, hwmon_temp,
1810 hwmon_temp_min, 0);
1811 if (st & LM90_STATUS_RLOW)
1812 hwmon_notify_event(data->hwmon_dev, hwmon_temp,
1813 hwmon_temp_min, 1);
1814 if (st2 & MAX6696_STATUS2_R2LOW)
1815 hwmon_notify_event(data->hwmon_dev, hwmon_temp,
1816 hwmon_temp_min, 2);
1817 if (st & LM90_STATUS_LHIGH)
1818 hwmon_notify_event(data->hwmon_dev, hwmon_temp,
1819 hwmon_temp_max, 0);
1820 if (st & LM90_STATUS_RHIGH)
1821 hwmon_notify_event(data->hwmon_dev, hwmon_temp,
1822 hwmon_temp_max, 1);
1823 if (st2 & MAX6696_STATUS2_R2HIGH)
1824 hwmon_notify_event(data->hwmon_dev, hwmon_temp,
1825 hwmon_temp_max, 2);
Wei Ni072de492013-11-15 10:40:38 +01001826
1827 return true;
1828}
1829
Wei Ni109b1282013-11-15 10:40:39 +01001830static irqreturn_t lm90_irq_thread(int irq, void *dev_id)
1831{
1832 struct i2c_client *client = dev_id;
1833 u16 status;
1834
1835 if (lm90_is_tripped(client, &status))
1836 return IRQ_HANDLED;
1837 else
1838 return IRQ_NONE;
1839}
1840
Guenter Roeck1f17a442016-06-13 06:19:11 -07001841static void lm90_remove_pec(void *dev)
1842{
1843 device_remove_file(dev, &dev_attr_pec);
1844}
1845
1846static void lm90_regulator_disable(void *regulator)
1847{
1848 regulator_disable(regulator);
1849}
1850
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001851
1852static const struct hwmon_ops lm90_ops = {
1853 .is_visible = lm90_is_visible,
1854 .read = lm90_read,
1855 .write = lm90_write,
1856};
1857
Stephen Kitt67487032020-08-13 18:02:22 +02001858static int lm90_probe(struct i2c_client *client)
Jean Delvare9b0e8522008-07-16 19:30:15 +02001859{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001860 struct device *dev = &client->dev;
Wolfram Sange67776c2019-06-10 11:51:54 +02001861 struct i2c_adapter *adapter = client->adapter;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001862 struct hwmon_channel_info *info;
Wei Ni3e0f9642013-11-15 10:40:39 +01001863 struct regulator *regulator;
Guenter Roeck6e5f62b2016-06-13 06:28:03 -07001864 struct device *hwmon_dev;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001865 struct lm90_data *data;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001866 int err;
1867
Wei Ni3e0f9642013-11-15 10:40:39 +01001868 regulator = devm_regulator_get(dev, "vcc");
1869 if (IS_ERR(regulator))
1870 return PTR_ERR(regulator);
1871
1872 err = regulator_enable(regulator);
1873 if (err < 0) {
Guenter Roeckd89fa682014-04-04 18:01:35 +02001874 dev_err(dev, "Failed to enable regulator: %d\n", err);
Wei Ni3e0f9642013-11-15 10:40:39 +01001875 return err;
1876 }
1877
Guenter Roeckc5fcf012016-07-25 14:53:23 -07001878 err = devm_add_action_or_reset(dev, lm90_regulator_disable, regulator);
1879 if (err)
1880 return err;
Guenter Roeck1f17a442016-06-13 06:19:11 -07001881
Guenter Roeckd89fa682014-04-04 18:01:35 +02001882 data = devm_kzalloc(dev, sizeof(struct lm90_data), GFP_KERNEL);
Guenter Roeck20f426f2012-06-02 09:58:10 -07001883 if (!data)
1884 return -ENOMEM;
1885
Guenter Roeck1de8b252014-04-04 18:01:35 +02001886 data->client = client;
Jean Delvareb2589ab2011-11-04 12:00:47 +01001887 i2c_set_clientdata(client, data);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001888 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889
Jean Delvare9b0e8522008-07-16 19:30:15 +02001890 /* Set the device type */
Javier Martinez Canillasdf8d57b2017-02-24 10:13:04 -03001891 if (client->dev.of_node)
1892 data->kind = (enum chips)of_device_get_match_data(&client->dev);
1893 else
Stephen Kitt67487032020-08-13 18:02:22 +02001894 data->kind = i2c_match_id(lm90_id, client)->driver_data;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001895 if (data->kind == adm1032) {
1896 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
Jean Delvareb2589ab2011-11-04 12:00:47 +01001897 client->flags &= ~I2C_CLIENT_PEC;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001898 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001899
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001900 /*
1901 * Different devices have different alarm bits triggering the
1902 * ALERT# output
1903 */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001904 data->alert_alarms = lm90_params[data->kind].alert_alarms;
Jean Delvare53de3342010-03-05 22:17:15 +01001905
Guenter Roeck88073bb2010-10-28 20:31:43 +02001906 /* Set chip capabilities */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001907 data->flags = lm90_params[data->kind].flags;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001908
1909 data->chip.ops = &lm90_ops;
1910 data->chip.info = data->info;
1911
Guenter Roecka4d41e62019-03-31 10:53:48 -07001912 data->info[0] = HWMON_CHANNEL_INFO(chip,
1913 HWMON_C_REGISTER_TZ | HWMON_C_UPDATE_INTERVAL | HWMON_C_ALARMS);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001914 data->info[1] = &data->temp_info;
1915
1916 info = &data->temp_info;
1917 info->type = hwmon_temp;
1918 info->config = data->channel_config;
1919
1920 data->channel_config[0] = HWMON_T_INPUT | HWMON_T_MIN | HWMON_T_MAX |
Guenter Roeck16ba51b2021-11-13 08:55:06 -08001921 HWMON_T_MIN_ALARM | HWMON_T_MAX_ALARM;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001922 data->channel_config[1] = HWMON_T_INPUT | HWMON_T_MIN | HWMON_T_MAX |
Guenter Roeck16ba51b2021-11-13 08:55:06 -08001923 HWMON_T_MIN_ALARM | HWMON_T_MAX_ALARM | HWMON_T_FAULT;
1924
1925 if (data->flags & LM90_HAVE_CRIT) {
1926 data->channel_config[0] |= HWMON_T_CRIT | HWMON_T_CRIT_ALARM | HWMON_T_CRIT_HYST;
1927 data->channel_config[1] |= HWMON_T_CRIT | HWMON_T_CRIT_ALARM | HWMON_T_CRIT_HYST;
1928 }
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001929
1930 if (data->flags & LM90_HAVE_OFFSET)
1931 data->channel_config[1] |= HWMON_T_OFFSET;
1932
1933 if (data->flags & LM90_HAVE_EMERGENCY) {
1934 data->channel_config[0] |= HWMON_T_EMERGENCY |
1935 HWMON_T_EMERGENCY_HYST;
1936 data->channel_config[1] |= HWMON_T_EMERGENCY |
1937 HWMON_T_EMERGENCY_HYST;
1938 }
1939
1940 if (data->flags & LM90_HAVE_EMERGENCY_ALARM) {
1941 data->channel_config[0] |= HWMON_T_EMERGENCY_ALARM;
1942 data->channel_config[1] |= HWMON_T_EMERGENCY_ALARM;
1943 }
1944
1945 if (data->flags & LM90_HAVE_TEMP3) {
1946 data->channel_config[2] = HWMON_T_INPUT |
1947 HWMON_T_MIN | HWMON_T_MAX |
1948 HWMON_T_CRIT | HWMON_T_CRIT_HYST |
1949 HWMON_T_EMERGENCY | HWMON_T_EMERGENCY_HYST |
1950 HWMON_T_MIN_ALARM | HWMON_T_MAX_ALARM |
1951 HWMON_T_CRIT_ALARM | HWMON_T_EMERGENCY_ALARM |
1952 HWMON_T_FAULT;
1953 }
1954
Jean Delvarea095f682011-07-27 23:22:25 -07001955 data->reg_local_ext = lm90_params[data->kind].reg_local_ext;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001956
Guenter Roeck0c01b642010-10-28 20:31:44 +02001957 /* Set maximum conversion rate */
1958 data->max_convrate = lm90_params[data->kind].max_convrate;
1959
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 /* Initialize the LM90 chip */
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001961 err = lm90_init_client(client, data);
1962 if (err < 0) {
1963 dev_err(dev, "Failed to initialize device\n");
1964 return err;
1965 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001966
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001967 /*
1968 * The 'pec' attribute is attached to the i2c device and thus created
1969 * separately.
1970 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001971 if (client->flags & I2C_CLIENT_PEC) {
1972 err = device_create_file(dev, &dev_attr_pec);
Guenter Roeck11e57812010-10-28 20:31:42 +02001973 if (err)
Guenter Roeck1f17a442016-06-13 06:19:11 -07001974 return err;
Guenter Roeckc5fcf012016-07-25 14:53:23 -07001975 err = devm_add_action_or_reset(dev, lm90_remove_pec, dev);
1976 if (err)
1977 return err;
Jean Delvare0e39e012006-09-24 21:16:40 +02001978 }
Guenter Roeck084489e2014-04-04 18:01:35 +02001979
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001980 hwmon_dev = devm_hwmon_device_register_with_info(dev, client->name,
1981 data, &data->chip,
1982 NULL);
Guenter Roeck6e5f62b2016-06-13 06:28:03 -07001983 if (IS_ERR(hwmon_dev))
1984 return PTR_ERR(hwmon_dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001985
Dmitry Osipenko94dbd232021-06-19 00:54:53 +03001986 data->hwmon_dev = hwmon_dev;
1987
Wei Ni109b1282013-11-15 10:40:39 +01001988 if (client->irq) {
1989 dev_dbg(dev, "IRQ: %d\n", client->irq);
1990 err = devm_request_threaded_irq(dev, client->irq,
1991 NULL, lm90_irq_thread,
Dmitry Osipenkod97fb832021-06-19 00:54:52 +03001992 IRQF_ONESHOT, "lm90", client);
Wei Ni109b1282013-11-15 10:40:39 +01001993 if (err < 0) {
1994 dev_err(dev, "cannot request IRQ %d\n", client->irq);
Guenter Roeck6e5f62b2016-06-13 06:28:03 -07001995 return err;
Wei Ni109b1282013-11-15 10:40:39 +01001996 }
1997 }
1998
Linus Torvalds1da177e2005-04-16 15:20:36 -07001999 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002000}
2001
Benjamin Tissoiresb4f21052016-06-09 16:53:47 +02002002static void lm90_alert(struct i2c_client *client, enum i2c_alert_protocol type,
2003 unsigned int flag)
Jean Delvare53de3342010-03-05 22:17:15 +01002004{
Wei Ni072de492013-11-15 10:40:38 +01002005 u16 alarms;
Jean Delvare53de3342010-03-05 22:17:15 +01002006
Benjamin Tissoiresb4f21052016-06-09 16:53:47 +02002007 if (type != I2C_PROTOCOL_SMBUS_ALERT)
2008 return;
2009
Wei Ni072de492013-11-15 10:40:38 +01002010 if (lm90_is_tripped(client, &alarms)) {
Guenter Roeckf36ffea2012-03-23 10:02:18 +01002011 /*
2012 * Disable ALERT# output, because these chips don't implement
2013 * SMBus alert correctly; they should only hold the alert line
2014 * low briefly.
2015 */
Wei Ni072de492013-11-15 10:40:38 +01002016 struct lm90_data *data = i2c_get_clientdata(client);
2017
Guenter Roeck37ad04d2016-06-13 06:57:37 -07002018 if ((data->flags & LM90_HAVE_BROKEN_ALERT) &&
2019 (alarms & data->alert_alarms)) {
Jean Delvare53de3342010-03-05 22:17:15 +01002020 dev_dbg(&client->dev, "Disabling ALERT#\n");
Guenter Roeck7a1d2202019-06-30 15:40:34 -07002021 lm90_update_confreg(data, data->config | 0x80);
Jean Delvare53de3342010-03-05 22:17:15 +01002022 }
Wei Ni072de492013-11-15 10:40:38 +01002023 } else {
Dmitry Osipenko94dbd232021-06-19 00:54:53 +03002024 dev_dbg(&client->dev, "Everything OK\n");
Jean Delvare53de3342010-03-05 22:17:15 +01002025 }
2026}
2027
Dmitry Osipenko4c7f85a2021-06-19 00:54:55 +03002028static int __maybe_unused lm90_suspend(struct device *dev)
2029{
2030 struct lm90_data *data = dev_get_drvdata(dev);
2031 struct i2c_client *client = data->client;
2032
2033 if (client->irq)
2034 disable_irq(client->irq);
2035
2036 return 0;
2037}
2038
2039static int __maybe_unused lm90_resume(struct device *dev)
2040{
2041 struct lm90_data *data = dev_get_drvdata(dev);
2042 struct i2c_client *client = data->client;
2043
2044 if (client->irq)
2045 enable_irq(client->irq);
2046
2047 return 0;
2048}
2049
2050static SIMPLE_DEV_PM_OPS(lm90_pm_ops, lm90_suspend, lm90_resume);
2051
Guenter Roeck15b66ab2010-10-28 20:31:43 +02002052static struct i2c_driver lm90_driver = {
2053 .class = I2C_CLASS_HWMON,
2054 .driver = {
2055 .name = "lm90",
Javier Martinez Canillasdf8d57b2017-02-24 10:13:04 -03002056 .of_match_table = of_match_ptr(lm90_of_match),
Dmitry Osipenko4c7f85a2021-06-19 00:54:55 +03002057 .pm = &lm90_pm_ops,
Guenter Roeck15b66ab2010-10-28 20:31:43 +02002058 },
Stephen Kitt67487032020-08-13 18:02:22 +02002059 .probe_new = lm90_probe,
Guenter Roeck15b66ab2010-10-28 20:31:43 +02002060 .alert = lm90_alert,
2061 .id_table = lm90_id,
2062 .detect = lm90_detect,
2063 .address_list = normal_i2c,
2064};
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065
Axel Linf0967ee2012-01-20 15:38:18 +08002066module_i2c_driver(lm90_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067
Jean Delvare7c81c60f2014-01-29 20:40:08 +01002068MODULE_AUTHOR("Jean Delvare <jdelvare@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002069MODULE_DESCRIPTION("LM90/ADM1032 driver");
2070MODULE_LICENSE("GPL");