blob: c0ec8c28731edba27b859ff615959ca483f49eef [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
Jean Delvarea23a9fe2008-07-16 19:30:13 +020082static int gl520_probe(struct i2c_client *client,
83 const struct i2c_device_id *id);
Jean Delvare310ec792009-12-14 21:17:23 +010084static int gl520_detect(struct i2c_client *client, struct i2c_board_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -070085static void gl520_init_client(struct i2c_client *client);
Jean Delvarea23a9fe2008-07-16 19:30:13 +020086static int gl520_remove(struct i2c_client *client);
Linus Torvalds1da177e2005-04-16 15:20:36 -070087static int gl520_read_value(struct i2c_client *client, u8 reg);
88static int gl520_write_value(struct i2c_client *client, u8 reg, u16 value);
89static struct gl520_data *gl520_update_device(struct device *dev);
90
91/* Driver data */
Jean Delvarea23a9fe2008-07-16 19:30:13 +020092static const struct i2c_device_id gl520_id[] = {
93 { "gl520sm", gl520sm },
94 { }
95};
96MODULE_DEVICE_TABLE(i2c, gl520_id);
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098static struct i2c_driver gl520_driver = {
Jean Delvarea23a9fe2008-07-16 19:30:13 +020099 .class = I2C_CLASS_HWMON,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100100 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100101 .name = "gl520sm",
102 },
Jean Delvarea23a9fe2008-07-16 19:30:13 +0200103 .probe = gl520_probe,
104 .remove = gl520_remove,
105 .id_table = gl520_id,
106 .detect = gl520_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +0100107 .address_list = normal_i2c,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
110/* Client data */
111struct gl520_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700112 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100113 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 char valid; /* zero until the following fields are valid */
115 unsigned long last_updated; /* in jiffies */
116
117 u8 vid;
118 u8 vrm;
119 u8 in_input[5]; /* [0] = VVD */
120 u8 in_min[5]; /* [0] = VDD */
121 u8 in_max[5]; /* [0] = VDD */
122 u8 fan_input[2];
123 u8 fan_min[2];
124 u8 fan_div[2];
125 u8 fan_off;
126 u8 temp_input[2];
127 u8 temp_max[2];
128 u8 temp_max_hyst[2];
129 u8 alarms;
130 u8 beep_enable;
131 u8 beep_mask;
132 u8 alarm_mask;
133 u8 two_temps;
134};
135
136/*
137 * Sysfs stuff
138 */
139
Jean Delvare86d47f12007-11-04 23:45:14 +0100140static ssize_t get_cpu_vid(struct device *dev, struct device_attribute *attr,
141 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142{
Jean Delvare86d47f12007-11-04 23:45:14 +0100143 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 return sprintf(buf, "%u\n", vid_from_reg(data->vid, data->vrm));
145}
Jean Delvare86d47f12007-11-04 23:45:14 +0100146static DEVICE_ATTR(cpu0_vid, S_IRUGO, get_cpu_vid, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148#define VDD_FROM_REG(val) (((val)*95+2)/4)
149#define VDD_TO_REG(val) (SENSORS_LIMIT((((val)*4+47)/95),0,255))
150
151#define IN_FROM_REG(val) ((val)*19)
152#define IN_TO_REG(val) (SENSORS_LIMIT((((val)+9)/19),0,255))
153
Jean Delvare86d47f12007-11-04 23:45:14 +0100154static ssize_t get_in_input(struct device *dev, struct device_attribute *attr,
155 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156{
Jean Delvare86d47f12007-11-04 23:45:14 +0100157 int n = to_sensor_dev_attr(attr)->index;
158 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159 u8 r = data->in_input[n];
160
161 if (n == 0)
162 return sprintf(buf, "%d\n", VDD_FROM_REG(r));
163 else
164 return sprintf(buf, "%d\n", IN_FROM_REG(r));
165}
166
Jean Delvare86d47f12007-11-04 23:45:14 +0100167static ssize_t get_in_min(struct device *dev, struct device_attribute *attr,
168 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700169{
Jean Delvare86d47f12007-11-04 23:45:14 +0100170 int n = to_sensor_dev_attr(attr)->index;
171 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172 u8 r = data->in_min[n];
173
174 if (n == 0)
175 return sprintf(buf, "%d\n", VDD_FROM_REG(r));
176 else
177 return sprintf(buf, "%d\n", IN_FROM_REG(r));
178}
179
Jean Delvare86d47f12007-11-04 23:45:14 +0100180static ssize_t get_in_max(struct device *dev, struct device_attribute *attr,
181 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182{
Jean Delvare86d47f12007-11-04 23:45:14 +0100183 int n = to_sensor_dev_attr(attr)->index;
184 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185 u8 r = data->in_max[n];
186
187 if (n == 0)
188 return sprintf(buf, "%d\n", VDD_FROM_REG(r));
189 else
190 return sprintf(buf, "%d\n", IN_FROM_REG(r));
191}
192
Jean Delvare86d47f12007-11-04 23:45:14 +0100193static ssize_t set_in_min(struct device *dev, struct device_attribute *attr,
194 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195{
Jean Delvare86d47f12007-11-04 23:45:14 +0100196 struct i2c_client *client = to_i2c_client(dev);
197 struct gl520_data *data = i2c_get_clientdata(client);
198 int n = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 long v = simple_strtol(buf, NULL, 10);
200 u8 r;
201
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100202 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
204 if (n == 0)
205 r = VDD_TO_REG(v);
206 else
207 r = IN_TO_REG(v);
208
209 data->in_min[n] = r;
210
211 if (n < 4)
Jean Delvare86d47f12007-11-04 23:45:14 +0100212 gl520_write_value(client, GL520_REG_IN_MIN[n],
213 (gl520_read_value(client, GL520_REG_IN_MIN[n])
214 & ~0xff) | r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215 else
Jean Delvare86d47f12007-11-04 23:45:14 +0100216 gl520_write_value(client, GL520_REG_IN_MIN[n], r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100218 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700219 return count;
220}
221
Jean Delvare86d47f12007-11-04 23:45:14 +0100222static ssize_t set_in_max(struct device *dev, struct device_attribute *attr,
223 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224{
Jean Delvare86d47f12007-11-04 23:45:14 +0100225 struct i2c_client *client = to_i2c_client(dev);
226 struct gl520_data *data = i2c_get_clientdata(client);
227 int n = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 long v = simple_strtol(buf, NULL, 10);
229 u8 r;
230
231 if (n == 0)
232 r = VDD_TO_REG(v);
233 else
234 r = IN_TO_REG(v);
235
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100236 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237
238 data->in_max[n] = r;
239
240 if (n < 4)
Jean Delvare86d47f12007-11-04 23:45:14 +0100241 gl520_write_value(client, GL520_REG_IN_MAX[n],
242 (gl520_read_value(client, GL520_REG_IN_MAX[n])
243 & ~0xff00) | (r << 8));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 else
Jean Delvare86d47f12007-11-04 23:45:14 +0100245 gl520_write_value(client, GL520_REG_IN_MAX[n], r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100247 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248 return count;
249}
250
Jean Delvare86d47f12007-11-04 23:45:14 +0100251static SENSOR_DEVICE_ATTR(in0_input, S_IRUGO, get_in_input, NULL, 0);
252static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, get_in_input, NULL, 1);
253static SENSOR_DEVICE_ATTR(in2_input, S_IRUGO, get_in_input, NULL, 2);
254static SENSOR_DEVICE_ATTR(in3_input, S_IRUGO, get_in_input, NULL, 3);
255static SENSOR_DEVICE_ATTR(in4_input, S_IRUGO, get_in_input, NULL, 4);
256static SENSOR_DEVICE_ATTR(in0_min, S_IRUGO | S_IWUSR,
257 get_in_min, set_in_min, 0);
258static SENSOR_DEVICE_ATTR(in1_min, S_IRUGO | S_IWUSR,
259 get_in_min, set_in_min, 1);
260static SENSOR_DEVICE_ATTR(in2_min, S_IRUGO | S_IWUSR,
261 get_in_min, set_in_min, 2);
262static SENSOR_DEVICE_ATTR(in3_min, S_IRUGO | S_IWUSR,
263 get_in_min, set_in_min, 3);
264static SENSOR_DEVICE_ATTR(in4_min, S_IRUGO | S_IWUSR,
265 get_in_min, set_in_min, 4);
266static SENSOR_DEVICE_ATTR(in0_max, S_IRUGO | S_IWUSR,
267 get_in_max, set_in_max, 0);
268static SENSOR_DEVICE_ATTR(in1_max, S_IRUGO | S_IWUSR,
269 get_in_max, set_in_max, 1);
270static SENSOR_DEVICE_ATTR(in2_max, S_IRUGO | S_IWUSR,
271 get_in_max, set_in_max, 2);
272static SENSOR_DEVICE_ATTR(in3_max, S_IRUGO | S_IWUSR,
273 get_in_max, set_in_max, 3);
274static SENSOR_DEVICE_ATTR(in4_max, S_IRUGO | S_IWUSR,
275 get_in_max, set_in_max, 4);
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277#define DIV_FROM_REG(val) (1 << (val))
278#define FAN_FROM_REG(val,div) ((val)==0 ? 0 : (480000/((val) << (div))))
279#define FAN_TO_REG(val,div) ((val)<=0?0:SENSORS_LIMIT((480000 + ((val) << ((div)-1))) / ((val) << (div)), 1, 255));
280
Jean Delvare86d47f12007-11-04 23:45:14 +0100281static ssize_t get_fan_input(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_input[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_min(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", FAN_FROM_REG(data->fan_min[n],
298 data->fan_div[n]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700299}
300
Jean Delvare86d47f12007-11-04 23:45:14 +0100301static ssize_t get_fan_div(struct device *dev, struct device_attribute *attr,
302 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
Jean Delvare86d47f12007-11-04 23:45:14 +0100304 int n = to_sensor_dev_attr(attr)->index;
305 struct gl520_data *data = gl520_update_device(dev);
306
307 return sprintf(buf, "%d\n", DIV_FROM_REG(data->fan_div[n]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308}
309
Jean Delvare86d47f12007-11-04 23:45:14 +0100310static ssize_t get_fan_off(struct device *dev, struct device_attribute *attr,
311 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312{
Jean Delvare86d47f12007-11-04 23:45:14 +0100313 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 return sprintf(buf, "%d\n", data->fan_off);
315}
316
Jean Delvare86d47f12007-11-04 23:45:14 +0100317static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
318 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
Jean Delvare86d47f12007-11-04 23:45:14 +0100320 struct i2c_client *client = to_i2c_client(dev);
321 struct gl520_data *data = i2c_get_clientdata(client);
322 int n = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 unsigned long v = simple_strtoul(buf, NULL, 10);
324 u8 r;
325
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100326 mutex_lock(&data->update_lock);
Jean Delvare86d47f12007-11-04 23:45:14 +0100327 r = FAN_TO_REG(v, data->fan_div[n]);
328 data->fan_min[n] = r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Jean Delvare86d47f12007-11-04 23:45:14 +0100330 if (n == 0)
331 gl520_write_value(client, GL520_REG_FAN_MIN,
332 (gl520_read_value(client, GL520_REG_FAN_MIN)
333 & ~0xff00) | (r << 8));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 else
Jean Delvare86d47f12007-11-04 23:45:14 +0100335 gl520_write_value(client, GL520_REG_FAN_MIN,
336 (gl520_read_value(client, GL520_REG_FAN_MIN)
337 & ~0xff) | r);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
339 data->beep_mask = gl520_read_value(client, GL520_REG_BEEP_MASK);
Jean Delvare86d47f12007-11-04 23:45:14 +0100340 if (data->fan_min[n] == 0)
341 data->alarm_mask &= (n == 0) ? ~0x20 : ~0x40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 else
Jean Delvare86d47f12007-11-04 23:45:14 +0100343 data->alarm_mask |= (n == 0) ? 0x20 : 0x40;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344 data->beep_mask &= data->alarm_mask;
345 gl520_write_value(client, GL520_REG_BEEP_MASK, data->beep_mask);
346
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100347 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348 return count;
349}
350
Jean Delvare86d47f12007-11-04 23:45:14 +0100351static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
352 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353{
Jean Delvare86d47f12007-11-04 23:45:14 +0100354 struct i2c_client *client = to_i2c_client(dev);
355 struct gl520_data *data = i2c_get_clientdata(client);
356 int n = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700357 unsigned long v = simple_strtoul(buf, NULL, 10);
358 u8 r;
359
360 switch (v) {
361 case 1: r = 0; break;
362 case 2: r = 1; break;
363 case 4: r = 2; break;
364 case 8: r = 3; break;
365 default:
366 dev_err(&client->dev, "fan_div value %ld not supported. Choose one of 1, 2, 4 or 8!\n", v);
367 return -EINVAL;
368 }
369
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100370 mutex_lock(&data->update_lock);
Jean Delvare86d47f12007-11-04 23:45:14 +0100371 data->fan_div[n] = r;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700372
Jean Delvare86d47f12007-11-04 23:45:14 +0100373 if (n == 0)
374 gl520_write_value(client, GL520_REG_FAN_DIV,
375 (gl520_read_value(client, GL520_REG_FAN_DIV)
376 & ~0xc0) | (r << 6));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 else
Jean Delvare86d47f12007-11-04 23:45:14 +0100378 gl520_write_value(client, GL520_REG_FAN_DIV,
379 (gl520_read_value(client, GL520_REG_FAN_DIV)
380 & ~0x30) | (r << 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100382 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 return count;
384}
385
Jean Delvare86d47f12007-11-04 23:45:14 +0100386static ssize_t set_fan_off(struct device *dev, struct device_attribute *attr,
387 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388{
Jean Delvare86d47f12007-11-04 23:45:14 +0100389 struct i2c_client *client = to_i2c_client(dev);
390 struct gl520_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 u8 r = simple_strtoul(buf, NULL, 10)?1:0;
392
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100393 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394 data->fan_off = r;
Jean Delvare86d47f12007-11-04 23:45:14 +0100395 gl520_write_value(client, GL520_REG_FAN_OFF,
396 (gl520_read_value(client, GL520_REG_FAN_OFF)
397 & ~0x0c) | (r << 2));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100398 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399 return count;
400}
401
Jean Delvare86d47f12007-11-04 23:45:14 +0100402static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, get_fan_input, NULL, 0);
403static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, get_fan_input, NULL, 1);
404static SENSOR_DEVICE_ATTR(fan1_min, S_IRUGO | S_IWUSR,
405 get_fan_min, set_fan_min, 0);
406static SENSOR_DEVICE_ATTR(fan2_min, S_IRUGO | S_IWUSR,
407 get_fan_min, set_fan_min, 1);
408static SENSOR_DEVICE_ATTR(fan1_div, S_IRUGO | S_IWUSR,
409 get_fan_div, set_fan_div, 0);
410static SENSOR_DEVICE_ATTR(fan2_div, S_IRUGO | S_IWUSR,
411 get_fan_div, set_fan_div, 1);
412static DEVICE_ATTR(fan1_off, S_IRUGO | S_IWUSR,
413 get_fan_off, set_fan_off);
414
Linus Torvalds1da177e2005-04-16 15:20:36 -0700415#define TEMP_FROM_REG(val) (((val) - 130) * 1000)
416#define TEMP_TO_REG(val) (SENSORS_LIMIT(((((val)<0?(val)-500:(val)+500) / 1000)+130),0,255))
417
Jean Delvare86d47f12007-11-04 23:45:14 +0100418static ssize_t get_temp_input(struct device *dev, struct device_attribute *attr,
419 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700420{
Jean Delvare86d47f12007-11-04 23:45:14 +0100421 int n = to_sensor_dev_attr(attr)->index;
422 struct gl520_data *data = gl520_update_device(dev);
423
424 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_input[n]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
426
Jean Delvare86d47f12007-11-04 23:45:14 +0100427static ssize_t get_temp_max(struct device *dev, struct device_attribute *attr,
428 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Jean Delvare86d47f12007-11-04 23:45:14 +0100430 int n = to_sensor_dev_attr(attr)->index;
431 struct gl520_data *data = gl520_update_device(dev);
432
433 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[n]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700434}
435
Jean Delvare86d47f12007-11-04 23:45:14 +0100436static ssize_t get_temp_max_hyst(struct device *dev, struct device_attribute
437 *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438{
Jean Delvare86d47f12007-11-04 23:45:14 +0100439 int n = to_sensor_dev_attr(attr)->index;
440 struct gl520_data *data = gl520_update_device(dev);
441
442 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max_hyst[n]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700443}
444
Jean Delvare86d47f12007-11-04 23:45:14 +0100445static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
446 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
Jean Delvare86d47f12007-11-04 23:45:14 +0100448 struct i2c_client *client = to_i2c_client(dev);
449 struct gl520_data *data = i2c_get_clientdata(client);
450 int n = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700451 long v = simple_strtol(buf, NULL, 10);
452
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100453 mutex_lock(&data->update_lock);
Jean Delvare86d47f12007-11-04 23:45:14 +0100454 data->temp_max[n] = TEMP_TO_REG(v);
455 gl520_write_value(client, GL520_REG_TEMP_MAX[n], data->temp_max[n]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100456 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457 return count;
458}
459
Jean Delvare86d47f12007-11-04 23:45:14 +0100460static ssize_t set_temp_max_hyst(struct device *dev, struct device_attribute
461 *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
Jean Delvare86d47f12007-11-04 23:45:14 +0100463 struct i2c_client *client = to_i2c_client(dev);
464 struct gl520_data *data = i2c_get_clientdata(client);
465 int n = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 long v = simple_strtol(buf, NULL, 10);
467
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100468 mutex_lock(&data->update_lock);
Jean Delvare86d47f12007-11-04 23:45:14 +0100469 data->temp_max_hyst[n] = TEMP_TO_REG(v);
470 gl520_write_value(client, GL520_REG_TEMP_MAX_HYST[n],
471 data->temp_max_hyst[n]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100472 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 return count;
474}
475
Jean Delvare86d47f12007-11-04 23:45:14 +0100476static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, get_temp_input, NULL, 0);
477static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, get_temp_input, NULL, 1);
478static SENSOR_DEVICE_ATTR(temp1_max, S_IRUGO | S_IWUSR,
479 get_temp_max, set_temp_max, 0);
480static SENSOR_DEVICE_ATTR(temp2_max, S_IRUGO | S_IWUSR,
481 get_temp_max, set_temp_max, 1);
482static SENSOR_DEVICE_ATTR(temp1_max_hyst, S_IRUGO | S_IWUSR,
483 get_temp_max_hyst, set_temp_max_hyst, 0);
484static SENSOR_DEVICE_ATTR(temp2_max_hyst, S_IRUGO | S_IWUSR,
485 get_temp_max_hyst, set_temp_max_hyst, 1);
486
487static ssize_t get_alarms(struct device *dev, struct device_attribute *attr,
488 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489{
Jean Delvare86d47f12007-11-04 23:45:14 +0100490 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491 return sprintf(buf, "%d\n", data->alarms);
492}
493
Jean Delvare86d47f12007-11-04 23:45:14 +0100494static ssize_t get_beep_enable(struct device *dev, struct device_attribute
495 *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700496{
Jean Delvare86d47f12007-11-04 23:45:14 +0100497 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 return sprintf(buf, "%d\n", data->beep_enable);
499}
500
Jean Delvare86d47f12007-11-04 23:45:14 +0100501static ssize_t get_beep_mask(struct device *dev, struct device_attribute *attr,
502 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503{
Jean Delvare86d47f12007-11-04 23:45:14 +0100504 struct gl520_data *data = gl520_update_device(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return sprintf(buf, "%d\n", data->beep_mask);
506}
507
Jean Delvare86d47f12007-11-04 23:45:14 +0100508static ssize_t set_beep_enable(struct device *dev, struct device_attribute
509 *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510{
Jean Delvare86d47f12007-11-04 23:45:14 +0100511 struct i2c_client *client = to_i2c_client(dev);
512 struct gl520_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513 u8 r = simple_strtoul(buf, NULL, 10)?0:1;
514
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100515 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 data->beep_enable = !r;
Jean Delvare86d47f12007-11-04 23:45:14 +0100517 gl520_write_value(client, GL520_REG_BEEP_ENABLE,
518 (gl520_read_value(client, GL520_REG_BEEP_ENABLE)
519 & ~0x04) | (r << 2));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100520 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return count;
522}
523
Jean Delvare86d47f12007-11-04 23:45:14 +0100524static ssize_t set_beep_mask(struct device *dev, struct device_attribute *attr,
525 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700526{
Jean Delvare86d47f12007-11-04 23:45:14 +0100527 struct i2c_client *client = to_i2c_client(dev);
528 struct gl520_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 u8 r = simple_strtoul(buf, NULL, 10);
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100530
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100531 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532 r &= data->alarm_mask;
533 data->beep_mask = r;
Jean Delvare86d47f12007-11-04 23:45:14 +0100534 gl520_write_value(client, GL520_REG_BEEP_MASK, r);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100535 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700536 return count;
537}
538
Jean Delvare86d47f12007-11-04 23:45:14 +0100539static DEVICE_ATTR(alarms, S_IRUGO, get_alarms, NULL);
540static DEVICE_ATTR(beep_enable, S_IRUGO | S_IWUSR,
541 get_beep_enable, set_beep_enable);
542static DEVICE_ATTR(beep_mask, S_IRUGO | S_IWUSR,
543 get_beep_mask, set_beep_mask);
544
Jean Delvaree86a7762007-11-04 23:45:41 +0100545static ssize_t get_alarm(struct device *dev, struct device_attribute *attr,
546 char *buf)
547{
548 int bit_nr = to_sensor_dev_attr(attr)->index;
549 struct gl520_data *data = gl520_update_device(dev);
550
551 return sprintf(buf, "%d\n", (data->alarms >> bit_nr) & 1);
552}
553
554static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, get_alarm, NULL, 0);
555static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, get_alarm, NULL, 1);
556static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, get_alarm, NULL, 2);
557static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, get_alarm, NULL, 3);
558static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, get_alarm, NULL, 4);
559static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, get_alarm, NULL, 5);
560static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, get_alarm, NULL, 6);
561static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, get_alarm, NULL, 7);
562static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, get_alarm, NULL, 7);
563
564static ssize_t get_beep(struct device *dev, struct device_attribute *attr,
565 char *buf)
566{
567 int bitnr = to_sensor_dev_attr(attr)->index;
568 struct gl520_data *data = gl520_update_device(dev);
569
570 return sprintf(buf, "%d\n", (data->beep_mask >> bitnr) & 1);
571}
572
573static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
574 const char *buf, size_t count)
575{
576 struct i2c_client *client = to_i2c_client(dev);
577 struct gl520_data *data = i2c_get_clientdata(client);
578 int bitnr = to_sensor_dev_attr(attr)->index;
579 unsigned long bit;
580
581 bit = simple_strtoul(buf, NULL, 10);
582 if (bit & ~1)
583 return -EINVAL;
584
585 mutex_lock(&data->update_lock);
586 data->beep_mask = gl520_read_value(client, GL520_REG_BEEP_MASK);
587 if (bit)
588 data->beep_mask |= (1 << bitnr);
589 else
590 data->beep_mask &= ~(1 << bitnr);
591 gl520_write_value(client, GL520_REG_BEEP_MASK, data->beep_mask);
592 mutex_unlock(&data->update_lock);
593 return count;
594}
595
596static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 0);
597static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 1);
598static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 2);
599static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 3);
600static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 4);
601static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 5);
602static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 6);
603static SENSOR_DEVICE_ATTR(temp2_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 7);
604static SENSOR_DEVICE_ATTR(in4_beep, S_IRUGO | S_IWUSR, get_beep, set_beep, 7);
605
Jean Delvare87808be2006-09-24 21:17:13 +0200606static struct attribute *gl520_attributes[] = {
607 &dev_attr_cpu0_vid.attr,
608
Jean Delvare86d47f12007-11-04 23:45:14 +0100609 &sensor_dev_attr_in0_input.dev_attr.attr,
610 &sensor_dev_attr_in0_min.dev_attr.attr,
611 &sensor_dev_attr_in0_max.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100612 &sensor_dev_attr_in0_alarm.dev_attr.attr,
613 &sensor_dev_attr_in0_beep.dev_attr.attr,
Jean Delvare86d47f12007-11-04 23:45:14 +0100614 &sensor_dev_attr_in1_input.dev_attr.attr,
615 &sensor_dev_attr_in1_min.dev_attr.attr,
616 &sensor_dev_attr_in1_max.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100617 &sensor_dev_attr_in1_alarm.dev_attr.attr,
618 &sensor_dev_attr_in1_beep.dev_attr.attr,
Jean Delvare86d47f12007-11-04 23:45:14 +0100619 &sensor_dev_attr_in2_input.dev_attr.attr,
620 &sensor_dev_attr_in2_min.dev_attr.attr,
621 &sensor_dev_attr_in2_max.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100622 &sensor_dev_attr_in2_alarm.dev_attr.attr,
623 &sensor_dev_attr_in2_beep.dev_attr.attr,
Jean Delvare86d47f12007-11-04 23:45:14 +0100624 &sensor_dev_attr_in3_input.dev_attr.attr,
625 &sensor_dev_attr_in3_min.dev_attr.attr,
626 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100627 &sensor_dev_attr_in3_alarm.dev_attr.attr,
628 &sensor_dev_attr_in3_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200629
Jean Delvare86d47f12007-11-04 23:45:14 +0100630 &sensor_dev_attr_fan1_input.dev_attr.attr,
631 &sensor_dev_attr_fan1_min.dev_attr.attr,
632 &sensor_dev_attr_fan1_div.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100633 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
634 &sensor_dev_attr_fan1_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200635 &dev_attr_fan1_off.attr,
Jean Delvare86d47f12007-11-04 23:45:14 +0100636 &sensor_dev_attr_fan2_input.dev_attr.attr,
637 &sensor_dev_attr_fan2_min.dev_attr.attr,
638 &sensor_dev_attr_fan2_div.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100639 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
640 &sensor_dev_attr_fan2_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200641
Jean Delvare86d47f12007-11-04 23:45:14 +0100642 &sensor_dev_attr_temp1_input.dev_attr.attr,
643 &sensor_dev_attr_temp1_max.dev_attr.attr,
644 &sensor_dev_attr_temp1_max_hyst.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100645 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
646 &sensor_dev_attr_temp1_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200647
648 &dev_attr_alarms.attr,
649 &dev_attr_beep_enable.attr,
650 &dev_attr_beep_mask.attr,
651 NULL
652};
653
654static const struct attribute_group gl520_group = {
655 .attrs = gl520_attributes,
656};
657
658static struct attribute *gl520_attributes_opt[] = {
Jean Delvare86d47f12007-11-04 23:45:14 +0100659 &sensor_dev_attr_in4_input.dev_attr.attr,
660 &sensor_dev_attr_in4_min.dev_attr.attr,
661 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100662 &sensor_dev_attr_in4_alarm.dev_attr.attr,
663 &sensor_dev_attr_in4_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200664
Jean Delvare86d47f12007-11-04 23:45:14 +0100665 &sensor_dev_attr_temp2_input.dev_attr.attr,
666 &sensor_dev_attr_temp2_max.dev_attr.attr,
667 &sensor_dev_attr_temp2_max_hyst.dev_attr.attr,
Jean Delvaree86a7762007-11-04 23:45:41 +0100668 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
669 &sensor_dev_attr_temp2_beep.dev_attr.attr,
Jean Delvare87808be2006-09-24 21:17:13 +0200670 NULL
671};
672
673static const struct attribute_group gl520_group_opt = {
674 .attrs = gl520_attributes_opt,
675};
676
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677
678/*
679 * Real code
680 */
681
Jean Delvarea23a9fe2008-07-16 19:30:13 +0200682/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare310ec792009-12-14 21:17:23 +0100683static int gl520_detect(struct i2c_client *client, struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684{
Jean Delvarea23a9fe2008-07-16 19:30:13 +0200685 struct i2c_adapter *adapter = client->adapter;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700686
687 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |
688 I2C_FUNC_SMBUS_WORD_DATA))
Jean Delvarea23a9fe2008-07-16 19:30:13 +0200689 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691 /* Determine the chip type. */
Jean Delvare52df6442009-12-09 20:35:57 +0100692 if ((gl520_read_value(client, GL520_REG_CHIP_ID) != 0x20) ||
693 ((gl520_read_value(client, GL520_REG_REVISION) & 0x7f) != 0x00) ||
694 ((gl520_read_value(client, GL520_REG_CONF) & 0x80) != 0x00)) {
695 dev_dbg(&client->dev, "Unknown chip type, skipping\n");
696 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 }
698
Jean Delvarea23a9fe2008-07-16 19:30:13 +0200699 strlcpy(info->type, "gl520sm", I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Jean Delvarea23a9fe2008-07-16 19:30:13 +0200701 return 0;
702}
703
704static int gl520_probe(struct i2c_client *client,
705 const struct i2c_device_id *id)
706{
707 struct gl520_data *data;
708 int err;
709
710 data = kzalloc(sizeof(struct gl520_data), GFP_KERNEL);
711 if (!data) {
712 err = -ENOMEM;
713 goto exit;
714 }
715
716 i2c_set_clientdata(client, data);
717 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718
719 /* Initialize the GL520SM chip */
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100720 gl520_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721
722 /* Register sysfs hooks */
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100723 if ((err = sysfs_create_group(&client->dev.kobj, &gl520_group)))
Jean Delvarea23a9fe2008-07-16 19:30:13 +0200724 goto exit_free;
Jean Delvare87808be2006-09-24 21:17:13 +0200725
726 if (data->two_temps) {
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100727 if ((err = device_create_file(&client->dev,
Jean Delvare86d47f12007-11-04 23:45:14 +0100728 &sensor_dev_attr_temp2_input.dev_attr))
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100729 || (err = device_create_file(&client->dev,
Jean Delvare86d47f12007-11-04 23:45:14 +0100730 &sensor_dev_attr_temp2_max.dev_attr))
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100731 || (err = device_create_file(&client->dev,
Jean Delvaree86a7762007-11-04 23:45:41 +0100732 &sensor_dev_attr_temp2_max_hyst.dev_attr))
733 || (err = device_create_file(&client->dev,
734 &sensor_dev_attr_temp2_alarm.dev_attr))
735 || (err = device_create_file(&client->dev,
736 &sensor_dev_attr_temp2_beep.dev_attr)))
Jean Delvare87808be2006-09-24 21:17:13 +0200737 goto exit_remove_files;
738 } else {
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100739 if ((err = device_create_file(&client->dev,
Jean Delvare86d47f12007-11-04 23:45:14 +0100740 &sensor_dev_attr_in4_input.dev_attr))
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100741 || (err = device_create_file(&client->dev,
Jean Delvare86d47f12007-11-04 23:45:14 +0100742 &sensor_dev_attr_in4_min.dev_attr))
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100743 || (err = device_create_file(&client->dev,
Jean Delvaree86a7762007-11-04 23:45:41 +0100744 &sensor_dev_attr_in4_max.dev_attr))
745 || (err = device_create_file(&client->dev,
746 &sensor_dev_attr_in4_alarm.dev_attr))
747 || (err = device_create_file(&client->dev,
748 &sensor_dev_attr_in4_beep.dev_attr)))
Jean Delvare87808be2006-09-24 21:17:13 +0200749 goto exit_remove_files;
750 }
751
752
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100753 data->hwmon_dev = hwmon_device_register(&client->dev);
Tony Jones1beeffe2007-08-20 13:46:20 -0700754 if (IS_ERR(data->hwmon_dev)) {
755 err = PTR_ERR(data->hwmon_dev);
Jean Delvare87808be2006-09-24 21:17:13 +0200756 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400757 }
758
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 return 0;
760
Jean Delvare87808be2006-09-24 21:17:13 +0200761exit_remove_files:
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100762 sysfs_remove_group(&client->dev.kobj, &gl520_group);
763 sysfs_remove_group(&client->dev.kobj, &gl520_group_opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764exit_free:
765 kfree(data);
766exit:
767 return err;
768}
769
770
771/* Called when we have found a new GL520SM. */
772static void gl520_init_client(struct i2c_client *client)
773{
774 struct gl520_data *data = i2c_get_clientdata(client);
775 u8 oldconf, conf;
776
777 conf = oldconf = gl520_read_value(client, GL520_REG_CONF);
778
779 data->alarm_mask = 0xff;
Jean Delvare303760b2005-07-31 21:52:01 +0200780 data->vrm = vid_which_vrm();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781
782 if (extra_sensor_type == 1)
783 conf &= ~0x10;
784 else if (extra_sensor_type == 2)
785 conf |= 0x10;
786 data->two_temps = !(conf & 0x10);
787
788 /* If IRQ# is disabled, we can safely force comparator mode */
789 if (!(conf & 0x20))
790 conf &= 0xf7;
791
792 /* Enable monitoring if needed */
793 conf |= 0x40;
794
795 if (conf != oldconf)
796 gl520_write_value(client, GL520_REG_CONF, conf);
797
798 gl520_update_device(&(client->dev));
799
800 if (data->fan_min[0] == 0)
801 data->alarm_mask &= ~0x20;
802 if (data->fan_min[1] == 0)
803 data->alarm_mask &= ~0x40;
804
805 data->beep_mask &= data->alarm_mask;
806 gl520_write_value(client, GL520_REG_BEEP_MASK, data->beep_mask);
807}
808
Jean Delvarea23a9fe2008-07-16 19:30:13 +0200809static int gl520_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400811 struct gl520_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700812
Tony Jones1beeffe2007-08-20 13:46:20 -0700813 hwmon_device_unregister(data->hwmon_dev);
Jean Delvare87808be2006-09-24 21:17:13 +0200814 sysfs_remove_group(&client->dev.kobj, &gl520_group);
815 sysfs_remove_group(&client->dev.kobj, &gl520_group_opt);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400816
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400817 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700818 return 0;
819}
820
821
Jean Delvaref28dc2f2007-11-04 23:44:23 +0100822/* Registers 0x07 to 0x0c are word-sized, others are byte-sized
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 GL520 uses a high-byte first convention */
824static int gl520_read_value(struct i2c_client *client, u8 reg)
825{
826 if ((reg >= 0x07) && (reg <= 0x0c))
827 return swab16(i2c_smbus_read_word_data(client, reg));
828 else
829 return i2c_smbus_read_byte_data(client, reg);
830}
831
832static int gl520_write_value(struct i2c_client *client, u8 reg, u16 value)
833{
834 if ((reg >= 0x07) && (reg <= 0x0c))
835 return i2c_smbus_write_word_data(client, reg, swab16(value));
836 else
837 return i2c_smbus_write_byte_data(client, reg, value);
838}
839
840
841static struct gl520_data *gl520_update_device(struct device *dev)
842{
843 struct i2c_client *client = to_i2c_client(dev);
844 struct gl520_data *data = i2c_get_clientdata(client);
Jean Delvare8b4b0ab2007-11-04 23:44:52 +0100845 int val, i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100847 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848
Jean Delvare0cacdf22005-07-29 12:15:12 -0700849 if (time_after(jiffies, data->last_updated + 2 * HZ) || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850
851 dev_dbg(&client->dev, "Starting gl520sm update\n");
852
853 data->alarms = gl520_read_value(client, GL520_REG_ALARMS);
854 data->beep_mask = gl520_read_value(client, GL520_REG_BEEP_MASK);
855 data->vid = gl520_read_value(client, GL520_REG_VID_INPUT) & 0x1f;
856
Jean Delvare8b4b0ab2007-11-04 23:44:52 +0100857 for (i = 0; i < 4; i++) {
858 data->in_input[i] = gl520_read_value(client,
859 GL520_REG_IN_INPUT[i]);
860 val = gl520_read_value(client, GL520_REG_IN_LIMIT[i]);
861 data->in_min[i] = val & 0xff;
862 data->in_max[i] = (val >> 8) & 0xff;
863 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864
865 val = gl520_read_value(client, GL520_REG_FAN_INPUT);
866 data->fan_input[0] = (val >> 8) & 0xff;
867 data->fan_input[1] = val & 0xff;
868
869 val = gl520_read_value(client, GL520_REG_FAN_MIN);
870 data->fan_min[0] = (val >> 8) & 0xff;
871 data->fan_min[1] = val & 0xff;
872
Jean Delvare8b4b0ab2007-11-04 23:44:52 +0100873 data->temp_input[0] = gl520_read_value(client,
874 GL520_REG_TEMP_INPUT[0]);
875 data->temp_max[0] = gl520_read_value(client,
876 GL520_REG_TEMP_MAX[0]);
877 data->temp_max_hyst[0] = gl520_read_value(client,
878 GL520_REG_TEMP_MAX_HYST[0]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880 val = gl520_read_value(client, GL520_REG_FAN_DIV);
881 data->fan_div[0] = (val >> 6) & 0x03;
882 data->fan_div[1] = (val >> 4) & 0x03;
883 data->fan_off = (val >> 2) & 0x01;
884
885 data->alarms &= data->alarm_mask;
886
887 val = gl520_read_value(client, GL520_REG_CONF);
888 data->beep_enable = !((val >> 2) & 1);
889
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890 /* Temp1 and Vin4 are the same input */
891 if (data->two_temps) {
Jean Delvare8b4b0ab2007-11-04 23:44:52 +0100892 data->temp_input[1] = gl520_read_value(client,
893 GL520_REG_TEMP_INPUT[1]);
894 data->temp_max[1] = gl520_read_value(client,
895 GL520_REG_TEMP_MAX[1]);
896 data->temp_max_hyst[1] = gl520_read_value(client,
897 GL520_REG_TEMP_MAX_HYST[1]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898 } else {
Jean Delvare8b4b0ab2007-11-04 23:44:52 +0100899 data->in_input[4] = gl520_read_value(client,
900 GL520_REG_IN_INPUT[4]);
901 data->in_min[4] = gl520_read_value(client,
902 GL520_REG_IN_MIN[4]);
903 data->in_max[4] = gl520_read_value(client,
904 GL520_REG_IN_MAX[4]);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 }
906
907 data->last_updated = jiffies;
908 data->valid = 1;
909 }
910
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100911 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912
913 return data;
914}
915
916
917static int __init sensors_gl520sm_init(void)
918{
919 return i2c_add_driver(&gl520_driver);
920}
921
922static void __exit sensors_gl520sm_exit(void)
923{
924 i2c_del_driver(&gl520_driver);
925}
926
927
928MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>, "
Jan Engelhardt96de0e22007-10-19 23:21:04 +0200929 "Kyösti Mälkki <kmalkki@cc.hut.fi>, "
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 "Maarten Deprez <maartendeprez@users.sourceforge.net>");
931MODULE_DESCRIPTION("GL520SM driver");
932MODULE_LICENSE("GPL");
933
934module_init(sensors_gl520sm_init);
935module_exit(sensors_gl520sm_exit);