blob: 3a84dc863df0a0f6ea7ac583d2517ec736129f46 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 lm85.c - Part of lm_sensors, Linux kernel modules for hardware
3 monitoring
Jean Delvare1f448092008-04-29 14:03:37 +02004 Copyright (c) 1998, 1999 Frodo Looijaard <frodol@dds.nl>
Linus Torvalds1da177e2005-04-16 15:20:36 -07005 Copyright (c) 2002, 2003 Philip Pokorny <ppokorny@penguincomputing.com>
6 Copyright (c) 2003 Margit Schubert-While <margitsw@t-online.de>
7 Copyright (c) 2004 Justin Thiessen <jthiessen@penguincomputing.com>
Jean Delvare8a0795d2008-10-17 17:51:14 +02008 Copyright (C) 2007, 2008 Jean Delvare <khali@linux-fr.org>
Linus Torvalds1da177e2005-04-16 15:20:36 -07009
10 Chip details at <http://www.national.com/ds/LM/LM85.pdf>
11
12 This program is free software; you can redistribute it and/or modify
13 it under the terms of the GNU General Public License as published by
14 the Free Software Foundation; either version 2 of the License, or
15 (at your option) any later version.
16
17 This program is distributed in the hope that it will be useful,
18 but WITHOUT ANY WARRANTY; without even the implied warranty of
19 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 GNU General Public License for more details.
21
22 You should have received a copy of the GNU General Public License
23 along with this program; if not, write to the Free Software
24 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
25*/
26
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/module.h>
28#include <linux/init.h>
29#include <linux/slab.h>
30#include <linux/jiffies.h>
31#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040032#include <linux/hwmon.h>
Jean Delvare303760b2005-07-31 21:52:01 +020033#include <linux/hwmon-vid.h>
Jean Delvareb353a482007-07-05 20:36:12 +020034#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040035#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010036#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/* Addresses to scan */
Mark M. Hoffman25e9c862008-02-17 22:28:03 -050039static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41/* Insmod parameters */
Jean Delvaref4b50262005-07-31 21:49:03 +020042I2C_CLIENT_INSMOD_6(lm85b, lm85c, adm1027, adt7463, emc6d100, emc6d102);
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44/* The LM85 registers */
45
46#define LM85_REG_IN(nr) (0x20 + (nr))
47#define LM85_REG_IN_MIN(nr) (0x44 + (nr) * 2)
48#define LM85_REG_IN_MAX(nr) (0x45 + (nr) * 2)
49
50#define LM85_REG_TEMP(nr) (0x25 + (nr))
51#define LM85_REG_TEMP_MIN(nr) (0x4e + (nr) * 2)
52#define LM85_REG_TEMP_MAX(nr) (0x4f + (nr) * 2)
53
54/* Fan speeds are LSB, MSB (2 bytes) */
Jean Delvare1f448092008-04-29 14:03:37 +020055#define LM85_REG_FAN(nr) (0x28 + (nr) * 2)
56#define LM85_REG_FAN_MIN(nr) (0x54 + (nr) * 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
58#define LM85_REG_PWM(nr) (0x30 + (nr))
59
Linus Torvalds1da177e2005-04-16 15:20:36 -070060#define LM85_REG_COMPANY 0x3e
61#define LM85_REG_VERSTEP 0x3f
62/* These are the recognized values for the above regs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define LM85_COMPANY_NATIONAL 0x01
64#define LM85_COMPANY_ANALOG_DEV 0x41
Jean Delvare1f448092008-04-29 14:03:37 +020065#define LM85_COMPANY_SMSC 0x5c
Linus Torvalds1da177e2005-04-16 15:20:36 -070066#define LM85_VERSTEP_VMASK 0xf0
67#define LM85_VERSTEP_GENERIC 0x60
68#define LM85_VERSTEP_LM85C 0x60
69#define LM85_VERSTEP_LM85B 0x62
70#define LM85_VERSTEP_ADM1027 0x60
71#define LM85_VERSTEP_ADT7463 0x62
72#define LM85_VERSTEP_ADT7463C 0x6A
73#define LM85_VERSTEP_EMC6D100_A0 0x60
74#define LM85_VERSTEP_EMC6D100_A1 0x61
75#define LM85_VERSTEP_EMC6D102 0x65
76
77#define LM85_REG_CONFIG 0x40
78
79#define LM85_REG_ALARM1 0x41
80#define LM85_REG_ALARM2 0x42
81
82#define LM85_REG_VID 0x43
83
84/* Automated FAN control */
85#define LM85_REG_AFAN_CONFIG(nr) (0x5c + (nr))
86#define LM85_REG_AFAN_RANGE(nr) (0x5f + (nr))
87#define LM85_REG_AFAN_SPIKE1 0x62
Linus Torvalds1da177e2005-04-16 15:20:36 -070088#define LM85_REG_AFAN_MINPWM(nr) (0x64 + (nr))
89#define LM85_REG_AFAN_LIMIT(nr) (0x67 + (nr))
90#define LM85_REG_AFAN_CRITICAL(nr) (0x6a + (nr))
91#define LM85_REG_AFAN_HYST1 0x6d
92#define LM85_REG_AFAN_HYST2 0x6e
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#define ADM1027_REG_EXTEND_ADC1 0x76
95#define ADM1027_REG_EXTEND_ADC2 0x77
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97#define EMC6D100_REG_ALARM3 0x7d
98/* IN5, IN6 and IN7 */
Jean Delvare1f448092008-04-29 14:03:37 +020099#define EMC6D100_REG_IN(nr) (0x70 + ((nr) - 5))
100#define EMC6D100_REG_IN_MIN(nr) (0x73 + ((nr) - 5) * 2)
101#define EMC6D100_REG_IN_MAX(nr) (0x74 + ((nr) - 5) * 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102#define EMC6D102_REG_EXTEND_ADC1 0x85
103#define EMC6D102_REG_EXTEND_ADC2 0x86
104#define EMC6D102_REG_EXTEND_ADC3 0x87
105#define EMC6D102_REG_EXTEND_ADC4 0x88
106
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107
Jean Delvare1f448092008-04-29 14:03:37 +0200108/* Conversions. Rounding and limit checking is only done on the TO_REG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109 variants. Note that you should be a bit careful with which arguments
110 these macros are called: arguments may be evaluated more than once.
111 */
112
113/* IN are scaled acording to built-in resistors */
Jean Delvaree89e22b2008-06-25 08:47:35 -0400114static const int lm85_scaling[] = { /* .001 Volts */
Jean Delvare1f448092008-04-29 14:03:37 +0200115 2500, 2250, 3300, 5000, 12000,
116 3300, 1500, 1800 /*EMC6D100*/
117};
118#define SCALE(val, from, to) (((val) * (to) + ((from) / 2)) / (from))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Jean Delvare1f448092008-04-29 14:03:37 +0200120#define INS_TO_REG(n, val) \
121 SENSORS_LIMIT(SCALE(val, lm85_scaling[n], 192), 0, 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122
Jean Delvare1f448092008-04-29 14:03:37 +0200123#define INSEXT_FROM_REG(n, val, ext) \
Jean Delvare5a4d3ef2007-07-05 20:38:32 +0200124 SCALE(((val) << 4) + (ext), 192 << 4, lm85_scaling[n])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700125
Jean Delvare1f448092008-04-29 14:03:37 +0200126#define INS_FROM_REG(n, val) SCALE((val), 192, lm85_scaling[n])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
128/* FAN speed is measured using 90kHz clock */
Jean Delvare63f281a2007-07-05 20:39:40 +0200129static inline u16 FAN_TO_REG(unsigned long val)
130{
131 if (!val)
132 return 0xffff;
133 return SENSORS_LIMIT(5400000 / val, 1, 0xfffe);
134}
Jean Delvare1f448092008-04-29 14:03:37 +0200135#define FAN_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
136 5400000 / (val))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138/* Temperature is reported in .001 degC increments */
139#define TEMP_TO_REG(val) \
Jean Delvare1f448092008-04-29 14:03:37 +0200140 SENSORS_LIMIT(SCALE(val, 1000, 1), -127, 127)
141#define TEMPEXT_FROM_REG(val, ext) \
Jean Delvare5a4d3ef2007-07-05 20:38:32 +0200142 SCALE(((val) << 4) + (ext), 16, 1000)
143#define TEMP_FROM_REG(val) ((val) * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700144
Jean Delvare1f448092008-04-29 14:03:37 +0200145#define PWM_TO_REG(val) SENSORS_LIMIT(val, 0, 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146#define PWM_FROM_REG(val) (val)
147
148
149/* ZONEs have the following parameters:
150 * Limit (low) temp, 1. degC
151 * Hysteresis (below limit), 1. degC (0-15)
152 * Range of speed control, .1 degC (2-80)
153 * Critical (high) temp, 1. degC
154 *
155 * FAN PWMs have the following parameters:
156 * Reference Zone, 1, 2, 3, etc.
157 * Spinup time, .05 sec
158 * PWM value at limit/low temp, 1 count
159 * PWM Frequency, 1. Hz
160 * PWM is Min or OFF below limit, flag
161 * Invert PWM output, flag
162 *
163 * Some chips filter the temp, others the fan.
164 * Filter constant (or disabled) .1 seconds
165 */
166
167/* These are the zone temperature range encodings in .001 degree C */
Jean Delvaree89e22b2008-06-25 08:47:35 -0400168static const int lm85_range_map[] = {
Jean Delvare1f448092008-04-29 14:03:37 +0200169 2000, 2500, 3300, 4000, 5000, 6600, 8000, 10000,
170 13300, 16000, 20000, 26600, 32000, 40000, 53300, 80000
171};
172
173static int RANGE_TO_REG(int range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174{
175 int i;
176
Jean Delvared38b1492008-04-03 10:40:39 +0200177 if (range >= lm85_range_map[15])
Jean Delvare1f448092008-04-29 14:03:37 +0200178 return 15;
Jean Delvared38b1492008-04-03 10:40:39 +0200179
180 /* Find the closest match */
181 for (i = 14; i >= 0; --i) {
182 if (range >= lm85_range_map[i]) {
183 if ((lm85_range_map[i + 1] - range) <
184 (range - lm85_range_map[i]))
185 return i + 1;
186 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700187 }
188 }
Jean Delvared38b1492008-04-03 10:40:39 +0200189
190 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191}
Jean Delvare1f448092008-04-29 14:03:37 +0200192#define RANGE_FROM_REG(val) lm85_range_map[(val) & 0x0f]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700193
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194/* These are the PWM frequency encodings */
Jean Delvare34e7dc62008-10-17 17:51:13 +0200195static const int lm85_freq_map[8] = { /* 1 Hz */
Jean Delvare8a0795d2008-10-17 17:51:14 +0200196 10, 15, 23, 30, 38, 47, 61, 94
197};
198static const int adm1027_freq_map[8] = { /* 1 Hz */
199 11, 15, 22, 29, 35, 44, 59, 88
Jean Delvare1f448092008-04-29 14:03:37 +0200200};
201
Jean Delvare8a0795d2008-10-17 17:51:14 +0200202static int FREQ_TO_REG(const int *map, int freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700203{
204 int i;
205
Jean Delvare86010c92008-10-17 17:51:13 +0200206 /* Find the closest match */
Jean Delvare1f448092008-04-29 14:03:37 +0200207 for (i = 0; i < 7; ++i)
Jean Delvare8a0795d2008-10-17 17:51:14 +0200208 if (freq <= (map[i] + map[i + 1]) / 2)
Jean Delvare1f448092008-04-29 14:03:37 +0200209 break;
Jean Delvaree89e22b2008-06-25 08:47:35 -0400210 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700211}
Jean Delvare8a0795d2008-10-17 17:51:14 +0200212
213static int FREQ_FROM_REG(const int *map, u8 reg)
214{
215 return map[reg & 0x07];
216}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217
218/* Since we can't use strings, I'm abusing these numbers
219 * to stand in for the following meanings:
220 * 1 -- PWM responds to Zone 1
221 * 2 -- PWM responds to Zone 2
222 * 3 -- PWM responds to Zone 3
223 * 23 -- PWM responds to the higher temp of Zone 2 or 3
224 * 123 -- PWM responds to highest of Zone 1, 2, or 3
225 * 0 -- PWM is always at 0% (ie, off)
226 * -1 -- PWM is always at 100%
227 * -2 -- PWM responds to manual control
228 */
229
Jean Delvaree89e22b2008-06-25 08:47:35 -0400230static const int lm85_zone_map[] = { 1, 2, 3, -1, 0, 23, 123, -2 };
231#define ZONE_FROM_REG(val) lm85_zone_map[(val) >> 5]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Jean Delvare1f448092008-04-29 14:03:37 +0200233static int ZONE_TO_REG(int zone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234{
235 int i;
236
Jean Delvare1f448092008-04-29 14:03:37 +0200237 for (i = 0; i <= 7; ++i)
238 if (zone == lm85_zone_map[i])
239 break;
240 if (i > 7) /* Not found. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 i = 3; /* Always 100% */
Jean Delvaree89e22b2008-06-25 08:47:35 -0400242 return i << 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700243}
244
Jean Delvare1f448092008-04-29 14:03:37 +0200245#define HYST_TO_REG(val) SENSORS_LIMIT(((val) + 500) / 1000, 0, 15)
246#define HYST_FROM_REG(val) ((val) * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Linus Torvalds1da177e2005-04-16 15:20:36 -0700248/* Chip sampling rates
249 *
250 * Some sensors are not updated more frequently than once per second
251 * so it doesn't make sense to read them more often than that.
252 * We cache the results and return the saved data if the driver
253 * is called again before a second has elapsed.
254 *
255 * Also, there is significant configuration data for this chip
256 * given the automatic PWM fan control that is possible. There
257 * are about 47 bytes of config data to only 22 bytes of actual
258 * readings. So, we keep the config data up to date in the cache
259 * when it is written and only sample it once every 1 *minute*
260 */
261#define LM85_DATA_INTERVAL (HZ + HZ / 2)
262#define LM85_CONFIG_INTERVAL (1 * 60 * HZ)
263
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264/* LM85 can automatically adjust fan speeds based on temperature
265 * This structure encapsulates an entire Zone config. There are
266 * three zones (one for each temperature input) on the lm85
267 */
268struct lm85_zone {
269 s8 limit; /* Low temp limit */
270 u8 hyst; /* Low limit hysteresis. (0-15) */
271 u8 range; /* Temp range, encoded */
272 s8 critical; /* "All fans ON" temp limit */
Jean Delvare1f448092008-04-29 14:03:37 +0200273 u8 off_desired; /* Actual "off" temperature specified. Preserved
Linus Torvalds1da177e2005-04-16 15:20:36 -0700274 * to prevent "drift" as other autofan control
275 * values change.
276 */
Jean Delvare1f448092008-04-29 14:03:37 +0200277 u8 max_desired; /* Actual "max" temperature specified. Preserved
Linus Torvalds1da177e2005-04-16 15:20:36 -0700278 * to prevent "drift" as other autofan control
279 * values change.
280 */
281};
282
283struct lm85_autofan {
284 u8 config; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 u8 min_pwm; /* Minimum PWM value, encoded */
286 u8 min_off; /* Min PWM or OFF below "limit", flag */
287};
288
Jean Delvareed6bafb2007-02-14 21:15:03 +0100289/* For each registered chip, we need to keep some data in memory.
290 The structure is dynamically allocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291struct lm85_data {
292 struct i2c_client client;
Tony Jones1beeffe2007-08-20 13:46:20 -0700293 struct device *hwmon_dev;
Jean Delvare8a0795d2008-10-17 17:51:14 +0200294 const int *freq_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 enum chips type;
296
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100297 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 int valid; /* !=0 if following fields are valid */
299 unsigned long last_reading; /* In jiffies */
300 unsigned long last_config; /* In jiffies */
301
302 u8 in[8]; /* Register value */
303 u8 in_max[8]; /* Register value */
304 u8 in_min[8]; /* Register value */
305 s8 temp[3]; /* Register value */
306 s8 temp_min[3]; /* Register value */
307 s8 temp_max[3]; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 u16 fan[4]; /* Register value */
309 u16 fan_min[4]; /* Register value */
310 u8 pwm[3]; /* Register value */
Jean Delvare34e7dc62008-10-17 17:51:13 +0200311 u8 pwm_freq[3]; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 u8 temp_ext[3]; /* Decoded values */
313 u8 in_ext[8]; /* Decoded values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 u8 vid; /* Register value */
315 u8 vrm; /* VRM version */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 u32 alarms; /* Register encoding, combined */
317 struct lm85_autofan autofan[3];
318 struct lm85_zone zone[3];
319};
320
321static int lm85_attach_adapter(struct i2c_adapter *adapter);
322static int lm85_detect(struct i2c_adapter *adapter, int address,
323 int kind);
324static int lm85_detach_client(struct i2c_client *client);
325
Darren Jenkinsf6c27fc2006-02-27 23:14:58 +0100326static int lm85_read_value(struct i2c_client *client, u8 reg);
Jean Delvaree89e22b2008-06-25 08:47:35 -0400327static void lm85_write_value(struct i2c_client *client, u8 reg, int value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328static struct lm85_data *lm85_update_device(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
330
331static struct i2c_driver lm85_driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100332 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100333 .name = "lm85",
334 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700335 .attach_adapter = lm85_attach_adapter,
336 .detach_client = lm85_detach_client,
337};
338
339
340/* 4 Fans */
Jean Delvareb353a482007-07-05 20:36:12 +0200341static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
342 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700343{
Jean Delvareb353a482007-07-05 20:36:12 +0200344 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700345 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200346 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700347}
Jean Delvareb353a482007-07-05 20:36:12 +0200348
349static ssize_t show_fan_min(struct device *dev, struct device_attribute *attr,
350 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351{
Jean Delvareb353a482007-07-05 20:36:12 +0200352 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200354 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355}
Jean Delvareb353a482007-07-05 20:36:12 +0200356
357static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
358 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359{
Jean Delvareb353a482007-07-05 20:36:12 +0200360 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 struct i2c_client *client = to_i2c_client(dev);
362 struct lm85_data *data = i2c_get_clientdata(client);
Jean Delvare63f281a2007-07-05 20:39:40 +0200363 unsigned long val = simple_strtoul(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100365 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 data->fan_min[nr] = FAN_TO_REG(val);
367 lm85_write_value(client, LM85_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100368 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 return count;
370}
371
372#define show_fan_offset(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200373static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
374 show_fan, NULL, offset - 1); \
375static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
376 show_fan_min, set_fan_min, offset - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377
378show_fan_offset(1);
379show_fan_offset(2);
380show_fan_offset(3);
381show_fan_offset(4);
382
383/* vid, vrm, alarms */
384
Jean Delvare1f448092008-04-29 14:03:37 +0200385static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
386 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387{
388 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare9c516ef2005-11-26 20:07:54 +0100389 int vid;
390
391 if (data->type == adt7463 && (data->vid & 0x80)) {
392 /* 6-pin VID (VRM 10) */
393 vid = vid_from_reg(data->vid & 0x3f, data->vrm);
394 } else {
395 /* 5-pin VID (VRM 9) */
396 vid = vid_from_reg(data->vid & 0x1f, data->vrm);
397 }
398
399 return sprintf(buf, "%d\n", vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400}
401
402static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
403
Jean Delvare1f448092008-04-29 14:03:37 +0200404static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
405 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700406{
Jean Delvare90d66192007-10-08 18:24:35 +0200407 struct lm85_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408 return sprintf(buf, "%ld\n", (long) data->vrm);
409}
410
Jean Delvare1f448092008-04-29 14:03:37 +0200411static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
412 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413{
Jean Delvare8f74efe2007-12-01 11:25:33 +0100414 struct lm85_data *data = dev_get_drvdata(dev);
415 data->vrm = simple_strtoul(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700416 return count;
417}
418
419static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
420
Jean Delvare1f448092008-04-29 14:03:37 +0200421static ssize_t show_alarms_reg(struct device *dev, struct device_attribute
422 *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423{
424 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +0200425 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426}
427
428static DEVICE_ATTR(alarms, S_IRUGO, show_alarms_reg, NULL);
429
Jean Delvarebf76e9d2007-07-05 20:37:58 +0200430static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
431 char *buf)
432{
433 int nr = to_sensor_dev_attr(attr)->index;
434 struct lm85_data *data = lm85_update_device(dev);
435 return sprintf(buf, "%u\n", (data->alarms >> nr) & 1);
436}
437
438static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
439static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
440static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
441static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
442static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8);
443static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 18);
444static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 16);
445static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 17);
446static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4);
447static SENSOR_DEVICE_ATTR(temp1_fault, S_IRUGO, show_alarm, NULL, 14);
448static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5);
449static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 6);
450static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL, 15);
451static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 10);
452static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 11);
453static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 12);
454static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 13);
455
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456/* pwm */
457
Jean Delvareb353a482007-07-05 20:36:12 +0200458static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
459 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460{
Jean Delvareb353a482007-07-05 20:36:12 +0200461 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700462 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200463 return sprintf(buf, "%d\n", PWM_FROM_REG(data->pwm[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464}
Jean Delvareb353a482007-07-05 20:36:12 +0200465
466static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
467 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468{
Jean Delvareb353a482007-07-05 20:36:12 +0200469 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700470 struct i2c_client *client = to_i2c_client(dev);
471 struct lm85_data *data = i2c_get_clientdata(client);
472 long val = simple_strtol(buf, NULL, 10);
473
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100474 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700475 data->pwm[nr] = PWM_TO_REG(val);
476 lm85_write_value(client, LM85_REG_PWM(nr), data->pwm[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100477 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 return count;
479}
Jean Delvareb353a482007-07-05 20:36:12 +0200480
481static ssize_t show_pwm_enable(struct device *dev, struct device_attribute
482 *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700483{
Jean Delvareb353a482007-07-05 20:36:12 +0200484 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare4b4df952007-12-03 23:23:21 +0100486 int pwm_zone, enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487
488 pwm_zone = ZONE_FROM_REG(data->autofan[nr].config);
Jean Delvare4b4df952007-12-03 23:23:21 +0100489 switch (pwm_zone) {
490 case -1: /* PWM is always at 100% */
491 enable = 0;
492 break;
493 case 0: /* PWM is always at 0% */
494 case -2: /* PWM responds to manual control */
495 enable = 1;
496 break;
497 default: /* PWM in automatic mode */
498 enable = 2;
499 }
500 return sprintf(buf, "%d\n", enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501}
502
Jean Delvare455f7912007-12-03 23:28:42 +0100503static ssize_t set_pwm_enable(struct device *dev, struct device_attribute
504 *attr, const char *buf, size_t count)
505{
506 int nr = to_sensor_dev_attr(attr)->index;
507 struct i2c_client *client = to_i2c_client(dev);
508 struct lm85_data *data = i2c_get_clientdata(client);
509 long val = simple_strtol(buf, NULL, 10);
510 u8 config;
511
512 switch (val) {
513 case 0:
514 config = 3;
515 break;
516 case 1:
517 config = 7;
518 break;
519 case 2:
520 /* Here we have to choose arbitrarily one of the 5 possible
521 configurations; I go for the safest */
522 config = 6;
523 break;
524 default:
525 return -EINVAL;
526 }
527
528 mutex_lock(&data->update_lock);
529 data->autofan[nr].config = lm85_read_value(client,
530 LM85_REG_AFAN_CONFIG(nr));
531 data->autofan[nr].config = (data->autofan[nr].config & ~0xe0)
532 | (config << 5);
533 lm85_write_value(client, LM85_REG_AFAN_CONFIG(nr),
534 data->autofan[nr].config);
535 mutex_unlock(&data->update_lock);
536 return count;
537}
538
Jean Delvare34e7dc62008-10-17 17:51:13 +0200539static ssize_t show_pwm_freq(struct device *dev,
540 struct device_attribute *attr, char *buf)
541{
542 int nr = to_sensor_dev_attr(attr)->index;
543 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare8a0795d2008-10-17 17:51:14 +0200544 return sprintf(buf, "%d\n", FREQ_FROM_REG(data->freq_map,
545 data->pwm_freq[nr]));
Jean Delvare34e7dc62008-10-17 17:51:13 +0200546}
547
548static ssize_t set_pwm_freq(struct device *dev,
549 struct device_attribute *attr, const char *buf, size_t count)
550{
551 int nr = to_sensor_dev_attr(attr)->index;
552 struct i2c_client *client = to_i2c_client(dev);
553 struct lm85_data *data = i2c_get_clientdata(client);
554 long val = simple_strtol(buf, NULL, 10);
555
556 mutex_lock(&data->update_lock);
Jean Delvare8a0795d2008-10-17 17:51:14 +0200557 data->pwm_freq[nr] = FREQ_TO_REG(data->freq_map, val);
Jean Delvare34e7dc62008-10-17 17:51:13 +0200558 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
559 (data->zone[nr].range << 4)
560 | data->pwm_freq[nr]);
561 mutex_unlock(&data->update_lock);
562 return count;
563}
564
Linus Torvalds1da177e2005-04-16 15:20:36 -0700565#define show_pwm_reg(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200566static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
567 show_pwm, set_pwm, offset - 1); \
Jean Delvare455f7912007-12-03 23:28:42 +0100568static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
Jean Delvare34e7dc62008-10-17 17:51:13 +0200569 show_pwm_enable, set_pwm_enable, offset - 1); \
570static SENSOR_DEVICE_ATTR(pwm##offset##_freq, S_IRUGO | S_IWUSR, \
571 show_pwm_freq, set_pwm_freq, offset - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700572
573show_pwm_reg(1);
574show_pwm_reg(2);
575show_pwm_reg(3);
576
577/* Voltages */
578
Jean Delvareb353a482007-07-05 20:36:12 +0200579static ssize_t show_in(struct device *dev, struct device_attribute *attr,
580 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581{
Jean Delvareb353a482007-07-05 20:36:12 +0200582 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200584 return sprintf(buf, "%d\n", INSEXT_FROM_REG(nr, data->in[nr],
585 data->in_ext[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586}
Jean Delvareb353a482007-07-05 20:36:12 +0200587
Jean Delvare1f448092008-04-29 14:03:37 +0200588static ssize_t show_in_min(struct device *dev, struct device_attribute *attr,
Jean Delvareb353a482007-07-05 20:36:12 +0200589 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Jean Delvareb353a482007-07-05 20:36:12 +0200591 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700592 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200593 return sprintf(buf, "%d\n", INS_FROM_REG(nr, data->in_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594}
Jean Delvareb353a482007-07-05 20:36:12 +0200595
596static ssize_t set_in_min(struct device *dev, struct device_attribute *attr,
597 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598{
Jean Delvareb353a482007-07-05 20:36:12 +0200599 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700600 struct i2c_client *client = to_i2c_client(dev);
601 struct lm85_data *data = i2c_get_clientdata(client);
602 long val = simple_strtol(buf, NULL, 10);
603
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100604 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605 data->in_min[nr] = INS_TO_REG(nr, val);
606 lm85_write_value(client, LM85_REG_IN_MIN(nr), data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100607 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 return count;
609}
Jean Delvareb353a482007-07-05 20:36:12 +0200610
611static ssize_t show_in_max(struct device *dev, struct device_attribute *attr,
612 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613{
Jean Delvareb353a482007-07-05 20:36:12 +0200614 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200616 return sprintf(buf, "%d\n", INS_FROM_REG(nr, data->in_max[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
Jean Delvareb353a482007-07-05 20:36:12 +0200618
619static ssize_t set_in_max(struct device *dev, struct device_attribute *attr,
620 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621{
Jean Delvareb353a482007-07-05 20:36:12 +0200622 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623 struct i2c_client *client = to_i2c_client(dev);
624 struct lm85_data *data = i2c_get_clientdata(client);
625 long val = simple_strtol(buf, NULL, 10);
626
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100627 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700628 data->in_max[nr] = INS_TO_REG(nr, val);
629 lm85_write_value(client, LM85_REG_IN_MAX(nr), data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100630 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700631 return count;
632}
Jean Delvareb353a482007-07-05 20:36:12 +0200633
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634#define show_in_reg(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200635static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
636 show_in, NULL, offset); \
637static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
638 show_in_min, set_in_min, offset); \
639static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
640 show_in_max, set_in_max, offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641
642show_in_reg(0);
643show_in_reg(1);
644show_in_reg(2);
645show_in_reg(3);
646show_in_reg(4);
Jean Delvare6b9aad22007-07-05 20:37:21 +0200647show_in_reg(5);
648show_in_reg(6);
649show_in_reg(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650
651/* Temps */
652
Jean Delvareb353a482007-07-05 20:36:12 +0200653static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
654 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700655{
Jean Delvareb353a482007-07-05 20:36:12 +0200656 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200658 return sprintf(buf, "%d\n", TEMPEXT_FROM_REG(data->temp[nr],
659 data->temp_ext[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660}
Jean Delvareb353a482007-07-05 20:36:12 +0200661
662static ssize_t show_temp_min(struct device *dev, struct device_attribute *attr,
663 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
Jean Delvareb353a482007-07-05 20:36:12 +0200665 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200667 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
Jean Delvareb353a482007-07-05 20:36:12 +0200669
670static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr,
671 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672{
Jean Delvareb353a482007-07-05 20:36:12 +0200673 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674 struct i2c_client *client = to_i2c_client(dev);
675 struct lm85_data *data = i2c_get_clientdata(client);
676 long val = simple_strtol(buf, NULL, 10);
677
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100678 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 data->temp_min[nr] = TEMP_TO_REG(val);
680 lm85_write_value(client, LM85_REG_TEMP_MIN(nr), data->temp_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100681 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682 return count;
683}
Jean Delvareb353a482007-07-05 20:36:12 +0200684
685static ssize_t show_temp_max(struct device *dev, struct device_attribute *attr,
686 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700687{
Jean Delvareb353a482007-07-05 20:36:12 +0200688 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200690 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
Jean Delvareb353a482007-07-05 20:36:12 +0200692
693static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
694 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700695{
Jean Delvareb353a482007-07-05 20:36:12 +0200696 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700697 struct i2c_client *client = to_i2c_client(dev);
698 struct lm85_data *data = i2c_get_clientdata(client);
Jean Delvare1f448092008-04-29 14:03:37 +0200699 long val = simple_strtol(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100701 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 data->temp_max[nr] = TEMP_TO_REG(val);
703 lm85_write_value(client, LM85_REG_TEMP_MAX(nr), data->temp_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100704 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 return count;
706}
Jean Delvareb353a482007-07-05 20:36:12 +0200707
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708#define show_temp_reg(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200709static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
710 show_temp, NULL, offset - 1); \
711static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
712 show_temp_min, set_temp_min, offset - 1); \
713static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
714 show_temp_max, set_temp_max, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715
716show_temp_reg(1);
717show_temp_reg(2);
718show_temp_reg(3);
719
720
721/* Automatic PWM control */
722
Jean Delvareb353a482007-07-05 20:36:12 +0200723static ssize_t show_pwm_auto_channels(struct device *dev,
724 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725{
Jean Delvareb353a482007-07-05 20:36:12 +0200726 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700727 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200728 return sprintf(buf, "%d\n", ZONE_FROM_REG(data->autofan[nr].config));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700729}
Jean Delvareb353a482007-07-05 20:36:12 +0200730
731static ssize_t set_pwm_auto_channels(struct device *dev,
732 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733{
Jean Delvareb353a482007-07-05 20:36:12 +0200734 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 struct i2c_client *client = to_i2c_client(dev);
736 struct lm85_data *data = i2c_get_clientdata(client);
Jean Delvare1f448092008-04-29 14:03:37 +0200737 long val = simple_strtol(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700738
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100739 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740 data->autofan[nr].config = (data->autofan[nr].config & (~0xe0))
Jean Delvare1f448092008-04-29 14:03:37 +0200741 | ZONE_TO_REG(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700742 lm85_write_value(client, LM85_REG_AFAN_CONFIG(nr),
743 data->autofan[nr].config);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100744 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return count;
746}
Jean Delvareb353a482007-07-05 20:36:12 +0200747
748static ssize_t show_pwm_auto_pwm_min(struct device *dev,
749 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700750{
Jean Delvareb353a482007-07-05 20:36:12 +0200751 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200753 return sprintf(buf, "%d\n", PWM_FROM_REG(data->autofan[nr].min_pwm));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754}
Jean Delvareb353a482007-07-05 20:36:12 +0200755
756static ssize_t set_pwm_auto_pwm_min(struct device *dev,
757 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758{
Jean Delvareb353a482007-07-05 20:36:12 +0200759 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 struct i2c_client *client = to_i2c_client(dev);
761 struct lm85_data *data = i2c_get_clientdata(client);
762 long val = simple_strtol(buf, NULL, 10);
763
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100764 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 data->autofan[nr].min_pwm = PWM_TO_REG(val);
766 lm85_write_value(client, LM85_REG_AFAN_MINPWM(nr),
767 data->autofan[nr].min_pwm);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100768 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 return count;
770}
Jean Delvareb353a482007-07-05 20:36:12 +0200771
772static ssize_t show_pwm_auto_pwm_minctl(struct device *dev,
773 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774{
Jean Delvareb353a482007-07-05 20:36:12 +0200775 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700776 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200777 return sprintf(buf, "%d\n", data->autofan[nr].min_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700778}
Jean Delvareb353a482007-07-05 20:36:12 +0200779
780static ssize_t set_pwm_auto_pwm_minctl(struct device *dev,
781 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782{
Jean Delvareb353a482007-07-05 20:36:12 +0200783 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784 struct i2c_client *client = to_i2c_client(dev);
785 struct lm85_data *data = i2c_get_clientdata(client);
786 long val = simple_strtol(buf, NULL, 10);
Jean Delvare7133e562008-04-12 19:56:35 +0200787 u8 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100789 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 data->autofan[nr].min_off = val;
Jean Delvare7133e562008-04-12 19:56:35 +0200791 tmp = lm85_read_value(client, LM85_REG_AFAN_SPIKE1);
792 tmp &= ~(0x20 << nr);
793 if (data->autofan[nr].min_off)
794 tmp |= 0x20 << nr;
795 lm85_write_value(client, LM85_REG_AFAN_SPIKE1, tmp);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100796 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 return count;
798}
Jean Delvareb353a482007-07-05 20:36:12 +0200799
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800#define pwm_auto(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200801static SENSOR_DEVICE_ATTR(pwm##offset##_auto_channels, \
802 S_IRUGO | S_IWUSR, show_pwm_auto_channels, \
803 set_pwm_auto_channels, offset - 1); \
804static SENSOR_DEVICE_ATTR(pwm##offset##_auto_pwm_min, \
805 S_IRUGO | S_IWUSR, show_pwm_auto_pwm_min, \
806 set_pwm_auto_pwm_min, offset - 1); \
807static SENSOR_DEVICE_ATTR(pwm##offset##_auto_pwm_minctl, \
808 S_IRUGO | S_IWUSR, show_pwm_auto_pwm_minctl, \
Jean Delvare34e7dc62008-10-17 17:51:13 +0200809 set_pwm_auto_pwm_minctl, offset - 1)
Jean Delvareb353a482007-07-05 20:36:12 +0200810
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811pwm_auto(1);
812pwm_auto(2);
813pwm_auto(3);
814
815/* Temperature settings for automatic PWM control */
816
Jean Delvareb353a482007-07-05 20:36:12 +0200817static ssize_t show_temp_auto_temp_off(struct device *dev,
818 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819{
Jean Delvareb353a482007-07-05 20:36:12 +0200820 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700821 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200822 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700823 HYST_FROM_REG(data->zone[nr].hyst));
824}
Jean Delvareb353a482007-07-05 20:36:12 +0200825
826static ssize_t set_temp_auto_temp_off(struct device *dev,
827 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828{
Jean Delvareb353a482007-07-05 20:36:12 +0200829 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700830 struct i2c_client *client = to_i2c_client(dev);
831 struct lm85_data *data = i2c_get_clientdata(client);
832 int min;
833 long val = simple_strtol(buf, NULL, 10);
834
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100835 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700836 min = TEMP_FROM_REG(data->zone[nr].limit);
837 data->zone[nr].off_desired = TEMP_TO_REG(val);
838 data->zone[nr].hyst = HYST_TO_REG(min - val);
Jean Delvare1f448092008-04-29 14:03:37 +0200839 if (nr == 0 || nr == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840 lm85_write_value(client, LM85_REG_AFAN_HYST1,
841 (data->zone[0].hyst << 4)
Jean Delvare1f448092008-04-29 14:03:37 +0200842 | data->zone[1].hyst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843 } else {
844 lm85_write_value(client, LM85_REG_AFAN_HYST2,
Jean Delvare1f448092008-04-29 14:03:37 +0200845 (data->zone[2].hyst << 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700846 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100847 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848 return count;
849}
Jean Delvareb353a482007-07-05 20:36:12 +0200850
851static ssize_t show_temp_auto_temp_min(struct device *dev,
852 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700853{
Jean Delvareb353a482007-07-05 20:36:12 +0200854 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200856 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857}
Jean Delvareb353a482007-07-05 20:36:12 +0200858
859static ssize_t set_temp_auto_temp_min(struct device *dev,
860 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861{
Jean Delvareb353a482007-07-05 20:36:12 +0200862 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700863 struct i2c_client *client = to_i2c_client(dev);
864 struct lm85_data *data = i2c_get_clientdata(client);
865 long val = simple_strtol(buf, NULL, 10);
866
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100867 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868 data->zone[nr].limit = TEMP_TO_REG(val);
869 lm85_write_value(client, LM85_REG_AFAN_LIMIT(nr),
870 data->zone[nr].limit);
871
872/* Update temp_auto_max and temp_auto_range */
873 data->zone[nr].range = RANGE_TO_REG(
874 TEMP_FROM_REG(data->zone[nr].max_desired) -
875 TEMP_FROM_REG(data->zone[nr].limit));
876 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
877 ((data->zone[nr].range & 0x0f) << 4)
Jean Delvare34e7dc62008-10-17 17:51:13 +0200878 | (data->pwm_freq[nr] & 0x07));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879
880/* Update temp_auto_hyst and temp_auto_off */
881 data->zone[nr].hyst = HYST_TO_REG(TEMP_FROM_REG(
882 data->zone[nr].limit) - TEMP_FROM_REG(
883 data->zone[nr].off_desired));
Jean Delvare1f448092008-04-29 14:03:37 +0200884 if (nr == 0 || nr == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 lm85_write_value(client, LM85_REG_AFAN_HYST1,
886 (data->zone[0].hyst << 4)
Jean Delvare1f448092008-04-29 14:03:37 +0200887 | data->zone[1].hyst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888 } else {
889 lm85_write_value(client, LM85_REG_AFAN_HYST2,
Jean Delvare1f448092008-04-29 14:03:37 +0200890 (data->zone[2].hyst << 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100892 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 return count;
894}
Jean Delvareb353a482007-07-05 20:36:12 +0200895
896static ssize_t show_temp_auto_temp_max(struct device *dev,
897 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700898{
Jean Delvareb353a482007-07-05 20:36:12 +0200899 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200901 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 RANGE_FROM_REG(data->zone[nr].range));
903}
Jean Delvareb353a482007-07-05 20:36:12 +0200904
905static ssize_t set_temp_auto_temp_max(struct device *dev,
906 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Jean Delvareb353a482007-07-05 20:36:12 +0200908 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 struct i2c_client *client = to_i2c_client(dev);
910 struct lm85_data *data = i2c_get_clientdata(client);
911 int min;
912 long val = simple_strtol(buf, NULL, 10);
913
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100914 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915 min = TEMP_FROM_REG(data->zone[nr].limit);
916 data->zone[nr].max_desired = TEMP_TO_REG(val);
917 data->zone[nr].range = RANGE_TO_REG(
918 val - min);
919 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
920 ((data->zone[nr].range & 0x0f) << 4)
Jean Delvare34e7dc62008-10-17 17:51:13 +0200921 | (data->pwm_freq[nr] & 0x07));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100922 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700923 return count;
924}
Jean Delvareb353a482007-07-05 20:36:12 +0200925
926static ssize_t show_temp_auto_temp_crit(struct device *dev,
927 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928{
Jean Delvareb353a482007-07-05 20:36:12 +0200929 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200931 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].critical));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932}
Jean Delvareb353a482007-07-05 20:36:12 +0200933
934static ssize_t set_temp_auto_temp_crit(struct device *dev,
Jean Delvare1f448092008-04-29 14:03:37 +0200935 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Jean Delvareb353a482007-07-05 20:36:12 +0200937 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 struct i2c_client *client = to_i2c_client(dev);
939 struct lm85_data *data = i2c_get_clientdata(client);
940 long val = simple_strtol(buf, NULL, 10);
941
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100942 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700943 data->zone[nr].critical = TEMP_TO_REG(val);
944 lm85_write_value(client, LM85_REG_AFAN_CRITICAL(nr),
945 data->zone[nr].critical);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100946 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 return count;
948}
Jean Delvareb353a482007-07-05 20:36:12 +0200949
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950#define temp_auto(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200951static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_off, \
952 S_IRUGO | S_IWUSR, show_temp_auto_temp_off, \
953 set_temp_auto_temp_off, offset - 1); \
954static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_min, \
955 S_IRUGO | S_IWUSR, show_temp_auto_temp_min, \
956 set_temp_auto_temp_min, offset - 1); \
957static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_max, \
958 S_IRUGO | S_IWUSR, show_temp_auto_temp_max, \
959 set_temp_auto_temp_max, offset - 1); \
960static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_crit, \
961 S_IRUGO | S_IWUSR, show_temp_auto_temp_crit, \
962 set_temp_auto_temp_crit, offset - 1);
963
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964temp_auto(1);
965temp_auto(2);
966temp_auto(3);
967
Ben Dooksd8d20612005-10-26 21:05:46 +0200968static int lm85_attach_adapter(struct i2c_adapter *adapter)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700969{
970 if (!(adapter->class & I2C_CLASS_HWMON))
971 return 0;
Jean Delvare2ed2dc32005-07-31 21:42:02 +0200972 return i2c_probe(adapter, &addr_data, lm85_detect);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700973}
974
Mark M. Hoffman0501a382006-09-24 21:14:35 +0200975static struct attribute *lm85_attributes[] = {
Jean Delvareb353a482007-07-05 20:36:12 +0200976 &sensor_dev_attr_fan1_input.dev_attr.attr,
977 &sensor_dev_attr_fan2_input.dev_attr.attr,
978 &sensor_dev_attr_fan3_input.dev_attr.attr,
979 &sensor_dev_attr_fan4_input.dev_attr.attr,
980 &sensor_dev_attr_fan1_min.dev_attr.attr,
981 &sensor_dev_attr_fan2_min.dev_attr.attr,
982 &sensor_dev_attr_fan3_min.dev_attr.attr,
983 &sensor_dev_attr_fan4_min.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +0200984 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
985 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
986 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
987 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +0200988
989 &sensor_dev_attr_pwm1.dev_attr.attr,
990 &sensor_dev_attr_pwm2.dev_attr.attr,
991 &sensor_dev_attr_pwm3.dev_attr.attr,
992 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
993 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
994 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
Jean Delvare34e7dc62008-10-17 17:51:13 +0200995 &sensor_dev_attr_pwm1_freq.dev_attr.attr,
996 &sensor_dev_attr_pwm2_freq.dev_attr.attr,
997 &sensor_dev_attr_pwm3_freq.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +0200998
999 &sensor_dev_attr_in0_input.dev_attr.attr,
1000 &sensor_dev_attr_in1_input.dev_attr.attr,
1001 &sensor_dev_attr_in2_input.dev_attr.attr,
1002 &sensor_dev_attr_in3_input.dev_attr.attr,
1003 &sensor_dev_attr_in0_min.dev_attr.attr,
1004 &sensor_dev_attr_in1_min.dev_attr.attr,
1005 &sensor_dev_attr_in2_min.dev_attr.attr,
1006 &sensor_dev_attr_in3_min.dev_attr.attr,
1007 &sensor_dev_attr_in0_max.dev_attr.attr,
1008 &sensor_dev_attr_in1_max.dev_attr.attr,
1009 &sensor_dev_attr_in2_max.dev_attr.attr,
1010 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001011 &sensor_dev_attr_in0_alarm.dev_attr.attr,
1012 &sensor_dev_attr_in1_alarm.dev_attr.attr,
1013 &sensor_dev_attr_in2_alarm.dev_attr.attr,
1014 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001015
1016 &sensor_dev_attr_temp1_input.dev_attr.attr,
1017 &sensor_dev_attr_temp2_input.dev_attr.attr,
1018 &sensor_dev_attr_temp3_input.dev_attr.attr,
1019 &sensor_dev_attr_temp1_min.dev_attr.attr,
1020 &sensor_dev_attr_temp2_min.dev_attr.attr,
1021 &sensor_dev_attr_temp3_min.dev_attr.attr,
1022 &sensor_dev_attr_temp1_max.dev_attr.attr,
1023 &sensor_dev_attr_temp2_max.dev_attr.attr,
1024 &sensor_dev_attr_temp3_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001025 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
1026 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
1027 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
1028 &sensor_dev_attr_temp1_fault.dev_attr.attr,
1029 &sensor_dev_attr_temp3_fault.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001030
1031 &sensor_dev_attr_pwm1_auto_channels.dev_attr.attr,
1032 &sensor_dev_attr_pwm2_auto_channels.dev_attr.attr,
1033 &sensor_dev_attr_pwm3_auto_channels.dev_attr.attr,
1034 &sensor_dev_attr_pwm1_auto_pwm_min.dev_attr.attr,
1035 &sensor_dev_attr_pwm2_auto_pwm_min.dev_attr.attr,
1036 &sensor_dev_attr_pwm3_auto_pwm_min.dev_attr.attr,
1037 &sensor_dev_attr_pwm1_auto_pwm_minctl.dev_attr.attr,
1038 &sensor_dev_attr_pwm2_auto_pwm_minctl.dev_attr.attr,
1039 &sensor_dev_attr_pwm3_auto_pwm_minctl.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001040
1041 &sensor_dev_attr_temp1_auto_temp_off.dev_attr.attr,
1042 &sensor_dev_attr_temp2_auto_temp_off.dev_attr.attr,
1043 &sensor_dev_attr_temp3_auto_temp_off.dev_attr.attr,
1044 &sensor_dev_attr_temp1_auto_temp_min.dev_attr.attr,
1045 &sensor_dev_attr_temp2_auto_temp_min.dev_attr.attr,
1046 &sensor_dev_attr_temp3_auto_temp_min.dev_attr.attr,
1047 &sensor_dev_attr_temp1_auto_temp_max.dev_attr.attr,
1048 &sensor_dev_attr_temp2_auto_temp_max.dev_attr.attr,
1049 &sensor_dev_attr_temp3_auto_temp_max.dev_attr.attr,
1050 &sensor_dev_attr_temp1_auto_temp_crit.dev_attr.attr,
1051 &sensor_dev_attr_temp2_auto_temp_crit.dev_attr.attr,
1052 &sensor_dev_attr_temp3_auto_temp_crit.dev_attr.attr,
1053
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001054 &dev_attr_vrm.attr,
1055 &dev_attr_cpu0_vid.attr,
1056 &dev_attr_alarms.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001057 NULL
1058};
1059
1060static const struct attribute_group lm85_group = {
1061 .attrs = lm85_attributes,
1062};
1063
Jean Delvare6b9aad22007-07-05 20:37:21 +02001064static struct attribute *lm85_attributes_in4[] = {
Jean Delvareb353a482007-07-05 20:36:12 +02001065 &sensor_dev_attr_in4_input.dev_attr.attr,
1066 &sensor_dev_attr_in4_min.dev_attr.attr,
1067 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001068 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001069 NULL
1070};
1071
Jean Delvare6b9aad22007-07-05 20:37:21 +02001072static const struct attribute_group lm85_group_in4 = {
1073 .attrs = lm85_attributes_in4,
1074};
1075
1076static struct attribute *lm85_attributes_in567[] = {
1077 &sensor_dev_attr_in5_input.dev_attr.attr,
1078 &sensor_dev_attr_in6_input.dev_attr.attr,
1079 &sensor_dev_attr_in7_input.dev_attr.attr,
1080 &sensor_dev_attr_in5_min.dev_attr.attr,
1081 &sensor_dev_attr_in6_min.dev_attr.attr,
1082 &sensor_dev_attr_in7_min.dev_attr.attr,
1083 &sensor_dev_attr_in5_max.dev_attr.attr,
1084 &sensor_dev_attr_in6_max.dev_attr.attr,
1085 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001086 &sensor_dev_attr_in5_alarm.dev_attr.attr,
1087 &sensor_dev_attr_in6_alarm.dev_attr.attr,
1088 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Jean Delvare6b9aad22007-07-05 20:37:21 +02001089 NULL
1090};
1091
1092static const struct attribute_group lm85_group_in567 = {
1093 .attrs = lm85_attributes_in567,
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001094};
1095
Jean Delvare5f44759472008-06-25 09:10:30 -04001096static void lm85_init_client(struct i2c_client *client)
1097{
1098 int value;
1099
1100 /* Start monitoring if needed */
1101 value = lm85_read_value(client, LM85_REG_CONFIG);
1102 if (!(value & 0x01)) {
1103 dev_info(&client->dev, "Starting monitoring\n");
1104 lm85_write_value(client, LM85_REG_CONFIG, value | 0x01);
1105 }
1106
1107 /* Warn about unusual configuration bits */
1108 if (value & 0x02)
1109 dev_warn(&client->dev, "Device configuration is locked\n");
1110 if (!(value & 0x04))
1111 dev_warn(&client->dev, "Device is not ready\n");
1112}
1113
Ben Dooksd8d20612005-10-26 21:05:46 +02001114static int lm85_detect(struct i2c_adapter *adapter, int address,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001115 int kind)
1116{
Jean Delvaree89e22b2008-06-25 08:47:35 -04001117 struct i2c_client *client;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001118 struct lm85_data *data;
1119 int err = 0;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001120 const char *type_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121
Jean Delvaree89e22b2008-06-25 08:47:35 -04001122 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123 /* We need to be able to do byte I/O */
Jean Delvare1f448092008-04-29 14:03:37 +02001124 goto ERROR0;
1125 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126
Deepak Saxenaba9c2e82005-10-17 23:08:32 +02001127 if (!(data = kzalloc(sizeof(struct lm85_data), GFP_KERNEL))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 err = -ENOMEM;
1129 goto ERROR0;
1130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001131
Jean Delvaree89e22b2008-06-25 08:47:35 -04001132 client = &data->client;
1133 i2c_set_clientdata(client, data);
1134 client->addr = address;
1135 client->adapter = adapter;
1136 client->driver = &lm85_driver;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001138 /* If auto-detecting, determine the chip type */
1139 if (kind < 0) {
1140 int company = lm85_read_value(client, LM85_REG_COMPANY);
1141 int verstep = lm85_read_value(client, LM85_REG_VERSTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001142
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001143 dev_dbg(&adapter->dev, "Detecting device at 0x%02x with "
1144 "COMPANY: 0x%02x and VERSTEP: 0x%02x\n",
1145 address, company, verstep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001146
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001147 /* All supported chips have the version in common */
1148 if ((verstep & LM85_VERSTEP_VMASK) != LM85_VERSTEP_GENERIC) {
1149 dev_dbg(&adapter->dev, "Autodetection failed: "
1150 "unsupported version\n");
1151 goto ERROR1;
1152 }
1153 kind = any_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001154
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001155 /* Now, refine the detection */
1156 if (company == LM85_COMPANY_NATIONAL) {
1157 switch (verstep) {
1158 case LM85_VERSTEP_LM85C:
1159 kind = lm85c;
1160 break;
1161 case LM85_VERSTEP_LM85B:
1162 kind = lm85b;
1163 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001164 }
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001165 } else if (company == LM85_COMPANY_ANALOG_DEV) {
1166 switch (verstep) {
1167 case LM85_VERSTEP_ADM1027:
1168 kind = adm1027;
1169 break;
1170 case LM85_VERSTEP_ADT7463:
1171 case LM85_VERSTEP_ADT7463C:
1172 kind = adt7463;
1173 break;
1174 }
1175 } else if (company == LM85_COMPANY_SMSC) {
1176 switch (verstep) {
1177 case LM85_VERSTEP_EMC6D100_A0:
1178 case LM85_VERSTEP_EMC6D100_A1:
1179 /* Note: we can't tell a '100 from a '101 */
1180 kind = emc6d100;
1181 break;
1182 case LM85_VERSTEP_EMC6D102:
1183 kind = emc6d102;
1184 break;
1185 }
1186 } else {
1187 dev_dbg(&adapter->dev, "Autodetection failed: "
1188 "unknown vendor\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 goto ERROR1;
1190 }
1191 }
1192
1193 /* Fill in the chip specific driver values */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001194 switch (kind) {
1195 case lm85b:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196 type_name = "lm85b";
Jean Delvare8a0795d2008-10-17 17:51:14 +02001197 data->freq_map = lm85_freq_map;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001198 break;
1199 case lm85c:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200 type_name = "lm85c";
Jean Delvare8a0795d2008-10-17 17:51:14 +02001201 data->freq_map = lm85_freq_map;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001202 break;
1203 case adm1027:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 type_name = "adm1027";
Jean Delvare8a0795d2008-10-17 17:51:14 +02001205 data->freq_map = adm1027_freq_map;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001206 break;
1207 case adt7463:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001208 type_name = "adt7463";
Jean Delvare8a0795d2008-10-17 17:51:14 +02001209 data->freq_map = adm1027_freq_map;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001210 break;
1211 case emc6d100:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001212 type_name = "emc6d100";
Jean Delvare8a0795d2008-10-17 17:51:14 +02001213 data->freq_map = adm1027_freq_map;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001214 break;
1215 case emc6d102:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001216 type_name = "emc6d102";
Jean Delvare8a0795d2008-10-17 17:51:14 +02001217 data->freq_map = adm1027_freq_map;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001218 break;
1219 default:
1220 type_name = "lm85";
Jean Delvare8a0795d2008-10-17 17:51:14 +02001221 data->freq_map = lm85_freq_map;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001222 }
1223 strlcpy(client->name, type_name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224
1225 /* Fill in the remaining client fields */
1226 data->type = kind;
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001227 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001228
1229 /* Tell the I2C layer a new client has arrived */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001230 err = i2c_attach_client(client);
1231 if (err)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001232 goto ERROR1;
1233
1234 /* Set the VRM version */
Jean Delvare303760b2005-07-31 21:52:01 +02001235 data->vrm = vid_which_vrm();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001236
1237 /* Initialize the LM85 chip */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001238 lm85_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239
1240 /* Register sysfs hooks */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001241 err = sysfs_create_group(&client->dev.kobj, &lm85_group);
1242 if (err)
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001243 goto ERROR2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001244
Jean Delvare9c516ef2005-11-26 20:07:54 +01001245 /* The ADT7463 has an optional VRM 10 mode where pin 21 is used
1246 as a sixth digital VID input rather than an analog input. */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001247 data->vid = lm85_read_value(client, LM85_REG_VID);
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001248 if (!(kind == adt7463 && (data->vid & 0x80)))
Jean Delvaree89e22b2008-06-25 08:47:35 -04001249 if ((err = sysfs_create_group(&client->dev.kobj,
Jean Delvare6b9aad22007-07-05 20:37:21 +02001250 &lm85_group_in4)))
1251 goto ERROR3;
1252
1253 /* The EMC6D100 has 3 additional voltage inputs */
1254 if (kind == emc6d100)
Jean Delvaree89e22b2008-06-25 08:47:35 -04001255 if ((err = sysfs_create_group(&client->dev.kobj,
Jean Delvare6b9aad22007-07-05 20:37:21 +02001256 &lm85_group_in567)))
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001257 goto ERROR3;
1258
Jean Delvaree89e22b2008-06-25 08:47:35 -04001259 data->hwmon_dev = hwmon_device_register(&client->dev);
Tony Jones1beeffe2007-08-20 13:46:20 -07001260 if (IS_ERR(data->hwmon_dev)) {
1261 err = PTR_ERR(data->hwmon_dev);
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001262 goto ERROR3;
Jean Delvare9c516ef2005-11-26 20:07:54 +01001263 }
1264
Linus Torvalds1da177e2005-04-16 15:20:36 -07001265 return 0;
1266
1267 /* Error out and cleanup code */
Jean Delvare1f448092008-04-29 14:03:37 +02001268 ERROR3:
Jean Delvaree89e22b2008-06-25 08:47:35 -04001269 sysfs_remove_group(&client->dev.kobj, &lm85_group);
1270 sysfs_remove_group(&client->dev.kobj, &lm85_group_in4);
Jean Delvare6b9aad22007-07-05 20:37:21 +02001271 if (kind == emc6d100)
Jean Delvaree89e22b2008-06-25 08:47:35 -04001272 sysfs_remove_group(&client->dev.kobj, &lm85_group_in567);
Jean Delvare1f448092008-04-29 14:03:37 +02001273 ERROR2:
Jean Delvaree89e22b2008-06-25 08:47:35 -04001274 i2c_detach_client(client);
Jean Delvare1f448092008-04-29 14:03:37 +02001275 ERROR1:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 kfree(data);
Jean Delvare1f448092008-04-29 14:03:37 +02001277 ERROR0:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278 return err;
1279}
1280
Ben Dooksd8d20612005-10-26 21:05:46 +02001281static int lm85_detach_client(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001282{
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001283 struct lm85_data *data = i2c_get_clientdata(client);
Tony Jones1beeffe2007-08-20 13:46:20 -07001284 hwmon_device_unregister(data->hwmon_dev);
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001285 sysfs_remove_group(&client->dev.kobj, &lm85_group);
Jean Delvare6b9aad22007-07-05 20:37:21 +02001286 sysfs_remove_group(&client->dev.kobj, &lm85_group_in4);
1287 if (data->type == emc6d100)
1288 sysfs_remove_group(&client->dev.kobj, &lm85_group_in567);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001289 i2c_detach_client(client);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001290 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001291 return 0;
1292}
1293
1294
Ben Dooksd8d20612005-10-26 21:05:46 +02001295static int lm85_read_value(struct i2c_client *client, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296{
1297 int res;
1298
1299 /* What size location is it? */
Jean Delvare1f448092008-04-29 14:03:37 +02001300 switch (reg) {
1301 case LM85_REG_FAN(0): /* Read WORD data */
1302 case LM85_REG_FAN(1):
1303 case LM85_REG_FAN(2):
1304 case LM85_REG_FAN(3):
1305 case LM85_REG_FAN_MIN(0):
1306 case LM85_REG_FAN_MIN(1):
1307 case LM85_REG_FAN_MIN(2):
1308 case LM85_REG_FAN_MIN(3):
1309 case LM85_REG_ALARM1: /* Read both bytes at once */
1310 res = i2c_smbus_read_byte_data(client, reg) & 0xff;
1311 res |= i2c_smbus_read_byte_data(client, reg + 1) << 8;
1312 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 default: /* Read BYTE data */
1314 res = i2c_smbus_read_byte_data(client, reg);
Jean Delvare1f448092008-04-29 14:03:37 +02001315 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 }
1317
Jean Delvare1f448092008-04-29 14:03:37 +02001318 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319}
1320
Jean Delvaree89e22b2008-06-25 08:47:35 -04001321static void lm85_write_value(struct i2c_client *client, u8 reg, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322{
Jean Delvare1f448092008-04-29 14:03:37 +02001323 switch (reg) {
1324 case LM85_REG_FAN(0): /* Write WORD data */
1325 case LM85_REG_FAN(1):
1326 case LM85_REG_FAN(2):
1327 case LM85_REG_FAN(3):
1328 case LM85_REG_FAN_MIN(0):
1329 case LM85_REG_FAN_MIN(1):
1330 case LM85_REG_FAN_MIN(2):
1331 case LM85_REG_FAN_MIN(3):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001332 /* NOTE: ALARM is read only, so not included here */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001333 i2c_smbus_write_byte_data(client, reg, value & 0xff);
1334 i2c_smbus_write_byte_data(client, reg + 1, value >> 8);
Jean Delvare1f448092008-04-29 14:03:37 +02001335 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336 default: /* Write BYTE data */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001337 i2c_smbus_write_byte_data(client, reg, value);
Jean Delvare1f448092008-04-29 14:03:37 +02001338 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001339 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001340}
1341
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342static struct lm85_data *lm85_update_device(struct device *dev)
1343{
1344 struct i2c_client *client = to_i2c_client(dev);
1345 struct lm85_data *data = i2c_get_clientdata(client);
1346 int i;
1347
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001348 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349
Jean Delvare1f448092008-04-29 14:03:37 +02001350 if (!data->valid ||
1351 time_after(jiffies, data->last_reading + LM85_DATA_INTERVAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 /* Things that change quickly */
1353 dev_dbg(&client->dev, "Reading sensor values\n");
Jean Delvare1f448092008-04-29 14:03:37 +02001354
Linus Torvalds1da177e2005-04-16 15:20:36 -07001355 /* Have to read extended bits first to "freeze" the
1356 * more significant bits that are read later.
Jean Delvare5a4d3ef2007-07-05 20:38:32 +02001357 * There are 2 additional resolution bits per channel and we
1358 * have room for 4, so we shift them to the left.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001359 */
Jean Delvare1f448092008-04-29 14:03:37 +02001360 if (data->type == adm1027 || data->type == adt7463) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001361 int ext1 = lm85_read_value(client,
1362 ADM1027_REG_EXTEND_ADC1);
1363 int ext2 = lm85_read_value(client,
1364 ADM1027_REG_EXTEND_ADC2);
1365 int val = (ext1 << 8) + ext2;
1366
Jean Delvare1f448092008-04-29 14:03:37 +02001367 for (i = 0; i <= 4; i++)
1368 data->in_ext[i] =
1369 ((val >> (i * 2)) & 0x03) << 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370
Jean Delvare1f448092008-04-29 14:03:37 +02001371 for (i = 0; i <= 2; i++)
1372 data->temp_ext[i] =
1373 (val >> ((i + 4) * 2)) & 0x0c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 }
1375
Jean Delvare9c516ef2005-11-26 20:07:54 +01001376 data->vid = lm85_read_value(client, LM85_REG_VID);
1377
1378 for (i = 0; i <= 3; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001379 data->in[i] =
1380 lm85_read_value(client, LM85_REG_IN(i));
Jean Delvaree89e22b2008-06-25 08:47:35 -04001381 data->fan[i] =
1382 lm85_read_value(client, LM85_REG_FAN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 }
1384
Jean Delvare9c516ef2005-11-26 20:07:54 +01001385 if (!(data->type == adt7463 && (data->vid & 0x80))) {
1386 data->in[4] = lm85_read_value(client,
1387 LM85_REG_IN(4));
1388 }
1389
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 for (i = 0; i <= 2; ++i) {
1391 data->temp[i] =
1392 lm85_read_value(client, LM85_REG_TEMP(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393 data->pwm[i] =
1394 lm85_read_value(client, LM85_REG_PWM(i));
1395 }
1396
1397 data->alarms = lm85_read_value(client, LM85_REG_ALARM1);
1398
Jean Delvaredd1ac532008-05-01 08:47:33 +02001399 if (data->type == emc6d100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 /* Three more voltage sensors */
1401 for (i = 5; i <= 7; ++i) {
Jean Delvare1f448092008-04-29 14:03:37 +02001402 data->in[i] = lm85_read_value(client,
1403 EMC6D100_REG_IN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 }
1405 /* More alarm bits */
Jean Delvare1f448092008-04-29 14:03:37 +02001406 data->alarms |= lm85_read_value(client,
1407 EMC6D100_REG_ALARM3) << 16;
1408 } else if (data->type == emc6d102) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001409 /* Have to read LSB bits after the MSB ones because
1410 the reading of the MSB bits has frozen the
1411 LSBs (backward from the ADM1027).
1412 */
1413 int ext1 = lm85_read_value(client,
1414 EMC6D102_REG_EXTEND_ADC1);
1415 int ext2 = lm85_read_value(client,
1416 EMC6D102_REG_EXTEND_ADC2);
1417 int ext3 = lm85_read_value(client,
1418 EMC6D102_REG_EXTEND_ADC3);
1419 int ext4 = lm85_read_value(client,
1420 EMC6D102_REG_EXTEND_ADC4);
1421 data->in_ext[0] = ext3 & 0x0f;
1422 data->in_ext[1] = ext4 & 0x0f;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001423 data->in_ext[2] = ext4 >> 4;
1424 data->in_ext[3] = ext3 >> 4;
1425 data->in_ext[4] = ext2 >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426
1427 data->temp_ext[0] = ext1 & 0x0f;
1428 data->temp_ext[1] = ext2 & 0x0f;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001429 data->temp_ext[2] = ext1 >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001430 }
1431
Jean Delvare1f448092008-04-29 14:03:37 +02001432 data->last_reading = jiffies;
1433 } /* last_reading */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Jean Delvare1f448092008-04-29 14:03:37 +02001435 if (!data->valid ||
1436 time_after(jiffies, data->last_config + LM85_CONFIG_INTERVAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001437 /* Things that don't change often */
1438 dev_dbg(&client->dev, "Reading config values\n");
1439
Jean Delvare9c516ef2005-11-26 20:07:54 +01001440 for (i = 0; i <= 3; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 data->in_min[i] =
1442 lm85_read_value(client, LM85_REG_IN_MIN(i));
1443 data->in_max[i] =
1444 lm85_read_value(client, LM85_REG_IN_MAX(i));
Jean Delvaree89e22b2008-06-25 08:47:35 -04001445 data->fan_min[i] =
1446 lm85_read_value(client, LM85_REG_FAN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001447 }
1448
Jean Delvare9c516ef2005-11-26 20:07:54 +01001449 if (!(data->type == adt7463 && (data->vid & 0x80))) {
1450 data->in_min[4] = lm85_read_value(client,
1451 LM85_REG_IN_MIN(4));
1452 data->in_max[4] = lm85_read_value(client,
1453 LM85_REG_IN_MAX(4));
1454 }
1455
Jean Delvare1f448092008-04-29 14:03:37 +02001456 if (data->type == emc6d100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001457 for (i = 5; i <= 7; ++i) {
Jean Delvare1f448092008-04-29 14:03:37 +02001458 data->in_min[i] = lm85_read_value(client,
1459 EMC6D100_REG_IN_MIN(i));
1460 data->in_max[i] = lm85_read_value(client,
1461 EMC6D100_REG_IN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462 }
1463 }
1464
Linus Torvalds1da177e2005-04-16 15:20:36 -07001465 for (i = 0; i <= 2; ++i) {
Jean Delvaree89e22b2008-06-25 08:47:35 -04001466 int val;
1467
Linus Torvalds1da177e2005-04-16 15:20:36 -07001468 data->temp_min[i] =
1469 lm85_read_value(client, LM85_REG_TEMP_MIN(i));
1470 data->temp_max[i] =
1471 lm85_read_value(client, LM85_REG_TEMP_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 data->autofan[i].config =
1474 lm85_read_value(client, LM85_REG_AFAN_CONFIG(i));
1475 val = lm85_read_value(client, LM85_REG_AFAN_RANGE(i));
Jean Delvare34e7dc62008-10-17 17:51:13 +02001476 data->pwm_freq[i] = val & 0x07;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001477 data->zone[i].range = val >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001478 data->autofan[i].min_pwm =
1479 lm85_read_value(client, LM85_REG_AFAN_MINPWM(i));
1480 data->zone[i].limit =
1481 lm85_read_value(client, LM85_REG_AFAN_LIMIT(i));
1482 data->zone[i].critical =
1483 lm85_read_value(client, LM85_REG_AFAN_CRITICAL(i));
1484 }
1485
1486 i = lm85_read_value(client, LM85_REG_AFAN_SPIKE1);
Jean Delvare1f448092008-04-29 14:03:37 +02001487 data->autofan[0].min_off = (i & 0x20) != 0;
1488 data->autofan[1].min_off = (i & 0x40) != 0;
1489 data->autofan[2].min_off = (i & 0x80) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001490
1491 i = lm85_read_value(client, LM85_REG_AFAN_HYST1);
Jean Delvaree89e22b2008-06-25 08:47:35 -04001492 data->zone[0].hyst = i >> 4;
Jean Delvare1f448092008-04-29 14:03:37 +02001493 data->zone[1].hyst = i & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494
1495 i = lm85_read_value(client, LM85_REG_AFAN_HYST2);
Jean Delvaree89e22b2008-06-25 08:47:35 -04001496 data->zone[2].hyst = i >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 data->last_config = jiffies;
Jean Delvare1f448092008-04-29 14:03:37 +02001499 } /* last_config */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001500
1501 data->valid = 1;
1502
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001503 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504
1505 return data;
1506}
1507
1508
1509static int __init sm_lm85_init(void)
1510{
1511 return i2c_add_driver(&lm85_driver);
1512}
1513
Jean Delvare1f448092008-04-29 14:03:37 +02001514static void __exit sm_lm85_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515{
1516 i2c_del_driver(&lm85_driver);
1517}
1518
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519MODULE_LICENSE("GPL");
Jean Delvare1f448092008-04-29 14:03:37 +02001520MODULE_AUTHOR("Philip Pokorny <ppokorny@penguincomputing.com>, "
1521 "Margit Schubert-While <margitsw@t-online.de>, "
Jean Delvaree89e22b2008-06-25 08:47:35 -04001522 "Justin Thiessen <jthiessen@penguincomputing.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523MODULE_DESCRIPTION("LM85-B, LM85-C driver");
1524
1525module_init(sm_lm85_init);
1526module_exit(sm_lm85_exit);