[PATCH] hwmon: hwmon vs i2c, second round (03/11)
[deliverable/linux.git] / drivers / hwmon / lm87.c
CommitLineData
1da177e4
LT
1/*
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>
8 * Copyright (C) 2004 Jean Delvare <khali@linux-fr.org>
9 *
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
24 * time. Which are depends on the hardware setup. This driver assumes that
25 * the BIOS configured the chip correctly. In that respect, it differs from
26 * the original driver (from lm_sensors for Linux 2.4), which would force the
27 * LM87 to an arbitrary, compile-time chosen mode, regardless of the actual
28 * chipset wiring.
29 * For reference, here is the list of exclusive functions:
30 * - in0+in5 (default) or temp3
31 * - fan1 (default) or in6
32 * - fan2 (default) or in7
33 * - VID lines (default) or IRQ lines (not handled by this driver)
34 *
35 * The LM87 additionally features an analog output, supposedly usable to
36 * control the speed of a fan. All new chips use pulse width modulation
37 * instead. The LM87 is the only hardware monitoring chipset I know of
38 * which uses amplitude modulation. Be careful when using this feature.
39 *
40 * This program is free software; you can redistribute it and/or modify
41 * it under the terms of the GNU General Public License as published by
42 * the Free Software Foundation; either version 2 of the License, or
43 * (at your option) any later version.
44 *
45 * This program is distributed in the hope that it will be useful,
46 * but WITHOUT ANY WARRANTY; without even the implied warranty of
47 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
48 * GNU General Public License for more details.
49 *
50 * You should have received a copy of the GNU General Public License
51 * along with this program; if not, write to the Free Software
52 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
53 */
54
1da177e4
LT
55#include <linux/module.h>
56#include <linux/init.h>
57#include <linux/slab.h>
58#include <linux/jiffies.h>
59#include <linux/i2c.h>
60#include <linux/i2c-sensor.h>
61#include <linux/i2c-vid.h>
943b0830
MH
62#include <linux/hwmon.h>
63#include <linux/err.h>
1da177e4
LT
64
65/*
66 * Addresses to scan
67 * LM87 has three possible addresses: 0x2c, 0x2d and 0x2e.
68 */
69
70static unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END };
1da177e4
LT
71
72/*
73 * Insmod parameters
74 */
75
76SENSORS_INSMOD_1(lm87);
77
78/*
79 * The LM87 registers
80 */
81
82/* nr in 0..5 */
83#define LM87_REG_IN(nr) (0x20 + (nr))
84#define LM87_REG_IN_MAX(nr) (0x2B + (nr) * 2)
85#define LM87_REG_IN_MIN(nr) (0x2C + (nr) * 2)
86/* nr in 0..1 */
87#define LM87_REG_AIN(nr) (0x28 + (nr))
88#define LM87_REG_AIN_MIN(nr) (0x1A + (nr))
89#define LM87_REG_AIN_MAX(nr) (0x3B + (nr))
90
91static u8 LM87_REG_TEMP[3] = { 0x27, 0x26, 0x20 };
92static u8 LM87_REG_TEMP_HIGH[3] = { 0x39, 0x37, 0x2B };
93static u8 LM87_REG_TEMP_LOW[3] = { 0x3A, 0x38, 0x2C };
94
95#define LM87_REG_TEMP_HW_INT_LOCK 0x13
96#define LM87_REG_TEMP_HW_EXT_LOCK 0x14
97#define LM87_REG_TEMP_HW_INT 0x17
98#define LM87_REG_TEMP_HW_EXT 0x18
99
100/* nr in 0..1 */
101#define LM87_REG_FAN(nr) (0x28 + (nr))
102#define LM87_REG_FAN_MIN(nr) (0x3B + (nr))
103#define LM87_REG_AOUT 0x19
104
105#define LM87_REG_CONFIG 0x40
106#define LM87_REG_CHANNEL_MODE 0x16
107#define LM87_REG_VID_FAN_DIV 0x47
108#define LM87_REG_VID4 0x49
109
110#define LM87_REG_ALARMS1 0x41
111#define LM87_REG_ALARMS2 0x42
112
113#define LM87_REG_COMPANY_ID 0x3E
114#define LM87_REG_REVISION 0x3F
115
116/*
117 * Conversions and various macros
118 * The LM87 uses signed 8-bit values for temperatures.
119 */
120
121#define IN_FROM_REG(reg,scale) (((reg) * (scale) + 96) / 192)
122#define IN_TO_REG(val,scale) ((val) <= 0 ? 0 : \
123 (val) * 192 >= (scale) * 255 ? 255 : \
124 ((val) * 192 + (scale)/2) / (scale))
125
126#define TEMP_FROM_REG(reg) ((reg) * 1000)
127#define TEMP_TO_REG(val) ((val) <= -127500 ? -128 : \
128 (val) >= 126500 ? 127 : \
129 (((val) < 0 ? (val)-500 : (val)+500) / 1000))
130
131#define FAN_FROM_REG(reg,div) ((reg) == 255 || (reg) == 0 ? 0 : \
132 1350000 + (reg)*(div) / 2) / ((reg)*(div))
133#define FAN_TO_REG(val,div) ((val)*(div) * 255 <= 1350000 ? 255 : \
134 (1350000 + (val)*(div) / 2) / ((val)*(div)))
135
136#define FAN_DIV_FROM_REG(reg) (1 << (reg))
137
138/* analog out is 9.80mV/LSB */
139#define AOUT_FROM_REG(reg) (((reg) * 98 + 5) / 10)
140#define AOUT_TO_REG(val) ((val) <= 0 ? 0 : \
141 (val) >= 2500 ? 255 : \
142 ((val) * 10 + 49) / 98)
143
144/* nr in 0..1 */
145#define CHAN_NO_FAN(nr) (1 << (nr))
146#define CHAN_TEMP3 (1 << 2)
147#define CHAN_VCC_5V (1 << 3)
148#define CHAN_NO_VID (1 << 8)
149
150/*
151 * Functions declaration
152 */
153
154static int lm87_attach_adapter(struct i2c_adapter *adapter);
155static int lm87_detect(struct i2c_adapter *adapter, int address, int kind);
156static void lm87_init_client(struct i2c_client *client);
157static int lm87_detach_client(struct i2c_client *client);
158static struct lm87_data *lm87_update_device(struct device *dev);
159
160/*
161 * Driver data (common to all clients)
162 */
163
164static struct i2c_driver lm87_driver = {
165 .owner = THIS_MODULE,
166 .name = "lm87",
167 .id = I2C_DRIVERID_LM87,
168 .flags = I2C_DF_NOTIFY,
169 .attach_adapter = lm87_attach_adapter,
170 .detach_client = lm87_detach_client,
171};
172
173/*
174 * Client data (each client gets its own)
175 */
176
177struct lm87_data {
178 struct i2c_client client;
943b0830 179 struct class_device *class_dev;
1da177e4
LT
180 struct semaphore update_lock;
181 char valid; /* zero until following fields are valid */
182 unsigned long last_updated; /* In jiffies */
183
184 u8 channel; /* register value */
185
186 u8 in[8]; /* register value */
187 u8 in_max[8]; /* register value */
188 u8 in_min[8]; /* register value */
189 u16 in_scale[8];
190
191 s8 temp[3]; /* register value */
192 s8 temp_high[3]; /* register value */
193 s8 temp_low[3]; /* register value */
194 s8 temp_crit_int; /* min of two register values */
195 s8 temp_crit_ext; /* min of two register values */
196
197 u8 fan[2]; /* register value */
198 u8 fan_min[2]; /* register value */
199 u8 fan_div[2]; /* register value, shifted right */
200 u8 aout; /* register value */
201
202 u16 alarms; /* register values, combined */
203 u8 vid; /* register values, combined */
204 u8 vrm;
205};
206
207/*
208 * Sysfs stuff
209 */
210
211static inline int lm87_read_value(struct i2c_client *client, u8 reg)
212{
213 return i2c_smbus_read_byte_data(client, reg);
214}
215
216static inline int lm87_write_value(struct i2c_client *client, u8 reg, u8 value)
217{
218 return i2c_smbus_write_byte_data(client, reg, value);
219}
220
221#define show_in(offset) \
8627f9ba 222static ssize_t show_in##offset##_input(struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
223{ \
224 struct lm87_data *data = lm87_update_device(dev); \
225 return sprintf(buf, "%u\n", IN_FROM_REG(data->in[offset], \
226 data->in_scale[offset])); \
227} \
8627f9ba 228static ssize_t show_in##offset##_min(struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
229{ \
230 struct lm87_data *data = lm87_update_device(dev); \
231 return sprintf(buf, "%u\n", IN_FROM_REG(data->in_min[offset], \
232 data->in_scale[offset])); \
233} \
8627f9ba 234static ssize_t show_in##offset##_max(struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
235{ \
236 struct lm87_data *data = lm87_update_device(dev); \
237 return sprintf(buf, "%u\n", IN_FROM_REG(data->in_max[offset], \
238 data->in_scale[offset])); \
239} \
240static DEVICE_ATTR(in##offset##_input, S_IRUGO, \
241 show_in##offset##_input, NULL);
242show_in(0);
243show_in(1);
244show_in(2);
245show_in(3);
246show_in(4);
247show_in(5);
248show_in(6);
249show_in(7);
250
251static void set_in_min(struct device *dev, const char *buf, int nr)
252{
253 struct i2c_client *client = to_i2c_client(dev);
254 struct lm87_data *data = i2c_get_clientdata(client);
255 long val = simple_strtol(buf, NULL, 10);
256
257 down(&data->update_lock);
258 data->in_min[nr] = IN_TO_REG(val, data->in_scale[nr]);
259 lm87_write_value(client, nr<6 ? LM87_REG_IN_MIN(nr) :
260 LM87_REG_AIN_MIN(nr-6), data->in_min[nr]);
261 up(&data->update_lock);
262}
263
264static void set_in_max(struct device *dev, const char *buf, int nr)
265{
266 struct i2c_client *client = to_i2c_client(dev);
267 struct lm87_data *data = i2c_get_clientdata(client);
268 long val = simple_strtol(buf, NULL, 10);
269
270 down(&data->update_lock);
271 data->in_max[nr] = IN_TO_REG(val, data->in_scale[nr]);
272 lm87_write_value(client, nr<6 ? LM87_REG_IN_MAX(nr) :
273 LM87_REG_AIN_MAX(nr-6), data->in_max[nr]);
274 up(&data->update_lock);
275}
276
277#define set_in(offset) \
8627f9ba 278static ssize_t set_in##offset##_min(struct device *dev, struct device_attribute *attr, \
1da177e4
LT
279 const char *buf, size_t count) \
280{ \
281 set_in_min(dev, buf, offset); \
282 return count; \
283} \
8627f9ba 284static ssize_t set_in##offset##_max(struct device *dev, struct device_attribute *attr, \
1da177e4
LT
285 const char *buf, size_t count) \
286{ \
287 set_in_max(dev, buf, offset); \
288 return count; \
289} \
290static DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
291 show_in##offset##_min, set_in##offset##_min); \
292static DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
293 show_in##offset##_max, set_in##offset##_max);
294set_in(0);
295set_in(1);
296set_in(2);
297set_in(3);
298set_in(4);
299set_in(5);
300set_in(6);
301set_in(7);
302
303#define show_temp(offset) \
8627f9ba 304static ssize_t show_temp##offset##_input(struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
305{ \
306 struct lm87_data *data = lm87_update_device(dev); \
307 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp[offset-1])); \
308} \
8627f9ba 309static ssize_t show_temp##offset##_low(struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
310{ \
311 struct lm87_data *data = lm87_update_device(dev); \
312 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_low[offset-1])); \
313} \
8627f9ba 314static ssize_t show_temp##offset##_high(struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
315{ \
316 struct lm87_data *data = lm87_update_device(dev); \
317 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_high[offset-1])); \
318}\
319static DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
320 show_temp##offset##_input, NULL);
321show_temp(1);
322show_temp(2);
323show_temp(3);
324
325static void set_temp_low(struct device *dev, const char *buf, int nr)
326{
327 struct i2c_client *client = to_i2c_client(dev);
328 struct lm87_data *data = i2c_get_clientdata(client);
329 long val = simple_strtol(buf, NULL, 10);
330
331 down(&data->update_lock);
332 data->temp_low[nr] = TEMP_TO_REG(val);
333 lm87_write_value(client, LM87_REG_TEMP_LOW[nr], data->temp_low[nr]);
334 up(&data->update_lock);
335}
336
337static void set_temp_high(struct device *dev, const char *buf, int nr)
338{
339 struct i2c_client *client = to_i2c_client(dev);
340 struct lm87_data *data = i2c_get_clientdata(client);
341 long val = simple_strtol(buf, NULL, 10);
342
343 down(&data->update_lock);
344 data->temp_high[nr] = TEMP_TO_REG(val);
345 lm87_write_value(client, LM87_REG_TEMP_HIGH[nr], data->temp_high[nr]);
346 up(&data->update_lock);
347}
348
349#define set_temp(offset) \
8627f9ba 350static ssize_t set_temp##offset##_low(struct device *dev, struct device_attribute *attr, \
1da177e4
LT
351 const char *buf, size_t count) \
352{ \
353 set_temp_low(dev, buf, offset-1); \
354 return count; \
355} \
8627f9ba 356static ssize_t set_temp##offset##_high(struct device *dev, struct device_attribute *attr, \
1da177e4
LT
357 const char *buf, size_t count) \
358{ \
359 set_temp_high(dev, buf, offset-1); \
360 return count; \
361} \
362static DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
363 show_temp##offset##_high, set_temp##offset##_high); \
364static DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
365 show_temp##offset##_low, set_temp##offset##_low);
366set_temp(1);
367set_temp(2);
368set_temp(3);
369
8627f9ba 370static ssize_t show_temp_crit_int(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
371{
372 struct lm87_data *data = lm87_update_device(dev);
373 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_crit_int));
374}
375
8627f9ba 376static ssize_t show_temp_crit_ext(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
377{
378 struct lm87_data *data = lm87_update_device(dev);
379 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_crit_ext));
380}
381
382static DEVICE_ATTR(temp1_crit, S_IRUGO, show_temp_crit_int, NULL);
383static DEVICE_ATTR(temp2_crit, S_IRUGO, show_temp_crit_ext, NULL);
384static DEVICE_ATTR(temp3_crit, S_IRUGO, show_temp_crit_ext, NULL);
385
386#define show_fan(offset) \
8627f9ba 387static ssize_t show_fan##offset##_input(struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
388{ \
389 struct lm87_data *data = lm87_update_device(dev); \
390 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[offset-1], \
391 FAN_DIV_FROM_REG(data->fan_div[offset-1]))); \
392} \
8627f9ba 393static ssize_t show_fan##offset##_min(struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
394{ \
395 struct lm87_data *data = lm87_update_device(dev); \
396 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[offset-1], \
397 FAN_DIV_FROM_REG(data->fan_div[offset-1]))); \
398} \
8627f9ba 399static ssize_t show_fan##offset##_div(struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4
LT
400{ \
401 struct lm87_data *data = lm87_update_device(dev); \
402 return sprintf(buf, "%d\n", FAN_DIV_FROM_REG(data->fan_div[offset-1])); \
403} \
404static DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
405 show_fan##offset##_input, NULL);
406show_fan(1);
407show_fan(2);
408
409static void set_fan_min(struct device *dev, const char *buf, int nr)
410{
411 struct i2c_client *client = to_i2c_client(dev);
412 struct lm87_data *data = i2c_get_clientdata(client);
413 long val = simple_strtol(buf, NULL, 10);
414
415 down(&data->update_lock);
416 data->fan_min[nr] = FAN_TO_REG(val,
417 FAN_DIV_FROM_REG(data->fan_div[nr]));
418 lm87_write_value(client, LM87_REG_FAN_MIN(nr), data->fan_min[nr]);
419 up(&data->update_lock);
420}
421
422/* Note: we save and restore the fan minimum here, because its value is
423 determined in part by the fan clock divider. This follows the principle
424 of least suprise; the user doesn't expect the fan minimum to change just
425 because the divider changed. */
426static ssize_t set_fan_div(struct device *dev, const char *buf,
427 size_t count, int nr)
428{
429 struct i2c_client *client = to_i2c_client(dev);
430 struct lm87_data *data = i2c_get_clientdata(client);
431 long val = simple_strtol(buf, NULL, 10);
432 unsigned long min;
433 u8 reg;
434
435 down(&data->update_lock);
436 min = FAN_FROM_REG(data->fan_min[nr],
437 FAN_DIV_FROM_REG(data->fan_div[nr]));
438
439 switch (val) {
440 case 1: data->fan_div[nr] = 0; break;
441 case 2: data->fan_div[nr] = 1; break;
442 case 4: data->fan_div[nr] = 2; break;
443 case 8: data->fan_div[nr] = 3; break;
444 default:
445 up(&data->update_lock);
446 return -EINVAL;
447 }
448
449 reg = lm87_read_value(client, LM87_REG_VID_FAN_DIV);
450 switch (nr) {
451 case 0:
452 reg = (reg & 0xCF) | (data->fan_div[0] << 4);
453 break;
454 case 1:
455 reg = (reg & 0x3F) | (data->fan_div[1] << 6);
456 break;
457 }
458 lm87_write_value(client, LM87_REG_VID_FAN_DIV, reg);
459
460 data->fan_min[nr] = FAN_TO_REG(min, val);
461 lm87_write_value(client, LM87_REG_FAN_MIN(nr),
462 data->fan_min[nr]);
463 up(&data->update_lock);
464
465 return count;
466}
467
468#define set_fan(offset) \
8627f9ba 469static ssize_t set_fan##offset##_min(struct device *dev, struct device_attribute *attr, const char *buf, \
1da177e4
LT
470 size_t count) \
471{ \
472 set_fan_min(dev, buf, offset-1); \
473 return count; \
474} \
8627f9ba 475static ssize_t set_fan##offset##_div(struct device *dev, struct device_attribute *attr, const char *buf, \
1da177e4
LT
476 size_t count) \
477{ \
478 return set_fan_div(dev, buf, count, offset-1); \
479} \
480static DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
481 show_fan##offset##_min, set_fan##offset##_min); \
482static DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
483 show_fan##offset##_div, set_fan##offset##_div);
484set_fan(1);
485set_fan(2);
486
8627f9ba 487static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
488{
489 struct lm87_data *data = lm87_update_device(dev);
490 return sprintf(buf, "%d\n", data->alarms);
491}
492static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
493
8627f9ba 494static ssize_t show_vid(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
495{
496 struct lm87_data *data = lm87_update_device(dev);
497 return sprintf(buf, "%d\n", vid_from_reg(data->vid, data->vrm));
498}
499static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid, NULL);
500
8627f9ba 501static ssize_t show_vrm(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
502{
503 struct lm87_data *data = lm87_update_device(dev);
504 return sprintf(buf, "%d\n", data->vrm);
505}
8627f9ba 506static ssize_t set_vrm(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1da177e4
LT
507{
508 struct i2c_client *client = to_i2c_client(dev);
509 struct lm87_data *data = i2c_get_clientdata(client);
510 data->vrm = simple_strtoul(buf, NULL, 10);
511 return count;
512}
513static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm, set_vrm);
514
8627f9ba 515static ssize_t show_aout(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4
LT
516{
517 struct lm87_data *data = lm87_update_device(dev);
518 return sprintf(buf, "%d\n", AOUT_FROM_REG(data->aout));
519}
8627f9ba 520static ssize_t set_aout(struct device *dev, struct device_attribute *attr, const char *buf, size_t count)
1da177e4
LT
521{
522 struct i2c_client *client = to_i2c_client(dev);
523 struct lm87_data *data = i2c_get_clientdata(client);
524 long val = simple_strtol(buf, NULL, 10);
525
526 down(&data->update_lock);
527 data->aout = AOUT_TO_REG(val);
528 lm87_write_value(client, LM87_REG_AOUT, data->aout);
529 up(&data->update_lock);
530 return count;
531}
532static DEVICE_ATTR(aout_output, S_IRUGO | S_IWUSR, show_aout, set_aout);
533
534/*
535 * Real code
536 */
537
538static int lm87_attach_adapter(struct i2c_adapter *adapter)
539{
540 if (!(adapter->class & I2C_CLASS_HWMON))
541 return 0;
542 return i2c_detect(adapter, &addr_data, lm87_detect);
543}
544
545/*
546 * The following function does more than just detection. If detection
547 * succeeds, it also registers the new chip.
548 */
549static int lm87_detect(struct i2c_adapter *adapter, int address, int kind)
550{
551 struct i2c_client *new_client;
552 struct lm87_data *data;
553 int err = 0;
554
555 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
556 goto exit;
557
558 if (!(data = kmalloc(sizeof(struct lm87_data), GFP_KERNEL))) {
559 err = -ENOMEM;
560 goto exit;
561 }
562 memset(data, 0, sizeof(struct lm87_data));
563
564 /* The common I2C client data is placed right before the
565 LM87-specific data. */
566 new_client = &data->client;
567 i2c_set_clientdata(new_client, data);
568 new_client->addr = address;
569 new_client->adapter = adapter;
570 new_client->driver = &lm87_driver;
571 new_client->flags = 0;
572
573 /* Default to an LM87 if forced */
574 if (kind == 0)
575 kind = lm87;
576
577 /* Now, we do the remaining detection. */
578 if (kind < 0) {
579 u8 rev = lm87_read_value(new_client, LM87_REG_REVISION);
580
581 if (rev < 0x01 || rev > 0x08
582 || (lm87_read_value(new_client, LM87_REG_CONFIG) & 0x80)
583 || lm87_read_value(new_client, LM87_REG_COMPANY_ID) != 0x02) {
584 dev_dbg(&adapter->dev,
585 "LM87 detection failed at 0x%02x.\n",
586 address);
587 goto exit_free;
588 }
589 }
590
591 /* We can fill in the remaining client fields */
592 strlcpy(new_client->name, "lm87", I2C_NAME_SIZE);
593 data->valid = 0;
594 init_MUTEX(&data->update_lock);
595
596 /* Tell the I2C layer a new client has arrived */
597 if ((err = i2c_attach_client(new_client)))
598 goto exit_free;
599
600 /* Initialize the LM87 chip */
601 lm87_init_client(new_client);
602
603 data->in_scale[0] = 2500;
604 data->in_scale[1] = 2700;
605 data->in_scale[2] = (data->channel & CHAN_VCC_5V) ? 5000 : 3300;
606 data->in_scale[3] = 5000;
607 data->in_scale[4] = 12000;
608 data->in_scale[5] = 2700;
609 data->in_scale[6] = 1875;
610 data->in_scale[7] = 1875;
611
612 /* Register sysfs hooks */
943b0830
MH
613 data->class_dev = hwmon_device_register(&new_client->dev);
614 if (IS_ERR(data->class_dev)) {
615 err = PTR_ERR(data->class_dev);
616 goto exit_detach;
617 }
618
1da177e4
LT
619 device_create_file(&new_client->dev, &dev_attr_in1_input);
620 device_create_file(&new_client->dev, &dev_attr_in1_min);
621 device_create_file(&new_client->dev, &dev_attr_in1_max);
622 device_create_file(&new_client->dev, &dev_attr_in2_input);
623 device_create_file(&new_client->dev, &dev_attr_in2_min);
624 device_create_file(&new_client->dev, &dev_attr_in2_max);
625 device_create_file(&new_client->dev, &dev_attr_in3_input);
626 device_create_file(&new_client->dev, &dev_attr_in3_min);
627 device_create_file(&new_client->dev, &dev_attr_in3_max);
628 device_create_file(&new_client->dev, &dev_attr_in4_input);
629 device_create_file(&new_client->dev, &dev_attr_in4_min);
630 device_create_file(&new_client->dev, &dev_attr_in4_max);
631
632 if (data->channel & CHAN_NO_FAN(0)) {
633 device_create_file(&new_client->dev, &dev_attr_in6_input);
634 device_create_file(&new_client->dev, &dev_attr_in6_min);
635 device_create_file(&new_client->dev, &dev_attr_in6_max);
636 } else {
637 device_create_file(&new_client->dev, &dev_attr_fan1_input);
638 device_create_file(&new_client->dev, &dev_attr_fan1_min);
639 device_create_file(&new_client->dev, &dev_attr_fan1_div);
640 }
641 if (data->channel & CHAN_NO_FAN(1)) {
642 device_create_file(&new_client->dev, &dev_attr_in7_input);
643 device_create_file(&new_client->dev, &dev_attr_in7_min);
644 device_create_file(&new_client->dev, &dev_attr_in7_max);
645 } else {
646 device_create_file(&new_client->dev, &dev_attr_fan2_input);
647 device_create_file(&new_client->dev, &dev_attr_fan2_min);
648 device_create_file(&new_client->dev, &dev_attr_fan2_div);
649 }
650
651 device_create_file(&new_client->dev, &dev_attr_temp1_input);
652 device_create_file(&new_client->dev, &dev_attr_temp1_max);
653 device_create_file(&new_client->dev, &dev_attr_temp1_min);
654 device_create_file(&new_client->dev, &dev_attr_temp1_crit);
655 device_create_file(&new_client->dev, &dev_attr_temp2_input);
656 device_create_file(&new_client->dev, &dev_attr_temp2_max);
657 device_create_file(&new_client->dev, &dev_attr_temp2_min);
658 device_create_file(&new_client->dev, &dev_attr_temp2_crit);
659
660 if (data->channel & CHAN_TEMP3) {
661 device_create_file(&new_client->dev, &dev_attr_temp3_input);
662 device_create_file(&new_client->dev, &dev_attr_temp3_max);
663 device_create_file(&new_client->dev, &dev_attr_temp3_min);
664 device_create_file(&new_client->dev, &dev_attr_temp3_crit);
665 } else {
666 device_create_file(&new_client->dev, &dev_attr_in0_input);
667 device_create_file(&new_client->dev, &dev_attr_in0_min);
668 device_create_file(&new_client->dev, &dev_attr_in0_max);
669 device_create_file(&new_client->dev, &dev_attr_in5_input);
670 device_create_file(&new_client->dev, &dev_attr_in5_min);
671 device_create_file(&new_client->dev, &dev_attr_in5_max);
672 }
673
674 if (!(data->channel & CHAN_NO_VID)) {
675 device_create_file(&new_client->dev, &dev_attr_cpu0_vid);
676 device_create_file(&new_client->dev, &dev_attr_vrm);
677 }
678
679 device_create_file(&new_client->dev, &dev_attr_alarms);
680 device_create_file(&new_client->dev, &dev_attr_aout_output);
681
682 return 0;
683
943b0830
MH
684exit_detach:
685 i2c_detach_client(new_client);
1da177e4
LT
686exit_free:
687 kfree(data);
688exit:
689 return err;
690}
691
692static void lm87_init_client(struct i2c_client *client)
693{
694 struct lm87_data *data = i2c_get_clientdata(client);
695 u8 config;
696
697 data->channel = lm87_read_value(client, LM87_REG_CHANNEL_MODE);
698 data->vrm = i2c_which_vrm();
699
700 config = lm87_read_value(client, LM87_REG_CONFIG);
701 if (!(config & 0x01)) {
702 int i;
703
704 /* Limits are left uninitialized after power-up */
705 for (i = 1; i < 6; i++) {
706 lm87_write_value(client, LM87_REG_IN_MIN(i), 0x00);
707 lm87_write_value(client, LM87_REG_IN_MAX(i), 0xFF);
708 }
709 for (i = 0; i < 2; i++) {
710 lm87_write_value(client, LM87_REG_TEMP_HIGH[i], 0x7F);
711 lm87_write_value(client, LM87_REG_TEMP_LOW[i], 0x00);
712 lm87_write_value(client, LM87_REG_AIN_MIN(i), 0x00);
713 lm87_write_value(client, LM87_REG_AIN_MAX(i), 0xFF);
714 }
715 if (data->channel & CHAN_TEMP3) {
716 lm87_write_value(client, LM87_REG_TEMP_HIGH[2], 0x7F);
717 lm87_write_value(client, LM87_REG_TEMP_LOW[2], 0x00);
718 } else {
719 lm87_write_value(client, LM87_REG_IN_MIN(0), 0x00);
720 lm87_write_value(client, LM87_REG_IN_MAX(0), 0xFF);
721 }
722 }
723 if ((config & 0x81) != 0x01) {
724 /* Start monitoring */
725 lm87_write_value(client, LM87_REG_CONFIG,
726 (config & 0xF7) | 0x01);
727 }
728}
729
730static int lm87_detach_client(struct i2c_client *client)
731{
943b0830 732 struct lm87_data *data = i2c_get_clientdata(client);
1da177e4
LT
733 int err;
734
943b0830
MH
735 hwmon_device_unregister(data->class_dev);
736
7bef5594 737 if ((err = i2c_detach_client(client)))
1da177e4 738 return err;
1da177e4 739
943b0830 740 kfree(data);
1da177e4
LT
741 return 0;
742}
743
744static struct lm87_data *lm87_update_device(struct device *dev)
745{
746 struct i2c_client *client = to_i2c_client(dev);
747 struct lm87_data *data = i2c_get_clientdata(client);
748
749 down(&data->update_lock);
750
751 if (time_after(jiffies, data->last_updated + HZ) || !data->valid) {
752 int i, j;
753
754 dev_dbg(&client->dev, "Updating data.\n");
755
756 i = (data->channel & CHAN_TEMP3) ? 1 : 0;
757 j = (data->channel & CHAN_TEMP3) ? 5 : 6;
758 for (; i < j; i++) {
759 data->in[i] = lm87_read_value(client,
760 LM87_REG_IN(i));
761 data->in_min[i] = lm87_read_value(client,
762 LM87_REG_IN_MIN(i));
763 data->in_max[i] = lm87_read_value(client,
764 LM87_REG_IN_MAX(i));
765 }
766
767 for (i = 0; i < 2; i++) {
768 if (data->channel & CHAN_NO_FAN(i)) {
769 data->in[6+i] = lm87_read_value(client,
770 LM87_REG_AIN(i));
771 data->in_max[6+i] = lm87_read_value(client,
772 LM87_REG_AIN_MAX(i));
773 data->in_min[6+i] = lm87_read_value(client,
774 LM87_REG_AIN_MIN(i));
775
776 } else {
777 data->fan[i] = lm87_read_value(client,
778 LM87_REG_FAN(i));
779 data->fan_min[i] = lm87_read_value(client,
780 LM87_REG_FAN_MIN(i));
781 }
782 }
783
784 j = (data->channel & CHAN_TEMP3) ? 3 : 2;
785 for (i = 0 ; i < j; i++) {
786 data->temp[i] = lm87_read_value(client,
787 LM87_REG_TEMP[i]);
788 data->temp_high[i] = lm87_read_value(client,
789 LM87_REG_TEMP_HIGH[i]);
790 data->temp_low[i] = lm87_read_value(client,
791 LM87_REG_TEMP_LOW[i]);
792 }
793
794 i = lm87_read_value(client, LM87_REG_TEMP_HW_INT_LOCK);
795 j = lm87_read_value(client, LM87_REG_TEMP_HW_INT);
796 data->temp_crit_int = min(i, j);
797
798 i = lm87_read_value(client, LM87_REG_TEMP_HW_EXT_LOCK);
799 j = lm87_read_value(client, LM87_REG_TEMP_HW_EXT);
800 data->temp_crit_ext = min(i, j);
801
802 i = lm87_read_value(client, LM87_REG_VID_FAN_DIV);
803 data->fan_div[0] = (i >> 4) & 0x03;
804 data->fan_div[1] = (i >> 6) & 0x03;
805 data->vid = (i & 0x0F)
806 | (lm87_read_value(client, LM87_REG_VID4) & 0x01)
807 << 4;
808
809 data->alarms = lm87_read_value(client, LM87_REG_ALARMS1)
810 | (lm87_read_value(client, LM87_REG_ALARMS2)
811 << 8);
812 data->aout = lm87_read_value(client, LM87_REG_AOUT);
813
814 data->last_updated = jiffies;
815 data->valid = 1;
816 }
817
818 up(&data->update_lock);
819
820 return data;
821}
822
823static int __init sensors_lm87_init(void)
824{
825 return i2c_add_driver(&lm87_driver);
826}
827
828static void __exit sensors_lm87_exit(void)
829{
830 i2c_del_driver(&lm87_driver);
831}
832
833MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org> and others");
834MODULE_DESCRIPTION("LM87 driver");
835MODULE_LICENSE("GPL");
836
837module_init(sensors_lm87_init);
838module_exit(sensors_lm87_exit);
This page took 0.349115 seconds and 5 git commands to generate.