blob: a5e4ba82af17844961c9256850fffd15e9cda3d9 [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
Jean Delvared93ab782012-01-16 22:51:47 +010054 * Address is fully defined internally and cannot be changed except for
55 * LM64 which has one pin dedicated to address selection.
56 * LM63 and LM96163 have address 0x4c.
57 * LM64 can have address 0x18 or 0x4e.
Linus Torvalds1da177e2005-04-16 15:20:36 -070058 */
59
Matthew Garrett10f2ed32010-05-27 19:58:38 +020060static const unsigned short normal_i2c[] = { 0x18, 0x4c, 0x4e, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
62/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * The LM63 registers
64 */
65
66#define LM63_REG_CONFIG1 0x03
Guenter Roeck04738b22012-01-16 22:51:46 +010067#define LM63_REG_CONVRATE 0x04
Linus Torvalds1da177e2005-04-16 15:20:36 -070068#define LM63_REG_CONFIG2 0xBF
69#define LM63_REG_CONFIG_FAN 0x4A
70
71#define LM63_REG_TACH_COUNT_MSB 0x47
72#define LM63_REG_TACH_COUNT_LSB 0x46
73#define LM63_REG_TACH_LIMIT_MSB 0x49
74#define LM63_REG_TACH_LIMIT_LSB 0x48
75
76#define LM63_REG_PWM_VALUE 0x4C
77#define LM63_REG_PWM_FREQ 0x4D
78
79#define LM63_REG_LOCAL_TEMP 0x00
80#define LM63_REG_LOCAL_HIGH 0x05
81
82#define LM63_REG_REMOTE_TEMP_MSB 0x01
83#define LM63_REG_REMOTE_TEMP_LSB 0x10
84#define LM63_REG_REMOTE_OFFSET_MSB 0x11
85#define LM63_REG_REMOTE_OFFSET_LSB 0x12
86#define LM63_REG_REMOTE_HIGH_MSB 0x07
87#define LM63_REG_REMOTE_HIGH_LSB 0x13
88#define LM63_REG_REMOTE_LOW_MSB 0x08
89#define LM63_REG_REMOTE_LOW_LSB 0x14
90#define LM63_REG_REMOTE_TCRIT 0x19
91#define LM63_REG_REMOTE_TCRIT_HYST 0x21
92
93#define LM63_REG_ALERT_STATUS 0x02
94#define LM63_REG_ALERT_MASK 0x16
95
96#define LM63_REG_MAN_ID 0xFE
97#define LM63_REG_CHIP_ID 0xFF
98
Guenter Roeckf496b2d2012-01-16 22:51:46 +010099#define LM96163_REG_TRUTHERM 0x30
Guenter Roecke872c912012-01-16 22:51:46 +0100100#define LM96163_REG_REMOTE_TEMP_U_MSB 0x31
101#define LM96163_REG_REMOTE_TEMP_U_LSB 0x32
Guenter Roeck210961c2012-01-16 22:51:45 +0100102#define LM96163_REG_CONFIG_ENHANCED 0x45
103
Guenter Roeck04738b22012-01-16 22:51:46 +0100104#define LM63_MAX_CONVRATE 9
105
106#define LM63_MAX_CONVRATE_HZ 32
107#define LM96163_MAX_CONVRATE_HZ 26
108
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109/*
110 * Conversions and various macros
111 * For tachometer counts, the LM63 uses 16-bit values.
112 * For local temperature and high limit, remote critical limit and hysteresis
Steven Cole44bbe872005-05-03 18:21:25 -0600113 * value, it uses signed 8-bit values with LSB = 1 degree Celsius.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114 * For remote temperature, low and high limits, it uses signed 11-bit values
Steven Cole44bbe872005-05-03 18:21:25 -0600115 * with LSB = 0.125 degree Celsius, left-justified in 16-bit registers.
Dirk Eibach2778fb12011-02-09 04:51:34 -0500116 * For LM64 the actual remote diode temperature is 16 degree Celsius higher
117 * than the register reading. Remote temperature setpoints have to be
118 * adapted accordingly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 */
120
121#define FAN_FROM_REG(reg) ((reg) == 0xFFFC || (reg) == 0 ? 0 : \
122 5400000 / (reg))
123#define FAN_TO_REG(val) ((val) <= 82 ? 0xFFFC : \
124 (5400000 / (val)) & 0xFFFC)
125#define TEMP8_FROM_REG(reg) ((reg) * 1000)
126#define TEMP8_TO_REG(val) ((val) <= -128000 ? -128 : \
127 (val) >= 127000 ? 127 : \
128 (val) < 0 ? ((val) - 500) / 1000 : \
129 ((val) + 500) / 1000)
Guenter Roeck94e55df2012-01-16 22:51:46 +0100130#define TEMP8U_TO_REG(val) ((val) <= 0 ? 0 : \
131 (val) >= 255000 ? 255 : \
132 ((val) + 500) / 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133#define TEMP11_FROM_REG(reg) ((reg) / 32 * 125)
134#define TEMP11_TO_REG(val) ((val) <= -128000 ? 0x8000 : \
135 (val) >= 127875 ? 0x7FE0 : \
136 (val) < 0 ? ((val) - 62) / 125 * 32 : \
137 ((val) + 62) / 125 * 32)
Guenter Roecke872c912012-01-16 22:51:46 +0100138#define TEMP11U_TO_REG(val) ((val) <= 0 ? 0 : \
139 (val) >= 255875 ? 0xFFE0 : \
140 ((val) + 62) / 125 * 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700141#define HYST_TO_REG(val) ((val) <= 0 ? 0 : \
142 (val) >= 127000 ? 127 : \
143 ((val) + 500) / 1000)
144
Guenter Roeck04738b22012-01-16 22:51:46 +0100145#define UPDATE_INTERVAL(max, rate) \
146 ((1000 << (LM63_MAX_CONVRATE - (rate))) / (max))
147
Linus Torvalds1da177e2005-04-16 15:20:36 -0700148/*
149 * Functions declaration
150 */
151
Jean Delvared5957be2008-07-16 19:30:13 +0200152static int lm63_probe(struct i2c_client *client,
153 const struct i2c_device_id *id);
154static int lm63_remove(struct i2c_client *client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700155
156static struct lm63_data *lm63_update_device(struct device *dev);
157
Jean Delvare310ec792009-12-14 21:17:23 +0100158static int lm63_detect(struct i2c_client *client, struct i2c_board_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700159static void lm63_init_client(struct i2c_client *client);
160
Guenter Roeck210961c2012-01-16 22:51:45 +0100161enum chips { lm63, lm64, lm96163 };
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200162
Linus Torvalds1da177e2005-04-16 15:20:36 -0700163/*
164 * Driver data (common to all clients)
165 */
166
Jean Delvared5957be2008-07-16 19:30:13 +0200167static const struct i2c_device_id lm63_id[] = {
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200168 { "lm63", lm63 },
169 { "lm64", lm64 },
Guenter Roeck210961c2012-01-16 22:51:45 +0100170 { "lm96163", lm96163 },
Jean Delvared5957be2008-07-16 19:30:13 +0200171 { }
172};
173MODULE_DEVICE_TABLE(i2c, lm63_id);
174
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175static struct i2c_driver lm63_driver = {
Jean Delvared5957be2008-07-16 19:30:13 +0200176 .class = I2C_CLASS_HWMON,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100177 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100178 .name = "lm63",
179 },
Jean Delvared5957be2008-07-16 19:30:13 +0200180 .probe = lm63_probe,
181 .remove = lm63_remove,
182 .id_table = lm63_id,
183 .detect = lm63_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +0100184 .address_list = normal_i2c,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700185};
186
187/*
188 * Client data (each client gets its own)
189 */
190
191struct lm63_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700192 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100193 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194 char valid; /* zero until following fields are valid */
195 unsigned long last_updated; /* in jiffies */
Guenter Roeck04738b22012-01-16 22:51:46 +0100196 enum chips kind;
Dirk Eibach2778fb12011-02-09 04:51:34 -0500197 int temp2_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700198
Guenter Roeck04738b22012-01-16 22:51:46 +0100199 int update_interval; /* in milliseconds */
200 int max_convrate_hz;
201
Linus Torvalds1da177e2005-04-16 15:20:36 -0700202 /* registers values */
203 u8 config, config_fan;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200204 u16 fan[2]; /* 0: input
205 1: low limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206 u8 pwm1_freq;
207 u8 pwm1_value;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200208 s8 temp8[3]; /* 0: local input
209 1: local high limit
210 2: remote critical limit */
Guenter Roeck786375f2012-01-16 22:51:45 +0100211 s16 temp11[4]; /* 0: remote input
Jean Delvarebc51ae12005-06-05 20:32:27 +0200212 1: remote low limit
Guenter Roeck786375f2012-01-16 22:51:45 +0100213 2: remote high limit
214 3: remote offset */
Guenter Roecke872c912012-01-16 22:51:46 +0100215 u16 temp11u; /* remote input (unsigned) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216 u8 temp2_crit_hyst;
217 u8 alarms;
Guenter Roeck210961c2012-01-16 22:51:45 +0100218 bool pwm_highres;
Guenter Roecke872c912012-01-16 22:51:46 +0100219 bool remote_unsigned; /* true if unsigned remote upper limits */
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100220 bool trutherm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700221};
222
Guenter Roecke872c912012-01-16 22:51:46 +0100223static inline int temp8_from_reg(struct lm63_data *data, int nr)
224{
225 if (data->remote_unsigned)
226 return TEMP8_FROM_REG((u8)data->temp8[nr]);
227 return TEMP8_FROM_REG(data->temp8[nr]);
228}
229
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230/*
231 * Sysfs callback functions and files
232 */
233
Jean Delvarebc51ae12005-06-05 20:32:27 +0200234static ssize_t show_fan(struct device *dev, struct device_attribute *devattr,
235 char *buf)
236{
237 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
238 struct lm63_data *data = lm63_update_device(dev);
239 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241
Jean Delvarebc51ae12005-06-05 20:32:27 +0200242static ssize_t set_fan(struct device *dev, struct device_attribute *dummy,
243 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
245 struct i2c_client *client = to_i2c_client(dev);
246 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck662bda22012-01-16 22:51:45 +0100247 unsigned long val;
248 int err;
249
250 err = kstrtoul(buf, 10, &val);
251 if (err)
252 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700253
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100254 mutex_lock(&data->update_lock);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200255 data->fan[1] = FAN_TO_REG(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 i2c_smbus_write_byte_data(client, LM63_REG_TACH_LIMIT_LSB,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200257 data->fan[1] & 0xFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 i2c_smbus_write_byte_data(client, LM63_REG_TACH_LIMIT_MSB,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200259 data->fan[1] >> 8);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100260 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261 return count;
262}
263
Jean Delvarebc51ae12005-06-05 20:32:27 +0200264static ssize_t show_pwm1(struct device *dev, struct device_attribute *dummy,
265 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700266{
267 struct lm63_data *data = lm63_update_device(dev);
Guenter Roeck210961c2012-01-16 22:51:45 +0100268 int pwm;
269
270 if (data->pwm_highres)
271 pwm = data->pwm1_value;
272 else
273 pwm = data->pwm1_value >= 2 * data->pwm1_freq ?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 255 : (data->pwm1_value * 255 + data->pwm1_freq) /
Guenter Roeck210961c2012-01-16 22:51:45 +0100275 (2 * data->pwm1_freq);
276
277 return sprintf(buf, "%d\n", pwm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278}
279
Jean Delvarebc51ae12005-06-05 20:32:27 +0200280static ssize_t set_pwm1(struct device *dev, struct device_attribute *dummy,
281 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 struct i2c_client *client = to_i2c_client(dev);
284 struct lm63_data *data = i2c_get_clientdata(client);
285 unsigned long val;
Guenter Roeck662bda22012-01-16 22:51:45 +0100286 int err;
287
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 if (!(data->config_fan & 0x20)) /* register is read-only */
289 return -EPERM;
290
Guenter Roeck662bda22012-01-16 22:51:45 +0100291 err = kstrtoul(buf, 10, &val);
292 if (err)
293 return err;
294
Guenter Roeck210961c2012-01-16 22:51:45 +0100295 val = SENSORS_LIMIT(val, 0, 255);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100296 mutex_lock(&data->update_lock);
Guenter Roeck210961c2012-01-16 22:51:45 +0100297 data->pwm1_value = data->pwm_highres ? val :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 (val * data->pwm1_freq * 2 + 127) / 255;
299 i2c_smbus_write_byte_data(client, LM63_REG_PWM_VALUE, data->pwm1_value);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100300 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 return count;
302}
303
Guenter Roeck662bda22012-01-16 22:51:45 +0100304static ssize_t show_pwm1_enable(struct device *dev,
305 struct device_attribute *dummy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 struct lm63_data *data = lm63_update_device(dev);
308 return sprintf(buf, "%d\n", data->config_fan & 0x20 ? 1 : 2);
309}
310
Dirk Eibach2778fb12011-02-09 04:51:34 -0500311/*
312 * There are 8bit registers for both local(temp1) and remote(temp2) sensor.
313 * For remote sensor registers temp2_offset has to be considered,
314 * for local sensor it must not.
315 * So we need separate 8bit accessors for local and remote sensor.
316 */
317static ssize_t show_local_temp8(struct device *dev,
318 struct device_attribute *devattr,
319 char *buf)
Jean Delvarebc51ae12005-06-05 20:32:27 +0200320{
321 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
322 struct lm63_data *data = lm63_update_device(dev);
323 return sprintf(buf, "%d\n", TEMP8_FROM_REG(data->temp8[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700325
Dirk Eibach2778fb12011-02-09 04:51:34 -0500326static ssize_t show_remote_temp8(struct device *dev,
327 struct device_attribute *devattr,
328 char *buf)
329{
330 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
331 struct lm63_data *data = lm63_update_device(dev);
Guenter Roecke872c912012-01-16 22:51:46 +0100332 return sprintf(buf, "%d\n", temp8_from_reg(data, attr->index)
Dirk Eibach2778fb12011-02-09 04:51:34 -0500333 + data->temp2_offset);
334}
335
Guenter Roeck94e55df2012-01-16 22:51:46 +0100336static ssize_t set_temp8(struct device *dev, struct device_attribute *devattr,
337 const char *buf, size_t count)
Jean Delvarebc51ae12005-06-05 20:32:27 +0200338{
Guenter Roeck94e55df2012-01-16 22:51:46 +0100339 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200340 struct i2c_client *client = to_i2c_client(dev);
341 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck94e55df2012-01-16 22:51:46 +0100342 int nr = attr->index;
343 int reg = nr == 2 ? LM63_REG_REMOTE_TCRIT : LM63_REG_LOCAL_HIGH;
Guenter Roeck662bda22012-01-16 22:51:45 +0100344 long val;
345 int err;
Guenter Roeck94e55df2012-01-16 22:51:46 +0100346 int temp;
Guenter Roeck662bda22012-01-16 22:51:45 +0100347
348 err = kstrtol(buf, 10, &val);
349 if (err)
350 return err;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200351
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100352 mutex_lock(&data->update_lock);
Guenter Roeck94e55df2012-01-16 22:51:46 +0100353 if (nr == 2) {
354 if (data->remote_unsigned)
355 temp = TEMP8U_TO_REG(val - data->temp2_offset);
356 else
357 temp = TEMP8_TO_REG(val - data->temp2_offset);
358 } else {
359 temp = TEMP8_TO_REG(val);
360 }
361 data->temp8[nr] = temp;
362 i2c_smbus_write_byte_data(client, reg, temp);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100363 mutex_unlock(&data->update_lock);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200364 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365}
Jean Delvarebc51ae12005-06-05 20:32:27 +0200366
367static ssize_t show_temp11(struct device *dev, struct device_attribute *devattr,
368 char *buf)
369{
370 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
371 struct lm63_data *data = lm63_update_device(dev);
Guenter Roecke872c912012-01-16 22:51:46 +0100372 int nr = attr->index;
373 int temp;
374
375 if (!nr) {
376 /*
377 * Use unsigned temperature unless its value is zero.
378 * If it is zero, use signed temperature.
379 */
380 if (data->temp11u)
381 temp = TEMP11_FROM_REG(data->temp11u);
382 else
383 temp = TEMP11_FROM_REG(data->temp11[nr]);
384 } else {
385 if (data->remote_unsigned && nr == 2)
386 temp = TEMP11_FROM_REG((u16)data->temp11[nr]);
387 else
388 temp = TEMP11_FROM_REG(data->temp11[nr]);
389 }
390 return sprintf(buf, "%d\n", temp + data->temp2_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
Jean Delvarebc51ae12005-06-05 20:32:27 +0200392
393static ssize_t set_temp11(struct device *dev, struct device_attribute *devattr,
394 const char *buf, size_t count)
395{
Guenter Roeck786375f2012-01-16 22:51:45 +0100396 static const u8 reg[6] = {
Jean Delvarebc51ae12005-06-05 20:32:27 +0200397 LM63_REG_REMOTE_LOW_MSB,
398 LM63_REG_REMOTE_LOW_LSB,
399 LM63_REG_REMOTE_HIGH_MSB,
400 LM63_REG_REMOTE_HIGH_LSB,
Guenter Roeck786375f2012-01-16 22:51:45 +0100401 LM63_REG_REMOTE_OFFSET_MSB,
402 LM63_REG_REMOTE_OFFSET_LSB,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200403 };
404
405 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
406 struct i2c_client *client = to_i2c_client(dev);
407 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck662bda22012-01-16 22:51:45 +0100408 long val;
409 int err;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200410 int nr = attr->index;
411
Guenter Roeck662bda22012-01-16 22:51:45 +0100412 err = kstrtol(buf, 10, &val);
413 if (err)
414 return err;
415
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100416 mutex_lock(&data->update_lock);
Guenter Roecke872c912012-01-16 22:51:46 +0100417 if (data->remote_unsigned && nr == 2)
418 data->temp11[nr] = TEMP11U_TO_REG(val - data->temp2_offset);
419 else
420 data->temp11[nr] = TEMP11_TO_REG(val - data->temp2_offset);
421
Jean Delvarebc51ae12005-06-05 20:32:27 +0200422 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2],
423 data->temp11[nr] >> 8);
424 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2 + 1],
425 data->temp11[nr] & 0xff);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100426 mutex_unlock(&data->update_lock);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200427 return count;
428}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429
Guenter Roeck662bda22012-01-16 22:51:45 +0100430/*
431 * Hysteresis register holds a relative value, while we want to present
432 * an absolute to user-space
433 */
434static ssize_t show_temp2_crit_hyst(struct device *dev,
435 struct device_attribute *dummy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
437 struct lm63_data *data = lm63_update_device(dev);
Guenter Roecke872c912012-01-16 22:51:46 +0100438 return sprintf(buf, "%d\n", temp8_from_reg(data, 2)
Dirk Eibach2778fb12011-02-09 04:51:34 -0500439 + data->temp2_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 - TEMP8_FROM_REG(data->temp2_crit_hyst));
441}
442
Guenter Roeck662bda22012-01-16 22:51:45 +0100443/*
444 * And now the other way around, user-space provides an absolute
445 * hysteresis value and we have to store a relative one
446 */
447static ssize_t set_temp2_crit_hyst(struct device *dev,
448 struct device_attribute *dummy,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200449 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450{
451 struct i2c_client *client = to_i2c_client(dev);
452 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck662bda22012-01-16 22:51:45 +0100453 long val;
454 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 long hyst;
456
Guenter Roeck662bda22012-01-16 22:51:45 +0100457 err = kstrtol(buf, 10, &val);
458 if (err)
459 return err;
460
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100461 mutex_lock(&data->update_lock);
Guenter Roecke872c912012-01-16 22:51:46 +0100462 hyst = temp8_from_reg(data, 2) + data->temp2_offset - val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 i2c_smbus_write_byte_data(client, LM63_REG_REMOTE_TCRIT_HYST,
464 HYST_TO_REG(hyst));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100465 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 return count;
467}
468
Guenter Roeck04738b22012-01-16 22:51:46 +0100469/*
470 * Set conversion rate.
471 * client->update_lock must be held when calling this function.
472 */
473static void lm63_set_convrate(struct i2c_client *client, struct lm63_data *data,
474 unsigned int interval)
475{
476 int i;
477 unsigned int update_interval;
478
479 /* Shift calculations to avoid rounding errors */
480 interval <<= 6;
481
482 /* find the nearest update rate */
483 update_interval = (1 << (LM63_MAX_CONVRATE + 6)) * 1000
484 / data->max_convrate_hz;
485 for (i = 0; i < LM63_MAX_CONVRATE; i++, update_interval >>= 1)
486 if (interval >= update_interval * 3 / 4)
487 break;
488
489 i2c_smbus_write_byte_data(client, LM63_REG_CONVRATE, i);
490 data->update_interval = UPDATE_INTERVAL(data->max_convrate_hz, i);
491}
492
493static ssize_t show_update_interval(struct device *dev,
494 struct device_attribute *attr, char *buf)
495{
496 struct lm63_data *data = dev_get_drvdata(dev);
497
498 return sprintf(buf, "%u\n", data->update_interval);
499}
500
501static ssize_t set_update_interval(struct device *dev,
502 struct device_attribute *attr,
503 const char *buf, size_t count)
504{
505 struct i2c_client *client = to_i2c_client(dev);
506 struct lm63_data *data = i2c_get_clientdata(client);
507 unsigned long val;
508 int err;
509
510 err = kstrtoul(buf, 10, &val);
511 if (err)
512 return err;
513
514 mutex_lock(&data->update_lock);
515 lm63_set_convrate(client, data, SENSORS_LIMIT(val, 0, 100000));
516 mutex_unlock(&data->update_lock);
517
518 return count;
519}
520
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100521static ssize_t show_type(struct device *dev, struct device_attribute *attr,
522 char *buf)
523{
524 struct i2c_client *client = to_i2c_client(dev);
525 struct lm63_data *data = i2c_get_clientdata(client);
526
527 return sprintf(buf, data->trutherm ? "1\n" : "2\n");
528}
529
530static ssize_t set_type(struct device *dev, struct device_attribute *attr,
531 const char *buf, size_t count)
532{
533 struct i2c_client *client = to_i2c_client(dev);
534 struct lm63_data *data = i2c_get_clientdata(client);
535 unsigned long val;
536 int ret;
537 u8 reg;
538
539 ret = kstrtoul(buf, 10, &val);
540 if (ret < 0)
541 return ret;
542 if (val != 1 && val != 2)
543 return -EINVAL;
544
545 mutex_lock(&data->update_lock);
546 data->trutherm = val == 1;
547 reg = i2c_smbus_read_byte_data(client, LM96163_REG_TRUTHERM) & ~0x02;
548 i2c_smbus_write_byte_data(client, LM96163_REG_TRUTHERM,
549 reg | (data->trutherm ? 0x02 : 0x00));
550 data->valid = 0;
551 mutex_unlock(&data->update_lock);
552
553 return count;
554}
555
Jean Delvarebc51ae12005-06-05 20:32:27 +0200556static ssize_t show_alarms(struct device *dev, struct device_attribute *dummy,
557 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558{
559 struct lm63_data *data = lm63_update_device(dev);
560 return sprintf(buf, "%u\n", data->alarms);
561}
562
Jean Delvare2d457712006-09-24 20:52:15 +0200563static ssize_t show_alarm(struct device *dev, struct device_attribute *devattr,
564 char *buf)
565{
566 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
567 struct lm63_data *data = lm63_update_device(dev);
568 int bitnr = attr->index;
569
570 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
571}
572
Jean Delvarebc51ae12005-06-05 20:32:27 +0200573static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0);
574static SENSOR_DEVICE_ATTR(fan1_min, S_IWUSR | S_IRUGO, show_fan,
575 set_fan, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576
577static DEVICE_ATTR(pwm1, S_IWUSR | S_IRUGO, show_pwm1, set_pwm1);
578static DEVICE_ATTR(pwm1_enable, S_IRUGO, show_pwm1_enable, NULL);
579
Dirk Eibach2778fb12011-02-09 04:51:34 -0500580static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_local_temp8, NULL, 0);
581static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_local_temp8,
Guenter Roeck94e55df2012-01-16 22:51:46 +0100582 set_temp8, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Jean Delvarebc51ae12005-06-05 20:32:27 +0200584static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp11, NULL, 0);
585static SENSOR_DEVICE_ATTR(temp2_min, S_IWUSR | S_IRUGO, show_temp11,
586 set_temp11, 1);
587static SENSOR_DEVICE_ATTR(temp2_max, S_IWUSR | S_IRUGO, show_temp11,
588 set_temp11, 2);
Guenter Roeck786375f2012-01-16 22:51:45 +0100589static SENSOR_DEVICE_ATTR(temp2_offset, S_IWUSR | S_IRUGO, show_temp11,
590 set_temp11, 3);
Dirk Eibach2778fb12011-02-09 04:51:34 -0500591static SENSOR_DEVICE_ATTR(temp2_crit, S_IRUGO, show_remote_temp8,
Guenter Roeck94e55df2012-01-16 22:51:46 +0100592 set_temp8, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593static DEVICE_ATTR(temp2_crit_hyst, S_IWUSR | S_IRUGO, show_temp2_crit_hyst,
594 set_temp2_crit_hyst);
595
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100596static DEVICE_ATTR(temp2_type, S_IWUSR | S_IRUGO, show_type, set_type);
597
Jean Delvare2d457712006-09-24 20:52:15 +0200598/* Individual alarm files */
599static SENSOR_DEVICE_ATTR(fan1_min_alarm, S_IRUGO, show_alarm, NULL, 0);
600static SENSOR_DEVICE_ATTR(temp2_crit_alarm, S_IRUGO, show_alarm, NULL, 1);
Jean Delvare7817a392007-06-09 10:11:16 -0400601static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 2);
Jean Delvare2d457712006-09-24 20:52:15 +0200602static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3);
603static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 4);
604static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 6);
605/* Raw alarm file for compatibility */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
607
Guenter Roeck04738b22012-01-16 22:51:46 +0100608static DEVICE_ATTR(update_interval, S_IRUGO | S_IWUSR, show_update_interval,
609 set_update_interval);
610
Jean Delvare0e39e012006-09-24 21:16:40 +0200611static struct attribute *lm63_attributes[] = {
612 &dev_attr_pwm1.attr,
613 &dev_attr_pwm1_enable.attr,
614 &sensor_dev_attr_temp1_input.dev_attr.attr,
615 &sensor_dev_attr_temp2_input.dev_attr.attr,
616 &sensor_dev_attr_temp2_min.dev_attr.attr,
617 &sensor_dev_attr_temp1_max.dev_attr.attr,
618 &sensor_dev_attr_temp2_max.dev_attr.attr,
Guenter Roeck786375f2012-01-16 22:51:45 +0100619 &sensor_dev_attr_temp2_offset.dev_attr.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +0200620 &sensor_dev_attr_temp2_crit.dev_attr.attr,
621 &dev_attr_temp2_crit_hyst.attr,
622
623 &sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
Jean Delvare7817a392007-06-09 10:11:16 -0400624 &sensor_dev_attr_temp2_fault.dev_attr.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +0200625 &sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
626 &sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
627 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
628 &dev_attr_alarms.attr,
Guenter Roeck04738b22012-01-16 22:51:46 +0100629 &dev_attr_update_interval.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +0200630 NULL
631};
632
Guenter Roeck94e55df2012-01-16 22:51:46 +0100633/*
634 * On LM63, temp2_crit can be set only once, which should be job
635 * of the bootloader.
636 * On LM64, temp2_crit can always be set.
637 * On LM96163, temp2_crit can be set if bit 1 of the configuration
638 * register is true.
639 */
640static umode_t lm63_attribute_mode(struct kobject *kobj,
641 struct attribute *attr, int index)
642{
643 struct device *dev = container_of(kobj, struct device, kobj);
644 struct i2c_client *client = to_i2c_client(dev);
645 struct lm63_data *data = i2c_get_clientdata(client);
646
647 if (attr == &sensor_dev_attr_temp2_crit.dev_attr.attr
648 && (data->kind == lm64 ||
649 (data->kind == lm96163 && (data->config & 0x02))))
650 return attr->mode | S_IWUSR;
651
652 return attr->mode;
653}
654
Jean Delvare0e39e012006-09-24 21:16:40 +0200655static const struct attribute_group lm63_group = {
Guenter Roeck94e55df2012-01-16 22:51:46 +0100656 .is_visible = lm63_attribute_mode,
Jean Delvare0e39e012006-09-24 21:16:40 +0200657 .attrs = lm63_attributes,
658};
659
660static struct attribute *lm63_attributes_fan1[] = {
661 &sensor_dev_attr_fan1_input.dev_attr.attr,
662 &sensor_dev_attr_fan1_min.dev_attr.attr,
663
664 &sensor_dev_attr_fan1_min_alarm.dev_attr.attr,
665 NULL
666};
667
668static const struct attribute_group lm63_group_fan1 = {
669 .attrs = lm63_attributes_fan1,
670};
671
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672/*
673 * Real code
674 */
675
Jean Delvared5957be2008-07-16 19:30:13 +0200676/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare310ec792009-12-14 21:17:23 +0100677static int lm63_detect(struct i2c_client *new_client,
Jean Delvared5957be2008-07-16 19:30:13 +0200678 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Jean Delvared5957be2008-07-16 19:30:13 +0200680 struct i2c_adapter *adapter = new_client->adapter;
Jean Delvare52df6442009-12-09 20:35:57 +0100681 u8 man_id, chip_id, reg_config1, reg_config2;
682 u8 reg_alert_status, reg_alert_mask;
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200683 int address = new_client->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700684
685 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvared5957be2008-07-16 19:30:13 +0200686 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687
Jean Delvare52df6442009-12-09 20:35:57 +0100688 man_id = i2c_smbus_read_byte_data(new_client, LM63_REG_MAN_ID);
689 chip_id = i2c_smbus_read_byte_data(new_client, LM63_REG_CHIP_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
Jean Delvare52df6442009-12-09 20:35:57 +0100691 reg_config1 = i2c_smbus_read_byte_data(new_client,
692 LM63_REG_CONFIG1);
693 reg_config2 = i2c_smbus_read_byte_data(new_client,
694 LM63_REG_CONFIG2);
695 reg_alert_status = i2c_smbus_read_byte_data(new_client,
696 LM63_REG_ALERT_STATUS);
697 reg_alert_mask = i2c_smbus_read_byte_data(new_client,
698 LM63_REG_ALERT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
Jean Delvare52df6442009-12-09 20:35:57 +0100700 if (man_id != 0x01 /* National Semiconductor */
Jean Delvare52df6442009-12-09 20:35:57 +0100701 || (reg_config1 & 0x18) != 0x00
702 || (reg_config2 & 0xF8) != 0x00
703 || (reg_alert_status & 0x20) != 0x00
704 || (reg_alert_mask & 0xA4) != 0xA4) {
705 dev_dbg(&adapter->dev,
706 "Unsupported chip (man_id=0x%02X, chip_id=0x%02X)\n",
707 man_id, chip_id);
708 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709 }
710
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200711 if (chip_id == 0x41 && address == 0x4c)
712 strlcpy(info->type, "lm63", I2C_NAME_SIZE);
713 else if (chip_id == 0x51 && (address == 0x18 || address == 0x4e))
714 strlcpy(info->type, "lm64", I2C_NAME_SIZE);
Guenter Roeck210961c2012-01-16 22:51:45 +0100715 else if (chip_id == 0x49 && address == 0x4c)
716 strlcpy(info->type, "lm96163", I2C_NAME_SIZE);
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200717 else
718 return -ENODEV;
Jean Delvared5957be2008-07-16 19:30:13 +0200719
720 return 0;
721}
722
723static int lm63_probe(struct i2c_client *new_client,
724 const struct i2c_device_id *id)
725{
726 struct lm63_data *data;
727 int err;
728
729 data = kzalloc(sizeof(struct lm63_data), GFP_KERNEL);
730 if (!data) {
731 err = -ENOMEM;
732 goto exit;
733 }
734
735 i2c_set_clientdata(new_client, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 data->valid = 0;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100737 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Dirk Eibach2778fb12011-02-09 04:51:34 -0500739 /* Set the device type */
740 data->kind = id->driver_data;
741 if (data->kind == lm64)
742 data->temp2_offset = 16000;
743
744 /* Initialize chip */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 lm63_init_client(new_client);
746
747 /* Register sysfs hooks */
Guenter Roeck662bda22012-01-16 22:51:45 +0100748 err = sysfs_create_group(&new_client->dev.kobj, &lm63_group);
749 if (err)
Jean Delvared5957be2008-07-16 19:30:13 +0200750 goto exit_free;
Jean Delvare0e39e012006-09-24 21:16:40 +0200751 if (data->config & 0x04) { /* tachometer enabled */
Guenter Roeck662bda22012-01-16 22:51:45 +0100752 err = sysfs_create_group(&new_client->dev.kobj,
753 &lm63_group_fan1);
754 if (err)
Jean Delvare0e39e012006-09-24 21:16:40 +0200755 goto exit_remove_files;
756 }
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100757 if (data->kind == lm96163) {
758 err = device_create_file(&new_client->dev,
759 &dev_attr_temp2_type);
760 if (err)
761 goto exit_remove_files;
762 }
Jean Delvare0e39e012006-09-24 21:16:40 +0200763
Tony Jones1beeffe2007-08-20 13:46:20 -0700764 data->hwmon_dev = hwmon_device_register(&new_client->dev);
765 if (IS_ERR(data->hwmon_dev)) {
766 err = PTR_ERR(data->hwmon_dev);
Jean Delvare0e39e012006-09-24 21:16:40 +0200767 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400768 }
769
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770 return 0;
771
Jean Delvare0e39e012006-09-24 21:16:40 +0200772exit_remove_files:
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100773 device_remove_file(&new_client->dev, &dev_attr_temp2_type);
Jean Delvare0e39e012006-09-24 21:16:40 +0200774 sysfs_remove_group(&new_client->dev.kobj, &lm63_group);
775 sysfs_remove_group(&new_client->dev.kobj, &lm63_group_fan1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776exit_free:
777 kfree(data);
778exit:
779 return err;
780}
781
Guenter Roeck662bda22012-01-16 22:51:45 +0100782/*
783 * Ideally we shouldn't have to initialize anything, since the BIOS
784 * should have taken care of everything
785 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786static void lm63_init_client(struct i2c_client *client)
787{
788 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck04738b22012-01-16 22:51:46 +0100789 u8 convrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790
791 data->config = i2c_smbus_read_byte_data(client, LM63_REG_CONFIG1);
792 data->config_fan = i2c_smbus_read_byte_data(client,
793 LM63_REG_CONFIG_FAN);
794
795 /* Start converting if needed */
796 if (data->config & 0x40) { /* standby */
Joe Perches898eb712007-10-18 03:06:30 -0700797 dev_dbg(&client->dev, "Switching to operational mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 data->config &= 0xA7;
799 i2c_smbus_write_byte_data(client, LM63_REG_CONFIG1,
800 data->config);
801 }
Jean Delvare409c0b52012-01-16 22:51:46 +0100802 /* Tachometer is always enabled on LM64 */
803 if (data->kind == lm64)
804 data->config |= 0x04;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805
806 /* We may need pwm1_freq before ever updating the client data */
807 data->pwm1_freq = i2c_smbus_read_byte_data(client, LM63_REG_PWM_FREQ);
808 if (data->pwm1_freq == 0)
809 data->pwm1_freq = 1;
810
Guenter Roeck04738b22012-01-16 22:51:46 +0100811 switch (data->kind) {
812 case lm63:
813 case lm64:
814 data->max_convrate_hz = LM63_MAX_CONVRATE_HZ;
815 break;
816 case lm96163:
817 data->max_convrate_hz = LM96163_MAX_CONVRATE_HZ;
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100818 data->trutherm
819 = i2c_smbus_read_byte_data(client,
820 LM96163_REG_TRUTHERM) & 0x02;
Guenter Roeck04738b22012-01-16 22:51:46 +0100821 break;
822 }
823 convrate = i2c_smbus_read_byte_data(client, LM63_REG_CONVRATE);
824 if (unlikely(convrate > LM63_MAX_CONVRATE))
825 convrate = LM63_MAX_CONVRATE;
826 data->update_interval = UPDATE_INTERVAL(data->max_convrate_hz,
827 convrate);
828
Guenter Roeck210961c2012-01-16 22:51:45 +0100829 /*
Guenter Roecke872c912012-01-16 22:51:46 +0100830 * For LM96163, check if high resolution PWM
831 * and unsigned temperature format is enabled.
Guenter Roeck210961c2012-01-16 22:51:45 +0100832 */
833 if (data->kind == lm96163) {
834 u8 config_enhanced
835 = i2c_smbus_read_byte_data(client,
836 LM96163_REG_CONFIG_ENHANCED);
837 if ((config_enhanced & 0x10)
838 && !(data->config_fan & 0x08) && data->pwm1_freq == 8)
839 data->pwm_highres = true;
840 if (config_enhanced & 0x08)
Guenter Roecke872c912012-01-16 22:51:46 +0100841 data->remote_unsigned = true;
Guenter Roeck210961c2012-01-16 22:51:45 +0100842 }
843
Linus Torvalds1da177e2005-04-16 15:20:36 -0700844 /* Show some debug info about the LM63 configuration */
Jean Delvare409c0b52012-01-16 22:51:46 +0100845 if (data->kind == lm63)
846 dev_dbg(&client->dev, "Alert/tach pin configured for %s\n",
847 (data->config & 0x04) ? "tachometer input" :
848 "alert output");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 dev_dbg(&client->dev, "PWM clock %s kHz, output frequency %u Hz\n",
850 (data->config_fan & 0x08) ? "1.4" : "360",
851 ((data->config_fan & 0x08) ? 700 : 180000) / data->pwm1_freq);
852 dev_dbg(&client->dev, "PWM output active %s, %s mode\n",
853 (data->config_fan & 0x10) ? "low" : "high",
854 (data->config_fan & 0x20) ? "manual" : "auto");
855}
856
Jean Delvared5957be2008-07-16 19:30:13 +0200857static int lm63_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400859 struct lm63_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700860
Tony Jones1beeffe2007-08-20 13:46:20 -0700861 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100862 device_remove_file(&client->dev, &dev_attr_temp2_type);
Jean Delvare0e39e012006-09-24 21:16:40 +0200863 sysfs_remove_group(&client->dev.kobj, &lm63_group);
864 sysfs_remove_group(&client->dev.kobj, &lm63_group_fan1);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400865
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400866 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700867 return 0;
868}
869
870static struct lm63_data *lm63_update_device(struct device *dev)
871{
872 struct i2c_client *client = to_i2c_client(dev);
873 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck04738b22012-01-16 22:51:46 +0100874 unsigned long next_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100876 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877
Guenter Roeck04738b22012-01-16 22:51:46 +0100878 next_update = data->last_updated
879 + msecs_to_jiffies(data->update_interval) + 1;
880
881 if (time_after(jiffies, next_update) || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882 if (data->config & 0x04) { /* tachometer enabled */
883 /* order matters for fan1_input */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200884 data->fan[0] = i2c_smbus_read_byte_data(client,
885 LM63_REG_TACH_COUNT_LSB) & 0xFC;
886 data->fan[0] |= i2c_smbus_read_byte_data(client,
887 LM63_REG_TACH_COUNT_MSB) << 8;
888 data->fan[1] = (i2c_smbus_read_byte_data(client,
889 LM63_REG_TACH_LIMIT_LSB) & 0xFC)
890 | (i2c_smbus_read_byte_data(client,
891 LM63_REG_TACH_LIMIT_MSB) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 }
893
894 data->pwm1_freq = i2c_smbus_read_byte_data(client,
895 LM63_REG_PWM_FREQ);
896 if (data->pwm1_freq == 0)
897 data->pwm1_freq = 1;
898 data->pwm1_value = i2c_smbus_read_byte_data(client,
899 LM63_REG_PWM_VALUE);
900
Jean Delvarebc51ae12005-06-05 20:32:27 +0200901 data->temp8[0] = i2c_smbus_read_byte_data(client,
902 LM63_REG_LOCAL_TEMP);
903 data->temp8[1] = i2c_smbus_read_byte_data(client,
904 LM63_REG_LOCAL_HIGH);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905
906 /* order matters for temp2_input */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200907 data->temp11[0] = i2c_smbus_read_byte_data(client,
908 LM63_REG_REMOTE_TEMP_MSB) << 8;
909 data->temp11[0] |= i2c_smbus_read_byte_data(client,
910 LM63_REG_REMOTE_TEMP_LSB);
911 data->temp11[1] = (i2c_smbus_read_byte_data(client,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 LM63_REG_REMOTE_LOW_MSB) << 8)
913 | i2c_smbus_read_byte_data(client,
914 LM63_REG_REMOTE_LOW_LSB);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200915 data->temp11[2] = (i2c_smbus_read_byte_data(client,
916 LM63_REG_REMOTE_HIGH_MSB) << 8)
917 | i2c_smbus_read_byte_data(client,
918 LM63_REG_REMOTE_HIGH_LSB);
Guenter Roeck786375f2012-01-16 22:51:45 +0100919 data->temp11[3] = (i2c_smbus_read_byte_data(client,
920 LM63_REG_REMOTE_OFFSET_MSB) << 8)
921 | i2c_smbus_read_byte_data(client,
922 LM63_REG_REMOTE_OFFSET_LSB);
Guenter Roecke872c912012-01-16 22:51:46 +0100923
924 if (data->kind == lm96163)
925 data->temp11u = (i2c_smbus_read_byte_data(client,
926 LM96163_REG_REMOTE_TEMP_U_MSB) << 8)
927 | i2c_smbus_read_byte_data(client,
928 LM96163_REG_REMOTE_TEMP_U_LSB);
929
Jean Delvarebc51ae12005-06-05 20:32:27 +0200930 data->temp8[2] = i2c_smbus_read_byte_data(client,
931 LM63_REG_REMOTE_TCRIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 data->temp2_crit_hyst = i2c_smbus_read_byte_data(client,
933 LM63_REG_REMOTE_TCRIT_HYST);
934
935 data->alarms = i2c_smbus_read_byte_data(client,
936 LM63_REG_ALERT_STATUS) & 0x7F;
937
938 data->last_updated = jiffies;
939 data->valid = 1;
940 }
941
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100942 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943
944 return data;
945}
946
947static int __init sensors_lm63_init(void)
948{
949 return i2c_add_driver(&lm63_driver);
950}
951
952static void __exit sensors_lm63_exit(void)
953{
954 i2c_del_driver(&lm63_driver);
955}
956
957MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
958MODULE_DESCRIPTION("LM63 driver");
959MODULE_LICENSE("GPL");
960
961module_init(sensors_lm63_init);
962module_exit(sensors_lm63_exit);