blob: 7bdc664af55b52ed4b78d14e1ab81934dabe8c9c [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 *
Josh Lehan229d4952020-05-13 11:42:48 -070038 * This driver also supports the MAX6654 chip made by Maxim. This chip can
39 * be at 9 different addresses, similar to MAX6680/MAX6681. The MAX6654 is
40 * otherwise similar to MAX6657/MAX6658/MAX6659. Extended range is available
41 * by setting the configuration register accordingly, and is done during
42 * initialization. Extended precision is only available at conversion rates
43 * of 1 Hz and slower. Note that extended precision is not enabled by
44 * default, as this driver initializes all chips to 2 Hz by design.
45 *
Darrick J. Wong1a51e062009-03-12 13:36:38 +010046 * This driver also supports the MAX6646, MAX6647, MAX6648, MAX6649 and
47 * MAX6692 chips made by Maxim. These are again similar to the LM86,
48 * but they use unsigned temperature values and can report temperatures
49 * from 0 to 145 degrees.
Ben Hutchings271dabf2008-10-17 17:51:11 +020050 *
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -040051 * This driver also supports the MAX6680 and MAX6681, two other sensor
52 * chips made by Maxim. These are quite similar to the other Maxim
Jean Delvarea874a102008-10-17 17:51:10 +020053 * chips. The MAX6680 and MAX6681 only differ in the pinout so they can
54 * be treated identically.
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -040055 *
Guenter Roeck06e1c0a2010-10-28 20:31:43 +020056 * This driver also supports the MAX6695 and MAX6696, two other sensor
57 * chips made by Maxim. These are also quite similar to other Maxim
58 * chips, but support three temperature sensors instead of two. MAX6695
59 * and MAX6696 only differ in the pinout so they can be treated identically.
60 *
Guenter Roeck5a4e5e62011-04-29 16:33:35 +020061 * This driver also supports ADT7461 and ADT7461A from Analog Devices as well as
62 * NCT1008 from ON Semiconductor. The chips are supported in both compatibility
63 * and extended mode. They are mostly compatible with LM90 except for a data
64 * format difference for the temperature value registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -070065 *
Stijn Devriendt2ef01792011-06-06 10:40:45 +000066 * This driver also supports the SA56004 from Philips. This device is
67 * pin-compatible with the LM86, the ED/EDP parts are also address-compatible.
68 *
Guenter Roeckae544f62012-03-23 10:02:18 +010069 * This driver also supports the G781 from GMT. This device is compatible
70 * with the ADM1032.
71 *
Wei Ni1daaceb2013-11-15 10:40:39 +010072 * This driver also supports TMP451 from Texas Instruments. This device is
73 * supported in both compatibility and extended mode. It's mostly compatible
74 * with ADT7461 except for local temperature low byte register and max
75 * conversion rate.
76 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070077 * Since the LM90 was the first chipset supported by this driver, most
78 * comments will refer to this chipset, but are actually general and
79 * concern all supported chipsets, unless mentioned otherwise.
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 */
81
Linus Torvalds1da177e2005-04-16 15:20:36 -070082#include <linux/module.h>
83#include <linux/init.h>
84#include <linux/slab.h>
85#include <linux/jiffies.h>
86#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040087#include <linux/hwmon.h>
88#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010089#include <linux/mutex.h>
Javier Martinez Canillasdf8d57b2017-02-24 10:13:04 -030090#include <linux/of_device.h>
Jean Delvare0e39e012006-09-24 21:16:40 +020091#include <linux/sysfs.h>
Wei Ni109b1282013-11-15 10:40:39 +010092#include <linux/interrupt.h>
Wei Ni3e0f9642013-11-15 10:40:39 +010093#include <linux/regulator/consumer.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
95/*
96 * Addresses to scan
97 * Address is fully defined internally and cannot be changed except for
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -040098 * MAX6659, MAX6680 and MAX6681.
Guenter Roeck5a4e5e62011-04-29 16:33:35 +020099 * LM86, LM89, LM90, LM99, ADM1032, ADM1032-1, ADT7461, ADT7461A, MAX6649,
100 * MAX6657, MAX6658, NCT1008 and W83L771 have address 0x4c.
101 * ADM1032-2, ADT7461-2, ADT7461A-2, LM89-1, LM99-1, MAX6646, and NCT1008D
102 * have address 0x4d.
Ben Hutchings271dabf2008-10-17 17:51:11 +0200103 * MAX6647 has address 0x4e.
Guenter Roeck13c84952010-10-28 20:31:43 +0200104 * MAX6659 can have address 0x4c, 0x4d or 0x4e.
Josh Lehan229d4952020-05-13 11:42:48 -0700105 * MAX6654, MAX6680, and MAX6681 can have address 0x18, 0x19, 0x1a, 0x29,
106 * 0x2a, 0x2b, 0x4c, 0x4d or 0x4e.
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000107 * SA56004 can have address 0x48 through 0x4F.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
109
Mark M. Hoffman25e9c862008-02-17 22:28:03 -0500110static const unsigned short normal_i2c[] = {
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000111 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x48, 0x49, 0x4a, 0x4b, 0x4c,
112 0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113
Guenter Roeck13c84952010-10-28 20:31:43 +0200114enum chips { lm90, adm1032, lm99, lm86, max6657, max6659, adt7461, max6680,
Josh Lehan229d4952020-05-13 11:42:48 -0700115 max6646, w83l771, max6696, sa56004, g781, tmp451, max6654 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117/*
118 * The LM90 registers
119 */
120
121#define LM90_REG_R_MAN_ID 0xFE
122#define LM90_REG_R_CHIP_ID 0xFF
123#define LM90_REG_R_CONFIG1 0x03
124#define LM90_REG_W_CONFIG1 0x09
125#define LM90_REG_R_CONFIG2 0xBF
126#define LM90_REG_W_CONFIG2 0xBF
127#define LM90_REG_R_CONVRATE 0x04
128#define LM90_REG_W_CONVRATE 0x0A
129#define LM90_REG_R_STATUS 0x02
130#define LM90_REG_R_LOCAL_TEMP 0x00
131#define LM90_REG_R_LOCAL_HIGH 0x05
132#define LM90_REG_W_LOCAL_HIGH 0x0B
133#define LM90_REG_R_LOCAL_LOW 0x06
134#define LM90_REG_W_LOCAL_LOW 0x0C
135#define LM90_REG_R_LOCAL_CRIT 0x20
136#define LM90_REG_W_LOCAL_CRIT 0x20
137#define LM90_REG_R_REMOTE_TEMPH 0x01
138#define LM90_REG_R_REMOTE_TEMPL 0x10
139#define LM90_REG_R_REMOTE_OFFSH 0x11
140#define LM90_REG_W_REMOTE_OFFSH 0x11
141#define LM90_REG_R_REMOTE_OFFSL 0x12
142#define LM90_REG_W_REMOTE_OFFSL 0x12
143#define LM90_REG_R_REMOTE_HIGHH 0x07
144#define LM90_REG_W_REMOTE_HIGHH 0x0D
145#define LM90_REG_R_REMOTE_HIGHL 0x13
146#define LM90_REG_W_REMOTE_HIGHL 0x13
147#define LM90_REG_R_REMOTE_LOWH 0x08
148#define LM90_REG_W_REMOTE_LOWH 0x0E
149#define LM90_REG_R_REMOTE_LOWL 0x14
150#define LM90_REG_W_REMOTE_LOWL 0x14
151#define LM90_REG_R_REMOTE_CRIT 0x19
152#define LM90_REG_W_REMOTE_CRIT 0x19
153#define LM90_REG_R_TCRIT_HYST 0x21
154#define LM90_REG_W_TCRIT_HYST 0x21
155
Josh Lehan229d4952020-05-13 11:42:48 -0700156/* MAX6646/6647/6649/6654/6657/6658/6659/6695/6696 registers */
Jean Delvaref65e1702008-10-17 17:51:09 +0200157
158#define MAX6657_REG_R_LOCAL_TEMPL 0x11
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200159#define MAX6696_REG_R_STATUS2 0x12
Guenter Roeck69487082010-10-28 20:31:43 +0200160#define MAX6659_REG_R_REMOTE_EMERG 0x16
161#define MAX6659_REG_W_REMOTE_EMERG 0x16
162#define MAX6659_REG_R_LOCAL_EMERG 0x17
163#define MAX6659_REG_W_LOCAL_EMERG 0x17
Jean Delvaref65e1702008-10-17 17:51:09 +0200164
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000165/* SA56004 registers */
166
167#define SA56004_REG_R_LOCAL_TEMPL 0x22
168
Guenter Roeck0c01b642010-10-28 20:31:44 +0200169#define LM90_MAX_CONVRATE_MS 16000 /* Maximum conversion rate in ms */
170
Wei Ni1daaceb2013-11-15 10:40:39 +0100171/* TMP451 registers */
172#define TMP451_REG_R_LOCAL_TEMPL 0x15
173
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174/*
Nate Case23b2d472008-10-17 17:51:10 +0200175 * Device flags
176 */
Guenter Roeck88073bb2010-10-28 20:31:43 +0200177#define LM90_FLAG_ADT7461_EXT (1 << 0) /* ADT7461 extended mode */
178/* Device features */
179#define LM90_HAVE_OFFSET (1 << 1) /* temperature offset register */
Guenter Roeck88073bb2010-10-28 20:31:43 +0200180#define LM90_HAVE_REM_LIMIT_EXT (1 << 3) /* extended remote limit */
Guenter Roeck69487082010-10-28 20:31:43 +0200181#define LM90_HAVE_EMERGENCY (1 << 4) /* 3rd upper (emergency) limit */
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200182#define LM90_HAVE_EMERGENCY_ALARM (1 << 5)/* emergency alarm */
183#define LM90_HAVE_TEMP3 (1 << 6) /* 3rd temperature sensor */
Guenter Roeck11793242010-10-28 20:31:44 +0200184#define LM90_HAVE_BROKEN_ALERT (1 << 7) /* Broken alert */
Boyang Yu62456182019-06-28 19:06:36 +0000185#define LM90_PAUSE_FOR_CONFIG (1 << 8) /* Pause conversion for config */
Nate Case23b2d472008-10-17 17:51:10 +0200186
Wei Ni072de492013-11-15 10:40:38 +0100187/* LM90 status */
188#define LM90_STATUS_LTHRM (1 << 0) /* local THERM limit tripped */
189#define LM90_STATUS_RTHRM (1 << 1) /* remote THERM limit tripped */
190#define LM90_STATUS_ROPEN (1 << 2) /* remote is an open circuit */
191#define LM90_STATUS_RLOW (1 << 3) /* remote low temp limit tripped */
192#define LM90_STATUS_RHIGH (1 << 4) /* remote high temp limit tripped */
193#define LM90_STATUS_LLOW (1 << 5) /* local low temp limit tripped */
194#define LM90_STATUS_LHIGH (1 << 6) /* local high temp limit tripped */
195
196#define MAX6696_STATUS2_R2THRM (1 << 1) /* remote2 THERM limit tripped */
197#define MAX6696_STATUS2_R2OPEN (1 << 2) /* remote2 is an open circuit */
198#define MAX6696_STATUS2_R2LOW (1 << 3) /* remote2 low temp limit tripped */
199#define MAX6696_STATUS2_R2HIGH (1 << 4) /* remote2 high temp limit tripped */
200#define MAX6696_STATUS2_ROT2 (1 << 5) /* remote emergency limit tripped */
201#define MAX6696_STATUS2_R2OT2 (1 << 6) /* remote2 emergency limit tripped */
202#define MAX6696_STATUS2_LOT2 (1 << 7) /* local emergency limit tripped */
203
Nate Case23b2d472008-10-17 17:51:10 +0200204/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 * Driver data (common to all clients)
206 */
207
Jean Delvare9b0e8522008-07-16 19:30:15 +0200208static const struct i2c_device_id lm90_id[] = {
209 { "adm1032", adm1032 },
210 { "adt7461", adt7461 },
Guenter Roeck5a4e5e62011-04-29 16:33:35 +0200211 { "adt7461a", adt7461 },
Guenter Roeckae544f62012-03-23 10:02:18 +0100212 { "g781", g781 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200213 { "lm90", lm90 },
214 { "lm86", lm86 },
Jean Delvare97ae60b2008-10-26 17:04:39 +0100215 { "lm89", lm86 },
216 { "lm99", lm99 },
Ben Hutchings271dabf2008-10-17 17:51:11 +0200217 { "max6646", max6646 },
218 { "max6647", max6646 },
219 { "max6649", max6646 },
Josh Lehan229d4952020-05-13 11:42:48 -0700220 { "max6654", max6654 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200221 { "max6657", max6657 },
222 { "max6658", max6657 },
Guenter Roeck13c84952010-10-28 20:31:43 +0200223 { "max6659", max6659 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200224 { "max6680", max6680 },
225 { "max6681", max6680 },
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200226 { "max6695", max6696 },
227 { "max6696", max6696 },
Guenter Roeck5a4e5e62011-04-29 16:33:35 +0200228 { "nct1008", adt7461 },
Jean Delvare6771ea12010-03-05 22:17:13 +0100229 { "w83l771", w83l771 },
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000230 { "sa56004", sa56004 },
Wei Ni1daaceb2013-11-15 10:40:39 +0100231 { "tmp451", tmp451 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200232 { }
233};
234MODULE_DEVICE_TABLE(i2c, lm90_id);
235
Guenter Roeck787afaa2019-04-04 06:21:17 -0700236static const struct of_device_id __maybe_unused lm90_of_match[] = {
Javier Martinez Canillasdf8d57b2017-02-24 10:13:04 -0300237 {
238 .compatible = "adi,adm1032",
239 .data = (void *)adm1032
240 },
241 {
242 .compatible = "adi,adt7461",
243 .data = (void *)adt7461
244 },
245 {
246 .compatible = "adi,adt7461a",
247 .data = (void *)adt7461
248 },
249 {
250 .compatible = "gmt,g781",
251 .data = (void *)g781
252 },
253 {
254 .compatible = "national,lm90",
255 .data = (void *)lm90
256 },
257 {
258 .compatible = "national,lm86",
259 .data = (void *)lm86
260 },
261 {
262 .compatible = "national,lm89",
263 .data = (void *)lm86
264 },
265 {
266 .compatible = "national,lm99",
267 .data = (void *)lm99
268 },
269 {
270 .compatible = "dallas,max6646",
271 .data = (void *)max6646
272 },
273 {
274 .compatible = "dallas,max6647",
275 .data = (void *)max6646
276 },
277 {
278 .compatible = "dallas,max6649",
279 .data = (void *)max6646
280 },
281 {
Josh Lehan229d4952020-05-13 11:42:48 -0700282 .compatible = "dallas,max6654",
283 .data = (void *)max6654
284 },
285 {
Javier Martinez Canillasdf8d57b2017-02-24 10:13:04 -0300286 .compatible = "dallas,max6657",
287 .data = (void *)max6657
288 },
289 {
290 .compatible = "dallas,max6658",
291 .data = (void *)max6657
292 },
293 {
294 .compatible = "dallas,max6659",
295 .data = (void *)max6659
296 },
297 {
298 .compatible = "dallas,max6680",
299 .data = (void *)max6680
300 },
301 {
302 .compatible = "dallas,max6681",
303 .data = (void *)max6680
304 },
305 {
306 .compatible = "dallas,max6695",
307 .data = (void *)max6696
308 },
309 {
310 .compatible = "dallas,max6696",
311 .data = (void *)max6696
312 },
313 {
314 .compatible = "onnn,nct1008",
315 .data = (void *)adt7461
316 },
317 {
318 .compatible = "winbond,w83l771",
319 .data = (void *)w83l771
320 },
321 {
322 .compatible = "nxp,sa56004",
323 .data = (void *)sa56004
324 },
325 {
326 .compatible = "ti,tmp451",
327 .data = (void *)tmp451
328 },
329 { },
330};
331MODULE_DEVICE_TABLE(of, lm90_of_match);
332
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333/*
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200334 * chip type specific parameters
335 */
336struct lm90_params {
337 u32 flags; /* Capabilities */
338 u16 alert_alarms; /* Which alarm bits trigger ALERT# */
339 /* Upper 8 bits for max6695/96 */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200340 u8 max_convrate; /* Maximum conversion rate register value */
Jean Delvarea095f682011-07-27 23:22:25 -0700341 u8 reg_local_ext; /* Extended local temp register (optional) */
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200342};
343
344static const struct lm90_params lm90_params[] = {
345 [adm1032] = {
Guenter Roeck11793242010-10-28 20:31:44 +0200346 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
347 | LM90_HAVE_BROKEN_ALERT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200348 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200349 .max_convrate = 10,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200350 },
351 [adt7461] = {
Guenter Roeck11793242010-10-28 20:31:44 +0200352 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
353 | LM90_HAVE_BROKEN_ALERT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200354 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200355 .max_convrate = 10,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200356 },
Guenter Roeckae544f62012-03-23 10:02:18 +0100357 [g781] = {
358 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
359 | LM90_HAVE_BROKEN_ALERT,
360 .alert_alarms = 0x7c,
361 .max_convrate = 8,
362 },
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200363 [lm86] = {
364 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
365 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200366 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200367 },
368 [lm90] = {
369 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
370 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200371 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200372 },
373 [lm99] = {
374 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
375 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200376 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200377 },
378 [max6646] = {
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200379 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200380 .max_convrate = 6,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000381 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200382 },
Josh Lehan229d4952020-05-13 11:42:48 -0700383 [max6654] = {
384 .alert_alarms = 0x7c,
385 .max_convrate = 7,
386 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
387 },
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200388 [max6657] = {
Boyang Yu62456182019-06-28 19:06:36 +0000389 .flags = LM90_PAUSE_FOR_CONFIG,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200390 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200391 .max_convrate = 8,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000392 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200393 },
394 [max6659] = {
Jean Delvarea095f682011-07-27 23:22:25 -0700395 .flags = LM90_HAVE_EMERGENCY,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200396 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200397 .max_convrate = 8,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000398 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200399 },
400 [max6680] = {
401 .flags = LM90_HAVE_OFFSET,
402 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200403 .max_convrate = 7,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200404 },
405 [max6696] = {
Jean Delvarea095f682011-07-27 23:22:25 -0700406 .flags = LM90_HAVE_EMERGENCY
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200407 | LM90_HAVE_EMERGENCY_ALARM | LM90_HAVE_TEMP3,
Guenter Roecke41fae2b2013-11-15 10:40:38 +0100408 .alert_alarms = 0x1c7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200409 .max_convrate = 6,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000410 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200411 },
412 [w83l771] = {
413 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
414 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200415 .max_convrate = 8,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200416 },
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000417 [sa56004] = {
Jean Delvarea095f682011-07-27 23:22:25 -0700418 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000419 .alert_alarms = 0x7b,
420 .max_convrate = 9,
421 .reg_local_ext = SA56004_REG_R_LOCAL_TEMPL,
422 },
Wei Ni1daaceb2013-11-15 10:40:39 +0100423 [tmp451] = {
424 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
425 | LM90_HAVE_BROKEN_ALERT,
426 .alert_alarms = 0x7c,
427 .max_convrate = 9,
428 .reg_local_ext = TMP451_REG_R_LOCAL_TEMPL,
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700429 },
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200430};
431
432/*
Wei Ni40465d92013-11-15 10:40:39 +0100433 * TEMP8 register index
434 */
435enum lm90_temp8_reg_index {
436 LOCAL_LOW = 0,
437 LOCAL_HIGH,
438 LOCAL_CRIT,
439 REMOTE_CRIT,
440 LOCAL_EMERG, /* max6659 and max6695/96 */
441 REMOTE_EMERG, /* max6659 and max6695/96 */
442 REMOTE2_CRIT, /* max6695/96 only */
443 REMOTE2_EMERG, /* max6695/96 only */
444 TEMP8_REG_NUM
445};
446
447/*
448 * TEMP11 register index
449 */
450enum lm90_temp11_reg_index {
451 REMOTE_TEMP = 0,
452 REMOTE_LOW,
453 REMOTE_HIGH,
454 REMOTE_OFFSET, /* except max6646, max6657/58/59, and max6695/96 */
455 LOCAL_TEMP,
456 REMOTE2_TEMP, /* max6695/96 only */
457 REMOTE2_LOW, /* max6695/96 only */
458 REMOTE2_HIGH, /* max6695/96 only */
459 TEMP11_REG_NUM
460};
461
462/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 * Client data (each client gets its own)
464 */
465
466struct lm90_data {
Guenter Roeck1de8b252014-04-04 18:01:35 +0200467 struct i2c_client *client;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700468 u32 channel_config[4];
469 struct hwmon_channel_info temp_info;
470 const struct hwmon_channel_info *info[3];
471 struct hwmon_chip_info chip;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100472 struct mutex update_lock;
Guenter Roeck2f83ab72016-06-18 15:39:08 -0700473 bool valid; /* true if register values are valid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474 unsigned long last_updated; /* in jiffies */
475 int kind;
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200476 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477
Wolfram Sang38bab982016-06-05 09:35:43 +0200478 unsigned int update_interval; /* in milliseconds */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200479
Guenter Roeckb849e5d2019-06-30 15:14:19 -0700480 u8 config; /* Current configuration register value */
Jean Delvare95238362010-03-05 22:17:14 +0100481 u8 config_orig; /* Original configuration register value */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200482 u8 convrate_orig; /* Original conversion rate register value */
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200483 u16 alert_alarms; /* Which alarm bits trigger ALERT# */
484 /* Upper 8 bits for max6695/96 */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200485 u8 max_convrate; /* Maximum conversion rate */
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000486 u8 reg_local_ext; /* local extension register offset */
Jean Delvare95238362010-03-05 22:17:14 +0100487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /* registers values */
Wei Ni40465d92013-11-15 10:40:39 +0100489 s8 temp8[TEMP8_REG_NUM];
490 s16 temp11[TEMP11_REG_NUM];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 u8 temp_hyst;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200492 u16 alarms; /* bitvector (upper 8 bits for max6695/96) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493};
494
495/*
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200496 * Support functions
497 */
498
499/*
500 * The ADM1032 supports PEC but not on write byte transactions, so we need
501 * to explicitly ask for a transaction without PEC.
502 */
503static inline s32 adm1032_write_byte(struct i2c_client *client, u8 value)
504{
505 return i2c_smbus_xfer(client->adapter, client->addr,
506 client->flags & ~I2C_CLIENT_PEC,
507 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
508}
509
510/*
511 * It is assumed that client->update_lock is held (unless we are in
512 * detection or initialization steps). This matters when PEC is enabled,
513 * because we don't want the address pointer to change between the write
514 * byte and the read byte transactions.
515 */
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700516static int lm90_read_reg(struct i2c_client *client, u8 reg)
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200517{
518 int err;
519
520 if (client->flags & I2C_CLIENT_PEC) {
521 err = adm1032_write_byte(client, reg);
522 if (err >= 0)
523 err = i2c_smbus_read_byte(client);
524 } else
525 err = i2c_smbus_read_byte_data(client, reg);
526
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700527 return err;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200528}
529
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700530static int lm90_read16(struct i2c_client *client, u8 regh, u8 regl)
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200531{
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700532 int oldh, newh, l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200533
534 /*
535 * There is a trick here. We have to read two registers to have the
536 * sensor temperature, but we have to beware a conversion could occur
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300537 * between the readings. The datasheet says we should either use
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200538 * the one-shot conversion register, which we don't want to do
539 * (disables hardware monitoring) or monitor the busy bit, which is
540 * impossible (we can't read the values and monitor that bit at the
541 * exact same time). So the solution used here is to read the high
542 * byte once, then the low byte, then the high byte again. If the new
543 * high byte matches the old one, then we have a valid reading. Else
544 * we have to read the low byte again, and now we believe we have a
545 * correct reading.
546 */
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700547 oldh = lm90_read_reg(client, regh);
548 if (oldh < 0)
549 return oldh;
550 l = lm90_read_reg(client, regl);
551 if (l < 0)
552 return l;
553 newh = lm90_read_reg(client, regh);
554 if (newh < 0)
555 return newh;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200556 if (oldh != newh) {
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700557 l = lm90_read_reg(client, regl);
558 if (l < 0)
559 return l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200560 }
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700561 return (newh << 8) | l;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200562}
563
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700564static int lm90_update_confreg(struct lm90_data *data, u8 config)
565{
566 if (data->config != config) {
567 int err;
568
569 err = i2c_smbus_write_byte_data(data->client,
570 LM90_REG_W_CONFIG1,
571 config);
572 if (err)
573 return err;
574 data->config = config;
575 }
576 return 0;
577}
578
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200579/*
580 * client->update_lock must be held when calling this function (unless we are
581 * in detection or initialization steps), and while a remote channel other
582 * than channel 0 is selected. Also, calling code must make sure to re-select
583 * external channel 0 before releasing the lock. This is necessary because
584 * various registers have different meanings as a result of selecting a
585 * non-default remote channel.
586 */
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700587static int lm90_select_remote_channel(struct lm90_data *data, int channel)
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200588{
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700589 int err = 0;
590
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200591 if (data->kind == max6696) {
Guenter Roeckb849e5d2019-06-30 15:14:19 -0700592 u8 config = data->config & ~0x08;
Guenter Roeckb849e5d2019-06-30 15:14:19 -0700593
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200594 if (channel)
595 config |= 0x08;
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700596 err = lm90_update_confreg(data, config);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200597 }
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700598 return err;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200599}
600
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700601static int lm90_write_convrate(struct lm90_data *data, int val)
Boyang Yu62456182019-06-28 19:06:36 +0000602{
Guenter Roeckb849e5d2019-06-30 15:14:19 -0700603 u8 config = data->config;
Boyang Yu62456182019-06-28 19:06:36 +0000604 int err;
Boyang Yu62456182019-06-28 19:06:36 +0000605
606 /* Save config and pause conversion */
607 if (data->flags & LM90_PAUSE_FOR_CONFIG) {
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700608 err = lm90_update_confreg(data, config | 0x40);
609 if (err < 0)
610 return err;
Boyang Yu62456182019-06-28 19:06:36 +0000611 }
612
613 /* Set conv rate */
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700614 err = i2c_smbus_write_byte_data(data->client, LM90_REG_W_CONVRATE, val);
Boyang Yu62456182019-06-28 19:06:36 +0000615
616 /* Revert change to config */
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700617 lm90_update_confreg(data, config);
Boyang Yu62456182019-06-28 19:06:36 +0000618
619 return err;
620}
621
Guenter Roeck0c01b642010-10-28 20:31:44 +0200622/*
623 * Set conversion rate.
624 * client->update_lock must be held when calling this function (unless we are
625 * in detection or initialization steps).
626 */
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700627static int lm90_set_convrate(struct i2c_client *client, struct lm90_data *data,
628 unsigned int interval)
Guenter Roeck0c01b642010-10-28 20:31:44 +0200629{
Guenter Roeck0c01b642010-10-28 20:31:44 +0200630 unsigned int update_interval;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700631 int i, err;
Guenter Roeck0c01b642010-10-28 20:31:44 +0200632
633 /* Shift calculations to avoid rounding errors */
634 interval <<= 6;
635
636 /* find the nearest update rate */
637 for (i = 0, update_interval = LM90_MAX_CONVRATE_MS << 6;
638 i < data->max_convrate; i++, update_interval >>= 1)
639 if (interval >= update_interval * 3 / 4)
640 break;
641
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700642 err = lm90_write_convrate(data, i);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200643 data->update_interval = DIV_ROUND_CLOSEST(update_interval, 64);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700644 return err;
Guenter Roeck0c01b642010-10-28 20:31:44 +0200645}
646
Guenter Roeck10bfef42016-06-13 19:26:45 -0700647static int lm90_update_limits(struct device *dev)
648{
649 struct lm90_data *data = dev_get_drvdata(dev);
650 struct i2c_client *client = data->client;
651 int val;
652
653 val = lm90_read_reg(client, LM90_REG_R_LOCAL_CRIT);
654 if (val < 0)
655 return val;
656 data->temp8[LOCAL_CRIT] = val;
657
658 val = lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT);
659 if (val < 0)
660 return val;
661 data->temp8[REMOTE_CRIT] = val;
662
663 val = lm90_read_reg(client, LM90_REG_R_TCRIT_HYST);
664 if (val < 0)
665 return val;
666 data->temp_hyst = val;
667
Guenter Roeckbe9d6372016-07-25 14:47:18 -0700668 val = lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH);
Guenter Roeck10bfef42016-06-13 19:26:45 -0700669 if (val < 0)
670 return val;
671 data->temp11[REMOTE_LOW] = val << 8;
672
673 if (data->flags & LM90_HAVE_REM_LIMIT_EXT) {
674 val = lm90_read_reg(client, LM90_REG_R_REMOTE_LOWL);
675 if (val < 0)
676 return val;
677 data->temp11[REMOTE_LOW] |= val;
678 }
679
680 val = lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH);
681 if (val < 0)
682 return val;
683 data->temp11[REMOTE_HIGH] = val << 8;
684
685 if (data->flags & LM90_HAVE_REM_LIMIT_EXT) {
686 val = lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHL);
687 if (val < 0)
688 return val;
689 data->temp11[REMOTE_HIGH] |= val;
690 }
691
692 if (data->flags & LM90_HAVE_OFFSET) {
693 val = lm90_read16(client, LM90_REG_R_REMOTE_OFFSH,
694 LM90_REG_R_REMOTE_OFFSL);
695 if (val < 0)
696 return val;
697 data->temp11[REMOTE_OFFSET] = val;
698 }
699
700 if (data->flags & LM90_HAVE_EMERGENCY) {
701 val = lm90_read_reg(client, MAX6659_REG_R_LOCAL_EMERG);
702 if (val < 0)
703 return val;
704 data->temp8[LOCAL_EMERG] = val;
705
706 val = lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG);
707 if (val < 0)
708 return val;
709 data->temp8[REMOTE_EMERG] = val;
710 }
711
712 if (data->kind == max6696) {
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700713 val = lm90_select_remote_channel(data, 1);
Guenter Roeck10bfef42016-06-13 19:26:45 -0700714 if (val < 0)
715 return val;
716
717 val = lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT);
718 if (val < 0)
719 return val;
720 data->temp8[REMOTE2_CRIT] = val;
721
722 val = lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG);
723 if (val < 0)
724 return val;
725 data->temp8[REMOTE2_EMERG] = val;
726
727 val = lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH);
728 if (val < 0)
729 return val;
730 data->temp11[REMOTE2_LOW] = val << 8;
731
732 val = lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH);
733 if (val < 0)
734 return val;
735 data->temp11[REMOTE2_HIGH] = val << 8;
736
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700737 lm90_select_remote_channel(data, 0);
Guenter Roeck10bfef42016-06-13 19:26:45 -0700738 }
739
740 return 0;
741}
742
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700743static int lm90_update_device(struct device *dev)
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200744{
Guenter Roeck1de8b252014-04-04 18:01:35 +0200745 struct lm90_data *data = dev_get_drvdata(dev);
746 struct i2c_client *client = data->client;
Guenter Roeck0c01b642010-10-28 20:31:44 +0200747 unsigned long next_update;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700748 int val;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200749
Guenter Roeck10bfef42016-06-13 19:26:45 -0700750 if (!data->valid) {
751 val = lm90_update_limits(dev);
752 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700753 return val;
Guenter Roeck10bfef42016-06-13 19:26:45 -0700754 }
755
Jean Delvare78c2c2f2013-07-08 14:18:24 +0200756 next_update = data->last_updated +
757 msecs_to_jiffies(data->update_interval);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200758 if (time_after(jiffies, next_update) || !data->valid) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200759 dev_dbg(&client->dev, "Updating lm90 data.\n");
Guenter Roeck10bfef42016-06-13 19:26:45 -0700760
Guenter Roeck2f83ab72016-06-18 15:39:08 -0700761 data->valid = false;
Guenter Roeck10bfef42016-06-13 19:26:45 -0700762
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700763 val = lm90_read_reg(client, LM90_REG_R_LOCAL_LOW);
764 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700765 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700766 data->temp8[LOCAL_LOW] = val;
767
768 val = lm90_read_reg(client, LM90_REG_R_LOCAL_HIGH);
769 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700770 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700771 data->temp8[LOCAL_HIGH] = val;
772
Jean Delvarea095f682011-07-27 23:22:25 -0700773 if (data->reg_local_ext) {
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700774 val = lm90_read16(client, LM90_REG_R_LOCAL_TEMP,
775 data->reg_local_ext);
776 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700777 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700778 data->temp11[LOCAL_TEMP] = val;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200779 } else {
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700780 val = lm90_read_reg(client, LM90_REG_R_LOCAL_TEMP);
781 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700782 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700783 data->temp11[LOCAL_TEMP] = val << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200784 }
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700785 val = lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
786 LM90_REG_R_REMOTE_TEMPL);
787 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700788 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700789 data->temp11[REMOTE_TEMP] = val;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200790
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700791 val = lm90_read_reg(client, LM90_REG_R_STATUS);
792 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700793 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700794 data->alarms = val; /* lower 8 bit of alarms */
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200795
796 if (data->kind == max6696) {
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700797 val = lm90_select_remote_channel(data, 1);
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700798 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700799 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700800
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700801 val = lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
802 LM90_REG_R_REMOTE_TEMPL);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700803 if (val < 0) {
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700804 lm90_select_remote_channel(data, 0);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700805 return val;
806 }
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700807 data->temp11[REMOTE2_TEMP] = val;
808
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700809 lm90_select_remote_channel(data, 0);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200810
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700811 val = lm90_read_reg(client, MAX6696_REG_R_STATUS2);
812 if (val < 0)
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700813 return val;
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700814 data->alarms |= val << 8;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200815 }
816
Guenter Roeckf36ffea2012-03-23 10:02:18 +0100817 /*
818 * Re-enable ALERT# output if it was originally enabled and
819 * relevant alarms are all clear
820 */
Guenter Roeck37ad04d2016-06-13 06:57:37 -0700821 if (!(data->config_orig & 0x80) &&
822 !(data->alarms & data->alert_alarms)) {
Guenter Roeckb849e5d2019-06-30 15:14:19 -0700823 if (data->config & 0x80) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200824 dev_dbg(&client->dev, "Re-enabling ALERT#\n");
Guenter Roeck7a1d2202019-06-30 15:40:34 -0700825 lm90_update_confreg(data, data->config & ~0x80);
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200826 }
827 }
828
829 data->last_updated = jiffies;
Guenter Roeck2f83ab72016-06-18 15:39:08 -0700830 data->valid = true;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200831 }
832
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700833 return 0;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200834}
835
836/*
Nate Casecea50fe2008-10-17 17:51:10 +0200837 * Conversions
838 * For local temperatures and limits, critical limits and the hysteresis
839 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius.
840 * For remote temperatures and limits, it uses signed 11-bit values with
Ben Hutchings271dabf2008-10-17 17:51:11 +0200841 * LSB = 0.125 degree Celsius, left-justified in 16-bit registers. Some
842 * Maxim chips use unsigned values.
Nate Casecea50fe2008-10-17 17:51:10 +0200843 */
844
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200845static inline int temp_from_s8(s8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200846{
847 return val * 1000;
848}
849
Ben Hutchings271dabf2008-10-17 17:51:11 +0200850static inline int temp_from_u8(u8 val)
851{
852 return val * 1000;
853}
854
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200855static inline int temp_from_s16(s16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200856{
857 return val / 32 * 125;
858}
859
Ben Hutchings271dabf2008-10-17 17:51:11 +0200860static inline int temp_from_u16(u16 val)
861{
862 return val / 32 * 125;
863}
864
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200865static s8 temp_to_s8(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200866{
867 if (val <= -128000)
868 return -128;
869 if (val >= 127000)
870 return 127;
871 if (val < 0)
872 return (val - 500) / 1000;
873 return (val + 500) / 1000;
874}
875
Ben Hutchings271dabf2008-10-17 17:51:11 +0200876static u8 temp_to_u8(long val)
877{
878 if (val <= 0)
879 return 0;
880 if (val >= 255000)
881 return 255;
882 return (val + 500) / 1000;
883}
884
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200885static s16 temp_to_s16(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200886{
887 if (val <= -128000)
888 return 0x8000;
889 if (val >= 127875)
890 return 0x7FE0;
891 if (val < 0)
892 return (val - 62) / 125 * 32;
893 return (val + 62) / 125 * 32;
894}
895
896static u8 hyst_to_reg(long val)
897{
898 if (val <= 0)
899 return 0;
900 if (val >= 30500)
901 return 31;
902 return (val + 500) / 1000;
903}
904
905/*
Nate Case23b2d472008-10-17 17:51:10 +0200906 * ADT7461 in compatibility mode is almost identical to LM90 except that
907 * attempts to write values that are outside the range 0 < temp < 127 are
908 * treated as the boundary value.
909 *
910 * ADT7461 in "extended mode" operation uses unsigned integers offset by
911 * 64 (e.g., 0 -> -64 degC). The range is restricted to -64..191 degC.
Nate Casecea50fe2008-10-17 17:51:10 +0200912 */
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200913static inline int temp_from_u8_adt7461(struct lm90_data *data, u8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200914{
Nate Case23b2d472008-10-17 17:51:10 +0200915 if (data->flags & LM90_FLAG_ADT7461_EXT)
916 return (val - 64) * 1000;
Guenter Roeck589f7072016-06-18 19:58:26 -0700917 return temp_from_s8(val);
Nate Casecea50fe2008-10-17 17:51:10 +0200918}
919
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200920static inline int temp_from_u16_adt7461(struct lm90_data *data, u16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200921{
Nate Case23b2d472008-10-17 17:51:10 +0200922 if (data->flags & LM90_FLAG_ADT7461_EXT)
923 return (val - 0x4000) / 64 * 250;
Guenter Roeck589f7072016-06-18 19:58:26 -0700924 return temp_from_s16(val);
Nate Case23b2d472008-10-17 17:51:10 +0200925}
926
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200927static u8 temp_to_u8_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200928{
929 if (data->flags & LM90_FLAG_ADT7461_EXT) {
930 if (val <= -64000)
931 return 0;
932 if (val >= 191000)
933 return 0xFF;
934 return (val + 500 + 64000) / 1000;
Nate Case23b2d472008-10-17 17:51:10 +0200935 }
Guenter Roeck589f7072016-06-18 19:58:26 -0700936 if (val <= 0)
937 return 0;
938 if (val >= 127000)
939 return 127;
940 return (val + 500) / 1000;
Nate Case23b2d472008-10-17 17:51:10 +0200941}
942
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200943static u16 temp_to_u16_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200944{
945 if (data->flags & LM90_FLAG_ADT7461_EXT) {
946 if (val <= -64000)
947 return 0;
948 if (val >= 191750)
949 return 0xFFC0;
950 return (val + 64000 + 125) / 250 * 64;
Nate Case23b2d472008-10-17 17:51:10 +0200951 }
Guenter Roeck589f7072016-06-18 19:58:26 -0700952 if (val <= 0)
953 return 0;
954 if (val >= 127750)
955 return 0x7FC0;
956 return (val + 125) / 250 * 64;
Nate Casecea50fe2008-10-17 17:51:10 +0200957}
958
Jean Delvarec3df5802005-10-26 21:39:40 +0200959/* pec used for ADM1032 only */
Julia Lawalle57959a2016-12-22 13:05:22 +0100960static ssize_t pec_show(struct device *dev, struct device_attribute *dummy,
Jean Delvarec3df5802005-10-26 21:39:40 +0200961 char *buf)
962{
963 struct i2c_client *client = to_i2c_client(dev);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700964
Jean Delvarec3df5802005-10-26 21:39:40 +0200965 return sprintf(buf, "%d\n", !!(client->flags & I2C_CLIENT_PEC));
966}
967
Julia Lawalle57959a2016-12-22 13:05:22 +0100968static ssize_t pec_store(struct device *dev, struct device_attribute *dummy,
969 const char *buf, size_t count)
Jean Delvarec3df5802005-10-26 21:39:40 +0200970{
971 struct i2c_client *client = to_i2c_client(dev);
Guenter Roeck11e57812010-10-28 20:31:42 +0200972 long val;
973 int err;
974
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100975 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200976 if (err < 0)
977 return err;
Jean Delvarec3df5802005-10-26 21:39:40 +0200978
979 switch (val) {
980 case 0:
981 client->flags &= ~I2C_CLIENT_PEC;
982 break;
983 case 1:
984 client->flags |= I2C_CLIENT_PEC;
985 break;
986 default:
987 return -EINVAL;
988 }
989
990 return count;
991}
992
Julia Lawalle57959a2016-12-22 13:05:22 +0100993static DEVICE_ATTR_RW(pec);
Jean Delvarec3df5802005-10-26 21:39:40 +0200994
Guenter Roeckeb1c8f42016-06-18 19:56:08 -0700995static int lm90_get_temp11(struct lm90_data *data, int index)
996{
997 s16 temp11 = data->temp11[index];
998 int temp;
999
1000 if (data->kind == adt7461 || data->kind == tmp451)
1001 temp = temp_from_u16_adt7461(data, temp11);
1002 else if (data->kind == max6646)
1003 temp = temp_from_u16(temp11);
1004 else
1005 temp = temp_from_s16(temp11);
1006
1007 /* +16 degrees offset for temp2 for the LM99 */
1008 if (data->kind == lm99 && index <= 2)
1009 temp += 16000;
1010
1011 return temp;
1012}
1013
1014static int lm90_set_temp11(struct lm90_data *data, int index, long val)
1015{
1016 static struct reg {
1017 u8 high;
1018 u8 low;
1019 } reg[] = {
1020 [REMOTE_LOW] = { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL },
1021 [REMOTE_HIGH] = { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL },
1022 [REMOTE_OFFSET] = { LM90_REG_W_REMOTE_OFFSH, LM90_REG_W_REMOTE_OFFSL },
1023 [REMOTE2_LOW] = { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL },
1024 [REMOTE2_HIGH] = { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL }
1025 };
1026 struct i2c_client *client = data->client;
1027 struct reg *regp = &reg[index];
1028 int err;
1029
1030 /* +16 degrees offset for temp2 for the LM99 */
1031 if (data->kind == lm99 && index <= 2)
1032 val -= 16000;
1033
1034 if (data->kind == adt7461 || data->kind == tmp451)
1035 data->temp11[index] = temp_to_u16_adt7461(data, val);
1036 else if (data->kind == max6646)
1037 data->temp11[index] = temp_to_u8(val) << 8;
1038 else if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
1039 data->temp11[index] = temp_to_s16(val);
1040 else
1041 data->temp11[index] = temp_to_s8(val) << 8;
1042
Guenter Roeck7a1d2202019-06-30 15:40:34 -07001043 lm90_select_remote_channel(data, index >= 3);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001044 err = i2c_smbus_write_byte_data(client, regp->high,
1045 data->temp11[index] >> 8);
1046 if (err < 0)
1047 return err;
1048 if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
1049 err = i2c_smbus_write_byte_data(client, regp->low,
1050 data->temp11[index] & 0xff);
1051
Guenter Roeck7a1d2202019-06-30 15:40:34 -07001052 lm90_select_remote_channel(data, 0);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001053 return err;
1054}
1055
1056static int lm90_get_temp8(struct lm90_data *data, int index)
1057{
1058 s8 temp8 = data->temp8[index];
1059 int temp;
1060
1061 if (data->kind == adt7461 || data->kind == tmp451)
1062 temp = temp_from_u8_adt7461(data, temp8);
1063 else if (data->kind == max6646)
1064 temp = temp_from_u8(temp8);
1065 else
1066 temp = temp_from_s8(temp8);
1067
1068 /* +16 degrees offset for temp2 for the LM99 */
1069 if (data->kind == lm99 && index == 3)
1070 temp += 16000;
1071
1072 return temp;
1073}
1074
1075static int lm90_set_temp8(struct lm90_data *data, int index, long val)
1076{
1077 static const u8 reg[TEMP8_REG_NUM] = {
1078 LM90_REG_W_LOCAL_LOW,
1079 LM90_REG_W_LOCAL_HIGH,
1080 LM90_REG_W_LOCAL_CRIT,
1081 LM90_REG_W_REMOTE_CRIT,
1082 MAX6659_REG_W_LOCAL_EMERG,
1083 MAX6659_REG_W_REMOTE_EMERG,
1084 LM90_REG_W_REMOTE_CRIT,
1085 MAX6659_REG_W_REMOTE_EMERG,
1086 };
1087 struct i2c_client *client = data->client;
1088 int err;
1089
1090 /* +16 degrees offset for temp2 for the LM99 */
1091 if (data->kind == lm99 && index == 3)
1092 val -= 16000;
1093
1094 if (data->kind == adt7461 || data->kind == tmp451)
1095 data->temp8[index] = temp_to_u8_adt7461(data, val);
1096 else if (data->kind == max6646)
1097 data->temp8[index] = temp_to_u8(val);
1098 else
1099 data->temp8[index] = temp_to_s8(val);
1100
Guenter Roeck7a1d2202019-06-30 15:40:34 -07001101 lm90_select_remote_channel(data, index >= 6);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001102 err = i2c_smbus_write_byte_data(client, reg[index], data->temp8[index]);
Guenter Roeck7a1d2202019-06-30 15:40:34 -07001103 lm90_select_remote_channel(data, 0);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001104
1105 return err;
1106}
1107
1108static int lm90_get_temphyst(struct lm90_data *data, int index)
1109{
1110 int temp;
1111
1112 if (data->kind == adt7461 || data->kind == tmp451)
1113 temp = temp_from_u8_adt7461(data, data->temp8[index]);
1114 else if (data->kind == max6646)
1115 temp = temp_from_u8(data->temp8[index]);
1116 else
1117 temp = temp_from_s8(data->temp8[index]);
1118
1119 /* +16 degrees offset for temp2 for the LM99 */
1120 if (data->kind == lm99 && index == 3)
1121 temp += 16000;
1122
1123 return temp - temp_from_s8(data->temp_hyst);
1124}
1125
1126static int lm90_set_temphyst(struct lm90_data *data, long val)
1127{
1128 struct i2c_client *client = data->client;
1129 int temp;
1130 int err;
1131
1132 if (data->kind == adt7461 || data->kind == tmp451)
1133 temp = temp_from_u8_adt7461(data, data->temp8[LOCAL_CRIT]);
1134 else if (data->kind == max6646)
1135 temp = temp_from_u8(data->temp8[LOCAL_CRIT]);
1136 else
1137 temp = temp_from_s8(data->temp8[LOCAL_CRIT]);
1138
1139 data->temp_hyst = hyst_to_reg(temp - val);
1140 err = i2c_smbus_write_byte_data(client, LM90_REG_W_TCRIT_HYST,
1141 data->temp_hyst);
1142 return err;
1143}
1144
1145static const u8 lm90_temp_index[3] = {
1146 LOCAL_TEMP, REMOTE_TEMP, REMOTE2_TEMP
1147};
1148
1149static const u8 lm90_temp_min_index[3] = {
1150 LOCAL_LOW, REMOTE_LOW, REMOTE2_LOW
1151};
1152
1153static const u8 lm90_temp_max_index[3] = {
1154 LOCAL_HIGH, REMOTE_HIGH, REMOTE2_HIGH
1155};
1156
1157static const u8 lm90_temp_crit_index[3] = {
1158 LOCAL_CRIT, REMOTE_CRIT, REMOTE2_CRIT
1159};
1160
1161static const u8 lm90_temp_emerg_index[3] = {
1162 LOCAL_EMERG, REMOTE_EMERG, REMOTE2_EMERG
1163};
1164
1165static const u8 lm90_min_alarm_bits[3] = { 5, 3, 11 };
Michael Wallee9572fd2017-01-02 17:53:39 +01001166static const u8 lm90_max_alarm_bits[3] = { 6, 4, 12 };
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001167static const u8 lm90_crit_alarm_bits[3] = { 0, 1, 9 };
1168static const u8 lm90_emergency_alarm_bits[3] = { 15, 13, 14 };
1169static const u8 lm90_fault_bits[3] = { 0, 2, 10 };
1170
1171static int lm90_temp_read(struct device *dev, u32 attr, int channel, long *val)
1172{
1173 struct lm90_data *data = dev_get_drvdata(dev);
1174 int err;
1175
1176 mutex_lock(&data->update_lock);
1177 err = lm90_update_device(dev);
1178 mutex_unlock(&data->update_lock);
1179 if (err)
1180 return err;
1181
1182 switch (attr) {
1183 case hwmon_temp_input:
1184 *val = lm90_get_temp11(data, lm90_temp_index[channel]);
1185 break;
1186 case hwmon_temp_min_alarm:
1187 *val = (data->alarms >> lm90_min_alarm_bits[channel]) & 1;
1188 break;
1189 case hwmon_temp_max_alarm:
1190 *val = (data->alarms >> lm90_max_alarm_bits[channel]) & 1;
1191 break;
1192 case hwmon_temp_crit_alarm:
1193 *val = (data->alarms >> lm90_crit_alarm_bits[channel]) & 1;
1194 break;
1195 case hwmon_temp_emergency_alarm:
1196 *val = (data->alarms >> lm90_emergency_alarm_bits[channel]) & 1;
1197 break;
1198 case hwmon_temp_fault:
1199 *val = (data->alarms >> lm90_fault_bits[channel]) & 1;
1200 break;
1201 case hwmon_temp_min:
1202 if (channel == 0)
1203 *val = lm90_get_temp8(data,
1204 lm90_temp_min_index[channel]);
1205 else
1206 *val = lm90_get_temp11(data,
1207 lm90_temp_min_index[channel]);
1208 break;
1209 case hwmon_temp_max:
1210 if (channel == 0)
1211 *val = lm90_get_temp8(data,
1212 lm90_temp_max_index[channel]);
1213 else
1214 *val = lm90_get_temp11(data,
1215 lm90_temp_max_index[channel]);
1216 break;
1217 case hwmon_temp_crit:
1218 *val = lm90_get_temp8(data, lm90_temp_crit_index[channel]);
1219 break;
1220 case hwmon_temp_crit_hyst:
1221 *val = lm90_get_temphyst(data, lm90_temp_crit_index[channel]);
1222 break;
1223 case hwmon_temp_emergency:
1224 *val = lm90_get_temp8(data, lm90_temp_emerg_index[channel]);
1225 break;
1226 case hwmon_temp_emergency_hyst:
1227 *val = lm90_get_temphyst(data, lm90_temp_emerg_index[channel]);
1228 break;
1229 case hwmon_temp_offset:
1230 *val = lm90_get_temp11(data, REMOTE_OFFSET);
1231 break;
1232 default:
1233 return -EOPNOTSUPP;
1234 }
1235 return 0;
1236}
1237
1238static int lm90_temp_write(struct device *dev, u32 attr, int channel, long val)
1239{
1240 struct lm90_data *data = dev_get_drvdata(dev);
1241 int err;
1242
1243 mutex_lock(&data->update_lock);
1244
1245 err = lm90_update_device(dev);
1246 if (err)
1247 goto error;
1248
1249 switch (attr) {
1250 case hwmon_temp_min:
1251 if (channel == 0)
1252 err = lm90_set_temp8(data,
1253 lm90_temp_min_index[channel],
1254 val);
1255 else
1256 err = lm90_set_temp11(data,
1257 lm90_temp_min_index[channel],
1258 val);
1259 break;
1260 case hwmon_temp_max:
1261 if (channel == 0)
1262 err = lm90_set_temp8(data,
1263 lm90_temp_max_index[channel],
1264 val);
1265 else
1266 err = lm90_set_temp11(data,
1267 lm90_temp_max_index[channel],
1268 val);
1269 break;
1270 case hwmon_temp_crit:
1271 err = lm90_set_temp8(data, lm90_temp_crit_index[channel], val);
1272 break;
1273 case hwmon_temp_crit_hyst:
1274 err = lm90_set_temphyst(data, val);
1275 break;
1276 case hwmon_temp_emergency:
1277 err = lm90_set_temp8(data, lm90_temp_emerg_index[channel], val);
1278 break;
1279 case hwmon_temp_offset:
1280 err = lm90_set_temp11(data, REMOTE_OFFSET, val);
1281 break;
1282 default:
1283 err = -EOPNOTSUPP;
1284 break;
1285 }
1286error:
1287 mutex_unlock(&data->update_lock);
1288
1289 return err;
1290}
1291
1292static umode_t lm90_temp_is_visible(const void *data, u32 attr, int channel)
1293{
1294 switch (attr) {
1295 case hwmon_temp_input:
1296 case hwmon_temp_min_alarm:
1297 case hwmon_temp_max_alarm:
1298 case hwmon_temp_crit_alarm:
1299 case hwmon_temp_emergency_alarm:
1300 case hwmon_temp_emergency_hyst:
1301 case hwmon_temp_fault:
Guenter Roeck33348512018-12-10 14:02:12 -08001302 return 0444;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001303 case hwmon_temp_min:
1304 case hwmon_temp_max:
1305 case hwmon_temp_crit:
1306 case hwmon_temp_emergency:
1307 case hwmon_temp_offset:
Guenter Roeck33348512018-12-10 14:02:12 -08001308 return 0644;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001309 case hwmon_temp_crit_hyst:
1310 if (channel == 0)
Guenter Roeck33348512018-12-10 14:02:12 -08001311 return 0644;
1312 return 0444;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001313 default:
1314 return 0;
1315 }
1316}
1317
1318static int lm90_chip_read(struct device *dev, u32 attr, int channel, long *val)
1319{
1320 struct lm90_data *data = dev_get_drvdata(dev);
1321 int err;
1322
1323 mutex_lock(&data->update_lock);
1324 err = lm90_update_device(dev);
1325 mutex_unlock(&data->update_lock);
1326 if (err)
1327 return err;
1328
1329 switch (attr) {
1330 case hwmon_chip_update_interval:
1331 *val = data->update_interval;
1332 break;
1333 case hwmon_chip_alarms:
1334 *val = data->alarms;
1335 break;
1336 default:
1337 return -EOPNOTSUPP;
1338 }
1339
1340 return 0;
1341}
1342
1343static int lm90_chip_write(struct device *dev, u32 attr, int channel, long val)
1344{
1345 struct lm90_data *data = dev_get_drvdata(dev);
1346 struct i2c_client *client = data->client;
1347 int err;
1348
1349 mutex_lock(&data->update_lock);
1350
1351 err = lm90_update_device(dev);
1352 if (err)
1353 goto error;
1354
1355 switch (attr) {
1356 case hwmon_chip_update_interval:
1357 err = lm90_set_convrate(client, data,
1358 clamp_val(val, 0, 100000));
1359 break;
1360 default:
1361 err = -EOPNOTSUPP;
1362 break;
1363 }
1364error:
1365 mutex_unlock(&data->update_lock);
1366
1367 return err;
1368}
1369
1370static umode_t lm90_chip_is_visible(const void *data, u32 attr, int channel)
1371{
1372 switch (attr) {
1373 case hwmon_chip_update_interval:
Guenter Roeck33348512018-12-10 14:02:12 -08001374 return 0644;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001375 case hwmon_chip_alarms:
Guenter Roeck33348512018-12-10 14:02:12 -08001376 return 0444;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001377 default:
1378 return 0;
1379 }
1380}
1381
1382static int lm90_read(struct device *dev, enum hwmon_sensor_types type,
1383 u32 attr, int channel, long *val)
1384{
1385 switch (type) {
1386 case hwmon_chip:
1387 return lm90_chip_read(dev, attr, channel, val);
1388 case hwmon_temp:
1389 return lm90_temp_read(dev, attr, channel, val);
1390 default:
1391 return -EOPNOTSUPP;
1392 }
1393}
1394
1395static int lm90_write(struct device *dev, enum hwmon_sensor_types type,
1396 u32 attr, int channel, long val)
1397{
1398 switch (type) {
1399 case hwmon_chip:
1400 return lm90_chip_write(dev, attr, channel, val);
1401 case hwmon_temp:
1402 return lm90_temp_write(dev, attr, channel, val);
1403 default:
1404 return -EOPNOTSUPP;
1405 }
1406}
1407
1408static umode_t lm90_is_visible(const void *data, enum hwmon_sensor_types type,
1409 u32 attr, int channel)
1410{
1411 switch (type) {
1412 case hwmon_chip:
1413 return lm90_chip_is_visible(data, attr, channel);
1414 case hwmon_temp:
1415 return lm90_temp_is_visible(data, attr, channel);
1416 default:
1417 return 0;
1418 }
1419}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001420
Jean Delvare9b0e8522008-07-16 19:30:15 +02001421/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001422static int lm90_detect(struct i2c_client *client,
Jean Delvare9b0e8522008-07-16 19:30:15 +02001423 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001425 struct i2c_adapter *adapter = client->adapter;
1426 int address = client->addr;
Jean Delvare8f2fa772009-12-09 20:35:53 +01001427 const char *name = NULL;
Jean Delvareb2589ab2011-11-04 12:00:47 +01001428 int man_id, chip_id, config1, config2, convrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429
1430 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvare9b0e8522008-07-16 19:30:15 +02001431 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001432
Jean Delvare8f2fa772009-12-09 20:35:53 +01001433 /* detection and identification */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001434 man_id = i2c_smbus_read_byte_data(client, LM90_REG_R_MAN_ID);
1435 chip_id = i2c_smbus_read_byte_data(client, LM90_REG_R_CHIP_ID);
1436 config1 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG1);
1437 convrate = i2c_smbus_read_byte_data(client, LM90_REG_R_CONVRATE);
1438 if (man_id < 0 || chip_id < 0 || config1 < 0 || convrate < 0)
Jean Delvare8f2fa772009-12-09 20:35:53 +01001439 return -ENODEV;
1440
Jean Delvaref90be422011-07-24 20:37:05 +02001441 if (man_id == 0x01 || man_id == 0x5C || man_id == 0x41) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001442 config2 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG2);
1443 if (config2 < 0)
Jean Delvare9b0e8522008-07-16 19:30:15 +02001444 return -ENODEV;
Jean Delvaref90be422011-07-24 20:37:05 +02001445 } else
Jean Delvareb2589ab2011-11-04 12:00:47 +01001446 config2 = 0; /* Make compiler happy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447
Jean Delvaref90be422011-07-24 20:37:05 +02001448 if ((address == 0x4C || address == 0x4D)
1449 && man_id == 0x01) { /* National Semiconductor */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001450 if ((config1 & 0x2A) == 0x00
1451 && (config2 & 0xF8) == 0x00
1452 && convrate <= 0x09) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001453 if (address == 0x4C
1454 && (chip_id & 0xF0) == 0x20) { /* LM90 */
1455 name = "lm90";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001457 if ((chip_id & 0xF0) == 0x30) { /* LM89/LM99 */
1458 name = "lm99";
1459 dev_info(&adapter->dev,
1460 "Assuming LM99 chip at 0x%02x\n",
1461 address);
1462 dev_info(&adapter->dev,
1463 "If it is an LM89, instantiate it "
1464 "with the new_device sysfs "
1465 "interface\n");
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -04001466 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001467 if (address == 0x4C
1468 && (chip_id & 0xF0) == 0x10) { /* LM86 */
1469 name = "lm86";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470 }
1471 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001472 } else
1473 if ((address == 0x4C || address == 0x4D)
1474 && man_id == 0x41) { /* Analog Devices */
1475 if ((chip_id & 0xF0) == 0x40 /* ADM1032 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001476 && (config1 & 0x3F) == 0x00
1477 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001478 name = "adm1032";
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001479 /*
1480 * The ADM1032 supports PEC, but only if combined
1481 * transactions are not used.
1482 */
Jean Delvare8f2fa772009-12-09 20:35:53 +01001483 if (i2c_check_functionality(adapter,
1484 I2C_FUNC_SMBUS_BYTE))
1485 info->flags |= I2C_CLIENT_PEC;
1486 } else
1487 if (chip_id == 0x51 /* ADT7461 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001488 && (config1 & 0x1B) == 0x00
1489 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001490 name = "adt7461";
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001491 } else
1492 if (chip_id == 0x57 /* ADT7461A, NCT1008 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001493 && (config1 & 0x1B) == 0x00
1494 && convrate <= 0x0A) {
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001495 name = "adt7461a";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001496 }
1497 } else
1498 if (man_id == 0x4D) { /* Maxim */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001499 int emerg, emerg2, status2;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001500
1501 /*
1502 * We read MAX6659_REG_R_REMOTE_EMERG twice, and re-read
1503 * LM90_REG_R_MAN_ID in between. If MAX6659_REG_R_REMOTE_EMERG
1504 * exists, both readings will reflect the same value. Otherwise,
1505 * the readings will be different.
1506 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001507 emerg = i2c_smbus_read_byte_data(client,
1508 MAX6659_REG_R_REMOTE_EMERG);
1509 man_id = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001510 LM90_REG_R_MAN_ID);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001511 emerg2 = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001512 MAX6659_REG_R_REMOTE_EMERG);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001513 status2 = i2c_smbus_read_byte_data(client,
1514 MAX6696_REG_R_STATUS2);
1515 if (emerg < 0 || man_id < 0 || emerg2 < 0 || status2 < 0)
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001516 return -ENODEV;
1517
Jean Delvare8f2fa772009-12-09 20:35:53 +01001518 /*
1519 * The MAX6657, MAX6658 and MAX6659 do NOT have a chip_id
1520 * register. Reading from that address will return the last
1521 * read value, which in our case is those of the man_id
1522 * register. Likewise, the config1 register seems to lack a
1523 * low nibble, so the value will be those of the previous
1524 * read, so in our case those of the man_id register.
Guenter Roeck13c84952010-10-28 20:31:43 +02001525 * MAX6659 has a third set of upper temperature limit registers.
1526 * Those registers also return values on MAX6657 and MAX6658,
1527 * thus the only way to detect MAX6659 is by its address.
1528 * For this reason it will be mis-detected as MAX6657 if its
1529 * address is 0x4C.
Jean Delvare8f2fa772009-12-09 20:35:53 +01001530 */
1531 if (chip_id == man_id
Guenter Roeck13c84952010-10-28 20:31:43 +02001532 && (address == 0x4C || address == 0x4D || address == 0x4E)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001533 && (config1 & 0x1F) == (man_id & 0x0F)
1534 && convrate <= 0x09) {
Guenter Roeck13c84952010-10-28 20:31:43 +02001535 if (address == 0x4C)
1536 name = "max6657";
1537 else
1538 name = "max6659";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001539 } else
1540 /*
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001541 * Even though MAX6695 and MAX6696 do not have a chip ID
1542 * register, reading it returns 0x01. Bit 4 of the config1
1543 * register is unused and should return zero when read. Bit 0 of
1544 * the status2 register is unused and should return zero when
1545 * read.
1546 *
1547 * MAX6695 and MAX6696 have an additional set of temperature
1548 * limit registers. We can detect those chips by checking if
1549 * one of those registers exists.
1550 */
1551 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001552 && (config1 & 0x10) == 0x00
1553 && (status2 & 0x01) == 0x00
1554 && emerg == emerg2
1555 && convrate <= 0x07) {
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001556 name = "max6696";
1557 } else
1558 /*
Jean Delvare8f2fa772009-12-09 20:35:53 +01001559 * The chip_id register of the MAX6680 and MAX6681 holds the
1560 * revision of the chip. The lowest bit of the config1 register
1561 * is unused and should return zero when read, so should the
1562 * second to last bit of config1 (software reset).
1563 */
1564 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001565 && (config1 & 0x03) == 0x00
1566 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001567 name = "max6680";
1568 } else
1569 /*
1570 * The chip_id register of the MAX6646/6647/6649 holds the
1571 * revision of the chip. The lowest 6 bits of the config1
1572 * register are unused and should return zero when read.
1573 */
1574 if (chip_id == 0x59
Jean Delvareb2589ab2011-11-04 12:00:47 +01001575 && (config1 & 0x3f) == 0x00
1576 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001577 name = "max6646";
Josh Lehan229d4952020-05-13 11:42:48 -07001578 } else
1579 /*
1580 * The chip_id of the MAX6654 holds the revision of the chip.
1581 * The lowest 3 bits of the config1 register are unused and
1582 * should return zero when read.
1583 */
1584 if (chip_id == 0x08
1585 && (config1 & 0x07) == 0x00
1586 && convrate <= 0x07) {
1587 name = "max6654";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001589 } else
1590 if (address == 0x4C
1591 && man_id == 0x5C) { /* Winbond/Nuvoton */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001592 if ((config1 & 0x2A) == 0x00
1593 && (config2 & 0xF8) == 0x00) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001594 if (chip_id == 0x01 /* W83L771W/G */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001595 && convrate <= 0x09) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001596 name = "w83l771";
1597 } else
1598 if ((chip_id & 0xFE) == 0x10 /* W83L771AWG/ASG */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001599 && convrate <= 0x08) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001600 name = "w83l771";
1601 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001602 }
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001603 } else
Jean Delvare6d101c52011-07-24 20:36:15 +02001604 if (address >= 0x48 && address <= 0x4F
1605 && man_id == 0xA1) { /* NXP Semiconductor/Philips */
Jean Delvare6d101c52011-07-24 20:36:15 +02001606 if (chip_id == 0x00
Jean Delvareb2589ab2011-11-04 12:00:47 +01001607 && (config1 & 0x2A) == 0x00
1608 && (config2 & 0xFE) == 0x00
1609 && convrate <= 0x09) {
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001610 name = "sa56004";
1611 }
Guenter Roeckae544f62012-03-23 10:02:18 +01001612 } else
1613 if ((address == 0x4C || address == 0x4D)
1614 && man_id == 0x47) { /* GMT */
1615 if (chip_id == 0x01 /* G781 */
1616 && (config1 & 0x3F) == 0x00
1617 && convrate <= 0x08)
1618 name = "g781";
Wei Ni1daaceb2013-11-15 10:40:39 +01001619 } else
1620 if (address == 0x4C
1621 && man_id == 0x55) { /* Texas Instruments */
1622 int local_ext;
1623
1624 local_ext = i2c_smbus_read_byte_data(client,
1625 TMP451_REG_R_LOCAL_TEMPL);
1626
1627 if (chip_id == 0x00 /* TMP451 */
1628 && (config1 & 0x1B) == 0x00
1629 && convrate <= 0x09
1630 && (local_ext & 0x0F) == 0x00)
1631 name = "tmp451";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 }
1633
Jean Delvare8f2fa772009-12-09 20:35:53 +01001634 if (!name) { /* identification failed */
1635 dev_dbg(&adapter->dev,
1636 "Unsupported chip at 0x%02x (man_id=0x%02X, "
1637 "chip_id=0x%02X)\n", address, man_id, chip_id);
1638 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001639 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001640
Jean Delvare9b0e8522008-07-16 19:30:15 +02001641 strlcpy(info->type, name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642
Jean Delvare9b0e8522008-07-16 19:30:15 +02001643 return 0;
1644}
1645
Guenter Roeck1f17a442016-06-13 06:19:11 -07001646static void lm90_restore_conf(void *_data)
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001647{
Guenter Roeck1f17a442016-06-13 06:19:11 -07001648 struct lm90_data *data = _data;
1649 struct i2c_client *client = data->client;
1650
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001651 /* Restore initial configuration */
Guenter Roeck7a1d2202019-06-30 15:40:34 -07001652 lm90_write_convrate(data, data->convrate_orig);
Guenter Roeckf7001bb2012-03-23 10:02:18 +01001653 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
1654 data->config_orig);
1655}
1656
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001657static int lm90_init_client(struct i2c_client *client, struct lm90_data *data)
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001658{
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001659 int config, convrate;
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001660
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001661 convrate = lm90_read_reg(client, LM90_REG_R_CONVRATE);
1662 if (convrate < 0)
1663 return convrate;
Guenter Roeck0c01b642010-10-28 20:31:44 +02001664 data->convrate_orig = convrate;
1665
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001666 /*
1667 * Start the conversions.
1668 */
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001669 config = lm90_read_reg(client, LM90_REG_R_CONFIG1);
1670 if (config < 0)
1671 return config;
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001672 data->config_orig = config;
Guenter Roeckb849e5d2019-06-30 15:14:19 -07001673 data->config = config;
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001674
Boyang Yu62456182019-06-28 19:06:36 +00001675 lm90_set_convrate(client, data, 500); /* 500ms; 2Hz conversion rate */
1676
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001677 /* Check Temperature Range Select */
Wei Ni1daaceb2013-11-15 10:40:39 +01001678 if (data->kind == adt7461 || data->kind == tmp451) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001679 if (config & 0x04)
1680 data->flags |= LM90_FLAG_ADT7461_EXT;
1681 }
1682
1683 /*
1684 * Put MAX6680/MAX8881 into extended resolution (bit 0x10,
1685 * 0.125 degree resolution) and range (0x08, extend range
1686 * to -64 degree) mode for the remote temperature sensor.
1687 */
1688 if (data->kind == max6680)
1689 config |= 0x18;
1690
1691 /*
Josh Lehan229d4952020-05-13 11:42:48 -07001692 * Put MAX6654 into extended range (0x20, extend minimum range from
1693 * 0 degrees to -64 degrees). Note that extended resolution is not
1694 * possible on the MAX6654 unless conversion rate is set to 1 Hz or
1695 * slower, which is intentionally not done by default.
1696 */
1697 if (data->kind == max6654)
1698 config |= 0x20;
1699
1700 /*
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001701 * Select external channel 0 for max6695/96
1702 */
1703 if (data->kind == max6696)
1704 config &= ~0x08;
1705
1706 config &= 0xBF; /* run */
Guenter Roeck7a1d2202019-06-30 15:40:34 -07001707 lm90_update_confreg(data, config);
Guenter Roeck1f17a442016-06-13 06:19:11 -07001708
Guenter Roeckc5fcf012016-07-25 14:53:23 -07001709 return devm_add_action_or_reset(&client->dev, lm90_restore_conf, data);
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001710}
1711
Wei Ni072de492013-11-15 10:40:38 +01001712static bool lm90_is_tripped(struct i2c_client *client, u16 *status)
1713{
1714 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001715 int st, st2 = 0;
Wei Ni072de492013-11-15 10:40:38 +01001716
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001717 st = lm90_read_reg(client, LM90_REG_R_STATUS);
1718 if (st < 0)
1719 return false;
Wei Ni072de492013-11-15 10:40:38 +01001720
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001721 if (data->kind == max6696) {
1722 st2 = lm90_read_reg(client, MAX6696_REG_R_STATUS2);
1723 if (st2 < 0)
1724 return false;
1725 }
Wei Ni072de492013-11-15 10:40:38 +01001726
1727 *status = st | (st2 << 8);
1728
1729 if ((st & 0x7f) == 0 && (st2 & 0xfe) == 0)
1730 return false;
1731
1732 if ((st & (LM90_STATUS_LLOW | LM90_STATUS_LHIGH | LM90_STATUS_LTHRM)) ||
1733 (st2 & MAX6696_STATUS2_LOT2))
1734 dev_warn(&client->dev,
1735 "temp%d out of range, please check!\n", 1);
1736 if ((st & (LM90_STATUS_RLOW | LM90_STATUS_RHIGH | LM90_STATUS_RTHRM)) ||
1737 (st2 & MAX6696_STATUS2_ROT2))
1738 dev_warn(&client->dev,
1739 "temp%d out of range, please check!\n", 2);
1740 if (st & LM90_STATUS_ROPEN)
1741 dev_warn(&client->dev,
1742 "temp%d diode open, please check!\n", 2);
1743 if (st2 & (MAX6696_STATUS2_R2LOW | MAX6696_STATUS2_R2HIGH |
1744 MAX6696_STATUS2_R2THRM | MAX6696_STATUS2_R2OT2))
1745 dev_warn(&client->dev,
1746 "temp%d out of range, please check!\n", 3);
1747 if (st2 & MAX6696_STATUS2_R2OPEN)
1748 dev_warn(&client->dev,
1749 "temp%d diode open, please check!\n", 3);
1750
1751 return true;
1752}
1753
Wei Ni109b1282013-11-15 10:40:39 +01001754static irqreturn_t lm90_irq_thread(int irq, void *dev_id)
1755{
1756 struct i2c_client *client = dev_id;
1757 u16 status;
1758
1759 if (lm90_is_tripped(client, &status))
1760 return IRQ_HANDLED;
1761 else
1762 return IRQ_NONE;
1763}
1764
Guenter Roeck1f17a442016-06-13 06:19:11 -07001765static void lm90_remove_pec(void *dev)
1766{
1767 device_remove_file(dev, &dev_attr_pec);
1768}
1769
1770static void lm90_regulator_disable(void *regulator)
1771{
1772 regulator_disable(regulator);
1773}
1774
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001775
1776static const struct hwmon_ops lm90_ops = {
1777 .is_visible = lm90_is_visible,
1778 .read = lm90_read,
1779 .write = lm90_write,
1780};
1781
Jean Delvareb2589ab2011-11-04 12:00:47 +01001782static int lm90_probe(struct i2c_client *client,
Jean Delvare9b0e8522008-07-16 19:30:15 +02001783 const struct i2c_device_id *id)
1784{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001785 struct device *dev = &client->dev;
Wolfram Sange67776c2019-06-10 11:51:54 +02001786 struct i2c_adapter *adapter = client->adapter;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001787 struct hwmon_channel_info *info;
Wei Ni3e0f9642013-11-15 10:40:39 +01001788 struct regulator *regulator;
Guenter Roeck6e5f62b2016-06-13 06:28:03 -07001789 struct device *hwmon_dev;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001790 struct lm90_data *data;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001791 int err;
1792
Wei Ni3e0f9642013-11-15 10:40:39 +01001793 regulator = devm_regulator_get(dev, "vcc");
1794 if (IS_ERR(regulator))
1795 return PTR_ERR(regulator);
1796
1797 err = regulator_enable(regulator);
1798 if (err < 0) {
Guenter Roeckd89fa682014-04-04 18:01:35 +02001799 dev_err(dev, "Failed to enable regulator: %d\n", err);
Wei Ni3e0f9642013-11-15 10:40:39 +01001800 return err;
1801 }
1802
Guenter Roeckc5fcf012016-07-25 14:53:23 -07001803 err = devm_add_action_or_reset(dev, lm90_regulator_disable, regulator);
1804 if (err)
1805 return err;
Guenter Roeck1f17a442016-06-13 06:19:11 -07001806
Guenter Roeckd89fa682014-04-04 18:01:35 +02001807 data = devm_kzalloc(dev, sizeof(struct lm90_data), GFP_KERNEL);
Guenter Roeck20f426f2012-06-02 09:58:10 -07001808 if (!data)
1809 return -ENOMEM;
1810
Guenter Roeck1de8b252014-04-04 18:01:35 +02001811 data->client = client;
Jean Delvareb2589ab2011-11-04 12:00:47 +01001812 i2c_set_clientdata(client, data);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001813 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814
Jean Delvare9b0e8522008-07-16 19:30:15 +02001815 /* Set the device type */
Javier Martinez Canillasdf8d57b2017-02-24 10:13:04 -03001816 if (client->dev.of_node)
1817 data->kind = (enum chips)of_device_get_match_data(&client->dev);
1818 else
1819 data->kind = id->driver_data;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001820 if (data->kind == adm1032) {
1821 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
Jean Delvareb2589ab2011-11-04 12:00:47 +01001822 client->flags &= ~I2C_CLIENT_PEC;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001823 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001824
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001825 /*
1826 * Different devices have different alarm bits triggering the
1827 * ALERT# output
1828 */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001829 data->alert_alarms = lm90_params[data->kind].alert_alarms;
Jean Delvare53de3342010-03-05 22:17:15 +01001830
Guenter Roeck88073bb2010-10-28 20:31:43 +02001831 /* Set chip capabilities */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001832 data->flags = lm90_params[data->kind].flags;
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001833
1834 data->chip.ops = &lm90_ops;
1835 data->chip.info = data->info;
1836
Guenter Roecka4d41e62019-03-31 10:53:48 -07001837 data->info[0] = HWMON_CHANNEL_INFO(chip,
1838 HWMON_C_REGISTER_TZ | HWMON_C_UPDATE_INTERVAL | HWMON_C_ALARMS);
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001839 data->info[1] = &data->temp_info;
1840
1841 info = &data->temp_info;
1842 info->type = hwmon_temp;
1843 info->config = data->channel_config;
1844
1845 data->channel_config[0] = HWMON_T_INPUT | HWMON_T_MIN | HWMON_T_MAX |
1846 HWMON_T_CRIT | HWMON_T_CRIT_HYST | HWMON_T_MIN_ALARM |
1847 HWMON_T_MAX_ALARM | HWMON_T_CRIT_ALARM;
1848 data->channel_config[1] = HWMON_T_INPUT | HWMON_T_MIN | HWMON_T_MAX |
1849 HWMON_T_CRIT | HWMON_T_CRIT_HYST | HWMON_T_MIN_ALARM |
1850 HWMON_T_MAX_ALARM | HWMON_T_CRIT_ALARM | HWMON_T_FAULT;
1851
1852 if (data->flags & LM90_HAVE_OFFSET)
1853 data->channel_config[1] |= HWMON_T_OFFSET;
1854
1855 if (data->flags & LM90_HAVE_EMERGENCY) {
1856 data->channel_config[0] |= HWMON_T_EMERGENCY |
1857 HWMON_T_EMERGENCY_HYST;
1858 data->channel_config[1] |= HWMON_T_EMERGENCY |
1859 HWMON_T_EMERGENCY_HYST;
1860 }
1861
1862 if (data->flags & LM90_HAVE_EMERGENCY_ALARM) {
1863 data->channel_config[0] |= HWMON_T_EMERGENCY_ALARM;
1864 data->channel_config[1] |= HWMON_T_EMERGENCY_ALARM;
1865 }
1866
1867 if (data->flags & LM90_HAVE_TEMP3) {
1868 data->channel_config[2] = HWMON_T_INPUT |
1869 HWMON_T_MIN | HWMON_T_MAX |
1870 HWMON_T_CRIT | HWMON_T_CRIT_HYST |
1871 HWMON_T_EMERGENCY | HWMON_T_EMERGENCY_HYST |
1872 HWMON_T_MIN_ALARM | HWMON_T_MAX_ALARM |
1873 HWMON_T_CRIT_ALARM | HWMON_T_EMERGENCY_ALARM |
1874 HWMON_T_FAULT;
1875 }
1876
Jean Delvarea095f682011-07-27 23:22:25 -07001877 data->reg_local_ext = lm90_params[data->kind].reg_local_ext;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001878
Guenter Roeck0c01b642010-10-28 20:31:44 +02001879 /* Set maximum conversion rate */
1880 data->max_convrate = lm90_params[data->kind].max_convrate;
1881
Linus Torvalds1da177e2005-04-16 15:20:36 -07001882 /* Initialize the LM90 chip */
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001883 err = lm90_init_client(client, data);
1884 if (err < 0) {
1885 dev_err(dev, "Failed to initialize device\n");
1886 return err;
1887 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001888
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001889 /*
1890 * The 'pec' attribute is attached to the i2c device and thus created
1891 * separately.
1892 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001893 if (client->flags & I2C_CLIENT_PEC) {
1894 err = device_create_file(dev, &dev_attr_pec);
Guenter Roeck11e57812010-10-28 20:31:42 +02001895 if (err)
Guenter Roeck1f17a442016-06-13 06:19:11 -07001896 return err;
Guenter Roeckc5fcf012016-07-25 14:53:23 -07001897 err = devm_add_action_or_reset(dev, lm90_remove_pec, dev);
1898 if (err)
1899 return err;
Jean Delvare0e39e012006-09-24 21:16:40 +02001900 }
Guenter Roeck084489e2014-04-04 18:01:35 +02001901
Guenter Roeckeb1c8f42016-06-18 19:56:08 -07001902 hwmon_dev = devm_hwmon_device_register_with_info(dev, client->name,
1903 data, &data->chip,
1904 NULL);
Guenter Roeck6e5f62b2016-06-13 06:28:03 -07001905 if (IS_ERR(hwmon_dev))
1906 return PTR_ERR(hwmon_dev);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001907
Wei Ni109b1282013-11-15 10:40:39 +01001908 if (client->irq) {
1909 dev_dbg(dev, "IRQ: %d\n", client->irq);
1910 err = devm_request_threaded_irq(dev, client->irq,
1911 NULL, lm90_irq_thread,
1912 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
1913 "lm90", client);
1914 if (err < 0) {
1915 dev_err(dev, "cannot request IRQ %d\n", client->irq);
Guenter Roeck6e5f62b2016-06-13 06:28:03 -07001916 return err;
Wei Ni109b1282013-11-15 10:40:39 +01001917 }
1918 }
1919
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001921}
1922
Benjamin Tissoiresb4f21052016-06-09 16:53:47 +02001923static void lm90_alert(struct i2c_client *client, enum i2c_alert_protocol type,
1924 unsigned int flag)
Jean Delvare53de3342010-03-05 22:17:15 +01001925{
Wei Ni072de492013-11-15 10:40:38 +01001926 u16 alarms;
Jean Delvare53de3342010-03-05 22:17:15 +01001927
Benjamin Tissoiresb4f21052016-06-09 16:53:47 +02001928 if (type != I2C_PROTOCOL_SMBUS_ALERT)
1929 return;
1930
Wei Ni072de492013-11-15 10:40:38 +01001931 if (lm90_is_tripped(client, &alarms)) {
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001932 /*
1933 * Disable ALERT# output, because these chips don't implement
1934 * SMBus alert correctly; they should only hold the alert line
1935 * low briefly.
1936 */
Wei Ni072de492013-11-15 10:40:38 +01001937 struct lm90_data *data = i2c_get_clientdata(client);
1938
Guenter Roeck37ad04d2016-06-13 06:57:37 -07001939 if ((data->flags & LM90_HAVE_BROKEN_ALERT) &&
1940 (alarms & data->alert_alarms)) {
Jean Delvare53de3342010-03-05 22:17:15 +01001941 dev_dbg(&client->dev, "Disabling ALERT#\n");
Guenter Roeck7a1d2202019-06-30 15:40:34 -07001942 lm90_update_confreg(data, data->config | 0x80);
Jean Delvare53de3342010-03-05 22:17:15 +01001943 }
Wei Ni072de492013-11-15 10:40:38 +01001944 } else {
1945 dev_info(&client->dev, "Everything OK\n");
Jean Delvare53de3342010-03-05 22:17:15 +01001946 }
1947}
1948
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001949static struct i2c_driver lm90_driver = {
1950 .class = I2C_CLASS_HWMON,
1951 .driver = {
1952 .name = "lm90",
Javier Martinez Canillasdf8d57b2017-02-24 10:13:04 -03001953 .of_match_table = of_match_ptr(lm90_of_match),
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001954 },
1955 .probe = lm90_probe,
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001956 .alert = lm90_alert,
1957 .id_table = lm90_id,
1958 .detect = lm90_detect,
1959 .address_list = normal_i2c,
1960};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961
Axel Linf0967ee2012-01-20 15:38:18 +08001962module_i2c_driver(lm90_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963
Jean Delvare7c81c60f2014-01-29 20:40:08 +01001964MODULE_AUTHOR("Jean Delvare <jdelvare@suse.de>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001965MODULE_DESCRIPTION("LM90/ADM1032 driver");
1966MODULE_LICENSE("GPL");