Blame view

drivers/hwmon/gl518sm.c 22.6 KB
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
  /*
   * gl518sm.c - Part of lm_sensors, Linux kernel modules for hardware
   *             monitoring
   * Copyright (C) 1998, 1999 Frodo Looijaard <frodol@dds.nl> and
   * Kyosti Malkki <kmalkki@cc.hut.fi>
   * Copyright (C) 2004 Hong-Gunn Chew <hglinux@gunnet.org> and
   * Jean Delvare <khali@linux-fr.org>
   *
   * This program is free software; you can redistribute it and/or modify
   * it under the terms of the GNU General Public License as published by
   * the Free Software Foundation; either version 2 of the License, or
   * (at your option) any later version.
   *
   * This program is distributed in the hope that it will be useful,
   * but WITHOUT ANY WARRANTY; without even the implied warranty of
   * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
   * GNU General Public License for more details.
   *
   * You should have received a copy of the GNU General Public License
   * along with this program; if not, write to the Free Software
   * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
   *
   * Ported to Linux 2.6 by Hong-Gunn Chew with the help of Jean Delvare
   * and advice of Greg Kroah-Hartman.
   *
   * Notes about the port:
   * Release 0x00 of the GL518SM chipset doesn't support reading of in0,
   * in1 nor in2. The original driver had an ugly workaround to get them
   * anyway (changing limits and watching alarms trigger and wear off).
   * We did not keep that part of the original driver in the Linux 2.6
   * version, since it was making the driver significantly more complex
   * with no real benefit.
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
33
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
34
35
36
37
38
  #include <linux/module.h>
  #include <linux/init.h>
  #include <linux/slab.h>
  #include <linux/jiffies.h>
  #include <linux/i2c.h>
943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
39
  #include <linux/hwmon.h>
28292e79d   Jean Delvare   hwmon: (gl518sm) ...
40
  #include <linux/hwmon-sysfs.h>
943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
41
  #include <linux/err.h>
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
42
  #include <linux/mutex.h>
87808be4f   Jean Delvare   Fix unchecked ret...
43
  #include <linux/sysfs.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
44
45
  
  /* Addresses to scan */
25e9c86d5   Mark M. Hoffman   hwmon: normal_i2c...
46
  static const unsigned short normal_i2c[] = { 0x2c, 0x2d, I2C_CLIENT_END };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
47

e5e9f44c2   Jean Delvare   i2c: Drop I2C_CLI...
48
  enum chips { gl518sm_r00, gl518sm_r80 };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
  
  /* Many GL518 constants specified below */
  
  /* The GL518 registers */
  #define GL518_REG_CHIP_ID	0x00
  #define GL518_REG_REVISION	0x01
  #define GL518_REG_VENDOR_ID	0x02
  #define GL518_REG_CONF		0x03
  #define GL518_REG_TEMP_IN	0x04
  #define GL518_REG_TEMP_MAX	0x05
  #define GL518_REG_TEMP_HYST	0x06
  #define GL518_REG_FAN_COUNT	0x07
  #define GL518_REG_FAN_LIMIT	0x08
  #define GL518_REG_VIN1_LIMIT	0x09
  #define GL518_REG_VIN2_LIMIT	0x0a
  #define GL518_REG_VIN3_LIMIT	0x0b
  #define GL518_REG_VDD_LIMIT	0x0c
  #define GL518_REG_VIN3		0x0d
  #define GL518_REG_MISC		0x0f
  #define GL518_REG_ALARM		0x10
  #define GL518_REG_MASK		0x11
  #define GL518_REG_INT		0x12
  #define GL518_REG_VIN2		0x13
  #define GL518_REG_VIN1		0x14
  #define GL518_REG_VDD		0x15
  
  
  /*
   * Conversions. Rounding and limit checking is only done on the TO_REG
   * variants. Note that you should be a bit careful with which arguments
   * these macros are called: arguments may be evaluated more than once.
   * Fixing this is just not worth it.
   */
  
  #define RAW_FROM_REG(val)	val
  
  #define BOOL_FROM_REG(val)	((val)?0:1)
  #define BOOL_TO_REG(val)	((val)?0:1)
  
  #define TEMP_TO_REG(val)	(SENSORS_LIMIT(((((val)<0? \
  				(val)-500:(val)+500)/1000)+119),0,255))
  #define TEMP_FROM_REG(val)	(((val) - 119) * 1000)
  
  static inline u8 FAN_TO_REG(long rpm, int div)
  {
  	long rpmdiv;
  	if (rpm == 0)
  		return 0;
72240307e   Jean Delvare   hwmon: (gl518sm) ...
97
98
  	rpmdiv = SENSORS_LIMIT(rpm, 1, 960000) * div;
  	return SENSORS_LIMIT((480000 + rpmdiv / 2) / rpmdiv, 1, 255);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
99
  }
72240307e   Jean Delvare   hwmon: (gl518sm) ...
100
  #define FAN_FROM_REG(val,div)	((val)==0 ? 0 : (480000/((val)*(div))))
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
101
102
103
104
105
106
  
  #define IN_TO_REG(val)		(SENSORS_LIMIT((((val)+9)/19),0,255))
  #define IN_FROM_REG(val)	((val)*19)
  
  #define VDD_TO_REG(val)		(SENSORS_LIMIT((((val)*4+47)/95),0,255))
  #define VDD_FROM_REG(val)	(((val)*95+2)/4)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
107
108
109
110
111
112
113
  #define DIV_FROM_REG(val)	(1 << (val))
  
  #define BEEP_MASK_TO_REG(val)	((val) & 0x7f & data->alarm_mask)
  #define BEEP_MASK_FROM_REG(val)	((val) & 0x7f)
  
  /* Each client has this additional data */
  struct gl518_data {
1beeffe43   Tony Jones   hwmon: Convert fr...
114
  	struct device *hwmon_dev;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
115
  	enum chips type;
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
116
  	struct mutex update_lock;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
117
118
119
120
121
122
  	char valid;		/* !=0 if following fields are valid */
  	unsigned long last_updated;	/* In jiffies */
  
  	u8 voltage_in[4];	/* Register values; [0] = VDD */
  	u8 voltage_min[4];	/* Register values; [0] = VDD */
  	u8 voltage_max[4];	/* Register values; [0] = VDD */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
123
124
125
126
127
128
129
130
  	u8 fan_in[2];
  	u8 fan_min[2];
  	u8 fan_div[2];		/* Register encoding, shifted right */
  	u8 fan_auto1;		/* Boolean */
  	u8 temp_in;		/* Register values */
  	u8 temp_max;		/* Register values */
  	u8 temp_hyst;		/* Register values */
  	u8 alarms;		/* Register value */
a5955ed27   Jean Delvare   hwmon: (gl518sm) ...
131
  	u8 alarm_mask;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
132
133
134
  	u8 beep_mask;		/* Register value */
  	u8 beep_enable;		/* Boolean */
  };
95d80e7c8   Jean Delvare   hwmon: (gl518sm) ...
135
136
  static int gl518_probe(struct i2c_client *client,
  		       const struct i2c_device_id *id);
310ec7921   Jean Delvare   i2c: Drop the kin...
137
  static int gl518_detect(struct i2c_client *client, struct i2c_board_info *info);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
138
  static void gl518_init_client(struct i2c_client *client);
95d80e7c8   Jean Delvare   hwmon: (gl518sm) ...
139
  static int gl518_remove(struct i2c_client *client);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
140
141
142
  static int gl518_read_value(struct i2c_client *client, u8 reg);
  static int gl518_write_value(struct i2c_client *client, u8 reg, u16 value);
  static struct gl518_data *gl518_update_device(struct device *dev);
95d80e7c8   Jean Delvare   hwmon: (gl518sm) ...
143
144
145
146
147
  static const struct i2c_device_id gl518_id[] = {
  	{ "gl518sm", 0 },
  	{ }
  };
  MODULE_DEVICE_TABLE(i2c, gl518_id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
148
149
  /* This is the driver that will be inserted */
  static struct i2c_driver gl518_driver = {
95d80e7c8   Jean Delvare   hwmon: (gl518sm) ...
150
  	.class		= I2C_CLASS_HWMON,
cdaf79349   Laurent Riffard   [PATCH] i2c: Drop...
151
  	.driver = {
cdaf79349   Laurent Riffard   [PATCH] i2c: Drop...
152
153
  		.name	= "gl518sm",
  	},
95d80e7c8   Jean Delvare   hwmon: (gl518sm) ...
154
155
156
157
  	.probe		= gl518_probe,
  	.remove		= gl518_remove,
  	.id_table	= gl518_id,
  	.detect		= gl518_detect,
c3813d6af   Jean Delvare   i2c: Get rid of s...
158
  	.address_list	= normal_i2c,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
159
160
161
162
163
164
165
  };
  
  /*
   * Sysfs stuff
   */
  
  #define show(type, suffix, value)					\
30f74292e   Yani Ioannou   [PATCH] Driver Co...
166
  static ssize_t show_##suffix(struct device *dev, struct device_attribute *attr, char *buf)		\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
167
168
169
170
171
  {									\
  	struct gl518_data *data = gl518_update_device(dev);		\
  	return sprintf(buf, "%d
  ", type##_FROM_REG(data->value));	\
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
172
173
174
175
  show(TEMP, temp_input1, temp_in);
  show(TEMP, temp_max1, temp_max);
  show(TEMP, temp_hyst1, temp_hyst);
  show(BOOL, fan_auto1, fan_auto1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
  show(VDD, in_input0, voltage_in[0]);
  show(IN, in_input1, voltage_in[1]);
  show(IN, in_input2, voltage_in[2]);
  show(IN, in_input3, voltage_in[3]);
  show(VDD, in_min0, voltage_min[0]);
  show(IN, in_min1, voltage_min[1]);
  show(IN, in_min2, voltage_min[2]);
  show(IN, in_min3, voltage_min[3]);
  show(VDD, in_max0, voltage_max[0]);
  show(IN, in_max1, voltage_max[1]);
  show(IN, in_max2, voltage_max[2]);
  show(IN, in_max3, voltage_max[3]);
  show(RAW, alarms, alarms);
  show(BOOL, beep_enable, beep_enable);
  show(BEEP_MASK, beep_mask, beep_mask);
28292e79d   Jean Delvare   hwmon: (gl518sm) ...
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
  static ssize_t show_fan_input(struct device *dev,
  			      struct device_attribute *attr, char *buf)
  {
  	int nr = to_sensor_dev_attr(attr)->index;
  	struct gl518_data *data = gl518_update_device(dev);
  	return sprintf(buf, "%d
  ", FAN_FROM_REG(data->fan_in[nr],
  					DIV_FROM_REG(data->fan_div[nr])));
  }
  
  static ssize_t show_fan_min(struct device *dev,
  			    struct device_attribute *attr, char *buf)
  {
  	int nr = to_sensor_dev_attr(attr)->index;
  	struct gl518_data *data = gl518_update_device(dev);
  	return sprintf(buf, "%d
  ", FAN_FROM_REG(data->fan_min[nr],
  					DIV_FROM_REG(data->fan_div[nr])));
  }
  
  static ssize_t show_fan_div(struct device *dev,
  			    struct device_attribute *attr, char *buf)
  {
  	int nr = to_sensor_dev_attr(attr)->index;
  	struct gl518_data *data = gl518_update_device(dev);
  	return sprintf(buf, "%d
  ", DIV_FROM_REG(data->fan_div[nr]));
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
219
  #define set(type, suffix, value, reg)					\
30f74292e   Yani Ioannou   [PATCH] Driver Co...
220
  static ssize_t set_##suffix(struct device *dev, struct device_attribute *attr, const char *buf,	\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
221
222
223
224
225
226
  	size_t count)							\
  {									\
  	struct i2c_client *client = to_i2c_client(dev);			\
  	struct gl518_data *data = i2c_get_clientdata(client);		\
  	long val = simple_strtol(buf, NULL, 10);			\
  									\
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
227
  	mutex_lock(&data->update_lock);					\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
228
229
  	data->value = type##_TO_REG(val);				\
  	gl518_write_value(client, reg, data->value);			\
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
230
  	mutex_unlock(&data->update_lock);				\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
231
232
233
234
  	return count;							\
  }
  
  #define set_bits(type, suffix, value, reg, mask, shift)			\
30f74292e   Yani Ioannou   [PATCH] Driver Co...
235
  static ssize_t set_##suffix(struct device *dev, struct device_attribute *attr, const char *buf,	\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
236
237
238
239
240
241
242
  	size_t count)							\
  {									\
  	struct i2c_client *client = to_i2c_client(dev);			\
  	struct gl518_data *data = i2c_get_clientdata(client);		\
  	int regvalue;							\
  	unsigned long val = simple_strtoul(buf, NULL, 10);		\
  									\
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
243
  	mutex_lock(&data->update_lock);					\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
244
245
246
247
  	regvalue = gl518_read_value(client, reg);			\
  	data->value = type##_TO_REG(val);				\
  	regvalue = (regvalue & ~mask) | (data->value << shift);		\
  	gl518_write_value(client, reg, regvalue);			\
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
248
  	mutex_unlock(&data->update_lock);				\
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
249
250
251
252
253
254
255
256
257
258
259
  	return count;							\
  }
  
  #define set_low(type, suffix, value, reg)				\
  	set_bits(type, suffix, value, reg, 0x00ff, 0)
  #define set_high(type, suffix, value, reg)				\
  	set_bits(type, suffix, value, reg, 0xff00, 8)
  
  set(TEMP, temp_max1, temp_max, GL518_REG_TEMP_MAX);
  set(TEMP, temp_hyst1, temp_hyst, GL518_REG_TEMP_HYST);
  set_bits(BOOL, fan_auto1, fan_auto1, GL518_REG_MISC, 0x08, 3);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
260
261
262
263
264
265
266
267
268
269
  set_low(VDD, in_min0, voltage_min[0], GL518_REG_VDD_LIMIT);
  set_low(IN, in_min1, voltage_min[1], GL518_REG_VIN1_LIMIT);
  set_low(IN, in_min2, voltage_min[2], GL518_REG_VIN2_LIMIT);
  set_low(IN, in_min3, voltage_min[3], GL518_REG_VIN3_LIMIT);
  set_high(VDD, in_max0, voltage_max[0], GL518_REG_VDD_LIMIT);
  set_high(IN, in_max1, voltage_max[1], GL518_REG_VIN1_LIMIT);
  set_high(IN, in_max2, voltage_max[2], GL518_REG_VIN2_LIMIT);
  set_high(IN, in_max3, voltage_max[3], GL518_REG_VIN3_LIMIT);
  set_bits(BOOL, beep_enable, beep_enable, GL518_REG_CONF, 0x04, 2);
  set(BEEP_MASK, beep_mask, beep_mask, GL518_REG_ALARM);
28292e79d   Jean Delvare   hwmon: (gl518sm) ...
270
271
  static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
  			   const char *buf, size_t count)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
272
273
274
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	struct gl518_data *data = i2c_get_clientdata(client);
28292e79d   Jean Delvare   hwmon: (gl518sm) ...
275
  	int nr = to_sensor_dev_attr(attr)->index;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
276
277
  	int regvalue;
  	unsigned long val = simple_strtoul(buf, NULL, 10);
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
278
  	mutex_lock(&data->update_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
279
  	regvalue = gl518_read_value(client, GL518_REG_FAN_LIMIT);
28292e79d   Jean Delvare   hwmon: (gl518sm) ...
280
281
282
  	data->fan_min[nr] = FAN_TO_REG(val, DIV_FROM_REG(data->fan_div[nr]));
  	regvalue = (regvalue & (0xff << (8 * nr)))
  		 | (data->fan_min[nr] << (8 * (1 - nr)));
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
283
284
285
  	gl518_write_value(client, GL518_REG_FAN_LIMIT, regvalue);
  
  	data->beep_mask = gl518_read_value(client, GL518_REG_ALARM);
28292e79d   Jean Delvare   hwmon: (gl518sm) ...
286
287
  	if (data->fan_min[nr] == 0)
  		data->alarm_mask &= ~(0x20 << nr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
288
  	else
28292e79d   Jean Delvare   hwmon: (gl518sm) ...
289
  		data->alarm_mask |= (0x20 << nr);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
290
291
  	data->beep_mask &= data->alarm_mask;
  	gl518_write_value(client, GL518_REG_ALARM, data->beep_mask);
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
292
  	mutex_unlock(&data->update_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
293
294
  	return count;
  }
28292e79d   Jean Delvare   hwmon: (gl518sm) ...
295
296
  static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
  			   const char *buf, size_t count)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
297
298
299
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	struct gl518_data *data = i2c_get_clientdata(client);
28292e79d   Jean Delvare   hwmon: (gl518sm) ...
300
  	int nr = to_sensor_dev_attr(attr)->index;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
301
302
  	int regvalue;
  	unsigned long val = simple_strtoul(buf, NULL, 10);
21df67b19   Jean Delvare   hwmon: (gl518sm) ...
303
304
305
306
307
308
309
310
311
312
313
  	switch (val) {
  	case 1: val = 0; break;
  	case 2: val = 1; break;
  	case 4: val = 2; break;
  	case 8: val = 3; break;
  	default:
  		dev_err(dev, "Invalid fan clock divider %lu, choose one "
  			"of 1, 2, 4 or 8
  ", val);
  		return -EINVAL;
  	}
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
314
  	mutex_lock(&data->update_lock);
28292e79d   Jean Delvare   hwmon: (gl518sm) ...
315
  	regvalue = gl518_read_value(client, GL518_REG_MISC);
21df67b19   Jean Delvare   hwmon: (gl518sm) ...
316
  	data->fan_div[nr] = val;
28292e79d   Jean Delvare   hwmon: (gl518sm) ...
317
318
319
  	regvalue = (regvalue & ~(0xc0 >> (2 * nr)))
  		 | (data->fan_div[nr] << (6 - 2 * nr));
  	gl518_write_value(client, GL518_REG_MISC, regvalue);
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
320
  	mutex_unlock(&data->update_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
321
322
323
324
325
326
327
328
  	return count;
  }
  
  static DEVICE_ATTR(temp1_input, S_IRUGO, show_temp_input1, NULL);
  static DEVICE_ATTR(temp1_max, S_IWUSR|S_IRUGO, show_temp_max1, set_temp_max1);
  static DEVICE_ATTR(temp1_max_hyst, S_IWUSR|S_IRUGO,
  	show_temp_hyst1, set_temp_hyst1);
  static DEVICE_ATTR(fan1_auto, S_IWUSR|S_IRUGO, show_fan_auto1, set_fan_auto1);
28292e79d   Jean Delvare   hwmon: (gl518sm) ...
329
330
331
332
333
334
335
336
337
338
  static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan_input, NULL, 0);
  static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, show_fan_input, NULL, 1);
  static SENSOR_DEVICE_ATTR(fan1_min, S_IWUSR|S_IRUGO,
  	show_fan_min, set_fan_min, 0);
  static SENSOR_DEVICE_ATTR(fan2_min, S_IWUSR|S_IRUGO,
  	show_fan_min, set_fan_min, 1);
  static SENSOR_DEVICE_ATTR(fan1_div, S_IWUSR|S_IRUGO,
  	show_fan_div, set_fan_div, 0);
  static SENSOR_DEVICE_ATTR(fan2_div, S_IWUSR|S_IRUGO,
  	show_fan_div, set_fan_div, 1);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
  static DEVICE_ATTR(in0_input, S_IRUGO, show_in_input0, NULL);
  static DEVICE_ATTR(in1_input, S_IRUGO, show_in_input1, NULL);
  static DEVICE_ATTR(in2_input, S_IRUGO, show_in_input2, NULL);
  static DEVICE_ATTR(in3_input, S_IRUGO, show_in_input3, NULL);
  static DEVICE_ATTR(in0_min, S_IWUSR|S_IRUGO, show_in_min0, set_in_min0);
  static DEVICE_ATTR(in1_min, S_IWUSR|S_IRUGO, show_in_min1, set_in_min1);
  static DEVICE_ATTR(in2_min, S_IWUSR|S_IRUGO, show_in_min2, set_in_min2);
  static DEVICE_ATTR(in3_min, S_IWUSR|S_IRUGO, show_in_min3, set_in_min3);
  static DEVICE_ATTR(in0_max, S_IWUSR|S_IRUGO, show_in_max0, set_in_max0);
  static DEVICE_ATTR(in1_max, S_IWUSR|S_IRUGO, show_in_max1, set_in_max1);
  static DEVICE_ATTR(in2_max, S_IWUSR|S_IRUGO, show_in_max2, set_in_max2);
  static DEVICE_ATTR(in3_max, S_IWUSR|S_IRUGO, show_in_max3, set_in_max3);
  static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
  static DEVICE_ATTR(beep_enable, S_IWUSR|S_IRUGO,
  	show_beep_enable, set_beep_enable);
  static DEVICE_ATTR(beep_mask, S_IWUSR|S_IRUGO,
  	show_beep_mask, set_beep_mask);
da6848da2   Jean Delvare   hwmon: (gl518sm) ...
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
  static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
  			  char *buf)
  {
  	int bitnr = to_sensor_dev_attr(attr)->index;
  	struct gl518_data *data = gl518_update_device(dev);
  	return sprintf(buf, "%u
  ", (data->alarms >> bitnr) & 1);
  }
  
  static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
  static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
  static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
  static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
  static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4);
  static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 5);
  static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 6);
  
  static ssize_t show_beep(struct device *dev, struct device_attribute *attr,
  			  char *buf)
  {
  	int bitnr = to_sensor_dev_attr(attr)->index;
  	struct gl518_data *data = gl518_update_device(dev);
  	return sprintf(buf, "%u
  ", (data->beep_mask >> bitnr) & 1);
  }
  
  static ssize_t set_beep(struct device *dev, struct device_attribute *attr,
  			const char *buf, size_t count)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	struct gl518_data *data = i2c_get_clientdata(client);
  	int bitnr = to_sensor_dev_attr(attr)->index;
  	unsigned long bit;
  
  	bit = simple_strtoul(buf, NULL, 10);
  	if (bit & ~1)
  		return -EINVAL;
  
  	mutex_lock(&data->update_lock);
  	data->beep_mask = gl518_read_value(client, GL518_REG_ALARM);
  	if (bit)
  		data->beep_mask |= (1 << bitnr);
  	else
  		data->beep_mask &= ~(1 << bitnr);
  	gl518_write_value(client, GL518_REG_ALARM, data->beep_mask);
  	mutex_unlock(&data->update_lock);
  	return count;
  }
  
  static SENSOR_DEVICE_ATTR(in0_beep, S_IRUGO|S_IWUSR, show_beep, set_beep, 0);
  static SENSOR_DEVICE_ATTR(in1_beep, S_IRUGO|S_IWUSR, show_beep, set_beep, 1);
  static SENSOR_DEVICE_ATTR(in2_beep, S_IRUGO|S_IWUSR, show_beep, set_beep, 2);
  static SENSOR_DEVICE_ATTR(in3_beep, S_IRUGO|S_IWUSR, show_beep, set_beep, 3);
  static SENSOR_DEVICE_ATTR(temp1_beep, S_IRUGO|S_IWUSR, show_beep, set_beep, 4);
  static SENSOR_DEVICE_ATTR(fan1_beep, S_IRUGO|S_IWUSR, show_beep, set_beep, 5);
  static SENSOR_DEVICE_ATTR(fan2_beep, S_IRUGO|S_IWUSR, show_beep, set_beep, 6);
87808be4f   Jean Delvare   Fix unchecked ret...
412
  static struct attribute *gl518_attributes[] = {
87808be4f   Jean Delvare   Fix unchecked ret...
413
414
415
416
417
418
419
420
421
  	&dev_attr_in3_input.attr,
  	&dev_attr_in0_min.attr,
  	&dev_attr_in1_min.attr,
  	&dev_attr_in2_min.attr,
  	&dev_attr_in3_min.attr,
  	&dev_attr_in0_max.attr,
  	&dev_attr_in1_max.attr,
  	&dev_attr_in2_max.attr,
  	&dev_attr_in3_max.attr,
da6848da2   Jean Delvare   hwmon: (gl518sm) ...
422
423
424
425
426
427
428
429
  	&sensor_dev_attr_in0_alarm.dev_attr.attr,
  	&sensor_dev_attr_in1_alarm.dev_attr.attr,
  	&sensor_dev_attr_in2_alarm.dev_attr.attr,
  	&sensor_dev_attr_in3_alarm.dev_attr.attr,
  	&sensor_dev_attr_in0_beep.dev_attr.attr,
  	&sensor_dev_attr_in1_beep.dev_attr.attr,
  	&sensor_dev_attr_in2_beep.dev_attr.attr,
  	&sensor_dev_attr_in3_beep.dev_attr.attr,
87808be4f   Jean Delvare   Fix unchecked ret...
430
431
  
  	&dev_attr_fan1_auto.attr,
28292e79d   Jean Delvare   hwmon: (gl518sm) ...
432
433
434
435
436
437
  	&sensor_dev_attr_fan1_input.dev_attr.attr,
  	&sensor_dev_attr_fan2_input.dev_attr.attr,
  	&sensor_dev_attr_fan1_min.dev_attr.attr,
  	&sensor_dev_attr_fan2_min.dev_attr.attr,
  	&sensor_dev_attr_fan1_div.dev_attr.attr,
  	&sensor_dev_attr_fan2_div.dev_attr.attr,
da6848da2   Jean Delvare   hwmon: (gl518sm) ...
438
439
440
441
  	&sensor_dev_attr_fan1_alarm.dev_attr.attr,
  	&sensor_dev_attr_fan2_alarm.dev_attr.attr,
  	&sensor_dev_attr_fan1_beep.dev_attr.attr,
  	&sensor_dev_attr_fan2_beep.dev_attr.attr,
87808be4f   Jean Delvare   Fix unchecked ret...
442
443
444
445
  
  	&dev_attr_temp1_input.attr,
  	&dev_attr_temp1_max.attr,
  	&dev_attr_temp1_max_hyst.attr,
da6848da2   Jean Delvare   hwmon: (gl518sm) ...
446
447
  	&sensor_dev_attr_temp1_alarm.dev_attr.attr,
  	&sensor_dev_attr_temp1_beep.dev_attr.attr,
87808be4f   Jean Delvare   Fix unchecked ret...
448
449
450
451
452
453
454
455
456
457
  
  	&dev_attr_alarms.attr,
  	&dev_attr_beep_enable.attr,
  	&dev_attr_beep_mask.attr,
  	NULL
  };
  
  static const struct attribute_group gl518_group = {
  	.attrs = gl518_attributes,
  };
5314f5c1a   Jean Delvare   hwmon: (gl518sm) ...
458
459
460
461
462
463
464
465
466
467
  static struct attribute *gl518_attributes_r80[] = {
  	&dev_attr_in0_input.attr,
  	&dev_attr_in1_input.attr,
  	&dev_attr_in2_input.attr,
  	NULL
  };
  
  static const struct attribute_group gl518_group_r80 = {
  	.attrs = gl518_attributes_r80,
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
468
469
470
  /*
   * Real code
   */
95d80e7c8   Jean Delvare   hwmon: (gl518sm) ...
471
  /* Return 0 if detection is successful, -ENODEV otherwise */
310ec7921   Jean Delvare   i2c: Drop the kin...
472
  static int gl518_detect(struct i2c_client *client, struct i2c_board_info *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
473
  {
95d80e7c8   Jean Delvare   hwmon: (gl518sm) ...
474
  	struct i2c_adapter *adapter = client->adapter;
52df6440a   Jean Delvare   hwmon: Clean up d...
475
  	int rev;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
476
477
478
  
  	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA |
  				     I2C_FUNC_SMBUS_WORD_DATA))
95d80e7c8   Jean Delvare   hwmon: (gl518sm) ...
479
  		return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
480
481
  
  	/* Now, we do the remaining detection. */
52df6440a   Jean Delvare   hwmon: Clean up d...
482
483
484
  	if ((gl518_read_value(client, GL518_REG_CHIP_ID) != 0x80)
  	 || (gl518_read_value(client, GL518_REG_CONF) & 0x80))
  		return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
485
486
  
  	/* Determine the chip type. */
52df6440a   Jean Delvare   hwmon: Clean up d...
487
488
489
  	rev = gl518_read_value(client, GL518_REG_REVISION);
  	if (rev != 0x00 && rev != 0x80)
  		return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
490

95d80e7c8   Jean Delvare   hwmon: (gl518sm) ...
491
  	strlcpy(info->type, "gl518sm", I2C_NAME_SIZE);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
492

95d80e7c8   Jean Delvare   hwmon: (gl518sm) ...
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
  	return 0;
  }
  
  static int gl518_probe(struct i2c_client *client,
  		       const struct i2c_device_id *id)
  {
  	struct gl518_data *data;
  	int err, revision;
  
  	data = kzalloc(sizeof(struct gl518_data), GFP_KERNEL);
  	if (!data) {
  		err = -ENOMEM;
  		goto exit;
  	}
  
  	i2c_set_clientdata(client, data);
  	revision = gl518_read_value(client, GL518_REG_REVISION);
  	data->type = revision == 0x80 ? gl518sm_r80 : gl518sm_r00;
  	mutex_init(&data->update_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
512
513
514
  
  	/* Initialize the GL518SM chip */
  	data->alarm_mask = 0xff;
a5955ed27   Jean Delvare   hwmon: (gl518sm) ...
515
  	gl518_init_client(client);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
516
517
  
  	/* Register sysfs hooks */
a5955ed27   Jean Delvare   hwmon: (gl518sm) ...
518
  	if ((err = sysfs_create_group(&client->dev.kobj, &gl518_group)))
95d80e7c8   Jean Delvare   hwmon: (gl518sm) ...
519
  		goto exit_free;
5314f5c1a   Jean Delvare   hwmon: (gl518sm) ...
520
521
522
523
  	if (data->type == gl518sm_r80)
  		if ((err = sysfs_create_group(&client->dev.kobj,
  					      &gl518_group_r80)))
  			goto exit_remove_files;
87808be4f   Jean Delvare   Fix unchecked ret...
524

a5955ed27   Jean Delvare   hwmon: (gl518sm) ...
525
  	data->hwmon_dev = hwmon_device_register(&client->dev);
1beeffe43   Tony Jones   hwmon: Convert fr...
526
527
  	if (IS_ERR(data->hwmon_dev)) {
  		err = PTR_ERR(data->hwmon_dev);
87808be4f   Jean Delvare   Fix unchecked ret...
528
  		goto exit_remove_files;
943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
529
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
530
  	return 0;
87808be4f   Jean Delvare   Fix unchecked ret...
531
  exit_remove_files:
a5955ed27   Jean Delvare   hwmon: (gl518sm) ...
532
  	sysfs_remove_group(&client->dev.kobj, &gl518_group);
5314f5c1a   Jean Delvare   hwmon: (gl518sm) ...
533
534
  	if (data->type == gl518sm_r80)
  		sysfs_remove_group(&client->dev.kobj, &gl518_group_r80);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
  exit_free:
  	kfree(data);
  exit:
  	return err;
  }
  
  
  /* Called when we have found a new GL518SM.
     Note that we preserve D4:NoFan2 and D2:beep_enable. */
  static void gl518_init_client(struct i2c_client *client)
  {
  	/* Make sure we leave D7:Reset untouched */
  	u8 regvalue = gl518_read_value(client, GL518_REG_CONF) & 0x7f;
  
  	/* Comparator mode (D3=0), standby mode (D6=0) */
  	gl518_write_value(client, GL518_REG_CONF, (regvalue &= 0x37));
  
  	/* Never interrupts */
  	gl518_write_value(client, GL518_REG_MASK, 0x00);
  
  	/* Clear status register (D5=1), start (D6=1) */
  	gl518_write_value(client, GL518_REG_CONF, 0x20 | regvalue);
  	gl518_write_value(client, GL518_REG_CONF, 0x40 | regvalue);
  }
95d80e7c8   Jean Delvare   hwmon: (gl518sm) ...
559
  static int gl518_remove(struct i2c_client *client)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
560
  {
943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
561
  	struct gl518_data *data = i2c_get_clientdata(client);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
562

1beeffe43   Tony Jones   hwmon: Convert fr...
563
  	hwmon_device_unregister(data->hwmon_dev);
87808be4f   Jean Delvare   Fix unchecked ret...
564
  	sysfs_remove_group(&client->dev.kobj, &gl518_group);
5314f5c1a   Jean Delvare   hwmon: (gl518sm) ...
565
566
  	if (data->type == gl518sm_r80)
  		sysfs_remove_group(&client->dev.kobj, &gl518_group_r80);
943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
567

943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
568
  	kfree(data);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
569
570
  	return 0;
  }
a5955ed27   Jean Delvare   hwmon: (gl518sm) ...
571
  /* Registers 0x07 to 0x0c are word-sized, others are byte-sized
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
572
     GL518 uses a high-byte first convention, which is exactly opposite to
a5955ed27   Jean Delvare   hwmon: (gl518sm) ...
573
     the SMBus standard. */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
574
575
576
  static int gl518_read_value(struct i2c_client *client, u8 reg)
  {
  	if ((reg >= 0x07) && (reg <= 0x0c))
90f4102ce   Jean Delvare   hwmon: Use i2c_sm...
577
  		return i2c_smbus_read_word_swapped(client, reg);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
578
579
580
  	else
  		return i2c_smbus_read_byte_data(client, reg);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
581
582
583
  static int gl518_write_value(struct i2c_client *client, u8 reg, u16 value)
  {
  	if ((reg >= 0x07) && (reg <= 0x0c))
90f4102ce   Jean Delvare   hwmon: Use i2c_sm...
584
  		return i2c_smbus_write_word_swapped(client, reg, value);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
585
586
587
588
589
590
591
592
593
  	else
  		return i2c_smbus_write_byte_data(client, reg, value);
  }
  
  static struct gl518_data *gl518_update_device(struct device *dev)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	struct gl518_data *data = i2c_get_clientdata(client);
  	int val;
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
594
  	mutex_lock(&data->update_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
  
  	if (time_after(jiffies, data->last_updated + HZ + HZ / 2)
  	    || !data->valid) {
  		dev_dbg(&client->dev, "Starting gl518 update
  ");
  
  		data->alarms = gl518_read_value(client, GL518_REG_INT);
  		data->beep_mask = gl518_read_value(client, GL518_REG_ALARM);
  
  		val = gl518_read_value(client, GL518_REG_VDD_LIMIT);
  		data->voltage_min[0] = val & 0xff;
  		data->voltage_max[0] = (val >> 8) & 0xff;
  		val = gl518_read_value(client, GL518_REG_VIN1_LIMIT);
  		data->voltage_min[1] = val & 0xff;
  		data->voltage_max[1] = (val >> 8) & 0xff;
  		val = gl518_read_value(client, GL518_REG_VIN2_LIMIT);
  		data->voltage_min[2] = val & 0xff;
  		data->voltage_max[2] = (val >> 8) & 0xff;
  		val = gl518_read_value(client, GL518_REG_VIN3_LIMIT);
  		data->voltage_min[3] = val & 0xff;
  		data->voltage_max[3] = (val >> 8) & 0xff;
  
  		val = gl518_read_value(client, GL518_REG_FAN_COUNT);
  		data->fan_in[0] = (val >> 8) & 0xff;
  		data->fan_in[1] = val & 0xff;
  
  		val = gl518_read_value(client, GL518_REG_FAN_LIMIT);
  		data->fan_min[0] = (val >> 8) & 0xff;
  		data->fan_min[1] = val & 0xff;
  
  		data->temp_in = gl518_read_value(client, GL518_REG_TEMP_IN);
  		data->temp_max =
  		    gl518_read_value(client, GL518_REG_TEMP_MAX);
  		data->temp_hyst =
  		    gl518_read_value(client, GL518_REG_TEMP_HYST);
  
  		val = gl518_read_value(client, GL518_REG_MISC);
  		data->fan_div[0] = (val >> 6) & 0x03;
  		data->fan_div[1] = (val >> 4) & 0x03;
  		data->fan_auto1  = (val >> 3) & 0x01;
  
  		data->alarms &= data->alarm_mask;
  
  		val = gl518_read_value(client, GL518_REG_CONF);
  		data->beep_enable = (val >> 2) & 1;
  
  		if (data->type != gl518sm_r00) {
  			data->voltage_in[0] =
  			    gl518_read_value(client, GL518_REG_VDD);
  			data->voltage_in[1] =
  			    gl518_read_value(client, GL518_REG_VIN1);
  			data->voltage_in[2] =
  			    gl518_read_value(client, GL518_REG_VIN2);
  		}
  		data->voltage_in[3] =
  		    gl518_read_value(client, GL518_REG_VIN3);
  
  		data->last_updated = jiffies;
  		data->valid = 1;
  	}
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
655
  	mutex_unlock(&data->update_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
  
  	return data;
  }
  
  static int __init sensors_gl518sm_init(void)
  {
  	return i2c_add_driver(&gl518_driver);
  }
  
  static void __exit sensors_gl518sm_exit(void)
  {
  	i2c_del_driver(&gl518_driver);
  }
  
  MODULE_AUTHOR("Frodo Looijaard <frodol@dds.nl>, "
  	"Kyosti Malkki <kmalkki@cc.hut.fi> and "
  	"Hong-Gunn Chew <hglinux@gunnet.org>");
  MODULE_DESCRIPTION("GL518SM driver");
  MODULE_LICENSE("GPL");
  
  module_init(sensors_gl518sm_init);
  module_exit(sensors_gl518sm_exit);