blob: cba0a40ad667788e2054cffd024bccf948fe1cb3 [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>
45#include <linux/i2c-sensor.h>
Jean Delvare10c08f82005-06-06 19:34:45 +020046#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040047#include <linux/hwmon.h>
48#include <linux/err.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070049
50/*
51 * Addresses to scan
52 * Address is fully defined internally and cannot be changed.
53 */
54
55static unsigned short normal_i2c[] = { 0x4c, I2C_CLIENT_END };
56static unsigned int normal_isa[] = { I2C_CLIENT_ISA_END };
57
58/*
59 * Insmod parameters
60 */
61
62SENSORS_INSMOD_1(lm63);
63
64/*
65 * The LM63 registers
66 */
67
68#define LM63_REG_CONFIG1 0x03
69#define LM63_REG_CONFIG2 0xBF
70#define LM63_REG_CONFIG_FAN 0x4A
71
72#define LM63_REG_TACH_COUNT_MSB 0x47
73#define LM63_REG_TACH_COUNT_LSB 0x46
74#define LM63_REG_TACH_LIMIT_MSB 0x49
75#define LM63_REG_TACH_LIMIT_LSB 0x48
76
77#define LM63_REG_PWM_VALUE 0x4C
78#define LM63_REG_PWM_FREQ 0x4D
79
80#define LM63_REG_LOCAL_TEMP 0x00
81#define LM63_REG_LOCAL_HIGH 0x05
82
83#define LM63_REG_REMOTE_TEMP_MSB 0x01
84#define LM63_REG_REMOTE_TEMP_LSB 0x10
85#define LM63_REG_REMOTE_OFFSET_MSB 0x11
86#define LM63_REG_REMOTE_OFFSET_LSB 0x12
87#define LM63_REG_REMOTE_HIGH_MSB 0x07
88#define LM63_REG_REMOTE_HIGH_LSB 0x13
89#define LM63_REG_REMOTE_LOW_MSB 0x08
90#define LM63_REG_REMOTE_LOW_LSB 0x14
91#define LM63_REG_REMOTE_TCRIT 0x19
92#define LM63_REG_REMOTE_TCRIT_HYST 0x21
93
94#define LM63_REG_ALERT_STATUS 0x02
95#define LM63_REG_ALERT_MASK 0x16
96
97#define LM63_REG_MAN_ID 0xFE
98#define LM63_REG_CHIP_ID 0xFF
99
100/*
101 * Conversions and various macros
102 * For tachometer counts, the LM63 uses 16-bit values.
103 * For local temperature and high limit, remote critical limit and hysteresis
Steven Cole44bbe872005-05-03 18:21:25 -0600104 * value, it uses signed 8-bit values with LSB = 1 degree Celsius.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105 * For remote temperature, low and high limits, it uses signed 11-bit values
Steven Cole44bbe872005-05-03 18:21:25 -0600106 * with LSB = 0.125 degree Celsius, left-justified in 16-bit registers.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 */
108
109#define FAN_FROM_REG(reg) ((reg) == 0xFFFC || (reg) == 0 ? 0 : \
110 5400000 / (reg))
111#define FAN_TO_REG(val) ((val) <= 82 ? 0xFFFC : \
112 (5400000 / (val)) & 0xFFFC)
113#define TEMP8_FROM_REG(reg) ((reg) * 1000)
114#define TEMP8_TO_REG(val) ((val) <= -128000 ? -128 : \
115 (val) >= 127000 ? 127 : \
116 (val) < 0 ? ((val) - 500) / 1000 : \
117 ((val) + 500) / 1000)
118#define TEMP11_FROM_REG(reg) ((reg) / 32 * 125)
119#define TEMP11_TO_REG(val) ((val) <= -128000 ? 0x8000 : \
120 (val) >= 127875 ? 0x7FE0 : \
121 (val) < 0 ? ((val) - 62) / 125 * 32 : \
122 ((val) + 62) / 125 * 32)
123#define HYST_TO_REG(val) ((val) <= 0 ? 0 : \
124 (val) >= 127000 ? 127 : \
125 ((val) + 500) / 1000)
126
127/*
128 * Functions declaration
129 */
130
131static int lm63_attach_adapter(struct i2c_adapter *adapter);
132static int lm63_detach_client(struct i2c_client *client);
133
134static struct lm63_data *lm63_update_device(struct device *dev);
135
136static int lm63_detect(struct i2c_adapter *adapter, int address, int kind);
137static void lm63_init_client(struct i2c_client *client);
138
139/*
140 * Driver data (common to all clients)
141 */
142
143static struct i2c_driver lm63_driver = {
144 .owner = THIS_MODULE,
145 .name = "lm63",
146 .flags = I2C_DF_NOTIFY,
147 .attach_adapter = lm63_attach_adapter,
148 .detach_client = lm63_detach_client,
149};
150
151/*
152 * Client data (each client gets its own)
153 */
154
155struct lm63_data {
156 struct i2c_client client;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400157 struct class_device *class_dev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 struct semaphore update_lock;
159 char valid; /* zero until following fields are valid */
160 unsigned long last_updated; /* in jiffies */
161
162 /* registers values */
163 u8 config, config_fan;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200164 u16 fan[2]; /* 0: input
165 1: low limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166 u8 pwm1_freq;
167 u8 pwm1_value;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200168 s8 temp8[3]; /* 0: local input
169 1: local high limit
170 2: remote critical limit */
171 s16 temp11[3]; /* 0: remote input
172 1: remote low limit
173 2: remote high limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 u8 temp2_crit_hyst;
175 u8 alarms;
176};
177
178/*
179 * Sysfs callback functions and files
180 */
181
Jean Delvarebc51ae12005-06-05 20:32:27 +0200182static ssize_t show_fan(struct device *dev, struct device_attribute *devattr,
183 char *buf)
184{
185 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
186 struct lm63_data *data = lm63_update_device(dev);
187 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700189
Jean Delvarebc51ae12005-06-05 20:32:27 +0200190static ssize_t set_fan(struct device *dev, struct device_attribute *dummy,
191 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700192{
193 struct i2c_client *client = to_i2c_client(dev);
194 struct lm63_data *data = i2c_get_clientdata(client);
195 unsigned long val = simple_strtoul(buf, NULL, 10);
196
197 down(&data->update_lock);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200198 data->fan[1] = FAN_TO_REG(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 i2c_smbus_write_byte_data(client, LM63_REG_TACH_LIMIT_LSB,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200200 data->fan[1] & 0xFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 i2c_smbus_write_byte_data(client, LM63_REG_TACH_LIMIT_MSB,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200202 data->fan[1] >> 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 up(&data->update_lock);
204 return count;
205}
206
Jean Delvarebc51ae12005-06-05 20:32:27 +0200207static ssize_t show_pwm1(struct device *dev, struct device_attribute *dummy,
208 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209{
210 struct lm63_data *data = lm63_update_device(dev);
211 return sprintf(buf, "%d\n", data->pwm1_value >= 2 * data->pwm1_freq ?
212 255 : (data->pwm1_value * 255 + data->pwm1_freq) /
213 (2 * data->pwm1_freq));
214}
215
Jean Delvarebc51ae12005-06-05 20:32:27 +0200216static ssize_t set_pwm1(struct device *dev, struct device_attribute *dummy,
217 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218{
219 struct i2c_client *client = to_i2c_client(dev);
220 struct lm63_data *data = i2c_get_clientdata(client);
221 unsigned long val;
222
223 if (!(data->config_fan & 0x20)) /* register is read-only */
224 return -EPERM;
225
226 val = simple_strtoul(buf, NULL, 10);
227 down(&data->update_lock);
228 data->pwm1_value = val <= 0 ? 0 :
229 val >= 255 ? 2 * data->pwm1_freq :
230 (val * data->pwm1_freq * 2 + 127) / 255;
231 i2c_smbus_write_byte_data(client, LM63_REG_PWM_VALUE, data->pwm1_value);
232 up(&data->update_lock);
233 return count;
234}
235
Jean Delvarebc51ae12005-06-05 20:32:27 +0200236static ssize_t show_pwm1_enable(struct device *dev, struct device_attribute *dummy,
237 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238{
239 struct lm63_data *data = lm63_update_device(dev);
240 return sprintf(buf, "%d\n", data->config_fan & 0x20 ? 1 : 2);
241}
242
Jean Delvarebc51ae12005-06-05 20:32:27 +0200243static ssize_t show_temp8(struct device *dev, struct device_attribute *devattr,
244 char *buf)
245{
246 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
247 struct lm63_data *data = lm63_update_device(dev);
248 return sprintf(buf, "%d\n", TEMP8_FROM_REG(data->temp8[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700249}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Jean Delvarebc51ae12005-06-05 20:32:27 +0200251static ssize_t set_temp8(struct device *dev, struct device_attribute *dummy,
252 const char *buf, size_t count)
253{
254 struct i2c_client *client = to_i2c_client(dev);
255 struct lm63_data *data = i2c_get_clientdata(client);
256 long val = simple_strtol(buf, NULL, 10);
257
258 down(&data->update_lock);
259 data->temp8[1] = TEMP8_TO_REG(val);
260 i2c_smbus_write_byte_data(client, LM63_REG_LOCAL_HIGH, data->temp8[1]);
261 up(&data->update_lock);
262 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263}
Jean Delvarebc51ae12005-06-05 20:32:27 +0200264
265static ssize_t show_temp11(struct device *dev, struct device_attribute *devattr,
266 char *buf)
267{
268 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
269 struct lm63_data *data = lm63_update_device(dev);
270 return sprintf(buf, "%d\n", TEMP11_FROM_REG(data->temp11[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271}
Jean Delvarebc51ae12005-06-05 20:32:27 +0200272
273static ssize_t set_temp11(struct device *dev, struct device_attribute *devattr,
274 const char *buf, size_t count)
275{
276 static const u8 reg[4] = {
277 LM63_REG_REMOTE_LOW_MSB,
278 LM63_REG_REMOTE_LOW_LSB,
279 LM63_REG_REMOTE_HIGH_MSB,
280 LM63_REG_REMOTE_HIGH_LSB,
281 };
282
283 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
284 struct i2c_client *client = to_i2c_client(dev);
285 struct lm63_data *data = i2c_get_clientdata(client);
286 long val = simple_strtol(buf, NULL, 10);
287 int nr = attr->index;
288
289 down(&data->update_lock);
290 data->temp11[nr] = TEMP11_TO_REG(val);
291 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2],
292 data->temp11[nr] >> 8);
293 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2 + 1],
294 data->temp11[nr] & 0xff);
295 up(&data->update_lock);
296 return count;
297}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298
299/* Hysteresis register holds a relative value, while we want to present
300 an absolute to user-space */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200301static ssize_t show_temp2_crit_hyst(struct device *dev, struct device_attribute *dummy,
302 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 struct lm63_data *data = lm63_update_device(dev);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200305 return sprintf(buf, "%d\n", TEMP8_FROM_REG(data->temp8[2])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306 - TEMP8_FROM_REG(data->temp2_crit_hyst));
307}
308
309/* And now the other way around, user-space provides an absolute
310 hysteresis value and we have to store a relative one */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200311static ssize_t set_temp2_crit_hyst(struct device *dev, struct device_attribute *dummy,
312 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313{
314 struct i2c_client *client = to_i2c_client(dev);
315 struct lm63_data *data = i2c_get_clientdata(client);
316 long val = simple_strtol(buf, NULL, 10);
317 long hyst;
318
319 down(&data->update_lock);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200320 hyst = TEMP8_FROM_REG(data->temp8[2]) - val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 i2c_smbus_write_byte_data(client, LM63_REG_REMOTE_TCRIT_HYST,
322 HYST_TO_REG(hyst));
323 up(&data->update_lock);
324 return count;
325}
326
Jean Delvarebc51ae12005-06-05 20:32:27 +0200327static ssize_t show_alarms(struct device *dev, struct device_attribute *dummy,
328 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329{
330 struct lm63_data *data = lm63_update_device(dev);
331 return sprintf(buf, "%u\n", data->alarms);
332}
333
Jean Delvarebc51ae12005-06-05 20:32:27 +0200334static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0);
335static SENSOR_DEVICE_ATTR(fan1_min, S_IWUSR | S_IRUGO, show_fan,
336 set_fan, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700337
338static DEVICE_ATTR(pwm1, S_IWUSR | S_IRUGO, show_pwm1, set_pwm1);
339static DEVICE_ATTR(pwm1_enable, S_IRUGO, show_pwm1_enable, NULL);
340
Jean Delvarebc51ae12005-06-05 20:32:27 +0200341static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp8, NULL, 0);
342static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp8,
343 set_temp8, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
Jean Delvarebc51ae12005-06-05 20:32:27 +0200345static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp11, NULL, 0);
346static SENSOR_DEVICE_ATTR(temp2_min, S_IWUSR | S_IRUGO, show_temp11,
347 set_temp11, 1);
348static SENSOR_DEVICE_ATTR(temp2_max, S_IWUSR | S_IRUGO, show_temp11,
349 set_temp11, 2);
350static SENSOR_DEVICE_ATTR(temp2_crit, S_IRUGO, show_temp8, NULL, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351static DEVICE_ATTR(temp2_crit_hyst, S_IWUSR | S_IRUGO, show_temp2_crit_hyst,
352 set_temp2_crit_hyst);
353
354static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
355
356/*
357 * Real code
358 */
359
360static int lm63_attach_adapter(struct i2c_adapter *adapter)
361{
362 if (!(adapter->class & I2C_CLASS_HWMON))
363 return 0;
364 return i2c_detect(adapter, &addr_data, lm63_detect);
365}
366
367/*
368 * The following function does more than just detection. If detection
369 * succeeds, it also registers the new chip.
370 */
371static int lm63_detect(struct i2c_adapter *adapter, int address, int kind)
372{
373 struct i2c_client *new_client;
374 struct lm63_data *data;
375 int err = 0;
376
377 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
378 goto exit;
379
380 if (!(data = kmalloc(sizeof(struct lm63_data), GFP_KERNEL))) {
381 err = -ENOMEM;
382 goto exit;
383 }
384 memset(data, 0, sizeof(struct lm63_data));
385
386 /* The common I2C client data is placed right before the
387 LM63-specific data. */
388 new_client = &data->client;
389 i2c_set_clientdata(new_client, data);
390 new_client->addr = address;
391 new_client->adapter = adapter;
392 new_client->driver = &lm63_driver;
393 new_client->flags = 0;
394
395 /* Default to an LM63 if forced */
396 if (kind == 0)
397 kind = lm63;
398
399 if (kind < 0) { /* must identify */
400 u8 man_id, chip_id, reg_config1, reg_config2;
401 u8 reg_alert_status, reg_alert_mask;
402
403 man_id = i2c_smbus_read_byte_data(new_client,
404 LM63_REG_MAN_ID);
405 chip_id = i2c_smbus_read_byte_data(new_client,
406 LM63_REG_CHIP_ID);
407 reg_config1 = i2c_smbus_read_byte_data(new_client,
408 LM63_REG_CONFIG1);
409 reg_config2 = i2c_smbus_read_byte_data(new_client,
410 LM63_REG_CONFIG2);
411 reg_alert_status = i2c_smbus_read_byte_data(new_client,
412 LM63_REG_ALERT_STATUS);
413 reg_alert_mask = i2c_smbus_read_byte_data(new_client,
414 LM63_REG_ALERT_MASK);
415
416 if (man_id == 0x01 /* National Semiconductor */
417 && chip_id == 0x41 /* LM63 */
418 && (reg_config1 & 0x18) == 0x00
419 && (reg_config2 & 0xF8) == 0x00
420 && (reg_alert_status & 0x20) == 0x00
421 && (reg_alert_mask & 0xA4) == 0xA4) {
422 kind = lm63;
423 } else { /* failed */
424 dev_dbg(&adapter->dev, "Unsupported chip "
425 "(man_id=0x%02X, chip_id=0x%02X).\n",
426 man_id, chip_id);
427 goto exit_free;
428 }
429 }
430
431 strlcpy(new_client->name, "lm63", I2C_NAME_SIZE);
432 data->valid = 0;
433 init_MUTEX(&data->update_lock);
434
435 /* Tell the I2C layer a new client has arrived */
436 if ((err = i2c_attach_client(new_client)))
437 goto exit_free;
438
439 /* Initialize the LM63 chip */
440 lm63_init_client(new_client);
441
442 /* Register sysfs hooks */
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400443 data->class_dev = hwmon_device_register(&new_client->dev);
444 if (IS_ERR(data->class_dev)) {
445 err = PTR_ERR(data->class_dev);
446 goto exit_detach;
447 }
448
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 if (data->config & 0x04) { /* tachometer enabled */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200450 device_create_file(&new_client->dev,
451 &sensor_dev_attr_fan1_input.dev_attr);
452 device_create_file(&new_client->dev,
453 &sensor_dev_attr_fan1_min.dev_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454 }
455 device_create_file(&new_client->dev, &dev_attr_pwm1);
456 device_create_file(&new_client->dev, &dev_attr_pwm1_enable);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200457 device_create_file(&new_client->dev,
458 &sensor_dev_attr_temp1_input.dev_attr);
459 device_create_file(&new_client->dev,
460 &sensor_dev_attr_temp2_input.dev_attr);
461 device_create_file(&new_client->dev,
462 &sensor_dev_attr_temp2_min.dev_attr);
463 device_create_file(&new_client->dev,
464 &sensor_dev_attr_temp1_max.dev_attr);
465 device_create_file(&new_client->dev,
466 &sensor_dev_attr_temp2_max.dev_attr);
467 device_create_file(&new_client->dev,
468 &sensor_dev_attr_temp2_crit.dev_attr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469 device_create_file(&new_client->dev, &dev_attr_temp2_crit_hyst);
470 device_create_file(&new_client->dev, &dev_attr_alarms);
471
472 return 0;
473
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400474exit_detach:
475 i2c_detach_client(new_client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700476exit_free:
477 kfree(data);
478exit:
479 return err;
480}
481
482/* Idealy we shouldn't have to initialize anything, since the BIOS
483 should have taken care of everything */
484static void lm63_init_client(struct i2c_client *client)
485{
486 struct lm63_data *data = i2c_get_clientdata(client);
487
488 data->config = i2c_smbus_read_byte_data(client, LM63_REG_CONFIG1);
489 data->config_fan = i2c_smbus_read_byte_data(client,
490 LM63_REG_CONFIG_FAN);
491
492 /* Start converting if needed */
493 if (data->config & 0x40) { /* standby */
494 dev_dbg(&client->dev, "Switching to operational mode");
495 data->config &= 0xA7;
496 i2c_smbus_write_byte_data(client, LM63_REG_CONFIG1,
497 data->config);
498 }
499
500 /* We may need pwm1_freq before ever updating the client data */
501 data->pwm1_freq = i2c_smbus_read_byte_data(client, LM63_REG_PWM_FREQ);
502 if (data->pwm1_freq == 0)
503 data->pwm1_freq = 1;
504
505 /* Show some debug info about the LM63 configuration */
506 dev_dbg(&client->dev, "Alert/tach pin configured for %s\n",
507 (data->config & 0x04) ? "tachometer input" :
508 "alert output");
509 dev_dbg(&client->dev, "PWM clock %s kHz, output frequency %u Hz\n",
510 (data->config_fan & 0x08) ? "1.4" : "360",
511 ((data->config_fan & 0x08) ? 700 : 180000) / data->pwm1_freq);
512 dev_dbg(&client->dev, "PWM output active %s, %s mode\n",
513 (data->config_fan & 0x10) ? "low" : "high",
514 (data->config_fan & 0x20) ? "manual" : "auto");
515}
516
517static int lm63_detach_client(struct i2c_client *client)
518{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400519 struct lm63_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520 int err;
521
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400522 hwmon_device_unregister(data->class_dev);
523
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524 if ((err = i2c_detach_client(client))) {
525 dev_err(&client->dev, "Client deregistration failed, "
526 "client not detached\n");
527 return err;
528 }
529
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400530 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531 return 0;
532}
533
534static struct lm63_data *lm63_update_device(struct device *dev)
535{
536 struct i2c_client *client = to_i2c_client(dev);
537 struct lm63_data *data = i2c_get_clientdata(client);
538
539 down(&data->update_lock);
540
541 if (time_after(jiffies, data->last_updated + HZ) || !data->valid) {
542 if (data->config & 0x04) { /* tachometer enabled */
543 /* order matters for fan1_input */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200544 data->fan[0] = i2c_smbus_read_byte_data(client,
545 LM63_REG_TACH_COUNT_LSB) & 0xFC;
546 data->fan[0] |= i2c_smbus_read_byte_data(client,
547 LM63_REG_TACH_COUNT_MSB) << 8;
548 data->fan[1] = (i2c_smbus_read_byte_data(client,
549 LM63_REG_TACH_LIMIT_LSB) & 0xFC)
550 | (i2c_smbus_read_byte_data(client,
551 LM63_REG_TACH_LIMIT_MSB) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700552 }
553
554 data->pwm1_freq = i2c_smbus_read_byte_data(client,
555 LM63_REG_PWM_FREQ);
556 if (data->pwm1_freq == 0)
557 data->pwm1_freq = 1;
558 data->pwm1_value = i2c_smbus_read_byte_data(client,
559 LM63_REG_PWM_VALUE);
560
Jean Delvarebc51ae12005-06-05 20:32:27 +0200561 data->temp8[0] = i2c_smbus_read_byte_data(client,
562 LM63_REG_LOCAL_TEMP);
563 data->temp8[1] = i2c_smbus_read_byte_data(client,
564 LM63_REG_LOCAL_HIGH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565
566 /* order matters for temp2_input */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200567 data->temp11[0] = i2c_smbus_read_byte_data(client,
568 LM63_REG_REMOTE_TEMP_MSB) << 8;
569 data->temp11[0] |= i2c_smbus_read_byte_data(client,
570 LM63_REG_REMOTE_TEMP_LSB);
571 data->temp11[1] = (i2c_smbus_read_byte_data(client,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572 LM63_REG_REMOTE_LOW_MSB) << 8)
573 | i2c_smbus_read_byte_data(client,
574 LM63_REG_REMOTE_LOW_LSB);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200575 data->temp11[2] = (i2c_smbus_read_byte_data(client,
576 LM63_REG_REMOTE_HIGH_MSB) << 8)
577 | i2c_smbus_read_byte_data(client,
578 LM63_REG_REMOTE_HIGH_LSB);
579 data->temp8[2] = i2c_smbus_read_byte_data(client,
580 LM63_REG_REMOTE_TCRIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581 data->temp2_crit_hyst = i2c_smbus_read_byte_data(client,
582 LM63_REG_REMOTE_TCRIT_HYST);
583
584 data->alarms = i2c_smbus_read_byte_data(client,
585 LM63_REG_ALERT_STATUS) & 0x7F;
586
587 data->last_updated = jiffies;
588 data->valid = 1;
589 }
590
591 up(&data->update_lock);
592
593 return data;
594}
595
596static int __init sensors_lm63_init(void)
597{
598 return i2c_add_driver(&lm63_driver);
599}
600
601static void __exit sensors_lm63_exit(void)
602{
603 i2c_del_driver(&lm63_driver);
604}
605
606MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
607MODULE_DESCRIPTION("LM63 driver");
608MODULE_LICENSE("GPL");
609
610module_init(sensors_lm63_init);
611module_exit(sensors_lm63_exit);