blob: 1cf5ff5bfa43f1cad0fbd0f9b8bec3c6d5170293 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * lm80.c - From lm_sensors, Linux kernel modules for hardware
3 * monitoring
4 * Copyright (C) 1998, 1999 Frodo Looijaard <frodol@dds.nl>
5 * and Philip Edelbrock <phil@netroedge.com>
6 *
7 * Ported to Linux 2.6 by Tiago Sousa <mirage@kaotik.org>
8 *
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22 */
23
Linus Torvalds1da177e2005-04-16 15:20:36 -070024#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/slab.h>
27#include <linux/jiffies.h>
28#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040029#include <linux/hwmon.h>
Jean Delvaref8181762008-01-05 15:37:05 +010030#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040031#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010032#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/* Addresses to scan */
Mark M. Hoffman25e9c862008-02-17 22:28:03 -050035static const unsigned short normal_i2c[] = { 0x28, 0x29, 0x2a, 0x2b, 0x2c, 0x2d,
36 0x2e, 0x2f, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* Insmod parameters */
Jean Delvaref4b50262005-07-31 21:49:03 +020039I2C_CLIENT_INSMOD_1(lm80);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/* Many LM80 constants specified below */
42
43/* The LM80 registers */
44#define LM80_REG_IN_MAX(nr) (0x2a + (nr) * 2)
45#define LM80_REG_IN_MIN(nr) (0x2b + (nr) * 2)
46#define LM80_REG_IN(nr) (0x20 + (nr))
47
48#define LM80_REG_FAN1 0x28
49#define LM80_REG_FAN2 0x29
50#define LM80_REG_FAN_MIN(nr) (0x3b + (nr))
51
52#define LM80_REG_TEMP 0x27
53#define LM80_REG_TEMP_HOT_MAX 0x38
54#define LM80_REG_TEMP_HOT_HYST 0x39
55#define LM80_REG_TEMP_OS_MAX 0x3a
56#define LM80_REG_TEMP_OS_HYST 0x3b
57
58#define LM80_REG_CONFIG 0x00
59#define LM80_REG_ALARM1 0x01
60#define LM80_REG_ALARM2 0x02
61#define LM80_REG_MASK1 0x03
62#define LM80_REG_MASK2 0x04
63#define LM80_REG_FANDIV 0x05
64#define LM80_REG_RES 0x06
65
66
67/* Conversions. Rounding and limit checking is only done on the TO_REG
68 variants. Note that you should be a bit careful with which arguments
69 these macros are called: arguments may be evaluated more than once.
70 Fixing this is just not worth it. */
71
72#define IN_TO_REG(val) (SENSORS_LIMIT(((val)+5)/10,0,255))
73#define IN_FROM_REG(val) ((val)*10)
74
75static inline unsigned char FAN_TO_REG(unsigned rpm, unsigned div)
76{
77 if (rpm == 0)
78 return 255;
79 rpm = SENSORS_LIMIT(rpm, 1, 1000000);
80 return SENSORS_LIMIT((1350000 + rpm*div / 2) / (rpm*div), 1, 254);
81}
82
83#define FAN_FROM_REG(val,div) ((val)==0?-1:\
84 (val)==255?0:1350000/((div)*(val)))
85
86static inline long TEMP_FROM_REG(u16 temp)
87{
88 long res;
89
90 temp >>= 4;
91 if (temp < 0x0800)
92 res = 625 * (long) temp;
93 else
94 res = ((long) temp - 0x01000) * 625;
95
96 return res / 10;
97}
98
99#define TEMP_LIMIT_FROM_REG(val) (((val)>0x80?(val)-0x100:(val))*1000)
100
101#define TEMP_LIMIT_TO_REG(val) SENSORS_LIMIT((val)<0?\
102 ((val)-500)/1000:((val)+500)/1000,0,255)
103
104#define DIV_FROM_REG(val) (1 << (val))
105
106/*
107 * Client data (each client gets its own)
108 */
109
110struct lm80_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700111 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100112 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 char valid; /* !=0 if following fields are valid */
114 unsigned long last_updated; /* In jiffies */
115
116 u8 in[7]; /* Register value */
117 u8 in_max[7]; /* Register value */
118 u8 in_min[7]; /* Register value */
119 u8 fan[2]; /* Register value */
120 u8 fan_min[2]; /* Register value */
121 u8 fan_div[2]; /* Register encoding, shifted right */
122 u16 temp; /* Register values, shifted right */
123 u8 temp_hot_max; /* Register value */
124 u8 temp_hot_hyst; /* Register value */
125 u8 temp_os_max; /* Register value */
126 u8 temp_os_hyst; /* Register value */
127 u16 alarms; /* Register encoding, combined */
128};
129
Jean Delvare6cc37ee2008-01-05 15:35:09 +0100130/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 * Functions declaration
132 */
133
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200134static int lm80_probe(struct i2c_client *client,
135 const struct i2c_device_id *id);
Jean Delvare310ec792009-12-14 21:17:23 +0100136static int lm80_detect(struct i2c_client *client, struct i2c_board_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137static void lm80_init_client(struct i2c_client *client);
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200138static int lm80_remove(struct i2c_client *client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139static struct lm80_data *lm80_update_device(struct device *dev);
140static int lm80_read_value(struct i2c_client *client, u8 reg);
141static int lm80_write_value(struct i2c_client *client, u8 reg, u8 value);
142
143/*
144 * Driver data (common to all clients)
145 */
146
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200147static const struct i2c_device_id lm80_id[] = {
148 { "lm80", lm80 },
149 { }
150};
151MODULE_DEVICE_TABLE(i2c, lm80_id);
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153static struct i2c_driver lm80_driver = {
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200154 .class = I2C_CLASS_HWMON,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100155 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100156 .name = "lm80",
157 },
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200158 .probe = lm80_probe,
159 .remove = lm80_remove,
160 .id_table = lm80_id,
161 .detect = lm80_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +0100162 .address_list = normal_i2c,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163};
164
165/*
166 * Sysfs stuff
167 */
168
169#define show_in(suffix, value) \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400170static ssize_t show_in_##suffix(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171{ \
Jean Delvaref8181762008-01-05 15:37:05 +0100172 int nr = to_sensor_dev_attr(attr)->index; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700173 struct lm80_data *data = lm80_update_device(dev); \
Jean Delvaref8181762008-01-05 15:37:05 +0100174 return sprintf(buf, "%d\n", IN_FROM_REG(data->value[nr])); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175}
Jean Delvaref8181762008-01-05 15:37:05 +0100176show_in(min, in_min)
177show_in(max, in_max)
178show_in(input, in)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700179
180#define set_in(suffix, value, reg) \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400181static ssize_t set_in_##suffix(struct device *dev, struct device_attribute *attr, const char *buf, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182 size_t count) \
183{ \
Jean Delvaref8181762008-01-05 15:37:05 +0100184 int nr = to_sensor_dev_attr(attr)->index; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 struct i2c_client *client = to_i2c_client(dev); \
186 struct lm80_data *data = i2c_get_clientdata(client); \
187 long val = simple_strtol(buf, NULL, 10); \
188 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100189 mutex_lock(&data->update_lock);\
Jean Delvaref8181762008-01-05 15:37:05 +0100190 data->value[nr] = IN_TO_REG(val); \
191 lm80_write_value(client, reg(nr), data->value[nr]); \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100192 mutex_unlock(&data->update_lock);\
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193 return count; \
194}
Jean Delvaref8181762008-01-05 15:37:05 +0100195set_in(min, in_min, LM80_REG_IN_MIN)
196set_in(max, in_max, LM80_REG_IN_MAX)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197
Jean Delvaref8181762008-01-05 15:37:05 +0100198#define show_fan(suffix, value) \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400199static ssize_t show_fan_##suffix(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200{ \
Jean Delvaref8181762008-01-05 15:37:05 +0100201 int nr = to_sensor_dev_attr(attr)->index; \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 struct lm80_data *data = lm80_update_device(dev); \
Jean Delvaref8181762008-01-05 15:37:05 +0100203 return sprintf(buf, "%d\n", FAN_FROM_REG(data->value[nr], \
204 DIV_FROM_REG(data->fan_div[nr]))); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205}
Jean Delvaref8181762008-01-05 15:37:05 +0100206show_fan(min, fan_min)
207show_fan(input, fan)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208
Jean Delvaref8181762008-01-05 15:37:05 +0100209static ssize_t show_fan_div(struct device *dev, struct device_attribute *attr,
210 char *buf)
211{
212 int nr = to_sensor_dev_attr(attr)->index;
213 struct lm80_data *data = lm80_update_device(dev);
214 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216
Jean Delvaref8181762008-01-05 15:37:05 +0100217static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
218 const char *buf, size_t count)
219{
220 int nr = to_sensor_dev_attr(attr)->index;
221 struct i2c_client *client = to_i2c_client(dev);
222 struct lm80_data *data = i2c_get_clientdata(client);
223 long val = simple_strtoul(buf, NULL, 10);
224
225 mutex_lock(&data->update_lock);
226 data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
227 lm80_write_value(client, LM80_REG_FAN_MIN(nr + 1), data->fan_min[nr]);
228 mutex_unlock(&data->update_lock);
229 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700231
232/* Note: we save and restore the fan minimum here, because its value is
233 determined in part by the fan divisor. This follows the principle of
Andreas Mohrd6e05ed2006-06-26 18:35:02 +0200234 least surprise; the user doesn't expect the fan minimum to change just
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235 because the divisor changed. */
Jean Delvaref8181762008-01-05 15:37:05 +0100236static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
237 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
Jean Delvaref8181762008-01-05 15:37:05 +0100239 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240 struct i2c_client *client = to_i2c_client(dev);
241 struct lm80_data *data = i2c_get_clientdata(client);
242 unsigned long min, val = simple_strtoul(buf, NULL, 10);
243 u8 reg;
244
245 /* Save fan_min */
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100246 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 min = FAN_FROM_REG(data->fan_min[nr],
248 DIV_FROM_REG(data->fan_div[nr]));
249
250 switch (val) {
251 case 1: data->fan_div[nr] = 0; break;
252 case 2: data->fan_div[nr] = 1; break;
253 case 4: data->fan_div[nr] = 2; break;
254 case 8: data->fan_div[nr] = 3; break;
255 default:
256 dev_err(&client->dev, "fan_div value %ld not "
257 "supported. Choose one of 1, 2, 4 or 8!\n", val);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100258 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700259 return -EINVAL;
260 }
261
262 reg = (lm80_read_value(client, LM80_REG_FANDIV) & ~(3 << (2 * (nr + 1))))
263 | (data->fan_div[nr] << (2 * (nr + 1)));
264 lm80_write_value(client, LM80_REG_FANDIV, reg);
265
266 /* Restore fan_min */
267 data->fan_min[nr] = FAN_TO_REG(min, DIV_FROM_REG(data->fan_div[nr]));
268 lm80_write_value(client, LM80_REG_FAN_MIN(nr + 1), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100269 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 return count;
272}
273
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400274static ssize_t show_temp_input1(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275{
276 struct lm80_data *data = lm80_update_device(dev);
277 return sprintf(buf, "%ld\n", TEMP_FROM_REG(data->temp));
278}
279
280#define show_temp(suffix, value) \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400281static ssize_t show_temp_##suffix(struct device *dev, struct device_attribute *attr, char *buf) \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{ \
283 struct lm80_data *data = lm80_update_device(dev); \
284 return sprintf(buf, "%d\n", TEMP_LIMIT_FROM_REG(data->value)); \
285}
286show_temp(hot_max, temp_hot_max);
287show_temp(hot_hyst, temp_hot_hyst);
288show_temp(os_max, temp_os_max);
289show_temp(os_hyst, temp_os_hyst);
290
291#define set_temp(suffix, value, reg) \
Yani Ioannou8627f9b2005-05-17 06:42:03 -0400292static ssize_t set_temp_##suffix(struct device *dev, struct device_attribute *attr, const char *buf, \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293 size_t count) \
294{ \
295 struct i2c_client *client = to_i2c_client(dev); \
296 struct lm80_data *data = i2c_get_clientdata(client); \
297 long val = simple_strtoul(buf, NULL, 10); \
298 \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100299 mutex_lock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 data->value = TEMP_LIMIT_TO_REG(val); \
301 lm80_write_value(client, reg, data->value); \
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100302 mutex_unlock(&data->update_lock); \
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 return count; \
304}
305set_temp(hot_max, temp_hot_max, LM80_REG_TEMP_HOT_MAX);
306set_temp(hot_hyst, temp_hot_hyst, LM80_REG_TEMP_HOT_HYST);
307set_temp(os_max, temp_os_max, LM80_REG_TEMP_OS_MAX);
308set_temp(os_hyst, temp_os_hyst, LM80_REG_TEMP_OS_HYST);
309
Jean Delvare6cc37ee2008-01-05 15:35:09 +0100310static ssize_t show_alarms(struct device *dev, struct device_attribute *attr,
311 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
313 struct lm80_data *data = lm80_update_device(dev);
314 return sprintf(buf, "%u\n", data->alarms);
315}
316
Jean Delvaree84542f2008-01-05 15:40:38 +0100317static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
318 char *buf)
319{
320 int bitnr = to_sensor_dev_attr(attr)->index;
321 struct lm80_data *data = lm80_update_device(dev);
322 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
323}
324
Jean Delvaref8181762008-01-05 15:37:05 +0100325static SENSOR_DEVICE_ATTR(in0_min, S_IWUSR | S_IRUGO,
326 show_in_min, set_in_min, 0);
327static SENSOR_DEVICE_ATTR(in1_min, S_IWUSR | S_IRUGO,
328 show_in_min, set_in_min, 1);
329static SENSOR_DEVICE_ATTR(in2_min, S_IWUSR | S_IRUGO,
330 show_in_min, set_in_min, 2);
331static SENSOR_DEVICE_ATTR(in3_min, S_IWUSR | S_IRUGO,
332 show_in_min, set_in_min, 3);
333static SENSOR_DEVICE_ATTR(in4_min, S_IWUSR | S_IRUGO,
334 show_in_min, set_in_min, 4);
335static SENSOR_DEVICE_ATTR(in5_min, S_IWUSR | S_IRUGO,
336 show_in_min, set_in_min, 5);
337static SENSOR_DEVICE_ATTR(in6_min, S_IWUSR | S_IRUGO,
338 show_in_min, set_in_min, 6);
339static SENSOR_DEVICE_ATTR(in0_max, S_IWUSR | S_IRUGO,
340 show_in_max, set_in_max, 0);
341static SENSOR_DEVICE_ATTR(in1_max, S_IWUSR | S_IRUGO,
342 show_in_max, set_in_max, 1);
343static SENSOR_DEVICE_ATTR(in2_max, S_IWUSR | S_IRUGO,
344 show_in_max, set_in_max, 2);
345static SENSOR_DEVICE_ATTR(in3_max, S_IWUSR | S_IRUGO,
346 show_in_max, set_in_max, 3);
347static SENSOR_DEVICE_ATTR(in4_max, S_IWUSR | S_IRUGO,
348 show_in_max, set_in_max, 4);
349static SENSOR_DEVICE_ATTR(in5_max, S_IWUSR | S_IRUGO,
350 show_in_max, set_in_max, 5);
351static SENSOR_DEVICE_ATTR(in6_max, S_IWUSR | S_IRUGO,
352 show_in_max, set_in_max, 6);
353static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, show_in_input, NULL, 0);
354static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, show_in_input, NULL, 1);
355static SENSOR_DEVICE_ATTR(in2_input, S_IRUGO, show_in_input, NULL, 2);
356static SENSOR_DEVICE_ATTR(in3_input, S_IRUGO, show_in_input, NULL, 3);
357static SENSOR_DEVICE_ATTR(in4_input, S_IRUGO, show_in_input, NULL, 4);
358static SENSOR_DEVICE_ATTR(in5_input, S_IRUGO, show_in_input, NULL, 5);
359static SENSOR_DEVICE_ATTR(in6_input, S_IRUGO, show_in_input, NULL, 6);
360static SENSOR_DEVICE_ATTR(fan1_min, S_IWUSR | S_IRUGO,
361 show_fan_min, set_fan_min, 0);
362static SENSOR_DEVICE_ATTR(fan2_min, S_IWUSR | S_IRUGO,
363 show_fan_min, set_fan_min, 1);
364static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan_input, NULL, 0);
365static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, show_fan_input, NULL, 1);
366static SENSOR_DEVICE_ATTR(fan1_div, S_IWUSR | S_IRUGO,
367 show_fan_div, set_fan_div, 0);
368static SENSOR_DEVICE_ATTR(fan2_div, S_IWUSR | S_IRUGO,
369 show_fan_div, set_fan_div, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700370static DEVICE_ATTR(temp1_input, S_IRUGO, show_temp_input1, NULL);
371static DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp_hot_max,
372 set_temp_hot_max);
373static DEVICE_ATTR(temp1_max_hyst, S_IWUSR | S_IRUGO, show_temp_hot_hyst,
374 set_temp_hot_hyst);
375static DEVICE_ATTR(temp1_crit, S_IWUSR | S_IRUGO, show_temp_os_max,
376 set_temp_os_max);
377static DEVICE_ATTR(temp1_crit_hyst, S_IWUSR | S_IRUGO, show_temp_os_hyst,
378 set_temp_os_hyst);
379static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
Jean Delvaree84542f2008-01-05 15:40:38 +0100380static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
381static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
382static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
383static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
384static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 4);
385static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 5);
386static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 6);
387static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 10);
388static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 11);
389static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 8);
390static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 13);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391
392/*
393 * Real code
394 */
395
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200396static struct attribute *lm80_attributes[] = {
Jean Delvaref8181762008-01-05 15:37:05 +0100397 &sensor_dev_attr_in0_min.dev_attr.attr,
398 &sensor_dev_attr_in1_min.dev_attr.attr,
399 &sensor_dev_attr_in2_min.dev_attr.attr,
400 &sensor_dev_attr_in3_min.dev_attr.attr,
401 &sensor_dev_attr_in4_min.dev_attr.attr,
402 &sensor_dev_attr_in5_min.dev_attr.attr,
403 &sensor_dev_attr_in6_min.dev_attr.attr,
404 &sensor_dev_attr_in0_max.dev_attr.attr,
405 &sensor_dev_attr_in1_max.dev_attr.attr,
406 &sensor_dev_attr_in2_max.dev_attr.attr,
407 &sensor_dev_attr_in3_max.dev_attr.attr,
408 &sensor_dev_attr_in4_max.dev_attr.attr,
409 &sensor_dev_attr_in5_max.dev_attr.attr,
410 &sensor_dev_attr_in6_max.dev_attr.attr,
411 &sensor_dev_attr_in0_input.dev_attr.attr,
412 &sensor_dev_attr_in1_input.dev_attr.attr,
413 &sensor_dev_attr_in2_input.dev_attr.attr,
414 &sensor_dev_attr_in3_input.dev_attr.attr,
415 &sensor_dev_attr_in4_input.dev_attr.attr,
416 &sensor_dev_attr_in5_input.dev_attr.attr,
417 &sensor_dev_attr_in6_input.dev_attr.attr,
418 &sensor_dev_attr_fan1_min.dev_attr.attr,
419 &sensor_dev_attr_fan2_min.dev_attr.attr,
420 &sensor_dev_attr_fan1_input.dev_attr.attr,
421 &sensor_dev_attr_fan2_input.dev_attr.attr,
422 &sensor_dev_attr_fan1_div.dev_attr.attr,
423 &sensor_dev_attr_fan2_div.dev_attr.attr,
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200424 &dev_attr_temp1_input.attr,
425 &dev_attr_temp1_max.attr,
426 &dev_attr_temp1_max_hyst.attr,
427 &dev_attr_temp1_crit.attr,
428 &dev_attr_temp1_crit_hyst.attr,
429 &dev_attr_alarms.attr,
Jean Delvaree84542f2008-01-05 15:40:38 +0100430 &sensor_dev_attr_in0_alarm.dev_attr.attr,
431 &sensor_dev_attr_in1_alarm.dev_attr.attr,
432 &sensor_dev_attr_in2_alarm.dev_attr.attr,
433 &sensor_dev_attr_in3_alarm.dev_attr.attr,
434 &sensor_dev_attr_in4_alarm.dev_attr.attr,
435 &sensor_dev_attr_in5_alarm.dev_attr.attr,
436 &sensor_dev_attr_in6_alarm.dev_attr.attr,
437 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
438 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
439 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
440 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200441 NULL
442};
443
444static const struct attribute_group lm80_group = {
445 .attrs = lm80_attributes,
446};
447
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200448/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare310ec792009-12-14 21:17:23 +0100449static int lm80_detect(struct i2c_client *client, struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200451 struct i2c_adapter *adapter = client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 int i, cur;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700453
454 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200455 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456
457 /* Now, we do the remaining detection. It is lousy. */
Jean Delvare6cc37ee2008-01-05 15:35:09 +0100458 if (lm80_read_value(client, LM80_REG_ALARM2) & 0xc0)
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200459 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 for (i = 0x2a; i <= 0x3d; i++) {
Jean Delvare6cc37ee2008-01-05 15:35:09 +0100461 cur = i2c_smbus_read_byte_data(client, i);
462 if ((i2c_smbus_read_byte_data(client, i + 0x40) != cur)
463 || (i2c_smbus_read_byte_data(client, i + 0x80) != cur)
464 || (i2c_smbus_read_byte_data(client, i + 0xc0) != cur))
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200465 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 }
467
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200468 strlcpy(info->type, "lm80", I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200470 return 0;
471}
472
473static int lm80_probe(struct i2c_client *client,
474 const struct i2c_device_id *id)
475{
476 struct lm80_data *data;
477 int err;
478
479 data = kzalloc(sizeof(struct lm80_data), GFP_KERNEL);
480 if (!data) {
481 err = -ENOMEM;
482 goto exit;
483 }
484
485 i2c_set_clientdata(client, data);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100486 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 /* Initialize the LM80 chip */
Jean Delvare6cc37ee2008-01-05 15:35:09 +0100489 lm80_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490
491 /* A few vars need to be filled upon startup */
Jean Delvare6cc37ee2008-01-05 15:35:09 +0100492 data->fan_min[0] = lm80_read_value(client, LM80_REG_FAN_MIN(1));
493 data->fan_min[1] = lm80_read_value(client, LM80_REG_FAN_MIN(2));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 /* Register sysfs hooks */
Jean Delvare6cc37ee2008-01-05 15:35:09 +0100496 if ((err = sysfs_create_group(&client->dev.kobj, &lm80_group)))
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200497 goto error_free;
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200498
Jean Delvare6cc37ee2008-01-05 15:35:09 +0100499 data->hwmon_dev = hwmon_device_register(&client->dev);
Tony Jones1beeffe2007-08-20 13:46:20 -0700500 if (IS_ERR(data->hwmon_dev)) {
501 err = PTR_ERR(data->hwmon_dev);
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200502 goto error_remove;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400503 }
504
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return 0;
506
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200507error_remove:
Jean Delvare6cc37ee2008-01-05 15:35:09 +0100508 sysfs_remove_group(&client->dev.kobj, &lm80_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509error_free:
510 kfree(data);
511exit:
512 return err;
513}
514
Jean Delvare8c8bacc2008-07-16 19:30:14 +0200515static int lm80_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400517 struct lm80_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
Tony Jones1beeffe2007-08-20 13:46:20 -0700519 hwmon_device_unregister(data->hwmon_dev);
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200520 sysfs_remove_group(&client->dev.kobj, &lm80_group);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400522 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 return 0;
524}
525
526static int lm80_read_value(struct i2c_client *client, u8 reg)
527{
528 return i2c_smbus_read_byte_data(client, reg);
529}
530
531static int lm80_write_value(struct i2c_client *client, u8 reg, u8 value)
532{
533 return i2c_smbus_write_byte_data(client, reg, value);
534}
535
536/* Called when we have found a new LM80. */
537static void lm80_init_client(struct i2c_client *client)
538{
539 /* Reset all except Watchdog values and last conversion values
540 This sets fan-divs to 2, among others. This makes most other
541 initializations unnecessary */
542 lm80_write_value(client, LM80_REG_CONFIG, 0x80);
543 /* Set 11-bit temperature resolution */
544 lm80_write_value(client, LM80_REG_RES, 0x08);
545
546 /* Start monitoring */
547 lm80_write_value(client, LM80_REG_CONFIG, 0x01);
548}
549
550static struct lm80_data *lm80_update_device(struct device *dev)
551{
552 struct i2c_client *client = to_i2c_client(dev);
553 struct lm80_data *data = i2c_get_clientdata(client);
554 int i;
555
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100556 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
558 if (time_after(jiffies, data->last_updated + 2 * HZ) || !data->valid) {
559 dev_dbg(&client->dev, "Starting lm80 update\n");
560 for (i = 0; i <= 6; i++) {
561 data->in[i] =
562 lm80_read_value(client, LM80_REG_IN(i));
563 data->in_min[i] =
564 lm80_read_value(client, LM80_REG_IN_MIN(i));
565 data->in_max[i] =
566 lm80_read_value(client, LM80_REG_IN_MAX(i));
567 }
568 data->fan[0] = lm80_read_value(client, LM80_REG_FAN1);
569 data->fan_min[0] =
570 lm80_read_value(client, LM80_REG_FAN_MIN(1));
571 data->fan[1] = lm80_read_value(client, LM80_REG_FAN2);
572 data->fan_min[1] =
573 lm80_read_value(client, LM80_REG_FAN_MIN(2));
574
575 data->temp =
576 (lm80_read_value(client, LM80_REG_TEMP) << 8) |
577 (lm80_read_value(client, LM80_REG_RES) & 0xf0);
578 data->temp_os_max =
579 lm80_read_value(client, LM80_REG_TEMP_OS_MAX);
580 data->temp_os_hyst =
581 lm80_read_value(client, LM80_REG_TEMP_OS_HYST);
582 data->temp_hot_max =
583 lm80_read_value(client, LM80_REG_TEMP_HOT_MAX);
584 data->temp_hot_hyst =
585 lm80_read_value(client, LM80_REG_TEMP_HOT_HYST);
586
587 i = lm80_read_value(client, LM80_REG_FANDIV);
588 data->fan_div[0] = (i >> 2) & 0x03;
589 data->fan_div[1] = (i >> 4) & 0x03;
590 data->alarms = lm80_read_value(client, LM80_REG_ALARM1) +
591 (lm80_read_value(client, LM80_REG_ALARM2) << 8);
592 data->last_updated = jiffies;
593 data->valid = 1;
594 }
595
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100596 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700597
598 return data;
599}
600
601static int __init sensors_lm80_init(void)
602{
603 return i2c_add_driver(&lm80_driver);
604}
605
606static void __exit sensors_lm80_exit(void)
607{
608 i2c_del_driver(&lm80_driver);
609}
610
611MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl> and "
612 "Philip Edelbrock <phil@netroedge.com>");
613MODULE_DESCRIPTION("LM80 driver");
614MODULE_LICENSE("GPL");
615
616module_init(sensors_lm80_init);
617module_exit(sensors_lm80_exit);