2 * lm90.c - Part of lm_sensors, Linux kernel modules for hardware
4 * Copyright (C) 2003-2010 Jean Delvare <jdelvare@suse.de>
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.
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.
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.
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.
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.
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.
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.
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.
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.
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.
60 * This driver also supports the G781 from GMT. This device is compatible
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
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.
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.
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.
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.
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-sysfs.h>
93 #include <linux/hwmon.h>
94 #include <linux/err.h>
95 #include <linux/mutex.h>
96 #include <linux/sysfs.h>
97 #include <linux/interrupt.h>
98 #include <linux/regulator/consumer.h>
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
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.
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
};
119 enum chips
{ lm90
, adm1032
, lm99
, lm86
, max6657
, max6659
, adt7461
, max6680
,
120 max6646
, w83l771
, max6696
, sa56004
, g781
, tmp451
};
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
161 /* MAX6646/6647/6649/6657/6658/6659/6695/6696 registers */
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
170 /* SA56004 registers */
172 #define SA56004_REG_R_LOCAL_TEMPL 0x22
174 #define LM90_MAX_CONVRATE_MS 16000 /* Maximum conversion rate in ms */
176 /* TMP451 registers */
177 #define TMP451_REG_R_LOCAL_TEMPL 0x15
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 */
192 #define LM90_STATUS_LTHRM (1 << 0) /* local THERM limit tripped */
193 #define LM90_STATUS_RTHRM (1 << 1) /* remote THERM limit tripped */
194 #define LM90_STATUS_ROPEN (1 << 2) /* remote is an open circuit */
195 #define LM90_STATUS_RLOW (1 << 3) /* remote low temp limit tripped */
196 #define LM90_STATUS_RHIGH (1 << 4) /* remote high temp limit tripped */
197 #define LM90_STATUS_LLOW (1 << 5) /* local low temp limit tripped */
198 #define LM90_STATUS_LHIGH (1 << 6) /* local high temp limit tripped */
200 #define MAX6696_STATUS2_R2THRM (1 << 1) /* remote2 THERM limit tripped */
201 #define MAX6696_STATUS2_R2OPEN (1 << 2) /* remote2 is an open circuit */
202 #define MAX6696_STATUS2_R2LOW (1 << 3) /* remote2 low temp limit tripped */
203 #define MAX6696_STATUS2_R2HIGH (1 << 4) /* remote2 high temp limit tripped */
204 #define MAX6696_STATUS2_ROT2 (1 << 5) /* remote emergency limit tripped */
205 #define MAX6696_STATUS2_R2OT2 (1 << 6) /* remote2 emergency limit tripped */
206 #define MAX6696_STATUS2_LOT2 (1 << 7) /* local emergency limit tripped */
209 * Driver data (common to all clients)
212 static const struct i2c_device_id lm90_id
[] = {
213 { "adm1032", adm1032
},
214 { "adt7461", adt7461
},
215 { "adt7461a", adt7461
},
221 { "max6646", max6646
},
222 { "max6647", max6646
},
223 { "max6649", max6646
},
224 { "max6657", max6657
},
225 { "max6658", max6657
},
226 { "max6659", max6659
},
227 { "max6680", max6680
},
228 { "max6681", max6680
},
229 { "max6695", max6696
},
230 { "max6696", max6696
},
231 { "nct1008", adt7461
},
232 { "w83l771", w83l771
},
233 { "sa56004", sa56004
},
234 { "tmp451", tmp451
},
237 MODULE_DEVICE_TABLE(i2c
, lm90_id
);
240 * chip type specific parameters
243 u32 flags
; /* Capabilities */
244 u16 alert_alarms
; /* Which alarm bits trigger ALERT# */
245 /* Upper 8 bits for max6695/96 */
246 u8 max_convrate
; /* Maximum conversion rate register value */
247 u8 reg_local_ext
; /* Extended local temp register (optional) */
250 static const struct lm90_params lm90_params
[] = {
252 .flags
= LM90_HAVE_OFFSET
| LM90_HAVE_REM_LIMIT_EXT
253 | LM90_HAVE_BROKEN_ALERT
,
254 .alert_alarms
= 0x7c,
258 .flags
= LM90_HAVE_OFFSET
| LM90_HAVE_REM_LIMIT_EXT
259 | LM90_HAVE_BROKEN_ALERT
,
260 .alert_alarms
= 0x7c,
264 .flags
= LM90_HAVE_OFFSET
| LM90_HAVE_REM_LIMIT_EXT
265 | LM90_HAVE_BROKEN_ALERT
,
266 .alert_alarms
= 0x7c,
270 .flags
= LM90_HAVE_OFFSET
| LM90_HAVE_REM_LIMIT_EXT
,
271 .alert_alarms
= 0x7b,
275 .flags
= LM90_HAVE_OFFSET
| LM90_HAVE_REM_LIMIT_EXT
,
276 .alert_alarms
= 0x7b,
280 .flags
= LM90_HAVE_OFFSET
| LM90_HAVE_REM_LIMIT_EXT
,
281 .alert_alarms
= 0x7b,
285 .alert_alarms
= 0x7c,
287 .reg_local_ext
= MAX6657_REG_R_LOCAL_TEMPL
,
290 .alert_alarms
= 0x7c,
292 .reg_local_ext
= MAX6657_REG_R_LOCAL_TEMPL
,
295 .flags
= LM90_HAVE_EMERGENCY
,
296 .alert_alarms
= 0x7c,
298 .reg_local_ext
= MAX6657_REG_R_LOCAL_TEMPL
,
301 .flags
= LM90_HAVE_OFFSET
,
302 .alert_alarms
= 0x7c,
306 .flags
= LM90_HAVE_EMERGENCY
307 | LM90_HAVE_EMERGENCY_ALARM
| LM90_HAVE_TEMP3
,
308 .alert_alarms
= 0x1c7c,
310 .reg_local_ext
= MAX6657_REG_R_LOCAL_TEMPL
,
313 .flags
= LM90_HAVE_OFFSET
| LM90_HAVE_REM_LIMIT_EXT
,
314 .alert_alarms
= 0x7c,
318 .flags
= LM90_HAVE_OFFSET
| LM90_HAVE_REM_LIMIT_EXT
,
319 .alert_alarms
= 0x7b,
321 .reg_local_ext
= SA56004_REG_R_LOCAL_TEMPL
,
324 .flags
= LM90_HAVE_OFFSET
| LM90_HAVE_REM_LIMIT_EXT
325 | LM90_HAVE_BROKEN_ALERT
,
326 .alert_alarms
= 0x7c,
328 .reg_local_ext
= TMP451_REG_R_LOCAL_TEMPL
,
333 * TEMP8 register index
335 enum lm90_temp8_reg_index
{
340 LOCAL_EMERG
, /* max6659 and max6695/96 */
341 REMOTE_EMERG
, /* max6659 and max6695/96 */
342 REMOTE2_CRIT
, /* max6695/96 only */
343 REMOTE2_EMERG
, /* max6695/96 only */
348 * TEMP11 register index
350 enum lm90_temp11_reg_index
{
354 REMOTE_OFFSET
, /* except max6646, max6657/58/59, and max6695/96 */
356 REMOTE2_TEMP
, /* max6695/96 only */
357 REMOTE2_LOW
, /* max6695/96 only */
358 REMOTE2_HIGH
, /* max6695/96 only */
363 * Client data (each client gets its own)
367 struct i2c_client
*client
;
368 const struct attribute_group
*groups
[6];
369 struct mutex update_lock
;
370 bool valid
; /* true if register values are valid */
371 unsigned long last_updated
; /* in jiffies */
375 unsigned int update_interval
; /* in milliseconds */
377 u8 config_orig
; /* Original configuration register value */
378 u8 convrate_orig
; /* Original conversion rate register value */
379 u16 alert_alarms
; /* Which alarm bits trigger ALERT# */
380 /* Upper 8 bits for max6695/96 */
381 u8 max_convrate
; /* Maximum conversion rate */
382 u8 reg_local_ext
; /* local extension register offset */
384 /* registers values */
385 s8 temp8
[TEMP8_REG_NUM
];
386 s16 temp11
[TEMP11_REG_NUM
];
388 u16 alarms
; /* bitvector (upper 8 bits for max6695/96) */
396 * The ADM1032 supports PEC but not on write byte transactions, so we need
397 * to explicitly ask for a transaction without PEC.
399 static inline s32
adm1032_write_byte(struct i2c_client
*client
, u8 value
)
401 return i2c_smbus_xfer(client
->adapter
, client
->addr
,
402 client
->flags
& ~I2C_CLIENT_PEC
,
403 I2C_SMBUS_WRITE
, value
, I2C_SMBUS_BYTE
, NULL
);
407 * It is assumed that client->update_lock is held (unless we are in
408 * detection or initialization steps). This matters when PEC is enabled,
409 * because we don't want the address pointer to change between the write
410 * byte and the read byte transactions.
412 static int lm90_read_reg(struct i2c_client
*client
, u8 reg
)
416 if (client
->flags
& I2C_CLIENT_PEC
) {
417 err
= adm1032_write_byte(client
, reg
);
419 err
= i2c_smbus_read_byte(client
);
421 err
= i2c_smbus_read_byte_data(client
, reg
);
426 static int lm90_read16(struct i2c_client
*client
, u8 regh
, u8 regl
)
431 * There is a trick here. We have to read two registers to have the
432 * sensor temperature, but we have to beware a conversion could occur
433 * between the readings. The datasheet says we should either use
434 * the one-shot conversion register, which we don't want to do
435 * (disables hardware monitoring) or monitor the busy bit, which is
436 * impossible (we can't read the values and monitor that bit at the
437 * exact same time). So the solution used here is to read the high
438 * byte once, then the low byte, then the high byte again. If the new
439 * high byte matches the old one, then we have a valid reading. Else
440 * we have to read the low byte again, and now we believe we have a
443 oldh
= lm90_read_reg(client
, regh
);
446 l
= lm90_read_reg(client
, regl
);
449 newh
= lm90_read_reg(client
, regh
);
453 l
= lm90_read_reg(client
, regl
);
457 return (newh
<< 8) | l
;
461 * client->update_lock must be held when calling this function (unless we are
462 * in detection or initialization steps), and while a remote channel other
463 * than channel 0 is selected. Also, calling code must make sure to re-select
464 * external channel 0 before releasing the lock. This is necessary because
465 * various registers have different meanings as a result of selecting a
466 * non-default remote channel.
468 static inline int lm90_select_remote_channel(struct i2c_client
*client
,
469 struct lm90_data
*data
,
474 if (data
->kind
== max6696
) {
475 config
= lm90_read_reg(client
, LM90_REG_R_CONFIG1
);
481 i2c_smbus_write_byte_data(client
, LM90_REG_W_CONFIG1
,
488 * Set conversion rate.
489 * client->update_lock must be held when calling this function (unless we are
490 * in detection or initialization steps).
492 static void lm90_set_convrate(struct i2c_client
*client
, struct lm90_data
*data
,
493 unsigned int interval
)
496 unsigned int update_interval
;
498 /* Shift calculations to avoid rounding errors */
501 /* find the nearest update rate */
502 for (i
= 0, update_interval
= LM90_MAX_CONVRATE_MS
<< 6;
503 i
< data
->max_convrate
; i
++, update_interval
>>= 1)
504 if (interval
>= update_interval
* 3 / 4)
507 i2c_smbus_write_byte_data(client
, LM90_REG_W_CONVRATE
, i
);
508 data
->update_interval
= DIV_ROUND_CLOSEST(update_interval
, 64);
511 static int lm90_update_limits(struct device
*dev
)
513 struct lm90_data
*data
= dev_get_drvdata(dev
);
514 struct i2c_client
*client
= data
->client
;
517 val
= lm90_read_reg(client
, LM90_REG_R_LOCAL_CRIT
);
520 data
->temp8
[LOCAL_CRIT
] = val
;
522 val
= lm90_read_reg(client
, LM90_REG_R_REMOTE_CRIT
);
525 data
->temp8
[REMOTE_CRIT
] = val
;
527 val
= lm90_read_reg(client
, LM90_REG_R_TCRIT_HYST
);
530 data
->temp_hyst
= val
;
532 val
= lm90_read_reg(client
, LM90_REG_R_REMOTE_LOWH
);
535 data
->temp11
[REMOTE_LOW
] = val
<< 8;
537 if (data
->flags
& LM90_HAVE_REM_LIMIT_EXT
) {
538 val
= lm90_read_reg(client
, LM90_REG_R_REMOTE_LOWL
);
541 data
->temp11
[REMOTE_LOW
] |= val
;
544 val
= lm90_read_reg(client
, LM90_REG_R_REMOTE_HIGHH
);
547 data
->temp11
[REMOTE_HIGH
] = val
<< 8;
549 if (data
->flags
& LM90_HAVE_REM_LIMIT_EXT
) {
550 val
= lm90_read_reg(client
, LM90_REG_R_REMOTE_HIGHL
);
553 data
->temp11
[REMOTE_HIGH
] |= val
;
556 if (data
->flags
& LM90_HAVE_OFFSET
) {
557 val
= lm90_read16(client
, LM90_REG_R_REMOTE_OFFSH
,
558 LM90_REG_R_REMOTE_OFFSL
);
561 data
->temp11
[REMOTE_OFFSET
] = val
;
564 if (data
->flags
& LM90_HAVE_EMERGENCY
) {
565 val
= lm90_read_reg(client
, MAX6659_REG_R_LOCAL_EMERG
);
568 data
->temp8
[LOCAL_EMERG
] = val
;
570 val
= lm90_read_reg(client
, MAX6659_REG_R_REMOTE_EMERG
);
573 data
->temp8
[REMOTE_EMERG
] = val
;
576 if (data
->kind
== max6696
) {
577 val
= lm90_select_remote_channel(client
, data
, 1);
581 val
= lm90_read_reg(client
, LM90_REG_R_REMOTE_CRIT
);
584 data
->temp8
[REMOTE2_CRIT
] = val
;
586 val
= lm90_read_reg(client
, MAX6659_REG_R_REMOTE_EMERG
);
589 data
->temp8
[REMOTE2_EMERG
] = val
;
591 val
= lm90_read_reg(client
, LM90_REG_R_REMOTE_LOWH
);
594 data
->temp11
[REMOTE2_LOW
] = val
<< 8;
596 val
= lm90_read_reg(client
, LM90_REG_R_REMOTE_HIGHH
);
599 data
->temp11
[REMOTE2_HIGH
] = val
<< 8;
601 lm90_select_remote_channel(client
, data
, 0);
607 static struct lm90_data
*lm90_update_device(struct device
*dev
)
609 struct lm90_data
*data
= dev_get_drvdata(dev
);
610 struct i2c_client
*client
= data
->client
;
611 unsigned long next_update
;
614 mutex_lock(&data
->update_lock
);
617 val
= lm90_update_limits(dev
);
622 next_update
= data
->last_updated
+
623 msecs_to_jiffies(data
->update_interval
);
624 if (time_after(jiffies
, next_update
) || !data
->valid
) {
625 dev_dbg(&client
->dev
, "Updating lm90 data.\n");
629 val
= lm90_read_reg(client
, LM90_REG_R_LOCAL_LOW
);
632 data
->temp8
[LOCAL_LOW
] = val
;
634 val
= lm90_read_reg(client
, LM90_REG_R_LOCAL_HIGH
);
637 data
->temp8
[LOCAL_HIGH
] = val
;
639 if (data
->reg_local_ext
) {
640 val
= lm90_read16(client
, LM90_REG_R_LOCAL_TEMP
,
641 data
->reg_local_ext
);
644 data
->temp11
[LOCAL_TEMP
] = val
;
646 val
= lm90_read_reg(client
, LM90_REG_R_LOCAL_TEMP
);
649 data
->temp11
[LOCAL_TEMP
] = val
<< 8;
651 val
= lm90_read16(client
, LM90_REG_R_REMOTE_TEMPH
,
652 LM90_REG_R_REMOTE_TEMPL
);
655 data
->temp11
[REMOTE_TEMP
] = val
;
657 val
= lm90_read_reg(client
, LM90_REG_R_STATUS
);
660 data
->alarms
= val
; /* lower 8 bit of alarms */
662 if (data
->kind
== max6696
) {
663 val
= lm90_select_remote_channel(client
, data
, 1);
667 val
= lm90_read16(client
, LM90_REG_R_REMOTE_TEMPH
,
668 LM90_REG_R_REMOTE_TEMPL
);
671 data
->temp11
[REMOTE2_TEMP
] = val
;
673 lm90_select_remote_channel(client
, data
, 0);
675 val
= lm90_read_reg(client
, MAX6696_REG_R_STATUS2
);
678 data
->alarms
|= val
<< 8;
682 * Re-enable ALERT# output if it was originally enabled and
683 * relevant alarms are all clear
685 if (!(data
->config_orig
& 0x80) &&
686 !(data
->alarms
& data
->alert_alarms
)) {
687 val
= lm90_read_reg(client
, LM90_REG_R_CONFIG1
);
692 dev_dbg(&client
->dev
, "Re-enabling ALERT#\n");
693 i2c_smbus_write_byte_data(client
,
699 data
->last_updated
= jiffies
;
704 mutex_unlock(&data
->update_lock
);
714 * For local temperatures and limits, critical limits and the hysteresis
715 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius.
716 * For remote temperatures and limits, it uses signed 11-bit values with
717 * LSB = 0.125 degree Celsius, left-justified in 16-bit registers. Some
718 * Maxim chips use unsigned values.
721 static inline int temp_from_s8(s8 val
)
726 static inline int temp_from_u8(u8 val
)
731 static inline int temp_from_s16(s16 val
)
733 return val
/ 32 * 125;
736 static inline int temp_from_u16(u16 val
)
738 return val
/ 32 * 125;
741 static s8
temp_to_s8(long val
)
748 return (val
- 500) / 1000;
749 return (val
+ 500) / 1000;
752 static u8
temp_to_u8(long val
)
758 return (val
+ 500) / 1000;
761 static s16
temp_to_s16(long val
)
768 return (val
- 62) / 125 * 32;
769 return (val
+ 62) / 125 * 32;
772 static u8
hyst_to_reg(long val
)
778 return (val
+ 500) / 1000;
782 * ADT7461 in compatibility mode is almost identical to LM90 except that
783 * attempts to write values that are outside the range 0 < temp < 127 are
784 * treated as the boundary value.
786 * ADT7461 in "extended mode" operation uses unsigned integers offset by
787 * 64 (e.g., 0 -> -64 degC). The range is restricted to -64..191 degC.
789 static inline int temp_from_u8_adt7461(struct lm90_data
*data
, u8 val
)
791 if (data
->flags
& LM90_FLAG_ADT7461_EXT
)
792 return (val
- 64) * 1000;
793 return temp_from_s8(val
);
796 static inline int temp_from_u16_adt7461(struct lm90_data
*data
, u16 val
)
798 if (data
->flags
& LM90_FLAG_ADT7461_EXT
)
799 return (val
- 0x4000) / 64 * 250;
800 return temp_from_s16(val
);
803 static u8
temp_to_u8_adt7461(struct lm90_data
*data
, long val
)
805 if (data
->flags
& LM90_FLAG_ADT7461_EXT
) {
810 return (val
+ 500 + 64000) / 1000;
816 return (val
+ 500) / 1000;
819 static u16
temp_to_u16_adt7461(struct lm90_data
*data
, long val
)
821 if (data
->flags
& LM90_FLAG_ADT7461_EXT
) {
826 return (val
+ 64000 + 125) / 250 * 64;
832 return (val
+ 125) / 250 * 64;
839 static ssize_t
show_temp8(struct device
*dev
, struct device_attribute
*devattr
,
842 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
843 struct lm90_data
*data
= lm90_update_device(dev
);
847 return PTR_ERR(data
);
849 if (data
->kind
== adt7461
|| data
->kind
== tmp451
)
850 temp
= temp_from_u8_adt7461(data
, data
->temp8
[attr
->index
]);
851 else if (data
->kind
== max6646
)
852 temp
= temp_from_u8(data
->temp8
[attr
->index
]);
854 temp
= temp_from_s8(data
->temp8
[attr
->index
]);
856 /* +16 degrees offset for temp2 for the LM99 */
857 if (data
->kind
== lm99
&& attr
->index
== 3)
860 return sprintf(buf
, "%d\n", temp
);
863 static ssize_t
set_temp8(struct device
*dev
, struct device_attribute
*devattr
,
864 const char *buf
, size_t count
)
866 static const u8 reg
[TEMP8_REG_NUM
] = {
867 LM90_REG_W_LOCAL_LOW
,
868 LM90_REG_W_LOCAL_HIGH
,
869 LM90_REG_W_LOCAL_CRIT
,
870 LM90_REG_W_REMOTE_CRIT
,
871 MAX6659_REG_W_LOCAL_EMERG
,
872 MAX6659_REG_W_REMOTE_EMERG
,
873 LM90_REG_W_REMOTE_CRIT
,
874 MAX6659_REG_W_REMOTE_EMERG
,
877 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
878 struct lm90_data
*data
= dev_get_drvdata(dev
);
879 struct i2c_client
*client
= data
->client
;
880 int nr
= attr
->index
;
884 err
= kstrtol(buf
, 10, &val
);
888 /* +16 degrees offset for temp2 for the LM99 */
889 if (data
->kind
== lm99
&& attr
->index
== 3)
892 mutex_lock(&data
->update_lock
);
893 if (data
->kind
== adt7461
|| data
->kind
== tmp451
)
894 data
->temp8
[nr
] = temp_to_u8_adt7461(data
, val
);
895 else if (data
->kind
== max6646
)
896 data
->temp8
[nr
] = temp_to_u8(val
);
898 data
->temp8
[nr
] = temp_to_s8(val
);
900 lm90_select_remote_channel(client
, data
, nr
>= 6);
901 i2c_smbus_write_byte_data(client
, reg
[nr
], data
->temp8
[nr
]);
902 lm90_select_remote_channel(client
, data
, 0);
904 mutex_unlock(&data
->update_lock
);
908 static ssize_t
show_temp11(struct device
*dev
, struct device_attribute
*devattr
,
911 struct sensor_device_attribute_2
*attr
= to_sensor_dev_attr_2(devattr
);
912 struct lm90_data
*data
= lm90_update_device(dev
);
916 return PTR_ERR(data
);
918 if (data
->kind
== adt7461
|| data
->kind
== tmp451
)
919 temp
= temp_from_u16_adt7461(data
, data
->temp11
[attr
->index
]);
920 else if (data
->kind
== max6646
)
921 temp
= temp_from_u16(data
->temp11
[attr
->index
]);
923 temp
= temp_from_s16(data
->temp11
[attr
->index
]);
925 /* +16 degrees offset for temp2 for the LM99 */
926 if (data
->kind
== lm99
&& attr
->index
<= 2)
929 return sprintf(buf
, "%d\n", temp
);
932 static ssize_t
set_temp11(struct device
*dev
, struct device_attribute
*devattr
,
933 const char *buf
, size_t count
)
940 { LM90_REG_W_REMOTE_LOWH
, LM90_REG_W_REMOTE_LOWL
, 0 },
941 { LM90_REG_W_REMOTE_HIGHH
, LM90_REG_W_REMOTE_HIGHL
, 0 },
942 { LM90_REG_W_REMOTE_OFFSH
, LM90_REG_W_REMOTE_OFFSL
, 0 },
943 { LM90_REG_W_REMOTE_LOWH
, LM90_REG_W_REMOTE_LOWL
, 1 },
944 { LM90_REG_W_REMOTE_HIGHH
, LM90_REG_W_REMOTE_HIGHL
, 1 }
947 struct sensor_device_attribute_2
*attr
= to_sensor_dev_attr_2(devattr
);
948 struct lm90_data
*data
= dev_get_drvdata(dev
);
949 struct i2c_client
*client
= data
->client
;
951 int index
= attr
->index
;
955 err
= kstrtol(buf
, 10, &val
);
959 /* +16 degrees offset for temp2 for the LM99 */
960 if (data
->kind
== lm99
&& index
<= 2)
963 mutex_lock(&data
->update_lock
);
964 if (data
->kind
== adt7461
|| data
->kind
== tmp451
)
965 data
->temp11
[index
] = temp_to_u16_adt7461(data
, val
);
966 else if (data
->kind
== max6646
)
967 data
->temp11
[index
] = temp_to_u8(val
) << 8;
968 else if (data
->flags
& LM90_HAVE_REM_LIMIT_EXT
)
969 data
->temp11
[index
] = temp_to_s16(val
);
971 data
->temp11
[index
] = temp_to_s8(val
) << 8;
973 lm90_select_remote_channel(client
, data
, reg
[nr
].channel
);
974 i2c_smbus_write_byte_data(client
, reg
[nr
].high
,
975 data
->temp11
[index
] >> 8);
976 if (data
->flags
& LM90_HAVE_REM_LIMIT_EXT
)
977 i2c_smbus_write_byte_data(client
, reg
[nr
].low
,
978 data
->temp11
[index
] & 0xff);
979 lm90_select_remote_channel(client
, data
, 0);
981 mutex_unlock(&data
->update_lock
);
985 static ssize_t
show_temphyst(struct device
*dev
,
986 struct device_attribute
*devattr
,
989 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
990 struct lm90_data
*data
= lm90_update_device(dev
);
994 return PTR_ERR(data
);
996 if (data
->kind
== adt7461
|| data
->kind
== tmp451
)
997 temp
= temp_from_u8_adt7461(data
, data
->temp8
[attr
->index
]);
998 else if (data
->kind
== max6646
)
999 temp
= temp_from_u8(data
->temp8
[attr
->index
]);
1001 temp
= temp_from_s8(data
->temp8
[attr
->index
]);
1003 /* +16 degrees offset for temp2 for the LM99 */
1004 if (data
->kind
== lm99
&& attr
->index
== 3)
1007 return sprintf(buf
, "%d\n", temp
- temp_from_s8(data
->temp_hyst
));
1010 static ssize_t
set_temphyst(struct device
*dev
, struct device_attribute
*dummy
,
1011 const char *buf
, size_t count
)
1013 struct lm90_data
*data
= dev_get_drvdata(dev
);
1014 struct i2c_client
*client
= data
->client
;
1019 err
= kstrtol(buf
, 10, &val
);
1023 mutex_lock(&data
->update_lock
);
1024 if (data
->kind
== adt7461
|| data
->kind
== tmp451
)
1025 temp
= temp_from_u8_adt7461(data
, data
->temp8
[LOCAL_CRIT
]);
1026 else if (data
->kind
== max6646
)
1027 temp
= temp_from_u8(data
->temp8
[LOCAL_CRIT
]);
1029 temp
= temp_from_s8(data
->temp8
[LOCAL_CRIT
]);
1031 data
->temp_hyst
= hyst_to_reg(temp
- val
);
1032 i2c_smbus_write_byte_data(client
, LM90_REG_W_TCRIT_HYST
,
1034 mutex_unlock(&data
->update_lock
);
1038 static ssize_t
show_alarms(struct device
*dev
, struct device_attribute
*dummy
,
1041 struct lm90_data
*data
= lm90_update_device(dev
);
1044 return PTR_ERR(data
);
1046 return sprintf(buf
, "%d\n", data
->alarms
);
1049 static ssize_t
show_alarm(struct device
*dev
, struct device_attribute
1050 *devattr
, char *buf
)
1052 struct sensor_device_attribute
*attr
= to_sensor_dev_attr(devattr
);
1053 struct lm90_data
*data
= lm90_update_device(dev
);
1054 int bitnr
= attr
->index
;
1057 return PTR_ERR(data
);
1059 return sprintf(buf
, "%d\n", (data
->alarms
>> bitnr
) & 1);
1062 static ssize_t
show_update_interval(struct device
*dev
,
1063 struct device_attribute
*attr
, char *buf
)
1065 struct lm90_data
*data
= dev_get_drvdata(dev
);
1067 return sprintf(buf
, "%u\n", data
->update_interval
);
1070 static ssize_t
set_update_interval(struct device
*dev
,
1071 struct device_attribute
*attr
,
1072 const char *buf
, size_t count
)
1074 struct lm90_data
*data
= dev_get_drvdata(dev
);
1075 struct i2c_client
*client
= data
->client
;
1079 err
= kstrtoul(buf
, 10, &val
);
1083 mutex_lock(&data
->update_lock
);
1084 lm90_set_convrate(client
, data
, clamp_val(val
, 0, 100000));
1085 mutex_unlock(&data
->update_lock
);
1090 static SENSOR_DEVICE_ATTR_2(temp1_input
, S_IRUGO
, show_temp11
, NULL
,
1092 static SENSOR_DEVICE_ATTR_2(temp2_input
, S_IRUGO
, show_temp11
, NULL
,
1094 static SENSOR_DEVICE_ATTR(temp1_min
, S_IWUSR
| S_IRUGO
, show_temp8
,
1095 set_temp8
, LOCAL_LOW
);
1096 static SENSOR_DEVICE_ATTR_2(temp2_min
, S_IWUSR
| S_IRUGO
, show_temp11
,
1097 set_temp11
, 0, REMOTE_LOW
);
1098 static SENSOR_DEVICE_ATTR(temp1_max
, S_IWUSR
| S_IRUGO
, show_temp8
,
1099 set_temp8
, LOCAL_HIGH
);
1100 static SENSOR_DEVICE_ATTR_2(temp2_max
, S_IWUSR
| S_IRUGO
, show_temp11
,
1101 set_temp11
, 1, REMOTE_HIGH
);
1102 static SENSOR_DEVICE_ATTR(temp1_crit
, S_IWUSR
| S_IRUGO
, show_temp8
,
1103 set_temp8
, LOCAL_CRIT
);
1104 static SENSOR_DEVICE_ATTR(temp2_crit
, S_IWUSR
| S_IRUGO
, show_temp8
,
1105 set_temp8
, REMOTE_CRIT
);
1106 static SENSOR_DEVICE_ATTR(temp1_crit_hyst
, S_IWUSR
| S_IRUGO
, show_temphyst
,
1107 set_temphyst
, LOCAL_CRIT
);
1108 static SENSOR_DEVICE_ATTR(temp2_crit_hyst
, S_IRUGO
, show_temphyst
, NULL
,
1110 static SENSOR_DEVICE_ATTR_2(temp2_offset
, S_IWUSR
| S_IRUGO
, show_temp11
,
1111 set_temp11
, 2, REMOTE_OFFSET
);
1113 /* Individual alarm files */
1114 static SENSOR_DEVICE_ATTR(temp1_crit_alarm
, S_IRUGO
, show_alarm
, NULL
, 0);
1115 static SENSOR_DEVICE_ATTR(temp2_crit_alarm
, S_IRUGO
, show_alarm
, NULL
, 1);
1116 static SENSOR_DEVICE_ATTR(temp2_fault
, S_IRUGO
, show_alarm
, NULL
, 2);
1117 static SENSOR_DEVICE_ATTR(temp2_min_alarm
, S_IRUGO
, show_alarm
, NULL
, 3);
1118 static SENSOR_DEVICE_ATTR(temp2_max_alarm
, S_IRUGO
, show_alarm
, NULL
, 4);
1119 static SENSOR_DEVICE_ATTR(temp1_min_alarm
, S_IRUGO
, show_alarm
, NULL
, 5);
1120 static SENSOR_DEVICE_ATTR(temp1_max_alarm
, S_IRUGO
, show_alarm
, NULL
, 6);
1121 /* Raw alarm file for compatibility */
1122 static DEVICE_ATTR(alarms
, S_IRUGO
, show_alarms
, NULL
);
1124 static DEVICE_ATTR(update_interval
, S_IRUGO
| S_IWUSR
, show_update_interval
,
1125 set_update_interval
);
1127 static struct attribute
*lm90_attributes
[] = {
1128 &sensor_dev_attr_temp1_input
.dev_attr
.attr
,
1129 &sensor_dev_attr_temp2_input
.dev_attr
.attr
,
1130 &sensor_dev_attr_temp1_min
.dev_attr
.attr
,
1131 &sensor_dev_attr_temp2_min
.dev_attr
.attr
,
1132 &sensor_dev_attr_temp1_max
.dev_attr
.attr
,
1133 &sensor_dev_attr_temp2_max
.dev_attr
.attr
,
1134 &sensor_dev_attr_temp1_crit
.dev_attr
.attr
,
1135 &sensor_dev_attr_temp2_crit
.dev_attr
.attr
,
1136 &sensor_dev_attr_temp1_crit_hyst
.dev_attr
.attr
,
1137 &sensor_dev_attr_temp2_crit_hyst
.dev_attr
.attr
,
1139 &sensor_dev_attr_temp1_crit_alarm
.dev_attr
.attr
,
1140 &sensor_dev_attr_temp2_crit_alarm
.dev_attr
.attr
,
1141 &sensor_dev_attr_temp2_fault
.dev_attr
.attr
,
1142 &sensor_dev_attr_temp2_min_alarm
.dev_attr
.attr
,
1143 &sensor_dev_attr_temp2_max_alarm
.dev_attr
.attr
,
1144 &sensor_dev_attr_temp1_min_alarm
.dev_attr
.attr
,
1145 &sensor_dev_attr_temp1_max_alarm
.dev_attr
.attr
,
1146 &dev_attr_alarms
.attr
,
1147 &dev_attr_update_interval
.attr
,
1151 static const struct attribute_group lm90_group
= {
1152 .attrs
= lm90_attributes
,
1155 static struct attribute
*lm90_temp2_offset_attributes
[] = {
1156 &sensor_dev_attr_temp2_offset
.dev_attr
.attr
,
1160 static const struct attribute_group lm90_temp2_offset_group
= {
1161 .attrs
= lm90_temp2_offset_attributes
,
1165 * Additional attributes for devices with emergency sensors
1167 static SENSOR_DEVICE_ATTR(temp1_emergency
, S_IWUSR
| S_IRUGO
, show_temp8
,
1168 set_temp8
, LOCAL_EMERG
);
1169 static SENSOR_DEVICE_ATTR(temp2_emergency
, S_IWUSR
| S_IRUGO
, show_temp8
,
1170 set_temp8
, REMOTE_EMERG
);
1171 static SENSOR_DEVICE_ATTR(temp1_emergency_hyst
, S_IRUGO
, show_temphyst
,
1173 static SENSOR_DEVICE_ATTR(temp2_emergency_hyst
, S_IRUGO
, show_temphyst
,
1174 NULL
, REMOTE_EMERG
);
1176 static struct attribute
*lm90_emergency_attributes
[] = {
1177 &sensor_dev_attr_temp1_emergency
.dev_attr
.attr
,
1178 &sensor_dev_attr_temp2_emergency
.dev_attr
.attr
,
1179 &sensor_dev_attr_temp1_emergency_hyst
.dev_attr
.attr
,
1180 &sensor_dev_attr_temp2_emergency_hyst
.dev_attr
.attr
,
1184 static const struct attribute_group lm90_emergency_group
= {
1185 .attrs
= lm90_emergency_attributes
,
1188 static SENSOR_DEVICE_ATTR(temp1_emergency_alarm
, S_IRUGO
, show_alarm
, NULL
, 15);
1189 static SENSOR_DEVICE_ATTR(temp2_emergency_alarm
, S_IRUGO
, show_alarm
, NULL
, 13);
1191 static struct attribute
*lm90_emergency_alarm_attributes
[] = {
1192 &sensor_dev_attr_temp1_emergency_alarm
.dev_attr
.attr
,
1193 &sensor_dev_attr_temp2_emergency_alarm
.dev_attr
.attr
,
1197 static const struct attribute_group lm90_emergency_alarm_group
= {
1198 .attrs
= lm90_emergency_alarm_attributes
,
1202 * Additional attributes for devices with 3 temperature sensors
1204 static SENSOR_DEVICE_ATTR_2(temp3_input
, S_IRUGO
, show_temp11
, NULL
,
1206 static SENSOR_DEVICE_ATTR_2(temp3_min
, S_IWUSR
| S_IRUGO
, show_temp11
,
1207 set_temp11
, 3, REMOTE2_LOW
);
1208 static SENSOR_DEVICE_ATTR_2(temp3_max
, S_IWUSR
| S_IRUGO
, show_temp11
,
1209 set_temp11
, 4, REMOTE2_HIGH
);
1210 static SENSOR_DEVICE_ATTR(temp3_crit
, S_IWUSR
| S_IRUGO
, show_temp8
,
1211 set_temp8
, REMOTE2_CRIT
);
1212 static SENSOR_DEVICE_ATTR(temp3_crit_hyst
, S_IRUGO
, show_temphyst
, NULL
,
1214 static SENSOR_DEVICE_ATTR(temp3_emergency
, S_IWUSR
| S_IRUGO
, show_temp8
,
1215 set_temp8
, REMOTE2_EMERG
);
1216 static SENSOR_DEVICE_ATTR(temp3_emergency_hyst
, S_IRUGO
, show_temphyst
,
1217 NULL
, REMOTE2_EMERG
);
1219 static SENSOR_DEVICE_ATTR(temp3_crit_alarm
, S_IRUGO
, show_alarm
, NULL
, 9);
1220 static SENSOR_DEVICE_ATTR(temp3_fault
, S_IRUGO
, show_alarm
, NULL
, 10);
1221 static SENSOR_DEVICE_ATTR(temp3_min_alarm
, S_IRUGO
, show_alarm
, NULL
, 11);
1222 static SENSOR_DEVICE_ATTR(temp3_max_alarm
, S_IRUGO
, show_alarm
, NULL
, 12);
1223 static SENSOR_DEVICE_ATTR(temp3_emergency_alarm
, S_IRUGO
, show_alarm
, NULL
, 14);
1225 static struct attribute
*lm90_temp3_attributes
[] = {
1226 &sensor_dev_attr_temp3_input
.dev_attr
.attr
,
1227 &sensor_dev_attr_temp3_min
.dev_attr
.attr
,
1228 &sensor_dev_attr_temp3_max
.dev_attr
.attr
,
1229 &sensor_dev_attr_temp3_crit
.dev_attr
.attr
,
1230 &sensor_dev_attr_temp3_crit_hyst
.dev_attr
.attr
,
1231 &sensor_dev_attr_temp3_emergency
.dev_attr
.attr
,
1232 &sensor_dev_attr_temp3_emergency_hyst
.dev_attr
.attr
,
1234 &sensor_dev_attr_temp3_fault
.dev_attr
.attr
,
1235 &sensor_dev_attr_temp3_min_alarm
.dev_attr
.attr
,
1236 &sensor_dev_attr_temp3_max_alarm
.dev_attr
.attr
,
1237 &sensor_dev_attr_temp3_crit_alarm
.dev_attr
.attr
,
1238 &sensor_dev_attr_temp3_emergency_alarm
.dev_attr
.attr
,
1242 static const struct attribute_group lm90_temp3_group
= {
1243 .attrs
= lm90_temp3_attributes
,
1246 /* pec used for ADM1032 only */
1247 static ssize_t
show_pec(struct device
*dev
, struct device_attribute
*dummy
,
1250 struct i2c_client
*client
= to_i2c_client(dev
);
1251 return sprintf(buf
, "%d\n", !!(client
->flags
& I2C_CLIENT_PEC
));
1254 static ssize_t
set_pec(struct device
*dev
, struct device_attribute
*dummy
,
1255 const char *buf
, size_t count
)
1257 struct i2c_client
*client
= to_i2c_client(dev
);
1261 err
= kstrtol(buf
, 10, &val
);
1267 client
->flags
&= ~I2C_CLIENT_PEC
;
1270 client
->flags
|= I2C_CLIENT_PEC
;
1279 static DEVICE_ATTR(pec
, S_IWUSR
| S_IRUGO
, show_pec
, set_pec
);
1285 /* Return 0 if detection is successful, -ENODEV otherwise */
1286 static int lm90_detect(struct i2c_client
*client
,
1287 struct i2c_board_info
*info
)
1289 struct i2c_adapter
*adapter
= client
->adapter
;
1290 int address
= client
->addr
;
1291 const char *name
= NULL
;
1292 int man_id
, chip_id
, config1
, config2
, convrate
;
1294 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_BYTE_DATA
))
1297 /* detection and identification */
1298 man_id
= i2c_smbus_read_byte_data(client
, LM90_REG_R_MAN_ID
);
1299 chip_id
= i2c_smbus_read_byte_data(client
, LM90_REG_R_CHIP_ID
);
1300 config1
= i2c_smbus_read_byte_data(client
, LM90_REG_R_CONFIG1
);
1301 convrate
= i2c_smbus_read_byte_data(client
, LM90_REG_R_CONVRATE
);
1302 if (man_id
< 0 || chip_id
< 0 || config1
< 0 || convrate
< 0)
1305 if (man_id
== 0x01 || man_id
== 0x5C || man_id
== 0x41) {
1306 config2
= i2c_smbus_read_byte_data(client
, LM90_REG_R_CONFIG2
);
1310 config2
= 0; /* Make compiler happy */
1312 if ((address
== 0x4C || address
== 0x4D)
1313 && man_id
== 0x01) { /* National Semiconductor */
1314 if ((config1
& 0x2A) == 0x00
1315 && (config2
& 0xF8) == 0x00
1316 && convrate
<= 0x09) {
1318 && (chip_id
& 0xF0) == 0x20) { /* LM90 */
1321 if ((chip_id
& 0xF0) == 0x30) { /* LM89/LM99 */
1323 dev_info(&adapter
->dev
,
1324 "Assuming LM99 chip at 0x%02x\n",
1326 dev_info(&adapter
->dev
,
1327 "If it is an LM89, instantiate it "
1328 "with the new_device sysfs "
1332 && (chip_id
& 0xF0) == 0x10) { /* LM86 */
1337 if ((address
== 0x4C || address
== 0x4D)
1338 && man_id
== 0x41) { /* Analog Devices */
1339 if ((chip_id
& 0xF0) == 0x40 /* ADM1032 */
1340 && (config1
& 0x3F) == 0x00
1341 && convrate
<= 0x0A) {
1344 * The ADM1032 supports PEC, but only if combined
1345 * transactions are not used.
1347 if (i2c_check_functionality(adapter
,
1348 I2C_FUNC_SMBUS_BYTE
))
1349 info
->flags
|= I2C_CLIENT_PEC
;
1351 if (chip_id
== 0x51 /* ADT7461 */
1352 && (config1
& 0x1B) == 0x00
1353 && convrate
<= 0x0A) {
1356 if (chip_id
== 0x57 /* ADT7461A, NCT1008 */
1357 && (config1
& 0x1B) == 0x00
1358 && convrate
<= 0x0A) {
1362 if (man_id
== 0x4D) { /* Maxim */
1363 int emerg
, emerg2
, status2
;
1366 * We read MAX6659_REG_R_REMOTE_EMERG twice, and re-read
1367 * LM90_REG_R_MAN_ID in between. If MAX6659_REG_R_REMOTE_EMERG
1368 * exists, both readings will reflect the same value. Otherwise,
1369 * the readings will be different.
1371 emerg
= i2c_smbus_read_byte_data(client
,
1372 MAX6659_REG_R_REMOTE_EMERG
);
1373 man_id
= i2c_smbus_read_byte_data(client
,
1375 emerg2
= i2c_smbus_read_byte_data(client
,
1376 MAX6659_REG_R_REMOTE_EMERG
);
1377 status2
= i2c_smbus_read_byte_data(client
,
1378 MAX6696_REG_R_STATUS2
);
1379 if (emerg
< 0 || man_id
< 0 || emerg2
< 0 || status2
< 0)
1383 * The MAX6657, MAX6658 and MAX6659 do NOT have a chip_id
1384 * register. Reading from that address will return the last
1385 * read value, which in our case is those of the man_id
1386 * register. Likewise, the config1 register seems to lack a
1387 * low nibble, so the value will be those of the previous
1388 * read, so in our case those of the man_id register.
1389 * MAX6659 has a third set of upper temperature limit registers.
1390 * Those registers also return values on MAX6657 and MAX6658,
1391 * thus the only way to detect MAX6659 is by its address.
1392 * For this reason it will be mis-detected as MAX6657 if its
1395 if (chip_id
== man_id
1396 && (address
== 0x4C || address
== 0x4D || address
== 0x4E)
1397 && (config1
& 0x1F) == (man_id
& 0x0F)
1398 && convrate
<= 0x09) {
1399 if (address
== 0x4C)
1405 * Even though MAX6695 and MAX6696 do not have a chip ID
1406 * register, reading it returns 0x01. Bit 4 of the config1
1407 * register is unused and should return zero when read. Bit 0 of
1408 * the status2 register is unused and should return zero when
1411 * MAX6695 and MAX6696 have an additional set of temperature
1412 * limit registers. We can detect those chips by checking if
1413 * one of those registers exists.
1416 && (config1
& 0x10) == 0x00
1417 && (status2
& 0x01) == 0x00
1419 && convrate
<= 0x07) {
1423 * The chip_id register of the MAX6680 and MAX6681 holds the
1424 * revision of the chip. The lowest bit of the config1 register
1425 * is unused and should return zero when read, so should the
1426 * second to last bit of config1 (software reset).
1429 && (config1
& 0x03) == 0x00
1430 && convrate
<= 0x07) {
1434 * The chip_id register of the MAX6646/6647/6649 holds the
1435 * revision of the chip. The lowest 6 bits of the config1
1436 * register are unused and should return zero when read.
1439 && (config1
& 0x3f) == 0x00
1440 && convrate
<= 0x07) {
1445 && man_id
== 0x5C) { /* Winbond/Nuvoton */
1446 if ((config1
& 0x2A) == 0x00
1447 && (config2
& 0xF8) == 0x00) {
1448 if (chip_id
== 0x01 /* W83L771W/G */
1449 && convrate
<= 0x09) {
1452 if ((chip_id
& 0xFE) == 0x10 /* W83L771AWG/ASG */
1453 && convrate
<= 0x08) {
1458 if (address
>= 0x48 && address
<= 0x4F
1459 && man_id
== 0xA1) { /* NXP Semiconductor/Philips */
1461 && (config1
& 0x2A) == 0x00
1462 && (config2
& 0xFE) == 0x00
1463 && convrate
<= 0x09) {
1467 if ((address
== 0x4C || address
== 0x4D)
1468 && man_id
== 0x47) { /* GMT */
1469 if (chip_id
== 0x01 /* G781 */
1470 && (config1
& 0x3F) == 0x00
1471 && convrate
<= 0x08)
1475 && man_id
== 0x55) { /* Texas Instruments */
1478 local_ext
= i2c_smbus_read_byte_data(client
,
1479 TMP451_REG_R_LOCAL_TEMPL
);
1481 if (chip_id
== 0x00 /* TMP451 */
1482 && (config1
& 0x1B) == 0x00
1484 && (local_ext
& 0x0F) == 0x00)
1488 if (!name
) { /* identification failed */
1489 dev_dbg(&adapter
->dev
,
1490 "Unsupported chip at 0x%02x (man_id=0x%02X, "
1491 "chip_id=0x%02X)\n", address
, man_id
, chip_id
);
1495 strlcpy(info
->type
, name
, I2C_NAME_SIZE
);
1500 static void lm90_restore_conf(void *_data
)
1502 struct lm90_data
*data
= _data
;
1503 struct i2c_client
*client
= data
->client
;
1505 /* Restore initial configuration */
1506 i2c_smbus_write_byte_data(client
, LM90_REG_W_CONVRATE
,
1507 data
->convrate_orig
);
1508 i2c_smbus_write_byte_data(client
, LM90_REG_W_CONFIG1
,
1512 static int lm90_init_client(struct i2c_client
*client
, struct lm90_data
*data
)
1514 int config
, convrate
;
1516 convrate
= lm90_read_reg(client
, LM90_REG_R_CONVRATE
);
1519 data
->convrate_orig
= convrate
;
1522 * Start the conversions.
1524 lm90_set_convrate(client
, data
, 500); /* 500ms; 2Hz conversion rate */
1525 config
= lm90_read_reg(client
, LM90_REG_R_CONFIG1
);
1528 data
->config_orig
= config
;
1530 /* Check Temperature Range Select */
1531 if (data
->kind
== adt7461
|| data
->kind
== tmp451
) {
1533 data
->flags
|= LM90_FLAG_ADT7461_EXT
;
1537 * Put MAX6680/MAX8881 into extended resolution (bit 0x10,
1538 * 0.125 degree resolution) and range (0x08, extend range
1539 * to -64 degree) mode for the remote temperature sensor.
1541 if (data
->kind
== max6680
)
1545 * Select external channel 0 for max6695/96
1547 if (data
->kind
== max6696
)
1550 config
&= 0xBF; /* run */
1551 if (config
!= data
->config_orig
) /* Only write if changed */
1552 i2c_smbus_write_byte_data(client
, LM90_REG_W_CONFIG1
, config
);
1554 return devm_add_action_or_reset(&client
->dev
, lm90_restore_conf
, data
);
1557 static bool lm90_is_tripped(struct i2c_client
*client
, u16
*status
)
1559 struct lm90_data
*data
= i2c_get_clientdata(client
);
1562 st
= lm90_read_reg(client
, LM90_REG_R_STATUS
);
1566 if (data
->kind
== max6696
) {
1567 st2
= lm90_read_reg(client
, MAX6696_REG_R_STATUS2
);
1572 *status
= st
| (st2
<< 8);
1574 if ((st
& 0x7f) == 0 && (st2
& 0xfe) == 0)
1577 if ((st
& (LM90_STATUS_LLOW
| LM90_STATUS_LHIGH
| LM90_STATUS_LTHRM
)) ||
1578 (st2
& MAX6696_STATUS2_LOT2
))
1579 dev_warn(&client
->dev
,
1580 "temp%d out of range, please check!\n", 1);
1581 if ((st
& (LM90_STATUS_RLOW
| LM90_STATUS_RHIGH
| LM90_STATUS_RTHRM
)) ||
1582 (st2
& MAX6696_STATUS2_ROT2
))
1583 dev_warn(&client
->dev
,
1584 "temp%d out of range, please check!\n", 2);
1585 if (st
& LM90_STATUS_ROPEN
)
1586 dev_warn(&client
->dev
,
1587 "temp%d diode open, please check!\n", 2);
1588 if (st2
& (MAX6696_STATUS2_R2LOW
| MAX6696_STATUS2_R2HIGH
|
1589 MAX6696_STATUS2_R2THRM
| MAX6696_STATUS2_R2OT2
))
1590 dev_warn(&client
->dev
,
1591 "temp%d out of range, please check!\n", 3);
1592 if (st2
& MAX6696_STATUS2_R2OPEN
)
1593 dev_warn(&client
->dev
,
1594 "temp%d diode open, please check!\n", 3);
1599 static irqreturn_t
lm90_irq_thread(int irq
, void *dev_id
)
1601 struct i2c_client
*client
= dev_id
;
1604 if (lm90_is_tripped(client
, &status
))
1610 static void lm90_remove_pec(void *dev
)
1612 device_remove_file(dev
, &dev_attr_pec
);
1615 static void lm90_regulator_disable(void *regulator
)
1617 regulator_disable(regulator
);
1620 static int lm90_probe(struct i2c_client
*client
,
1621 const struct i2c_device_id
*id
)
1623 struct device
*dev
= &client
->dev
;
1624 struct i2c_adapter
*adapter
= to_i2c_adapter(dev
->parent
);
1625 struct lm90_data
*data
;
1626 struct regulator
*regulator
;
1627 struct device
*hwmon_dev
;
1631 regulator
= devm_regulator_get(dev
, "vcc");
1632 if (IS_ERR(regulator
))
1633 return PTR_ERR(regulator
);
1635 err
= regulator_enable(regulator
);
1637 dev_err(dev
, "Failed to enable regulator: %d\n", err
);
1641 err
= devm_add_action_or_reset(dev
, lm90_regulator_disable
, regulator
);
1645 data
= devm_kzalloc(dev
, sizeof(struct lm90_data
), GFP_KERNEL
);
1649 data
->client
= client
;
1650 i2c_set_clientdata(client
, data
);
1651 mutex_init(&data
->update_lock
);
1653 /* Set the device type */
1654 data
->kind
= id
->driver_data
;
1655 if (data
->kind
== adm1032
) {
1656 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_BYTE
))
1657 client
->flags
&= ~I2C_CLIENT_PEC
;
1661 * Different devices have different alarm bits triggering the
1664 data
->alert_alarms
= lm90_params
[data
->kind
].alert_alarms
;
1666 /* Set chip capabilities */
1667 data
->flags
= lm90_params
[data
->kind
].flags
;
1668 data
->reg_local_ext
= lm90_params
[data
->kind
].reg_local_ext
;
1670 /* Set maximum conversion rate */
1671 data
->max_convrate
= lm90_params
[data
->kind
].max_convrate
;
1673 /* Initialize the LM90 chip */
1674 err
= lm90_init_client(client
, data
);
1676 dev_err(dev
, "Failed to initialize device\n");
1680 /* Register sysfs hooks */
1681 data
->groups
[groups
++] = &lm90_group
;
1683 if (data
->flags
& LM90_HAVE_OFFSET
)
1684 data
->groups
[groups
++] = &lm90_temp2_offset_group
;
1686 if (data
->flags
& LM90_HAVE_EMERGENCY
)
1687 data
->groups
[groups
++] = &lm90_emergency_group
;
1689 if (data
->flags
& LM90_HAVE_EMERGENCY_ALARM
)
1690 data
->groups
[groups
++] = &lm90_emergency_alarm_group
;
1692 if (data
->flags
& LM90_HAVE_TEMP3
)
1693 data
->groups
[groups
++] = &lm90_temp3_group
;
1695 if (client
->flags
& I2C_CLIENT_PEC
) {
1696 err
= device_create_file(dev
, &dev_attr_pec
);
1699 err
= devm_add_action_or_reset(dev
, lm90_remove_pec
, dev
);
1704 hwmon_dev
= devm_hwmon_device_register_with_groups(dev
, client
->name
,
1705 data
, data
->groups
);
1706 if (IS_ERR(hwmon_dev
))
1707 return PTR_ERR(hwmon_dev
);
1710 dev_dbg(dev
, "IRQ: %d\n", client
->irq
);
1711 err
= devm_request_threaded_irq(dev
, client
->irq
,
1712 NULL
, lm90_irq_thread
,
1713 IRQF_TRIGGER_LOW
| IRQF_ONESHOT
,
1716 dev_err(dev
, "cannot request IRQ %d\n", client
->irq
);
1724 static void lm90_alert(struct i2c_client
*client
, enum i2c_alert_protocol type
,
1729 if (type
!= I2C_PROTOCOL_SMBUS_ALERT
)
1732 if (lm90_is_tripped(client
, &alarms
)) {
1734 * Disable ALERT# output, because these chips don't implement
1735 * SMBus alert correctly; they should only hold the alert line
1738 struct lm90_data
*data
= i2c_get_clientdata(client
);
1740 if ((data
->flags
& LM90_HAVE_BROKEN_ALERT
) &&
1741 (alarms
& data
->alert_alarms
)) {
1744 dev_dbg(&client
->dev
, "Disabling ALERT#\n");
1745 config
= lm90_read_reg(client
, LM90_REG_R_CONFIG1
);
1747 i2c_smbus_write_byte_data(client
,
1752 dev_info(&client
->dev
, "Everything OK\n");
1756 static struct i2c_driver lm90_driver
= {
1757 .class = I2C_CLASS_HWMON
,
1761 .probe
= lm90_probe
,
1762 .alert
= lm90_alert
,
1763 .id_table
= lm90_id
,
1764 .detect
= lm90_detect
,
1765 .address_list
= normal_i2c
,
1768 module_i2c_driver(lm90_driver
);
1770 MODULE_AUTHOR("Jean Delvare <jdelvare@suse.de>");
1771 MODULE_DESCRIPTION("LM90/ADM1032 driver");
1772 MODULE_LICENSE("GPL");