blob: 22efae34c2f62d40a0c93a3279337da0848b68be [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * lm90.c - Part of lm_sensors, Linux kernel modules for hardware
3 * monitoring
Jean Delvare95238362010-03-05 22:17:14 +01004 * Copyright (C) 2003-2010 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 *
6 * Based on the lm83 driver. The LM90 is a sensor chip made by National
7 * Semiconductor. It reports up to two temperatures (its own plus up to
8 * one external one) with a 0.125 deg resolution (1 deg for local
Jean Delvarea874a102008-10-17 17:51:10 +02009 * temperature) and a 3-4 deg accuracy.
Linus Torvalds1da177e2005-04-16 15:20:36 -070010 *
11 * This driver also supports the LM89 and LM99, two other sensor chips
12 * made by National Semiconductor. Both have an increased remote
13 * temperature measurement accuracy (1 degree), and the LM99
14 * additionally shifts remote temperatures (measured and limits) by 16
Jean Delvare97ae60b2008-10-26 17:04:39 +010015 * degrees, which allows for higher temperatures measurement.
Steven Cole44bbe872005-05-03 18:21:25 -060016 * Note that there is no way to differentiate between both chips.
Jean Delvare97ae60b2008-10-26 17:04:39 +010017 * When device is auto-detected, the driver will assume an LM99.
Linus Torvalds1da177e2005-04-16 15:20:36 -070018 *
19 * This driver also supports the LM86, another sensor chip made by
20 * National Semiconductor. It is exactly similar to the LM90 except it
21 * has a higher accuracy.
Linus Torvalds1da177e2005-04-16 15:20:36 -070022 *
23 * This driver also supports the ADM1032, a sensor chip made by Analog
24 * Devices. That chip is similar to the LM90, with a few differences
Jean Delvarea874a102008-10-17 17:51:10 +020025 * that are not handled by this driver. Among others, it has a higher
26 * accuracy than the LM90, much like the LM86 does.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 *
28 * This driver also supports the MAX6657, MAX6658 and MAX6659 sensor
Jean Delvarea874a102008-10-17 17:51:10 +020029 * chips made by Maxim. These chips are similar to the LM86.
Steven Cole44bbe872005-05-03 18:21:25 -060030 * Note that there is no easy way to differentiate between the three
Guenter Roeck69487082010-10-28 20:31:43 +020031 * variants. We use the device address to detect MAX6659, which will result
32 * in a detection as max6657 if it is on address 0x4c. The extra address
33 * and features of the MAX6659 are only supported if the chip is configured
34 * explicitly as max6659, or if its address is not 0x4c.
35 * These chips lack the remote temperature offset feature.
Linus Torvalds1da177e2005-04-16 15:20:36 -070036 *
Darrick J. Wong1a51e062009-03-12 13:36:38 +010037 * This driver also supports the MAX6646, MAX6647, MAX6648, MAX6649 and
38 * MAX6692 chips made by Maxim. These are again similar to the LM86,
39 * but they use unsigned temperature values and can report temperatures
40 * from 0 to 145 degrees.
Ben Hutchings271dabf2008-10-17 17:51:11 +020041 *
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -040042 * This driver also supports the MAX6680 and MAX6681, two other sensor
43 * chips made by Maxim. These are quite similar to the other Maxim
Jean Delvarea874a102008-10-17 17:51:10 +020044 * chips. The MAX6680 and MAX6681 only differ in the pinout so they can
45 * be treated identically.
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -040046 *
Guenter Roeck06e1c0a2010-10-28 20:31:43 +020047 * This driver also supports the MAX6695 and MAX6696, two other sensor
48 * chips made by Maxim. These are also quite similar to other Maxim
49 * chips, but support three temperature sensors instead of two. MAX6695
50 * and MAX6696 only differ in the pinout so they can be treated identically.
51 *
Guenter Roeck5a4e5e62011-04-29 16:33:35 +020052 * This driver also supports ADT7461 and ADT7461A from Analog Devices as well as
53 * NCT1008 from ON Semiconductor. The chips are supported in both compatibility
54 * and extended mode. They are mostly compatible with LM90 except for a data
55 * format difference for the temperature value registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -070056 *
Stijn Devriendt2ef01792011-06-06 10:40:45 +000057 * This driver also supports the SA56004 from Philips. This device is
58 * pin-compatible with the LM86, the ED/EDP parts are also address-compatible.
59 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * Since the LM90 was the first chipset supported by this driver, most
61 * comments will refer to this chipset, but are actually general and
62 * concern all supported chipsets, unless mentioned otherwise.
63 *
64 * This program is free software; you can redistribute it and/or modify
65 * it under the terms of the GNU General Public License as published by
66 * the Free Software Foundation; either version 2 of the License, or
67 * (at your option) any later version.
68 *
69 * This program is distributed in the hope that it will be useful,
70 * but WITHOUT ANY WARRANTY; without even the implied warranty of
71 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
72 * GNU General Public License for more details.
73 *
74 * You should have received a copy of the GNU General Public License
75 * along with this program; if not, write to the Free Software
76 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
77 */
78
Linus Torvalds1da177e2005-04-16 15:20:36 -070079#include <linux/module.h>
80#include <linux/init.h>
81#include <linux/slab.h>
82#include <linux/jiffies.h>
83#include <linux/i2c.h>
Jean Delvare10c08f82005-06-06 19:34:45 +020084#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040085#include <linux/hwmon.h>
86#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010087#include <linux/mutex.h>
Jean Delvare0e39e012006-09-24 21:16:40 +020088#include <linux/sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070089
90/*
91 * Addresses to scan
92 * Address is fully defined internally and cannot be changed except for
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -040093 * MAX6659, MAX6680 and MAX6681.
Guenter Roeck5a4e5e62011-04-29 16:33:35 +020094 * LM86, LM89, LM90, LM99, ADM1032, ADM1032-1, ADT7461, ADT7461A, MAX6649,
95 * MAX6657, MAX6658, NCT1008 and W83L771 have address 0x4c.
96 * ADM1032-2, ADT7461-2, ADT7461A-2, LM89-1, LM99-1, MAX6646, and NCT1008D
97 * have address 0x4d.
Ben Hutchings271dabf2008-10-17 17:51:11 +020098 * MAX6647 has address 0x4e.
Guenter Roeck13c84952010-10-28 20:31:43 +020099 * MAX6659 can have address 0x4c, 0x4d or 0x4e.
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -0400100 * MAX6680 and MAX6681 can have address 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b,
101 * 0x4c, 0x4d or 0x4e.
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000102 * SA56004 can have address 0x48 through 0x4F.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 */
104
Mark M. Hoffman25e9c862008-02-17 22:28:03 -0500105static const unsigned short normal_i2c[] = {
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000106 0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x48, 0x49, 0x4a, 0x4b, 0x4c,
107 0x4d, 0x4e, 0x4f, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108
Guenter Roeck13c84952010-10-28 20:31:43 +0200109enum chips { lm90, adm1032, lm99, lm86, max6657, max6659, adt7461, max6680,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000110 max6646, w83l771, max6696, sa56004 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111
112/*
113 * The LM90 registers
114 */
115
116#define LM90_REG_R_MAN_ID 0xFE
117#define LM90_REG_R_CHIP_ID 0xFF
118#define LM90_REG_R_CONFIG1 0x03
119#define LM90_REG_W_CONFIG1 0x09
120#define LM90_REG_R_CONFIG2 0xBF
121#define LM90_REG_W_CONFIG2 0xBF
122#define LM90_REG_R_CONVRATE 0x04
123#define LM90_REG_W_CONVRATE 0x0A
124#define LM90_REG_R_STATUS 0x02
125#define LM90_REG_R_LOCAL_TEMP 0x00
126#define LM90_REG_R_LOCAL_HIGH 0x05
127#define LM90_REG_W_LOCAL_HIGH 0x0B
128#define LM90_REG_R_LOCAL_LOW 0x06
129#define LM90_REG_W_LOCAL_LOW 0x0C
130#define LM90_REG_R_LOCAL_CRIT 0x20
131#define LM90_REG_W_LOCAL_CRIT 0x20
132#define LM90_REG_R_REMOTE_TEMPH 0x01
133#define LM90_REG_R_REMOTE_TEMPL 0x10
134#define LM90_REG_R_REMOTE_OFFSH 0x11
135#define LM90_REG_W_REMOTE_OFFSH 0x11
136#define LM90_REG_R_REMOTE_OFFSL 0x12
137#define LM90_REG_W_REMOTE_OFFSL 0x12
138#define LM90_REG_R_REMOTE_HIGHH 0x07
139#define LM90_REG_W_REMOTE_HIGHH 0x0D
140#define LM90_REG_R_REMOTE_HIGHL 0x13
141#define LM90_REG_W_REMOTE_HIGHL 0x13
142#define LM90_REG_R_REMOTE_LOWH 0x08
143#define LM90_REG_W_REMOTE_LOWH 0x0E
144#define LM90_REG_R_REMOTE_LOWL 0x14
145#define LM90_REG_W_REMOTE_LOWL 0x14
146#define LM90_REG_R_REMOTE_CRIT 0x19
147#define LM90_REG_W_REMOTE_CRIT 0x19
148#define LM90_REG_R_TCRIT_HYST 0x21
149#define LM90_REG_W_TCRIT_HYST 0x21
150
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200151/* MAX6646/6647/6649/6657/6658/6659/6695/6696 registers */
Jean Delvaref65e1702008-10-17 17:51:09 +0200152
153#define MAX6657_REG_R_LOCAL_TEMPL 0x11
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200154#define MAX6696_REG_R_STATUS2 0x12
Guenter Roeck69487082010-10-28 20:31:43 +0200155#define MAX6659_REG_R_REMOTE_EMERG 0x16
156#define MAX6659_REG_W_REMOTE_EMERG 0x16
157#define MAX6659_REG_R_LOCAL_EMERG 0x17
158#define MAX6659_REG_W_LOCAL_EMERG 0x17
Jean Delvaref65e1702008-10-17 17:51:09 +0200159
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000160/* SA56004 registers */
161
162#define SA56004_REG_R_LOCAL_TEMPL 0x22
163
Guenter Roeck0c01b642010-10-28 20:31:44 +0200164#define LM90_DEF_CONVRATE_RVAL 6 /* Def conversion rate register value */
165#define LM90_MAX_CONVRATE_MS 16000 /* Maximum conversion rate in ms */
166
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167/*
Nate Case23b2d472008-10-17 17:51:10 +0200168 * Device flags
169 */
Guenter Roeck88073bb2010-10-28 20:31:43 +0200170#define LM90_FLAG_ADT7461_EXT (1 << 0) /* ADT7461 extended mode */
171/* Device features */
172#define LM90_HAVE_OFFSET (1 << 1) /* temperature offset register */
Guenter Roeck88073bb2010-10-28 20:31:43 +0200173#define LM90_HAVE_REM_LIMIT_EXT (1 << 3) /* extended remote limit */
Guenter Roeck69487082010-10-28 20:31:43 +0200174#define LM90_HAVE_EMERGENCY (1 << 4) /* 3rd upper (emergency) limit */
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200175#define LM90_HAVE_EMERGENCY_ALARM (1 << 5)/* emergency alarm */
176#define LM90_HAVE_TEMP3 (1 << 6) /* 3rd temperature sensor */
Guenter Roeck11793242010-10-28 20:31:44 +0200177#define LM90_HAVE_BROKEN_ALERT (1 << 7) /* Broken alert */
Nate Case23b2d472008-10-17 17:51:10 +0200178
179/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700180 * Driver data (common to all clients)
181 */
182
Jean Delvare9b0e8522008-07-16 19:30:15 +0200183static const struct i2c_device_id lm90_id[] = {
184 { "adm1032", adm1032 },
185 { "adt7461", adt7461 },
Guenter Roeck5a4e5e62011-04-29 16:33:35 +0200186 { "adt7461a", adt7461 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200187 { "lm90", lm90 },
188 { "lm86", lm86 },
Jean Delvare97ae60b2008-10-26 17:04:39 +0100189 { "lm89", lm86 },
190 { "lm99", lm99 },
Ben Hutchings271dabf2008-10-17 17:51:11 +0200191 { "max6646", max6646 },
192 { "max6647", max6646 },
193 { "max6649", max6646 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200194 { "max6657", max6657 },
195 { "max6658", max6657 },
Guenter Roeck13c84952010-10-28 20:31:43 +0200196 { "max6659", max6659 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200197 { "max6680", max6680 },
198 { "max6681", max6680 },
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200199 { "max6695", max6696 },
200 { "max6696", max6696 },
Guenter Roeck5a4e5e62011-04-29 16:33:35 +0200201 { "nct1008", adt7461 },
Jean Delvare6771ea12010-03-05 22:17:13 +0100202 { "w83l771", w83l771 },
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000203 { "sa56004", sa56004 },
Jean Delvare9b0e8522008-07-16 19:30:15 +0200204 { }
205};
206MODULE_DEVICE_TABLE(i2c, lm90_id);
207
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208/*
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200209 * chip type specific parameters
210 */
211struct lm90_params {
212 u32 flags; /* Capabilities */
213 u16 alert_alarms; /* Which alarm bits trigger ALERT# */
214 /* Upper 8 bits for max6695/96 */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200215 u8 max_convrate; /* Maximum conversion rate register value */
Jean Delvarea095f682011-07-27 23:22:25 -0700216 u8 reg_local_ext; /* Extended local temp register (optional) */
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200217};
218
219static const struct lm90_params lm90_params[] = {
220 [adm1032] = {
Guenter Roeck11793242010-10-28 20:31:44 +0200221 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
222 | LM90_HAVE_BROKEN_ALERT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200223 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200224 .max_convrate = 10,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200225 },
226 [adt7461] = {
Guenter Roeck11793242010-10-28 20:31:44 +0200227 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT
228 | LM90_HAVE_BROKEN_ALERT,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200229 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200230 .max_convrate = 10,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200231 },
232 [lm86] = {
233 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
234 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200235 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200236 },
237 [lm90] = {
238 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
239 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200240 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200241 },
242 [lm99] = {
243 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
244 .alert_alarms = 0x7b,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200245 .max_convrate = 9,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200246 },
247 [max6646] = {
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200248 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200249 .max_convrate = 6,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000250 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200251 },
252 [max6657] = {
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200253 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200254 .max_convrate = 8,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000255 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200256 },
257 [max6659] = {
Jean Delvarea095f682011-07-27 23:22:25 -0700258 .flags = LM90_HAVE_EMERGENCY,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200259 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200260 .max_convrate = 8,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000261 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200262 },
263 [max6680] = {
264 .flags = LM90_HAVE_OFFSET,
265 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200266 .max_convrate = 7,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200267 },
268 [max6696] = {
Jean Delvarea095f682011-07-27 23:22:25 -0700269 .flags = LM90_HAVE_EMERGENCY
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200270 | LM90_HAVE_EMERGENCY_ALARM | LM90_HAVE_TEMP3,
271 .alert_alarms = 0x187c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200272 .max_convrate = 6,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000273 .reg_local_ext = MAX6657_REG_R_LOCAL_TEMPL,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200274 },
275 [w83l771] = {
276 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
277 .alert_alarms = 0x7c,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200278 .max_convrate = 8,
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200279 },
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000280 [sa56004] = {
Jean Delvarea095f682011-07-27 23:22:25 -0700281 .flags = LM90_HAVE_OFFSET | LM90_HAVE_REM_LIMIT_EXT,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000282 .alert_alarms = 0x7b,
283 .max_convrate = 9,
284 .reg_local_ext = SA56004_REG_R_LOCAL_TEMPL,
285 },
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200286};
287
288/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 * Client data (each client gets its own)
290 */
291
292struct lm90_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700293 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100294 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 char valid; /* zero until following fields are valid */
296 unsigned long last_updated; /* in jiffies */
297 int kind;
Guenter Roeck4667bcb2010-10-28 20:31:43 +0200298 u32 flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299
Guenter Roeck0c01b642010-10-28 20:31:44 +0200300 int update_interval; /* in milliseconds */
301
Jean Delvare95238362010-03-05 22:17:14 +0100302 u8 config_orig; /* Original configuration register value */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200303 u8 convrate_orig; /* Original conversion rate register value */
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200304 u16 alert_alarms; /* Which alarm bits trigger ALERT# */
305 /* Upper 8 bits for max6695/96 */
Guenter Roeck0c01b642010-10-28 20:31:44 +0200306 u8 max_convrate; /* Maximum conversion rate */
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000307 u8 reg_local_ext; /* local extension register offset */
Jean Delvare95238362010-03-05 22:17:14 +0100308
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 /* registers values */
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200310 s8 temp8[8]; /* 0: local low limit
Guenter Roeckf36ffea2012-03-23 10:02:18 +0100311 * 1: local high limit
312 * 2: local critical limit
313 * 3: remote critical limit
314 * 4: local emergency limit (max6659 and max6695/96)
315 * 5: remote emergency limit (max6659 and max6695/96)
316 * 6: remote 2 critical limit (max6695/96 only)
317 * 7: remote 2 emergency limit (max6695/96 only)
318 */
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200319 s16 temp11[8]; /* 0: remote input
Guenter Roeckf36ffea2012-03-23 10:02:18 +0100320 * 1: remote low limit
321 * 2: remote high limit
322 * 3: remote offset (except max6646, max6657/58/59,
323 * and max6695/96)
324 * 4: local input
325 * 5: remote 2 input (max6695/96 only)
326 * 6: remote 2 low limit (max6695/96 only)
327 * 7: remote 2 high limit (max6695/96 only)
328 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329 u8 temp_hyst;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200330 u16 alarms; /* bitvector (upper 8 bits for max6695/96) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331};
332
333/*
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200334 * Support functions
335 */
336
337/*
338 * The ADM1032 supports PEC but not on write byte transactions, so we need
339 * to explicitly ask for a transaction without PEC.
340 */
341static inline s32 adm1032_write_byte(struct i2c_client *client, u8 value)
342{
343 return i2c_smbus_xfer(client->adapter, client->addr,
344 client->flags & ~I2C_CLIENT_PEC,
345 I2C_SMBUS_WRITE, value, I2C_SMBUS_BYTE, NULL);
346}
347
348/*
349 * It is assumed that client->update_lock is held (unless we are in
350 * detection or initialization steps). This matters when PEC is enabled,
351 * because we don't want the address pointer to change between the write
352 * byte and the read byte transactions.
353 */
354static int lm90_read_reg(struct i2c_client *client, u8 reg, u8 *value)
355{
356 int err;
357
358 if (client->flags & I2C_CLIENT_PEC) {
359 err = adm1032_write_byte(client, reg);
360 if (err >= 0)
361 err = i2c_smbus_read_byte(client);
362 } else
363 err = i2c_smbus_read_byte_data(client, reg);
364
365 if (err < 0) {
366 dev_warn(&client->dev, "Register %#02x read failed (%d)\n",
367 reg, err);
368 return err;
369 }
370 *value = err;
371
372 return 0;
373}
374
375static int lm90_read16(struct i2c_client *client, u8 regh, u8 regl, u16 *value)
376{
377 int err;
378 u8 oldh, newh, l;
379
380 /*
381 * There is a trick here. We have to read two registers to have the
382 * sensor temperature, but we have to beware a conversion could occur
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300383 * between the readings. The datasheet says we should either use
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200384 * the one-shot conversion register, which we don't want to do
385 * (disables hardware monitoring) or monitor the busy bit, which is
386 * impossible (we can't read the values and monitor that bit at the
387 * exact same time). So the solution used here is to read the high
388 * byte once, then the low byte, then the high byte again. If the new
389 * high byte matches the old one, then we have a valid reading. Else
390 * we have to read the low byte again, and now we believe we have a
391 * correct reading.
392 */
393 if ((err = lm90_read_reg(client, regh, &oldh))
394 || (err = lm90_read_reg(client, regl, &l))
395 || (err = lm90_read_reg(client, regh, &newh)))
396 return err;
397 if (oldh != newh) {
398 err = lm90_read_reg(client, regl, &l);
399 if (err)
400 return err;
401 }
402 *value = (newh << 8) | l;
403
404 return 0;
405}
406
407/*
408 * client->update_lock must be held when calling this function (unless we are
409 * in detection or initialization steps), and while a remote channel other
410 * than channel 0 is selected. Also, calling code must make sure to re-select
411 * external channel 0 before releasing the lock. This is necessary because
412 * various registers have different meanings as a result of selecting a
413 * non-default remote channel.
414 */
415static inline void lm90_select_remote_channel(struct i2c_client *client,
416 struct lm90_data *data,
417 int channel)
418{
419 u8 config;
420
421 if (data->kind == max6696) {
422 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
423 config &= ~0x08;
424 if (channel)
425 config |= 0x08;
426 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
427 config);
428 }
429}
430
Guenter Roeck0c01b642010-10-28 20:31:44 +0200431/*
432 * Set conversion rate.
433 * client->update_lock must be held when calling this function (unless we are
434 * in detection or initialization steps).
435 */
436static void lm90_set_convrate(struct i2c_client *client, struct lm90_data *data,
437 unsigned int interval)
438{
439 int i;
440 unsigned int update_interval;
441
442 /* Shift calculations to avoid rounding errors */
443 interval <<= 6;
444
445 /* find the nearest update rate */
446 for (i = 0, update_interval = LM90_MAX_CONVRATE_MS << 6;
447 i < data->max_convrate; i++, update_interval >>= 1)
448 if (interval >= update_interval * 3 / 4)
449 break;
450
451 i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE, i);
452 data->update_interval = DIV_ROUND_CLOSEST(update_interval, 64);
453}
454
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200455static struct lm90_data *lm90_update_device(struct device *dev)
456{
457 struct i2c_client *client = to_i2c_client(dev);
458 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200459 unsigned long next_update;
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200460
461 mutex_lock(&data->update_lock);
462
Guenter Roeck0c01b642010-10-28 20:31:44 +0200463 next_update = data->last_updated
464 + msecs_to_jiffies(data->update_interval) + 1;
465 if (time_after(jiffies, next_update) || !data->valid) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200466 u8 h, l;
467 u8 alarms;
468
469 dev_dbg(&client->dev, "Updating lm90 data.\n");
470 lm90_read_reg(client, LM90_REG_R_LOCAL_LOW, &data->temp8[0]);
471 lm90_read_reg(client, LM90_REG_R_LOCAL_HIGH, &data->temp8[1]);
472 lm90_read_reg(client, LM90_REG_R_LOCAL_CRIT, &data->temp8[2]);
473 lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT, &data->temp8[3]);
474 lm90_read_reg(client, LM90_REG_R_TCRIT_HYST, &data->temp_hyst);
475
Jean Delvarea095f682011-07-27 23:22:25 -0700476 if (data->reg_local_ext) {
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200477 lm90_read16(client, LM90_REG_R_LOCAL_TEMP,
Stijn Devriendt2ef01792011-06-06 10:40:45 +0000478 data->reg_local_ext,
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200479 &data->temp11[4]);
480 } else {
481 if (lm90_read_reg(client, LM90_REG_R_LOCAL_TEMP,
482 &h) == 0)
483 data->temp11[4] = h << 8;
484 }
485 lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
486 LM90_REG_R_REMOTE_TEMPL, &data->temp11[0]);
487
488 if (lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH, &h) == 0) {
489 data->temp11[1] = h << 8;
490 if ((data->flags & LM90_HAVE_REM_LIMIT_EXT)
491 && lm90_read_reg(client, LM90_REG_R_REMOTE_LOWL,
492 &l) == 0)
493 data->temp11[1] |= l;
494 }
495 if (lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH, &h) == 0) {
496 data->temp11[2] = h << 8;
497 if ((data->flags & LM90_HAVE_REM_LIMIT_EXT)
498 && lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHL,
499 &l) == 0)
500 data->temp11[2] |= l;
501 }
502
503 if (data->flags & LM90_HAVE_OFFSET) {
504 if (lm90_read_reg(client, LM90_REG_R_REMOTE_OFFSH,
505 &h) == 0
506 && lm90_read_reg(client, LM90_REG_R_REMOTE_OFFSL,
507 &l) == 0)
508 data->temp11[3] = (h << 8) | l;
509 }
510 if (data->flags & LM90_HAVE_EMERGENCY) {
511 lm90_read_reg(client, MAX6659_REG_R_LOCAL_EMERG,
512 &data->temp8[4]);
513 lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG,
514 &data->temp8[5]);
515 }
516 lm90_read_reg(client, LM90_REG_R_STATUS, &alarms);
517 data->alarms = alarms; /* save as 16 bit value */
518
519 if (data->kind == max6696) {
520 lm90_select_remote_channel(client, data, 1);
521 lm90_read_reg(client, LM90_REG_R_REMOTE_CRIT,
522 &data->temp8[6]);
523 lm90_read_reg(client, MAX6659_REG_R_REMOTE_EMERG,
524 &data->temp8[7]);
525 lm90_read16(client, LM90_REG_R_REMOTE_TEMPH,
526 LM90_REG_R_REMOTE_TEMPL, &data->temp11[5]);
527 if (!lm90_read_reg(client, LM90_REG_R_REMOTE_LOWH, &h))
528 data->temp11[6] = h << 8;
529 if (!lm90_read_reg(client, LM90_REG_R_REMOTE_HIGHH, &h))
530 data->temp11[7] = h << 8;
531 lm90_select_remote_channel(client, data, 0);
532
533 if (!lm90_read_reg(client, MAX6696_REG_R_STATUS2,
534 &alarms))
535 data->alarms |= alarms << 8;
536 }
537
Guenter Roeckf36ffea2012-03-23 10:02:18 +0100538 /*
539 * Re-enable ALERT# output if it was originally enabled and
540 * relevant alarms are all clear
541 */
Guenter Roeck15b66ab2010-10-28 20:31:43 +0200542 if ((data->config_orig & 0x80) == 0
543 && (data->alarms & data->alert_alarms) == 0) {
544 u8 config;
545
546 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
547 if (config & 0x80) {
548 dev_dbg(&client->dev, "Re-enabling ALERT#\n");
549 i2c_smbus_write_byte_data(client,
550 LM90_REG_W_CONFIG1,
551 config & ~0x80);
552 }
553 }
554
555 data->last_updated = jiffies;
556 data->valid = 1;
557 }
558
559 mutex_unlock(&data->update_lock);
560
561 return data;
562}
563
564/*
Nate Casecea50fe2008-10-17 17:51:10 +0200565 * Conversions
566 * For local temperatures and limits, critical limits and the hysteresis
567 * value, the LM90 uses signed 8-bit values with LSB = 1 degree Celsius.
568 * For remote temperatures and limits, it uses signed 11-bit values with
Ben Hutchings271dabf2008-10-17 17:51:11 +0200569 * LSB = 0.125 degree Celsius, left-justified in 16-bit registers. Some
570 * Maxim chips use unsigned values.
Nate Casecea50fe2008-10-17 17:51:10 +0200571 */
572
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200573static inline int temp_from_s8(s8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200574{
575 return val * 1000;
576}
577
Ben Hutchings271dabf2008-10-17 17:51:11 +0200578static inline int temp_from_u8(u8 val)
579{
580 return val * 1000;
581}
582
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200583static inline int temp_from_s16(s16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200584{
585 return val / 32 * 125;
586}
587
Ben Hutchings271dabf2008-10-17 17:51:11 +0200588static inline int temp_from_u16(u16 val)
589{
590 return val / 32 * 125;
591}
592
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200593static s8 temp_to_s8(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200594{
595 if (val <= -128000)
596 return -128;
597 if (val >= 127000)
598 return 127;
599 if (val < 0)
600 return (val - 500) / 1000;
601 return (val + 500) / 1000;
602}
603
Ben Hutchings271dabf2008-10-17 17:51:11 +0200604static u8 temp_to_u8(long val)
605{
606 if (val <= 0)
607 return 0;
608 if (val >= 255000)
609 return 255;
610 return (val + 500) / 1000;
611}
612
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200613static s16 temp_to_s16(long val)
Nate Casecea50fe2008-10-17 17:51:10 +0200614{
615 if (val <= -128000)
616 return 0x8000;
617 if (val >= 127875)
618 return 0x7FE0;
619 if (val < 0)
620 return (val - 62) / 125 * 32;
621 return (val + 62) / 125 * 32;
622}
623
624static u8 hyst_to_reg(long val)
625{
626 if (val <= 0)
627 return 0;
628 if (val >= 30500)
629 return 31;
630 return (val + 500) / 1000;
631}
632
633/*
Nate Case23b2d472008-10-17 17:51:10 +0200634 * ADT7461 in compatibility mode is almost identical to LM90 except that
635 * attempts to write values that are outside the range 0 < temp < 127 are
636 * treated as the boundary value.
637 *
638 * ADT7461 in "extended mode" operation uses unsigned integers offset by
639 * 64 (e.g., 0 -> -64 degC). The range is restricted to -64..191 degC.
Nate Casecea50fe2008-10-17 17:51:10 +0200640 */
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200641static inline int temp_from_u8_adt7461(struct lm90_data *data, u8 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200642{
Nate Case23b2d472008-10-17 17:51:10 +0200643 if (data->flags & LM90_FLAG_ADT7461_EXT)
644 return (val - 64) * 1000;
645 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200646 return temp_from_s8(val);
Nate Casecea50fe2008-10-17 17:51:10 +0200647}
648
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200649static inline int temp_from_u16_adt7461(struct lm90_data *data, u16 val)
Nate Casecea50fe2008-10-17 17:51:10 +0200650{
Nate Case23b2d472008-10-17 17:51:10 +0200651 if (data->flags & LM90_FLAG_ADT7461_EXT)
652 return (val - 0x4000) / 64 * 250;
653 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200654 return temp_from_s16(val);
Nate Case23b2d472008-10-17 17:51:10 +0200655}
656
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200657static u8 temp_to_u8_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200658{
659 if (data->flags & LM90_FLAG_ADT7461_EXT) {
660 if (val <= -64000)
661 return 0;
662 if (val >= 191000)
663 return 0xFF;
664 return (val + 500 + 64000) / 1000;
665 } else {
666 if (val <= 0)
667 return 0;
668 if (val >= 127000)
669 return 127;
670 return (val + 500) / 1000;
671 }
672}
673
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200674static u16 temp_to_u16_adt7461(struct lm90_data *data, long val)
Nate Case23b2d472008-10-17 17:51:10 +0200675{
676 if (data->flags & LM90_FLAG_ADT7461_EXT) {
677 if (val <= -64000)
678 return 0;
679 if (val >= 191750)
680 return 0xFFC0;
681 return (val + 64000 + 125) / 250 * 64;
682 } else {
683 if (val <= 0)
684 return 0;
685 if (val >= 127750)
686 return 0x7FC0;
687 return (val + 125) / 250 * 64;
688 }
Nate Casecea50fe2008-10-17 17:51:10 +0200689}
690
691/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692 * Sysfs stuff
693 */
694
Jean Delvare30d73942005-06-05 21:27:28 +0200695static ssize_t show_temp8(struct device *dev, struct device_attribute *devattr,
696 char *buf)
697{
698 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
699 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200700 int temp;
701
702 if (data->kind == adt7461)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200703 temp = temp_from_u8_adt7461(data, data->temp8[attr->index]);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200704 else if (data->kind == max6646)
705 temp = temp_from_u8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200706 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200707 temp = temp_from_s8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200708
Jean Delvare97ae60b2008-10-26 17:04:39 +0100709 /* +16 degrees offset for temp2 for the LM99 */
710 if (data->kind == lm99 && attr->index == 3)
711 temp += 16000;
712
Nate Case23b2d472008-10-17 17:51:10 +0200713 return sprintf(buf, "%d\n", temp);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
Jean Delvare30d73942005-06-05 21:27:28 +0200716static ssize_t set_temp8(struct device *dev, struct device_attribute *devattr,
717 const char *buf, size_t count)
718{
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200719 static const u8 reg[8] = {
Jean Delvare30d73942005-06-05 21:27:28 +0200720 LM90_REG_W_LOCAL_LOW,
721 LM90_REG_W_LOCAL_HIGH,
722 LM90_REG_W_LOCAL_CRIT,
723 LM90_REG_W_REMOTE_CRIT,
Guenter Roeck69487082010-10-28 20:31:43 +0200724 MAX6659_REG_W_LOCAL_EMERG,
725 MAX6659_REG_W_REMOTE_EMERG,
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200726 LM90_REG_W_REMOTE_CRIT,
727 MAX6659_REG_W_REMOTE_EMERG,
Jean Delvare30d73942005-06-05 21:27:28 +0200728 };
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729
Jean Delvare30d73942005-06-05 21:27:28 +0200730 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
731 struct i2c_client *client = to_i2c_client(dev);
732 struct lm90_data *data = i2c_get_clientdata(client);
Jean Delvare30d73942005-06-05 21:27:28 +0200733 int nr = attr->index;
Guenter Roeck11e57812010-10-28 20:31:42 +0200734 long val;
735 int err;
736
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100737 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200738 if (err < 0)
739 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740
Jean Delvare97ae60b2008-10-26 17:04:39 +0100741 /* +16 degrees offset for temp2 for the LM99 */
742 if (data->kind == lm99 && attr->index == 3)
743 val -= 16000;
744
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100745 mutex_lock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200746 if (data->kind == adt7461)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200747 data->temp8[nr] = temp_to_u8_adt7461(data, val);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200748 else if (data->kind == max6646)
749 data->temp8[nr] = temp_to_u8(val);
Jean Delvare30d73942005-06-05 21:27:28 +0200750 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200751 data->temp8[nr] = temp_to_s8(val);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200752
753 lm90_select_remote_channel(client, data, nr >= 6);
Jean Delvaref65e1702008-10-17 17:51:09 +0200754 i2c_smbus_write_byte_data(client, reg[nr], data->temp8[nr]);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200755 lm90_select_remote_channel(client, data, 0);
756
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100757 mutex_unlock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200758 return count;
759}
760
761static ssize_t show_temp11(struct device *dev, struct device_attribute *devattr,
762 char *buf)
763{
Guenter Roeck96512862010-10-28 20:31:43 +0200764 struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
Jean Delvare30d73942005-06-05 21:27:28 +0200765 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200766 int temp;
767
768 if (data->kind == adt7461)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200769 temp = temp_from_u16_adt7461(data, data->temp11[attr->index]);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200770 else if (data->kind == max6646)
771 temp = temp_from_u16(data->temp11[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200772 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200773 temp = temp_from_s16(data->temp11[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200774
Jean Delvare97ae60b2008-10-26 17:04:39 +0100775 /* +16 degrees offset for temp2 for the LM99 */
776 if (data->kind == lm99 && attr->index <= 2)
777 temp += 16000;
778
Nate Case23b2d472008-10-17 17:51:10 +0200779 return sprintf(buf, "%d\n", temp);
Jean Delvare30d73942005-06-05 21:27:28 +0200780}
781
782static ssize_t set_temp11(struct device *dev, struct device_attribute *devattr,
783 const char *buf, size_t count)
784{
Guenter Roeck96512862010-10-28 20:31:43 +0200785 struct {
786 u8 high;
787 u8 low;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200788 int channel;
789 } reg[5] = {
790 { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL, 0 },
791 { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL, 0 },
792 { LM90_REG_W_REMOTE_OFFSH, LM90_REG_W_REMOTE_OFFSL, 0 },
793 { LM90_REG_W_REMOTE_LOWH, LM90_REG_W_REMOTE_LOWL, 1 },
794 { LM90_REG_W_REMOTE_HIGHH, LM90_REG_W_REMOTE_HIGHL, 1 }
Jean Delvare30d73942005-06-05 21:27:28 +0200795 };
796
Guenter Roeck96512862010-10-28 20:31:43 +0200797 struct sensor_device_attribute_2 *attr = to_sensor_dev_attr_2(devattr);
Jean Delvare30d73942005-06-05 21:27:28 +0200798 struct i2c_client *client = to_i2c_client(dev);
799 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck96512862010-10-28 20:31:43 +0200800 int nr = attr->nr;
801 int index = attr->index;
Guenter Roeck11e57812010-10-28 20:31:42 +0200802 long val;
803 int err;
804
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100805 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200806 if (err < 0)
807 return err;
Jean Delvare30d73942005-06-05 21:27:28 +0200808
Jean Delvare97ae60b2008-10-26 17:04:39 +0100809 /* +16 degrees offset for temp2 for the LM99 */
Guenter Roeck96512862010-10-28 20:31:43 +0200810 if (data->kind == lm99 && index <= 2)
Jean Delvare97ae60b2008-10-26 17:04:39 +0100811 val -= 16000;
812
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100813 mutex_lock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200814 if (data->kind == adt7461)
Guenter Roeck96512862010-10-28 20:31:43 +0200815 data->temp11[index] = temp_to_u16_adt7461(data, val);
Ben Hutchings271dabf2008-10-17 17:51:11 +0200816 else if (data->kind == max6646)
Guenter Roeck96512862010-10-28 20:31:43 +0200817 data->temp11[index] = temp_to_u8(val) << 8;
Guenter Roeck88073bb2010-10-28 20:31:43 +0200818 else if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
Guenter Roeck96512862010-10-28 20:31:43 +0200819 data->temp11[index] = temp_to_s16(val);
Guenter Roeck88073bb2010-10-28 20:31:43 +0200820 else
Guenter Roeck96512862010-10-28 20:31:43 +0200821 data->temp11[index] = temp_to_s8(val) << 8;
Jean Delvare5f502a82008-10-17 17:51:09 +0200822
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200823 lm90_select_remote_channel(client, data, reg[nr].channel);
Guenter Roeck96512862010-10-28 20:31:43 +0200824 i2c_smbus_write_byte_data(client, reg[nr].high,
825 data->temp11[index] >> 8);
Guenter Roeck88073bb2010-10-28 20:31:43 +0200826 if (data->flags & LM90_HAVE_REM_LIMIT_EXT)
Guenter Roeck96512862010-10-28 20:31:43 +0200827 i2c_smbus_write_byte_data(client, reg[nr].low,
828 data->temp11[index] & 0xff);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +0200829 lm90_select_remote_channel(client, data, 0);
830
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100831 mutex_unlock(&data->update_lock);
Jean Delvare30d73942005-06-05 21:27:28 +0200832 return count;
833}
834
Guenter Roeck11e57812010-10-28 20:31:42 +0200835static ssize_t show_temphyst(struct device *dev,
836 struct device_attribute *devattr,
Jean Delvare30d73942005-06-05 21:27:28 +0200837 char *buf)
838{
839 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
840 struct lm90_data *data = lm90_update_device(dev);
Nate Case23b2d472008-10-17 17:51:10 +0200841 int temp;
842
843 if (data->kind == adt7461)
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200844 temp = temp_from_u8_adt7461(data, data->temp8[attr->index]);
Jean Delvareec38fa22008-10-26 17:04:39 +0100845 else if (data->kind == max6646)
846 temp = temp_from_u8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200847 else
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200848 temp = temp_from_s8(data->temp8[attr->index]);
Nate Case23b2d472008-10-17 17:51:10 +0200849
Jean Delvare97ae60b2008-10-26 17:04:39 +0100850 /* +16 degrees offset for temp2 for the LM99 */
851 if (data->kind == lm99 && attr->index == 3)
852 temp += 16000;
853
Ben Hutchings9d4d3832008-10-17 17:51:10 +0200854 return sprintf(buf, "%d\n", temp - temp_from_s8(data->temp_hyst));
Jean Delvare30d73942005-06-05 21:27:28 +0200855}
856
857static ssize_t set_temphyst(struct device *dev, struct device_attribute *dummy,
858 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859{
860 struct i2c_client *client = to_i2c_client(dev);
861 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck11e57812010-10-28 20:31:42 +0200862 long val;
863 int err;
Jean Delvareec38fa22008-10-26 17:04:39 +0100864 int temp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100866 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +0200867 if (err < 0)
868 return err;
869
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100870 mutex_lock(&data->update_lock);
Jean Delvareec38fa22008-10-26 17:04:39 +0100871 if (data->kind == adt7461)
872 temp = temp_from_u8_adt7461(data, data->temp8[2]);
873 else if (data->kind == max6646)
874 temp = temp_from_u8(data->temp8[2]);
875 else
876 temp = temp_from_s8(data->temp8[2]);
877
878 data->temp_hyst = hyst_to_reg(temp - val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 i2c_smbus_write_byte_data(client, LM90_REG_W_TCRIT_HYST,
Jean Delvareec38fa22008-10-26 17:04:39 +0100880 data->temp_hyst);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100881 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 return count;
883}
884
Jean Delvare30d73942005-06-05 21:27:28 +0200885static ssize_t show_alarms(struct device *dev, struct device_attribute *dummy,
886 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887{
888 struct lm90_data *data = lm90_update_device(dev);
889 return sprintf(buf, "%d\n", data->alarms);
890}
891
Jean Delvare2d457712006-09-24 20:52:15 +0200892static ssize_t show_alarm(struct device *dev, struct device_attribute
893 *devattr, char *buf)
894{
895 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
896 struct lm90_data *data = lm90_update_device(dev);
897 int bitnr = attr->index;
898
899 return sprintf(buf, "%d\n", (data->alarms >> bitnr) & 1);
900}
901
Guenter Roeck0c01b642010-10-28 20:31:44 +0200902static ssize_t show_update_interval(struct device *dev,
903 struct device_attribute *attr, char *buf)
904{
905 struct lm90_data *data = dev_get_drvdata(dev);
906
907 return sprintf(buf, "%u\n", data->update_interval);
908}
909
910static ssize_t set_update_interval(struct device *dev,
911 struct device_attribute *attr,
912 const char *buf, size_t count)
913{
914 struct i2c_client *client = to_i2c_client(dev);
915 struct lm90_data *data = i2c_get_clientdata(client);
916 unsigned long val;
917 int err;
918
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100919 err = kstrtoul(buf, 10, &val);
Guenter Roeck0c01b642010-10-28 20:31:44 +0200920 if (err)
921 return err;
922
923 mutex_lock(&data->update_lock);
Guenter Roeck6b101112012-01-16 22:51:47 +0100924 lm90_set_convrate(client, data, SENSORS_LIMIT(val, 0, 100000));
Guenter Roeck0c01b642010-10-28 20:31:44 +0200925 mutex_unlock(&data->update_lock);
926
927 return count;
928}
929
Guenter Roeck96512862010-10-28 20:31:43 +0200930static SENSOR_DEVICE_ATTR_2(temp1_input, S_IRUGO, show_temp11, NULL, 0, 4);
931static SENSOR_DEVICE_ATTR_2(temp2_input, S_IRUGO, show_temp11, NULL, 0, 0);
Jean Delvare30d73942005-06-05 21:27:28 +0200932static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp8,
Jean Delvaref65e1702008-10-17 17:51:09 +0200933 set_temp8, 0);
Guenter Roeck96512862010-10-28 20:31:43 +0200934static SENSOR_DEVICE_ATTR_2(temp2_min, S_IWUSR | S_IRUGO, show_temp11,
935 set_temp11, 0, 1);
Jean Delvare30d73942005-06-05 21:27:28 +0200936static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp8,
Jean Delvaref65e1702008-10-17 17:51:09 +0200937 set_temp8, 1);
Guenter Roeck96512862010-10-28 20:31:43 +0200938static SENSOR_DEVICE_ATTR_2(temp2_max, S_IWUSR | S_IRUGO, show_temp11,
939 set_temp11, 1, 2);
Jean Delvare30d73942005-06-05 21:27:28 +0200940static SENSOR_DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO, show_temp8,
Jean Delvaref65e1702008-10-17 17:51:09 +0200941 set_temp8, 2);
Jean Delvare30d73942005-06-05 21:27:28 +0200942static SENSOR_DEVICE_ATTR(temp2_crit, S_IWUSR | S_IRUGO, show_temp8,
Jean Delvaref65e1702008-10-17 17:51:09 +0200943 set_temp8, 3);
Jean Delvare30d73942005-06-05 21:27:28 +0200944static SENSOR_DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, show_temphyst,
Jean Delvaref65e1702008-10-17 17:51:09 +0200945 set_temphyst, 2);
946static SENSOR_DEVICE_ATTR(temp2_crit_hyst, S_IRUGO, show_temphyst, NULL, 3);
Guenter Roeck96512862010-10-28 20:31:43 +0200947static SENSOR_DEVICE_ATTR_2(temp2_offset, S_IWUSR | S_IRUGO, show_temp11,
948 set_temp11, 2, 3);
Jean Delvare2d457712006-09-24 20:52:15 +0200949
950/* Individual alarm files */
951static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 0);
952static SENSOR_DEVICE_ATTR(temp2_crit_alarm, S_IRUGO, show_alarm, NULL, 1);
Jean Delvare7817a392007-06-09 10:11:16 -0400953static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 2);
Jean Delvare2d457712006-09-24 20:52:15 +0200954static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3);
955static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 4);
956static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 5);
957static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 6);
958/* Raw alarm file for compatibility */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
960
Guenter Roeck0c01b642010-10-28 20:31:44 +0200961static DEVICE_ATTR(update_interval, S_IRUGO | S_IWUSR, show_update_interval,
962 set_update_interval);
963
Jean Delvare0e39e012006-09-24 21:16:40 +0200964static struct attribute *lm90_attributes[] = {
965 &sensor_dev_attr_temp1_input.dev_attr.attr,
966 &sensor_dev_attr_temp2_input.dev_attr.attr,
967 &sensor_dev_attr_temp1_min.dev_attr.attr,
968 &sensor_dev_attr_temp2_min.dev_attr.attr,
969 &sensor_dev_attr_temp1_max.dev_attr.attr,
970 &sensor_dev_attr_temp2_max.dev_attr.attr,
971 &sensor_dev_attr_temp1_crit.dev_attr.attr,
972 &sensor_dev_attr_temp2_crit.dev_attr.attr,
973 &sensor_dev_attr_temp1_crit_hyst.dev_attr.attr,
974 &sensor_dev_attr_temp2_crit_hyst.dev_attr.attr,
975
976 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
977 &sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
Jean Delvare7817a392007-06-09 10:11:16 -0400978 &sensor_dev_attr_temp2_fault.dev_attr.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +0200979 &sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
980 &sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
981 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
982 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
983 &dev_attr_alarms.attr,
Guenter Roeck0c01b642010-10-28 20:31:44 +0200984 &dev_attr_update_interval.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +0200985 NULL
986};
987
988static const struct attribute_group lm90_group = {
989 .attrs = lm90_attributes,
990};
991
Guenter Roeck69487082010-10-28 20:31:43 +0200992/*
993 * Additional attributes for devices with emergency sensors
994 */
995static SENSOR_DEVICE_ATTR(temp1_emergency, S_IWUSR | S_IRUGO, show_temp8,
996 set_temp8, 4);
997static SENSOR_DEVICE_ATTR(temp2_emergency, S_IWUSR | S_IRUGO, show_temp8,
998 set_temp8, 5);
999static SENSOR_DEVICE_ATTR(temp1_emergency_hyst, S_IRUGO, show_temphyst,
1000 NULL, 4);
1001static SENSOR_DEVICE_ATTR(temp2_emergency_hyst, S_IRUGO, show_temphyst,
1002 NULL, 5);
1003
1004static struct attribute *lm90_emergency_attributes[] = {
1005 &sensor_dev_attr_temp1_emergency.dev_attr.attr,
1006 &sensor_dev_attr_temp2_emergency.dev_attr.attr,
1007 &sensor_dev_attr_temp1_emergency_hyst.dev_attr.attr,
1008 &sensor_dev_attr_temp2_emergency_hyst.dev_attr.attr,
1009 NULL
1010};
1011
1012static const struct attribute_group lm90_emergency_group = {
1013 .attrs = lm90_emergency_attributes,
1014};
1015
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001016static SENSOR_DEVICE_ATTR(temp1_emergency_alarm, S_IRUGO, show_alarm, NULL, 15);
1017static SENSOR_DEVICE_ATTR(temp2_emergency_alarm, S_IRUGO, show_alarm, NULL, 13);
1018
1019static struct attribute *lm90_emergency_alarm_attributes[] = {
1020 &sensor_dev_attr_temp1_emergency_alarm.dev_attr.attr,
1021 &sensor_dev_attr_temp2_emergency_alarm.dev_attr.attr,
1022 NULL
1023};
1024
1025static const struct attribute_group lm90_emergency_alarm_group = {
1026 .attrs = lm90_emergency_alarm_attributes,
1027};
1028
1029/*
1030 * Additional attributes for devices with 3 temperature sensors
1031 */
1032static SENSOR_DEVICE_ATTR_2(temp3_input, S_IRUGO, show_temp11, NULL, 0, 5);
1033static SENSOR_DEVICE_ATTR_2(temp3_min, S_IWUSR | S_IRUGO, show_temp11,
1034 set_temp11, 3, 6);
1035static SENSOR_DEVICE_ATTR_2(temp3_max, S_IWUSR | S_IRUGO, show_temp11,
1036 set_temp11, 4, 7);
1037static SENSOR_DEVICE_ATTR(temp3_crit, S_IWUSR | S_IRUGO, show_temp8,
1038 set_temp8, 6);
1039static SENSOR_DEVICE_ATTR(temp3_crit_hyst, S_IRUGO, show_temphyst, NULL, 6);
1040static SENSOR_DEVICE_ATTR(temp3_emergency, S_IWUSR | S_IRUGO, show_temp8,
1041 set_temp8, 7);
1042static SENSOR_DEVICE_ATTR(temp3_emergency_hyst, S_IRUGO, show_temphyst,
1043 NULL, 7);
1044
1045static SENSOR_DEVICE_ATTR(temp3_crit_alarm, S_IRUGO, show_alarm, NULL, 9);
1046static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL, 10);
1047static SENSOR_DEVICE_ATTR(temp3_min_alarm, S_IRUGO, show_alarm, NULL, 11);
1048static SENSOR_DEVICE_ATTR(temp3_max_alarm, S_IRUGO, show_alarm, NULL, 12);
1049static SENSOR_DEVICE_ATTR(temp3_emergency_alarm, S_IRUGO, show_alarm, NULL, 14);
1050
1051static struct attribute *lm90_temp3_attributes[] = {
1052 &sensor_dev_attr_temp3_input.dev_attr.attr,
1053 &sensor_dev_attr_temp3_min.dev_attr.attr,
1054 &sensor_dev_attr_temp3_max.dev_attr.attr,
1055 &sensor_dev_attr_temp3_crit.dev_attr.attr,
1056 &sensor_dev_attr_temp3_crit_hyst.dev_attr.attr,
1057 &sensor_dev_attr_temp3_emergency.dev_attr.attr,
1058 &sensor_dev_attr_temp3_emergency_hyst.dev_attr.attr,
1059
1060 &sensor_dev_attr_temp3_fault.dev_attr.attr,
1061 &sensor_dev_attr_temp3_min_alarm.dev_attr.attr,
1062 &sensor_dev_attr_temp3_max_alarm.dev_attr.attr,
1063 &sensor_dev_attr_temp3_crit_alarm.dev_attr.attr,
1064 &sensor_dev_attr_temp3_emergency_alarm.dev_attr.attr,
1065 NULL
1066};
1067
1068static const struct attribute_group lm90_temp3_group = {
1069 .attrs = lm90_temp3_attributes,
1070};
1071
Jean Delvarec3df5802005-10-26 21:39:40 +02001072/* pec used for ADM1032 only */
1073static ssize_t show_pec(struct device *dev, struct device_attribute *dummy,
1074 char *buf)
1075{
1076 struct i2c_client *client = to_i2c_client(dev);
1077 return sprintf(buf, "%d\n", !!(client->flags & I2C_CLIENT_PEC));
1078}
1079
1080static ssize_t set_pec(struct device *dev, struct device_attribute *dummy,
1081 const char *buf, size_t count)
1082{
1083 struct i2c_client *client = to_i2c_client(dev);
Guenter Roeck11e57812010-10-28 20:31:42 +02001084 long val;
1085 int err;
1086
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001087 err = kstrtol(buf, 10, &val);
Guenter Roeck11e57812010-10-28 20:31:42 +02001088 if (err < 0)
1089 return err;
Jean Delvarec3df5802005-10-26 21:39:40 +02001090
1091 switch (val) {
1092 case 0:
1093 client->flags &= ~I2C_CLIENT_PEC;
1094 break;
1095 case 1:
1096 client->flags |= I2C_CLIENT_PEC;
1097 break;
1098 default:
1099 return -EINVAL;
1100 }
1101
1102 return count;
1103}
1104
1105static DEVICE_ATTR(pec, S_IWUSR | S_IRUGO, show_pec, set_pec);
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107/*
1108 * Real code
1109 */
1110
Jean Delvare9b0e8522008-07-16 19:30:15 +02001111/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001112static int lm90_detect(struct i2c_client *client,
Jean Delvare9b0e8522008-07-16 19:30:15 +02001113 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001114{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001115 struct i2c_adapter *adapter = client->adapter;
1116 int address = client->addr;
Jean Delvare8f2fa772009-12-09 20:35:53 +01001117 const char *name = NULL;
Jean Delvareb2589ab2011-11-04 12:00:47 +01001118 int man_id, chip_id, config1, config2, convrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001119
1120 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvare9b0e8522008-07-16 19:30:15 +02001121 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001122
Jean Delvare8f2fa772009-12-09 20:35:53 +01001123 /* detection and identification */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001124 man_id = i2c_smbus_read_byte_data(client, LM90_REG_R_MAN_ID);
1125 chip_id = i2c_smbus_read_byte_data(client, LM90_REG_R_CHIP_ID);
1126 config1 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG1);
1127 convrate = i2c_smbus_read_byte_data(client, LM90_REG_R_CONVRATE);
1128 if (man_id < 0 || chip_id < 0 || config1 < 0 || convrate < 0)
Jean Delvare8f2fa772009-12-09 20:35:53 +01001129 return -ENODEV;
1130
Jean Delvaref90be422011-07-24 20:37:05 +02001131 if (man_id == 0x01 || man_id == 0x5C || man_id == 0x41) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001132 config2 = i2c_smbus_read_byte_data(client, LM90_REG_R_CONFIG2);
1133 if (config2 < 0)
Jean Delvare9b0e8522008-07-16 19:30:15 +02001134 return -ENODEV;
Jean Delvaref90be422011-07-24 20:37:05 +02001135 } else
Jean Delvareb2589ab2011-11-04 12:00:47 +01001136 config2 = 0; /* Make compiler happy */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Jean Delvaref90be422011-07-24 20:37:05 +02001138 if ((address == 0x4C || address == 0x4D)
1139 && man_id == 0x01) { /* National Semiconductor */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001140 if ((config1 & 0x2A) == 0x00
1141 && (config2 & 0xF8) == 0x00
1142 && convrate <= 0x09) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001143 if (address == 0x4C
1144 && (chip_id & 0xF0) == 0x20) { /* LM90 */
1145 name = "lm90";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001147 if ((chip_id & 0xF0) == 0x30) { /* LM89/LM99 */
1148 name = "lm99";
1149 dev_info(&adapter->dev,
1150 "Assuming LM99 chip at 0x%02x\n",
1151 address);
1152 dev_info(&adapter->dev,
1153 "If it is an LM89, instantiate it "
1154 "with the new_device sysfs "
1155 "interface\n");
Rainer Birkenmaier32c82a92007-06-09 10:11:16 -04001156 } else
Jean Delvare8f2fa772009-12-09 20:35:53 +01001157 if (address == 0x4C
1158 && (chip_id & 0xF0) == 0x10) { /* LM86 */
1159 name = "lm86";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001160 }
1161 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001162 } else
1163 if ((address == 0x4C || address == 0x4D)
1164 && man_id == 0x41) { /* Analog Devices */
1165 if ((chip_id & 0xF0) == 0x40 /* ADM1032 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001166 && (config1 & 0x3F) == 0x00
1167 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001168 name = "adm1032";
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001169 /*
1170 * The ADM1032 supports PEC, but only if combined
1171 * transactions are not used.
1172 */
Jean Delvare8f2fa772009-12-09 20:35:53 +01001173 if (i2c_check_functionality(adapter,
1174 I2C_FUNC_SMBUS_BYTE))
1175 info->flags |= I2C_CLIENT_PEC;
1176 } else
1177 if (chip_id == 0x51 /* ADT7461 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001178 && (config1 & 0x1B) == 0x00
1179 && convrate <= 0x0A) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001180 name = "adt7461";
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001181 } else
1182 if (chip_id == 0x57 /* ADT7461A, NCT1008 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001183 && (config1 & 0x1B) == 0x00
1184 && convrate <= 0x0A) {
Guenter Roeck5a4e5e62011-04-29 16:33:35 +02001185 name = "adt7461a";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001186 }
1187 } else
1188 if (man_id == 0x4D) { /* Maxim */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001189 int emerg, emerg2, status2;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001190
1191 /*
1192 * We read MAX6659_REG_R_REMOTE_EMERG twice, and re-read
1193 * LM90_REG_R_MAN_ID in between. If MAX6659_REG_R_REMOTE_EMERG
1194 * exists, both readings will reflect the same value. Otherwise,
1195 * the readings will be different.
1196 */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001197 emerg = i2c_smbus_read_byte_data(client,
1198 MAX6659_REG_R_REMOTE_EMERG);
1199 man_id = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001200 LM90_REG_R_MAN_ID);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001201 emerg2 = i2c_smbus_read_byte_data(client,
Jean Delvare8dc089d2011-11-04 12:00:46 +01001202 MAX6659_REG_R_REMOTE_EMERG);
Jean Delvareb2589ab2011-11-04 12:00:47 +01001203 status2 = i2c_smbus_read_byte_data(client,
1204 MAX6696_REG_R_STATUS2);
1205 if (emerg < 0 || man_id < 0 || emerg2 < 0 || status2 < 0)
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001206 return -ENODEV;
1207
Jean Delvare8f2fa772009-12-09 20:35:53 +01001208 /*
1209 * The MAX6657, MAX6658 and MAX6659 do NOT have a chip_id
1210 * register. Reading from that address will return the last
1211 * read value, which in our case is those of the man_id
1212 * register. Likewise, the config1 register seems to lack a
1213 * low nibble, so the value will be those of the previous
1214 * read, so in our case those of the man_id register.
Guenter Roeck13c84952010-10-28 20:31:43 +02001215 * MAX6659 has a third set of upper temperature limit registers.
1216 * Those registers also return values on MAX6657 and MAX6658,
1217 * thus the only way to detect MAX6659 is by its address.
1218 * For this reason it will be mis-detected as MAX6657 if its
1219 * address is 0x4C.
Jean Delvare8f2fa772009-12-09 20:35:53 +01001220 */
1221 if (chip_id == man_id
Guenter Roeck13c84952010-10-28 20:31:43 +02001222 && (address == 0x4C || address == 0x4D || address == 0x4E)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001223 && (config1 & 0x1F) == (man_id & 0x0F)
1224 && convrate <= 0x09) {
Guenter Roeck13c84952010-10-28 20:31:43 +02001225 if (address == 0x4C)
1226 name = "max6657";
1227 else
1228 name = "max6659";
Jean Delvare8f2fa772009-12-09 20:35:53 +01001229 } else
1230 /*
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001231 * Even though MAX6695 and MAX6696 do not have a chip ID
1232 * register, reading it returns 0x01. Bit 4 of the config1
1233 * register is unused and should return zero when read. Bit 0 of
1234 * the status2 register is unused and should return zero when
1235 * read.
1236 *
1237 * MAX6695 and MAX6696 have an additional set of temperature
1238 * limit registers. We can detect those chips by checking if
1239 * one of those registers exists.
1240 */
1241 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001242 && (config1 & 0x10) == 0x00
1243 && (status2 & 0x01) == 0x00
1244 && emerg == emerg2
1245 && convrate <= 0x07) {
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001246 name = "max6696";
1247 } else
1248 /*
Jean Delvare8f2fa772009-12-09 20:35:53 +01001249 * The chip_id register of the MAX6680 and MAX6681 holds the
1250 * revision of the chip. The lowest bit of the config1 register
1251 * is unused and should return zero when read, so should the
1252 * second to last bit of config1 (software reset).
1253 */
1254 if (chip_id == 0x01
Jean Delvareb2589ab2011-11-04 12:00:47 +01001255 && (config1 & 0x03) == 0x00
1256 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001257 name = "max6680";
1258 } else
1259 /*
1260 * The chip_id register of the MAX6646/6647/6649 holds the
1261 * revision of the chip. The lowest 6 bits of the config1
1262 * register are unused and should return zero when read.
1263 */
1264 if (chip_id == 0x59
Jean Delvareb2589ab2011-11-04 12:00:47 +01001265 && (config1 & 0x3f) == 0x00
1266 && convrate <= 0x07) {
Jean Delvare8f2fa772009-12-09 20:35:53 +01001267 name = "max6646";
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001269 } else
1270 if (address == 0x4C
1271 && man_id == 0x5C) { /* Winbond/Nuvoton */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001272 if ((config1 & 0x2A) == 0x00
1273 && (config2 & 0xF8) == 0x00) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001274 if (chip_id == 0x01 /* W83L771W/G */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001275 && convrate <= 0x09) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001276 name = "w83l771";
1277 } else
1278 if ((chip_id & 0xFE) == 0x10 /* W83L771AWG/ASG */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001279 && convrate <= 0x08) {
Jean Delvarec4f99a22010-10-28 20:31:44 +02001280 name = "w83l771";
1281 }
Jean Delvare6771ea12010-03-05 22:17:13 +01001282 }
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001283 } else
Jean Delvare6d101c52011-07-24 20:36:15 +02001284 if (address >= 0x48 && address <= 0x4F
1285 && man_id == 0xA1) { /* NXP Semiconductor/Philips */
Jean Delvare6d101c52011-07-24 20:36:15 +02001286 if (chip_id == 0x00
Jean Delvareb2589ab2011-11-04 12:00:47 +01001287 && (config1 & 0x2A) == 0x00
1288 && (config2 & 0xFE) == 0x00
1289 && convrate <= 0x09) {
Stijn Devriendt2ef01792011-06-06 10:40:45 +00001290 name = "sa56004";
1291 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292 }
1293
Jean Delvare8f2fa772009-12-09 20:35:53 +01001294 if (!name) { /* identification failed */
1295 dev_dbg(&adapter->dev,
1296 "Unsupported chip at 0x%02x (man_id=0x%02X, "
1297 "chip_id=0x%02X)\n", address, man_id, chip_id);
1298 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001299 }
Jean Delvare8f2fa772009-12-09 20:35:53 +01001300
Jean Delvare9b0e8522008-07-16 19:30:15 +02001301 strlcpy(info->type, name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001302
Jean Delvare9b0e8522008-07-16 19:30:15 +02001303 return 0;
1304}
1305
Guenter Roeckb6fc1ba2010-10-28 20:31:43 +02001306static void lm90_remove_files(struct i2c_client *client, struct lm90_data *data)
1307{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001308 struct device *dev = &client->dev;
1309
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001310 if (data->flags & LM90_HAVE_TEMP3)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001311 sysfs_remove_group(&dev->kobj, &lm90_temp3_group);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001312 if (data->flags & LM90_HAVE_EMERGENCY_ALARM)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001313 sysfs_remove_group(&dev->kobj, &lm90_emergency_alarm_group);
Guenter Roeck69487082010-10-28 20:31:43 +02001314 if (data->flags & LM90_HAVE_EMERGENCY)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001315 sysfs_remove_group(&dev->kobj, &lm90_emergency_group);
Guenter Roeckb6fc1ba2010-10-28 20:31:43 +02001316 if (data->flags & LM90_HAVE_OFFSET)
Jean Delvareb2589ab2011-11-04 12:00:47 +01001317 device_remove_file(dev, &sensor_dev_attr_temp2_offset.dev_attr);
1318 device_remove_file(dev, &dev_attr_pec);
1319 sysfs_remove_group(&dev->kobj, &lm90_group);
Guenter Roeckb6fc1ba2010-10-28 20:31:43 +02001320}
1321
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001322static void lm90_init_client(struct i2c_client *client)
1323{
Guenter Roeck0c01b642010-10-28 20:31:44 +02001324 u8 config, convrate;
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001325 struct lm90_data *data = i2c_get_clientdata(client);
1326
Guenter Roeck0c01b642010-10-28 20:31:44 +02001327 if (lm90_read_reg(client, LM90_REG_R_CONVRATE, &convrate) < 0) {
1328 dev_warn(&client->dev, "Failed to read convrate register!\n");
1329 convrate = LM90_DEF_CONVRATE_RVAL;
1330 }
1331 data->convrate_orig = convrate;
1332
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001333 /*
1334 * Start the conversions.
1335 */
Guenter Roeck0c01b642010-10-28 20:31:44 +02001336 lm90_set_convrate(client, data, 500); /* 500ms; 2Hz conversion rate */
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001337 if (lm90_read_reg(client, LM90_REG_R_CONFIG1, &config) < 0) {
1338 dev_warn(&client->dev, "Initialization failed!\n");
1339 return;
1340 }
1341 data->config_orig = config;
1342
1343 /* Check Temperature Range Select */
1344 if (data->kind == adt7461) {
1345 if (config & 0x04)
1346 data->flags |= LM90_FLAG_ADT7461_EXT;
1347 }
1348
1349 /*
1350 * Put MAX6680/MAX8881 into extended resolution (bit 0x10,
1351 * 0.125 degree resolution) and range (0x08, extend range
1352 * to -64 degree) mode for the remote temperature sensor.
1353 */
1354 if (data->kind == max6680)
1355 config |= 0x18;
1356
1357 /*
1358 * Select external channel 0 for max6695/96
1359 */
1360 if (data->kind == max6696)
1361 config &= ~0x08;
1362
1363 config &= 0xBF; /* run */
1364 if (config != data->config_orig) /* Only write if changed */
1365 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1, config);
1366}
1367
Jean Delvareb2589ab2011-11-04 12:00:47 +01001368static int lm90_probe(struct i2c_client *client,
Jean Delvare9b0e8522008-07-16 19:30:15 +02001369 const struct i2c_device_id *id)
1370{
Jean Delvareb2589ab2011-11-04 12:00:47 +01001371 struct device *dev = &client->dev;
1372 struct i2c_adapter *adapter = to_i2c_adapter(dev->parent);
Jean Delvare9b0e8522008-07-16 19:30:15 +02001373 struct lm90_data *data;
1374 int err;
1375
1376 data = kzalloc(sizeof(struct lm90_data), GFP_KERNEL);
1377 if (!data) {
1378 err = -ENOMEM;
1379 goto exit;
1380 }
Jean Delvareb2589ab2011-11-04 12:00:47 +01001381 i2c_set_clientdata(client, data);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001382 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383
Jean Delvare9b0e8522008-07-16 19:30:15 +02001384 /* Set the device type */
1385 data->kind = id->driver_data;
1386 if (data->kind == adm1032) {
1387 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE))
Jean Delvareb2589ab2011-11-04 12:00:47 +01001388 client->flags &= ~I2C_CLIENT_PEC;
Jean Delvare9b0e8522008-07-16 19:30:15 +02001389 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001391 /*
1392 * Different devices have different alarm bits triggering the
1393 * ALERT# output
1394 */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001395 data->alert_alarms = lm90_params[data->kind].alert_alarms;
Jean Delvare53de3342010-03-05 22:17:15 +01001396
Guenter Roeck88073bb2010-10-28 20:31:43 +02001397 /* Set chip capabilities */
Guenter Roeck4667bcb2010-10-28 20:31:43 +02001398 data->flags = lm90_params[data->kind].flags;
Jean Delvarea095f682011-07-27 23:22:25 -07001399 data->reg_local_ext = lm90_params[data->kind].reg_local_ext;
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001400
Guenter Roeck0c01b642010-10-28 20:31:44 +02001401 /* Set maximum conversion rate */
1402 data->max_convrate = lm90_params[data->kind].max_convrate;
1403
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 /* Initialize the LM90 chip */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001405 lm90_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406
1407 /* Register sysfs hooks */
Jean Delvareb2589ab2011-11-04 12:00:47 +01001408 err = sysfs_create_group(&dev->kobj, &lm90_group);
Guenter Roeck11e57812010-10-28 20:31:42 +02001409 if (err)
Jean Delvare9b0e8522008-07-16 19:30:15 +02001410 goto exit_free;
Jean Delvareb2589ab2011-11-04 12:00:47 +01001411 if (client->flags & I2C_CLIENT_PEC) {
1412 err = device_create_file(dev, &dev_attr_pec);
Guenter Roeck11e57812010-10-28 20:31:42 +02001413 if (err)
Jean Delvare0e39e012006-09-24 21:16:40 +02001414 goto exit_remove_files;
1415 }
Guenter Roeck88073bb2010-10-28 20:31:43 +02001416 if (data->flags & LM90_HAVE_OFFSET) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001417 err = device_create_file(dev,
Guenter Roeck11e57812010-10-28 20:31:42 +02001418 &sensor_dev_attr_temp2_offset.dev_attr);
1419 if (err)
Jean Delvare69f2f962007-09-05 14:15:37 +02001420 goto exit_remove_files;
1421 }
Guenter Roeck69487082010-10-28 20:31:43 +02001422 if (data->flags & LM90_HAVE_EMERGENCY) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001423 err = sysfs_create_group(&dev->kobj, &lm90_emergency_group);
Guenter Roeck69487082010-10-28 20:31:43 +02001424 if (err)
1425 goto exit_remove_files;
1426 }
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001427 if (data->flags & LM90_HAVE_EMERGENCY_ALARM) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001428 err = sysfs_create_group(&dev->kobj,
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001429 &lm90_emergency_alarm_group);
1430 if (err)
1431 goto exit_remove_files;
1432 }
1433 if (data->flags & LM90_HAVE_TEMP3) {
Jean Delvareb2589ab2011-11-04 12:00:47 +01001434 err = sysfs_create_group(&dev->kobj, &lm90_temp3_group);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001435 if (err)
1436 goto exit_remove_files;
1437 }
Jean Delvare0e39e012006-09-24 21:16:40 +02001438
Jean Delvareb2589ab2011-11-04 12:00:47 +01001439 data->hwmon_dev = hwmon_device_register(dev);
Tony Jones1beeffe2007-08-20 13:46:20 -07001440 if (IS_ERR(data->hwmon_dev)) {
1441 err = PTR_ERR(data->hwmon_dev);
Jean Delvare0e39e012006-09-24 21:16:40 +02001442 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001443 }
1444
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 return 0;
1446
Jean Delvare0e39e012006-09-24 21:16:40 +02001447exit_remove_files:
Jean Delvareb2589ab2011-11-04 12:00:47 +01001448 lm90_remove_files(client, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449exit_free:
1450 kfree(data);
1451exit:
1452 return err;
1453}
1454
Jean Delvare9b0e8522008-07-16 19:30:15 +02001455static int lm90_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001457 struct lm90_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458
Tony Jones1beeffe2007-08-20 13:46:20 -07001459 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeckb6fc1ba2010-10-28 20:31:43 +02001460 lm90_remove_files(client, data);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001461
Jean Delvare95238362010-03-05 22:17:14 +01001462 /* Restore initial configuration */
Guenter Roeck0c01b642010-10-28 20:31:44 +02001463 i2c_smbus_write_byte_data(client, LM90_REG_W_CONVRATE,
1464 data->convrate_orig);
Jean Delvare95238362010-03-05 22:17:14 +01001465 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
1466 data->config_orig);
1467
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001468 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 return 0;
1470}
1471
Jean Delvare53de3342010-03-05 22:17:15 +01001472static void lm90_alert(struct i2c_client *client, unsigned int flag)
1473{
1474 struct lm90_data *data = i2c_get_clientdata(client);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001475 u8 config, alarms, alarms2 = 0;
Jean Delvare53de3342010-03-05 22:17:15 +01001476
1477 lm90_read_reg(client, LM90_REG_R_STATUS, &alarms);
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001478
1479 if (data->kind == max6696)
1480 lm90_read_reg(client, MAX6696_REG_R_STATUS2, &alarms2);
1481
1482 if ((alarms & 0x7f) == 0 && (alarms2 & 0xfe) == 0) {
Jean Delvare53de3342010-03-05 22:17:15 +01001483 dev_info(&client->dev, "Everything OK\n");
1484 } else {
1485 if (alarms & 0x61)
1486 dev_warn(&client->dev,
1487 "temp%d out of range, please check!\n", 1);
1488 if (alarms & 0x1a)
1489 dev_warn(&client->dev,
1490 "temp%d out of range, please check!\n", 2);
1491 if (alarms & 0x04)
1492 dev_warn(&client->dev,
1493 "temp%d diode open, please check!\n", 2);
1494
Guenter Roeck06e1c0a2010-10-28 20:31:43 +02001495 if (alarms2 & 0x18)
1496 dev_warn(&client->dev,
1497 "temp%d out of range, please check!\n", 3);
1498
Guenter Roeckf36ffea2012-03-23 10:02:18 +01001499 /*
1500 * Disable ALERT# output, because these chips don't implement
1501 * SMBus alert correctly; they should only hold the alert line
1502 * low briefly.
1503 */
Guenter Roeck11793242010-10-28 20:31:44 +02001504 if ((data->flags & LM90_HAVE_BROKEN_ALERT)
Jean Delvare53de3342010-03-05 22:17:15 +01001505 && (alarms & data->alert_alarms)) {
1506 dev_dbg(&client->dev, "Disabling ALERT#\n");
1507 lm90_read_reg(client, LM90_REG_R_CONFIG1, &config);
1508 i2c_smbus_write_byte_data(client, LM90_REG_W_CONFIG1,
1509 config | 0x80);
1510 }
1511 }
1512}
1513
Guenter Roeck15b66ab2010-10-28 20:31:43 +02001514static struct i2c_driver lm90_driver = {
1515 .class = I2C_CLASS_HWMON,
1516 .driver = {
1517 .name = "lm90",
1518 },
1519 .probe = lm90_probe,
1520 .remove = lm90_remove,
1521 .alert = lm90_alert,
1522 .id_table = lm90_id,
1523 .detect = lm90_detect,
1524 .address_list = normal_i2c,
1525};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001526
Axel Linf0967ee2012-01-20 15:38:18 +08001527module_i2c_driver(lm90_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528
1529MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
1530MODULE_DESCRIPTION("LM90/ADM1032 driver");
1531MODULE_LICENSE("GPL");