blob: c2dd4ac8042d9aca55269f7d088c9669d0a9ea1c [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * lm63.c - driver for the National Semiconductor LM63 temperature sensor
3 * with integrated fan control
Jean Delvarebc51ae12005-06-05 20:32:27 +02004 * Copyright (C) 2004-2005 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 * Based on the lm90 driver.
6 *
7 * The LM63 is a sensor chip made by National Semiconductor. It measures
8 * two temperatures (its own and one external one) and the speed of one
9 * fan, those speed it can additionally control. Complete datasheet can be
10 * obtained from National's website at:
11 * http://www.national.com/pf/LM/LM63.html
12 *
13 * The LM63 is basically an LM86 with fan speed monitoring and control
14 * capabilities added. It misses some of the LM86 features though:
15 * - No low limit for local temperature.
16 * - No critical limit for local temperature.
17 * - Critical limit for remote temperature can be changed only once. We
18 * will consider that the critical limit is read-only.
19 *
20 * The datasheet isn't very clear about what the tachometer reading is.
21 * I had a explanation from National Semiconductor though. The two lower
22 * bits of the read value have to be masked out. The value is still 16 bit
23 * in width.
24 *
25 * This program is free software; you can redistribute it and/or modify
26 * it under the terms of the GNU General Public License as published by
27 * the Free Software Foundation; either version 2 of the License, or
28 * (at your option) any later version.
29 *
30 * This program is distributed in the hope that it will be useful,
31 * but WITHOUT ANY WARRANTY; without even the implied warranty of
32 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
33 * GNU General Public License for more details.
34 *
35 * You should have received a copy of the GNU General Public License
36 * along with this program; if not, write to the Free Software
37 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
38 */
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/module.h>
41#include <linux/init.h>
42#include <linux/slab.h>
43#include <linux/jiffies.h>
44#include <linux/i2c.h>
Jean Delvare10c08f82005-06-06 19:34:45 +020045#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040046#include <linux/hwmon.h>
47#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070048
49/*
50 * Addresses to scan
51 * Address is fully defined internally and cannot be changed.
52 */
53
54static unsigned short normal_i2c[] = { 0x4c, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
56/*
57 * Insmod parameters
58 */
59
Jean Delvaref4b50262005-07-31 21:49:03 +020060I2C_CLIENT_INSMOD_1(lm63);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/*
63 * The LM63 registers
64 */
65
66#define LM63_REG_CONFIG1 0x03
67#define LM63_REG_CONFIG2 0xBF
68#define LM63_REG_CONFIG_FAN 0x4A
69
70#define LM63_REG_TACH_COUNT_MSB 0x47
71#define LM63_REG_TACH_COUNT_LSB 0x46
72#define LM63_REG_TACH_LIMIT_MSB 0x49
73#define LM63_REG_TACH_LIMIT_LSB 0x48
74
75#define LM63_REG_PWM_VALUE 0x4C
76#define LM63_REG_PWM_FREQ 0x4D
77
78#define LM63_REG_LOCAL_TEMP 0x00
79#define LM63_REG_LOCAL_HIGH 0x05
80
81#define LM63_REG_REMOTE_TEMP_MSB 0x01
82#define LM63_REG_REMOTE_TEMP_LSB 0x10
83#define LM63_REG_REMOTE_OFFSET_MSB 0x11
84#define LM63_REG_REMOTE_OFFSET_LSB 0x12
85#define LM63_REG_REMOTE_HIGH_MSB 0x07
86#define LM63_REG_REMOTE_HIGH_LSB 0x13
87#define LM63_REG_REMOTE_LOW_MSB 0x08
88#define LM63_REG_REMOTE_LOW_LSB 0x14
89#define LM63_REG_REMOTE_TCRIT 0x19
90#define LM63_REG_REMOTE_TCRIT_HYST 0x21
91
92#define LM63_REG_ALERT_STATUS 0x02
93#define LM63_REG_ALERT_MASK 0x16
94
95#define LM63_REG_MAN_ID 0xFE
96#define LM63_REG_CHIP_ID 0xFF
97
98/*
99 * Conversions and various macros
100 * For tachometer counts, the LM63 uses 16-bit values.
101 * For local temperature and high limit, remote critical limit and hysteresis
Steven Cole44bbe872005-05-03 18:21:25 -0600102 * value, it uses signed 8-bit values with LSB = 1 degree Celsius.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103 * For remote temperature, low and high limits, it uses signed 11-bit values
Steven Cole44bbe872005-05-03 18:21:25 -0600104 * with LSB = 0.125 degree Celsius, left-justified in 16-bit registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 */
106
107#define FAN_FROM_REG(reg) ((reg) == 0xFFFC || (reg) == 0 ? 0 : \
108 5400000 / (reg))
109#define FAN_TO_REG(val) ((val) <= 82 ? 0xFFFC : \
110 (5400000 / (val)) & 0xFFFC)
111#define TEMP8_FROM_REG(reg) ((reg) * 1000)
112#define TEMP8_TO_REG(val) ((val) <= -128000 ? -128 : \
113 (val) >= 127000 ? 127 : \
114 (val) < 0 ? ((val) - 500) / 1000 : \
115 ((val) + 500) / 1000)
116#define TEMP11_FROM_REG(reg) ((reg) / 32 * 125)
117#define TEMP11_TO_REG(val) ((val) <= -128000 ? 0x8000 : \
118 (val) >= 127875 ? 0x7FE0 : \
119 (val) < 0 ? ((val) - 62) / 125 * 32 : \
120 ((val) + 62) / 125 * 32)
121#define HYST_TO_REG(val) ((val) <= 0 ? 0 : \
122 (val) >= 127000 ? 127 : \
123 ((val) + 500) / 1000)
124
125/*
126 * Functions declaration
127 */
128
129static int lm63_attach_adapter(struct i2c_adapter *adapter);
130static int lm63_detach_client(struct i2c_client *client);
131
132static struct lm63_data *lm63_update_device(struct device *dev);
133
134static int lm63_detect(struct i2c_adapter *adapter, int address, int kind);
135static void lm63_init_client(struct i2c_client *client);
136
137/*
138 * Driver data (common to all clients)
139 */
140
141static struct i2c_driver lm63_driver = {
142 .owner = THIS_MODULE,
143 .name = "lm63",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144 .attach_adapter = lm63_attach_adapter,
145 .detach_client = lm63_detach_client,
146};
147
148/*
149 * Client data (each client gets its own)
150 */
151
152struct lm63_data {
153 struct i2c_client client;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400154 struct class_device *class_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155 struct semaphore update_lock;
156 char valid; /* zero until following fields are valid */
157 unsigned long last_updated; /* in jiffies */
158
159 /* registers values */
160 u8 config, config_fan;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200161 u16 fan[2]; /* 0: input
162 1: low limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163 u8 pwm1_freq;
164 u8 pwm1_value;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200165 s8 temp8[3]; /* 0: local input
166 1: local high limit
167 2: remote critical limit */
168 s16 temp11[3]; /* 0: remote input
169 1: remote low limit
170 2: remote high limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171 u8 temp2_crit_hyst;
172 u8 alarms;
173};
174
175/*
176 * Sysfs callback functions and files
177 */
178
Jean Delvarebc51ae12005-06-05 20:32:27 +0200179static ssize_t show_fan(struct device *dev, struct device_attribute *devattr,
180 char *buf)
181{
182 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
183 struct lm63_data *data = lm63_update_device(dev);
184 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700186
Jean Delvarebc51ae12005-06-05 20:32:27 +0200187static ssize_t set_fan(struct device *dev, struct device_attribute *dummy,
188 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189{
190 struct i2c_client *client = to_i2c_client(dev);
191 struct lm63_data *data = i2c_get_clientdata(client);
192 unsigned long val = simple_strtoul(buf, NULL, 10);
193
194 down(&data->update_lock);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200195 data->fan[1] = FAN_TO_REG(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196 i2c_smbus_write_byte_data(client, LM63_REG_TACH_LIMIT_LSB,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200197 data->fan[1] & 0xFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198 i2c_smbus_write_byte_data(client, LM63_REG_TACH_LIMIT_MSB,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200199 data->fan[1] >> 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200 up(&data->update_lock);
201 return count;
202}
203
Jean Delvarebc51ae12005-06-05 20:32:27 +0200204static ssize_t show_pwm1(struct device *dev, struct device_attribute *dummy,
205 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 struct lm63_data *data = lm63_update_device(dev);
208 return sprintf(buf, "%d\n", data->pwm1_value >= 2 * data->pwm1_freq ?
209 255 : (data->pwm1_value * 255 + data->pwm1_freq) /
210 (2 * data->pwm1_freq));
211}
212
Jean Delvarebc51ae12005-06-05 20:32:27 +0200213static ssize_t set_pwm1(struct device *dev, struct device_attribute *dummy,
214 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700215{
216 struct i2c_client *client = to_i2c_client(dev);
217 struct lm63_data *data = i2c_get_clientdata(client);
218 unsigned long val;
219
220 if (!(data->config_fan & 0x20)) /* register is read-only */
221 return -EPERM;
222
223 val = simple_strtoul(buf, NULL, 10);
224 down(&data->update_lock);
225 data->pwm1_value = val <= 0 ? 0 :
226 val >= 255 ? 2 * data->pwm1_freq :
227 (val * data->pwm1_freq * 2 + 127) / 255;
228 i2c_smbus_write_byte_data(client, LM63_REG_PWM_VALUE, data->pwm1_value);
229 up(&data->update_lock);
230 return count;
231}
232
Jean Delvarebc51ae12005-06-05 20:32:27 +0200233static ssize_t show_pwm1_enable(struct device *dev, struct device_attribute *dummy,
234 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235{
236 struct lm63_data *data = lm63_update_device(dev);
237 return sprintf(buf, "%d\n", data->config_fan & 0x20 ? 1 : 2);
238}
239
Jean Delvarebc51ae12005-06-05 20:32:27 +0200240static ssize_t show_temp8(struct device *dev, struct device_attribute *devattr,
241 char *buf)
242{
243 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
244 struct lm63_data *data = lm63_update_device(dev);
245 return sprintf(buf, "%d\n", TEMP8_FROM_REG(data->temp8[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Jean Delvarebc51ae12005-06-05 20:32:27 +0200248static ssize_t set_temp8(struct device *dev, struct device_attribute *dummy,
249 const char *buf, size_t count)
250{
251 struct i2c_client *client = to_i2c_client(dev);
252 struct lm63_data *data = i2c_get_clientdata(client);
253 long val = simple_strtol(buf, NULL, 10);
254
255 down(&data->update_lock);
256 data->temp8[1] = TEMP8_TO_REG(val);
257 i2c_smbus_write_byte_data(client, LM63_REG_LOCAL_HIGH, data->temp8[1]);
258 up(&data->update_lock);
259 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
Jean Delvarebc51ae12005-06-05 20:32:27 +0200261
262static ssize_t show_temp11(struct device *dev, struct device_attribute *devattr,
263 char *buf)
264{
265 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
266 struct lm63_data *data = lm63_update_device(dev);
267 return sprintf(buf, "%d\n", TEMP11_FROM_REG(data->temp11[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268}
Jean Delvarebc51ae12005-06-05 20:32:27 +0200269
270static ssize_t set_temp11(struct device *dev, struct device_attribute *devattr,
271 const char *buf, size_t count)
272{
273 static const u8 reg[4] = {
274 LM63_REG_REMOTE_LOW_MSB,
275 LM63_REG_REMOTE_LOW_LSB,
276 LM63_REG_REMOTE_HIGH_MSB,
277 LM63_REG_REMOTE_HIGH_LSB,
278 };
279
280 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
281 struct i2c_client *client = to_i2c_client(dev);
282 struct lm63_data *data = i2c_get_clientdata(client);
283 long val = simple_strtol(buf, NULL, 10);
284 int nr = attr->index;
285
286 down(&data->update_lock);
287 data->temp11[nr] = TEMP11_TO_REG(val);
288 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2],
289 data->temp11[nr] >> 8);
290 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2 + 1],
291 data->temp11[nr] & 0xff);
292 up(&data->update_lock);
293 return count;
294}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295
296/* Hysteresis register holds a relative value, while we want to present
297 an absolute to user-space */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200298static ssize_t show_temp2_crit_hyst(struct device *dev, struct device_attribute *dummy,
299 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300{
301 struct lm63_data *data = lm63_update_device(dev);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200302 return sprintf(buf, "%d\n", TEMP8_FROM_REG(data->temp8[2])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 - TEMP8_FROM_REG(data->temp2_crit_hyst));
304}
305
306/* And now the other way around, user-space provides an absolute
307 hysteresis value and we have to store a relative one */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200308static ssize_t set_temp2_crit_hyst(struct device *dev, struct device_attribute *dummy,
309 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310{
311 struct i2c_client *client = to_i2c_client(dev);
312 struct lm63_data *data = i2c_get_clientdata(client);
313 long val = simple_strtol(buf, NULL, 10);
314 long hyst;
315
316 down(&data->update_lock);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200317 hyst = TEMP8_FROM_REG(data->temp8[2]) - val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 i2c_smbus_write_byte_data(client, LM63_REG_REMOTE_TCRIT_HYST,
319 HYST_TO_REG(hyst));
320 up(&data->update_lock);
321 return count;
322}
323
Jean Delvarebc51ae12005-06-05 20:32:27 +0200324static ssize_t show_alarms(struct device *dev, struct device_attribute *dummy,
325 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326{
327 struct lm63_data *data = lm63_update_device(dev);
328 return sprintf(buf, "%u\n", data->alarms);
329}
330
Jean Delvarebc51ae12005-06-05 20:32:27 +0200331static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0);
332static SENSOR_DEVICE_ATTR(fan1_min, S_IWUSR | S_IRUGO, show_fan,
333 set_fan, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334
335static DEVICE_ATTR(pwm1, S_IWUSR | S_IRUGO, show_pwm1, set_pwm1);
336static DEVICE_ATTR(pwm1_enable, S_IRUGO, show_pwm1_enable, NULL);
337
Jean Delvarebc51ae12005-06-05 20:32:27 +0200338static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp8, NULL, 0);
339static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp8,
340 set_temp8, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Jean Delvarebc51ae12005-06-05 20:32:27 +0200342static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp11, NULL, 0);
343static SENSOR_DEVICE_ATTR(temp2_min, S_IWUSR | S_IRUGO, show_temp11,
344 set_temp11, 1);
345static SENSOR_DEVICE_ATTR(temp2_max, S_IWUSR | S_IRUGO, show_temp11,
346 set_temp11, 2);
347static SENSOR_DEVICE_ATTR(temp2_crit, S_IRUGO, show_temp8, NULL, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348static DEVICE_ATTR(temp2_crit_hyst, S_IWUSR | S_IRUGO, show_temp2_crit_hyst,
349 set_temp2_crit_hyst);
350
351static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
352
353/*
354 * Real code
355 */
356
357static int lm63_attach_adapter(struct i2c_adapter *adapter)
358{
359 if (!(adapter->class & I2C_CLASS_HWMON))
360 return 0;
Jean Delvare2ed2dc32005-07-31 21:42:02 +0200361 return i2c_probe(adapter, &addr_data, lm63_detect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
363
364/*
365 * The following function does more than just detection. If detection
366 * succeeds, it also registers the new chip.
367 */
368static int lm63_detect(struct i2c_adapter *adapter, int address, int kind)
369{
370 struct i2c_client *new_client;
371 struct lm63_data *data;
372 int err = 0;
373
374 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
375 goto exit;
376
Deepak Saxenaba9c2e82005-10-17 23:08:32 +0200377 if (!(data = kzalloc(sizeof(struct lm63_data), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 err = -ENOMEM;
379 goto exit;
380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
382 /* The common I2C client data is placed right before the
383 LM63-specific data. */
384 new_client = &data->client;
385 i2c_set_clientdata(new_client, data);
386 new_client->addr = address;
387 new_client->adapter = adapter;
388 new_client->driver = &lm63_driver;
389 new_client->flags = 0;
390
391 /* Default to an LM63 if forced */
392 if (kind == 0)
393 kind = lm63;
394
395 if (kind < 0) { /* must identify */
396 u8 man_id, chip_id, reg_config1, reg_config2;
397 u8 reg_alert_status, reg_alert_mask;
398
399 man_id = i2c_smbus_read_byte_data(new_client,
400 LM63_REG_MAN_ID);
401 chip_id = i2c_smbus_read_byte_data(new_client,
402 LM63_REG_CHIP_ID);
403 reg_config1 = i2c_smbus_read_byte_data(new_client,
404 LM63_REG_CONFIG1);
405 reg_config2 = i2c_smbus_read_byte_data(new_client,
406 LM63_REG_CONFIG2);
407 reg_alert_status = i2c_smbus_read_byte_data(new_client,
408 LM63_REG_ALERT_STATUS);
409 reg_alert_mask = i2c_smbus_read_byte_data(new_client,
410 LM63_REG_ALERT_MASK);
411
412 if (man_id == 0x01 /* National Semiconductor */
413 && chip_id == 0x41 /* LM63 */
414 && (reg_config1 & 0x18) == 0x00
415 && (reg_config2 & 0xF8) == 0x00
416 && (reg_alert_status & 0x20) == 0x00
417 && (reg_alert_mask & 0xA4) == 0xA4) {
418 kind = lm63;
419 } else { /* failed */
420 dev_dbg(&adapter->dev, "Unsupported chip "
421 "(man_id=0x%02X, chip_id=0x%02X).\n",
422 man_id, chip_id);
423 goto exit_free;
424 }
425 }
426
427 strlcpy(new_client->name, "lm63", I2C_NAME_SIZE);
428 data->valid = 0;
429 init_MUTEX(&data->update_lock);
430
431 /* Tell the I2C layer a new client has arrived */
432 if ((err = i2c_attach_client(new_client)))
433 goto exit_free;
434
435 /* Initialize the LM63 chip */
436 lm63_init_client(new_client);
437
438 /* Register sysfs hooks */
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400439 data->class_dev = hwmon_device_register(&new_client->dev);
440 if (IS_ERR(data->class_dev)) {
441 err = PTR_ERR(data->class_dev);
442 goto exit_detach;
443 }
444
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445 if (data->config & 0x04) { /* tachometer enabled */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200446 device_create_file(&new_client->dev,
447 &sensor_dev_attr_fan1_input.dev_attr);
448 device_create_file(&new_client->dev,
449 &sensor_dev_attr_fan1_min.dev_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450 }
451 device_create_file(&new_client->dev, &dev_attr_pwm1);
452 device_create_file(&new_client->dev, &dev_attr_pwm1_enable);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200453 device_create_file(&new_client->dev,
454 &sensor_dev_attr_temp1_input.dev_attr);
455 device_create_file(&new_client->dev,
456 &sensor_dev_attr_temp2_input.dev_attr);
457 device_create_file(&new_client->dev,
458 &sensor_dev_attr_temp2_min.dev_attr);
459 device_create_file(&new_client->dev,
460 &sensor_dev_attr_temp1_max.dev_attr);
461 device_create_file(&new_client->dev,
462 &sensor_dev_attr_temp2_max.dev_attr);
463 device_create_file(&new_client->dev,
464 &sensor_dev_attr_temp2_crit.dev_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465 device_create_file(&new_client->dev, &dev_attr_temp2_crit_hyst);
466 device_create_file(&new_client->dev, &dev_attr_alarms);
467
468 return 0;
469
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400470exit_detach:
471 i2c_detach_client(new_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700472exit_free:
473 kfree(data);
474exit:
475 return err;
476}
477
478/* Idealy we shouldn't have to initialize anything, since the BIOS
479 should have taken care of everything */
480static void lm63_init_client(struct i2c_client *client)
481{
482 struct lm63_data *data = i2c_get_clientdata(client);
483
484 data->config = i2c_smbus_read_byte_data(client, LM63_REG_CONFIG1);
485 data->config_fan = i2c_smbus_read_byte_data(client,
486 LM63_REG_CONFIG_FAN);
487
488 /* Start converting if needed */
489 if (data->config & 0x40) { /* standby */
490 dev_dbg(&client->dev, "Switching to operational mode");
491 data->config &= 0xA7;
492 i2c_smbus_write_byte_data(client, LM63_REG_CONFIG1,
493 data->config);
494 }
495
496 /* We may need pwm1_freq before ever updating the client data */
497 data->pwm1_freq = i2c_smbus_read_byte_data(client, LM63_REG_PWM_FREQ);
498 if (data->pwm1_freq == 0)
499 data->pwm1_freq = 1;
500
501 /* Show some debug info about the LM63 configuration */
502 dev_dbg(&client->dev, "Alert/tach pin configured for %s\n",
503 (data->config & 0x04) ? "tachometer input" :
504 "alert output");
505 dev_dbg(&client->dev, "PWM clock %s kHz, output frequency %u Hz\n",
506 (data->config_fan & 0x08) ? "1.4" : "360",
507 ((data->config_fan & 0x08) ? 700 : 180000) / data->pwm1_freq);
508 dev_dbg(&client->dev, "PWM output active %s, %s mode\n",
509 (data->config_fan & 0x10) ? "low" : "high",
510 (data->config_fan & 0x20) ? "manual" : "auto");
511}
512
513static int lm63_detach_client(struct i2c_client *client)
514{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400515 struct lm63_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 int err;
517
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400518 hwmon_device_unregister(data->class_dev);
519
Jean Delvare7bef5592005-07-27 22:14:49 +0200520 if ((err = i2c_detach_client(client)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400523 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 return 0;
525}
526
527static struct lm63_data *lm63_update_device(struct device *dev)
528{
529 struct i2c_client *client = to_i2c_client(dev);
530 struct lm63_data *data = i2c_get_clientdata(client);
531
532 down(&data->update_lock);
533
534 if (time_after(jiffies, data->last_updated + HZ) || !data->valid) {
535 if (data->config & 0x04) { /* tachometer enabled */
536 /* order matters for fan1_input */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200537 data->fan[0] = i2c_smbus_read_byte_data(client,
538 LM63_REG_TACH_COUNT_LSB) & 0xFC;
539 data->fan[0] |= i2c_smbus_read_byte_data(client,
540 LM63_REG_TACH_COUNT_MSB) << 8;
541 data->fan[1] = (i2c_smbus_read_byte_data(client,
542 LM63_REG_TACH_LIMIT_LSB) & 0xFC)
543 | (i2c_smbus_read_byte_data(client,
544 LM63_REG_TACH_LIMIT_MSB) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545 }
546
547 data->pwm1_freq = i2c_smbus_read_byte_data(client,
548 LM63_REG_PWM_FREQ);
549 if (data->pwm1_freq == 0)
550 data->pwm1_freq = 1;
551 data->pwm1_value = i2c_smbus_read_byte_data(client,
552 LM63_REG_PWM_VALUE);
553
Jean Delvarebc51ae12005-06-05 20:32:27 +0200554 data->temp8[0] = i2c_smbus_read_byte_data(client,
555 LM63_REG_LOCAL_TEMP);
556 data->temp8[1] = i2c_smbus_read_byte_data(client,
557 LM63_REG_LOCAL_HIGH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558
559 /* order matters for temp2_input */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200560 data->temp11[0] = i2c_smbus_read_byte_data(client,
561 LM63_REG_REMOTE_TEMP_MSB) << 8;
562 data->temp11[0] |= i2c_smbus_read_byte_data(client,
563 LM63_REG_REMOTE_TEMP_LSB);
564 data->temp11[1] = (i2c_smbus_read_byte_data(client,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565 LM63_REG_REMOTE_LOW_MSB) << 8)
566 | i2c_smbus_read_byte_data(client,
567 LM63_REG_REMOTE_LOW_LSB);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200568 data->temp11[2] = (i2c_smbus_read_byte_data(client,
569 LM63_REG_REMOTE_HIGH_MSB) << 8)
570 | i2c_smbus_read_byte_data(client,
571 LM63_REG_REMOTE_HIGH_LSB);
572 data->temp8[2] = i2c_smbus_read_byte_data(client,
573 LM63_REG_REMOTE_TCRIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700574 data->temp2_crit_hyst = i2c_smbus_read_byte_data(client,
575 LM63_REG_REMOTE_TCRIT_HYST);
576
577 data->alarms = i2c_smbus_read_byte_data(client,
578 LM63_REG_ALERT_STATUS) & 0x7F;
579
580 data->last_updated = jiffies;
581 data->valid = 1;
582 }
583
584 up(&data->update_lock);
585
586 return data;
587}
588
589static int __init sensors_lm63_init(void)
590{
591 return i2c_add_driver(&lm63_driver);
592}
593
594static void __exit sensors_lm63_exit(void)
595{
596 i2c_del_driver(&lm63_driver);
597}
598
599MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
600MODULE_DESCRIPTION("LM63 driver");
601MODULE_LICENSE("GPL");
602
603module_init(sensors_lm63_init);
604module_exit(sensors_lm63_exit);