GNU Linux-libre 4.14.295-gnu1
[releases.git] / drivers / hwmon / lm90.c
1 /*
2  * lm90.c - Part of lm_sensors, Linux kernel modules for hardware
3  *          monitoring
4  * Copyright (C) 2003-2010  Jean Delvare <jdelvare@suse.de>
5  *
6  * Based on the lm83 driver. The LM90 is a sensor chip made by National
7  * Semiconductor. It reports up to two temperatures (its own plus up to
8  * one external one) with a 0.125 deg resolution (1 deg for local
9  * temperature) and a 3-4 deg accuracy.
10  *
11  * This driver also supports the LM89 and LM99, two other sensor chips
12  * made by National Semiconductor. Both have an increased remote
13  * temperature measurement accuracy (1 degree), and the LM99
14  * additionally shifts remote temperatures (measured and limits) by 16
15  * degrees, which allows for higher temperatures measurement.
16  * Note that there is no way to differentiate between both chips.
17  * When device is auto-detected, the driver will assume an LM99.
18  *
19  * This driver also supports the LM86, another sensor chip made by
20  * National Semiconductor. It is exactly similar to the LM90 except it
21  * has a higher accuracy.
22  *
23  * This driver also supports the ADM1032, a sensor chip made by Analog
24  * Devices. That chip is similar to the LM90, with a few differences
25  * that are not handled by this driver. Among others, it has a higher
26  * accuracy than the LM90, much like the LM86 does.
27  *
28  * This driver also supports the MAX6657, MAX6658 and MAX6659 sensor
29  * chips made by Maxim. These chips are similar to the LM86.
30  * Note that there is no easy way to differentiate between the three
31  * variants. We use the device address to detect MAX6659, which will result
32  * in a detection as max6657 if it is on address 0x4c. The extra address
33  * and features of the MAX6659 are only supported if the chip is configured
34  * explicitly as max6659, or if its address is not 0x4c.
35  * These chips lack the remote temperature offset feature.
36  *
37  * This driver also supports the MAX6646, MAX6647, MAX6648, MAX6649 and
38  * MAX6692 chips made by Maxim.  These are again similar to the LM86,
39  * but they use unsigned temperature values and can report temperatures
40  * from 0 to 145 degrees.
41  *
42  * This driver also supports the MAX6680 and MAX6681, two other sensor
43  * chips made by Maxim. These are quite similar to the other Maxim
44  * chips. The MAX6680 and MAX6681 only differ in the pinout so they can
45  * be treated identically.
46  *
47  * This driver also supports the MAX6695 and MAX6696, two other sensor
48  * chips made by Maxim. These are also quite similar to other Maxim
49  * chips, but support three temperature sensors instead of two. MAX6695
50  * and MAX6696 only differ in the pinout so they can be treated identically.
51  *
52  * This driver also supports ADT7461 and ADT7461A from Analog Devices as well as
53  * NCT1008 from ON Semiconductor. The chips are supported in both compatibility
54  * and extended mode. They are mostly compatible with LM90 except for a data
55  * format difference for the temperature value registers.
56  *
57  * This driver also supports the SA56004 from Philips. This device is
58  * pin-compatible with the LM86, the ED/EDP parts are also address-compatible.
59  *
60  * This driver also supports the G781 from GMT. This device is compatible
61  * with the ADM1032.
62  *
63  * This driver also supports TMP451 from Texas Instruments. This device is
64  * supported in both compatibility and extended mode. It's mostly compatible
65  * with ADT7461 except for local temperature low byte register and max
66  * conversion rate.
67  *
68  * Since the LM90 was the first chipset supported by this driver, most
69  * comments will refer to this chipset, but are actually general and
70  * concern all supported chipsets, unless mentioned otherwise.
71  *
72  * This program is free software; you can redistribute it and/or modify
73  * it under the terms of the GNU General Public License as published by
74  * the Free Software Foundation; either version 2 of the License, or
75  * (at your option) any later version.
76  *
77  * This program is distributed in the hope that it will be useful,
78  * but WITHOUT ANY WARRANTY; without even the implied warranty of
79  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
80  * GNU General Public License for more details.
81  *
82  * You should have received a copy of the GNU General Public License
83  * along with this program; if not, write to the Free Software
84  * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
85  */
86
87 #include <linux/module.h>
88 #include <linux/init.h>
89 #include <linux/slab.h>
90 #include <linux/jiffies.h>
91 #include <linux/i2c.h>
92 #include <linux/hwmon.h>
93 #include <linux/err.h>
94 #include <linux/mutex.h>
95 #include <linux/of_device.h>
96 #include <linux/sysfs.h>
97 #include <linux/interrupt.h>
98 #include <linux/regulator/consumer.h>
99
100 /*
101  * Addresses to scan
102  * Address is fully defined internally and cannot be changed except for
103  * MAX6659, MAX6680 and MAX6681.
104  * LM86, LM89, LM90, LM99, ADM1032, ADM1032-1, ADT7461, ADT7461A, MAX6649,
105  * MAX6657, MAX6658, NCT1008 and W83L771 have address 0x4c.
106  * ADM1032-2, ADT7461-2, ADT7461A-2, LM89-1, LM99-1, MAX6646, and NCT1008D
107  * have address 0x4d.
108  * MAX6647 has address 0x4e.
109  * MAX6659 can have address 0x4c, 0x4d or 0x4e.
110  * MAX6680 and MAX6681 can have address 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b,
111  * 0x4c, 0x4d or 0x4e.
112  * SA56004 can have address 0x48 through 0x4F.
113  */
114
115 static const unsigned short normal_i2c[] = {
116         0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x48, 0x49, 0x4a, 0x4b, 0x4c,
117         0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
118
119 enum chips { lm90, adm1032, lm99, lm86, max6657, max6659, adt7461, max6680,
120         max6646, w83l771, max6696, sa56004, g781, tmp451 };
121
122 /*
123  * The LM90 registers
124  */
125
126 #define LM90_REG_R_MAN_ID               0xFE
127 #define LM90_REG_R_CHIP_ID              0xFF
128 #define LM90_REG_R_CONFIG1              0x03
129 #define LM90_REG_W_CONFIG1              0x09
130 #define LM90_REG_R_CONFIG2              0xBF
131 #define LM90_REG_W_CONFIG2              0xBF
132 #define LM90_REG_R_CONVRATE             0x04
133 #define LM90_REG_W_CONVRATE             0x0A
134 #define LM90_REG_R_STATUS               0x02
135 #define LM90_REG_R_LOCAL_TEMP           0x00
136 #define LM90_REG_R_LOCAL_HIGH           0x05
137 #define LM90_REG_W_LOCAL_HIGH           0x0B
138 #define LM90_REG_R_LOCAL_LOW            0x06
139 #define LM90_REG_W_LOCAL_LOW            0x0C
140 #define LM90_REG_R_LOCAL_CRIT           0x20
141 #define LM90_REG_W_LOCAL_CRIT           0x20
142 #define LM90_REG_R_REMOTE_TEMPH         0x01
143 #define LM90_REG_R_REMOTE_TEMPL         0x10
144 #define LM90_REG_R_REMOTE_OFFSH         0x11
145 #define LM90_REG_W_REMOTE_OFFSH         0x11
146 #define LM90_REG_R_REMOTE_OFFSL         0x12
147 #define LM90_REG_W_REMOTE_OFFSL         0x12
148 #define LM90_REG_R_REMOTE_HIGHH         0x07
149 #define LM90_REG_W_REMOTE_HIGHH         0x0D
150 #define LM90_REG_R_REMOTE_HIGHL         0x13
151 #define LM90_REG_W_REMOTE_HIGHL         0x13
152 #define LM90_REG_R_REMOTE_LOWH          0x08
153 #define LM90_REG_W_REMOTE_LOWH          0x0E
154 #define LM90_REG_R_REMOTE_LOWL          0x14
155 #define LM90_REG_W_REMOTE_LOWL          0x14
156 #define LM90_REG_R_REMOTE_CRIT          0x19
157 #define LM90_REG_W_REMOTE_CRIT          0x19
158 #define LM90_REG_R_TCRIT_HYST           0x21
159 #define LM90_REG_W_TCRIT_HYST           0x21
160
161 /* MAX6646/6647/6649/6657/6658/6659/6695/6696 registers */
162
163 #define MAX6657_REG_R_LOCAL_TEMPL       0x11
164 #define MAX6696_REG_R_STATUS2           0x12
165 #define MAX6659_REG_R_REMOTE_EMERG      0x16
166 #define MAX6659_REG_W_REMOTE_EMERG      0x16
167 #define MAX6659_REG_R_LOCAL_EMERG       0x17
168 #define MAX6659_REG_W_LOCAL_EMERG       0x17
169
170 /*  SA56004 registers */
171
172 #define SA56004_REG_R_LOCAL_TEMPL 0x22
173
174 #define LM90_MAX_CONVRATE_MS    16000   /* Maximum conversion rate in ms */
175
176 /* TMP451 registers */
177 #define TMP451_REG_R_LOCAL_TEMPL        0x15
178
179 /*
180  * Device flags
181  */
182 #define LM90_FLAG_ADT7461_EXT   (1 << 0) /* ADT7461 extended mode       */
183 /* Device features */
184 #define LM90_HAVE_OFFSET        (1 << 1) /* temperature offset register */
185 #define LM90_HAVE_REM_LIMIT_EXT (1 << 3) /* extended remote limit       */
186 #define LM90_HAVE_EMERGENCY     (1 << 4) /* 3rd upper (emergency) limit */
187 #define LM90_HAVE_EMERGENCY_ALARM (1 << 5)/* emergency alarm            */
188 #define LM90_HAVE_TEMP3         (1 << 6) /* 3rd temperature sensor      */
189 #define LM90_HAVE_BROKEN_ALERT  (1 << 7) /* Broken alert                */
190 #define LM90_PAUSE_FOR_CONFIG   (1 << 8) /* Pause conversion for config */
191
192 /* LM90 status */
193 #define LM90_STATUS_LTHRM       (1 << 0) /* local THERM limit tripped */
194 #define LM90_STATUS_RTHRM       (1 << 1) /* remote THERM limit tripped */
195 #define LM90_STATUS_ROPEN       (1 << 2) /* remote is an open circuit */
196 #define LM90_STATUS_RLOW        (1 << 3) /* remote low temp limit tripped */
197 #define LM90_STATUS_RHIGH       (1 << 4) /* remote high temp limit tripped */
198 #define LM90_STATUS_LLOW        (1 << 5) /* local low temp limit tripped */
199 #define LM90_STATUS_LHIGH       (1 << 6) /* local high temp limit tripped */
200 #define LM90_STATUS_BUSY        (1 << 7) /* conversion is ongoing */
201
202 #define MAX6696_STATUS2_R2THRM  (1 << 1) /* remote2 THERM limit tripped */
203 #define MAX6696_STATUS2_R2OPEN  (1 << 2) /* remote2 is an open circuit */
204 #define MAX6696_STATUS2_R2LOW   (1 << 3) /* remote2 low temp limit tripped */
205 #define MAX6696_STATUS2_R2HIGH  (1 << 4) /* remote2 high temp limit tripped */
206 #define MAX6696_STATUS2_ROT2    (1 << 5) /* remote emergency limit tripped */
207 #define MAX6696_STATUS2_R2OT2   (1 << 6) /* remote2 emergency limit tripped */
208 #define MAX6696_STATUS2_LOT2    (1 << 7) /* local emergency limit tripped */
209
210 /*
211  * Driver data (common to all clients)
212  */
213
214 static const struct i2c_device_id lm90_id[] = {
215         { "adm1032", adm1032 },
216         { "adt7461", adt7461 },
217         { "adt7461a", adt7461 },
218         { "g781", g781 },
219         { "lm90", lm90 },
220         { "lm86", lm86 },
221         { "lm89", lm86 },
222         { "lm99", lm99 },
223         { "max6646", max6646 },
224         { "max6647", max6646 },
225         { "max6649", max6646 },
226         { "max6657", max6657 },
227         { "max6658", max6657 },
228         { "max6659", max6659 },
229         { "max6680", max6680 },
230         { "max6681", max6680 },
231         { "max6695", max6696 },
232         { "max6696", max6696 },
233         { "nct1008", adt7461 },
234         { "w83l771", w83l771 },
235         { "sa56004", sa56004 },
236         { "tmp451", tmp451 },
237         { }
238 };
239 MODULE_DEVICE_TABLE(i2c, lm90_id);
240
241 static const struct of_device_id lm90_of_match[] = {
242         {
243                 .compatible = "adi,adm1032",
244                 .data = (void *)adm1032
245         },
246         {
247                 .compatible = "adi,adt7461",
248                 .data = (void *)adt7461
249         },
250         {
251                 .compatible = "adi,adt7461a",
252                 .data = (void *)adt7461
253         },
254         {
255                 .compatible = "gmt,g781",
256                 .data = (void *)g781
257         },
258         {
259                 .compatible = "national,lm90",
260                 .data = (void *)lm90
261         },
262         {
263                 .compatible = "national,lm86",
264                 .data = (void *)lm86
265         },
266         {
267                 .compatible = "national,lm89",
268                 .data = (void *)lm86
269         },
270         {
271                 .compatible = "national,lm99",
272                 .data = (void *)lm99
273         },
274         {
275                 .compatible = "dallas,max6646",
276                 .data = (void *)max6646
277         },
278         {
279                 .compatible = "dallas,max6647",
280                 .data = (void *)max6646
281         },
282         {
283                 .compatible = "dallas,max6649",
284                 .data = (void *)max6646
285         },
286         {
287                 .compatible = "dallas,max6657",
288                 .data = (void *)max6657
289         },
290         {
291                 .compatible = "dallas,max6658",
292                 .data = (void *)max6657
293         },
294         {
295                 .compatible = "dallas,max6659",
296                 .data = (void *)max6659
297         },
298         {
299                 .compatible = "dallas,max6680",
300                 .data = (void *)max6680
301         },
302         {
303                 .compatible = "dallas,max6681",
304                 .data = (void *)max6680
305         },
306         {
307                 .compatible = "dallas,max6695",
308                 .data = (void *)max6696
309         },
310         {
311                 .compatible = "dallas,max6696",
312                 .data = (void *)max6696
313         },
314         {
315                 .compatible = "onnn,nct1008",
316                 .data = (void *)adt7461
317         },
318         {
319                 .compatible = "winbond,w83l771",
320                 .data = (void *)w83l771
321         },
322         {
323                 .compatible = "nxp,sa56004",
324                 .data = (void *)sa56004
325         },
326         {
327                 .compatible = "ti,tmp451",
328                 .data = (void *)tmp451
329         },
330         { },
331 };
332 MODULE_DEVICE_TABLE(of, lm90_of_match);
333
334 /*
335  * chip type specific parameters
336  */
337 struct lm90_params {
338         u32 flags;              /* Capabilities */
339         u16 alert_alarms;       /* Which alarm bits trigger ALERT# */
340                                 /* Upper 8 bits for max6695/96 */
341         u8 max_convrate;        /* Maximum conversion rate register value */
342         u8 reg_local_ext;       /* Extended local temp register (optional) */
343 };
344
345 static const struct lm90_params lm90_params[] = {
346         [adm1032] = {
347                 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
348                   | LM90_HAVE_BROKEN_ALERT,
349                 .alert_alarms = 0x7c,
350                 .max_convrate = 10,
351         },
352         [adt7461] = {
353                 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
354                   | LM90_HAVE_BROKEN_ALERT,
355                 .alert_alarms = 0x7c,
356                 .max_convrate = 10,
357         },
358         [g781] = {
359                 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
360                   | LM90_HAVE_BROKEN_ALERT,
361                 .alert_alarms = 0x7c,
362                 .max_convrate = 7,
363         },
364         [lm86] = {
365                 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
366                 .alert_alarms = 0x7b,
367                 .max_convrate = 9,
368         },
369         [lm90] = {
370                 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
371                 .alert_alarms = 0x7b,
372                 .max_convrate = 9,
373         },
374         [lm99] = {
375                 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
376                 .alert_alarms = 0x7b,
377                 .max_convrate = 9,
378         },
379         [max6646] = {
380                 .alert_alarms = 0x7c,
381                 .max_convrate = 6,
382                 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
383         },
384         [max6657] = {
385                 .flags = LM90_PAUSE_FOR_CONFIG,
386                 .alert_alarms = 0x7c,
387                 .max_convrate = 8,
388                 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
389         },
390         [max6659] = {
391                 .flags = LM90_HAVE_EMERGENCY,
392                 .alert_alarms = 0x7c,
393                 .max_convrate = 8,
394                 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
395         },
396         [max6680] = {
397                 .flags = LM90_HAVE_OFFSET,
398                 .alert_alarms = 0x7c,
399                 .max_convrate = 7,
400         },
401         [max6696] = {
402                 .flags = LM90_HAVE_EMERGENCY
403                   | LM90_HAVE_EMERGENCY_ALARM | LM90_HAVE_TEMP3,
404                 .alert_alarms = 0x1c7c,
405                 .max_convrate = 6,
406                 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
407         },
408         [w83l771] = {
409                 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
410                 .alert_alarms = 0x7c,
411                 .max_convrate = 8,
412         },
413         [sa56004] = {
414                 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
415                 .alert_alarms = 0x7b,
416                 .max_convrate = 9,
417                 .reg_local_ext = SA56004_REG_R_LOCAL_TEMPL,
418         },
419         [tmp451] = {
420                 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
421                   | LM90_HAVE_BROKEN_ALERT,
422                 .alert_alarms = 0x7c,
423                 .max_convrate = 9,
424                 .reg_local_ext = TMP451_REG_R_LOCAL_TEMPL,
425         },
426 };
427
428 /*
429  * TEMP8 register index
430  */
431 enum lm90_temp8_reg_index {
432         LOCAL_LOW = 0,
433         LOCAL_HIGH,
434         LOCAL_CRIT,
435         REMOTE_CRIT,
436         LOCAL_EMERG,    /* max6659 and max6695/96 */
437         REMOTE_EMERG,   /* max6659 and max6695/96 */
438         REMOTE2_CRIT,   /* max6695/96 only */
439         REMOTE2_EMERG,  /* max6695/96 only */
440         TEMP8_REG_NUM
441 };
442
443 /*
444  * TEMP11 register index
445  */
446 enum lm90_temp11_reg_index {
447         REMOTE_TEMP = 0,
448         REMOTE_LOW,
449         REMOTE_HIGH,
450         REMOTE_OFFSET,  /* except max6646, max6657/58/59, and max6695/96 */
451         LOCAL_TEMP,
452         REMOTE2_TEMP,   /* max6695/96 only */
453         REMOTE2_LOW,    /* max6695/96 only */
454         REMOTE2_HIGH,   /* max6695/96 only */
455         TEMP11_REG_NUM
456 };
457
458 /*
459  * Client data (each client gets its own)
460  */
461
462 struct lm90_data {
463         struct i2c_client *client;
464         u32 channel_config[4];
465         struct hwmon_channel_info temp_info;
466         const struct hwmon_channel_info *info[3];
467         struct hwmon_chip_info chip;
468         struct mutex update_lock;
469         bool valid;             /* true if register values are valid */
470         unsigned long last_updated; /* in jiffies */
471         int kind;
472         u32 flags;
473
474         unsigned int update_interval; /* in milliseconds */
475
476         u8 config_orig;         /* Original configuration register value */
477         u8 convrate_orig;       /* Original conversion rate register value */
478         u16 alert_alarms;       /* Which alarm bits trigger ALERT# */
479                                 /* Upper 8 bits for max6695/96 */
480         u8 max_convrate;        /* Maximum conversion rate */
481         u8 reg_local_ext;       /* local extension register offset */
482
483         /* registers values */
484         s8 temp8[TEMP8_REG_NUM];
485         s16 temp11[TEMP11_REG_NUM];
486         u8 temp_hyst;
487         u16 alarms; /* bitvector (upper 8 bits for max6695/96) */
488 };
489
490 /*
491  * Support functions
492  */
493
494 /*
495  * The ADM1032 supports PEC but not on write byte transactions, so we need
496  * to explicitly ask for a transaction without PEC.
497  */
498 static inline s32 adm1032_write_byte(struct i2c_client *client, u8 value)
499 {
500         return i2c_smbus_xfer(client->adapter, client->addr,
501                               client->flags & ~I2C_CLIENT_PEC,
502                               I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
503 }
504
505 /*
506  * It is assumed that client->update_lock is held (unless we are in
507  * detection or initialization steps). This matters when PEC is enabled,
508  * because we don't want the address pointer to change between the write
509  * byte and the read byte transactions.
510  */
511 static int lm90_read_reg(struct i2c_client *client, u8 reg)
512 {
513         int err;
514
515         if (client->flags & I2C_CLIENT_PEC) {
516                 err = adm1032_write_byte(client, reg);
517                 if (err >= 0)
518                         err = i2c_smbus_read_byte(client);
519         } else
520                 err = i2c_smbus_read_byte_data(client, reg);
521
522         return err;
523 }
524
525 static int lm90_read16(struct i2c_client *client, u8 regh, u8 regl)
526 {
527         int oldh, newh, l;
528
529         /*
530          * There is a trick here. We have to read two registers to have the
531          * sensor temperature, but we have to beware a conversion could occur
532          * between the readings. The datasheet says we should either use
533          * the one-shot conversion register, which we don't want to do
534          * (disables hardware monitoring) or monitor the busy bit, which is
535          * impossible (we can't read the values and monitor that bit at the
536          * exact same time). So the solution used here is to read the high
537          * byte once, then the low byte, then the high byte again. If the new
538          * high byte matches the old one, then we have a valid reading. Else
539          * we have to read the low byte again, and now we believe we have a
540          * correct reading.
541          */
542         oldh = lm90_read_reg(client, regh);
543         if (oldh < 0)
544                 return oldh;
545         l = lm90_read_reg(client, regl);
546         if (l < 0)
547                 return l;
548         newh = lm90_read_reg(client, regh);
549         if (newh < 0)
550                 return newh;
551         if (oldh != newh) {
552                 l = lm90_read_reg(client, regl);
553                 if (l < 0)
554                         return l;
555         }
556         return (newh << 8) | l;
557 }
558
559 /*
560  * client->update_lock must be held when calling this function (unless we are
561  * in detection or initialization steps), and while a remote channel other
562  * than channel 0 is selected. Also, calling code must make sure to re-select
563  * external channel 0 before releasing the lock. This is necessary because
564  * various registers have different meanings as a result of selecting a
565  * non-default remote channel.
566  */
567 static inline int lm90_select_remote_channel(struct i2c_client *client,
568                                              struct lm90_data *data,
569                                              int channel)
570 {
571         int config;
572
573         if (data->kind == max6696) {
574                 config = lm90_read_reg(client, LM90_REG_R_CONFIG1);
575                 if (config < 0)
576                         return config;
577                 config &= ~0x08;
578                 if (channel)
579                         config |= 0x08;
580                 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
581                                           config);
582         }
583         return 0;
584 }
585
586 static int lm90_write_convrate(struct i2c_client *client,
587                                struct lm90_data *data, int val)
588 {
589         int err;
590         int config_orig, config_stop;
591
592         /* Save config and pause conversion */
593         if (data->flags & LM90_PAUSE_FOR_CONFIG) {
594                 config_orig = lm90_read_reg(client, LM90_REG_R_CONFIG1);
595                 if (config_orig < 0)
596                         return config_orig;
597                 config_stop = config_orig | 0x40;
598                 if (config_orig != config_stop) {
599                         err = i2c_smbus_write_byte_data(client,
600                                                         LM90_REG_W_CONFIG1,
601                                                         config_stop);
602                         if (err < 0)
603                                 return err;
604                 }
605         }
606
607         /* Set conv rate */
608         err = i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE, val);
609
610         /* Revert change to config */
611         if (data->flags & LM90_PAUSE_FOR_CONFIG && config_orig != config_stop)
612                 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
613                                           config_orig);
614
615         return err;
616 }
617
618 /*
619  * Set conversion rate.
620  * client->update_lock must be held when calling this function (unless we are
621  * in detection or initialization steps).
622  */
623 static int lm90_set_convrate(struct i2c_client *client, struct lm90_data *data,
624                              unsigned int interval)
625 {
626         unsigned int update_interval;
627         int i, err;
628
629         /* Shift calculations to avoid rounding errors */
630         interval <<= 6;
631
632         /* find the nearest update rate */
633         for (i = 0, update_interval = LM90_MAX_CONVRATE_MS << 6;
634              i < data->max_convrate; i++, update_interval >>= 1)
635                 if (interval >= update_interval * 3 / 4)
636                         break;
637
638         err = lm90_write_convrate(client, data, i);
639         data->update_interval = DIV_ROUND_CLOSEST(update_interval, 64);
640         return err;
641 }
642
643 static int lm90_update_limits(struct device *dev)
644 {
645         struct lm90_data *data = dev_get_drvdata(dev);
646         struct i2c_client *client = data->client;
647         int val;
648
649         val = lm90_read_reg(client, LM90_REG_R_LOCAL_CRIT);
650         if (val < 0)
651                 return val;
652         data->temp8[LOCAL_CRIT] = val;
653
654         val = lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT);
655         if (val < 0)
656                 return val;
657         data->temp8[REMOTE_CRIT] = val;
658
659         val = lm90_read_reg(client, LM90_REG_R_TCRIT_HYST);
660         if (val < 0)
661                 return val;
662         data->temp_hyst = val;
663
664         val = lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH);
665         if (val < 0)
666                 return val;
667         data->temp11[REMOTE_LOW] = val << 8;
668
669         if (data->flags & LM90_HAVE_REM_LIMIT_EXT) {
670                 val = lm90_read_reg(client, LM90_REG_R_REMOTE_LOWL);
671                 if (val < 0)
672                         return val;
673                 data->temp11[REMOTE_LOW] |= val;
674         }
675
676         val = lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH);
677         if (val < 0)
678                 return val;
679         data->temp11[REMOTE_HIGH] = val << 8;
680
681         if (data->flags & LM90_HAVE_REM_LIMIT_EXT) {
682                 val = lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHL);
683                 if (val < 0)
684                         return val;
685                 data->temp11[REMOTE_HIGH] |= val;
686         }
687
688         if (data->flags & LM90_HAVE_OFFSET) {
689                 val = lm90_read16(client, LM90_REG_R_REMOTE_OFFSH,
690                                   LM90_REG_R_REMOTE_OFFSL);
691                 if (val < 0)
692                         return val;
693                 data->temp11[REMOTE_OFFSET] = val;
694         }
695
696         if (data->flags & LM90_HAVE_EMERGENCY) {
697                 val = lm90_read_reg(client, MAX6659_REG_R_LOCAL_EMERG);
698                 if (val < 0)
699                         return val;
700                 data->temp8[LOCAL_EMERG] = val;
701
702                 val = lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG);
703                 if (val < 0)
704                         return val;
705                 data->temp8[REMOTE_EMERG] = val;
706         }
707
708         if (data->kind == max6696) {
709                 val = lm90_select_remote_channel(client, data, 1);
710                 if (val < 0)
711                         return val;
712
713                 val = lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT);
714                 if (val < 0)
715                         return val;
716                 data->temp8[REMOTE2_CRIT] = val;
717
718                 val = lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG);
719                 if (val < 0)
720                         return val;
721                 data->temp8[REMOTE2_EMERG] = val;
722
723                 val = lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH);
724                 if (val < 0)
725                         return val;
726                 data->temp11[REMOTE2_LOW] = val << 8;
727
728                 val = lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH);
729                 if (val < 0)
730                         return val;
731                 data->temp11[REMOTE2_HIGH] = val << 8;
732
733                 lm90_select_remote_channel(client, data, 0);
734         }
735
736         return 0;
737 }
738
739 static int lm90_update_device(struct device *dev)
740 {
741         struct lm90_data *data = dev_get_drvdata(dev);
742         struct i2c_client *client = data->client;
743         unsigned long next_update;
744         int val;
745
746         if (!data->valid) {
747                 val = lm90_update_limits(dev);
748                 if (val < 0)
749                         return val;
750         }
751
752         next_update = data->last_updated +
753                       msecs_to_jiffies(data->update_interval);
754         if (time_after(jiffies, next_update) || !data->valid) {
755                 dev_dbg(&client->dev, "Updating lm90 data.\n");
756
757                 data->valid = false;
758
759                 val = lm90_read_reg(client, LM90_REG_R_LOCAL_LOW);
760                 if (val < 0)
761                         return val;
762                 data->temp8[LOCAL_LOW] = val;
763
764                 val = lm90_read_reg(client, LM90_REG_R_LOCAL_HIGH);
765                 if (val < 0)
766                         return val;
767                 data->temp8[LOCAL_HIGH] = val;
768
769                 if (data->reg_local_ext) {
770                         val = lm90_read16(client, LM90_REG_R_LOCAL_TEMP,
771                                           data->reg_local_ext);
772                         if (val < 0)
773                                 return val;
774                         data->temp11[LOCAL_TEMP] = val;
775                 } else {
776                         val = lm90_read_reg(client, LM90_REG_R_LOCAL_TEMP);
777                         if (val < 0)
778                                 return val;
779                         data->temp11[LOCAL_TEMP] = val << 8;
780                 }
781                 val = lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
782                                   LM90_REG_R_REMOTE_TEMPL);
783                 if (val < 0)
784                         return val;
785                 data->temp11[REMOTE_TEMP] = val;
786
787                 val = lm90_read_reg(client, LM90_REG_R_STATUS);
788                 if (val < 0)
789                         return val;
790                 data->alarms = val & ~LM90_STATUS_BUSY;
791
792                 if (data->kind == max6696) {
793                         val = lm90_select_remote_channel(client, data, 1);
794                         if (val < 0)
795                                 return val;
796
797                         val = lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
798                                           LM90_REG_R_REMOTE_TEMPL);
799                         if (val < 0) {
800                                 lm90_select_remote_channel(client, data, 0);
801                                 return val;
802                         }
803                         data->temp11[REMOTE2_TEMP] = val;
804
805                         lm90_select_remote_channel(client, data, 0);
806
807                         val = lm90_read_reg(client, MAX6696_REG_R_STATUS2);
808                         if (val < 0)
809                                 return val;
810                         data->alarms |= val << 8;
811                 }
812
813                 /*
814                  * Re-enable ALERT# output if it was originally enabled and
815                  * relevant alarms are all clear
816                  */
817                 if (!(data->config_orig & 0x80) &&
818                     !(data->alarms & data->alert_alarms)) {
819                         val = lm90_read_reg(client, LM90_REG_R_CONFIG1);
820                         if (val < 0)
821                                 return val;
822
823                         if (val & 0x80) {
824                                 dev_dbg(&client->dev, "Re-enabling ALERT#\n");
825                                 i2c_smbus_write_byte_data(client,
826                                                           LM90_REG_W_CONFIG1,
827                                                           val & ~0x80);
828                         }
829                 }
830
831                 data->last_updated = jiffies;
832                 data->valid = true;
833         }
834
835         return 0;
836 }
837
838 /*
839  * Conversions
840  * For local temperatures and limits, critical limits and the hysteresis
841  * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius.
842  * For remote temperatures and limits, it uses signed 11-bit values with
843  * LSB = 0.125 degree Celsius, left-justified in 16-bit registers.  Some
844  * Maxim chips use unsigned values.
845  */
846
847 static inline int temp_from_s8(s8 val)
848 {
849         return val * 1000;
850 }
851
852 static inline int temp_from_u8(u8 val)
853 {
854         return val * 1000;
855 }
856
857 static inline int temp_from_s16(s16 val)
858 {
859         return val / 32 * 125;
860 }
861
862 static inline int temp_from_u16(u16 val)
863 {
864         return val / 32 * 125;
865 }
866
867 static s8 temp_to_s8(long val)
868 {
869         if (val <= -128000)
870                 return -128;
871         if (val >= 127000)
872                 return 127;
873         if (val < 0)
874                 return (val - 500) / 1000;
875         return (val + 500) / 1000;
876 }
877
878 static u8 temp_to_u8(long val)
879 {
880         if (val <= 0)
881                 return 0;
882         if (val >= 255000)
883                 return 255;
884         return (val + 500) / 1000;
885 }
886
887 static s16 temp_to_s16(long val)
888 {
889         if (val <= -128000)
890                 return 0x8000;
891         if (val >= 127875)
892                 return 0x7FE0;
893         if (val < 0)
894                 return (val - 62) / 125 * 32;
895         return (val + 62) / 125 * 32;
896 }
897
898 static u8 hyst_to_reg(long val)
899 {
900         if (val <= 0)
901                 return 0;
902         if (val >= 30500)
903                 return 31;
904         return (val + 500) / 1000;
905 }
906
907 /*
908  * ADT7461 in compatibility mode is almost identical to LM90 except that
909  * attempts to write values that are outside the range 0 < temp < 127 are
910  * treated as the boundary value.
911  *
912  * ADT7461 in "extended mode" operation uses unsigned integers offset by
913  * 64 (e.g., 0 -> -64 degC).  The range is restricted to -64..191 degC.
914  */
915 static inline int temp_from_u8_adt7461(struct lm90_data *data, u8 val)
916 {
917         if (data->flags & LM90_FLAG_ADT7461_EXT)
918                 return (val - 64) * 1000;
919         return temp_from_s8(val);
920 }
921
922 static inline int temp_from_u16_adt7461(struct lm90_data *data, u16 val)
923 {
924         if (data->flags & LM90_FLAG_ADT7461_EXT)
925                 return (val - 0x4000) / 64 * 250;
926         return temp_from_s16(val);
927 }
928
929 static u8 temp_to_u8_adt7461(struct lm90_data *data, long val)
930 {
931         if (data->flags & LM90_FLAG_ADT7461_EXT) {
932                 if (val <= -64000)
933                         return 0;
934                 if (val >= 191000)
935                         return 0xFF;
936                 return (val + 500 + 64000) / 1000;
937         }
938         if (val <= 0)
939                 return 0;
940         if (val >= 127000)
941                 return 127;
942         return (val + 500) / 1000;
943 }
944
945 static u16 temp_to_u16_adt7461(struct lm90_data *data, long val)
946 {
947         if (data->flags & LM90_FLAG_ADT7461_EXT) {
948                 if (val <= -64000)
949                         return 0;
950                 if (val >= 191750)
951                         return 0xFFC0;
952                 return (val + 64000 + 125) / 250 * 64;
953         }
954         if (val <= 0)
955                 return 0;
956         if (val >= 127750)
957                 return 0x7FC0;
958         return (val + 125) / 250 * 64;
959 }
960
961 /* pec used for ADM1032 only */
962 static ssize_t pec_show(struct device *dev, struct device_attribute *dummy,
963                         char *buf)
964 {
965         struct i2c_client *client = to_i2c_client(dev);
966
967         return sprintf(buf, "%d\n", !!(client->flags & I2C_CLIENT_PEC));
968 }
969
970 static ssize_t pec_store(struct device *dev, struct device_attribute *dummy,
971                          const char *buf, size_t count)
972 {
973         struct i2c_client *client = to_i2c_client(dev);
974         long val;
975         int err;
976
977         err = kstrtol(buf, 10, &val);
978         if (err < 0)
979                 return err;
980
981         switch (val) {
982         case 0:
983                 client->flags &= ~I2C_CLIENT_PEC;
984                 break;
985         case 1:
986                 client->flags |= I2C_CLIENT_PEC;
987                 break;
988         default:
989                 return -EINVAL;
990         }
991
992         return count;
993 }
994
995 static DEVICE_ATTR_RW(pec);
996
997 static int lm90_get_temp11(struct lm90_data *data, int index)
998 {
999         s16 temp11 = data->temp11[index];
1000         int temp;
1001
1002         if (data->kind == adt7461 || data->kind == tmp451)
1003                 temp = temp_from_u16_adt7461(data, temp11);
1004         else if (data->kind == max6646)
1005                 temp = temp_from_u16(temp11);
1006         else
1007                 temp = temp_from_s16(temp11);
1008
1009         /* +16 degrees offset for temp2 for the LM99 */
1010         if (data->kind == lm99 && index <= 2)
1011                 temp += 16000;
1012
1013         return temp;
1014 }
1015
1016 static int lm90_set_temp11(struct lm90_data *data, int index, long val)
1017 {
1018         static struct reg {
1019                 u8 high;
1020                 u8 low;
1021         } reg[] = {
1022         [REMOTE_LOW] = { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL },
1023         [REMOTE_HIGH] = { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL },
1024         [REMOTE_OFFSET] = { LM90_REG_W_REMOTE_OFFSH, LM90_REG_W_REMOTE_OFFSL },
1025         [REMOTE2_LOW] = { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL },
1026         [REMOTE2_HIGH] = { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL }
1027         };
1028         struct i2c_client *client = data->client;
1029         struct reg *regp = &reg[index];
1030         int err;
1031
1032         /* +16 degrees offset for temp2 for the LM99 */
1033         if (data->kind == lm99 && index <= 2)
1034                 val -= 16000;
1035
1036         if (data->kind == adt7461 || data->kind == tmp451)
1037                 data->temp11[index] = temp_to_u16_adt7461(data, val);
1038         else if (data->kind == max6646)
1039                 data->temp11[index] = temp_to_u8(val) << 8;
1040         else if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
1041                 data->temp11[index] = temp_to_s16(val);
1042         else
1043                 data->temp11[index] = temp_to_s8(val) << 8;
1044
1045         lm90_select_remote_channel(client, data, index >= 3);
1046         err = i2c_smbus_write_byte_data(client, regp->high,
1047                                   data->temp11[index] >> 8);
1048         if (err < 0)
1049                 return err;
1050         if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
1051                 err = i2c_smbus_write_byte_data(client, regp->low,
1052                                                 data->temp11[index] & 0xff);
1053
1054         lm90_select_remote_channel(client, data, 0);
1055         return err;
1056 }
1057
1058 static int lm90_get_temp8(struct lm90_data *data, int index)
1059 {
1060         s8 temp8 = data->temp8[index];
1061         int temp;
1062
1063         if (data->kind == adt7461 || data->kind == tmp451)
1064                 temp = temp_from_u8_adt7461(data, temp8);
1065         else if (data->kind == max6646)
1066                 temp = temp_from_u8(temp8);
1067         else
1068                 temp = temp_from_s8(temp8);
1069
1070         /* +16 degrees offset for temp2 for the LM99 */
1071         if (data->kind == lm99 && index == 3)
1072                 temp += 16000;
1073
1074         return temp;
1075 }
1076
1077 static int lm90_set_temp8(struct lm90_data *data, int index, long val)
1078 {
1079         static const u8 reg[TEMP8_REG_NUM] = {
1080                 LM90_REG_W_LOCAL_LOW,
1081                 LM90_REG_W_LOCAL_HIGH,
1082                 LM90_REG_W_LOCAL_CRIT,
1083                 LM90_REG_W_REMOTE_CRIT,
1084                 MAX6659_REG_W_LOCAL_EMERG,
1085                 MAX6659_REG_W_REMOTE_EMERG,
1086                 LM90_REG_W_REMOTE_CRIT,
1087                 MAX6659_REG_W_REMOTE_EMERG,
1088         };
1089         struct i2c_client *client = data->client;
1090         int err;
1091
1092         /* +16 degrees offset for temp2 for the LM99 */
1093         if (data->kind == lm99 && index == 3)
1094                 val -= 16000;
1095
1096         if (data->kind == adt7461 || data->kind == tmp451)
1097                 data->temp8[index] = temp_to_u8_adt7461(data, val);
1098         else if (data->kind == max6646)
1099                 data->temp8[index] = temp_to_u8(val);
1100         else
1101                 data->temp8[index] = temp_to_s8(val);
1102
1103         lm90_select_remote_channel(client, data, index >= 6);
1104         err = i2c_smbus_write_byte_data(client, reg[index], data->temp8[index]);
1105         lm90_select_remote_channel(client, data, 0);
1106
1107         return err;
1108 }
1109
1110 static int lm90_get_temphyst(struct lm90_data *data, int index)
1111 {
1112         int temp;
1113
1114         if (data->kind == adt7461 || data->kind == tmp451)
1115                 temp = temp_from_u8_adt7461(data, data->temp8[index]);
1116         else if (data->kind == max6646)
1117                 temp = temp_from_u8(data->temp8[index]);
1118         else
1119                 temp = temp_from_s8(data->temp8[index]);
1120
1121         /* +16 degrees offset for temp2 for the LM99 */
1122         if (data->kind == lm99 && index == 3)
1123                 temp += 16000;
1124
1125         return temp - temp_from_s8(data->temp_hyst);
1126 }
1127
1128 static int lm90_set_temphyst(struct lm90_data *data, long val)
1129 {
1130         struct i2c_client *client = data->client;
1131         int temp;
1132         int err;
1133
1134         if (data->kind == adt7461 || data->kind == tmp451)
1135                 temp = temp_from_u8_adt7461(data, data->temp8[LOCAL_CRIT]);
1136         else if (data->kind == max6646)
1137                 temp = temp_from_u8(data->temp8[LOCAL_CRIT]);
1138         else
1139                 temp = temp_from_s8(data->temp8[LOCAL_CRIT]);
1140
1141         data->temp_hyst = hyst_to_reg(temp - val);
1142         err = i2c_smbus_write_byte_data(client, LM90_REG_W_TCRIT_HYST,
1143                                         data->temp_hyst);
1144         return err;
1145 }
1146
1147 static const u8 lm90_temp_index[3] = {
1148         LOCAL_TEMP, REMOTE_TEMP, REMOTE2_TEMP
1149 };
1150
1151 static const u8 lm90_temp_min_index[3] = {
1152         LOCAL_LOW, REMOTE_LOW, REMOTE2_LOW
1153 };
1154
1155 static const u8 lm90_temp_max_index[3] = {
1156         LOCAL_HIGH, REMOTE_HIGH, REMOTE2_HIGH
1157 };
1158
1159 static const u8 lm90_temp_crit_index[3] = {
1160         LOCAL_CRIT, REMOTE_CRIT, REMOTE2_CRIT
1161 };
1162
1163 static const u8 lm90_temp_emerg_index[3] = {
1164         LOCAL_EMERG, REMOTE_EMERG, REMOTE2_EMERG
1165 };
1166
1167 static const u8 lm90_min_alarm_bits[3] = { 5, 3, 11 };
1168 static const u8 lm90_max_alarm_bits[3] = { 6, 4, 12 };
1169 static const u8 lm90_crit_alarm_bits[3] = { 0, 1, 9 };
1170 static const u8 lm90_emergency_alarm_bits[3] = { 15, 13, 14 };
1171 static const u8 lm90_fault_bits[3] = { 0, 2, 10 };
1172
1173 static int lm90_temp_read(struct device *dev, u32 attr, int channel, long *val)
1174 {
1175         struct lm90_data *data = dev_get_drvdata(dev);
1176         int err;
1177
1178         mutex_lock(&data->update_lock);
1179         err = lm90_update_device(dev);
1180         mutex_unlock(&data->update_lock);
1181         if (err)
1182                 return err;
1183
1184         switch (attr) {
1185         case hwmon_temp_input:
1186                 *val = lm90_get_temp11(data, lm90_temp_index[channel]);
1187                 break;
1188         case hwmon_temp_min_alarm:
1189                 *val = (data->alarms >> lm90_min_alarm_bits[channel]) & 1;
1190                 break;
1191         case hwmon_temp_max_alarm:
1192                 *val = (data->alarms >> lm90_max_alarm_bits[channel]) & 1;
1193                 break;
1194         case hwmon_temp_crit_alarm:
1195                 *val = (data->alarms >> lm90_crit_alarm_bits[channel]) & 1;
1196                 break;
1197         case hwmon_temp_emergency_alarm:
1198                 *val = (data->alarms >> lm90_emergency_alarm_bits[channel]) & 1;
1199                 break;
1200         case hwmon_temp_fault:
1201                 *val = (data->alarms >> lm90_fault_bits[channel]) & 1;
1202                 break;
1203         case hwmon_temp_min:
1204                 if (channel == 0)
1205                         *val = lm90_get_temp8(data,
1206                                               lm90_temp_min_index[channel]);
1207                 else
1208                         *val = lm90_get_temp11(data,
1209                                                lm90_temp_min_index[channel]);
1210                 break;
1211         case hwmon_temp_max:
1212                 if (channel == 0)
1213                         *val = lm90_get_temp8(data,
1214                                               lm90_temp_max_index[channel]);
1215                 else
1216                         *val = lm90_get_temp11(data,
1217                                                lm90_temp_max_index[channel]);
1218                 break;
1219         case hwmon_temp_crit:
1220                 *val = lm90_get_temp8(data, lm90_temp_crit_index[channel]);
1221                 break;
1222         case hwmon_temp_crit_hyst:
1223                 *val = lm90_get_temphyst(data, lm90_temp_crit_index[channel]);
1224                 break;
1225         case hwmon_temp_emergency:
1226                 *val = lm90_get_temp8(data, lm90_temp_emerg_index[channel]);
1227                 break;
1228         case hwmon_temp_emergency_hyst:
1229                 *val = lm90_get_temphyst(data, lm90_temp_emerg_index[channel]);
1230                 break;
1231         case hwmon_temp_offset:
1232                 *val = lm90_get_temp11(data, REMOTE_OFFSET);
1233                 break;
1234         default:
1235                 return -EOPNOTSUPP;
1236         }
1237         return 0;
1238 }
1239
1240 static int lm90_temp_write(struct device *dev, u32 attr, int channel, long val)
1241 {
1242         struct lm90_data *data = dev_get_drvdata(dev);
1243         int err;
1244
1245         mutex_lock(&data->update_lock);
1246
1247         err = lm90_update_device(dev);
1248         if (err)
1249                 goto error;
1250
1251         switch (attr) {
1252         case hwmon_temp_min:
1253                 if (channel == 0)
1254                         err = lm90_set_temp8(data,
1255                                               lm90_temp_min_index[channel],
1256                                               val);
1257                 else
1258                         err = lm90_set_temp11(data,
1259                                               lm90_temp_min_index[channel],
1260                                               val);
1261                 break;
1262         case hwmon_temp_max:
1263                 if (channel == 0)
1264                         err = lm90_set_temp8(data,
1265                                              lm90_temp_max_index[channel],
1266                                              val);
1267                 else
1268                         err = lm90_set_temp11(data,
1269                                               lm90_temp_max_index[channel],
1270                                               val);
1271                 break;
1272         case hwmon_temp_crit:
1273                 err = lm90_set_temp8(data, lm90_temp_crit_index[channel], val);
1274                 break;
1275         case hwmon_temp_crit_hyst:
1276                 err = lm90_set_temphyst(data, val);
1277                 break;
1278         case hwmon_temp_emergency:
1279                 err = lm90_set_temp8(data, lm90_temp_emerg_index[channel], val);
1280                 break;
1281         case hwmon_temp_offset:
1282                 err = lm90_set_temp11(data, REMOTE_OFFSET, val);
1283                 break;
1284         default:
1285                 err = -EOPNOTSUPP;
1286                 break;
1287         }
1288 error:
1289         mutex_unlock(&data->update_lock);
1290
1291         return err;
1292 }
1293
1294 static umode_t lm90_temp_is_visible(const void *data, u32 attr, int channel)
1295 {
1296         switch (attr) {
1297         case hwmon_temp_input:
1298         case hwmon_temp_min_alarm:
1299         case hwmon_temp_max_alarm:
1300         case hwmon_temp_crit_alarm:
1301         case hwmon_temp_emergency_alarm:
1302         case hwmon_temp_emergency_hyst:
1303         case hwmon_temp_fault:
1304                 return S_IRUGO;
1305         case hwmon_temp_min:
1306         case hwmon_temp_max:
1307         case hwmon_temp_crit:
1308         case hwmon_temp_emergency:
1309         case hwmon_temp_offset:
1310                 return S_IRUGO | S_IWUSR;
1311         case hwmon_temp_crit_hyst:
1312                 if (channel == 0)
1313                         return S_IRUGO | S_IWUSR;
1314                 return S_IRUGO;
1315         default:
1316                 return 0;
1317         }
1318 }
1319
1320 static int lm90_chip_read(struct device *dev, u32 attr, int channel, long *val)
1321 {
1322         struct lm90_data *data = dev_get_drvdata(dev);
1323         int err;
1324
1325         mutex_lock(&data->update_lock);
1326         err = lm90_update_device(dev);
1327         mutex_unlock(&data->update_lock);
1328         if (err)
1329                 return err;
1330
1331         switch (attr) {
1332         case hwmon_chip_update_interval:
1333                 *val = data->update_interval;
1334                 break;
1335         case hwmon_chip_alarms:
1336                 *val = data->alarms;
1337                 break;
1338         default:
1339                 return -EOPNOTSUPP;
1340         }
1341
1342         return 0;
1343 }
1344
1345 static int lm90_chip_write(struct device *dev, u32 attr, int channel, long val)
1346 {
1347         struct lm90_data *data = dev_get_drvdata(dev);
1348         struct i2c_client *client = data->client;
1349         int err;
1350
1351         mutex_lock(&data->update_lock);
1352
1353         err = lm90_update_device(dev);
1354         if (err)
1355                 goto error;
1356
1357         switch (attr) {
1358         case hwmon_chip_update_interval:
1359                 err = lm90_set_convrate(client, data,
1360                                         clamp_val(val, 0, 100000));
1361                 break;
1362         default:
1363                 err = -EOPNOTSUPP;
1364                 break;
1365         }
1366 error:
1367         mutex_unlock(&data->update_lock);
1368
1369         return err;
1370 }
1371
1372 static umode_t lm90_chip_is_visible(const void *data, u32 attr, int channel)
1373 {
1374         switch (attr) {
1375         case hwmon_chip_update_interval:
1376                 return S_IRUGO | S_IWUSR;
1377         case hwmon_chip_alarms:
1378                 return S_IRUGO;
1379         default:
1380                 return 0;
1381         }
1382 }
1383
1384 static int lm90_read(struct device *dev, enum hwmon_sensor_types type,
1385                      u32 attr, int channel, long *val)
1386 {
1387         switch (type) {
1388         case hwmon_chip:
1389                 return lm90_chip_read(dev, attr, channel, val);
1390         case hwmon_temp:
1391                 return lm90_temp_read(dev, attr, channel, val);
1392         default:
1393                 return -EOPNOTSUPP;
1394         }
1395 }
1396
1397 static int lm90_write(struct device *dev, enum hwmon_sensor_types type,
1398                       u32 attr, int channel, long val)
1399 {
1400         switch (type) {
1401         case hwmon_chip:
1402                 return lm90_chip_write(dev, attr, channel, val);
1403         case hwmon_temp:
1404                 return lm90_temp_write(dev, attr, channel, val);
1405         default:
1406                 return -EOPNOTSUPP;
1407         }
1408 }
1409
1410 static umode_t lm90_is_visible(const void *data, enum hwmon_sensor_types type,
1411                                u32 attr, int channel)
1412 {
1413         switch (type) {
1414         case hwmon_chip:
1415                 return lm90_chip_is_visible(data, attr, channel);
1416         case hwmon_temp:
1417                 return lm90_temp_is_visible(data, attr, channel);
1418         default:
1419                 return 0;
1420         }
1421 }
1422
1423 /* Return 0 if detection is successful, -ENODEV otherwise */
1424 static int lm90_detect(struct i2c_client *client,
1425                        struct i2c_board_info *info)
1426 {
1427         struct i2c_adapter *adapter = client->adapter;
1428         int address = client->addr;
1429         const char *name = NULL;
1430         int man_id, chip_id, config1, config2, convrate;
1431
1432         if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
1433                 return -ENODEV;
1434
1435         /* detection and identification */
1436         man_id = i2c_smbus_read_byte_data(client, LM90_REG_R_MAN_ID);
1437         chip_id = i2c_smbus_read_byte_data(client, LM90_REG_R_CHIP_ID);
1438         config1 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG1);
1439         convrate = i2c_smbus_read_byte_data(client, LM90_REG_R_CONVRATE);
1440         if (man_id < 0 || chip_id < 0 || config1 < 0 || convrate < 0)
1441                 return -ENODEV;
1442
1443         if (man_id == 0x01 || man_id == 0x5C || man_id == 0xA1) {
1444                 config2 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG2);
1445                 if (config2 < 0)
1446                         return -ENODEV;
1447         }
1448
1449         if ((address == 0x4C || address == 0x4D)
1450          && man_id == 0x01) { /* National Semiconductor */
1451                 if ((config1 & 0x2A) == 0x00
1452                  && (config2 & 0xF8) == 0x00
1453                  && convrate <= 0x09) {
1454                         if (address == 0x4C
1455                          && (chip_id & 0xF0) == 0x20) { /* LM90 */
1456                                 name = "lm90";
1457                         } else
1458                         if ((chip_id & 0xF0) == 0x30) { /* LM89/LM99 */
1459                                 name = "lm99";
1460                                 dev_info(&adapter->dev,
1461                                          "Assuming LM99 chip at 0x%02x\n",
1462                                          address);
1463                                 dev_info(&adapter->dev,
1464                                          "If it is an LM89, instantiate it "
1465                                          "with the new_device sysfs "
1466                                          "interface\n");
1467                         } else
1468                         if (address == 0x4C
1469                          && (chip_id & 0xF0) == 0x10) { /* LM86 */
1470                                 name = "lm86";
1471                         }
1472                 }
1473         } else
1474         if ((address == 0x4C || address == 0x4D)
1475          && man_id == 0x41) { /* Analog Devices */
1476                 if ((chip_id & 0xF0) == 0x40 /* ADM1032 */
1477                  && (config1 & 0x3F) == 0x00
1478                  && convrate <= 0x0A) {
1479                         name = "adm1032";
1480                         /*
1481                          * The ADM1032 supports PEC, but only if combined
1482                          * transactions are not used.
1483                          */
1484                         if (i2c_check_functionality(adapter,
1485                                                     I2C_FUNC_SMBUS_BYTE))
1486                                 info->flags |= I2C_CLIENT_PEC;
1487                 } else
1488                 if (chip_id == 0x51 /* ADT7461 */
1489                  && (config1 & 0x1B) == 0x00
1490                  && convrate <= 0x0A) {
1491                         name = "adt7461";
1492                 } else
1493                 if (chip_id == 0x57 /* ADT7461A, NCT1008 */
1494                  && (config1 & 0x1B) == 0x00
1495                  && convrate <= 0x0A) {
1496                         name = "adt7461a";
1497                 }
1498         } else
1499         if (man_id == 0x4D) { /* Maxim */
1500                 int emerg, emerg2, status2;
1501
1502                 /*
1503                  * We read MAX6659_REG_R_REMOTE_EMERG twice, and re-read
1504                  * LM90_REG_R_MAN_ID in between. If MAX6659_REG_R_REMOTE_EMERG
1505                  * exists, both readings will reflect the same value. Otherwise,
1506                  * the readings will be different.
1507                  */
1508                 emerg = i2c_smbus_read_byte_data(client,
1509                                                  MAX6659_REG_R_REMOTE_EMERG);
1510                 man_id = i2c_smbus_read_byte_data(client,
1511                                                   LM90_REG_R_MAN_ID);
1512                 emerg2 = i2c_smbus_read_byte_data(client,
1513                                                   MAX6659_REG_R_REMOTE_EMERG);
1514                 status2 = i2c_smbus_read_byte_data(client,
1515                                                    MAX6696_REG_R_STATUS2);
1516                 if (emerg < 0 || man_id < 0 || emerg2 < 0 || status2 < 0)
1517                         return -ENODEV;
1518
1519                 /*
1520                  * The MAX6657, MAX6658 and MAX6659 do NOT have a chip_id
1521                  * register. Reading from that address will return the last
1522                  * read value, which in our case is those of the man_id
1523                  * register. Likewise, the config1 register seems to lack a
1524                  * low nibble, so the value will be those of the previous
1525                  * read, so in our case those of the man_id register.
1526                  * MAX6659 has a third set of upper temperature limit registers.
1527                  * Those registers also return values on MAX6657 and MAX6658,
1528                  * thus the only way to detect MAX6659 is by its address.
1529                  * For this reason it will be mis-detected as MAX6657 if its
1530                  * address is 0x4C.
1531                  */
1532                 if (chip_id == man_id
1533                  && (address == 0x4C || address == 0x4D || address == 0x4E)
1534                  && (config1 & 0x1F) == (man_id & 0x0F)
1535                  && convrate <= 0x09) {
1536                         if (address == 0x4C)
1537                                 name = "max6657";
1538                         else
1539                                 name = "max6659";
1540                 } else
1541                 /*
1542                  * Even though MAX6695 and MAX6696 do not have a chip ID
1543                  * register, reading it returns 0x01. Bit 4 of the config1
1544                  * register is unused and should return zero when read. Bit 0 of
1545                  * the status2 register is unused and should return zero when
1546                  * read.
1547                  *
1548                  * MAX6695 and MAX6696 have an additional set of temperature
1549                  * limit registers. We can detect those chips by checking if
1550                  * one of those registers exists.
1551                  */
1552                 if (chip_id == 0x01
1553                  && (config1 & 0x10) == 0x00
1554                  && (status2 & 0x01) == 0x00
1555                  && emerg == emerg2
1556                  && convrate <= 0x07) {
1557                         name = "max6696";
1558                 } else
1559                 /*
1560                  * The chip_id register of the MAX6680 and MAX6681 holds the
1561                  * revision of the chip. The lowest bit of the config1 register
1562                  * is unused and should return zero when read, so should the
1563                  * second to last bit of config1 (software reset).
1564                  */
1565                 if (chip_id == 0x01
1566                  && (config1 & 0x03) == 0x00
1567                  && convrate <= 0x07) {
1568                         name = "max6680";
1569                 } else
1570                 /*
1571                  * The chip_id register of the MAX6646/6647/6649 holds the
1572                  * revision of the chip. The lowest 6 bits of the config1
1573                  * register are unused and should return zero when read.
1574                  */
1575                 if (chip_id == 0x59
1576                  && (config1 & 0x3f) == 0x00
1577                  && convrate <= 0x07) {
1578                         name = "max6646";
1579                 }
1580         } else
1581         if (address == 0x4C
1582          && man_id == 0x5C) { /* Winbond/Nuvoton */
1583                 if ((config1 & 0x2A) == 0x00
1584                  && (config2 & 0xF8) == 0x00) {
1585                         if (chip_id == 0x01 /* W83L771W/G */
1586                          && convrate <= 0x09) {
1587                                 name = "w83l771";
1588                         } else
1589                         if ((chip_id & 0xFE) == 0x10 /* W83L771AWG/ASG */
1590                          && convrate <= 0x08) {
1591                                 name = "w83l771";
1592                         }
1593                 }
1594         } else
1595         if (address >= 0x48 && address <= 0x4F
1596          && man_id == 0xA1) { /*  NXP Semiconductor/Philips */
1597                 if (chip_id == 0x00
1598                  && (config1 & 0x2A) == 0x00
1599                  && (config2 & 0xFE) == 0x00
1600                  && convrate <= 0x09) {
1601                         name = "sa56004";
1602                 }
1603         } else
1604         if ((address == 0x4C || address == 0x4D)
1605          && man_id == 0x47) { /* GMT */
1606                 if (chip_id == 0x01 /* G781 */
1607                  && (config1 & 0x3F) == 0x00
1608                  && convrate <= 0x08)
1609                         name = "g781";
1610         } else
1611         if (address == 0x4C
1612          && man_id == 0x55) { /* Texas Instruments */
1613                 int local_ext;
1614
1615                 local_ext = i2c_smbus_read_byte_data(client,
1616                                                      TMP451_REG_R_LOCAL_TEMPL);
1617
1618                 if (chip_id == 0x00 /* TMP451 */
1619                  && (config1 & 0x1B) == 0x00
1620                  && convrate <= 0x09
1621                  && (local_ext & 0x0F) == 0x00)
1622                         name = "tmp451";
1623         }
1624
1625         if (!name) { /* identification failed */
1626                 dev_dbg(&adapter->dev,
1627                         "Unsupported chip at 0x%02x (man_id=0x%02X, "
1628                         "chip_id=0x%02X)\n", address, man_id, chip_id);
1629                 return -ENODEV;
1630         }
1631
1632         strlcpy(info->type, name, I2C_NAME_SIZE);
1633
1634         return 0;
1635 }
1636
1637 static void lm90_restore_conf(void *_data)
1638 {
1639         struct lm90_data *data = _data;
1640         struct i2c_client *client = data->client;
1641
1642         /* Restore initial configuration */
1643         lm90_write_convrate(client, data, data->convrate_orig);
1644         i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
1645                                   data->config_orig);
1646 }
1647
1648 static int lm90_init_client(struct i2c_client *client, struct lm90_data *data)
1649 {
1650         int config, convrate;
1651
1652         convrate = lm90_read_reg(client, LM90_REG_R_CONVRATE);
1653         if (convrate < 0)
1654                 return convrate;
1655         data->convrate_orig = convrate;
1656
1657         /*
1658          * Start the conversions.
1659          */
1660         config = lm90_read_reg(client, LM90_REG_R_CONFIG1);
1661         if (config < 0)
1662                 return config;
1663         data->config_orig = config;
1664
1665         lm90_set_convrate(client, data, 500); /* 500ms; 2Hz conversion rate */
1666
1667         /* Check Temperature Range Select */
1668         if (data->kind == adt7461 || data->kind == tmp451) {
1669                 if (config & 0x04)
1670                         data->flags |= LM90_FLAG_ADT7461_EXT;
1671         }
1672
1673         /*
1674          * Put MAX6680/MAX8881 into extended resolution (bit 0x10,
1675          * 0.125 degree resolution) and range (0x08, extend range
1676          * to -64 degree) mode for the remote temperature sensor.
1677          */
1678         if (data->kind == max6680)
1679                 config |= 0x18;
1680
1681         /*
1682          * Select external channel 0 for max6695/96
1683          */
1684         if (data->kind == max6696)
1685                 config &= ~0x08;
1686
1687         config &= 0xBF; /* run */
1688         if (config != data->config_orig) /* Only write if changed */
1689                 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1, config);
1690
1691         return devm_add_action_or_reset(&client->dev, lm90_restore_conf, data);
1692 }
1693
1694 static bool lm90_is_tripped(struct i2c_client *client, u16 *status)
1695 {
1696         struct lm90_data *data = i2c_get_clientdata(client);
1697         int st, st2 = 0;
1698
1699         st = lm90_read_reg(client, LM90_REG_R_STATUS);
1700         if (st < 0)
1701                 return false;
1702
1703         if (data->kind == max6696) {
1704                 st2 = lm90_read_reg(client, MAX6696_REG_R_STATUS2);
1705                 if (st2 < 0)
1706                         return false;
1707         }
1708
1709         *status = st | (st2 << 8);
1710
1711         if ((st & 0x7f) == 0 && (st2 & 0xfe) == 0)
1712                 return false;
1713
1714         if ((st & (LM90_STATUS_LLOW | LM90_STATUS_LHIGH | LM90_STATUS_LTHRM)) ||
1715             (st2 & MAX6696_STATUS2_LOT2))
1716                 dev_warn(&client->dev,
1717                          "temp%d out of range, please check!\n", 1);
1718         if ((st & (LM90_STATUS_RLOW | LM90_STATUS_RHIGH | LM90_STATUS_RTHRM)) ||
1719             (st2 & MAX6696_STATUS2_ROT2))
1720                 dev_warn(&client->dev,
1721                          "temp%d out of range, please check!\n", 2);
1722         if (st & LM90_STATUS_ROPEN)
1723                 dev_warn(&client->dev,
1724                          "temp%d diode open, please check!\n", 2);
1725         if (st2 & (MAX6696_STATUS2_R2LOW | MAX6696_STATUS2_R2HIGH |
1726                    MAX6696_STATUS2_R2THRM | MAX6696_STATUS2_R2OT2))
1727                 dev_warn(&client->dev,
1728                          "temp%d out of range, please check!\n", 3);
1729         if (st2 & MAX6696_STATUS2_R2OPEN)
1730                 dev_warn(&client->dev,
1731                          "temp%d diode open, please check!\n", 3);
1732
1733         return true;
1734 }
1735
1736 static irqreturn_t lm90_irq_thread(int irq, void *dev_id)
1737 {
1738         struct i2c_client *client = dev_id;
1739         u16 status;
1740
1741         if (lm90_is_tripped(client, &status))
1742                 return IRQ_HANDLED;
1743         else
1744                 return IRQ_NONE;
1745 }
1746
1747 static void lm90_remove_pec(void *dev)
1748 {
1749         device_remove_file(dev, &dev_attr_pec);
1750 }
1751
1752 static void lm90_regulator_disable(void *regulator)
1753 {
1754         regulator_disable(regulator);
1755 }
1756
1757 static const u32 lm90_chip_config[] = {
1758         HWMON_C_REGISTER_TZ | HWMON_C_UPDATE_INTERVAL | HWMON_C_ALARMS,
1759         0
1760 };
1761
1762 static const struct hwmon_channel_info lm90_chip_info = {
1763         .type = hwmon_chip,
1764         .config = lm90_chip_config,
1765 };
1766
1767
1768 static const struct hwmon_ops lm90_ops = {
1769         .is_visible = lm90_is_visible,
1770         .read = lm90_read,
1771         .write = lm90_write,
1772 };
1773
1774 static int lm90_probe(struct i2c_client *client,
1775                       const struct i2c_device_id *id)
1776 {
1777         struct device *dev = &client->dev;
1778         struct i2c_adapter *adapter = to_i2c_adapter(dev->parent);
1779         struct hwmon_channel_info *info;
1780         struct regulator *regulator;
1781         struct device *hwmon_dev;
1782         struct lm90_data *data;
1783         int err;
1784
1785         regulator = devm_regulator_get(dev, "vcc");
1786         if (IS_ERR(regulator))
1787                 return PTR_ERR(regulator);
1788
1789         err = regulator_enable(regulator);
1790         if (err < 0) {
1791                 dev_err(dev, "Failed to enable regulator: %d\n", err);
1792                 return err;
1793         }
1794
1795         err = devm_add_action_or_reset(dev, lm90_regulator_disable, regulator);
1796         if (err)
1797                 return err;
1798
1799         data = devm_kzalloc(dev, sizeof(struct lm90_data), GFP_KERNEL);
1800         if (!data)
1801                 return -ENOMEM;
1802
1803         data->client = client;
1804         i2c_set_clientdata(client, data);
1805         mutex_init(&data->update_lock);
1806
1807         /* Set the device type */
1808         if (client->dev.of_node)
1809                 data->kind = (enum chips)of_device_get_match_data(&client->dev);
1810         else
1811                 data->kind = id->driver_data;
1812         if (data->kind == adm1032) {
1813                 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
1814                         client->flags &= ~I2C_CLIENT_PEC;
1815         }
1816
1817         /*
1818          * Different devices have different alarm bits triggering the
1819          * ALERT# output
1820          */
1821         data->alert_alarms = lm90_params[data->kind].alert_alarms;
1822
1823         /* Set chip capabilities */
1824         data->flags = lm90_params[data->kind].flags;
1825
1826         data->chip.ops = &lm90_ops;
1827         data->chip.info = data->info;
1828
1829         data->info[0] = &lm90_chip_info;
1830         data->info[1] = &data->temp_info;
1831
1832         info = &data->temp_info;
1833         info->type = hwmon_temp;
1834         info->config = data->channel_config;
1835
1836         data->channel_config[0] = HWMON_T_INPUT | HWMON_T_MIN | HWMON_T_MAX |
1837                 HWMON_T_CRIT | HWMON_T_CRIT_HYST | HWMON_T_MIN_ALARM |
1838                 HWMON_T_MAX_ALARM | HWMON_T_CRIT_ALARM;
1839         data->channel_config[1] = HWMON_T_INPUT | HWMON_T_MIN | HWMON_T_MAX |
1840                 HWMON_T_CRIT | HWMON_T_CRIT_HYST | HWMON_T_MIN_ALARM |
1841                 HWMON_T_MAX_ALARM | HWMON_T_CRIT_ALARM | HWMON_T_FAULT;
1842
1843         if (data->flags & LM90_HAVE_OFFSET)
1844                 data->channel_config[1] |= HWMON_T_OFFSET;
1845
1846         if (data->flags & LM90_HAVE_EMERGENCY) {
1847                 data->channel_config[0] |= HWMON_T_EMERGENCY |
1848                         HWMON_T_EMERGENCY_HYST;
1849                 data->channel_config[1] |= HWMON_T_EMERGENCY |
1850                         HWMON_T_EMERGENCY_HYST;
1851         }
1852
1853         if (data->flags & LM90_HAVE_EMERGENCY_ALARM) {
1854                 data->channel_config[0] |= HWMON_T_EMERGENCY_ALARM;
1855                 data->channel_config[1] |= HWMON_T_EMERGENCY_ALARM;
1856         }
1857
1858         if (data->flags & LM90_HAVE_TEMP3) {
1859                 data->channel_config[2] = HWMON_T_INPUT |
1860                         HWMON_T_MIN | HWMON_T_MAX |
1861                         HWMON_T_CRIT | HWMON_T_CRIT_HYST |
1862                         HWMON_T_EMERGENCY | HWMON_T_EMERGENCY_HYST |
1863                         HWMON_T_MIN_ALARM | HWMON_T_MAX_ALARM |
1864                         HWMON_T_CRIT_ALARM | HWMON_T_EMERGENCY_ALARM |
1865                         HWMON_T_FAULT;
1866         }
1867
1868         data->reg_local_ext = lm90_params[data->kind].reg_local_ext;
1869
1870         /* Set maximum conversion rate */
1871         data->max_convrate = lm90_params[data->kind].max_convrate;
1872
1873         /* Initialize the LM90 chip */
1874         err = lm90_init_client(client, data);
1875         if (err < 0) {
1876                 dev_err(dev, "Failed to initialize device\n");
1877                 return err;
1878         }
1879
1880         /*
1881          * The 'pec' attribute is attached to the i2c device and thus created
1882          * separately.
1883          */
1884         if (client->flags & I2C_CLIENT_PEC) {
1885                 err = device_create_file(dev, &dev_attr_pec);
1886                 if (err)
1887                         return err;
1888                 err = devm_add_action_or_reset(dev, lm90_remove_pec, dev);
1889                 if (err)
1890                         return err;
1891         }
1892
1893         hwmon_dev = devm_hwmon_device_register_with_info(dev, client->name,
1894                                                          data, &data->chip,
1895                                                          NULL);
1896         if (IS_ERR(hwmon_dev))
1897                 return PTR_ERR(hwmon_dev);
1898
1899         if (client->irq) {
1900                 dev_dbg(dev, "IRQ: %d\n", client->irq);
1901                 err = devm_request_threaded_irq(dev, client->irq,
1902                                                 NULL, lm90_irq_thread,
1903                                                 IRQF_TRIGGER_LOW | IRQF_ONESHOT,
1904                                                 "lm90", client);
1905                 if (err < 0) {
1906                         dev_err(dev, "cannot request IRQ %d\n", client->irq);
1907                         return err;
1908                 }
1909         }
1910
1911         return 0;
1912 }
1913
1914 static void lm90_alert(struct i2c_client *client, enum i2c_alert_protocol type,
1915                        unsigned int flag)
1916 {
1917         u16 alarms;
1918
1919         if (type != I2C_PROTOCOL_SMBUS_ALERT)
1920                 return;
1921
1922         if (lm90_is_tripped(client, &alarms)) {
1923                 /*
1924                  * Disable ALERT# output, because these chips don't implement
1925                  * SMBus alert correctly; they should only hold the alert line
1926                  * low briefly.
1927                  */
1928                 struct lm90_data *data = i2c_get_clientdata(client);
1929
1930                 if ((data->flags & LM90_HAVE_BROKEN_ALERT) &&
1931                     (alarms & data->alert_alarms)) {
1932                         int config;
1933
1934                         dev_dbg(&client->dev, "Disabling ALERT#\n");
1935                         config = lm90_read_reg(client, LM90_REG_R_CONFIG1);
1936                         if (config >= 0)
1937                                 i2c_smbus_write_byte_data(client,
1938                                                           LM90_REG_W_CONFIG1,
1939                                                           config | 0x80);
1940                 }
1941         } else {
1942                 dev_info(&client->dev, "Everything OK\n");
1943         }
1944 }
1945
1946 static struct i2c_driver lm90_driver = {
1947         .class          = I2C_CLASS_HWMON,
1948         .driver = {
1949                 .name   = "lm90",
1950                 .of_match_table = of_match_ptr(lm90_of_match),
1951         },
1952         .probe          = lm90_probe,
1953         .alert          = lm90_alert,
1954         .id_table       = lm90_id,
1955         .detect         = lm90_detect,
1956         .address_list   = normal_i2c,
1957 };
1958
1959 module_i2c_driver(lm90_driver);
1960
1961 MODULE_AUTHOR("Jean Delvare <jdelvare@suse.de>");
1962 MODULE_DESCRIPTION("LM90/ADM1032 driver");
1963 MODULE_LICENSE("GPL");