blob: a71c7492fc49adc58477bf67ec916151d5950d3b [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * lm87.c
3 *
4 * Copyright (C) 2000 Frodo Looijaard <frodol@dds.nl>
5 * Philip Edelbrock <phil@netroedge.com>
6 * Stephen Rousset <stephen.rousset@rocketlogix.com>
7 * Dan Eaton <dan.eaton@rocketlogix.com>
Jean Delvarea8884202008-07-16 19:30:14 +02008 * Copyright (C) 2004-2008 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 *
10 * Original port to Linux 2.6 by Jeff Oliver.
11 *
12 * The LM87 is a sensor chip made by National Semiconductor. It monitors up
13 * to 8 voltages (including its own power source), up to three temperatures
14 * (its own plus up to two external ones) and up to two fans. The default
15 * configuration is 6 voltages, two temperatures and two fans (see below).
16 * Voltages are scaled internally with ratios such that the nominal value of
17 * each voltage correspond to a register value of 192 (which means a
18 * resolution of about 0.5% of the nominal value). Temperature values are
19 * reported with a 1 deg resolution and a 3-4 deg accuracy. Complete
20 * datasheet can be obtained from National's website at:
21 * http://www.national.com/pf/LM/LM87.html
22 *
23 * Some functions share pins, so not all functions are available at the same
Ben Hutchings47064d62008-10-17 17:51:12 +020024 * time. Which are depends on the hardware setup. This driver normally
25 * assumes that firmware configured the chip correctly. Where this is not
26 * the case, platform code must set the I2C client's platform_data to point
27 * to a u8 value to be written to the channel register.
Linus Torvalds1da177e2005-04-16 15:20:36 -070028 * For reference, here is the list of exclusive functions:
29 * - in0+in5 (default) or temp3
30 * - fan1 (default) or in6
31 * - fan2 (default) or in7
32 * - VID lines (default) or IRQ lines (not handled by this driver)
33 *
34 * The LM87 additionally features an analog output, supposedly usable to
35 * control the speed of a fan. All new chips use pulse width modulation
36 * instead. The LM87 is the only hardware monitoring chipset I know of
37 * which uses amplitude modulation. Be careful when using this feature.
38 *
Jean Delvarec7fa3732007-10-09 15:22:22 +020039 * This driver also supports the ADM1024, a sensor chip made by Analog
40 * Devices. That chip is fully compatible with the LM87. Complete
41 * datasheet can be obtained from Analog's website at:
42 * http://www.analog.com/en/prod/0,2877,ADM1024,00.html
43 *
Linus Torvalds1da177e2005-04-16 15:20:36 -070044 * This program is free software; you can redistribute it and/or modify
45 * it under the terms of the GNU General Public License as published by
46 * the Free Software Foundation; either version 2 of the License, or
47 * (at your option) any later version.
48 *
49 * This program is distributed in the hope that it will be useful,
50 * but WITHOUT ANY WARRANTY; without even the implied warranty of
51 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
52 * GNU General Public License for more details.
53 *
54 * You should have received a copy of the GNU General Public License
55 * along with this program; if not, write to the Free Software
56 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
57 */
58
Linus Torvalds1da177e2005-04-16 15:20:36 -070059#include <linux/module.h>
60#include <linux/init.h>
61#include <linux/slab.h>
62#include <linux/jiffies.h>
63#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040064#include <linux/hwmon.h>
Jean Delvarec2803b92007-09-26 23:39:01 +020065#include <linux/hwmon-sysfs.h>
Jean Delvare303760b2005-07-31 21:52:01 +020066#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040067#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010068#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070069
70/*
71 * Addresses to scan
72 * LM87 has three possible addresses: 0x2c, 0x2d and 0x2e.
73 */
74
Mark M. Hoffman25e9c862008-02-17 22:28:03 -050075static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070076
Jean Delvaree5e9f442009-12-14 21:17:27 +010077enum chips { lm87, adm1024 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070078
79/*
80 * The LM87 registers
81 */
82
83/* nr in 0..5 */
84#define LM87_REG_IN(nr) (0x20 + (nr))
85#define LM87_REG_IN_MAX(nr) (0x2B + (nr) * 2)
86#define LM87_REG_IN_MIN(nr) (0x2C + (nr) * 2)
87/* nr in 0..1 */
88#define LM87_REG_AIN(nr) (0x28 + (nr))
89#define LM87_REG_AIN_MIN(nr) (0x1A + (nr))
90#define LM87_REG_AIN_MAX(nr) (0x3B + (nr))
91
92static u8 LM87_REG_TEMP[3] = { 0x27, 0x26, 0x20 };
93static u8 LM87_REG_TEMP_HIGH[3] = { 0x39, 0x37, 0x2B };
94static u8 LM87_REG_TEMP_LOW[3] = { 0x3A, 0x38, 0x2C };
95
96#define LM87_REG_TEMP_HW_INT_LOCK 0x13
97#define LM87_REG_TEMP_HW_EXT_LOCK 0x14
98#define LM87_REG_TEMP_HW_INT 0x17
99#define LM87_REG_TEMP_HW_EXT 0x18
100
101/* nr in 0..1 */
102#define LM87_REG_FAN(nr) (0x28 + (nr))
103#define LM87_REG_FAN_MIN(nr) (0x3B + (nr))
104#define LM87_REG_AOUT 0x19
105
106#define LM87_REG_CONFIG 0x40
107#define LM87_REG_CHANNEL_MODE 0x16
108#define LM87_REG_VID_FAN_DIV 0x47
109#define LM87_REG_VID4 0x49
110
111#define LM87_REG_ALARMS1 0x41
112#define LM87_REG_ALARMS2 0x42
113
114#define LM87_REG_COMPANY_ID 0x3E
115#define LM87_REG_REVISION 0x3F
116
117/*
118 * Conversions and various macros
119 * The LM87 uses signed 8-bit values for temperatures.
120 */
121
Guenter Roeckc6370db2012-01-14 20:58:08 -0800122#define IN_FROM_REG(reg, scale) (((reg) * (scale) + 96) / 192)
123#define IN_TO_REG(val, scale) ((val) <= 0 ? 0 : \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 (val) * 192 >= (scale) * 255 ? 255 : \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800125 ((val) * 192 + (scale) / 2) / (scale))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126
127#define TEMP_FROM_REG(reg) ((reg) * 1000)
128#define TEMP_TO_REG(val) ((val) <= -127500 ? -128 : \
129 (val) >= 126500 ? 127 : \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800130 (((val) < 0 ? (val) - 500 : \
131 (val) + 500) / 1000))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Guenter Roeckc6370db2012-01-14 20:58:08 -0800133#define FAN_FROM_REG(reg, div) ((reg) == 255 || (reg) == 0 ? 0 : \
134 (1350000 + (reg)*(div) / 2) / ((reg) * (div)))
135#define FAN_TO_REG(val, div) ((val) * (div) * 255 <= 1350000 ? 255 : \
136 (1350000 + (val)*(div) / 2) / ((val) * (div)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138#define FAN_DIV_FROM_REG(reg) (1 << (reg))
139
140/* analog out is 9.80mV/LSB */
141#define AOUT_FROM_REG(reg) (((reg) * 98 + 5) / 10)
142#define AOUT_TO_REG(val) ((val) <= 0 ? 0 : \
143 (val) >= 2500 ? 255 : \
144 ((val) * 10 + 49) / 98)
145
146/* nr in 0..1 */
147#define CHAN_NO_FAN(nr) (1 << (nr))
148#define CHAN_TEMP3 (1 << 2)
149#define CHAN_VCC_5V (1 << 3)
Jean Delvare889af3d2007-10-08 22:48:10 +0200150#define CHAN_NO_VID (1 << 7)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151
152/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153 * Client data (each client gets its own)
154 */
155
156struct lm87_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700157 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100158 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 char valid; /* zero until following fields are valid */
160 unsigned long last_updated; /* In jiffies */
161
162 u8 channel; /* register value */
Ben Hutchingsd2cac802008-10-17 17:51:11 +0200163 u8 config; /* original register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
165 u8 in[8]; /* register value */
166 u8 in_max[8]; /* register value */
167 u8 in_min[8]; /* register value */
168 u16 in_scale[8];
169
170 s8 temp[3]; /* register value */
171 s8 temp_high[3]; /* register value */
172 s8 temp_low[3]; /* register value */
173 s8 temp_crit_int; /* min of two register values */
174 s8 temp_crit_ext; /* min of two register values */
175
176 u8 fan[2]; /* register value */
177 u8 fan_min[2]; /* register value */
178 u8 fan_div[2]; /* register value, shifted right */
179 u8 aout; /* register value */
180
181 u16 alarms; /* register values, combined */
182 u8 vid; /* register values, combined */
183 u8 vrm;
184};
185
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186static inline int lm87_read_value(struct i2c_client *client, u8 reg)
187{
188 return i2c_smbus_read_byte_data(client, reg);
189}
190
191static inline int lm87_write_value(struct i2c_client *client, u8 reg, u8 value)
192{
193 return i2c_smbus_write_byte_data(client, reg, value);
194}
195
Jean Delvare8652a262012-01-26 09:37:50 -0800196static struct lm87_data *lm87_update_device(struct device *dev)
197{
198 struct i2c_client *client = to_i2c_client(dev);
199 struct lm87_data *data = i2c_get_clientdata(client);
200
201 mutex_lock(&data->update_lock);
202
203 if (time_after(jiffies, data->last_updated + HZ) || !data->valid) {
204 int i, j;
205
206 dev_dbg(&client->dev, "Updating data.\n");
207
208 i = (data->channel & CHAN_TEMP3) ? 1 : 0;
209 j = (data->channel & CHAN_TEMP3) ? 5 : 6;
210 for (; i < j; i++) {
211 data->in[i] = lm87_read_value(client,
212 LM87_REG_IN(i));
213 data->in_min[i] = lm87_read_value(client,
214 LM87_REG_IN_MIN(i));
215 data->in_max[i] = lm87_read_value(client,
216 LM87_REG_IN_MAX(i));
217 }
218
219 for (i = 0; i < 2; i++) {
220 if (data->channel & CHAN_NO_FAN(i)) {
221 data->in[6+i] = lm87_read_value(client,
222 LM87_REG_AIN(i));
223 data->in_max[6+i] = lm87_read_value(client,
224 LM87_REG_AIN_MAX(i));
225 data->in_min[6+i] = lm87_read_value(client,
226 LM87_REG_AIN_MIN(i));
227
228 } else {
229 data->fan[i] = lm87_read_value(client,
230 LM87_REG_FAN(i));
231 data->fan_min[i] = lm87_read_value(client,
232 LM87_REG_FAN_MIN(i));
233 }
234 }
235
236 j = (data->channel & CHAN_TEMP3) ? 3 : 2;
237 for (i = 0 ; i < j; i++) {
238 data->temp[i] = lm87_read_value(client,
239 LM87_REG_TEMP[i]);
240 data->temp_high[i] = lm87_read_value(client,
241 LM87_REG_TEMP_HIGH[i]);
242 data->temp_low[i] = lm87_read_value(client,
243 LM87_REG_TEMP_LOW[i]);
244 }
245
246 i = lm87_read_value(client, LM87_REG_TEMP_HW_INT_LOCK);
247 j = lm87_read_value(client, LM87_REG_TEMP_HW_INT);
248 data->temp_crit_int = min(i, j);
249
250 i = lm87_read_value(client, LM87_REG_TEMP_HW_EXT_LOCK);
251 j = lm87_read_value(client, LM87_REG_TEMP_HW_EXT);
252 data->temp_crit_ext = min(i, j);
253
254 i = lm87_read_value(client, LM87_REG_VID_FAN_DIV);
255 data->fan_div[0] = (i >> 4) & 0x03;
256 data->fan_div[1] = (i >> 6) & 0x03;
257 data->vid = (i & 0x0F)
258 | (lm87_read_value(client, LM87_REG_VID4) & 0x01)
259 << 4;
260
261 data->alarms = lm87_read_value(client, LM87_REG_ALARMS1)
262 | (lm87_read_value(client, LM87_REG_ALARMS2)
263 << 8);
264 data->aout = lm87_read_value(client, LM87_REG_AOUT);
265
266 data->last_updated = jiffies;
267 data->valid = 1;
268 }
269
270 mutex_unlock(&data->update_lock);
271
272 return data;
273}
274
275/*
276 * Sysfs stuff
277 */
278
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279#define show_in(offset) \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800280static ssize_t show_in##offset##_input(struct device *dev, \
281 struct device_attribute *attr, \
282 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{ \
284 struct lm87_data *data = lm87_update_device(dev); \
285 return sprintf(buf, "%u\n", IN_FROM_REG(data->in[offset], \
286 data->in_scale[offset])); \
287} \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800288static ssize_t show_in##offset##_min(struct device *dev, \
289 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290{ \
291 struct lm87_data *data = lm87_update_device(dev); \
292 return sprintf(buf, "%u\n", IN_FROM_REG(data->in_min[offset], \
293 data->in_scale[offset])); \
294} \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800295static ssize_t show_in##offset##_max(struct device *dev, \
296 struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297{ \
298 struct lm87_data *data = lm87_update_device(dev); \
299 return sprintf(buf, "%u\n", IN_FROM_REG(data->in_max[offset], \
300 data->in_scale[offset])); \
301} \
302static DEVICE_ATTR(in##offset##_input, S_IRUGO, \
303 show_in##offset##_input, NULL);
304show_in(0);
305show_in(1);
306show_in(2);
307show_in(3);
308show_in(4);
309show_in(5);
310show_in(6);
311show_in(7);
312
Guenter Roeckc6370db2012-01-14 20:58:08 -0800313static ssize_t set_in_min(struct device *dev, const char *buf, int nr,
314 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315{
316 struct i2c_client *client = to_i2c_client(dev);
317 struct lm87_data *data = i2c_get_clientdata(client);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800318 long val;
319 int err;
320
321 err = kstrtol(buf, 10, &val);
322 if (err)
323 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100325 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 data->in_min[nr] = IN_TO_REG(val, data->in_scale[nr]);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800327 lm87_write_value(client, nr < 6 ? LM87_REG_IN_MIN(nr) :
328 LM87_REG_AIN_MIN(nr - 6), data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100329 mutex_unlock(&data->update_lock);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800330 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331}
332
Guenter Roeckc6370db2012-01-14 20:58:08 -0800333static ssize_t set_in_max(struct device *dev, const char *buf, int nr,
334 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335{
336 struct i2c_client *client = to_i2c_client(dev);
337 struct lm87_data *data = i2c_get_clientdata(client);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800338 long val;
339 int err;
340
341 err = kstrtol(buf, 10, &val);
342 if (err)
343 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100345 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 data->in_max[nr] = IN_TO_REG(val, data->in_scale[nr]);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800347 lm87_write_value(client, nr < 6 ? LM87_REG_IN_MAX(nr) :
348 LM87_REG_AIN_MAX(nr - 6), data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100349 mutex_unlock(&data->update_lock);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800350 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351}
352
353#define set_in(offset) \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800354static ssize_t set_in##offset##_min(struct device *dev, \
355 struct device_attribute *attr, \
356 const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357{ \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800358 return set_in_min(dev, buf, offset, count); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359} \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800360static ssize_t set_in##offset##_max(struct device *dev, \
361 struct device_attribute *attr, \
362 const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700363{ \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800364 return set_in_max(dev, buf, offset, count); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365} \
366static DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
367 show_in##offset##_min, set_in##offset##_min); \
368static DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
369 show_in##offset##_max, set_in##offset##_max);
370set_in(0);
371set_in(1);
372set_in(2);
373set_in(3);
374set_in(4);
375set_in(5);
376set_in(6);
377set_in(7);
378
379#define show_temp(offset) \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800380static ssize_t show_temp##offset##_input(struct device *dev, \
381 struct device_attribute *attr, \
382 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{ \
384 struct lm87_data *data = lm87_update_device(dev); \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800385 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[offset - 1])); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386} \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800387static ssize_t show_temp##offset##_low(struct device *dev, \
388 struct device_attribute *attr, \
389 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{ \
391 struct lm87_data *data = lm87_update_device(dev); \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800392 return sprintf(buf, "%d\n", \
393 TEMP_FROM_REG(data->temp_low[offset - 1])); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394} \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800395static ssize_t show_temp##offset##_high(struct device *dev, \
396 struct device_attribute *attr, \
397 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398{ \
399 struct lm87_data *data = lm87_update_device(dev); \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800400 return sprintf(buf, "%d\n", \
401 TEMP_FROM_REG(data->temp_high[offset - 1])); \
402} \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403static DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
404 show_temp##offset##_input, NULL);
405show_temp(1);
406show_temp(2);
407show_temp(3);
408
Guenter Roeckc6370db2012-01-14 20:58:08 -0800409static ssize_t set_temp_low(struct device *dev, const char *buf, int nr,
410 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411{
412 struct i2c_client *client = to_i2c_client(dev);
413 struct lm87_data *data = i2c_get_clientdata(client);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800414 long val;
415 int err;
416
417 err = kstrtol(buf, 10, &val);
418 if (err)
419 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100421 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700422 data->temp_low[nr] = TEMP_TO_REG(val);
423 lm87_write_value(client, LM87_REG_TEMP_LOW[nr], data->temp_low[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100424 mutex_unlock(&data->update_lock);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800425 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
Guenter Roeckc6370db2012-01-14 20:58:08 -0800428static ssize_t set_temp_high(struct device *dev, const char *buf, int nr,
429 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700430{
431 struct i2c_client *client = to_i2c_client(dev);
432 struct lm87_data *data = i2c_get_clientdata(client);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800433 long val;
434 int err;
435
436 err = kstrtol(buf, 10, &val);
437 if (err)
438 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100440 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 data->temp_high[nr] = TEMP_TO_REG(val);
442 lm87_write_value(client, LM87_REG_TEMP_HIGH[nr], data->temp_high[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100443 mutex_unlock(&data->update_lock);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800444 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445}
446
447#define set_temp(offset) \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800448static ssize_t set_temp##offset##_low(struct device *dev, \
449 struct device_attribute *attr, \
450 const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451{ \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800452 return set_temp_low(dev, buf, offset - 1, count); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453} \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800454static ssize_t set_temp##offset##_high(struct device *dev, \
455 struct device_attribute *attr, \
456 const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457{ \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800458 return set_temp_high(dev, buf, offset - 1, count); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459} \
460static DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
461 show_temp##offset##_high, set_temp##offset##_high); \
462static DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
463 show_temp##offset##_low, set_temp##offset##_low);
464set_temp(1);
465set_temp(2);
466set_temp(3);
467
Guenter Roeckc6370db2012-01-14 20:58:08 -0800468static ssize_t show_temp_crit_int(struct device *dev,
469 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470{
471 struct lm87_data *data = lm87_update_device(dev);
472 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_crit_int));
473}
474
Guenter Roeckc6370db2012-01-14 20:58:08 -0800475static ssize_t show_temp_crit_ext(struct device *dev,
476 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477{
478 struct lm87_data *data = lm87_update_device(dev);
479 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_crit_ext));
480}
481
482static DEVICE_ATTR(temp1_crit, S_IRUGO, show_temp_crit_int, NULL);
483static DEVICE_ATTR(temp2_crit, S_IRUGO, show_temp_crit_ext, NULL);
484static DEVICE_ATTR(temp3_crit, S_IRUGO, show_temp_crit_ext, NULL);
485
486#define show_fan(offset) \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800487static ssize_t show_fan##offset##_input(struct device *dev, \
488 struct device_attribute *attr, \
489 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{ \
491 struct lm87_data *data = lm87_update_device(dev); \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800492 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[offset - 1], \
493 FAN_DIV_FROM_REG(data->fan_div[offset - 1]))); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494} \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800495static ssize_t show_fan##offset##_min(struct device *dev, \
496 struct device_attribute *attr, \
497 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{ \
499 struct lm87_data *data = lm87_update_device(dev); \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800500 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[offset - 1], \
501 FAN_DIV_FROM_REG(data->fan_div[offset - 1]))); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700502} \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800503static ssize_t show_fan##offset##_div(struct device *dev, \
504 struct device_attribute *attr, \
505 char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{ \
507 struct lm87_data *data = lm87_update_device(dev); \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800508 return sprintf(buf, "%d\n", \
509 FAN_DIV_FROM_REG(data->fan_div[offset - 1])); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510} \
511static DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
512 show_fan##offset##_input, NULL);
513show_fan(1);
514show_fan(2);
515
Guenter Roeckc6370db2012-01-14 20:58:08 -0800516static ssize_t set_fan_min(struct device *dev, const char *buf, int nr,
517 size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518{
519 struct i2c_client *client = to_i2c_client(dev);
520 struct lm87_data *data = i2c_get_clientdata(client);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800521 long val;
522 int err;
523
524 err = kstrtol(buf, 10, &val);
525 if (err)
526 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100528 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 data->fan_min[nr] = FAN_TO_REG(val,
530 FAN_DIV_FROM_REG(data->fan_div[nr]));
531 lm87_write_value(client, LM87_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100532 mutex_unlock(&data->update_lock);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800533 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Guenter Roeckc6370db2012-01-14 20:58:08 -0800536/*
537 * Note: we save and restore the fan minimum here, because its value is
538 * determined in part by the fan clock divider. This follows the principle
539 * of least surprise; the user doesn't expect the fan minimum to change just
540 * because the divider changed.
541 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542static ssize_t set_fan_div(struct device *dev, const char *buf,
543 size_t count, int nr)
544{
545 struct i2c_client *client = to_i2c_client(dev);
546 struct lm87_data *data = i2c_get_clientdata(client);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800547 long val;
548 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700549 unsigned long min;
550 u8 reg;
551
Guenter Roeckc6370db2012-01-14 20:58:08 -0800552 err = kstrtol(buf, 10, &val);
553 if (err)
554 return err;
555
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100556 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557 min = FAN_FROM_REG(data->fan_min[nr],
558 FAN_DIV_FROM_REG(data->fan_div[nr]));
559
560 switch (val) {
Guenter Roeckc6370db2012-01-14 20:58:08 -0800561 case 1:
562 data->fan_div[nr] = 0;
563 break;
564 case 2:
565 data->fan_div[nr] = 1;
566 break;
567 case 4:
568 data->fan_div[nr] = 2;
569 break;
570 case 8:
571 data->fan_div[nr] = 3;
572 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 default:
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100574 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 return -EINVAL;
576 }
577
578 reg = lm87_read_value(client, LM87_REG_VID_FAN_DIV);
579 switch (nr) {
580 case 0:
581 reg = (reg & 0xCF) | (data->fan_div[0] << 4);
582 break;
583 case 1:
584 reg = (reg & 0x3F) | (data->fan_div[1] << 6);
585 break;
586 }
587 lm87_write_value(client, LM87_REG_VID_FAN_DIV, reg);
588
589 data->fan_min[nr] = FAN_TO_REG(min, val);
590 lm87_write_value(client, LM87_REG_FAN_MIN(nr),
591 data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100592 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593
594 return count;
595}
596
597#define set_fan(offset) \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800598static ssize_t set_fan##offset##_min(struct device *dev, \
599 struct device_attribute *attr, \
600 const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700601{ \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800602 return set_fan_min(dev, buf, offset - 1, count); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603} \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800604static ssize_t set_fan##offset##_div(struct device *dev, \
605 struct device_attribute *attr, \
606 const char *buf, size_t count) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607{ \
Guenter Roeckc6370db2012-01-14 20:58:08 -0800608 return set_fan_div(dev, buf, count, offset - 1); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609} \
610static DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
611 show_fan##offset##_min, set_fan##offset##_min); \
612static DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
613 show_fan##offset##_div, set_fan##offset##_div);
614set_fan(1);
615set_fan(2);
616
Guenter Roeckc6370db2012-01-14 20:58:08 -0800617static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
618 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700619{
620 struct lm87_data *data = lm87_update_device(dev);
621 return sprintf(buf, "%d\n", data->alarms);
622}
623static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
624
Guenter Roeckc6370db2012-01-14 20:58:08 -0800625static ssize_t show_vid(struct device *dev, struct device_attribute *attr,
626 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700627{
628 struct lm87_data *data = lm87_update_device(dev);
629 return sprintf(buf, "%d\n", vid_from_reg(data->vid, data->vrm));
630}
631static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL);
632
Guenter Roeckc6370db2012-01-14 20:58:08 -0800633static ssize_t show_vrm(struct device *dev, struct device_attribute *attr,
634 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635{
Jean Delvare90d66192007-10-08 18:24:35 +0200636 struct lm87_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 return sprintf(buf, "%d\n", data->vrm);
638}
Guenter Roeckc6370db2012-01-14 20:58:08 -0800639static ssize_t set_vrm(struct device *dev, struct device_attribute *attr,
640 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Jean Delvare8f74efe2007-12-01 11:25:33 +0100642 struct lm87_data *data = dev_get_drvdata(dev);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800643 unsigned long val;
644 int err;
645
646 err = kstrtoul(buf, 10, &val);
647 if (err)
648 return err;
649 data->vrm = val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650 return count;
651}
652static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm, set_vrm);
653
Guenter Roeckc6370db2012-01-14 20:58:08 -0800654static ssize_t show_aout(struct device *dev, struct device_attribute *attr,
655 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656{
657 struct lm87_data *data = lm87_update_device(dev);
658 return sprintf(buf, "%d\n", AOUT_FROM_REG(data->aout));
659}
Guenter Roeckc6370db2012-01-14 20:58:08 -0800660static ssize_t set_aout(struct device *dev, struct device_attribute *attr,
661 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
663 struct i2c_client *client = to_i2c_client(dev);
664 struct lm87_data *data = i2c_get_clientdata(client);
Guenter Roeckc6370db2012-01-14 20:58:08 -0800665 long val;
666 int err;
667
668 err = kstrtol(buf, 10, &val);
669 if (err)
670 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100672 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 data->aout = AOUT_TO_REG(val);
674 lm87_write_value(client, LM87_REG_AOUT, data->aout);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100675 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676 return count;
677}
678static DEVICE_ATTR(aout_output, S_IRUGO | S_IWUSR, show_aout, set_aout);
679
Jean Delvarec2803b92007-09-26 23:39:01 +0200680static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
681 char *buf)
682{
683 struct lm87_data *data = lm87_update_device(dev);
684 int bitnr = to_sensor_dev_attr(attr)->index;
685 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
686}
687static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
688static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
689static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
690static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
691static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8);
692static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 9);
693static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 6);
694static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 7);
695static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4);
696static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5);
697static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 5);
698static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 6);
699static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 7);
700static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 14);
701static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL, 15);
702
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703/*
704 * Real code
705 */
706
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200707static struct attribute *lm87_attributes[] = {
708 &dev_attr_in1_input.attr,
709 &dev_attr_in1_min.attr,
710 &dev_attr_in1_max.attr,
Jean Delvarec2803b92007-09-26 23:39:01 +0200711 &sensor_dev_attr_in1_alarm.dev_attr.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200712 &dev_attr_in2_input.attr,
713 &dev_attr_in2_min.attr,
714 &dev_attr_in2_max.attr,
Jean Delvarec2803b92007-09-26 23:39:01 +0200715 &sensor_dev_attr_in2_alarm.dev_attr.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200716 &dev_attr_in3_input.attr,
717 &dev_attr_in3_min.attr,
718 &dev_attr_in3_max.attr,
Jean Delvarec2803b92007-09-26 23:39:01 +0200719 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200720 &dev_attr_in4_input.attr,
721 &dev_attr_in4_min.attr,
722 &dev_attr_in4_max.attr,
Jean Delvarec2803b92007-09-26 23:39:01 +0200723 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200724
725 &dev_attr_temp1_input.attr,
726 &dev_attr_temp1_max.attr,
727 &dev_attr_temp1_min.attr,
728 &dev_attr_temp1_crit.attr,
Jean Delvarec2803b92007-09-26 23:39:01 +0200729 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200730 &dev_attr_temp2_input.attr,
731 &dev_attr_temp2_max.attr,
732 &dev_attr_temp2_min.attr,
733 &dev_attr_temp2_crit.attr,
Jean Delvarec2803b92007-09-26 23:39:01 +0200734 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
735 &sensor_dev_attr_temp2_fault.dev_attr.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200736
737 &dev_attr_alarms.attr,
738 &dev_attr_aout_output.attr,
739
740 NULL
741};
742
743static const struct attribute_group lm87_group = {
744 .attrs = lm87_attributes,
745};
746
Guenter Roeck073f1e6c2012-01-16 15:11:57 -0800747static struct attribute *lm87_attributes_in6[] = {
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200748 &dev_attr_in6_input.attr,
749 &dev_attr_in6_min.attr,
750 &dev_attr_in6_max.attr,
Jean Delvarec2803b92007-09-26 23:39:01 +0200751 &sensor_dev_attr_in6_alarm.dev_attr.attr,
Guenter Roeck073f1e6c2012-01-16 15:11:57 -0800752 NULL
753};
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200754
Guenter Roeck073f1e6c2012-01-16 15:11:57 -0800755static const struct attribute_group lm87_group_in6 = {
756 .attrs = lm87_attributes_in6,
757};
758
759static struct attribute *lm87_attributes_fan1[] = {
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200760 &dev_attr_fan1_input.attr,
761 &dev_attr_fan1_min.attr,
762 &dev_attr_fan1_div.attr,
Jean Delvarec2803b92007-09-26 23:39:01 +0200763 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
Guenter Roeck073f1e6c2012-01-16 15:11:57 -0800764 NULL
765};
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200766
Guenter Roeck073f1e6c2012-01-16 15:11:57 -0800767static const struct attribute_group lm87_group_fan1 = {
768 .attrs = lm87_attributes_fan1,
769};
770
771static struct attribute *lm87_attributes_in7[] = {
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200772 &dev_attr_in7_input.attr,
773 &dev_attr_in7_min.attr,
774 &dev_attr_in7_max.attr,
Jean Delvarec2803b92007-09-26 23:39:01 +0200775 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Guenter Roeck073f1e6c2012-01-16 15:11:57 -0800776 NULL
777};
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200778
Guenter Roeck073f1e6c2012-01-16 15:11:57 -0800779static const struct attribute_group lm87_group_in7 = {
780 .attrs = lm87_attributes_in7,
781};
782
783static struct attribute *lm87_attributes_fan2[] = {
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200784 &dev_attr_fan2_input.attr,
785 &dev_attr_fan2_min.attr,
786 &dev_attr_fan2_div.attr,
Jean Delvarec2803b92007-09-26 23:39:01 +0200787 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
Guenter Roeck073f1e6c2012-01-16 15:11:57 -0800788 NULL
789};
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200790
Guenter Roeck073f1e6c2012-01-16 15:11:57 -0800791static const struct attribute_group lm87_group_fan2 = {
792 .attrs = lm87_attributes_fan2,
793};
794
795static struct attribute *lm87_attributes_temp3[] = {
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200796 &dev_attr_temp3_input.attr,
797 &dev_attr_temp3_max.attr,
798 &dev_attr_temp3_min.attr,
799 &dev_attr_temp3_crit.attr,
Jean Delvarec2803b92007-09-26 23:39:01 +0200800 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
801 &sensor_dev_attr_temp3_fault.dev_attr.attr,
Guenter Roeck073f1e6c2012-01-16 15:11:57 -0800802 NULL
803};
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200804
Guenter Roeck073f1e6c2012-01-16 15:11:57 -0800805static const struct attribute_group lm87_group_temp3 = {
806 .attrs = lm87_attributes_temp3,
807};
808
809static struct attribute *lm87_attributes_in0_5[] = {
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200810 &dev_attr_in0_input.attr,
811 &dev_attr_in0_min.attr,
812 &dev_attr_in0_max.attr,
Jean Delvarec2803b92007-09-26 23:39:01 +0200813 &sensor_dev_attr_in0_alarm.dev_attr.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200814 &dev_attr_in5_input.attr,
815 &dev_attr_in5_min.attr,
816 &dev_attr_in5_max.attr,
Jean Delvarec2803b92007-09-26 23:39:01 +0200817 &sensor_dev_attr_in5_alarm.dev_attr.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200818 NULL
819};
820
Guenter Roeck073f1e6c2012-01-16 15:11:57 -0800821static const struct attribute_group lm87_group_in0_5 = {
822 .attrs = lm87_attributes_in0_5,
823};
824
825static struct attribute *lm87_attributes_vid[] = {
826 &dev_attr_cpu0_vid.attr,
827 &dev_attr_vrm.attr,
828 NULL
829};
830
831static const struct attribute_group lm87_group_vid = {
832 .attrs = lm87_attributes_vid,
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200833};
834
Jean Delvarea8884202008-07-16 19:30:14 +0200835/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare8652a262012-01-26 09:37:50 -0800836static int lm87_detect(struct i2c_client *client, struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Jean Delvare8652a262012-01-26 09:37:50 -0800838 struct i2c_adapter *adapter = client->adapter;
Jean Delvare52df6442009-12-09 20:35:57 +0100839 const char *name;
840 u8 cid, rev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841
842 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvarea8884202008-07-16 19:30:14 +0200843 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844
Jean Delvare8652a262012-01-26 09:37:50 -0800845 if (lm87_read_value(client, LM87_REG_CONFIG) & 0x80)
Jean Delvare52df6442009-12-09 20:35:57 +0100846 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847
848 /* Now, we do the remaining detection. */
Jean Delvare8652a262012-01-26 09:37:50 -0800849 cid = lm87_read_value(client, LM87_REG_COMPANY_ID);
850 rev = lm87_read_value(client, LM87_REG_REVISION);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700851
Jean Delvare52df6442009-12-09 20:35:57 +0100852 if (cid == 0x02 /* National Semiconductor */
853 && (rev >= 0x01 && rev <= 0x08))
854 name = "lm87";
855 else if (cid == 0x41 /* Analog Devices */
856 && (rev & 0xf0) == 0x10)
857 name = "adm1024";
858 else {
859 dev_dbg(&adapter->dev, "LM87 detection failed at 0x%02x\n",
Jean Delvare8652a262012-01-26 09:37:50 -0800860 client->addr);
Jean Delvare52df6442009-12-09 20:35:57 +0100861 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700862 }
863
Jean Delvare52df6442009-12-09 20:35:57 +0100864 strlcpy(info->type, name, I2C_NAME_SIZE);
Jean Delvarea8884202008-07-16 19:30:14 +0200865
866 return 0;
867}
868
Guenter Roeck073f1e6c2012-01-16 15:11:57 -0800869static void lm87_remove_files(struct i2c_client *client)
870{
871 struct device *dev = &client->dev;
872
873 sysfs_remove_group(&dev->kobj, &lm87_group);
874 sysfs_remove_group(&dev->kobj, &lm87_group_in6);
875 sysfs_remove_group(&dev->kobj, &lm87_group_fan1);
876 sysfs_remove_group(&dev->kobj, &lm87_group_in7);
877 sysfs_remove_group(&dev->kobj, &lm87_group_fan2);
878 sysfs_remove_group(&dev->kobj, &lm87_group_temp3);
879 sysfs_remove_group(&dev->kobj, &lm87_group_in0_5);
880 sysfs_remove_group(&dev->kobj, &lm87_group_vid);
881}
882
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883static void lm87_init_client(struct i2c_client *client)
884{
885 struct lm87_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886
Ben Hutchings47064d62008-10-17 17:51:12 +0200887 if (client->dev.platform_data) {
888 data->channel = *(u8 *)client->dev.platform_data;
889 lm87_write_value(client,
890 LM87_REG_CHANNEL_MODE, data->channel);
891 } else {
892 data->channel = lm87_read_value(client, LM87_REG_CHANNEL_MODE);
893 }
Ben Hutchingsd2cac802008-10-17 17:51:11 +0200894 data->config = lm87_read_value(client, LM87_REG_CONFIG) & 0x6F;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700895
Ben Hutchingsd2cac802008-10-17 17:51:11 +0200896 if (!(data->config & 0x01)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 int i;
898
899 /* Limits are left uninitialized after power-up */
900 for (i = 1; i < 6; i++) {
901 lm87_write_value(client, LM87_REG_IN_MIN(i), 0x00);
902 lm87_write_value(client, LM87_REG_IN_MAX(i), 0xFF);
903 }
904 for (i = 0; i < 2; i++) {
905 lm87_write_value(client, LM87_REG_TEMP_HIGH[i], 0x7F);
906 lm87_write_value(client, LM87_REG_TEMP_LOW[i], 0x00);
907 lm87_write_value(client, LM87_REG_AIN_MIN(i), 0x00);
908 lm87_write_value(client, LM87_REG_AIN_MAX(i), 0xFF);
909 }
910 if (data->channel & CHAN_TEMP3) {
911 lm87_write_value(client, LM87_REG_TEMP_HIGH[2], 0x7F);
912 lm87_write_value(client, LM87_REG_TEMP_LOW[2], 0x00);
913 } else {
914 lm87_write_value(client, LM87_REG_IN_MIN(0), 0x00);
915 lm87_write_value(client, LM87_REG_IN_MAX(0), 0xFF);
916 }
917 }
Ben Hutchings49ae6cc2008-10-17 17:51:11 +0200918
919 /* Make sure Start is set and INT#_Clear is clear */
Ben Hutchingsd2cac802008-10-17 17:51:11 +0200920 if ((data->config & 0x09) != 0x01)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921 lm87_write_value(client, LM87_REG_CONFIG,
Ben Hutchingsd2cac802008-10-17 17:51:11 +0200922 (data->config & 0x77) | 0x01);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923}
924
Jean Delvare8652a262012-01-26 09:37:50 -0800925static int lm87_probe(struct i2c_client *client, const struct i2c_device_id *id)
926{
927 struct lm87_data *data;
928 int err;
929
930 data = kzalloc(sizeof(struct lm87_data), GFP_KERNEL);
931 if (!data) {
932 err = -ENOMEM;
933 goto exit;
934 }
935
936 i2c_set_clientdata(client, data);
937 data->valid = 0;
938 mutex_init(&data->update_lock);
939
940 /* Initialize the LM87 chip */
941 lm87_init_client(client);
942
943 data->in_scale[0] = 2500;
944 data->in_scale[1] = 2700;
945 data->in_scale[2] = (data->channel & CHAN_VCC_5V) ? 5000 : 3300;
946 data->in_scale[3] = 5000;
947 data->in_scale[4] = 12000;
948 data->in_scale[5] = 2700;
949 data->in_scale[6] = 1875;
950 data->in_scale[7] = 1875;
951
952 /* Register sysfs hooks */
953 err = sysfs_create_group(&client->dev.kobj, &lm87_group);
954 if (err)
955 goto exit_free;
956
957 if (data->channel & CHAN_NO_FAN(0)) {
958 err = sysfs_create_group(&client->dev.kobj, &lm87_group_in6);
959 if (err)
960 goto exit_remove;
961 } else {
962 err = sysfs_create_group(&client->dev.kobj, &lm87_group_fan1);
963 if (err)
964 goto exit_remove;
965 }
966
967 if (data->channel & CHAN_NO_FAN(1)) {
968 err = sysfs_create_group(&client->dev.kobj, &lm87_group_in7);
969 if (err)
970 goto exit_remove;
971 } else {
972 err = sysfs_create_group(&client->dev.kobj, &lm87_group_fan2);
973 if (err)
974 goto exit_remove;
975 }
976
977 if (data->channel & CHAN_TEMP3) {
978 err = sysfs_create_group(&client->dev.kobj, &lm87_group_temp3);
979 if (err)
980 goto exit_remove;
981 } else {
982 err = sysfs_create_group(&client->dev.kobj, &lm87_group_in0_5);
983 if (err)
984 goto exit_remove;
985 }
986
987 if (!(data->channel & CHAN_NO_VID)) {
988 data->vrm = vid_which_vrm();
989 err = sysfs_create_group(&client->dev.kobj, &lm87_group_vid);
990 if (err)
991 goto exit_remove;
992 }
993
994 data->hwmon_dev = hwmon_device_register(&client->dev);
995 if (IS_ERR(data->hwmon_dev)) {
996 err = PTR_ERR(data->hwmon_dev);
997 goto exit_remove;
998 }
999
1000 return 0;
1001
1002exit_remove:
1003 lm87_remove_files(client);
1004exit_free:
1005 lm87_write_value(client, LM87_REG_CONFIG, data->config);
1006 kfree(data);
1007exit:
1008 return err;
1009}
1010
Jean Delvarea8884202008-07-16 19:30:14 +02001011static int lm87_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012{
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001013 struct lm87_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001014
Tony Jones1beeffe2007-08-20 13:46:20 -07001015 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeck073f1e6c2012-01-16 15:11:57 -08001016 lm87_remove_files(client);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001017
Ben Hutchingsd2cac802008-10-17 17:51:11 +02001018 lm87_write_value(client, LM87_REG_CONFIG, data->config);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001019 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 return 0;
1021}
1022
Jean Delvare8652a262012-01-26 09:37:50 -08001023/*
1024 * Driver data (common to all clients)
1025 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001026
Jean Delvare8652a262012-01-26 09:37:50 -08001027static const struct i2c_device_id lm87_id[] = {
1028 { "lm87", lm87 },
1029 { "adm1024", adm1024 },
1030 { }
1031};
1032MODULE_DEVICE_TABLE(i2c, lm87_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001033
Jean Delvare8652a262012-01-26 09:37:50 -08001034static struct i2c_driver lm87_driver = {
1035 .class = I2C_CLASS_HWMON,
1036 .driver = {
1037 .name = "lm87",
1038 },
1039 .probe = lm87_probe,
1040 .remove = lm87_remove,
1041 .id_table = lm87_id,
1042 .detect = lm87_detect,
1043 .address_list = normal_i2c,
1044};
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Axel Linf0967ee2012-01-20 15:38:18 +08001046module_i2c_driver(lm87_driver);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047
1048MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org> and others");
1049MODULE_DESCRIPTION("LM87 driver");
1050MODULE_LICENSE("GPL");