blob: 0c4fff0a00a4acb76248f70984af2844f99842e3 [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 Delvared5957be2008-07-16 19:30:13 +02004 * Copyright (C) 2004-2008 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>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010048#include <linux/mutex.h>
Jean Delvare0e39e012006-09-24 21:16:40 +020049#include <linux/sysfs.h>
Guenter Roeck210961c2012-01-16 22:51:45 +010050#include <linux/types.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
52/*
53 * Addresses to scan
54 * Address is fully defined internally and cannot be changed.
55 */
56
Matthew Garrett10f2ed32010-05-27 19:58:38 +020057static const unsigned short normal_i2c[] = { 0x18, 0x4c, 0x4e, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070060 * The LM63 registers
61 */
62
63#define LM63_REG_CONFIG1 0x03
Guenter Roeck04738b22012-01-16 22:51:46 +010064#define LM63_REG_CONVRATE 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -070065#define LM63_REG_CONFIG2 0xBF
66#define LM63_REG_CONFIG_FAN 0x4A
67
68#define LM63_REG_TACH_COUNT_MSB 0x47
69#define LM63_REG_TACH_COUNT_LSB 0x46
70#define LM63_REG_TACH_LIMIT_MSB 0x49
71#define LM63_REG_TACH_LIMIT_LSB 0x48
72
73#define LM63_REG_PWM_VALUE 0x4C
74#define LM63_REG_PWM_FREQ 0x4D
75
76#define LM63_REG_LOCAL_TEMP 0x00
77#define LM63_REG_LOCAL_HIGH 0x05
78
79#define LM63_REG_REMOTE_TEMP_MSB 0x01
80#define LM63_REG_REMOTE_TEMP_LSB 0x10
81#define LM63_REG_REMOTE_OFFSET_MSB 0x11
82#define LM63_REG_REMOTE_OFFSET_LSB 0x12
83#define LM63_REG_REMOTE_HIGH_MSB 0x07
84#define LM63_REG_REMOTE_HIGH_LSB 0x13
85#define LM63_REG_REMOTE_LOW_MSB 0x08
86#define LM63_REG_REMOTE_LOW_LSB 0x14
87#define LM63_REG_REMOTE_TCRIT 0x19
88#define LM63_REG_REMOTE_TCRIT_HYST 0x21
89
90#define LM63_REG_ALERT_STATUS 0x02
91#define LM63_REG_ALERT_MASK 0x16
92
93#define LM63_REG_MAN_ID 0xFE
94#define LM63_REG_CHIP_ID 0xFF
95
Guenter Roeckf496b2d2012-01-16 22:51:46 +010096#define LM96163_REG_TRUTHERM 0x30
Guenter Roecke872c912012-01-16 22:51:46 +010097#define LM96163_REG_REMOTE_TEMP_U_MSB 0x31
98#define LM96163_REG_REMOTE_TEMP_U_LSB 0x32
Guenter Roeck210961c2012-01-16 22:51:45 +010099#define LM96163_REG_CONFIG_ENHANCED 0x45
100
Guenter Roeck04738b22012-01-16 22:51:46 +0100101#define LM63_MAX_CONVRATE 9
102
103#define LM63_MAX_CONVRATE_HZ 32
104#define LM96163_MAX_CONVRATE_HZ 26
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*
107 * Conversions and various macros
108 * For tachometer counts, the LM63 uses 16-bit values.
109 * For local temperature and high limit, remote critical limit and hysteresis
Steven Cole44bbe872005-05-03 18:21:25 -0600110 * value, it uses signed 8-bit values with LSB = 1 degree Celsius.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * For remote temperature, low and high limits, it uses signed 11-bit values
Steven Cole44bbe872005-05-03 18:21:25 -0600112 * with LSB = 0.125 degree Celsius, left-justified in 16-bit registers.
Dirk Eibach2778fb12011-02-09 04:51:34 -0500113 * For LM64 the actual remote diode temperature is 16 degree Celsius higher
114 * than the register reading. Remote temperature setpoints have to be
115 * adapted accordingly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116 */
117
118#define FAN_FROM_REG(reg) ((reg) == 0xFFFC || (reg) == 0 ? 0 : \
119 5400000 / (reg))
120#define FAN_TO_REG(val) ((val) <= 82 ? 0xFFFC : \
121 (5400000 / (val)) & 0xFFFC)
122#define TEMP8_FROM_REG(reg) ((reg) * 1000)
123#define TEMP8_TO_REG(val) ((val) <= -128000 ? -128 : \
124 (val) >= 127000 ? 127 : \
125 (val) < 0 ? ((val) - 500) / 1000 : \
126 ((val) + 500) / 1000)
Guenter Roeck94e55df2012-01-16 22:51:46 +0100127#define TEMP8U_TO_REG(val) ((val) <= 0 ? 0 : \
128 (val) >= 255000 ? 255 : \
129 ((val) + 500) / 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130#define TEMP11_FROM_REG(reg) ((reg) / 32 * 125)
131#define TEMP11_TO_REG(val) ((val) <= -128000 ? 0x8000 : \
132 (val) >= 127875 ? 0x7FE0 : \
133 (val) < 0 ? ((val) - 62) / 125 * 32 : \
134 ((val) + 62) / 125 * 32)
Guenter Roecke872c912012-01-16 22:51:46 +0100135#define TEMP11U_TO_REG(val) ((val) <= 0 ? 0 : \
136 (val) >= 255875 ? 0xFFE0 : \
137 ((val) + 62) / 125 * 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138#define HYST_TO_REG(val) ((val) <= 0 ? 0 : \
139 (val) >= 127000 ? 127 : \
140 ((val) + 500) / 1000)
141
Guenter Roeck04738b22012-01-16 22:51:46 +0100142#define UPDATE_INTERVAL(max, rate) \
143 ((1000 << (LM63_MAX_CONVRATE - (rate))) / (max))
144
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145/*
146 * Functions declaration
147 */
148
Jean Delvared5957be2008-07-16 19:30:13 +0200149static int lm63_probe(struct i2c_client *client,
150 const struct i2c_device_id *id);
151static int lm63_remove(struct i2c_client *client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152
153static struct lm63_data *lm63_update_device(struct device *dev);
154
Jean Delvare310ec792009-12-14 21:17:23 +0100155static int lm63_detect(struct i2c_client *client, struct i2c_board_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156static void lm63_init_client(struct i2c_client *client);
157
Guenter Roeck210961c2012-01-16 22:51:45 +0100158enum chips { lm63, lm64, lm96163 };
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200159
Linus Torvalds1da177e2005-04-16 15:20:36 -0700160/*
161 * Driver data (common to all clients)
162 */
163
Jean Delvared5957be2008-07-16 19:30:13 +0200164static const struct i2c_device_id lm63_id[] = {
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200165 { "lm63", lm63 },
166 { "lm64", lm64 },
Guenter Roeck210961c2012-01-16 22:51:45 +0100167 { "lm96163", lm96163 },
Jean Delvared5957be2008-07-16 19:30:13 +0200168 { }
169};
170MODULE_DEVICE_TABLE(i2c, lm63_id);
171
Linus Torvalds1da177e2005-04-16 15:20:36 -0700172static struct i2c_driver lm63_driver = {
Jean Delvared5957be2008-07-16 19:30:13 +0200173 .class = I2C_CLASS_HWMON,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100174 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100175 .name = "lm63",
176 },
Jean Delvared5957be2008-07-16 19:30:13 +0200177 .probe = lm63_probe,
178 .remove = lm63_remove,
179 .id_table = lm63_id,
180 .detect = lm63_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +0100181 .address_list = normal_i2c,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700182};
183
184/*
185 * Client data (each client gets its own)
186 */
187
188struct lm63_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700189 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100190 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 char valid; /* zero until following fields are valid */
192 unsigned long last_updated; /* in jiffies */
Guenter Roeck04738b22012-01-16 22:51:46 +0100193 enum chips kind;
Dirk Eibach2778fb12011-02-09 04:51:34 -0500194 int temp2_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700195
Guenter Roeck04738b22012-01-16 22:51:46 +0100196 int update_interval; /* in milliseconds */
197 int max_convrate_hz;
198
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 /* registers values */
200 u8 config, config_fan;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200201 u16 fan[2]; /* 0: input
202 1: low limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203 u8 pwm1_freq;
204 u8 pwm1_value;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200205 s8 temp8[3]; /* 0: local input
206 1: local high limit
207 2: remote critical limit */
Guenter Roeck786375f2012-01-16 22:51:45 +0100208 s16 temp11[4]; /* 0: remote input
Jean Delvarebc51ae12005-06-05 20:32:27 +0200209 1: remote low limit
Guenter Roeck786375f2012-01-16 22:51:45 +0100210 2: remote high limit
211 3: remote offset */
Guenter Roecke872c912012-01-16 22:51:46 +0100212 u16 temp11u; /* remote input (unsigned) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700213 u8 temp2_crit_hyst;
214 u8 alarms;
Guenter Roeck210961c2012-01-16 22:51:45 +0100215 bool pwm_highres;
Guenter Roecke872c912012-01-16 22:51:46 +0100216 bool remote_unsigned; /* true if unsigned remote upper limits */
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100217 bool trutherm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219
Guenter Roecke872c912012-01-16 22:51:46 +0100220static inline int temp8_from_reg(struct lm63_data *data, int nr)
221{
222 if (data->remote_unsigned)
223 return TEMP8_FROM_REG((u8)data->temp8[nr]);
224 return TEMP8_FROM_REG(data->temp8[nr]);
225}
226
Linus Torvalds1da177e2005-04-16 15:20:36 -0700227/*
228 * Sysfs callback functions and files
229 */
230
Jean Delvarebc51ae12005-06-05 20:32:27 +0200231static ssize_t show_fan(struct device *dev, struct device_attribute *devattr,
232 char *buf)
233{
234 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
235 struct lm63_data *data = lm63_update_device(dev);
236 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238
Jean Delvarebc51ae12005-06-05 20:32:27 +0200239static ssize_t set_fan(struct device *dev, struct device_attribute *dummy,
240 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241{
242 struct i2c_client *client = to_i2c_client(dev);
243 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck662bda22012-01-16 22:51:45 +0100244 unsigned long val;
245 int err;
246
247 err = kstrtoul(buf, 10, &val);
248 if (err)
249 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100251 mutex_lock(&data->update_lock);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200252 data->fan[1] = FAN_TO_REG(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253 i2c_smbus_write_byte_data(client, LM63_REG_TACH_LIMIT_LSB,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200254 data->fan[1] & 0xFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255 i2c_smbus_write_byte_data(client, LM63_REG_TACH_LIMIT_MSB,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200256 data->fan[1] >> 8);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100257 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 return count;
259}
260
Jean Delvarebc51ae12005-06-05 20:32:27 +0200261static ssize_t show_pwm1(struct device *dev, struct device_attribute *dummy,
262 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700263{
264 struct lm63_data *data = lm63_update_device(dev);
Guenter Roeck210961c2012-01-16 22:51:45 +0100265 int pwm;
266
267 if (data->pwm_highres)
268 pwm = data->pwm1_value;
269 else
270 pwm = data->pwm1_value >= 2 * data->pwm1_freq ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 255 : (data->pwm1_value * 255 + data->pwm1_freq) /
Guenter Roeck210961c2012-01-16 22:51:45 +0100272 (2 * data->pwm1_freq);
273
274 return sprintf(buf, "%d\n", pwm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
276
Jean Delvarebc51ae12005-06-05 20:32:27 +0200277static ssize_t set_pwm1(struct device *dev, struct device_attribute *dummy,
278 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
280 struct i2c_client *client = to_i2c_client(dev);
281 struct lm63_data *data = i2c_get_clientdata(client);
282 unsigned long val;
Guenter Roeck662bda22012-01-16 22:51:45 +0100283 int err;
284
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 if (!(data->config_fan & 0x20)) /* register is read-only */
286 return -EPERM;
287
Guenter Roeck662bda22012-01-16 22:51:45 +0100288 err = kstrtoul(buf, 10, &val);
289 if (err)
290 return err;
291
Guenter Roeck210961c2012-01-16 22:51:45 +0100292 val = SENSORS_LIMIT(val, 0, 255);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100293 mutex_lock(&data->update_lock);
Guenter Roeck210961c2012-01-16 22:51:45 +0100294 data->pwm1_value = data->pwm_highres ? val :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 (val * data->pwm1_freq * 2 + 127) / 255;
296 i2c_smbus_write_byte_data(client, LM63_REG_PWM_VALUE, data->pwm1_value);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100297 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 return count;
299}
300
Guenter Roeck662bda22012-01-16 22:51:45 +0100301static ssize_t show_pwm1_enable(struct device *dev,
302 struct device_attribute *dummy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303{
304 struct lm63_data *data = lm63_update_device(dev);
305 return sprintf(buf, "%d\n", data->config_fan & 0x20 ? 1 : 2);
306}
307
Dirk Eibach2778fb12011-02-09 04:51:34 -0500308/*
309 * There are 8bit registers for both local(temp1) and remote(temp2) sensor.
310 * For remote sensor registers temp2_offset has to be considered,
311 * for local sensor it must not.
312 * So we need separate 8bit accessors for local and remote sensor.
313 */
314static ssize_t show_local_temp8(struct device *dev,
315 struct device_attribute *devattr,
316 char *buf)
Jean Delvarebc51ae12005-06-05 20:32:27 +0200317{
318 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
319 struct lm63_data *data = lm63_update_device(dev);
320 return sprintf(buf, "%d\n", TEMP8_FROM_REG(data->temp8[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322
Dirk Eibach2778fb12011-02-09 04:51:34 -0500323static ssize_t show_remote_temp8(struct device *dev,
324 struct device_attribute *devattr,
325 char *buf)
326{
327 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
328 struct lm63_data *data = lm63_update_device(dev);
Guenter Roecke872c912012-01-16 22:51:46 +0100329 return sprintf(buf, "%d\n", temp8_from_reg(data, attr->index)
Dirk Eibach2778fb12011-02-09 04:51:34 -0500330 + data->temp2_offset);
331}
332
Guenter Roeck94e55df2012-01-16 22:51:46 +0100333static ssize_t set_temp8(struct device *dev, struct device_attribute *devattr,
334 const char *buf, size_t count)
Jean Delvarebc51ae12005-06-05 20:32:27 +0200335{
Guenter Roeck94e55df2012-01-16 22:51:46 +0100336 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200337 struct i2c_client *client = to_i2c_client(dev);
338 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck94e55df2012-01-16 22:51:46 +0100339 int nr = attr->index;
340 int reg = nr == 2 ? LM63_REG_REMOTE_TCRIT : LM63_REG_LOCAL_HIGH;
Guenter Roeck662bda22012-01-16 22:51:45 +0100341 long val;
342 int err;
Guenter Roeck94e55df2012-01-16 22:51:46 +0100343 int temp;
Guenter Roeck662bda22012-01-16 22:51:45 +0100344
345 err = kstrtol(buf, 10, &val);
346 if (err)
347 return err;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200348
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100349 mutex_lock(&data->update_lock);
Guenter Roeck94e55df2012-01-16 22:51:46 +0100350 if (nr == 2) {
351 if (data->remote_unsigned)
352 temp = TEMP8U_TO_REG(val - data->temp2_offset);
353 else
354 temp = TEMP8_TO_REG(val - data->temp2_offset);
355 } else {
356 temp = TEMP8_TO_REG(val);
357 }
358 data->temp8[nr] = temp;
359 i2c_smbus_write_byte_data(client, reg, temp);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100360 mutex_unlock(&data->update_lock);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200361 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700362}
Jean Delvarebc51ae12005-06-05 20:32:27 +0200363
364static ssize_t show_temp11(struct device *dev, struct device_attribute *devattr,
365 char *buf)
366{
367 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
368 struct lm63_data *data = lm63_update_device(dev);
Guenter Roecke872c912012-01-16 22:51:46 +0100369 int nr = attr->index;
370 int temp;
371
372 if (!nr) {
373 /*
374 * Use unsigned temperature unless its value is zero.
375 * If it is zero, use signed temperature.
376 */
377 if (data->temp11u)
378 temp = TEMP11_FROM_REG(data->temp11u);
379 else
380 temp = TEMP11_FROM_REG(data->temp11[nr]);
381 } else {
382 if (data->remote_unsigned && nr == 2)
383 temp = TEMP11_FROM_REG((u16)data->temp11[nr]);
384 else
385 temp = TEMP11_FROM_REG(data->temp11[nr]);
386 }
387 return sprintf(buf, "%d\n", temp + data->temp2_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388}
Jean Delvarebc51ae12005-06-05 20:32:27 +0200389
390static ssize_t set_temp11(struct device *dev, struct device_attribute *devattr,
391 const char *buf, size_t count)
392{
Guenter Roeck786375f2012-01-16 22:51:45 +0100393 static const u8 reg[6] = {
Jean Delvarebc51ae12005-06-05 20:32:27 +0200394 LM63_REG_REMOTE_LOW_MSB,
395 LM63_REG_REMOTE_LOW_LSB,
396 LM63_REG_REMOTE_HIGH_MSB,
397 LM63_REG_REMOTE_HIGH_LSB,
Guenter Roeck786375f2012-01-16 22:51:45 +0100398 LM63_REG_REMOTE_OFFSET_MSB,
399 LM63_REG_REMOTE_OFFSET_LSB,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200400 };
401
402 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
403 struct i2c_client *client = to_i2c_client(dev);
404 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck662bda22012-01-16 22:51:45 +0100405 long val;
406 int err;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200407 int nr = attr->index;
408
Guenter Roeck662bda22012-01-16 22:51:45 +0100409 err = kstrtol(buf, 10, &val);
410 if (err)
411 return err;
412
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100413 mutex_lock(&data->update_lock);
Guenter Roecke872c912012-01-16 22:51:46 +0100414 if (data->remote_unsigned && nr == 2)
415 data->temp11[nr] = TEMP11U_TO_REG(val - data->temp2_offset);
416 else
417 data->temp11[nr] = TEMP11_TO_REG(val - data->temp2_offset);
418
Jean Delvarebc51ae12005-06-05 20:32:27 +0200419 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2],
420 data->temp11[nr] >> 8);
421 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2 + 1],
422 data->temp11[nr] & 0xff);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100423 mutex_unlock(&data->update_lock);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200424 return count;
425}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426
Guenter Roeck662bda22012-01-16 22:51:45 +0100427/*
428 * Hysteresis register holds a relative value, while we want to present
429 * an absolute to user-space
430 */
431static ssize_t show_temp2_crit_hyst(struct device *dev,
432 struct device_attribute *dummy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433{
434 struct lm63_data *data = lm63_update_device(dev);
Guenter Roecke872c912012-01-16 22:51:46 +0100435 return sprintf(buf, "%d\n", temp8_from_reg(data, 2)
Dirk Eibach2778fb12011-02-09 04:51:34 -0500436 + data->temp2_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 - TEMP8_FROM_REG(data->temp2_crit_hyst));
438}
439
Guenter Roeck662bda22012-01-16 22:51:45 +0100440/*
441 * And now the other way around, user-space provides an absolute
442 * hysteresis value and we have to store a relative one
443 */
444static ssize_t set_temp2_crit_hyst(struct device *dev,
445 struct device_attribute *dummy,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200446 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447{
448 struct i2c_client *client = to_i2c_client(dev);
449 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck662bda22012-01-16 22:51:45 +0100450 long val;
451 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 long hyst;
453
Guenter Roeck662bda22012-01-16 22:51:45 +0100454 err = kstrtol(buf, 10, &val);
455 if (err)
456 return err;
457
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100458 mutex_lock(&data->update_lock);
Guenter Roecke872c912012-01-16 22:51:46 +0100459 hyst = temp8_from_reg(data, 2) + data->temp2_offset - val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 i2c_smbus_write_byte_data(client, LM63_REG_REMOTE_TCRIT_HYST,
461 HYST_TO_REG(hyst));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100462 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 return count;
464}
465
Guenter Roeck04738b22012-01-16 22:51:46 +0100466/*
467 * Set conversion rate.
468 * client->update_lock must be held when calling this function.
469 */
470static void lm63_set_convrate(struct i2c_client *client, struct lm63_data *data,
471 unsigned int interval)
472{
473 int i;
474 unsigned int update_interval;
475
476 /* Shift calculations to avoid rounding errors */
477 interval <<= 6;
478
479 /* find the nearest update rate */
480 update_interval = (1 << (LM63_MAX_CONVRATE + 6)) * 1000
481 / data->max_convrate_hz;
482 for (i = 0; i < LM63_MAX_CONVRATE; i++, update_interval >>= 1)
483 if (interval >= update_interval * 3 / 4)
484 break;
485
486 i2c_smbus_write_byte_data(client, LM63_REG_CONVRATE, i);
487 data->update_interval = UPDATE_INTERVAL(data->max_convrate_hz, i);
488}
489
490static ssize_t show_update_interval(struct device *dev,
491 struct device_attribute *attr, char *buf)
492{
493 struct lm63_data *data = dev_get_drvdata(dev);
494
495 return sprintf(buf, "%u\n", data->update_interval);
496}
497
498static ssize_t set_update_interval(struct device *dev,
499 struct device_attribute *attr,
500 const char *buf, size_t count)
501{
502 struct i2c_client *client = to_i2c_client(dev);
503 struct lm63_data *data = i2c_get_clientdata(client);
504 unsigned long val;
505 int err;
506
507 err = kstrtoul(buf, 10, &val);
508 if (err)
509 return err;
510
511 mutex_lock(&data->update_lock);
512 lm63_set_convrate(client, data, SENSORS_LIMIT(val, 0, 100000));
513 mutex_unlock(&data->update_lock);
514
515 return count;
516}
517
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100518static ssize_t show_type(struct device *dev, struct device_attribute *attr,
519 char *buf)
520{
521 struct i2c_client *client = to_i2c_client(dev);
522 struct lm63_data *data = i2c_get_clientdata(client);
523
524 return sprintf(buf, data->trutherm ? "1\n" : "2\n");
525}
526
527static ssize_t set_type(struct device *dev, struct device_attribute *attr,
528 const char *buf, size_t count)
529{
530 struct i2c_client *client = to_i2c_client(dev);
531 struct lm63_data *data = i2c_get_clientdata(client);
532 unsigned long val;
533 int ret;
534 u8 reg;
535
536 ret = kstrtoul(buf, 10, &val);
537 if (ret < 0)
538 return ret;
539 if (val != 1 && val != 2)
540 return -EINVAL;
541
542 mutex_lock(&data->update_lock);
543 data->trutherm = val == 1;
544 reg = i2c_smbus_read_byte_data(client, LM96163_REG_TRUTHERM) & ~0x02;
545 i2c_smbus_write_byte_data(client, LM96163_REG_TRUTHERM,
546 reg | (data->trutherm ? 0x02 : 0x00));
547 data->valid = 0;
548 mutex_unlock(&data->update_lock);
549
550 return count;
551}
552
Jean Delvarebc51ae12005-06-05 20:32:27 +0200553static ssize_t show_alarms(struct device *dev, struct device_attribute *dummy,
554 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700555{
556 struct lm63_data *data = lm63_update_device(dev);
557 return sprintf(buf, "%u\n", data->alarms);
558}
559
Jean Delvare2d457712006-09-24 20:52:15 +0200560static ssize_t show_alarm(struct device *dev, struct device_attribute *devattr,
561 char *buf)
562{
563 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
564 struct lm63_data *data = lm63_update_device(dev);
565 int bitnr = attr->index;
566
567 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
568}
569
Jean Delvarebc51ae12005-06-05 20:32:27 +0200570static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0);
571static SENSOR_DEVICE_ATTR(fan1_min, S_IWUSR | S_IRUGO, show_fan,
572 set_fan, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573
574static DEVICE_ATTR(pwm1, S_IWUSR | S_IRUGO, show_pwm1, set_pwm1);
575static DEVICE_ATTR(pwm1_enable, S_IRUGO, show_pwm1_enable, NULL);
576
Dirk Eibach2778fb12011-02-09 04:51:34 -0500577static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_local_temp8, NULL, 0);
578static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_local_temp8,
Guenter Roeck94e55df2012-01-16 22:51:46 +0100579 set_temp8, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700580
Jean Delvarebc51ae12005-06-05 20:32:27 +0200581static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp11, NULL, 0);
582static SENSOR_DEVICE_ATTR(temp2_min, S_IWUSR | S_IRUGO, show_temp11,
583 set_temp11, 1);
584static SENSOR_DEVICE_ATTR(temp2_max, S_IWUSR | S_IRUGO, show_temp11,
585 set_temp11, 2);
Guenter Roeck786375f2012-01-16 22:51:45 +0100586static SENSOR_DEVICE_ATTR(temp2_offset, S_IWUSR | S_IRUGO, show_temp11,
587 set_temp11, 3);
Dirk Eibach2778fb12011-02-09 04:51:34 -0500588static SENSOR_DEVICE_ATTR(temp2_crit, S_IRUGO, show_remote_temp8,
Guenter Roeck94e55df2012-01-16 22:51:46 +0100589 set_temp8, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590static DEVICE_ATTR(temp2_crit_hyst, S_IWUSR | S_IRUGO, show_temp2_crit_hyst,
591 set_temp2_crit_hyst);
592
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100593static DEVICE_ATTR(temp2_type, S_IWUSR | S_IRUGO, show_type, set_type);
594
Jean Delvare2d457712006-09-24 20:52:15 +0200595/* Individual alarm files */
596static SENSOR_DEVICE_ATTR(fan1_min_alarm, S_IRUGO, show_alarm, NULL, 0);
597static SENSOR_DEVICE_ATTR(temp2_crit_alarm, S_IRUGO, show_alarm, NULL, 1);
Jean Delvare7817a392007-06-09 10:11:16 -0400598static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 2);
Jean Delvare2d457712006-09-24 20:52:15 +0200599static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3);
600static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 4);
601static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 6);
602/* Raw alarm file for compatibility */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
604
Guenter Roeck04738b22012-01-16 22:51:46 +0100605static DEVICE_ATTR(update_interval, S_IRUGO | S_IWUSR, show_update_interval,
606 set_update_interval);
607
Jean Delvare0e39e012006-09-24 21:16:40 +0200608static struct attribute *lm63_attributes[] = {
609 &dev_attr_pwm1.attr,
610 &dev_attr_pwm1_enable.attr,
611 &sensor_dev_attr_temp1_input.dev_attr.attr,
612 &sensor_dev_attr_temp2_input.dev_attr.attr,
613 &sensor_dev_attr_temp2_min.dev_attr.attr,
614 &sensor_dev_attr_temp1_max.dev_attr.attr,
615 &sensor_dev_attr_temp2_max.dev_attr.attr,
Guenter Roeck786375f2012-01-16 22:51:45 +0100616 &sensor_dev_attr_temp2_offset.dev_attr.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +0200617 &sensor_dev_attr_temp2_crit.dev_attr.attr,
618 &dev_attr_temp2_crit_hyst.attr,
619
620 &sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
Jean Delvare7817a392007-06-09 10:11:16 -0400621 &sensor_dev_attr_temp2_fault.dev_attr.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +0200622 &sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
623 &sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
624 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
625 &dev_attr_alarms.attr,
Guenter Roeck04738b22012-01-16 22:51:46 +0100626 &dev_attr_update_interval.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +0200627 NULL
628};
629
Guenter Roeck94e55df2012-01-16 22:51:46 +0100630/*
631 * On LM63, temp2_crit can be set only once, which should be job
632 * of the bootloader.
633 * On LM64, temp2_crit can always be set.
634 * On LM96163, temp2_crit can be set if bit 1 of the configuration
635 * register is true.
636 */
637static umode_t lm63_attribute_mode(struct kobject *kobj,
638 struct attribute *attr, int index)
639{
640 struct device *dev = container_of(kobj, struct device, kobj);
641 struct i2c_client *client = to_i2c_client(dev);
642 struct lm63_data *data = i2c_get_clientdata(client);
643
644 if (attr == &sensor_dev_attr_temp2_crit.dev_attr.attr
645 && (data->kind == lm64 ||
646 (data->kind == lm96163 && (data->config & 0x02))))
647 return attr->mode | S_IWUSR;
648
649 return attr->mode;
650}
651
Jean Delvare0e39e012006-09-24 21:16:40 +0200652static const struct attribute_group lm63_group = {
Guenter Roeck94e55df2012-01-16 22:51:46 +0100653 .is_visible = lm63_attribute_mode,
Jean Delvare0e39e012006-09-24 21:16:40 +0200654 .attrs = lm63_attributes,
655};
656
657static struct attribute *lm63_attributes_fan1[] = {
658 &sensor_dev_attr_fan1_input.dev_attr.attr,
659 &sensor_dev_attr_fan1_min.dev_attr.attr,
660
661 &sensor_dev_attr_fan1_min_alarm.dev_attr.attr,
662 NULL
663};
664
665static const struct attribute_group lm63_group_fan1 = {
666 .attrs = lm63_attributes_fan1,
667};
668
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669/*
670 * Real code
671 */
672
Jean Delvared5957be2008-07-16 19:30:13 +0200673/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare310ec792009-12-14 21:17:23 +0100674static int lm63_detect(struct i2c_client *new_client,
Jean Delvared5957be2008-07-16 19:30:13 +0200675 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700676{
Jean Delvared5957be2008-07-16 19:30:13 +0200677 struct i2c_adapter *adapter = new_client->adapter;
Jean Delvare52df6442009-12-09 20:35:57 +0100678 u8 man_id, chip_id, reg_config1, reg_config2;
679 u8 reg_alert_status, reg_alert_mask;
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200680 int address = new_client->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681
682 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvared5957be2008-07-16 19:30:13 +0200683 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
Jean Delvare52df6442009-12-09 20:35:57 +0100685 man_id = i2c_smbus_read_byte_data(new_client, LM63_REG_MAN_ID);
686 chip_id = i2c_smbus_read_byte_data(new_client, LM63_REG_CHIP_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Jean Delvare52df6442009-12-09 20:35:57 +0100688 reg_config1 = i2c_smbus_read_byte_data(new_client,
689 LM63_REG_CONFIG1);
690 reg_config2 = i2c_smbus_read_byte_data(new_client,
691 LM63_REG_CONFIG2);
692 reg_alert_status = i2c_smbus_read_byte_data(new_client,
693 LM63_REG_ALERT_STATUS);
694 reg_alert_mask = i2c_smbus_read_byte_data(new_client,
695 LM63_REG_ALERT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696
Jean Delvare52df6442009-12-09 20:35:57 +0100697 if (man_id != 0x01 /* National Semiconductor */
Jean Delvare52df6442009-12-09 20:35:57 +0100698 || (reg_config1 & 0x18) != 0x00
699 || (reg_config2 & 0xF8) != 0x00
700 || (reg_alert_status & 0x20) != 0x00
701 || (reg_alert_mask & 0xA4) != 0xA4) {
702 dev_dbg(&adapter->dev,
703 "Unsupported chip (man_id=0x%02X, chip_id=0x%02X)\n",
704 man_id, chip_id);
705 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 }
707
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200708 if (chip_id == 0x41 && address == 0x4c)
709 strlcpy(info->type, "lm63", I2C_NAME_SIZE);
710 else if (chip_id == 0x51 && (address == 0x18 || address == 0x4e))
711 strlcpy(info->type, "lm64", I2C_NAME_SIZE);
Guenter Roeck210961c2012-01-16 22:51:45 +0100712 else if (chip_id == 0x49 && address == 0x4c)
713 strlcpy(info->type, "lm96163", I2C_NAME_SIZE);
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200714 else
715 return -ENODEV;
Jean Delvared5957be2008-07-16 19:30:13 +0200716
717 return 0;
718}
719
720static int lm63_probe(struct i2c_client *new_client,
721 const struct i2c_device_id *id)
722{
723 struct lm63_data *data;
724 int err;
725
726 data = kzalloc(sizeof(struct lm63_data), GFP_KERNEL);
727 if (!data) {
728 err = -ENOMEM;
729 goto exit;
730 }
731
732 i2c_set_clientdata(new_client, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 data->valid = 0;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100734 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735
Dirk Eibach2778fb12011-02-09 04:51:34 -0500736 /* Set the device type */
737 data->kind = id->driver_data;
738 if (data->kind == lm64)
739 data->temp2_offset = 16000;
740
741 /* Initialize chip */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 lm63_init_client(new_client);
743
744 /* Register sysfs hooks */
Guenter Roeck662bda22012-01-16 22:51:45 +0100745 err = sysfs_create_group(&new_client->dev.kobj, &lm63_group);
746 if (err)
Jean Delvared5957be2008-07-16 19:30:13 +0200747 goto exit_free;
Jean Delvare0e39e012006-09-24 21:16:40 +0200748 if (data->config & 0x04) { /* tachometer enabled */
Guenter Roeck662bda22012-01-16 22:51:45 +0100749 err = sysfs_create_group(&new_client->dev.kobj,
750 &lm63_group_fan1);
751 if (err)
Jean Delvare0e39e012006-09-24 21:16:40 +0200752 goto exit_remove_files;
753 }
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100754 if (data->kind == lm96163) {
755 err = device_create_file(&new_client->dev,
756 &dev_attr_temp2_type);
757 if (err)
758 goto exit_remove_files;
759 }
Jean Delvare0e39e012006-09-24 21:16:40 +0200760
Tony Jones1beeffe2007-08-20 13:46:20 -0700761 data->hwmon_dev = hwmon_device_register(&new_client->dev);
762 if (IS_ERR(data->hwmon_dev)) {
763 err = PTR_ERR(data->hwmon_dev);
Jean Delvare0e39e012006-09-24 21:16:40 +0200764 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400765 }
766
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767 return 0;
768
Jean Delvare0e39e012006-09-24 21:16:40 +0200769exit_remove_files:
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100770 device_remove_file(&new_client->dev, &dev_attr_temp2_type);
Jean Delvare0e39e012006-09-24 21:16:40 +0200771 sysfs_remove_group(&new_client->dev.kobj, &lm63_group);
772 sysfs_remove_group(&new_client->dev.kobj, &lm63_group_fan1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773exit_free:
774 kfree(data);
775exit:
776 return err;
777}
778
Guenter Roeck662bda22012-01-16 22:51:45 +0100779/*
780 * Ideally we shouldn't have to initialize anything, since the BIOS
781 * should have taken care of everything
782 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783static void lm63_init_client(struct i2c_client *client)
784{
785 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck04738b22012-01-16 22:51:46 +0100786 u8 convrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787
788 data->config = i2c_smbus_read_byte_data(client, LM63_REG_CONFIG1);
789 data->config_fan = i2c_smbus_read_byte_data(client,
790 LM63_REG_CONFIG_FAN);
791
792 /* Start converting if needed */
793 if (data->config & 0x40) { /* standby */
Joe Perches898eb712007-10-18 03:06:30 -0700794 dev_dbg(&client->dev, "Switching to operational mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 data->config &= 0xA7;
796 i2c_smbus_write_byte_data(client, LM63_REG_CONFIG1,
797 data->config);
798 }
Jean Delvare409c0b52012-01-16 22:51:46 +0100799 /* Tachometer is always enabled on LM64 */
800 if (data->kind == lm64)
801 data->config |= 0x04;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802
803 /* We may need pwm1_freq before ever updating the client data */
804 data->pwm1_freq = i2c_smbus_read_byte_data(client, LM63_REG_PWM_FREQ);
805 if (data->pwm1_freq == 0)
806 data->pwm1_freq = 1;
807
Guenter Roeck04738b22012-01-16 22:51:46 +0100808 switch (data->kind) {
809 case lm63:
810 case lm64:
811 data->max_convrate_hz = LM63_MAX_CONVRATE_HZ;
812 break;
813 case lm96163:
814 data->max_convrate_hz = LM96163_MAX_CONVRATE_HZ;
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100815 data->trutherm
816 = i2c_smbus_read_byte_data(client,
817 LM96163_REG_TRUTHERM) & 0x02;
Guenter Roeck04738b22012-01-16 22:51:46 +0100818 break;
819 }
820 convrate = i2c_smbus_read_byte_data(client, LM63_REG_CONVRATE);
821 if (unlikely(convrate > LM63_MAX_CONVRATE))
822 convrate = LM63_MAX_CONVRATE;
823 data->update_interval = UPDATE_INTERVAL(data->max_convrate_hz,
824 convrate);
825
Guenter Roeck210961c2012-01-16 22:51:45 +0100826 /*
Guenter Roecke872c912012-01-16 22:51:46 +0100827 * For LM96163, check if high resolution PWM
828 * and unsigned temperature format is enabled.
Guenter Roeck210961c2012-01-16 22:51:45 +0100829 */
830 if (data->kind == lm96163) {
831 u8 config_enhanced
832 = i2c_smbus_read_byte_data(client,
833 LM96163_REG_CONFIG_ENHANCED);
834 if ((config_enhanced & 0x10)
835 && !(data->config_fan & 0x08) && data->pwm1_freq == 8)
836 data->pwm_highres = true;
837 if (config_enhanced & 0x08)
Guenter Roecke872c912012-01-16 22:51:46 +0100838 data->remote_unsigned = true;
Guenter Roeck210961c2012-01-16 22:51:45 +0100839 }
840
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 /* Show some debug info about the LM63 configuration */
Jean Delvare409c0b52012-01-16 22:51:46 +0100842 if (data->kind == lm63)
843 dev_dbg(&client->dev, "Alert/tach pin configured for %s\n",
844 (data->config & 0x04) ? "tachometer input" :
845 "alert output");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 dev_dbg(&client->dev, "PWM clock %s kHz, output frequency %u Hz\n",
847 (data->config_fan & 0x08) ? "1.4" : "360",
848 ((data->config_fan & 0x08) ? 700 : 180000) / data->pwm1_freq);
849 dev_dbg(&client->dev, "PWM output active %s, %s mode\n",
850 (data->config_fan & 0x10) ? "low" : "high",
851 (data->config_fan & 0x20) ? "manual" : "auto");
852}
853
Jean Delvared5957be2008-07-16 19:30:13 +0200854static int lm63_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400856 struct lm63_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857
Tony Jones1beeffe2007-08-20 13:46:20 -0700858 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100859 device_remove_file(&client->dev, &dev_attr_temp2_type);
Jean Delvare0e39e012006-09-24 21:16:40 +0200860 sysfs_remove_group(&client->dev.kobj, &lm63_group);
861 sysfs_remove_group(&client->dev.kobj, &lm63_group_fan1);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400862
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400863 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700864 return 0;
865}
866
867static struct lm63_data *lm63_update_device(struct device *dev)
868{
869 struct i2c_client *client = to_i2c_client(dev);
870 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck04738b22012-01-16 22:51:46 +0100871 unsigned long next_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100873 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874
Guenter Roeck04738b22012-01-16 22:51:46 +0100875 next_update = data->last_updated
876 + msecs_to_jiffies(data->update_interval) + 1;
877
878 if (time_after(jiffies, next_update) || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 if (data->config & 0x04) { /* tachometer enabled */
880 /* order matters for fan1_input */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200881 data->fan[0] = i2c_smbus_read_byte_data(client,
882 LM63_REG_TACH_COUNT_LSB) & 0xFC;
883 data->fan[0] |= i2c_smbus_read_byte_data(client,
884 LM63_REG_TACH_COUNT_MSB) << 8;
885 data->fan[1] = (i2c_smbus_read_byte_data(client,
886 LM63_REG_TACH_LIMIT_LSB) & 0xFC)
887 | (i2c_smbus_read_byte_data(client,
888 LM63_REG_TACH_LIMIT_MSB) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700889 }
890
891 data->pwm1_freq = i2c_smbus_read_byte_data(client,
892 LM63_REG_PWM_FREQ);
893 if (data->pwm1_freq == 0)
894 data->pwm1_freq = 1;
895 data->pwm1_value = i2c_smbus_read_byte_data(client,
896 LM63_REG_PWM_VALUE);
897
Jean Delvarebc51ae12005-06-05 20:32:27 +0200898 data->temp8[0] = i2c_smbus_read_byte_data(client,
899 LM63_REG_LOCAL_TEMP);
900 data->temp8[1] = i2c_smbus_read_byte_data(client,
901 LM63_REG_LOCAL_HIGH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902
903 /* order matters for temp2_input */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200904 data->temp11[0] = i2c_smbus_read_byte_data(client,
905 LM63_REG_REMOTE_TEMP_MSB) << 8;
906 data->temp11[0] |= i2c_smbus_read_byte_data(client,
907 LM63_REG_REMOTE_TEMP_LSB);
908 data->temp11[1] = (i2c_smbus_read_byte_data(client,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 LM63_REG_REMOTE_LOW_MSB) << 8)
910 | i2c_smbus_read_byte_data(client,
911 LM63_REG_REMOTE_LOW_LSB);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200912 data->temp11[2] = (i2c_smbus_read_byte_data(client,
913 LM63_REG_REMOTE_HIGH_MSB) << 8)
914 | i2c_smbus_read_byte_data(client,
915 LM63_REG_REMOTE_HIGH_LSB);
Guenter Roeck786375f2012-01-16 22:51:45 +0100916 data->temp11[3] = (i2c_smbus_read_byte_data(client,
917 LM63_REG_REMOTE_OFFSET_MSB) << 8)
918 | i2c_smbus_read_byte_data(client,
919 LM63_REG_REMOTE_OFFSET_LSB);
Guenter Roecke872c912012-01-16 22:51:46 +0100920
921 if (data->kind == lm96163)
922 data->temp11u = (i2c_smbus_read_byte_data(client,
923 LM96163_REG_REMOTE_TEMP_U_MSB) << 8)
924 | i2c_smbus_read_byte_data(client,
925 LM96163_REG_REMOTE_TEMP_U_LSB);
926
Jean Delvarebc51ae12005-06-05 20:32:27 +0200927 data->temp8[2] = i2c_smbus_read_byte_data(client,
928 LM63_REG_REMOTE_TCRIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 data->temp2_crit_hyst = i2c_smbus_read_byte_data(client,
930 LM63_REG_REMOTE_TCRIT_HYST);
931
932 data->alarms = i2c_smbus_read_byte_data(client,
933 LM63_REG_ALERT_STATUS) & 0x7F;
934
935 data->last_updated = jiffies;
936 data->valid = 1;
937 }
938
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100939 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940
941 return data;
942}
943
944static int __init sensors_lm63_init(void)
945{
946 return i2c_add_driver(&lm63_driver);
947}
948
949static void __exit sensors_lm63_exit(void)
950{
951 i2c_del_driver(&lm63_driver);
952}
953
954MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
955MODULE_DESCRIPTION("LM63 driver");
956MODULE_LICENSE("GPL");
957
958module_init(sensors_lm63_init);
959module_exit(sensors_lm63_exit);