blob: 8984ef141627a84f0f92b591bdf0de028030fd56 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 gl520sm.c - Part of lm_sensors, Linux kernel modules for hardware
3 monitoring
4 Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl>,
Jan Engelhardt96de0e22007-10-19 23:21:04 +02005 Kyösti Mälkki <kmalkki@cc.hut.fi>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 Copyright (c) 2005 Maarten Deprez <maartendeprez@users.sourceforge.net>
7
8 This program is free software; you can redistribute it and/or modify
9 it under the terms of the GNU General Public License as published by
10 the Free Software Foundation; either version 2 of the License, or
11 (at your option) any later version.
12
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
17
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
21
22*/
23
24#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/slab.h>
Jean Delvare0cacdf22005-07-29 12:15:12 -070027#include <linux/jiffies.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040029#include <linux/hwmon.h>
Jean Delvare86d47f12007-11-04 23:45:14 +010030#include <linux/hwmon-sysfs.h>
Jean Delvare303760b2005-07-31 21:52:01 +020031#include <linux/hwmon-vid.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040032#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010033#include <linux/mutex.h>
Jean Delvare87808be2006-09-24 21:17:13 +020034#include <linux/sysfs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070035
36/* Type of the extra sensor */
37static unsigned short extra_sensor_type;
38module_param(extra_sensor_type, ushort, 0);
39MODULE_PARM_DESC(extra_sensor_type, "Type of extra sensor (0=autodetect, 1=temperature, 2=voltage)");
40
41/* Addresses to scan */
Mark M. Hoffman25e9c862008-02-17 22:28:03 -050042static const unsigned short normal_i2c[] = { 0x2c, 0x2d, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44/* Insmod parameters */
Jean Delvaref4b50262005-07-31 21:49:03 +020045I2C_CLIENT_INSMOD_1(gl520sm);
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Jean Delvaref28dc2f2007-11-04 23:44:23 +010047/* Many GL520 constants specified below
Linus Torvalds1da177e2005-04-16 15:20:36 -070048One of the inputs can be configured as either temp or voltage.
Jean Delvaref28dc2f2007-11-04 23:44:23 +010049That's why _TEMP2 and _IN4 access the same register
Linus Torvalds1da177e2005-04-16 15:20:36 -070050*/
51
52/* The GL520 registers */
53#define GL520_REG_CHIP_ID 0x00
54#define GL520_REG_REVISION 0x01
55#define GL520_REG_CONF 0x03
56#define GL520_REG_MASK 0x11
57
58#define GL520_REG_VID_INPUT 0x02
59
Jean Delvare8b4b0ab2007-11-04 23:44:52 +010060static const u8 GL520_REG_IN_INPUT[] = { 0x15, 0x14, 0x13, 0x0d, 0x0e };
61static const u8 GL520_REG_IN_LIMIT[] = { 0x0c, 0x09, 0x0a, 0x0b };
62static const u8 GL520_REG_IN_MIN[] = { 0x0c, 0x09, 0x0a, 0x0b, 0x18 };
63static const u8 GL520_REG_IN_MAX[] = { 0x0c, 0x09, 0x0a, 0x0b, 0x17 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Jean Delvare8b4b0ab2007-11-04 23:44:52 +010065static const u8 GL520_REG_TEMP_INPUT[] = { 0x04, 0x0e };
66static const u8 GL520_REG_TEMP_MAX[] = { 0x05, 0x17 };
67static const u8 GL520_REG_TEMP_MAX_HYST[] = { 0x06, 0x18 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
69#define GL520_REG_FAN_INPUT 0x07
70#define GL520_REG_FAN_MIN 0x08
71#define GL520_REG_FAN_DIV 0x0f
72#define GL520_REG_FAN_OFF GL520_REG_FAN_DIV
73
74#define GL520_REG_ALARMS 0x12
75#define GL520_REG_BEEP_MASK 0x10
76#define GL520_REG_BEEP_ENABLE GL520_REG_CONF
77
78/*
79 * Function declarations
80 */
81
82static int gl520_attach_adapter(struct i2c_adapter *adapter);
83static int gl520_detect(struct i2c_adapter *adapter, int address, int kind);
84static void gl520_init_client(struct i2c_client *client);
85static int gl520_detach_client(struct i2c_client *client);
86static int gl520_read_value(struct i2c_client *client, u8 reg);
87static int gl520_write_value(struct i2c_client *client, u8 reg, u16 value);
88static struct gl520_data *gl520_update_device(struct device *dev);
89
90/* Driver data */
91static struct i2c_driver gl520_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +010092 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +010093 .name = "gl520sm",
94 },
Linus Torvalds1da177e2005-04-16 15:20:36 -070095 .attach_adapter = gl520_attach_adapter,
96 .detach_client = gl520_detach_client,
97};
98
99/* Client data */
100struct gl520_data {
101 struct i2c_client client;
Tony Jones1beeffe2007-08-20 13:46:20 -0700102 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100103 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104 char valid; /* zero until the following fields are valid */
105 unsigned long last_updated; /* in jiffies */
106
107 u8 vid;
108 u8 vrm;
109 u8 in_input[5]; /* [0] = VVD */
110 u8 in_min[5]; /* [0] = VDD */
111 u8 in_max[5]; /* [0] = VDD */
112 u8 fan_input[2];
113 u8 fan_min[2];
114 u8 fan_div[2];
115 u8 fan_off;
116 u8 temp_input[2];
117 u8 temp_max[2];
118 u8 temp_max_hyst[2];
119 u8 alarms;
120 u8 beep_enable;
121 u8 beep_mask;
122 u8 alarm_mask;
123 u8 two_temps;
124};
125
126/*
127 * Sysfs stuff
128 */
129
Jean Delvare86d47f12007-11-04 23:45:14 +0100130static ssize_t get_cpu_vid(struct device *dev, struct device_attribute *attr,
131 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132{
Jean Delvare86d47f12007-11-04 23:45:14 +0100133 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 return sprintf(buf, "%u\n", vid_from_reg(data->vid, data->vrm));
135}
Jean Delvare86d47f12007-11-04 23:45:14 +0100136static DEVICE_ATTR(cpu0_vid, S_IRUGO, get_cpu_vid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138#define VDD_FROM_REG(val) (((val)*95+2)/4)
139#define VDD_TO_REG(val) (SENSORS_LIMIT((((val)*4+47)/95),0,255))
140
141#define IN_FROM_REG(val) ((val)*19)
142#define IN_TO_REG(val) (SENSORS_LIMIT((((val)+9)/19),0,255))
143
Jean Delvare86d47f12007-11-04 23:45:14 +0100144static ssize_t get_in_input(struct device *dev, struct device_attribute *attr,
145 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146{
Jean Delvare86d47f12007-11-04 23:45:14 +0100147 int n = to_sensor_dev_attr(attr)->index;
148 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 u8 r = data->in_input[n];
150
151 if (n == 0)
152 return sprintf(buf, "%d\n", VDD_FROM_REG(r));
153 else
154 return sprintf(buf, "%d\n", IN_FROM_REG(r));
155}
156
Jean Delvare86d47f12007-11-04 23:45:14 +0100157static ssize_t get_in_min(struct device *dev, struct device_attribute *attr,
158 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159{
Jean Delvare86d47f12007-11-04 23:45:14 +0100160 int n = to_sensor_dev_attr(attr)->index;
161 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162 u8 r = data->in_min[n];
163
164 if (n == 0)
165 return sprintf(buf, "%d\n", VDD_FROM_REG(r));
166 else
167 return sprintf(buf, "%d\n", IN_FROM_REG(r));
168}
169
Jean Delvare86d47f12007-11-04 23:45:14 +0100170static ssize_t get_in_max(struct device *dev, struct device_attribute *attr,
171 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172{
Jean Delvare86d47f12007-11-04 23:45:14 +0100173 int n = to_sensor_dev_attr(attr)->index;
174 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175 u8 r = data->in_max[n];
176
177 if (n == 0)
178 return sprintf(buf, "%d\n", VDD_FROM_REG(r));
179 else
180 return sprintf(buf, "%d\n", IN_FROM_REG(r));
181}
182
Jean Delvare86d47f12007-11-04 23:45:14 +0100183static ssize_t set_in_min(struct device *dev, struct device_attribute *attr,
184 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185{
Jean Delvare86d47f12007-11-04 23:45:14 +0100186 struct i2c_client *client = to_i2c_client(dev);
187 struct gl520_data *data = i2c_get_clientdata(client);
188 int n = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189 long v = simple_strtol(buf, NULL, 10);
190 u8 r;
191
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100192 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
194 if (n == 0)
195 r = VDD_TO_REG(v);
196 else
197 r = IN_TO_REG(v);
198
199 data->in_min[n] = r;
200
201 if (n < 4)
Jean Delvare86d47f12007-11-04 23:45:14 +0100202 gl520_write_value(client, GL520_REG_IN_MIN[n],
203 (gl520_read_value(client, GL520_REG_IN_MIN[n])
204 & ~0xff) | r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700205 else
Jean Delvare86d47f12007-11-04 23:45:14 +0100206 gl520_write_value(client, GL520_REG_IN_MIN[n], r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100208 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209 return count;
210}
211
Jean Delvare86d47f12007-11-04 23:45:14 +0100212static ssize_t set_in_max(struct device *dev, struct device_attribute *attr,
213 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214{
Jean Delvare86d47f12007-11-04 23:45:14 +0100215 struct i2c_client *client = to_i2c_client(dev);
216 struct gl520_data *data = i2c_get_clientdata(client);
217 int n = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218 long v = simple_strtol(buf, NULL, 10);
219 u8 r;
220
221 if (n == 0)
222 r = VDD_TO_REG(v);
223 else
224 r = IN_TO_REG(v);
225
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100226 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227
228 data->in_max[n] = r;
229
230 if (n < 4)
Jean Delvare86d47f12007-11-04 23:45:14 +0100231 gl520_write_value(client, GL520_REG_IN_MAX[n],
232 (gl520_read_value(client, GL520_REG_IN_MAX[n])
233 & ~0xff00) | (r << 8));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 else
Jean Delvare86d47f12007-11-04 23:45:14 +0100235 gl520_write_value(client, GL520_REG_IN_MAX[n], r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700236
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100237 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 return count;
239}
240
Jean Delvare86d47f12007-11-04 23:45:14 +0100241static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, get_in_input, NULL, 0);
242static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, get_in_input, NULL, 1);
243static SENSOR_DEVICE_ATTR(in2_input, S_IRUGO, get_in_input, NULL, 2);
244static SENSOR_DEVICE_ATTR(in3_input, S_IRUGO, get_in_input, NULL, 3);
245static SENSOR_DEVICE_ATTR(in4_input, S_IRUGO, get_in_input, NULL, 4);
246static SENSOR_DEVICE_ATTR(in0_min, S_IRUGO | S_IWUSR,
247 get_in_min, set_in_min, 0);
248static SENSOR_DEVICE_ATTR(in1_min, S_IRUGO | S_IWUSR,
249 get_in_min, set_in_min, 1);
250static SENSOR_DEVICE_ATTR(in2_min, S_IRUGO | S_IWUSR,
251 get_in_min, set_in_min, 2);
252static SENSOR_DEVICE_ATTR(in3_min, S_IRUGO | S_IWUSR,
253 get_in_min, set_in_min, 3);
254static SENSOR_DEVICE_ATTR(in4_min, S_IRUGO | S_IWUSR,
255 get_in_min, set_in_min, 4);
256static SENSOR_DEVICE_ATTR(in0_max, S_IRUGO | S_IWUSR,
257 get_in_max, set_in_max, 0);
258static SENSOR_DEVICE_ATTR(in1_max, S_IRUGO | S_IWUSR,
259 get_in_max, set_in_max, 1);
260static SENSOR_DEVICE_ATTR(in2_max, S_IRUGO | S_IWUSR,
261 get_in_max, set_in_max, 2);
262static SENSOR_DEVICE_ATTR(in3_max, S_IRUGO | S_IWUSR,
263 get_in_max, set_in_max, 3);
264static SENSOR_DEVICE_ATTR(in4_max, S_IRUGO | S_IWUSR,
265 get_in_max, set_in_max, 4);
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267#define DIV_FROM_REG(val) (1 << (val))
268#define FAN_FROM_REG(val,div) ((val)==0 ? 0 : (480000/((val) << (div))))
269#define FAN_TO_REG(val,div) ((val)<=0?0:SENSORS_LIMIT((480000 + ((val) << ((div)-1))) / ((val) << (div)), 1, 255));
270
Jean Delvare86d47f12007-11-04 23:45:14 +0100271static ssize_t get_fan_input(struct device *dev, struct device_attribute *attr,
272 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Jean Delvare86d47f12007-11-04 23:45:14 +0100274 int n = to_sensor_dev_attr(attr)->index;
275 struct gl520_data *data = gl520_update_device(dev);
276
277 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_input[n],
278 data->fan_div[n]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279}
280
Jean Delvare86d47f12007-11-04 23:45:14 +0100281static ssize_t get_fan_min(struct device *dev, struct device_attribute *attr,
282 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700283{
Jean Delvare86d47f12007-11-04 23:45:14 +0100284 int n = to_sensor_dev_attr(attr)->index;
285 struct gl520_data *data = gl520_update_device(dev);
286
287 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[n],
288 data->fan_div[n]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289}
290
Jean Delvare86d47f12007-11-04 23:45:14 +0100291static ssize_t get_fan_div(struct device *dev, struct device_attribute *attr,
292 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700293{
Jean Delvare86d47f12007-11-04 23:45:14 +0100294 int n = to_sensor_dev_attr(attr)->index;
295 struct gl520_data *data = gl520_update_device(dev);
296
297 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[n]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298}
299
Jean Delvare86d47f12007-11-04 23:45:14 +0100300static ssize_t get_fan_off(struct device *dev, struct device_attribute *attr,
301 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302{
Jean Delvare86d47f12007-11-04 23:45:14 +0100303 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 return sprintf(buf, "%d\n", data->fan_off);
305}
306
Jean Delvare86d47f12007-11-04 23:45:14 +0100307static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
308 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309{
Jean Delvare86d47f12007-11-04 23:45:14 +0100310 struct i2c_client *client = to_i2c_client(dev);
311 struct gl520_data *data = i2c_get_clientdata(client);
312 int n = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 unsigned long v = simple_strtoul(buf, NULL, 10);
314 u8 r;
315
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100316 mutex_lock(&data->update_lock);
Jean Delvare86d47f12007-11-04 23:45:14 +0100317 r = FAN_TO_REG(v, data->fan_div[n]);
318 data->fan_min[n] = r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319
Jean Delvare86d47f12007-11-04 23:45:14 +0100320 if (n == 0)
321 gl520_write_value(client, GL520_REG_FAN_MIN,
322 (gl520_read_value(client, GL520_REG_FAN_MIN)
323 & ~0xff00) | (r << 8));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 else
Jean Delvare86d47f12007-11-04 23:45:14 +0100325 gl520_write_value(client, GL520_REG_FAN_MIN,
326 (gl520_read_value(client, GL520_REG_FAN_MIN)
327 & ~0xff) | r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329 data->beep_mask = gl520_read_value(client, GL520_REG_BEEP_MASK);
Jean Delvare86d47f12007-11-04 23:45:14 +0100330 if (data->fan_min[n] == 0)
331 data->alarm_mask &= (n == 0) ? ~0x20 : ~0x40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 else
Jean Delvare86d47f12007-11-04 23:45:14 +0100333 data->alarm_mask |= (n == 0) ? 0x20 : 0x40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 data->beep_mask &= data->alarm_mask;
335 gl520_write_value(client, GL520_REG_BEEP_MASK, data->beep_mask);
336
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100337 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338 return count;
339}
340
Jean Delvare86d47f12007-11-04 23:45:14 +0100341static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
342 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Jean Delvare86d47f12007-11-04 23:45:14 +0100344 struct i2c_client *client = to_i2c_client(dev);
345 struct gl520_data *data = i2c_get_clientdata(client);
346 int n = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347 unsigned long v = simple_strtoul(buf, NULL, 10);
348 u8 r;
349
350 switch (v) {
351 case 1: r = 0; break;
352 case 2: r = 1; break;
353 case 4: r = 2; break;
354 case 8: r = 3; break;
355 default:
356 dev_err(&client->dev, "fan_div value %ld not supported. Choose one of 1, 2, 4 or 8!\n", v);
357 return -EINVAL;
358 }
359
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100360 mutex_lock(&data->update_lock);
Jean Delvare86d47f12007-11-04 23:45:14 +0100361 data->fan_div[n] = r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362
Jean Delvare86d47f12007-11-04 23:45:14 +0100363 if (n == 0)
364 gl520_write_value(client, GL520_REG_FAN_DIV,
365 (gl520_read_value(client, GL520_REG_FAN_DIV)
366 & ~0xc0) | (r << 6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 else
Jean Delvare86d47f12007-11-04 23:45:14 +0100368 gl520_write_value(client, GL520_REG_FAN_DIV,
369 (gl520_read_value(client, GL520_REG_FAN_DIV)
370 & ~0x30) | (r << 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100372 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373 return count;
374}
375
Jean Delvare86d47f12007-11-04 23:45:14 +0100376static ssize_t set_fan_off(struct device *dev, struct device_attribute *attr,
377 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378{
Jean Delvare86d47f12007-11-04 23:45:14 +0100379 struct i2c_client *client = to_i2c_client(dev);
380 struct gl520_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381 u8 r = simple_strtoul(buf, NULL, 10)?1:0;
382
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100383 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 data->fan_off = r;
Jean Delvare86d47f12007-11-04 23:45:14 +0100385 gl520_write_value(client, GL520_REG_FAN_OFF,
386 (gl520_read_value(client, GL520_REG_FAN_OFF)
387 & ~0x0c) | (r << 2));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100388 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700389 return count;
390}
391
Jean Delvare86d47f12007-11-04 23:45:14 +0100392static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, get_fan_input, NULL, 0);
393static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, get_fan_input, NULL, 1);
394static SENSOR_DEVICE_ATTR(fan1_min, S_IRUGO | S_IWUSR,
395 get_fan_min, set_fan_min, 0);
396static SENSOR_DEVICE_ATTR(fan2_min, S_IRUGO | S_IWUSR,
397 get_fan_min, set_fan_min, 1);
398static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR,
399 get_fan_div, set_fan_div, 0);
400static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR,
401 get_fan_div, set_fan_div, 1);
402static DEVICE_ATTR(fan1_off, S_IRUGO | S_IWUSR,
403 get_fan_off, set_fan_off);
404
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405#define TEMP_FROM_REG(val) (((val) - 130) * 1000)
406#define TEMP_TO_REG(val) (SENSORS_LIMIT(((((val)<0?(val)-500:(val)+500) / 1000)+130),0,255))
407
Jean Delvare86d47f12007-11-04 23:45:14 +0100408static ssize_t get_temp_input(struct device *dev, struct device_attribute *attr,
409 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410{
Jean Delvare86d47f12007-11-04 23:45:14 +0100411 int n = to_sensor_dev_attr(attr)->index;
412 struct gl520_data *data = gl520_update_device(dev);
413
414 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_input[n]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415}
416
Jean Delvare86d47f12007-11-04 23:45:14 +0100417static ssize_t get_temp_max(struct device *dev, struct device_attribute *attr,
418 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
Jean Delvare86d47f12007-11-04 23:45:14 +0100420 int n = to_sensor_dev_attr(attr)->index;
421 struct gl520_data *data = gl520_update_device(dev);
422
423 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[n]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700424}
425
Jean Delvare86d47f12007-11-04 23:45:14 +0100426static ssize_t get_temp_max_hyst(struct device *dev, struct device_attribute
427 *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700428{
Jean Delvare86d47f12007-11-04 23:45:14 +0100429 int n = to_sensor_dev_attr(attr)->index;
430 struct gl520_data *data = gl520_update_device(dev);
431
432 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max_hyst[n]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
Jean Delvare86d47f12007-11-04 23:45:14 +0100435static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
436 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Jean Delvare86d47f12007-11-04 23:45:14 +0100438 struct i2c_client *client = to_i2c_client(dev);
439 struct gl520_data *data = i2c_get_clientdata(client);
440 int n = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 long v = simple_strtol(buf, NULL, 10);
442
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100443 mutex_lock(&data->update_lock);
Jean Delvare86d47f12007-11-04 23:45:14 +0100444 data->temp_max[n] = TEMP_TO_REG(v);
445 gl520_write_value(client, GL520_REG_TEMP_MAX[n], data->temp_max[n]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100446 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return count;
448}
449
Jean Delvare86d47f12007-11-04 23:45:14 +0100450static ssize_t set_temp_max_hyst(struct device *dev, struct device_attribute
451 *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452{
Jean Delvare86d47f12007-11-04 23:45:14 +0100453 struct i2c_client *client = to_i2c_client(dev);
454 struct gl520_data *data = i2c_get_clientdata(client);
455 int n = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456 long v = simple_strtol(buf, NULL, 10);
457
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100458 mutex_lock(&data->update_lock);
Jean Delvare86d47f12007-11-04 23:45:14 +0100459 data->temp_max_hyst[n] = TEMP_TO_REG(v);
460 gl520_write_value(client, GL520_REG_TEMP_MAX_HYST[n],
461 data->temp_max_hyst[n]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100462 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return count;
464}
465
Jean Delvare86d47f12007-11-04 23:45:14 +0100466static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, get_temp_input, NULL, 0);
467static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, get_temp_input, NULL, 1);
468static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO | S_IWUSR,
469 get_temp_max, set_temp_max, 0);
470static SENSOR_DEVICE_ATTR(temp2_max, S_IRUGO | S_IWUSR,
471 get_temp_max, set_temp_max, 1);
472static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IRUGO | S_IWUSR,
473 get_temp_max_hyst, set_temp_max_hyst, 0);
474static SENSOR_DEVICE_ATTR(temp2_max_hyst, S_IRUGO | S_IWUSR,
475 get_temp_max_hyst, set_temp_max_hyst, 1);
476
477static ssize_t get_alarms(struct device *dev, struct device_attribute *attr,
478 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479{
Jean Delvare86d47f12007-11-04 23:45:14 +0100480 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700481 return sprintf(buf, "%d\n", data->alarms);
482}
483
Jean Delvare86d47f12007-11-04 23:45:14 +0100484static ssize_t get_beep_enable(struct device *dev, struct device_attribute
485 *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Jean Delvare86d47f12007-11-04 23:45:14 +0100487 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 return sprintf(buf, "%d\n", data->beep_enable);
489}
490
Jean Delvare86d47f12007-11-04 23:45:14 +0100491static ssize_t get_beep_mask(struct device *dev, struct device_attribute *attr,
492 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Jean Delvare86d47f12007-11-04 23:45:14 +0100494 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 return sprintf(buf, "%d\n", data->beep_mask);
496}
497
Jean Delvare86d47f12007-11-04 23:45:14 +0100498static ssize_t set_beep_enable(struct device *dev, struct device_attribute
499 *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500{
Jean Delvare86d47f12007-11-04 23:45:14 +0100501 struct i2c_client *client = to_i2c_client(dev);
502 struct gl520_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 u8 r = simple_strtoul(buf, NULL, 10)?0:1;
504
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100505 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 data->beep_enable = !r;
Jean Delvare86d47f12007-11-04 23:45:14 +0100507 gl520_write_value(client, GL520_REG_BEEP_ENABLE,
508 (gl520_read_value(client, GL520_REG_BEEP_ENABLE)
509 & ~0x04) | (r << 2));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100510 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return count;
512}
513
Jean Delvare86d47f12007-11-04 23:45:14 +0100514static ssize_t set_beep_mask(struct device *dev, struct device_attribute *attr,
515 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Jean Delvare86d47f12007-11-04 23:45:14 +0100517 struct i2c_client *client = to_i2c_client(dev);
518 struct gl520_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 u8 r = simple_strtoul(buf, NULL, 10);
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100520
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100521 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522 r &= data->alarm_mask;
523 data->beep_mask = r;
Jean Delvare86d47f12007-11-04 23:45:14 +0100524 gl520_write_value(client, GL520_REG_BEEP_MASK, r);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100525 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526 return count;
527}
528
Jean Delvare86d47f12007-11-04 23:45:14 +0100529static DEVICE_ATTR(alarms, S_IRUGO, get_alarms, NULL);
530static DEVICE_ATTR(beep_enable, S_IRUGO | S_IWUSR,
531 get_beep_enable, set_beep_enable);
532static DEVICE_ATTR(beep_mask, S_IRUGO | S_IWUSR,
533 get_beep_mask, set_beep_mask);
534
Jean Delvaree86a7762007-11-04 23:45:41 +0100535static ssize_t get_alarm(struct device *dev, struct device_attribute *attr,
536 char *buf)
537{
538 int bit_nr = to_sensor_dev_attr(attr)->index;
539 struct gl520_data *data = gl520_update_device(dev);
540
541 return sprintf(buf, "%d\n", (data->alarms >> bit_nr) & 1);
542}
543
544static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, get_alarm, NULL, 0);
545static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, get_alarm, NULL, 1);
546static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, get_alarm, NULL, 2);
547static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, get_alarm, NULL, 3);
548static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, get_alarm, NULL, 4);
549static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, get_alarm, NULL, 5);
550static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, get_alarm, NULL, 6);
551static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, get_alarm, NULL, 7);
552static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, get_alarm, NULL, 7);
553
554static ssize_t get_beep(struct device *dev, struct device_attribute *attr,
555 char *buf)
556{
557 int bitnr = to_sensor_dev_attr(attr)->index;
558 struct gl520_data *data = gl520_update_device(dev);
559
560 return sprintf(buf, "%d\n", (data->beep_mask >> bitnr) & 1);
561}
562
563static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
564 const char *buf, size_t count)
565{
566 struct i2c_client *client = to_i2c_client(dev);
567 struct gl520_data *data = i2c_get_clientdata(client);
568 int bitnr = to_sensor_dev_attr(attr)->index;
569 unsigned long bit;
570
571 bit = simple_strtoul(buf, NULL, 10);
572 if (bit & ~1)
573 return -EINVAL;
574
575 mutex_lock(&data->update_lock);
576 data->beep_mask = gl520_read_value(client, GL520_REG_BEEP_MASK);
577 if (bit)
578 data->beep_mask |= (1 << bitnr);
579 else
580 data->beep_mask &= ~(1 << bitnr);
581 gl520_write_value(client, GL520_REG_BEEP_MASK, data->beep_mask);
582 mutex_unlock(&data->update_lock);
583 return count;
584}
585
586static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 0);
587static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 1);
588static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 2);
589static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 3);
590static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 4);
591static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 5);
592static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 6);
593static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 7);
594static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 7);
595
Jean Delvare87808be2006-09-24 21:17:13 +0200596static struct attribute *gl520_attributes[] = {
597 &dev_attr_cpu0_vid.attr,
598
Jean Delvare86d47f12007-11-04 23:45:14 +0100599 &sensor_dev_attr_in0_input.dev_attr.attr,
600 &sensor_dev_attr_in0_min.dev_attr.attr,
601 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100602 &sensor_dev_attr_in0_alarm.dev_attr.attr,
603 &sensor_dev_attr_in0_beep.dev_attr.attr,
Jean Delvare86d47f12007-11-04 23:45:14 +0100604 &sensor_dev_attr_in1_input.dev_attr.attr,
605 &sensor_dev_attr_in1_min.dev_attr.attr,
606 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100607 &sensor_dev_attr_in1_alarm.dev_attr.attr,
608 &sensor_dev_attr_in1_beep.dev_attr.attr,
Jean Delvare86d47f12007-11-04 23:45:14 +0100609 &sensor_dev_attr_in2_input.dev_attr.attr,
610 &sensor_dev_attr_in2_min.dev_attr.attr,
611 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100612 &sensor_dev_attr_in2_alarm.dev_attr.attr,
613 &sensor_dev_attr_in2_beep.dev_attr.attr,
Jean Delvare86d47f12007-11-04 23:45:14 +0100614 &sensor_dev_attr_in3_input.dev_attr.attr,
615 &sensor_dev_attr_in3_min.dev_attr.attr,
616 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100617 &sensor_dev_attr_in3_alarm.dev_attr.attr,
618 &sensor_dev_attr_in3_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200619
Jean Delvare86d47f12007-11-04 23:45:14 +0100620 &sensor_dev_attr_fan1_input.dev_attr.attr,
621 &sensor_dev_attr_fan1_min.dev_attr.attr,
622 &sensor_dev_attr_fan1_div.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100623 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
624 &sensor_dev_attr_fan1_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200625 &dev_attr_fan1_off.attr,
Jean Delvare86d47f12007-11-04 23:45:14 +0100626 &sensor_dev_attr_fan2_input.dev_attr.attr,
627 &sensor_dev_attr_fan2_min.dev_attr.attr,
628 &sensor_dev_attr_fan2_div.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100629 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
630 &sensor_dev_attr_fan2_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200631
Jean Delvare86d47f12007-11-04 23:45:14 +0100632 &sensor_dev_attr_temp1_input.dev_attr.attr,
633 &sensor_dev_attr_temp1_max.dev_attr.attr,
634 &sensor_dev_attr_temp1_max_hyst.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100635 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
636 &sensor_dev_attr_temp1_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200637
638 &dev_attr_alarms.attr,
639 &dev_attr_beep_enable.attr,
640 &dev_attr_beep_mask.attr,
641 NULL
642};
643
644static const struct attribute_group gl520_group = {
645 .attrs = gl520_attributes,
646};
647
648static struct attribute *gl520_attributes_opt[] = {
Jean Delvare86d47f12007-11-04 23:45:14 +0100649 &sensor_dev_attr_in4_input.dev_attr.attr,
650 &sensor_dev_attr_in4_min.dev_attr.attr,
651 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100652 &sensor_dev_attr_in4_alarm.dev_attr.attr,
653 &sensor_dev_attr_in4_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200654
Jean Delvare86d47f12007-11-04 23:45:14 +0100655 &sensor_dev_attr_temp2_input.dev_attr.attr,
656 &sensor_dev_attr_temp2_max.dev_attr.attr,
657 &sensor_dev_attr_temp2_max_hyst.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100658 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
659 &sensor_dev_attr_temp2_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200660 NULL
661};
662
663static const struct attribute_group gl520_group_opt = {
664 .attrs = gl520_attributes_opt,
665};
666
Linus Torvalds1da177e2005-04-16 15:20:36 -0700667
668/*
669 * Real code
670 */
671
672static int gl520_attach_adapter(struct i2c_adapter *adapter)
673{
674 if (!(adapter->class & I2C_CLASS_HWMON))
675 return 0;
Jean Delvare2ed2dc32005-07-31 21:42:02 +0200676 return i2c_probe(adapter, &addr_data, gl520_detect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677}
678
679static int gl520_detect(struct i2c_adapter *adapter, int address, int kind)
680{
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100681 struct i2c_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 struct gl520_data *data;
683 int err = 0;
684
685 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |
686 I2C_FUNC_SMBUS_WORD_DATA))
687 goto exit;
688
689 /* OK. For now, we presume we have a valid client. We now create the
690 client structure, even though we cannot fill it completely yet.
691 But it allows us to access gl520_{read,write}_value. */
692
Deepak Saxenaba9c2e82005-10-17 23:08:32 +0200693 if (!(data = kzalloc(sizeof(struct gl520_data), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 err = -ENOMEM;
695 goto exit;
696 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100698 client = &data->client;
699 i2c_set_clientdata(client, data);
700 client->addr = address;
701 client->adapter = adapter;
702 client->driver = &gl520_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700703
704 /* Determine the chip type. */
705 if (kind < 0) {
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100706 if ((gl520_read_value(client, GL520_REG_CHIP_ID) != 0x20) ||
707 ((gl520_read_value(client, GL520_REG_REVISION) & 0x7f) != 0x00) ||
708 ((gl520_read_value(client, GL520_REG_CONF) & 0x80) != 0x00)) {
709 dev_dbg(&client->dev, "Unknown chip type, skipping\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700710 goto exit_free;
711 }
712 }
713
714 /* Fill in the remaining client fields */
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100715 strlcpy(client->name, "gl520sm", I2C_NAME_SIZE);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100716 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717
718 /* Tell the I2C layer a new client has arrived */
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100719 if ((err = i2c_attach_client(client)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700720 goto exit_free;
721
722 /* Initialize the GL520SM chip */
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100723 gl520_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700724
725 /* Register sysfs hooks */
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100726 if ((err = sysfs_create_group(&client->dev.kobj, &gl520_group)))
Jean Delvare87808be2006-09-24 21:17:13 +0200727 goto exit_detach;
728
729 if (data->two_temps) {
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100730 if ((err = device_create_file(&client->dev,
Jean Delvare86d47f12007-11-04 23:45:14 +0100731 &sensor_dev_attr_temp2_input.dev_attr))
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100732 || (err = device_create_file(&client->dev,
Jean Delvare86d47f12007-11-04 23:45:14 +0100733 &sensor_dev_attr_temp2_max.dev_attr))
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100734 || (err = device_create_file(&client->dev,
Jean Delvaree86a7762007-11-04 23:45:41 +0100735 &sensor_dev_attr_temp2_max_hyst.dev_attr))
736 || (err = device_create_file(&client->dev,
737 &sensor_dev_attr_temp2_alarm.dev_attr))
738 || (err = device_create_file(&client->dev,
739 &sensor_dev_attr_temp2_beep.dev_attr)))
Jean Delvare87808be2006-09-24 21:17:13 +0200740 goto exit_remove_files;
741 } else {
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100742 if ((err = device_create_file(&client->dev,
Jean Delvare86d47f12007-11-04 23:45:14 +0100743 &sensor_dev_attr_in4_input.dev_attr))
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100744 || (err = device_create_file(&client->dev,
Jean Delvare86d47f12007-11-04 23:45:14 +0100745 &sensor_dev_attr_in4_min.dev_attr))
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100746 || (err = device_create_file(&client->dev,
Jean Delvaree86a7762007-11-04 23:45:41 +0100747 &sensor_dev_attr_in4_max.dev_attr))
748 || (err = device_create_file(&client->dev,
749 &sensor_dev_attr_in4_alarm.dev_attr))
750 || (err = device_create_file(&client->dev,
751 &sensor_dev_attr_in4_beep.dev_attr)))
Jean Delvare87808be2006-09-24 21:17:13 +0200752 goto exit_remove_files;
753 }
754
755
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100756 data->hwmon_dev = hwmon_device_register(&client->dev);
Tony Jones1beeffe2007-08-20 13:46:20 -0700757 if (IS_ERR(data->hwmon_dev)) {
758 err = PTR_ERR(data->hwmon_dev);
Jean Delvare87808be2006-09-24 21:17:13 +0200759 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400760 }
761
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return 0;
763
Jean Delvare87808be2006-09-24 21:17:13 +0200764exit_remove_files:
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100765 sysfs_remove_group(&client->dev.kobj, &gl520_group);
766 sysfs_remove_group(&client->dev.kobj, &gl520_group_opt);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400767exit_detach:
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100768 i2c_detach_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769exit_free:
770 kfree(data);
771exit:
772 return err;
773}
774
775
776/* Called when we have found a new GL520SM. */
777static void gl520_init_client(struct i2c_client *client)
778{
779 struct gl520_data *data = i2c_get_clientdata(client);
780 u8 oldconf, conf;
781
782 conf = oldconf = gl520_read_value(client, GL520_REG_CONF);
783
784 data->alarm_mask = 0xff;
Jean Delvare303760b2005-07-31 21:52:01 +0200785 data->vrm = vid_which_vrm();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if (extra_sensor_type == 1)
788 conf &= ~0x10;
789 else if (extra_sensor_type == 2)
790 conf |= 0x10;
791 data->two_temps = !(conf & 0x10);
792
793 /* If IRQ# is disabled, we can safely force comparator mode */
794 if (!(conf & 0x20))
795 conf &= 0xf7;
796
797 /* Enable monitoring if needed */
798 conf |= 0x40;
799
800 if (conf != oldconf)
801 gl520_write_value(client, GL520_REG_CONF, conf);
802
803 gl520_update_device(&(client->dev));
804
805 if (data->fan_min[0] == 0)
806 data->alarm_mask &= ~0x20;
807 if (data->fan_min[1] == 0)
808 data->alarm_mask &= ~0x40;
809
810 data->beep_mask &= data->alarm_mask;
811 gl520_write_value(client, GL520_REG_BEEP_MASK, data->beep_mask);
812}
813
814static int gl520_detach_client(struct i2c_client *client)
815{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400816 struct gl520_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 int err;
818
Tony Jones1beeffe2007-08-20 13:46:20 -0700819 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare87808be2006-09-24 21:17:13 +0200820 sysfs_remove_group(&client->dev.kobj, &gl520_group);
821 sysfs_remove_group(&client->dev.kobj, &gl520_group_opt);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400822
Jean Delvare7bef5592005-07-27 22:14:49 +0200823 if ((err = i2c_detach_client(client)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700825
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400826 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700827 return 0;
828}
829
830
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100831/* Registers 0x07 to 0x0c are word-sized, others are byte-sized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700832 GL520 uses a high-byte first convention */
833static int gl520_read_value(struct i2c_client *client, u8 reg)
834{
835 if ((reg >= 0x07) && (reg <= 0x0c))
836 return swab16(i2c_smbus_read_word_data(client, reg));
837 else
838 return i2c_smbus_read_byte_data(client, reg);
839}
840
841static int gl520_write_value(struct i2c_client *client, u8 reg, u16 value)
842{
843 if ((reg >= 0x07) && (reg <= 0x0c))
844 return i2c_smbus_write_word_data(client, reg, swab16(value));
845 else
846 return i2c_smbus_write_byte_data(client, reg, value);
847}
848
849
850static struct gl520_data *gl520_update_device(struct device *dev)
851{
852 struct i2c_client *client = to_i2c_client(dev);
853 struct gl520_data *data = i2c_get_clientdata(client);
Jean Delvare8b4b0ab2007-11-04 23:44:52 +0100854 int val, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100856 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Jean Delvare0cacdf22005-07-29 12:15:12 -0700858 if (time_after(jiffies, data->last_updated + 2 * HZ) || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859
860 dev_dbg(&client->dev, "Starting gl520sm update\n");
861
862 data->alarms = gl520_read_value(client, GL520_REG_ALARMS);
863 data->beep_mask = gl520_read_value(client, GL520_REG_BEEP_MASK);
864 data->vid = gl520_read_value(client, GL520_REG_VID_INPUT) & 0x1f;
865
Jean Delvare8b4b0ab2007-11-04 23:44:52 +0100866 for (i = 0; i < 4; i++) {
867 data->in_input[i] = gl520_read_value(client,
868 GL520_REG_IN_INPUT[i]);
869 val = gl520_read_value(client, GL520_REG_IN_LIMIT[i]);
870 data->in_min[i] = val & 0xff;
871 data->in_max[i] = (val >> 8) & 0xff;
872 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700873
874 val = gl520_read_value(client, GL520_REG_FAN_INPUT);
875 data->fan_input[0] = (val >> 8) & 0xff;
876 data->fan_input[1] = val & 0xff;
877
878 val = gl520_read_value(client, GL520_REG_FAN_MIN);
879 data->fan_min[0] = (val >> 8) & 0xff;
880 data->fan_min[1] = val & 0xff;
881
Jean Delvare8b4b0ab2007-11-04 23:44:52 +0100882 data->temp_input[0] = gl520_read_value(client,
883 GL520_REG_TEMP_INPUT[0]);
884 data->temp_max[0] = gl520_read_value(client,
885 GL520_REG_TEMP_MAX[0]);
886 data->temp_max_hyst[0] = gl520_read_value(client,
887 GL520_REG_TEMP_MAX_HYST[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
889 val = gl520_read_value(client, GL520_REG_FAN_DIV);
890 data->fan_div[0] = (val >> 6) & 0x03;
891 data->fan_div[1] = (val >> 4) & 0x03;
892 data->fan_off = (val >> 2) & 0x01;
893
894 data->alarms &= data->alarm_mask;
895
896 val = gl520_read_value(client, GL520_REG_CONF);
897 data->beep_enable = !((val >> 2) & 1);
898
Linus Torvalds1da177e2005-04-16 15:20:36 -0700899 /* Temp1 and Vin4 are the same input */
900 if (data->two_temps) {
Jean Delvare8b4b0ab2007-11-04 23:44:52 +0100901 data->temp_input[1] = gl520_read_value(client,
902 GL520_REG_TEMP_INPUT[1]);
903 data->temp_max[1] = gl520_read_value(client,
904 GL520_REG_TEMP_MAX[1]);
905 data->temp_max_hyst[1] = gl520_read_value(client,
906 GL520_REG_TEMP_MAX_HYST[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907 } else {
Jean Delvare8b4b0ab2007-11-04 23:44:52 +0100908 data->in_input[4] = gl520_read_value(client,
909 GL520_REG_IN_INPUT[4]);
910 data->in_min[4] = gl520_read_value(client,
911 GL520_REG_IN_MIN[4]);
912 data->in_max[4] = gl520_read_value(client,
913 GL520_REG_IN_MAX[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 }
915
916 data->last_updated = jiffies;
917 data->valid = 1;
918 }
919
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100920 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921
922 return data;
923}
924
925
926static int __init sensors_gl520sm_init(void)
927{
928 return i2c_add_driver(&gl520_driver);
929}
930
931static void __exit sensors_gl520sm_exit(void)
932{
933 i2c_del_driver(&gl520_driver);
934}
935
936
937MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>, "
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200938 "Kyösti Mälkki <kmalkki@cc.hut.fi>, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939 "Maarten Deprez <maartendeprez@users.sourceforge.net>");
940MODULE_DESCRIPTION("GL520SM driver");
941MODULE_LICENSE("GPL");
942
943module_init(sensors_gl520sm_init);
944module_exit(sensors_gl520sm_exit);