blob: 1c06a333ba20716f420b3a541b04ac194810f04e [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
Jean Delvared216f682012-01-16 22:51:47 +010078#define LM63_REG_LUT_TEMP_HYST 0x4F
79#define LM63_REG_LUT_TEMP(nr) (0x50 + 2 * (nr))
80#define LM63_REG_LUT_PWM(nr) (0x51 + 2 * (nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82#define LM63_REG_LOCAL_TEMP 0x00
83#define LM63_REG_LOCAL_HIGH 0x05
84
85#define LM63_REG_REMOTE_TEMP_MSB 0x01
86#define LM63_REG_REMOTE_TEMP_LSB 0x10
87#define LM63_REG_REMOTE_OFFSET_MSB 0x11
88#define LM63_REG_REMOTE_OFFSET_LSB 0x12
89#define LM63_REG_REMOTE_HIGH_MSB 0x07
90#define LM63_REG_REMOTE_HIGH_LSB 0x13
91#define LM63_REG_REMOTE_LOW_MSB 0x08
92#define LM63_REG_REMOTE_LOW_LSB 0x14
93#define LM63_REG_REMOTE_TCRIT 0x19
94#define LM63_REG_REMOTE_TCRIT_HYST 0x21
95
96#define LM63_REG_ALERT_STATUS 0x02
97#define LM63_REG_ALERT_MASK 0x16
98
99#define LM63_REG_MAN_ID 0xFE
100#define LM63_REG_CHIP_ID 0xFF
101
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100102#define LM96163_REG_TRUTHERM 0x30
Guenter Roecke872c912012-01-16 22:51:46 +0100103#define LM96163_REG_REMOTE_TEMP_U_MSB 0x31
104#define LM96163_REG_REMOTE_TEMP_U_LSB 0x32
Guenter Roeck210961c2012-01-16 22:51:45 +0100105#define LM96163_REG_CONFIG_ENHANCED 0x45
106
Guenter Roeck04738b22012-01-16 22:51:46 +0100107#define LM63_MAX_CONVRATE 9
108
109#define LM63_MAX_CONVRATE_HZ 32
110#define LM96163_MAX_CONVRATE_HZ 26
111
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112/*
113 * Conversions and various macros
114 * For tachometer counts, the LM63 uses 16-bit values.
115 * For local temperature and high limit, remote critical limit and hysteresis
Steven Cole44bbe872005-05-03 18:21:25 -0600116 * value, it uses signed 8-bit values with LSB = 1 degree Celsius.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117 * For remote temperature, low and high limits, it uses signed 11-bit values
Steven Cole44bbe872005-05-03 18:21:25 -0600118 * with LSB = 0.125 degree Celsius, left-justified in 16-bit registers.
Dirk Eibach2778fb12011-02-09 04:51:34 -0500119 * For LM64 the actual remote diode temperature is 16 degree Celsius higher
120 * than the register reading. Remote temperature setpoints have to be
121 * adapted accordingly.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122 */
123
124#define FAN_FROM_REG(reg) ((reg) == 0xFFFC || (reg) == 0 ? 0 : \
125 5400000 / (reg))
126#define FAN_TO_REG(val) ((val) <= 82 ? 0xFFFC : \
127 (5400000 / (val)) & 0xFFFC)
128#define TEMP8_FROM_REG(reg) ((reg) * 1000)
129#define TEMP8_TO_REG(val) ((val) <= -128000 ? -128 : \
130 (val) >= 127000 ? 127 : \
131 (val) < 0 ? ((val) - 500) / 1000 : \
132 ((val) + 500) / 1000)
Guenter Roeck94e55df2012-01-16 22:51:46 +0100133#define TEMP8U_TO_REG(val) ((val) <= 0 ? 0 : \
134 (val) >= 255000 ? 255 : \
135 ((val) + 500) / 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136#define TEMP11_FROM_REG(reg) ((reg) / 32 * 125)
137#define TEMP11_TO_REG(val) ((val) <= -128000 ? 0x8000 : \
138 (val) >= 127875 ? 0x7FE0 : \
139 (val) < 0 ? ((val) - 62) / 125 * 32 : \
140 ((val) + 62) / 125 * 32)
Guenter Roecke872c912012-01-16 22:51:46 +0100141#define TEMP11U_TO_REG(val) ((val) <= 0 ? 0 : \
142 (val) >= 255875 ? 0xFFE0 : \
143 ((val) + 62) / 125 * 32)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144#define HYST_TO_REG(val) ((val) <= 0 ? 0 : \
145 (val) >= 127000 ? 127 : \
146 ((val) + 500) / 1000)
147
Guenter Roeck04738b22012-01-16 22:51:46 +0100148#define UPDATE_INTERVAL(max, rate) \
149 ((1000 << (LM63_MAX_CONVRATE - (rate))) / (max))
150
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151/*
152 * Functions declaration
153 */
154
Jean Delvared5957be2008-07-16 19:30:13 +0200155static int lm63_probe(struct i2c_client *client,
156 const struct i2c_device_id *id);
157static int lm63_remove(struct i2c_client *client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158
159static struct lm63_data *lm63_update_device(struct device *dev);
160
Jean Delvare310ec792009-12-14 21:17:23 +0100161static int lm63_detect(struct i2c_client *client, struct i2c_board_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700162static void lm63_init_client(struct i2c_client *client);
163
Guenter Roeck210961c2012-01-16 22:51:45 +0100164enum chips { lm63, lm64, lm96163 };
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200165
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166/*
167 * Driver data (common to all clients)
168 */
169
Jean Delvared5957be2008-07-16 19:30:13 +0200170static const struct i2c_device_id lm63_id[] = {
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200171 { "lm63", lm63 },
172 { "lm64", lm64 },
Guenter Roeck210961c2012-01-16 22:51:45 +0100173 { "lm96163", lm96163 },
Jean Delvared5957be2008-07-16 19:30:13 +0200174 { }
175};
176MODULE_DEVICE_TABLE(i2c, lm63_id);
177
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178static struct i2c_driver lm63_driver = {
Jean Delvared5957be2008-07-16 19:30:13 +0200179 .class = I2C_CLASS_HWMON,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100180 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100181 .name = "lm63",
182 },
Jean Delvared5957be2008-07-16 19:30:13 +0200183 .probe = lm63_probe,
184 .remove = lm63_remove,
185 .id_table = lm63_id,
186 .detect = lm63_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +0100187 .address_list = normal_i2c,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188};
189
190/*
191 * Client data (each client gets its own)
192 */
193
194struct lm63_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700195 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100196 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197 char valid; /* zero until following fields are valid */
Jean Delvared216f682012-01-16 22:51:47 +0100198 char lut_valid; /* zero until lut fields are valid */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700199 unsigned long last_updated; /* in jiffies */
Jean Delvared216f682012-01-16 22:51:47 +0100200 unsigned long lut_last_updated; /* in jiffies */
Guenter Roeck04738b22012-01-16 22:51:46 +0100201 enum chips kind;
Dirk Eibach2778fb12011-02-09 04:51:34 -0500202 int temp2_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203
Guenter Roeck04738b22012-01-16 22:51:46 +0100204 int update_interval; /* in milliseconds */
205 int max_convrate_hz;
206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207 /* registers values */
208 u8 config, config_fan;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200209 u16 fan[2]; /* 0: input
210 1: low limit */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211 u8 pwm1_freq;
Jean Delvared216f682012-01-16 22:51:47 +0100212 u8 pwm1[9]; /* 0: current output
213 1-8: lookup table */
214 s8 temp8[11]; /* 0: local input
Jean Delvarebc51ae12005-06-05 20:32:27 +0200215 1: local high limit
Jean Delvared216f682012-01-16 22:51:47 +0100216 2: remote critical limit
217 3-10: lookup table */
Guenter Roeck786375f2012-01-16 22:51:45 +0100218 s16 temp11[4]; /* 0: remote input
Jean Delvarebc51ae12005-06-05 20:32:27 +0200219 1: remote low limit
Guenter Roeck786375f2012-01-16 22:51:45 +0100220 2: remote high limit
221 3: remote offset */
Guenter Roecke872c912012-01-16 22:51:46 +0100222 u16 temp11u; /* remote input (unsigned) */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223 u8 temp2_crit_hyst;
Jean Delvared216f682012-01-16 22:51:47 +0100224 u8 lut_temp_hyst;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225 u8 alarms;
Guenter Roeck210961c2012-01-16 22:51:45 +0100226 bool pwm_highres;
Jean Delvared216f682012-01-16 22:51:47 +0100227 bool lut_temp_highres;
Guenter Roecke872c912012-01-16 22:51:46 +0100228 bool remote_unsigned; /* true if unsigned remote upper limits */
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100229 bool trutherm;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230};
231
Guenter Roecke872c912012-01-16 22:51:46 +0100232static inline int temp8_from_reg(struct lm63_data *data, int nr)
233{
234 if (data->remote_unsigned)
235 return TEMP8_FROM_REG((u8)data->temp8[nr]);
236 return TEMP8_FROM_REG(data->temp8[nr]);
237}
238
Jean Delvared216f682012-01-16 22:51:47 +0100239static inline int lut_temp_from_reg(struct lm63_data *data, int nr)
240{
241 return data->temp8[nr] * (data->lut_temp_highres ? 500 : 1000);
242}
243
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244/*
245 * Sysfs callback functions and files
246 */
247
Jean Delvarebc51ae12005-06-05 20:32:27 +0200248static ssize_t show_fan(struct device *dev, struct device_attribute *devattr,
249 char *buf)
250{
251 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
252 struct lm63_data *data = lm63_update_device(dev);
253 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700255
Jean Delvarebc51ae12005-06-05 20:32:27 +0200256static ssize_t set_fan(struct device *dev, struct device_attribute *dummy,
257 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258{
259 struct i2c_client *client = to_i2c_client(dev);
260 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck662bda22012-01-16 22:51:45 +0100261 unsigned long val;
262 int err;
263
264 err = kstrtoul(buf, 10, &val);
265 if (err)
266 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100268 mutex_lock(&data->update_lock);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200269 data->fan[1] = FAN_TO_REG(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270 i2c_smbus_write_byte_data(client, LM63_REG_TACH_LIMIT_LSB,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200271 data->fan[1] & 0xFF);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272 i2c_smbus_write_byte_data(client, LM63_REG_TACH_LIMIT_MSB,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200273 data->fan[1] >> 8);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100274 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 return count;
276}
277
Jean Delvared216f682012-01-16 22:51:47 +0100278static ssize_t show_pwm1(struct device *dev, struct device_attribute *devattr,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200279 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700280{
Jean Delvared216f682012-01-16 22:51:47 +0100281 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282 struct lm63_data *data = lm63_update_device(dev);
Jean Delvared216f682012-01-16 22:51:47 +0100283 int nr = attr->index;
Guenter Roeck210961c2012-01-16 22:51:45 +0100284 int pwm;
285
286 if (data->pwm_highres)
Jean Delvared216f682012-01-16 22:51:47 +0100287 pwm = data->pwm1[nr];
Guenter Roeck210961c2012-01-16 22:51:45 +0100288 else
Jean Delvared216f682012-01-16 22:51:47 +0100289 pwm = data->pwm1[nr] >= 2 * data->pwm1_freq ?
290 255 : (data->pwm1[nr] * 255 + data->pwm1_freq) /
Guenter Roeck210961c2012-01-16 22:51:45 +0100291 (2 * data->pwm1_freq);
292
293 return sprintf(buf, "%d\n", pwm);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294}
295
Jean Delvarebc51ae12005-06-05 20:32:27 +0200296static ssize_t set_pwm1(struct device *dev, struct device_attribute *dummy,
297 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298{
299 struct i2c_client *client = to_i2c_client(dev);
300 struct lm63_data *data = i2c_get_clientdata(client);
301 unsigned long val;
Guenter Roeck662bda22012-01-16 22:51:45 +0100302 int err;
303
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304 if (!(data->config_fan & 0x20)) /* register is read-only */
305 return -EPERM;
306
Guenter Roeck662bda22012-01-16 22:51:45 +0100307 err = kstrtoul(buf, 10, &val);
308 if (err)
309 return err;
310
Guenter Roeck210961c2012-01-16 22:51:45 +0100311 val = SENSORS_LIMIT(val, 0, 255);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100312 mutex_lock(&data->update_lock);
Jean Delvared216f682012-01-16 22:51:47 +0100313 data->pwm1[0] = data->pwm_highres ? val :
314 (val * data->pwm1_freq * 2 + 127) / 255;
315 i2c_smbus_write_byte_data(client, LM63_REG_PWM_VALUE, data->pwm1[0]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100316 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 return count;
318}
319
Guenter Roeck662bda22012-01-16 22:51:45 +0100320static ssize_t show_pwm1_enable(struct device *dev,
321 struct device_attribute *dummy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322{
323 struct lm63_data *data = lm63_update_device(dev);
324 return sprintf(buf, "%d\n", data->config_fan & 0x20 ? 1 : 2);
325}
326
Dirk Eibach2778fb12011-02-09 04:51:34 -0500327/*
328 * There are 8bit registers for both local(temp1) and remote(temp2) sensor.
329 * For remote sensor registers temp2_offset has to be considered,
330 * for local sensor it must not.
331 * So we need separate 8bit accessors for local and remote sensor.
332 */
333static ssize_t show_local_temp8(struct device *dev,
334 struct device_attribute *devattr,
335 char *buf)
Jean Delvarebc51ae12005-06-05 20:32:27 +0200336{
337 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
338 struct lm63_data *data = lm63_update_device(dev);
339 return sprintf(buf, "%d\n", TEMP8_FROM_REG(data->temp8[attr->index]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341
Dirk Eibach2778fb12011-02-09 04:51:34 -0500342static ssize_t show_remote_temp8(struct device *dev,
343 struct device_attribute *devattr,
344 char *buf)
345{
346 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
347 struct lm63_data *data = lm63_update_device(dev);
Guenter Roecke872c912012-01-16 22:51:46 +0100348 return sprintf(buf, "%d\n", temp8_from_reg(data, attr->index)
Dirk Eibach2778fb12011-02-09 04:51:34 -0500349 + data->temp2_offset);
350}
351
Jean Delvared216f682012-01-16 22:51:47 +0100352static ssize_t show_lut_temp(struct device *dev,
353 struct device_attribute *devattr,
354 char *buf)
355{
356 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
357 struct lm63_data *data = lm63_update_device(dev);
358 return sprintf(buf, "%d\n", lut_temp_from_reg(data, attr->index)
359 + data->temp2_offset);
360}
361
Guenter Roeck94e55df2012-01-16 22:51:46 +0100362static ssize_t set_temp8(struct device *dev, struct device_attribute *devattr,
363 const char *buf, size_t count)
Jean Delvarebc51ae12005-06-05 20:32:27 +0200364{
Guenter Roeck94e55df2012-01-16 22:51:46 +0100365 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200366 struct i2c_client *client = to_i2c_client(dev);
367 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck94e55df2012-01-16 22:51:46 +0100368 int nr = attr->index;
369 int reg = nr == 2 ? LM63_REG_REMOTE_TCRIT : LM63_REG_LOCAL_HIGH;
Guenter Roeck662bda22012-01-16 22:51:45 +0100370 long val;
371 int err;
Guenter Roeck94e55df2012-01-16 22:51:46 +0100372 int temp;
Guenter Roeck662bda22012-01-16 22:51:45 +0100373
374 err = kstrtol(buf, 10, &val);
375 if (err)
376 return err;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200377
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100378 mutex_lock(&data->update_lock);
Guenter Roeck94e55df2012-01-16 22:51:46 +0100379 if (nr == 2) {
380 if (data->remote_unsigned)
381 temp = TEMP8U_TO_REG(val - data->temp2_offset);
382 else
383 temp = TEMP8_TO_REG(val - data->temp2_offset);
384 } else {
385 temp = TEMP8_TO_REG(val);
386 }
387 data->temp8[nr] = temp;
388 i2c_smbus_write_byte_data(client, reg, temp);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100389 mutex_unlock(&data->update_lock);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200390 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391}
Jean Delvarebc51ae12005-06-05 20:32:27 +0200392
393static ssize_t show_temp11(struct device *dev, struct device_attribute *devattr,
394 char *buf)
395{
396 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
397 struct lm63_data *data = lm63_update_device(dev);
Guenter Roecke872c912012-01-16 22:51:46 +0100398 int nr = attr->index;
399 int temp;
400
401 if (!nr) {
402 /*
403 * Use unsigned temperature unless its value is zero.
404 * If it is zero, use signed temperature.
405 */
406 if (data->temp11u)
407 temp = TEMP11_FROM_REG(data->temp11u);
408 else
409 temp = TEMP11_FROM_REG(data->temp11[nr]);
410 } else {
411 if (data->remote_unsigned && nr == 2)
412 temp = TEMP11_FROM_REG((u16)data->temp11[nr]);
413 else
414 temp = TEMP11_FROM_REG(data->temp11[nr]);
415 }
416 return sprintf(buf, "%d\n", temp + data->temp2_offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700417}
Jean Delvarebc51ae12005-06-05 20:32:27 +0200418
419static ssize_t set_temp11(struct device *dev, struct device_attribute *devattr,
420 const char *buf, size_t count)
421{
Guenter Roeck786375f2012-01-16 22:51:45 +0100422 static const u8 reg[6] = {
Jean Delvarebc51ae12005-06-05 20:32:27 +0200423 LM63_REG_REMOTE_LOW_MSB,
424 LM63_REG_REMOTE_LOW_LSB,
425 LM63_REG_REMOTE_HIGH_MSB,
426 LM63_REG_REMOTE_HIGH_LSB,
Guenter Roeck786375f2012-01-16 22:51:45 +0100427 LM63_REG_REMOTE_OFFSET_MSB,
428 LM63_REG_REMOTE_OFFSET_LSB,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200429 };
430
431 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
432 struct i2c_client *client = to_i2c_client(dev);
433 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck662bda22012-01-16 22:51:45 +0100434 long val;
435 int err;
Jean Delvarebc51ae12005-06-05 20:32:27 +0200436 int nr = attr->index;
437
Guenter Roeck662bda22012-01-16 22:51:45 +0100438 err = kstrtol(buf, 10, &val);
439 if (err)
440 return err;
441
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100442 mutex_lock(&data->update_lock);
Guenter Roecke872c912012-01-16 22:51:46 +0100443 if (data->remote_unsigned && nr == 2)
444 data->temp11[nr] = TEMP11U_TO_REG(val - data->temp2_offset);
445 else
446 data->temp11[nr] = TEMP11_TO_REG(val - data->temp2_offset);
447
Jean Delvarebc51ae12005-06-05 20:32:27 +0200448 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2],
449 data->temp11[nr] >> 8);
450 i2c_smbus_write_byte_data(client, reg[(nr - 1) * 2 + 1],
451 data->temp11[nr] & 0xff);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100452 mutex_unlock(&data->update_lock);
Jean Delvarebc51ae12005-06-05 20:32:27 +0200453 return count;
454}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Guenter Roeck662bda22012-01-16 22:51:45 +0100456/*
457 * Hysteresis register holds a relative value, while we want to present
458 * an absolute to user-space
459 */
460static ssize_t show_temp2_crit_hyst(struct device *dev,
461 struct device_attribute *dummy, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462{
463 struct lm63_data *data = lm63_update_device(dev);
Guenter Roecke872c912012-01-16 22:51:46 +0100464 return sprintf(buf, "%d\n", temp8_from_reg(data, 2)
Dirk Eibach2778fb12011-02-09 04:51:34 -0500465 + data->temp2_offset
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 - TEMP8_FROM_REG(data->temp2_crit_hyst));
467}
468
Jean Delvared216f682012-01-16 22:51:47 +0100469static ssize_t show_lut_temp_hyst(struct device *dev,
470 struct device_attribute *devattr, char *buf)
471{
472 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
473 struct lm63_data *data = lm63_update_device(dev);
474
475 return sprintf(buf, "%d\n", lut_temp_from_reg(data, attr->index)
476 + data->temp2_offset
477 - TEMP8_FROM_REG(data->lut_temp_hyst));
478}
479
Guenter Roeck662bda22012-01-16 22:51:45 +0100480/*
481 * And now the other way around, user-space provides an absolute
482 * hysteresis value and we have to store a relative one
483 */
484static ssize_t set_temp2_crit_hyst(struct device *dev,
485 struct device_attribute *dummy,
Jean Delvarebc51ae12005-06-05 20:32:27 +0200486 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487{
488 struct i2c_client *client = to_i2c_client(dev);
489 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck662bda22012-01-16 22:51:45 +0100490 long val;
491 int err;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 long hyst;
493
Guenter Roeck662bda22012-01-16 22:51:45 +0100494 err = kstrtol(buf, 10, &val);
495 if (err)
496 return err;
497
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100498 mutex_lock(&data->update_lock);
Guenter Roecke872c912012-01-16 22:51:46 +0100499 hyst = temp8_from_reg(data, 2) + data->temp2_offset - val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 i2c_smbus_write_byte_data(client, LM63_REG_REMOTE_TCRIT_HYST,
501 HYST_TO_REG(hyst));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100502 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return count;
504}
505
Guenter Roeck04738b22012-01-16 22:51:46 +0100506/*
507 * Set conversion rate.
508 * client->update_lock must be held when calling this function.
509 */
510static void lm63_set_convrate(struct i2c_client *client, struct lm63_data *data,
511 unsigned int interval)
512{
513 int i;
514 unsigned int update_interval;
515
516 /* Shift calculations to avoid rounding errors */
517 interval <<= 6;
518
519 /* find the nearest update rate */
520 update_interval = (1 << (LM63_MAX_CONVRATE + 6)) * 1000
521 / data->max_convrate_hz;
522 for (i = 0; i < LM63_MAX_CONVRATE; i++, update_interval >>= 1)
523 if (interval >= update_interval * 3 / 4)
524 break;
525
526 i2c_smbus_write_byte_data(client, LM63_REG_CONVRATE, i);
527 data->update_interval = UPDATE_INTERVAL(data->max_convrate_hz, i);
528}
529
530static ssize_t show_update_interval(struct device *dev,
531 struct device_attribute *attr, char *buf)
532{
533 struct lm63_data *data = dev_get_drvdata(dev);
534
535 return sprintf(buf, "%u\n", data->update_interval);
536}
537
538static ssize_t set_update_interval(struct device *dev,
539 struct device_attribute *attr,
540 const char *buf, size_t count)
541{
542 struct i2c_client *client = to_i2c_client(dev);
543 struct lm63_data *data = i2c_get_clientdata(client);
544 unsigned long val;
545 int err;
546
547 err = kstrtoul(buf, 10, &val);
548 if (err)
549 return err;
550
551 mutex_lock(&data->update_lock);
552 lm63_set_convrate(client, data, SENSORS_LIMIT(val, 0, 100000));
553 mutex_unlock(&data->update_lock);
554
555 return count;
556}
557
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100558static ssize_t show_type(struct device *dev, struct device_attribute *attr,
559 char *buf)
560{
561 struct i2c_client *client = to_i2c_client(dev);
562 struct lm63_data *data = i2c_get_clientdata(client);
563
564 return sprintf(buf, data->trutherm ? "1\n" : "2\n");
565}
566
567static ssize_t set_type(struct device *dev, struct device_attribute *attr,
568 const char *buf, size_t count)
569{
570 struct i2c_client *client = to_i2c_client(dev);
571 struct lm63_data *data = i2c_get_clientdata(client);
572 unsigned long val;
573 int ret;
574 u8 reg;
575
576 ret = kstrtoul(buf, 10, &val);
577 if (ret < 0)
578 return ret;
579 if (val != 1 && val != 2)
580 return -EINVAL;
581
582 mutex_lock(&data->update_lock);
583 data->trutherm = val == 1;
584 reg = i2c_smbus_read_byte_data(client, LM96163_REG_TRUTHERM) & ~0x02;
585 i2c_smbus_write_byte_data(client, LM96163_REG_TRUTHERM,
586 reg | (data->trutherm ? 0x02 : 0x00));
587 data->valid = 0;
588 mutex_unlock(&data->update_lock);
589
590 return count;
591}
592
Jean Delvarebc51ae12005-06-05 20:32:27 +0200593static ssize_t show_alarms(struct device *dev, struct device_attribute *dummy,
594 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595{
596 struct lm63_data *data = lm63_update_device(dev);
597 return sprintf(buf, "%u\n", data->alarms);
598}
599
Jean Delvare2d457712006-09-24 20:52:15 +0200600static ssize_t show_alarm(struct device *dev, struct device_attribute *devattr,
601 char *buf)
602{
603 struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr);
604 struct lm63_data *data = lm63_update_device(dev);
605 int bitnr = attr->index;
606
607 return sprintf(buf, "%u\n", (data->alarms >> bitnr) & 1);
608}
609
Jean Delvarebc51ae12005-06-05 20:32:27 +0200610static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0);
611static SENSOR_DEVICE_ATTR(fan1_min, S_IWUSR | S_IRUGO, show_fan,
612 set_fan, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613
Jean Delvared216f682012-01-16 22:51:47 +0100614static SENSOR_DEVICE_ATTR(pwm1, S_IWUSR | S_IRUGO, show_pwm1, set_pwm1, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615static DEVICE_ATTR(pwm1_enable, S_IRUGO, show_pwm1_enable, NULL);
Jean Delvared216f682012-01-16 22:51:47 +0100616static SENSOR_DEVICE_ATTR(pwm1_auto_point1_pwm, S_IRUGO, show_pwm1, NULL, 1);
617static SENSOR_DEVICE_ATTR(pwm1_auto_point1_temp, S_IRUGO,
618 show_lut_temp, NULL, 3);
619static SENSOR_DEVICE_ATTR(pwm1_auto_point1_temp_hyst, S_IRUGO,
620 show_lut_temp_hyst, NULL, 3);
621static SENSOR_DEVICE_ATTR(pwm1_auto_point2_pwm, S_IRUGO, show_pwm1, NULL, 2);
622static SENSOR_DEVICE_ATTR(pwm1_auto_point2_temp, S_IRUGO,
623 show_lut_temp, NULL, 4);
624static SENSOR_DEVICE_ATTR(pwm1_auto_point2_temp_hyst, S_IRUGO,
625 show_lut_temp_hyst, NULL, 4);
626static SENSOR_DEVICE_ATTR(pwm1_auto_point3_pwm, S_IRUGO, show_pwm1, NULL, 3);
627static SENSOR_DEVICE_ATTR(pwm1_auto_point3_temp, S_IRUGO,
628 show_lut_temp, NULL, 5);
629static SENSOR_DEVICE_ATTR(pwm1_auto_point3_temp_hyst, S_IRUGO,
630 show_lut_temp_hyst, NULL, 5);
631static SENSOR_DEVICE_ATTR(pwm1_auto_point4_pwm, S_IRUGO, show_pwm1, NULL, 4);
632static SENSOR_DEVICE_ATTR(pwm1_auto_point4_temp, S_IRUGO,
633 show_lut_temp, NULL, 6);
634static SENSOR_DEVICE_ATTR(pwm1_auto_point4_temp_hyst, S_IRUGO,
635 show_lut_temp_hyst, NULL, 6);
636static SENSOR_DEVICE_ATTR(pwm1_auto_point5_pwm, S_IRUGO, show_pwm1, NULL, 5);
637static SENSOR_DEVICE_ATTR(pwm1_auto_point5_temp, S_IRUGO,
638 show_lut_temp, NULL, 7);
639static SENSOR_DEVICE_ATTR(pwm1_auto_point5_temp_hyst, S_IRUGO,
640 show_lut_temp_hyst, NULL, 7);
641static SENSOR_DEVICE_ATTR(pwm1_auto_point6_pwm, S_IRUGO, show_pwm1, NULL, 6);
642static SENSOR_DEVICE_ATTR(pwm1_auto_point6_temp, S_IRUGO,
643 show_lut_temp, NULL, 8);
644static SENSOR_DEVICE_ATTR(pwm1_auto_point6_temp_hyst, S_IRUGO,
645 show_lut_temp_hyst, NULL, 8);
646static SENSOR_DEVICE_ATTR(pwm1_auto_point7_pwm, S_IRUGO, show_pwm1, NULL, 7);
647static SENSOR_DEVICE_ATTR(pwm1_auto_point7_temp, S_IRUGO,
648 show_lut_temp, NULL, 9);
649static SENSOR_DEVICE_ATTR(pwm1_auto_point7_temp_hyst, S_IRUGO,
650 show_lut_temp_hyst, NULL, 9);
651static SENSOR_DEVICE_ATTR(pwm1_auto_point8_pwm, S_IRUGO, show_pwm1, NULL, 8);
652static SENSOR_DEVICE_ATTR(pwm1_auto_point8_temp, S_IRUGO,
653 show_lut_temp, NULL, 10);
654static SENSOR_DEVICE_ATTR(pwm1_auto_point8_temp_hyst, S_IRUGO,
655 show_lut_temp_hyst, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656
Dirk Eibach2778fb12011-02-09 04:51:34 -0500657static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_local_temp8, NULL, 0);
658static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_local_temp8,
Guenter Roeck94e55df2012-01-16 22:51:46 +0100659 set_temp8, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660
Jean Delvarebc51ae12005-06-05 20:32:27 +0200661static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp11, NULL, 0);
662static SENSOR_DEVICE_ATTR(temp2_min, S_IWUSR | S_IRUGO, show_temp11,
663 set_temp11, 1);
664static SENSOR_DEVICE_ATTR(temp2_max, S_IWUSR | S_IRUGO, show_temp11,
665 set_temp11, 2);
Guenter Roeck786375f2012-01-16 22:51:45 +0100666static SENSOR_DEVICE_ATTR(temp2_offset, S_IWUSR | S_IRUGO, show_temp11,
667 set_temp11, 3);
Dirk Eibach2778fb12011-02-09 04:51:34 -0500668static SENSOR_DEVICE_ATTR(temp2_crit, S_IRUGO, show_remote_temp8,
Guenter Roeck94e55df2012-01-16 22:51:46 +0100669 set_temp8, 2);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670static DEVICE_ATTR(temp2_crit_hyst, S_IWUSR | S_IRUGO, show_temp2_crit_hyst,
671 set_temp2_crit_hyst);
672
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100673static DEVICE_ATTR(temp2_type, S_IWUSR | S_IRUGO, show_type, set_type);
674
Jean Delvare2d457712006-09-24 20:52:15 +0200675/* Individual alarm files */
676static SENSOR_DEVICE_ATTR(fan1_min_alarm, S_IRUGO, show_alarm, NULL, 0);
677static SENSOR_DEVICE_ATTR(temp2_crit_alarm, S_IRUGO, show_alarm, NULL, 1);
Jean Delvare7817a392007-06-09 10:11:16 -0400678static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 2);
Jean Delvare2d457712006-09-24 20:52:15 +0200679static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3);
680static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 4);
681static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 6);
682/* Raw alarm file for compatibility */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
684
Guenter Roeck04738b22012-01-16 22:51:46 +0100685static DEVICE_ATTR(update_interval, S_IRUGO | S_IWUSR, show_update_interval,
686 set_update_interval);
687
Jean Delvare0e39e012006-09-24 21:16:40 +0200688static struct attribute *lm63_attributes[] = {
Jean Delvared216f682012-01-16 22:51:47 +0100689 &sensor_dev_attr_pwm1.dev_attr.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +0200690 &dev_attr_pwm1_enable.attr,
Jean Delvared216f682012-01-16 22:51:47 +0100691 &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr,
692 &sensor_dev_attr_pwm1_auto_point1_temp.dev_attr.attr,
693 &sensor_dev_attr_pwm1_auto_point1_temp_hyst.dev_attr.attr,
694 &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr,
695 &sensor_dev_attr_pwm1_auto_point2_temp.dev_attr.attr,
696 &sensor_dev_attr_pwm1_auto_point2_temp_hyst.dev_attr.attr,
697 &sensor_dev_attr_pwm1_auto_point3_pwm.dev_attr.attr,
698 &sensor_dev_attr_pwm1_auto_point3_temp.dev_attr.attr,
699 &sensor_dev_attr_pwm1_auto_point3_temp_hyst.dev_attr.attr,
700 &sensor_dev_attr_pwm1_auto_point4_pwm.dev_attr.attr,
701 &sensor_dev_attr_pwm1_auto_point4_temp.dev_attr.attr,
702 &sensor_dev_attr_pwm1_auto_point4_temp_hyst.dev_attr.attr,
703 &sensor_dev_attr_pwm1_auto_point5_pwm.dev_attr.attr,
704 &sensor_dev_attr_pwm1_auto_point5_temp.dev_attr.attr,
705 &sensor_dev_attr_pwm1_auto_point5_temp_hyst.dev_attr.attr,
706 &sensor_dev_attr_pwm1_auto_point6_pwm.dev_attr.attr,
707 &sensor_dev_attr_pwm1_auto_point6_temp.dev_attr.attr,
708 &sensor_dev_attr_pwm1_auto_point6_temp_hyst.dev_attr.attr,
709 &sensor_dev_attr_pwm1_auto_point7_pwm.dev_attr.attr,
710 &sensor_dev_attr_pwm1_auto_point7_temp.dev_attr.attr,
711 &sensor_dev_attr_pwm1_auto_point7_temp_hyst.dev_attr.attr,
712 &sensor_dev_attr_pwm1_auto_point8_pwm.dev_attr.attr,
713 &sensor_dev_attr_pwm1_auto_point8_temp.dev_attr.attr,
714 &sensor_dev_attr_pwm1_auto_point8_temp_hyst.dev_attr.attr,
715
Jean Delvare0e39e012006-09-24 21:16:40 +0200716 &sensor_dev_attr_temp1_input.dev_attr.attr,
717 &sensor_dev_attr_temp2_input.dev_attr.attr,
718 &sensor_dev_attr_temp2_min.dev_attr.attr,
719 &sensor_dev_attr_temp1_max.dev_attr.attr,
720 &sensor_dev_attr_temp2_max.dev_attr.attr,
Guenter Roeck786375f2012-01-16 22:51:45 +0100721 &sensor_dev_attr_temp2_offset.dev_attr.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +0200722 &sensor_dev_attr_temp2_crit.dev_attr.attr,
723 &dev_attr_temp2_crit_hyst.attr,
724
725 &sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
Jean Delvare7817a392007-06-09 10:11:16 -0400726 &sensor_dev_attr_temp2_fault.dev_attr.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +0200727 &sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
728 &sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
729 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
730 &dev_attr_alarms.attr,
Guenter Roeck04738b22012-01-16 22:51:46 +0100731 &dev_attr_update_interval.attr,
Jean Delvare0e39e012006-09-24 21:16:40 +0200732 NULL
733};
734
Guenter Roeck94e55df2012-01-16 22:51:46 +0100735/*
736 * On LM63, temp2_crit can be set only once, which should be job
737 * of the bootloader.
738 * On LM64, temp2_crit can always be set.
739 * On LM96163, temp2_crit can be set if bit 1 of the configuration
740 * register is true.
741 */
742static umode_t lm63_attribute_mode(struct kobject *kobj,
743 struct attribute *attr, int index)
744{
745 struct device *dev = container_of(kobj, struct device, kobj);
746 struct i2c_client *client = to_i2c_client(dev);
747 struct lm63_data *data = i2c_get_clientdata(client);
748
749 if (attr == &sensor_dev_attr_temp2_crit.dev_attr.attr
750 && (data->kind == lm64 ||
751 (data->kind == lm96163 && (data->config & 0x02))))
752 return attr->mode | S_IWUSR;
753
754 return attr->mode;
755}
756
Jean Delvare0e39e012006-09-24 21:16:40 +0200757static const struct attribute_group lm63_group = {
Guenter Roeck94e55df2012-01-16 22:51:46 +0100758 .is_visible = lm63_attribute_mode,
Jean Delvare0e39e012006-09-24 21:16:40 +0200759 .attrs = lm63_attributes,
760};
761
762static struct attribute *lm63_attributes_fan1[] = {
763 &sensor_dev_attr_fan1_input.dev_attr.attr,
764 &sensor_dev_attr_fan1_min.dev_attr.attr,
765
766 &sensor_dev_attr_fan1_min_alarm.dev_attr.attr,
767 NULL
768};
769
770static const struct attribute_group lm63_group_fan1 = {
771 .attrs = lm63_attributes_fan1,
772};
773
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774/*
775 * Real code
776 */
777
Jean Delvared5957be2008-07-16 19:30:13 +0200778/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare310ec792009-12-14 21:17:23 +0100779static int lm63_detect(struct i2c_client *new_client,
Jean Delvared5957be2008-07-16 19:30:13 +0200780 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781{
Jean Delvared5957be2008-07-16 19:30:13 +0200782 struct i2c_adapter *adapter = new_client->adapter;
Jean Delvare52df6442009-12-09 20:35:57 +0100783 u8 man_id, chip_id, reg_config1, reg_config2;
784 u8 reg_alert_status, reg_alert_mask;
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200785 int address = new_client->addr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786
787 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvared5957be2008-07-16 19:30:13 +0200788 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789
Jean Delvare52df6442009-12-09 20:35:57 +0100790 man_id = i2c_smbus_read_byte_data(new_client, LM63_REG_MAN_ID);
791 chip_id = i2c_smbus_read_byte_data(new_client, LM63_REG_CHIP_ID);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792
Jean Delvare52df6442009-12-09 20:35:57 +0100793 reg_config1 = i2c_smbus_read_byte_data(new_client,
794 LM63_REG_CONFIG1);
795 reg_config2 = i2c_smbus_read_byte_data(new_client,
796 LM63_REG_CONFIG2);
797 reg_alert_status = i2c_smbus_read_byte_data(new_client,
798 LM63_REG_ALERT_STATUS);
799 reg_alert_mask = i2c_smbus_read_byte_data(new_client,
800 LM63_REG_ALERT_MASK);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801
Jean Delvare52df6442009-12-09 20:35:57 +0100802 if (man_id != 0x01 /* National Semiconductor */
Jean Delvare52df6442009-12-09 20:35:57 +0100803 || (reg_config1 & 0x18) != 0x00
804 || (reg_config2 & 0xF8) != 0x00
805 || (reg_alert_status & 0x20) != 0x00
806 || (reg_alert_mask & 0xA4) != 0xA4) {
807 dev_dbg(&adapter->dev,
808 "Unsupported chip (man_id=0x%02X, chip_id=0x%02X)\n",
809 man_id, chip_id);
810 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811 }
812
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200813 if (chip_id == 0x41 && address == 0x4c)
814 strlcpy(info->type, "lm63", I2C_NAME_SIZE);
815 else if (chip_id == 0x51 && (address == 0x18 || address == 0x4e))
816 strlcpy(info->type, "lm64", I2C_NAME_SIZE);
Guenter Roeck210961c2012-01-16 22:51:45 +0100817 else if (chip_id == 0x49 && address == 0x4c)
818 strlcpy(info->type, "lm96163", I2C_NAME_SIZE);
Matthew Garrett10f2ed32010-05-27 19:58:38 +0200819 else
820 return -ENODEV;
Jean Delvared5957be2008-07-16 19:30:13 +0200821
822 return 0;
823}
824
825static int lm63_probe(struct i2c_client *new_client,
826 const struct i2c_device_id *id)
827{
828 struct lm63_data *data;
829 int err;
830
831 data = kzalloc(sizeof(struct lm63_data), GFP_KERNEL);
832 if (!data) {
833 err = -ENOMEM;
834 goto exit;
835 }
836
837 i2c_set_clientdata(new_client, data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700838 data->valid = 0;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100839 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840
Dirk Eibach2778fb12011-02-09 04:51:34 -0500841 /* Set the device type */
842 data->kind = id->driver_data;
843 if (data->kind == lm64)
844 data->temp2_offset = 16000;
845
846 /* Initialize chip */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 lm63_init_client(new_client);
848
849 /* Register sysfs hooks */
Guenter Roeck662bda22012-01-16 22:51:45 +0100850 err = sysfs_create_group(&new_client->dev.kobj, &lm63_group);
851 if (err)
Jean Delvared5957be2008-07-16 19:30:13 +0200852 goto exit_free;
Jean Delvare0e39e012006-09-24 21:16:40 +0200853 if (data->config & 0x04) { /* tachometer enabled */
Guenter Roeck662bda22012-01-16 22:51:45 +0100854 err = sysfs_create_group(&new_client->dev.kobj,
855 &lm63_group_fan1);
856 if (err)
Jean Delvare0e39e012006-09-24 21:16:40 +0200857 goto exit_remove_files;
858 }
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100859 if (data->kind == lm96163) {
860 err = device_create_file(&new_client->dev,
861 &dev_attr_temp2_type);
862 if (err)
863 goto exit_remove_files;
864 }
Jean Delvare0e39e012006-09-24 21:16:40 +0200865
Tony Jones1beeffe2007-08-20 13:46:20 -0700866 data->hwmon_dev = hwmon_device_register(&new_client->dev);
867 if (IS_ERR(data->hwmon_dev)) {
868 err = PTR_ERR(data->hwmon_dev);
Jean Delvare0e39e012006-09-24 21:16:40 +0200869 goto exit_remove_files;
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400870 }
871
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 return 0;
873
Jean Delvare0e39e012006-09-24 21:16:40 +0200874exit_remove_files:
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100875 device_remove_file(&new_client->dev, &dev_attr_temp2_type);
Jean Delvare0e39e012006-09-24 21:16:40 +0200876 sysfs_remove_group(&new_client->dev.kobj, &lm63_group);
877 sysfs_remove_group(&new_client->dev.kobj, &lm63_group_fan1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878exit_free:
879 kfree(data);
880exit:
881 return err;
882}
883
Guenter Roeck662bda22012-01-16 22:51:45 +0100884/*
885 * Ideally we shouldn't have to initialize anything, since the BIOS
886 * should have taken care of everything
887 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888static void lm63_init_client(struct i2c_client *client)
889{
890 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck04738b22012-01-16 22:51:46 +0100891 u8 convrate;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892
893 data->config = i2c_smbus_read_byte_data(client, LM63_REG_CONFIG1);
894 data->config_fan = i2c_smbus_read_byte_data(client,
895 LM63_REG_CONFIG_FAN);
896
897 /* Start converting if needed */
898 if (data->config & 0x40) { /* standby */
Joe Perches898eb712007-10-18 03:06:30 -0700899 dev_dbg(&client->dev, "Switching to operational mode\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 data->config &= 0xA7;
901 i2c_smbus_write_byte_data(client, LM63_REG_CONFIG1,
902 data->config);
903 }
Jean Delvare409c0b52012-01-16 22:51:46 +0100904 /* Tachometer is always enabled on LM64 */
905 if (data->kind == lm64)
906 data->config |= 0x04;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907
908 /* We may need pwm1_freq before ever updating the client data */
909 data->pwm1_freq = i2c_smbus_read_byte_data(client, LM63_REG_PWM_FREQ);
910 if (data->pwm1_freq == 0)
911 data->pwm1_freq = 1;
912
Guenter Roeck04738b22012-01-16 22:51:46 +0100913 switch (data->kind) {
914 case lm63:
915 case lm64:
916 data->max_convrate_hz = LM63_MAX_CONVRATE_HZ;
917 break;
918 case lm96163:
919 data->max_convrate_hz = LM96163_MAX_CONVRATE_HZ;
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100920 data->trutherm
921 = i2c_smbus_read_byte_data(client,
922 LM96163_REG_TRUTHERM) & 0x02;
Guenter Roeck04738b22012-01-16 22:51:46 +0100923 break;
924 }
925 convrate = i2c_smbus_read_byte_data(client, LM63_REG_CONVRATE);
926 if (unlikely(convrate > LM63_MAX_CONVRATE))
927 convrate = LM63_MAX_CONVRATE;
928 data->update_interval = UPDATE_INTERVAL(data->max_convrate_hz,
929 convrate);
930
Guenter Roeck210961c2012-01-16 22:51:45 +0100931 /*
Guenter Roecke872c912012-01-16 22:51:46 +0100932 * For LM96163, check if high resolution PWM
933 * and unsigned temperature format is enabled.
Guenter Roeck210961c2012-01-16 22:51:45 +0100934 */
935 if (data->kind == lm96163) {
936 u8 config_enhanced
937 = i2c_smbus_read_byte_data(client,
938 LM96163_REG_CONFIG_ENHANCED);
Jean Delvared216f682012-01-16 22:51:47 +0100939 if (config_enhanced & 0x20)
940 data->lut_temp_highres = true;
Guenter Roeck210961c2012-01-16 22:51:45 +0100941 if ((config_enhanced & 0x10)
942 && !(data->config_fan & 0x08) && data->pwm1_freq == 8)
943 data->pwm_highres = true;
944 if (config_enhanced & 0x08)
Guenter Roecke872c912012-01-16 22:51:46 +0100945 data->remote_unsigned = true;
Guenter Roeck210961c2012-01-16 22:51:45 +0100946 }
947
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 /* Show some debug info about the LM63 configuration */
Jean Delvare409c0b52012-01-16 22:51:46 +0100949 if (data->kind == lm63)
950 dev_dbg(&client->dev, "Alert/tach pin configured for %s\n",
951 (data->config & 0x04) ? "tachometer input" :
952 "alert output");
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 dev_dbg(&client->dev, "PWM clock %s kHz, output frequency %u Hz\n",
954 (data->config_fan & 0x08) ? "1.4" : "360",
955 ((data->config_fan & 0x08) ? 700 : 180000) / data->pwm1_freq);
956 dev_dbg(&client->dev, "PWM output active %s, %s mode\n",
957 (data->config_fan & 0x10) ? "low" : "high",
958 (data->config_fan & 0x20) ? "manual" : "auto");
959}
960
Jean Delvared5957be2008-07-16 19:30:13 +0200961static int lm63_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700962{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400963 struct lm63_data *data = i2c_get_clientdata(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964
Tony Jones1beeffe2007-08-20 13:46:20 -0700965 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeckf496b2d2012-01-16 22:51:46 +0100966 device_remove_file(&client->dev, &dev_attr_temp2_type);
Jean Delvare0e39e012006-09-24 21:16:40 +0200967 sysfs_remove_group(&client->dev.kobj, &lm63_group);
968 sysfs_remove_group(&client->dev.kobj, &lm63_group_fan1);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400969
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400970 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700971 return 0;
972}
973
974static struct lm63_data *lm63_update_device(struct device *dev)
975{
976 struct i2c_client *client = to_i2c_client(dev);
977 struct lm63_data *data = i2c_get_clientdata(client);
Guenter Roeck04738b22012-01-16 22:51:46 +0100978 unsigned long next_update;
Jean Delvared216f682012-01-16 22:51:47 +0100979 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100981 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982
Guenter Roeck04738b22012-01-16 22:51:46 +0100983 next_update = data->last_updated
984 + msecs_to_jiffies(data->update_interval) + 1;
985
986 if (time_after(jiffies, next_update) || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 if (data->config & 0x04) { /* tachometer enabled */
988 /* order matters for fan1_input */
Jean Delvarebc51ae12005-06-05 20:32:27 +0200989 data->fan[0] = i2c_smbus_read_byte_data(client,
990 LM63_REG_TACH_COUNT_LSB) & 0xFC;
991 data->fan[0] |= i2c_smbus_read_byte_data(client,
992 LM63_REG_TACH_COUNT_MSB) << 8;
993 data->fan[1] = (i2c_smbus_read_byte_data(client,
994 LM63_REG_TACH_LIMIT_LSB) & 0xFC)
995 | (i2c_smbus_read_byte_data(client,
996 LM63_REG_TACH_LIMIT_MSB) << 8);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 }
998
999 data->pwm1_freq = i2c_smbus_read_byte_data(client,
1000 LM63_REG_PWM_FREQ);
1001 if (data->pwm1_freq == 0)
1002 data->pwm1_freq = 1;
Jean Delvared216f682012-01-16 22:51:47 +01001003 data->pwm1[0] = i2c_smbus_read_byte_data(client,
1004 LM63_REG_PWM_VALUE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005
Jean Delvarebc51ae12005-06-05 20:32:27 +02001006 data->temp8[0] = i2c_smbus_read_byte_data(client,
1007 LM63_REG_LOCAL_TEMP);
1008 data->temp8[1] = i2c_smbus_read_byte_data(client,
1009 LM63_REG_LOCAL_HIGH);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010
1011 /* order matters for temp2_input */
Jean Delvarebc51ae12005-06-05 20:32:27 +02001012 data->temp11[0] = i2c_smbus_read_byte_data(client,
1013 LM63_REG_REMOTE_TEMP_MSB) << 8;
1014 data->temp11[0] |= i2c_smbus_read_byte_data(client,
1015 LM63_REG_REMOTE_TEMP_LSB);
1016 data->temp11[1] = (i2c_smbus_read_byte_data(client,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 LM63_REG_REMOTE_LOW_MSB) << 8)
1018 | i2c_smbus_read_byte_data(client,
1019 LM63_REG_REMOTE_LOW_LSB);
Jean Delvarebc51ae12005-06-05 20:32:27 +02001020 data->temp11[2] = (i2c_smbus_read_byte_data(client,
1021 LM63_REG_REMOTE_HIGH_MSB) << 8)
1022 | i2c_smbus_read_byte_data(client,
1023 LM63_REG_REMOTE_HIGH_LSB);
Guenter Roeck786375f2012-01-16 22:51:45 +01001024 data->temp11[3] = (i2c_smbus_read_byte_data(client,
1025 LM63_REG_REMOTE_OFFSET_MSB) << 8)
1026 | i2c_smbus_read_byte_data(client,
1027 LM63_REG_REMOTE_OFFSET_LSB);
Guenter Roecke872c912012-01-16 22:51:46 +01001028
1029 if (data->kind == lm96163)
1030 data->temp11u = (i2c_smbus_read_byte_data(client,
1031 LM96163_REG_REMOTE_TEMP_U_MSB) << 8)
1032 | i2c_smbus_read_byte_data(client,
1033 LM96163_REG_REMOTE_TEMP_U_LSB);
1034
Jean Delvarebc51ae12005-06-05 20:32:27 +02001035 data->temp8[2] = i2c_smbus_read_byte_data(client,
1036 LM63_REG_REMOTE_TCRIT);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001037 data->temp2_crit_hyst = i2c_smbus_read_byte_data(client,
1038 LM63_REG_REMOTE_TCRIT_HYST);
1039
1040 data->alarms = i2c_smbus_read_byte_data(client,
1041 LM63_REG_ALERT_STATUS) & 0x7F;
1042
1043 data->last_updated = jiffies;
1044 data->valid = 1;
1045 }
1046
Jean Delvared216f682012-01-16 22:51:47 +01001047 if (time_after(jiffies, data->lut_last_updated + 5 * HZ) ||
1048 !data->lut_valid) {
1049 for (i = 0; i < 8; i++) {
1050 data->pwm1[1 + i] = i2c_smbus_read_byte_data(client,
1051 LM63_REG_LUT_PWM(i));
1052 data->temp8[3 + i] = i2c_smbus_read_byte_data(client,
1053 LM63_REG_LUT_TEMP(i));
1054 }
1055 data->lut_temp_hyst = i2c_smbus_read_byte_data(client,
1056 LM63_REG_LUT_TEMP_HYST);
1057
1058 data->lut_last_updated = jiffies;
1059 data->lut_valid = 1;
1060 }
1061
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001062 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
1064 return data;
1065}
1066
1067static int __init sensors_lm63_init(void)
1068{
1069 return i2c_add_driver(&lm63_driver);
1070}
1071
1072static void __exit sensors_lm63_exit(void)
1073{
1074 i2c_del_driver(&lm63_driver);
1075}
1076
1077MODULE_AUTHOR("Jean Delvare <khali@linux-fr.org>");
1078MODULE_DESCRIPTION("LM63 driver");
1079MODULE_LICENSE("GPL");
1080
1081module_init(sensors_lm63_init);
1082module_exit(sensors_lm63_exit);