Blame view

drivers/hwmon/max1619.c 10.3 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
  /*
   * max1619.c - Part of lm_sensors, Linux kernel modules for hardware
   *             monitoring
   * Copyright (C) 2003-2004 Alexey Fisher <fishor@mail.ru>
   *                         Jean Delvare <khali@linux-fr.org>
   *
   * Based on the lm90 driver. The MAX1619 is a sensor chip made by Maxim.
   * It reports up to two temperatures (its own plus up to
   * one external one). Complete datasheet can be
   * obtained from Maxim's website at:
   *   http://pdfserv.maxim-ic.com/en/ds/MAX1619.pdf
   *
   * 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.
   */
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
27
28
29
30
31
  #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...
32
  #include <linux/hwmon.h>
71062ffcd   Jean Delvare   hwmon: (max1619) ...
33
  #include <linux/hwmon-sysfs.h>
943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
34
  #include <linux/err.h>
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
35
  #include <linux/mutex.h>
a5ebe668a   Jean Delvare   hwmon: Fix unchec...
36
  #include <linux/sysfs.h>
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
37

25e9c86d5   Mark M. Hoffman   hwmon: normal_i2c...
38
39
  static const unsigned short normal_i2c[] = {
  	0x18, 0x19, 0x1a, 0x29, 0x2a, 0x2b, 0x4c, 0x4d, 0x4e, I2C_CLIENT_END };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
40
41
  
  /*
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
   * The MAX1619 registers
   */
  
  #define MAX1619_REG_R_MAN_ID		0xFE
  #define MAX1619_REG_R_CHIP_ID		0xFF
  #define MAX1619_REG_R_CONFIG		0x03
  #define MAX1619_REG_W_CONFIG		0x09
  #define MAX1619_REG_R_CONVRATE		0x04
  #define MAX1619_REG_W_CONVRATE		0x0A
  #define MAX1619_REG_R_STATUS		0x02
  #define MAX1619_REG_R_LOCAL_TEMP	0x00
  #define MAX1619_REG_R_REMOTE_TEMP	0x01
  #define MAX1619_REG_R_REMOTE_HIGH	0x07
  #define MAX1619_REG_W_REMOTE_HIGH	0x0D
  #define MAX1619_REG_R_REMOTE_LOW	0x08
  #define MAX1619_REG_W_REMOTE_LOW	0x0E
  #define MAX1619_REG_R_REMOTE_CRIT	0x10
  #define MAX1619_REG_W_REMOTE_CRIT	0x12
  #define MAX1619_REG_R_TCRIT_HYST	0x11
  #define MAX1619_REG_W_TCRIT_HYST	0x13
  
  /*
a80e8ee66   Andrew Morton   hwmon: (max1619) ...
64
   * Conversions
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
65
   */
a80e8ee66   Andrew Morton   hwmon: (max1619) ...
66
67
68
69
70
71
72
73
74
  static int temp_from_reg(int val)
  {
  	return (val & 0x80 ? val-0x100 : val) * 1000;
  }
  
  static int temp_to_reg(int val)
  {
  	return (val < 0 ? val+0x100*1000 : val) / 1000;
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
75
76
77
78
  
  /*
   * Functions declaration
   */
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
79
80
  static int max1619_probe(struct i2c_client *client,
  			 const struct i2c_device_id *id);
310ec7921   Jean Delvare   i2c: Drop the kin...
81
  static int max1619_detect(struct i2c_client *client,
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
82
  			  struct i2c_board_info *info);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
83
  static void max1619_init_client(struct i2c_client *client);
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
84
  static int max1619_remove(struct i2c_client *client);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
85
86
87
88
89
  static struct max1619_data *max1619_update_device(struct device *dev);
  
  /*
   * Driver data (common to all clients)
   */
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
90
  static const struct i2c_device_id max1619_id[] = {
1f86df49d   Jean Delvare   i2c: Drop I2C_CLI...
91
  	{ "max1619", 0 },
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
92
93
94
  	{ }
  };
  MODULE_DEVICE_TABLE(i2c, max1619_id);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
95
  static struct i2c_driver max1619_driver = {
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
96
  	.class		= I2C_CLASS_HWMON,
cdaf79349   Laurent Riffard   [PATCH] i2c: Drop...
97
  	.driver = {
cdaf79349   Laurent Riffard   [PATCH] i2c: Drop...
98
99
  		.name	= "max1619",
  	},
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
100
101
102
103
  	.probe		= max1619_probe,
  	.remove		= max1619_remove,
  	.id_table	= max1619_id,
  	.detect		= max1619_detect,
c3813d6af   Jean Delvare   i2c: Get rid of s...
104
  	.address_list	= normal_i2c,
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
105
106
107
108
109
110
111
  };
  
  /*
   * Client data (each client gets its own)
   */
  
  struct max1619_data {
1beeffe43   Tony Jones   hwmon: Convert fr...
112
  	struct device *hwmon_dev;
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
113
  	struct mutex update_lock;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
  	char valid; /* zero until following fields are valid */
  	unsigned long last_updated; /* in jiffies */
  
  	/* registers values */
  	u8 temp_input1; /* local */
  	u8 temp_input2, temp_low2, temp_high2; /* remote */
  	u8 temp_crit2;
  	u8 temp_hyst2;
  	u8 alarms; 
  };
  
  /*
   * Sysfs stuff
   */
  
  #define show_temp(value) \
8627f9ba5   Yani Ioannou   [PATCH] Driver Co...
130
  static ssize_t show_##value(struct device *dev, struct device_attribute *attr, char *buf) \
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
131
132
  { \
  	struct max1619_data *data = max1619_update_device(dev); \
a80e8ee66   Andrew Morton   hwmon: (max1619) ...
133
134
  	return sprintf(buf, "%d
  ", temp_from_reg(data->value)); \
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
135
136
137
138
139
140
141
142
143
  }
  show_temp(temp_input1);
  show_temp(temp_input2);
  show_temp(temp_low2);
  show_temp(temp_high2);
  show_temp(temp_crit2);
  show_temp(temp_hyst2);
  
  #define set_temp2(value, reg) \
8627f9ba5   Yani Ioannou   [PATCH] Driver Co...
144
  static ssize_t set_##value(struct device *dev, struct device_attribute *attr, const char *buf, \
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
145
146
147
148
149
150
  	size_t count) \
  { \
  	struct i2c_client *client = to_i2c_client(dev); \
  	struct max1619_data *data = i2c_get_clientdata(client); \
  	long val = simple_strtol(buf, NULL, 10); \
   \
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
151
  	mutex_lock(&data->update_lock); \
a80e8ee66   Andrew Morton   hwmon: (max1619) ...
152
  	data->value = temp_to_reg(val); \
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
153
  	i2c_smbus_write_byte_data(client, reg, data->value); \
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
154
  	mutex_unlock(&data->update_lock); \
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
155
156
157
158
159
160
161
  	return count; \
  }
  
  set_temp2(temp_low2, MAX1619_REG_W_REMOTE_LOW);
  set_temp2(temp_high2, MAX1619_REG_W_REMOTE_HIGH);
  set_temp2(temp_crit2, MAX1619_REG_W_REMOTE_CRIT);
  set_temp2(temp_hyst2, MAX1619_REG_W_TCRIT_HYST);
8627f9ba5   Yani Ioannou   [PATCH] Driver Co...
162
  static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, char *buf)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
163
164
165
166
167
  {
  	struct max1619_data *data = max1619_update_device(dev);
  	return sprintf(buf, "%d
  ", data->alarms);
  }
71062ffcd   Jean Delvare   hwmon: (max1619) ...
168
169
170
171
172
173
174
175
  static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
  			  char *buf)
  {
  	int bitnr = to_sensor_dev_attr(attr)->index;
  	struct max1619_data *data = max1619_update_device(dev);
  	return sprintf(buf, "%d
  ", (data->alarms >> bitnr) & 1);
  }
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
176
177
178
179
180
181
182
183
184
185
186
  static DEVICE_ATTR(temp1_input, S_IRUGO, show_temp_input1, NULL);
  static DEVICE_ATTR(temp2_input, S_IRUGO, show_temp_input2, NULL);
  static DEVICE_ATTR(temp2_min, S_IWUSR | S_IRUGO, show_temp_low2,
  	set_temp_low2);
  static DEVICE_ATTR(temp2_max, S_IWUSR | S_IRUGO, show_temp_high2,
  	set_temp_high2);
  static DEVICE_ATTR(temp2_crit, S_IWUSR | S_IRUGO, show_temp_crit2,
  	set_temp_crit2);
  static DEVICE_ATTR(temp2_crit_hyst, S_IWUSR | S_IRUGO, show_temp_hyst2,
  	set_temp_hyst2);
  static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
71062ffcd   Jean Delvare   hwmon: (max1619) ...
187
188
189
190
  static SENSOR_DEVICE_ATTR(temp2_crit_alarm, S_IRUGO, show_alarm, NULL, 1);
  static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 2);
  static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3);
  static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 4);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
191

a5ebe668a   Jean Delvare   hwmon: Fix unchec...
192
193
194
195
196
197
198
199
200
  static struct attribute *max1619_attributes[] = {
  	&dev_attr_temp1_input.attr,
  	&dev_attr_temp2_input.attr,
  	&dev_attr_temp2_min.attr,
  	&dev_attr_temp2_max.attr,
  	&dev_attr_temp2_crit.attr,
  	&dev_attr_temp2_crit_hyst.attr,
  
  	&dev_attr_alarms.attr,
71062ffcd   Jean Delvare   hwmon: (max1619) ...
201
202
203
204
  	&sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
  	&sensor_dev_attr_temp2_fault.dev_attr.attr,
  	&sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
  	&sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
a5ebe668a   Jean Delvare   hwmon: Fix unchec...
205
206
207
208
209
210
  	NULL
  };
  
  static const struct attribute_group max1619_group = {
  	.attrs = max1619_attributes,
  };
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
211
212
213
  /*
   * Real code
   */
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
214
  /* Return 0 if detection is successful, -ENODEV otherwise */
310ec7921   Jean Delvare   i2c: Drop the kin...
215
  static int max1619_detect(struct i2c_client *client,
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
216
  			  struct i2c_board_info *info)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
217
  {
52df6440a   Jean Delvare   hwmon: Clean up d...
218
219
  	struct i2c_adapter *adapter = client->adapter;
  	u8 reg_config, reg_convrate, reg_status, man_id, chip_id;
b0020e3f5   Andrew Morton   [PATCH] max1619 fix
220

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
221
  	if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
222
  		return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
223

52df6440a   Jean Delvare   hwmon: Clean up d...
224
225
226
227
228
229
230
231
232
233
  	/* detection */
  	reg_config = i2c_smbus_read_byte_data(client, MAX1619_REG_R_CONFIG);
  	reg_convrate = i2c_smbus_read_byte_data(client, MAX1619_REG_R_CONVRATE);
  	reg_status = i2c_smbus_read_byte_data(client, MAX1619_REG_R_STATUS);
  	if ((reg_config & 0x03) != 0x00
  	 || reg_convrate > 0x07 || (reg_status & 0x61) != 0x00) {
  		dev_dbg(&adapter->dev, "MAX1619 detection failed at 0x%02x
  ",
  			client->addr);
  		return -ENODEV;
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
234
  	}
52df6440a   Jean Delvare   hwmon: Clean up d...
235
236
237
238
239
240
241
242
243
  	/* identification */
  	man_id = i2c_smbus_read_byte_data(client, MAX1619_REG_R_MAN_ID);
  	chip_id = i2c_smbus_read_byte_data(client, MAX1619_REG_R_CHIP_ID);
  	if (man_id != 0x4D || chip_id != 0x04) {
  		dev_info(&adapter->dev,
  			 "Unsupported chip (man_id=0x%02X, chip_id=0x%02X).
  ",
  			 man_id, chip_id);
  		return -ENODEV;
b0020e3f5   Andrew Morton   [PATCH] max1619 fix
244
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
245

c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
  	strlcpy(info->type, "max1619", I2C_NAME_SIZE);
  
  	return 0;
  }
  
  static int max1619_probe(struct i2c_client *new_client,
  			 const struct i2c_device_id *id)
  {
  	struct max1619_data *data;
  	int err;
  
  	data = kzalloc(sizeof(struct max1619_data), GFP_KERNEL);
  	if (!data) {
  		err = -ENOMEM;
  		goto exit;
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
262

c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
263
  	i2c_set_clientdata(new_client, data);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
264
  	data->valid = 0;
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
265
  	mutex_init(&data->update_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
266

1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
267
268
269
270
  	/* Initialize the MAX1619 chip */
  	max1619_init_client(new_client);
  
  	/* Register sysfs hooks */
a5ebe668a   Jean Delvare   hwmon: Fix unchec...
271
  	if ((err = sysfs_create_group(&new_client->dev.kobj, &max1619_group)))
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
272
  		goto exit_free;
a5ebe668a   Jean Delvare   hwmon: Fix unchec...
273

1beeffe43   Tony Jones   hwmon: Convert fr...
274
275
276
  	data->hwmon_dev = hwmon_device_register(&new_client->dev);
  	if (IS_ERR(data->hwmon_dev)) {
  		err = PTR_ERR(data->hwmon_dev);
a5ebe668a   Jean Delvare   hwmon: Fix unchec...
277
  		goto exit_remove_files;
943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
278
  	}
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
279
  	return 0;
a5ebe668a   Jean Delvare   hwmon: Fix unchec...
280
281
  exit_remove_files:
  	sysfs_remove_group(&new_client->dev.kobj, &max1619_group);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
  exit_free:
  	kfree(data);
  exit:
  	return err;
  }
  
  static void max1619_init_client(struct i2c_client *client)
  {
  	u8 config;
  
  	/*
  	 * Start the conversions.
  	 */
  	i2c_smbus_write_byte_data(client, MAX1619_REG_W_CONVRATE,
  				  5); /* 2 Hz */
  	config = i2c_smbus_read_byte_data(client, MAX1619_REG_R_CONFIG);
  	if (config & 0x40)
  		i2c_smbus_write_byte_data(client, MAX1619_REG_W_CONFIG,
  					  config & 0xBF); /* run */
  }
c6d3f6fa1   Jean Delvare   hwmon: (max1619) ...
302
  static int max1619_remove(struct i2c_client *client)
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
303
  {
943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
304
  	struct max1619_data *data = i2c_get_clientdata(client);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
305

1beeffe43   Tony Jones   hwmon: Convert fr...
306
  	hwmon_device_unregister(data->hwmon_dev);
a5ebe668a   Jean Delvare   hwmon: Fix unchec...
307
  	sysfs_remove_group(&client->dev.kobj, &max1619_group);
943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
308

943b0830c   Mark M. Hoffman   [PATCH] I2C hwmon...
309
  	kfree(data);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
310
311
312
313
314
315
316
  	return 0;
  }
  
  static struct max1619_data *max1619_update_device(struct device *dev)
  {
  	struct i2c_client *client = to_i2c_client(dev);
  	struct max1619_data *data = i2c_get_clientdata(client);
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
317
  	mutex_lock(&data->update_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
  
  	if (time_after(jiffies, data->last_updated + HZ * 2) || !data->valid) {
  		dev_dbg(&client->dev, "Updating max1619 data.
  ");
  		data->temp_input1 = i2c_smbus_read_byte_data(client,
  					MAX1619_REG_R_LOCAL_TEMP);
  		data->temp_input2 = i2c_smbus_read_byte_data(client,
  					MAX1619_REG_R_REMOTE_TEMP);
  		data->temp_high2 = i2c_smbus_read_byte_data(client,
  					MAX1619_REG_R_REMOTE_HIGH);
  		data->temp_low2 = i2c_smbus_read_byte_data(client,
  					MAX1619_REG_R_REMOTE_LOW);
  		data->temp_crit2 = i2c_smbus_read_byte_data(client,
  					MAX1619_REG_R_REMOTE_CRIT);
  		data->temp_hyst2 = i2c_smbus_read_byte_data(client,
  					MAX1619_REG_R_TCRIT_HYST);
  		data->alarms = i2c_smbus_read_byte_data(client,
  					MAX1619_REG_R_STATUS);
  
  		data->last_updated = jiffies;
  		data->valid = 1;
  	}
9a61bf630   Ingo Molnar   [PATCH] hwmon: Se...
340
  	mutex_unlock(&data->update_lock);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
341
342
343
344
345
346
347
348
349
350
351
352
353
  
  	return data;
  }
  
  static int __init sensors_max1619_init(void)
  {
  	return i2c_add_driver(&max1619_driver);
  }
  
  static void __exit sensors_max1619_exit(void)
  {
  	i2c_del_driver(&max1619_driver);
  }
368609c5a   Jean Delvare   [PATCH] I2C: Miss...
354
  MODULE_AUTHOR("Alexey Fisher <fishor@mail.ru> and "
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
355
356
357
358
359
360
  	"Jean Delvare <khali@linux-fr.org>");
  MODULE_DESCRIPTION("MAX1619 sensor driver");
  MODULE_LICENSE("GPL");
  
  module_init(sensors_max1619_init);
  module_exit(sensors_max1619_exit);