blob: b251d8674b41a1c45708c5ee6647a668b7d0cfbf [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 */
Darrick J. Wong79b92f22008-11-12 13:26:59 -080042I2C_CLIENT_INSMOD_7(lm85b, lm85c, adm1027, adt7463, adt7468, emc6d100,
43 emc6d102);
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
45/* The LM85 registers */
46
47#define LM85_REG_IN(nr) (0x20 + (nr))
48#define LM85_REG_IN_MIN(nr) (0x44 + (nr) * 2)
49#define LM85_REG_IN_MAX(nr) (0x45 + (nr) * 2)
50
51#define LM85_REG_TEMP(nr) (0x25 + (nr))
52#define LM85_REG_TEMP_MIN(nr) (0x4e + (nr) * 2)
53#define LM85_REG_TEMP_MAX(nr) (0x4f + (nr) * 2)
54
55/* Fan speeds are LSB, MSB (2 bytes) */
Jean Delvare1f448092008-04-29 14:03:37 +020056#define LM85_REG_FAN(nr) (0x28 + (nr) * 2)
57#define LM85_REG_FAN_MIN(nr) (0x54 + (nr) * 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59#define LM85_REG_PWM(nr) (0x30 + (nr))
60
Linus Torvalds1da177e2005-04-16 15:20:36 -070061#define LM85_REG_COMPANY 0x3e
62#define LM85_REG_VERSTEP 0x3f
Darrick J. Wong79b92f22008-11-12 13:26:59 -080063
64#define ADT7468_REG_CFG5 0x7c
65#define ADT7468_OFF64 0x01
66#define IS_ADT7468_OFF64(data) \
67 ((data)->type == adt7468 && !((data)->cfg5 & ADT7468_OFF64))
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/* These are the recognized values for the above regs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070070#define LM85_COMPANY_NATIONAL 0x01
71#define LM85_COMPANY_ANALOG_DEV 0x41
Jean Delvare1f448092008-04-29 14:03:37 +020072#define LM85_COMPANY_SMSC 0x5c
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define LM85_VERSTEP_VMASK 0xf0
74#define LM85_VERSTEP_GENERIC 0x60
Darrick J. Wongc15ade62009-03-10 12:55:47 -070075#define LM85_VERSTEP_GENERIC2 0x70
Linus Torvalds1da177e2005-04-16 15:20:36 -070076#define LM85_VERSTEP_LM85C 0x60
77#define LM85_VERSTEP_LM85B 0x62
78#define LM85_VERSTEP_ADM1027 0x60
79#define LM85_VERSTEP_ADT7463 0x62
80#define LM85_VERSTEP_ADT7463C 0x6A
Darrick J. Wong79b92f22008-11-12 13:26:59 -080081#define LM85_VERSTEP_ADT7468_1 0x71
82#define LM85_VERSTEP_ADT7468_2 0x72
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define LM85_VERSTEP_EMC6D100_A0 0x60
84#define LM85_VERSTEP_EMC6D100_A1 0x61
85#define LM85_VERSTEP_EMC6D102 0x65
86
87#define LM85_REG_CONFIG 0x40
88
89#define LM85_REG_ALARM1 0x41
90#define LM85_REG_ALARM2 0x42
91
92#define LM85_REG_VID 0x43
93
94/* Automated FAN control */
95#define LM85_REG_AFAN_CONFIG(nr) (0x5c + (nr))
96#define LM85_REG_AFAN_RANGE(nr) (0x5f + (nr))
97#define LM85_REG_AFAN_SPIKE1 0x62
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#define LM85_REG_AFAN_MINPWM(nr) (0x64 + (nr))
99#define LM85_REG_AFAN_LIMIT(nr) (0x67 + (nr))
100#define LM85_REG_AFAN_CRITICAL(nr) (0x6a + (nr))
101#define LM85_REG_AFAN_HYST1 0x6d
102#define LM85_REG_AFAN_HYST2 0x6e
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104#define ADM1027_REG_EXTEND_ADC1 0x76
105#define ADM1027_REG_EXTEND_ADC2 0x77
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106
107#define EMC6D100_REG_ALARM3 0x7d
108/* IN5, IN6 and IN7 */
Jean Delvare1f448092008-04-29 14:03:37 +0200109#define EMC6D100_REG_IN(nr) (0x70 + ((nr) - 5))
110#define EMC6D100_REG_IN_MIN(nr) (0x73 + ((nr) - 5) * 2)
111#define EMC6D100_REG_IN_MAX(nr) (0x74 + ((nr) - 5) * 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112#define EMC6D102_REG_EXTEND_ADC1 0x85
113#define EMC6D102_REG_EXTEND_ADC2 0x86
114#define EMC6D102_REG_EXTEND_ADC3 0x87
115#define EMC6D102_REG_EXTEND_ADC4 0x88
116
Linus Torvalds1da177e2005-04-16 15:20:36 -0700117
Jean Delvare1f448092008-04-29 14:03:37 +0200118/* Conversions. Rounding and limit checking is only done on the TO_REG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 variants. Note that you should be a bit careful with which arguments
120 these macros are called: arguments may be evaluated more than once.
121 */
122
123/* IN are scaled acording to built-in resistors */
Jean Delvaree89e22b2008-06-25 08:47:35 -0400124static const int lm85_scaling[] = { /* .001 Volts */
Jean Delvare1f448092008-04-29 14:03:37 +0200125 2500, 2250, 3300, 5000, 12000,
126 3300, 1500, 1800 /*EMC6D100*/
127};
128#define SCALE(val, from, to) (((val) * (to) + ((from) / 2)) / (from))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129
Jean Delvare1f448092008-04-29 14:03:37 +0200130#define INS_TO_REG(n, val) \
131 SENSORS_LIMIT(SCALE(val, lm85_scaling[n], 192), 0, 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Jean Delvare1f448092008-04-29 14:03:37 +0200133#define INSEXT_FROM_REG(n, val, ext) \
Jean Delvare5a4d3ef2007-07-05 20:38:32 +0200134 SCALE(((val) << 4) + (ext), 192 << 4, lm85_scaling[n])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700135
Jean Delvare1f448092008-04-29 14:03:37 +0200136#define INS_FROM_REG(n, val) SCALE((val), 192, lm85_scaling[n])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137
138/* FAN speed is measured using 90kHz clock */
Jean Delvare63f281a2007-07-05 20:39:40 +0200139static inline u16 FAN_TO_REG(unsigned long val)
140{
141 if (!val)
142 return 0xffff;
143 return SENSORS_LIMIT(5400000 / val, 1, 0xfffe);
144}
Jean Delvare1f448092008-04-29 14:03:37 +0200145#define FAN_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
146 5400000 / (val))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148/* Temperature is reported in .001 degC increments */
149#define TEMP_TO_REG(val) \
Jean Delvare1f448092008-04-29 14:03:37 +0200150 SENSORS_LIMIT(SCALE(val, 1000, 1), -127, 127)
151#define TEMPEXT_FROM_REG(val, ext) \
Jean Delvare5a4d3ef2007-07-05 20:38:32 +0200152 SCALE(((val) << 4) + (ext), 16, 1000)
153#define TEMP_FROM_REG(val) ((val) * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154
Jean Delvare1f448092008-04-29 14:03:37 +0200155#define PWM_TO_REG(val) SENSORS_LIMIT(val, 0, 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700156#define PWM_FROM_REG(val) (val)
157
158
159/* ZONEs have the following parameters:
160 * Limit (low) temp, 1. degC
161 * Hysteresis (below limit), 1. degC (0-15)
162 * Range of speed control, .1 degC (2-80)
163 * Critical (high) temp, 1. degC
164 *
165 * FAN PWMs have the following parameters:
166 * Reference Zone, 1, 2, 3, etc.
167 * Spinup time, .05 sec
168 * PWM value at limit/low temp, 1 count
169 * PWM Frequency, 1. Hz
170 * PWM is Min or OFF below limit, flag
171 * Invert PWM output, flag
172 *
173 * Some chips filter the temp, others the fan.
174 * Filter constant (or disabled) .1 seconds
175 */
176
177/* These are the zone temperature range encodings in .001 degree C */
Jean Delvaree89e22b2008-06-25 08:47:35 -0400178static const int lm85_range_map[] = {
Jean Delvare1f448092008-04-29 14:03:37 +0200179 2000, 2500, 3300, 4000, 5000, 6600, 8000, 10000,
180 13300, 16000, 20000, 26600, 32000, 40000, 53300, 80000
181};
182
183static int RANGE_TO_REG(int range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700184{
185 int i;
186
Jean Delvared38b1492008-04-03 10:40:39 +0200187 /* Find the closest match */
Jean Delvare1b92ada2008-10-17 17:51:14 +0200188 for (i = 0; i < 15; ++i) {
189 if (range <= (lm85_range_map[i] + lm85_range_map[i + 1]) / 2)
190 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700191 }
Jean Delvared38b1492008-04-03 10:40:39 +0200192
Jean Delvare1b92ada2008-10-17 17:51:14 +0200193 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194}
Jean Delvare1f448092008-04-29 14:03:37 +0200195#define RANGE_FROM_REG(val) lm85_range_map[(val) & 0x0f]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700196
Linus Torvalds1da177e2005-04-16 15:20:36 -0700197/* These are the PWM frequency encodings */
Jean Delvare34e7dc62008-10-17 17:51:13 +0200198static const int lm85_freq_map[8] = { /* 1 Hz */
Jean Delvare8a0795d2008-10-17 17:51:14 +0200199 10, 15, 23, 30, 38, 47, 61, 94
200};
201static const int adm1027_freq_map[8] = { /* 1 Hz */
202 11, 15, 22, 29, 35, 44, 59, 88
Jean Delvare1f448092008-04-29 14:03:37 +0200203};
204
Jean Delvare8a0795d2008-10-17 17:51:14 +0200205static int FREQ_TO_REG(const int *map, int freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206{
207 int i;
208
Jean Delvare86010c92008-10-17 17:51:13 +0200209 /* Find the closest match */
Jean Delvare1f448092008-04-29 14:03:37 +0200210 for (i = 0; i < 7; ++i)
Jean Delvare8a0795d2008-10-17 17:51:14 +0200211 if (freq <= (map[i] + map[i + 1]) / 2)
Jean Delvare1f448092008-04-29 14:03:37 +0200212 break;
Jean Delvaree89e22b2008-06-25 08:47:35 -0400213 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700214}
Jean Delvare8a0795d2008-10-17 17:51:14 +0200215
216static int FREQ_FROM_REG(const int *map, u8 reg)
217{
218 return map[reg & 0x07];
219}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700220
221/* Since we can't use strings, I'm abusing these numbers
222 * to stand in for the following meanings:
223 * 1 -- PWM responds to Zone 1
224 * 2 -- PWM responds to Zone 2
225 * 3 -- PWM responds to Zone 3
226 * 23 -- PWM responds to the higher temp of Zone 2 or 3
227 * 123 -- PWM responds to highest of Zone 1, 2, or 3
228 * 0 -- PWM is always at 0% (ie, off)
229 * -1 -- PWM is always at 100%
230 * -2 -- PWM responds to manual control
231 */
232
Jean Delvaree89e22b2008-06-25 08:47:35 -0400233static const int lm85_zone_map[] = { 1, 2, 3, -1, 0, 23, 123, -2 };
234#define ZONE_FROM_REG(val) lm85_zone_map[(val) >> 5]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235
Jean Delvare1f448092008-04-29 14:03:37 +0200236static int ZONE_TO_REG(int zone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700237{
238 int i;
239
Jean Delvare1f448092008-04-29 14:03:37 +0200240 for (i = 0; i <= 7; ++i)
241 if (zone == lm85_zone_map[i])
242 break;
243 if (i > 7) /* Not found. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244 i = 3; /* Always 100% */
Jean Delvaree89e22b2008-06-25 08:47:35 -0400245 return i << 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246}
247
Jean Delvare1f448092008-04-29 14:03:37 +0200248#define HYST_TO_REG(val) SENSORS_LIMIT(((val) + 500) / 1000, 0, 15)
249#define HYST_FROM_REG(val) ((val) * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251/* Chip sampling rates
252 *
253 * Some sensors are not updated more frequently than once per second
254 * so it doesn't make sense to read them more often than that.
255 * We cache the results and return the saved data if the driver
256 * is called again before a second has elapsed.
257 *
258 * Also, there is significant configuration data for this chip
259 * given the automatic PWM fan control that is possible. There
260 * are about 47 bytes of config data to only 22 bytes of actual
261 * readings. So, we keep the config data up to date in the cache
262 * when it is written and only sample it once every 1 *minute*
263 */
264#define LM85_DATA_INTERVAL (HZ + HZ / 2)
265#define LM85_CONFIG_INTERVAL (1 * 60 * HZ)
266
Linus Torvalds1da177e2005-04-16 15:20:36 -0700267/* LM85 can automatically adjust fan speeds based on temperature
268 * This structure encapsulates an entire Zone config. There are
269 * three zones (one for each temperature input) on the lm85
270 */
271struct lm85_zone {
272 s8 limit; /* Low temp limit */
273 u8 hyst; /* Low limit hysteresis. (0-15) */
274 u8 range; /* Temp range, encoded */
275 s8 critical; /* "All fans ON" temp limit */
Jean Delvare1f448092008-04-29 14:03:37 +0200276 u8 off_desired; /* Actual "off" temperature specified. Preserved
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277 * to prevent "drift" as other autofan control
278 * values change.
279 */
Jean Delvare1f448092008-04-29 14:03:37 +0200280 u8 max_desired; /* Actual "max" temperature specified. Preserved
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 * to prevent "drift" as other autofan control
282 * values change.
283 */
284};
285
286struct lm85_autofan {
287 u8 config; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288 u8 min_pwm; /* Minimum PWM value, encoded */
289 u8 min_off; /* Min PWM or OFF below "limit", flag */
290};
291
Jean Delvareed6bafb2007-02-14 21:15:03 +0100292/* For each registered chip, we need to keep some data in memory.
293 The structure is dynamically allocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294struct lm85_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700295 struct device *hwmon_dev;
Jean Delvare8a0795d2008-10-17 17:51:14 +0200296 const int *freq_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 enum chips type;
298
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100299 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300 int valid; /* !=0 if following fields are valid */
301 unsigned long last_reading; /* In jiffies */
302 unsigned long last_config; /* In jiffies */
303
304 u8 in[8]; /* Register value */
305 u8 in_max[8]; /* Register value */
306 u8 in_min[8]; /* Register value */
307 s8 temp[3]; /* Register value */
308 s8 temp_min[3]; /* Register value */
309 s8 temp_max[3]; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 u16 fan[4]; /* Register value */
311 u16 fan_min[4]; /* Register value */
312 u8 pwm[3]; /* Register value */
Jean Delvare34e7dc62008-10-17 17:51:13 +0200313 u8 pwm_freq[3]; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 u8 temp_ext[3]; /* Decoded values */
315 u8 in_ext[8]; /* Decoded values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700316 u8 vid; /* Register value */
317 u8 vrm; /* VRM version */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 u32 alarms; /* Register encoding, combined */
Darrick J. Wong79b92f22008-11-12 13:26:59 -0800319 u8 cfg5; /* Config Register 5 on ADT7468 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 struct lm85_autofan autofan[3];
321 struct lm85_zone zone[3];
322};
323
Jean Delvare67712d02008-10-17 17:51:14 +0200324static int lm85_detect(struct i2c_client *client, int kind,
325 struct i2c_board_info *info);
326static int lm85_probe(struct i2c_client *client,
327 const struct i2c_device_id *id);
328static int lm85_remove(struct i2c_client *client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700329
Darren Jenkinsf6c27fc2006-02-27 23:14:58 +0100330static int lm85_read_value(struct i2c_client *client, u8 reg);
Jean Delvaree89e22b2008-06-25 08:47:35 -0400331static void lm85_write_value(struct i2c_client *client, u8 reg, int value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332static struct lm85_data *lm85_update_device(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700333
334
Jean Delvare67712d02008-10-17 17:51:14 +0200335static const struct i2c_device_id lm85_id[] = {
336 { "adm1027", adm1027 },
337 { "adt7463", adt7463 },
Darrick J. Wongc15ade62009-03-10 12:55:47 -0700338 { "adt7468", adt7468 },
Jean Delvare67712d02008-10-17 17:51:14 +0200339 { "lm85", any_chip },
340 { "lm85b", lm85b },
341 { "lm85c", lm85c },
342 { "emc6d100", emc6d100 },
343 { "emc6d101", emc6d100 },
344 { "emc6d102", emc6d102 },
345 { }
346};
347MODULE_DEVICE_TABLE(i2c, lm85_id);
348
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349static struct i2c_driver lm85_driver = {
Jean Delvare67712d02008-10-17 17:51:14 +0200350 .class = I2C_CLASS_HWMON,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100351 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100352 .name = "lm85",
353 },
Jean Delvare67712d02008-10-17 17:51:14 +0200354 .probe = lm85_probe,
355 .remove = lm85_remove,
356 .id_table = lm85_id,
357 .detect = lm85_detect,
358 .address_data = &addr_data,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359};
360
361
362/* 4 Fans */
Jean Delvareb353a482007-07-05 20:36:12 +0200363static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
364 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700365{
Jean Delvareb353a482007-07-05 20:36:12 +0200366 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200368 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369}
Jean Delvareb353a482007-07-05 20:36:12 +0200370
371static ssize_t show_fan_min(struct device *dev, struct device_attribute *attr,
372 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
Jean Delvareb353a482007-07-05 20:36:12 +0200374 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200376 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377}
Jean Delvareb353a482007-07-05 20:36:12 +0200378
379static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
380 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381{
Jean Delvareb353a482007-07-05 20:36:12 +0200382 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383 struct i2c_client *client = to_i2c_client(dev);
384 struct lm85_data *data = i2c_get_clientdata(client);
Jean Delvare63f281a2007-07-05 20:39:40 +0200385 unsigned long val = simple_strtoul(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100387 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700388 data->fan_min[nr] = FAN_TO_REG(val);
389 lm85_write_value(client, LM85_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100390 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391 return count;
392}
393
394#define show_fan_offset(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200395static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
396 show_fan, NULL, offset - 1); \
397static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
398 show_fan_min, set_fan_min, offset - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700399
400show_fan_offset(1);
401show_fan_offset(2);
402show_fan_offset(3);
403show_fan_offset(4);
404
405/* vid, vrm, alarms */
406
Jean Delvare1f448092008-04-29 14:03:37 +0200407static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
408 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
410 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare9c516ef2005-11-26 20:07:54 +0100411 int vid;
412
Darrick J. Wong8ef1f022009-03-10 12:55:48 -0700413 if ((data->type == adt7463 || data->type == adt7468) &&
414 (data->vid & 0x80)) {
Jean Delvare9c516ef2005-11-26 20:07:54 +0100415 /* 6-pin VID (VRM 10) */
416 vid = vid_from_reg(data->vid & 0x3f, data->vrm);
417 } else {
418 /* 5-pin VID (VRM 9) */
419 vid = vid_from_reg(data->vid & 0x1f, data->vrm);
420 }
421
422 return sprintf(buf, "%d\n", vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700423}
424
425static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
426
Jean Delvare1f448092008-04-29 14:03:37 +0200427static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
428 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429{
Jean Delvare90d66192007-10-08 18:24:35 +0200430 struct lm85_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431 return sprintf(buf, "%ld\n", (long) data->vrm);
432}
433
Jean Delvare1f448092008-04-29 14:03:37 +0200434static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
435 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700436{
Jean Delvare8f74efe2007-12-01 11:25:33 +0100437 struct lm85_data *data = dev_get_drvdata(dev);
438 data->vrm = simple_strtoul(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return count;
440}
441
442static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
443
Jean Delvare1f448092008-04-29 14:03:37 +0200444static ssize_t show_alarms_reg(struct device *dev, struct device_attribute
445 *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
447 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +0200448 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449}
450
451static DEVICE_ATTR(alarms, S_IRUGO, show_alarms_reg, NULL);
452
Jean Delvarebf76e9d2007-07-05 20:37:58 +0200453static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
454 char *buf)
455{
456 int nr = to_sensor_dev_attr(attr)->index;
457 struct lm85_data *data = lm85_update_device(dev);
458 return sprintf(buf, "%u\n", (data->alarms >> nr) & 1);
459}
460
461static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
462static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
463static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
464static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
465static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8);
466static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 18);
467static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 16);
468static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 17);
469static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4);
470static SENSOR_DEVICE_ATTR(temp1_fault, S_IRUGO, show_alarm, NULL, 14);
471static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5);
472static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 6);
473static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL, 15);
474static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 10);
475static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 11);
476static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 12);
477static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 13);
478
Linus Torvalds1da177e2005-04-16 15:20:36 -0700479/* pwm */
480
Jean Delvareb353a482007-07-05 20:36:12 +0200481static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
482 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 Delvare1f448092008-04-29 14:03:37 +0200486 return sprintf(buf, "%d\n", PWM_FROM_REG(data->pwm[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487}
Jean Delvareb353a482007-07-05 20:36:12 +0200488
489static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
490 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700491{
Jean Delvareb353a482007-07-05 20:36:12 +0200492 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493 struct i2c_client *client = to_i2c_client(dev);
494 struct lm85_data *data = i2c_get_clientdata(client);
495 long val = simple_strtol(buf, NULL, 10);
496
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100497 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498 data->pwm[nr] = PWM_TO_REG(val);
499 lm85_write_value(client, LM85_REG_PWM(nr), data->pwm[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100500 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 return count;
502}
Jean Delvareb353a482007-07-05 20:36:12 +0200503
504static ssize_t show_pwm_enable(struct device *dev, struct device_attribute
505 *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506{
Jean Delvareb353a482007-07-05 20:36:12 +0200507 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare4b4df952007-12-03 23:23:21 +0100509 int pwm_zone, enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700510
511 pwm_zone = ZONE_FROM_REG(data->autofan[nr].config);
Jean Delvare4b4df952007-12-03 23:23:21 +0100512 switch (pwm_zone) {
513 case -1: /* PWM is always at 100% */
514 enable = 0;
515 break;
516 case 0: /* PWM is always at 0% */
517 case -2: /* PWM responds to manual control */
518 enable = 1;
519 break;
520 default: /* PWM in automatic mode */
521 enable = 2;
522 }
523 return sprintf(buf, "%d\n", enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524}
525
Jean Delvare455f7912007-12-03 23:28:42 +0100526static ssize_t set_pwm_enable(struct device *dev, struct device_attribute
527 *attr, const char *buf, size_t count)
528{
529 int nr = to_sensor_dev_attr(attr)->index;
530 struct i2c_client *client = to_i2c_client(dev);
531 struct lm85_data *data = i2c_get_clientdata(client);
532 long val = simple_strtol(buf, NULL, 10);
533 u8 config;
534
535 switch (val) {
536 case 0:
537 config = 3;
538 break;
539 case 1:
540 config = 7;
541 break;
542 case 2:
543 /* Here we have to choose arbitrarily one of the 5 possible
544 configurations; I go for the safest */
545 config = 6;
546 break;
547 default:
548 return -EINVAL;
549 }
550
551 mutex_lock(&data->update_lock);
552 data->autofan[nr].config = lm85_read_value(client,
553 LM85_REG_AFAN_CONFIG(nr));
554 data->autofan[nr].config = (data->autofan[nr].config & ~0xe0)
555 | (config << 5);
556 lm85_write_value(client, LM85_REG_AFAN_CONFIG(nr),
557 data->autofan[nr].config);
558 mutex_unlock(&data->update_lock);
559 return count;
560}
561
Jean Delvare34e7dc62008-10-17 17:51:13 +0200562static ssize_t show_pwm_freq(struct device *dev,
563 struct device_attribute *attr, char *buf)
564{
565 int nr = to_sensor_dev_attr(attr)->index;
566 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare8a0795d2008-10-17 17:51:14 +0200567 return sprintf(buf, "%d\n", FREQ_FROM_REG(data->freq_map,
568 data->pwm_freq[nr]));
Jean Delvare34e7dc62008-10-17 17:51:13 +0200569}
570
571static ssize_t set_pwm_freq(struct device *dev,
572 struct device_attribute *attr, const char *buf, size_t count)
573{
574 int nr = to_sensor_dev_attr(attr)->index;
575 struct i2c_client *client = to_i2c_client(dev);
576 struct lm85_data *data = i2c_get_clientdata(client);
577 long val = simple_strtol(buf, NULL, 10);
578
579 mutex_lock(&data->update_lock);
Jean Delvare8a0795d2008-10-17 17:51:14 +0200580 data->pwm_freq[nr] = FREQ_TO_REG(data->freq_map, val);
Jean Delvare34e7dc62008-10-17 17:51:13 +0200581 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
582 (data->zone[nr].range << 4)
583 | data->pwm_freq[nr]);
584 mutex_unlock(&data->update_lock);
585 return count;
586}
587
Linus Torvalds1da177e2005-04-16 15:20:36 -0700588#define show_pwm_reg(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200589static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
590 show_pwm, set_pwm, offset - 1); \
Jean Delvare455f7912007-12-03 23:28:42 +0100591static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
Jean Delvare34e7dc62008-10-17 17:51:13 +0200592 show_pwm_enable, set_pwm_enable, offset - 1); \
593static SENSOR_DEVICE_ATTR(pwm##offset##_freq, S_IRUGO | S_IWUSR, \
594 show_pwm_freq, set_pwm_freq, offset - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595
596show_pwm_reg(1);
597show_pwm_reg(2);
598show_pwm_reg(3);
599
600/* Voltages */
601
Jean Delvareb353a482007-07-05 20:36:12 +0200602static ssize_t show_in(struct device *dev, struct device_attribute *attr,
603 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700604{
Jean Delvareb353a482007-07-05 20:36:12 +0200605 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700606 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200607 return sprintf(buf, "%d\n", INSEXT_FROM_REG(nr, data->in[nr],
608 data->in_ext[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700609}
Jean Delvareb353a482007-07-05 20:36:12 +0200610
Jean Delvare1f448092008-04-29 14:03:37 +0200611static ssize_t show_in_min(struct device *dev, struct device_attribute *attr,
Jean Delvareb353a482007-07-05 20:36:12 +0200612 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_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617}
Jean Delvareb353a482007-07-05 20:36:12 +0200618
619static ssize_t set_in_min(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_min[nr] = INS_TO_REG(nr, val);
629 lm85_write_value(client, LM85_REG_IN_MIN(nr), data->in_min[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
634static ssize_t show_in_max(struct device *dev, struct device_attribute *attr,
635 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636{
Jean Delvareb353a482007-07-05 20:36:12 +0200637 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200639 return sprintf(buf, "%d\n", INS_FROM_REG(nr, data->in_max[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640}
Jean Delvareb353a482007-07-05 20:36:12 +0200641
642static ssize_t set_in_max(struct device *dev, struct device_attribute *attr,
643 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644{
Jean Delvareb353a482007-07-05 20:36:12 +0200645 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700646 struct i2c_client *client = to_i2c_client(dev);
647 struct lm85_data *data = i2c_get_clientdata(client);
648 long val = simple_strtol(buf, NULL, 10);
649
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100650 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 data->in_max[nr] = INS_TO_REG(nr, val);
652 lm85_write_value(client, LM85_REG_IN_MAX(nr), data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100653 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 return count;
655}
Jean Delvareb353a482007-07-05 20:36:12 +0200656
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657#define show_in_reg(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200658static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
659 show_in, NULL, offset); \
660static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
661 show_in_min, set_in_min, offset); \
662static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
663 show_in_max, set_in_max, offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664
665show_in_reg(0);
666show_in_reg(1);
667show_in_reg(2);
668show_in_reg(3);
669show_in_reg(4);
Jean Delvare6b9aad22007-07-05 20:37:21 +0200670show_in_reg(5);
671show_in_reg(6);
672show_in_reg(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673
674/* Temps */
675
Jean Delvareb353a482007-07-05 20:36:12 +0200676static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
677 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678{
Jean Delvareb353a482007-07-05 20:36:12 +0200679 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200681 return sprintf(buf, "%d\n", TEMPEXT_FROM_REG(data->temp[nr],
682 data->temp_ext[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683}
Jean Delvareb353a482007-07-05 20:36:12 +0200684
685static ssize_t show_temp_min(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_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700691}
Jean Delvareb353a482007-07-05 20:36:12 +0200692
693static ssize_t set_temp_min(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);
699 long val = simple_strtol(buf, NULL, 10);
700
Darrick J. Wong79b92f22008-11-12 13:26:59 -0800701 if (IS_ADT7468_OFF64(data))
702 val += 64;
703
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100704 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705 data->temp_min[nr] = TEMP_TO_REG(val);
706 lm85_write_value(client, LM85_REG_TEMP_MIN(nr), data->temp_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100707 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 return count;
709}
Jean Delvareb353a482007-07-05 20:36:12 +0200710
711static ssize_t show_temp_max(struct device *dev, struct device_attribute *attr,
712 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700713{
Jean Delvareb353a482007-07-05 20:36:12 +0200714 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200716 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
Jean Delvareb353a482007-07-05 20:36:12 +0200718
719static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
720 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721{
Jean Delvareb353a482007-07-05 20:36:12 +0200722 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723 struct i2c_client *client = to_i2c_client(dev);
724 struct lm85_data *data = i2c_get_clientdata(client);
Jean Delvare1f448092008-04-29 14:03:37 +0200725 long val = simple_strtol(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726
Darrick J. Wong79b92f22008-11-12 13:26:59 -0800727 if (IS_ADT7468_OFF64(data))
728 val += 64;
729
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100730 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 data->temp_max[nr] = TEMP_TO_REG(val);
732 lm85_write_value(client, LM85_REG_TEMP_MAX(nr), data->temp_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100733 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734 return count;
735}
Jean Delvareb353a482007-07-05 20:36:12 +0200736
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737#define show_temp_reg(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200738static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
739 show_temp, NULL, offset - 1); \
740static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
741 show_temp_min, set_temp_min, offset - 1); \
742static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
743 show_temp_max, set_temp_max, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744
745show_temp_reg(1);
746show_temp_reg(2);
747show_temp_reg(3);
748
749
750/* Automatic PWM control */
751
Jean Delvareb353a482007-07-05 20:36:12 +0200752static ssize_t show_pwm_auto_channels(struct device *dev,
753 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754{
Jean Delvareb353a482007-07-05 20:36:12 +0200755 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700756 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200757 return sprintf(buf, "%d\n", ZONE_FROM_REG(data->autofan[nr].config));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700758}
Jean Delvareb353a482007-07-05 20:36:12 +0200759
760static ssize_t set_pwm_auto_channels(struct device *dev,
761 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762{
Jean Delvareb353a482007-07-05 20:36:12 +0200763 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700764 struct i2c_client *client = to_i2c_client(dev);
765 struct lm85_data *data = i2c_get_clientdata(client);
Jean Delvare1f448092008-04-29 14:03:37 +0200766 long val = simple_strtol(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700767
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100768 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769 data->autofan[nr].config = (data->autofan[nr].config & (~0xe0))
Jean Delvare1f448092008-04-29 14:03:37 +0200770 | ZONE_TO_REG(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 lm85_write_value(client, LM85_REG_AFAN_CONFIG(nr),
772 data->autofan[nr].config);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100773 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700774 return count;
775}
Jean Delvareb353a482007-07-05 20:36:12 +0200776
777static ssize_t show_pwm_auto_pwm_min(struct device *dev,
778 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700779{
Jean Delvareb353a482007-07-05 20:36:12 +0200780 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700781 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200782 return sprintf(buf, "%d\n", PWM_FROM_REG(data->autofan[nr].min_pwm));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700783}
Jean Delvareb353a482007-07-05 20:36:12 +0200784
785static ssize_t set_pwm_auto_pwm_min(struct device *dev,
786 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700787{
Jean Delvareb353a482007-07-05 20:36:12 +0200788 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 struct i2c_client *client = to_i2c_client(dev);
790 struct lm85_data *data = i2c_get_clientdata(client);
791 long val = simple_strtol(buf, NULL, 10);
792
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100793 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700794 data->autofan[nr].min_pwm = PWM_TO_REG(val);
795 lm85_write_value(client, LM85_REG_AFAN_MINPWM(nr),
796 data->autofan[nr].min_pwm);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100797 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700798 return count;
799}
Jean Delvareb353a482007-07-05 20:36:12 +0200800
801static ssize_t show_pwm_auto_pwm_minctl(struct device *dev,
802 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700803{
Jean Delvareb353a482007-07-05 20:36:12 +0200804 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200806 return sprintf(buf, "%d\n", data->autofan[nr].min_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807}
Jean Delvareb353a482007-07-05 20:36:12 +0200808
809static ssize_t set_pwm_auto_pwm_minctl(struct device *dev,
810 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811{
Jean Delvareb353a482007-07-05 20:36:12 +0200812 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813 struct i2c_client *client = to_i2c_client(dev);
814 struct lm85_data *data = i2c_get_clientdata(client);
815 long val = simple_strtol(buf, NULL, 10);
Jean Delvare7133e562008-04-12 19:56:35 +0200816 u8 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100818 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700819 data->autofan[nr].min_off = val;
Jean Delvare7133e562008-04-12 19:56:35 +0200820 tmp = lm85_read_value(client, LM85_REG_AFAN_SPIKE1);
821 tmp &= ~(0x20 << nr);
822 if (data->autofan[nr].min_off)
823 tmp |= 0x20 << nr;
824 lm85_write_value(client, LM85_REG_AFAN_SPIKE1, tmp);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100825 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700826 return count;
827}
Jean Delvareb353a482007-07-05 20:36:12 +0200828
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829#define pwm_auto(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200830static SENSOR_DEVICE_ATTR(pwm##offset##_auto_channels, \
831 S_IRUGO | S_IWUSR, show_pwm_auto_channels, \
832 set_pwm_auto_channels, offset - 1); \
833static SENSOR_DEVICE_ATTR(pwm##offset##_auto_pwm_min, \
834 S_IRUGO | S_IWUSR, show_pwm_auto_pwm_min, \
835 set_pwm_auto_pwm_min, offset - 1); \
836static SENSOR_DEVICE_ATTR(pwm##offset##_auto_pwm_minctl, \
837 S_IRUGO | S_IWUSR, show_pwm_auto_pwm_minctl, \
Jean Delvare34e7dc62008-10-17 17:51:13 +0200838 set_pwm_auto_pwm_minctl, offset - 1)
Jean Delvareb353a482007-07-05 20:36:12 +0200839
Linus Torvalds1da177e2005-04-16 15:20:36 -0700840pwm_auto(1);
841pwm_auto(2);
842pwm_auto(3);
843
844/* Temperature settings for automatic PWM control */
845
Jean Delvareb353a482007-07-05 20:36:12 +0200846static ssize_t show_temp_auto_temp_off(struct device *dev,
847 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700848{
Jean Delvareb353a482007-07-05 20:36:12 +0200849 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700850 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200851 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 HYST_FROM_REG(data->zone[nr].hyst));
853}
Jean Delvareb353a482007-07-05 20:36:12 +0200854
855static ssize_t set_temp_auto_temp_off(struct device *dev,
856 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857{
Jean Delvareb353a482007-07-05 20:36:12 +0200858 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700859 struct i2c_client *client = to_i2c_client(dev);
860 struct lm85_data *data = i2c_get_clientdata(client);
861 int min;
862 long val = simple_strtol(buf, NULL, 10);
863
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100864 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700865 min = TEMP_FROM_REG(data->zone[nr].limit);
866 data->zone[nr].off_desired = TEMP_TO_REG(val);
867 data->zone[nr].hyst = HYST_TO_REG(min - val);
Jean Delvare1f448092008-04-29 14:03:37 +0200868 if (nr == 0 || nr == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869 lm85_write_value(client, LM85_REG_AFAN_HYST1,
870 (data->zone[0].hyst << 4)
Jean Delvare1f448092008-04-29 14:03:37 +0200871 | data->zone[1].hyst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 } else {
873 lm85_write_value(client, LM85_REG_AFAN_HYST2,
Jean Delvare1f448092008-04-29 14:03:37 +0200874 (data->zone[2].hyst << 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100876 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700877 return count;
878}
Jean Delvareb353a482007-07-05 20:36:12 +0200879
880static ssize_t show_temp_auto_temp_min(struct device *dev,
881 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700882{
Jean Delvareb353a482007-07-05 20:36:12 +0200883 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200885 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700886}
Jean Delvareb353a482007-07-05 20:36:12 +0200887
888static ssize_t set_temp_auto_temp_min(struct device *dev,
889 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890{
Jean Delvareb353a482007-07-05 20:36:12 +0200891 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 struct i2c_client *client = to_i2c_client(dev);
893 struct lm85_data *data = i2c_get_clientdata(client);
894 long val = simple_strtol(buf, NULL, 10);
895
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100896 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 data->zone[nr].limit = TEMP_TO_REG(val);
898 lm85_write_value(client, LM85_REG_AFAN_LIMIT(nr),
899 data->zone[nr].limit);
900
901/* Update temp_auto_max and temp_auto_range */
902 data->zone[nr].range = RANGE_TO_REG(
903 TEMP_FROM_REG(data->zone[nr].max_desired) -
904 TEMP_FROM_REG(data->zone[nr].limit));
905 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
906 ((data->zone[nr].range & 0x0f) << 4)
Jean Delvare34e7dc62008-10-17 17:51:13 +0200907 | (data->pwm_freq[nr] & 0x07));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908
909/* Update temp_auto_hyst and temp_auto_off */
910 data->zone[nr].hyst = HYST_TO_REG(TEMP_FROM_REG(
911 data->zone[nr].limit) - TEMP_FROM_REG(
912 data->zone[nr].off_desired));
Jean Delvare1f448092008-04-29 14:03:37 +0200913 if (nr == 0 || nr == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914 lm85_write_value(client, LM85_REG_AFAN_HYST1,
915 (data->zone[0].hyst << 4)
Jean Delvare1f448092008-04-29 14:03:37 +0200916 | data->zone[1].hyst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 } else {
918 lm85_write_value(client, LM85_REG_AFAN_HYST2,
Jean Delvare1f448092008-04-29 14:03:37 +0200919 (data->zone[2].hyst << 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100921 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 return count;
923}
Jean Delvareb353a482007-07-05 20:36:12 +0200924
925static ssize_t show_temp_auto_temp_max(struct device *dev,
926 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927{
Jean Delvareb353a482007-07-05 20:36:12 +0200928 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700929 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200930 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700931 RANGE_FROM_REG(data->zone[nr].range));
932}
Jean Delvareb353a482007-07-05 20:36:12 +0200933
934static ssize_t set_temp_auto_temp_max(struct device *dev,
935 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 int min;
941 long val = simple_strtol(buf, NULL, 10);
942
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100943 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 min = TEMP_FROM_REG(data->zone[nr].limit);
945 data->zone[nr].max_desired = TEMP_TO_REG(val);
946 data->zone[nr].range = RANGE_TO_REG(
947 val - min);
948 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
949 ((data->zone[nr].range & 0x0f) << 4)
Jean Delvare34e7dc62008-10-17 17:51:13 +0200950 | (data->pwm_freq[nr] & 0x07));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100951 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700952 return count;
953}
Jean Delvareb353a482007-07-05 20:36:12 +0200954
955static ssize_t show_temp_auto_temp_crit(struct device *dev,
956 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957{
Jean Delvareb353a482007-07-05 20:36:12 +0200958 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200960 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].critical));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961}
Jean Delvareb353a482007-07-05 20:36:12 +0200962
963static ssize_t set_temp_auto_temp_crit(struct device *dev,
Jean Delvare1f448092008-04-29 14:03:37 +0200964 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965{
Jean Delvareb353a482007-07-05 20:36:12 +0200966 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700967 struct i2c_client *client = to_i2c_client(dev);
968 struct lm85_data *data = i2c_get_clientdata(client);
969 long val = simple_strtol(buf, NULL, 10);
970
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100971 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 data->zone[nr].critical = TEMP_TO_REG(val);
973 lm85_write_value(client, LM85_REG_AFAN_CRITICAL(nr),
974 data->zone[nr].critical);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100975 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 return count;
977}
Jean Delvareb353a482007-07-05 20:36:12 +0200978
Linus Torvalds1da177e2005-04-16 15:20:36 -0700979#define temp_auto(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200980static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_off, \
981 S_IRUGO | S_IWUSR, show_temp_auto_temp_off, \
982 set_temp_auto_temp_off, offset - 1); \
983static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_min, \
984 S_IRUGO | S_IWUSR, show_temp_auto_temp_min, \
985 set_temp_auto_temp_min, offset - 1); \
986static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_max, \
987 S_IRUGO | S_IWUSR, show_temp_auto_temp_max, \
988 set_temp_auto_temp_max, offset - 1); \
989static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_crit, \
990 S_IRUGO | S_IWUSR, show_temp_auto_temp_crit, \
991 set_temp_auto_temp_crit, offset - 1);
992
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993temp_auto(1);
994temp_auto(2);
995temp_auto(3);
996
Mark M. Hoffman0501a3812006-09-24 21:14:35 +0200997static struct attribute *lm85_attributes[] = {
Jean Delvareb353a482007-07-05 20:36:12 +0200998 &sensor_dev_attr_fan1_input.dev_attr.attr,
999 &sensor_dev_attr_fan2_input.dev_attr.attr,
1000 &sensor_dev_attr_fan3_input.dev_attr.attr,
1001 &sensor_dev_attr_fan4_input.dev_attr.attr,
1002 &sensor_dev_attr_fan1_min.dev_attr.attr,
1003 &sensor_dev_attr_fan2_min.dev_attr.attr,
1004 &sensor_dev_attr_fan3_min.dev_attr.attr,
1005 &sensor_dev_attr_fan4_min.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001006 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1007 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1008 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
1009 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001010
1011 &sensor_dev_attr_pwm1.dev_attr.attr,
1012 &sensor_dev_attr_pwm2.dev_attr.attr,
1013 &sensor_dev_attr_pwm3.dev_attr.attr,
1014 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
1015 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
1016 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
Jean Delvare34e7dc62008-10-17 17:51:13 +02001017 &sensor_dev_attr_pwm1_freq.dev_attr.attr,
1018 &sensor_dev_attr_pwm2_freq.dev_attr.attr,
1019 &sensor_dev_attr_pwm3_freq.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001020
1021 &sensor_dev_attr_in0_input.dev_attr.attr,
1022 &sensor_dev_attr_in1_input.dev_attr.attr,
1023 &sensor_dev_attr_in2_input.dev_attr.attr,
1024 &sensor_dev_attr_in3_input.dev_attr.attr,
1025 &sensor_dev_attr_in0_min.dev_attr.attr,
1026 &sensor_dev_attr_in1_min.dev_attr.attr,
1027 &sensor_dev_attr_in2_min.dev_attr.attr,
1028 &sensor_dev_attr_in3_min.dev_attr.attr,
1029 &sensor_dev_attr_in0_max.dev_attr.attr,
1030 &sensor_dev_attr_in1_max.dev_attr.attr,
1031 &sensor_dev_attr_in2_max.dev_attr.attr,
1032 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001033 &sensor_dev_attr_in0_alarm.dev_attr.attr,
1034 &sensor_dev_attr_in1_alarm.dev_attr.attr,
1035 &sensor_dev_attr_in2_alarm.dev_attr.attr,
1036 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001037
1038 &sensor_dev_attr_temp1_input.dev_attr.attr,
1039 &sensor_dev_attr_temp2_input.dev_attr.attr,
1040 &sensor_dev_attr_temp3_input.dev_attr.attr,
1041 &sensor_dev_attr_temp1_min.dev_attr.attr,
1042 &sensor_dev_attr_temp2_min.dev_attr.attr,
1043 &sensor_dev_attr_temp3_min.dev_attr.attr,
1044 &sensor_dev_attr_temp1_max.dev_attr.attr,
1045 &sensor_dev_attr_temp2_max.dev_attr.attr,
1046 &sensor_dev_attr_temp3_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001047 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
1048 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
1049 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
1050 &sensor_dev_attr_temp1_fault.dev_attr.attr,
1051 &sensor_dev_attr_temp3_fault.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001052
1053 &sensor_dev_attr_pwm1_auto_channels.dev_attr.attr,
1054 &sensor_dev_attr_pwm2_auto_channels.dev_attr.attr,
1055 &sensor_dev_attr_pwm3_auto_channels.dev_attr.attr,
1056 &sensor_dev_attr_pwm1_auto_pwm_min.dev_attr.attr,
1057 &sensor_dev_attr_pwm2_auto_pwm_min.dev_attr.attr,
1058 &sensor_dev_attr_pwm3_auto_pwm_min.dev_attr.attr,
1059 &sensor_dev_attr_pwm1_auto_pwm_minctl.dev_attr.attr,
1060 &sensor_dev_attr_pwm2_auto_pwm_minctl.dev_attr.attr,
1061 &sensor_dev_attr_pwm3_auto_pwm_minctl.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001062
1063 &sensor_dev_attr_temp1_auto_temp_off.dev_attr.attr,
1064 &sensor_dev_attr_temp2_auto_temp_off.dev_attr.attr,
1065 &sensor_dev_attr_temp3_auto_temp_off.dev_attr.attr,
1066 &sensor_dev_attr_temp1_auto_temp_min.dev_attr.attr,
1067 &sensor_dev_attr_temp2_auto_temp_min.dev_attr.attr,
1068 &sensor_dev_attr_temp3_auto_temp_min.dev_attr.attr,
1069 &sensor_dev_attr_temp1_auto_temp_max.dev_attr.attr,
1070 &sensor_dev_attr_temp2_auto_temp_max.dev_attr.attr,
1071 &sensor_dev_attr_temp3_auto_temp_max.dev_attr.attr,
1072 &sensor_dev_attr_temp1_auto_temp_crit.dev_attr.attr,
1073 &sensor_dev_attr_temp2_auto_temp_crit.dev_attr.attr,
1074 &sensor_dev_attr_temp3_auto_temp_crit.dev_attr.attr,
1075
Mark M. Hoffman0501a3812006-09-24 21:14:35 +02001076 &dev_attr_vrm.attr,
1077 &dev_attr_cpu0_vid.attr,
1078 &dev_attr_alarms.attr,
Mark M. Hoffman0501a3812006-09-24 21:14:35 +02001079 NULL
1080};
1081
1082static const struct attribute_group lm85_group = {
1083 .attrs = lm85_attributes,
1084};
1085
Jean Delvare6b9aad22007-07-05 20:37:21 +02001086static struct attribute *lm85_attributes_in4[] = {
Jean Delvareb353a482007-07-05 20:36:12 +02001087 &sensor_dev_attr_in4_input.dev_attr.attr,
1088 &sensor_dev_attr_in4_min.dev_attr.attr,
1089 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001090 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Mark M. Hoffman0501a3812006-09-24 21:14:35 +02001091 NULL
1092};
1093
Jean Delvare6b9aad22007-07-05 20:37:21 +02001094static const struct attribute_group lm85_group_in4 = {
1095 .attrs = lm85_attributes_in4,
1096};
1097
1098static struct attribute *lm85_attributes_in567[] = {
1099 &sensor_dev_attr_in5_input.dev_attr.attr,
1100 &sensor_dev_attr_in6_input.dev_attr.attr,
1101 &sensor_dev_attr_in7_input.dev_attr.attr,
1102 &sensor_dev_attr_in5_min.dev_attr.attr,
1103 &sensor_dev_attr_in6_min.dev_attr.attr,
1104 &sensor_dev_attr_in7_min.dev_attr.attr,
1105 &sensor_dev_attr_in5_max.dev_attr.attr,
1106 &sensor_dev_attr_in6_max.dev_attr.attr,
1107 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001108 &sensor_dev_attr_in5_alarm.dev_attr.attr,
1109 &sensor_dev_attr_in6_alarm.dev_attr.attr,
1110 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Jean Delvare6b9aad22007-07-05 20:37:21 +02001111 NULL
1112};
1113
1114static const struct attribute_group lm85_group_in567 = {
1115 .attrs = lm85_attributes_in567,
Mark M. Hoffman0501a3812006-09-24 21:14:35 +02001116};
1117
Jean Delvare5f44759472008-06-25 09:10:30 -04001118static void lm85_init_client(struct i2c_client *client)
1119{
1120 int value;
1121
1122 /* Start monitoring if needed */
1123 value = lm85_read_value(client, LM85_REG_CONFIG);
1124 if (!(value & 0x01)) {
1125 dev_info(&client->dev, "Starting monitoring\n");
1126 lm85_write_value(client, LM85_REG_CONFIG, value | 0x01);
1127 }
1128
1129 /* Warn about unusual configuration bits */
1130 if (value & 0x02)
1131 dev_warn(&client->dev, "Device configuration is locked\n");
1132 if (!(value & 0x04))
1133 dev_warn(&client->dev, "Device is not ready\n");
1134}
1135
Jean Delvare67712d02008-10-17 17:51:14 +02001136/* Return 0 if detection is successful, -ENODEV otherwise */
1137static int lm85_detect(struct i2c_client *client, int kind,
1138 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001139{
Jean Delvare67712d02008-10-17 17:51:14 +02001140 struct i2c_adapter *adapter = client->adapter;
1141 int address = client->addr;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001142 const char *type_name;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001143
Jean Delvaree89e22b2008-06-25 08:47:35 -04001144 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 /* We need to be able to do byte I/O */
Jean Delvare67712d02008-10-17 17:51:14 +02001146 return -ENODEV;
Jean Delvare1f448092008-04-29 14:03:37 +02001147 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001148
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001149 /* If auto-detecting, determine the chip type */
1150 if (kind < 0) {
1151 int company = lm85_read_value(client, LM85_REG_COMPANY);
1152 int verstep = lm85_read_value(client, LM85_REG_VERSTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001153
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001154 dev_dbg(&adapter->dev, "Detecting device at 0x%02x with "
1155 "COMPANY: 0x%02x and VERSTEP: 0x%02x\n",
1156 address, company, verstep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001158 /* All supported chips have the version in common */
Darrick J. Wongc15ade62009-03-10 12:55:47 -07001159 if ((verstep & LM85_VERSTEP_VMASK) != LM85_VERSTEP_GENERIC &&
1160 (verstep & LM85_VERSTEP_VMASK) != LM85_VERSTEP_GENERIC2) {
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001161 dev_dbg(&adapter->dev, "Autodetection failed: "
1162 "unsupported version\n");
Jean Delvare67712d02008-10-17 17:51:14 +02001163 return -ENODEV;
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001164 }
1165 kind = any_chip;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001166
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001167 /* Now, refine the detection */
1168 if (company == LM85_COMPANY_NATIONAL) {
1169 switch (verstep) {
1170 case LM85_VERSTEP_LM85C:
1171 kind = lm85c;
1172 break;
1173 case LM85_VERSTEP_LM85B:
1174 kind = lm85b;
1175 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 }
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001177 } else if (company == LM85_COMPANY_ANALOG_DEV) {
1178 switch (verstep) {
1179 case LM85_VERSTEP_ADM1027:
1180 kind = adm1027;
1181 break;
1182 case LM85_VERSTEP_ADT7463:
1183 case LM85_VERSTEP_ADT7463C:
1184 kind = adt7463;
1185 break;
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001186 case LM85_VERSTEP_ADT7468_1:
1187 case LM85_VERSTEP_ADT7468_2:
1188 kind = adt7468;
1189 break;
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001190 }
1191 } else if (company == LM85_COMPANY_SMSC) {
1192 switch (verstep) {
1193 case LM85_VERSTEP_EMC6D100_A0:
1194 case LM85_VERSTEP_EMC6D100_A1:
1195 /* Note: we can't tell a '100 from a '101 */
1196 kind = emc6d100;
1197 break;
1198 case LM85_VERSTEP_EMC6D102:
1199 kind = emc6d102;
1200 break;
1201 }
1202 } else {
1203 dev_dbg(&adapter->dev, "Autodetection failed: "
1204 "unknown vendor\n");
Jean Delvare67712d02008-10-17 17:51:14 +02001205 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206 }
1207 }
1208
Jean Delvaree89e22b2008-06-25 08:47:35 -04001209 switch (kind) {
1210 case lm85b:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001211 type_name = "lm85b";
Jean Delvaree89e22b2008-06-25 08:47:35 -04001212 break;
1213 case lm85c:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001214 type_name = "lm85c";
Jean Delvaree89e22b2008-06-25 08:47:35 -04001215 break;
1216 case adm1027:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 type_name = "adm1027";
Jean Delvaree89e22b2008-06-25 08:47:35 -04001218 break;
1219 case adt7463:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 type_name = "adt7463";
Jean Delvaree89e22b2008-06-25 08:47:35 -04001221 break;
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001222 case adt7468:
1223 type_name = "adt7468";
1224 break;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001225 case emc6d100:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 type_name = "emc6d100";
Jean Delvaree89e22b2008-06-25 08:47:35 -04001227 break;
1228 case emc6d102:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001229 type_name = "emc6d102";
Jean Delvaree89e22b2008-06-25 08:47:35 -04001230 break;
1231 default:
1232 type_name = "lm85";
1233 }
Jean Delvare67712d02008-10-17 17:51:14 +02001234 strlcpy(info->type, type_name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235
Jean Delvare67712d02008-10-17 17:51:14 +02001236 return 0;
1237}
1238
1239static int lm85_probe(struct i2c_client *client,
1240 const struct i2c_device_id *id)
1241{
1242 struct lm85_data *data;
1243 int err;
1244
1245 data = kzalloc(sizeof(struct lm85_data), GFP_KERNEL);
1246 if (!data)
1247 return -ENOMEM;
1248
1249 i2c_set_clientdata(client, data);
1250 data->type = id->driver_data;
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001251 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001252
Jean Delvare67712d02008-10-17 17:51:14 +02001253 /* Fill in the chip specific driver values */
1254 switch (data->type) {
1255 case adm1027:
1256 case adt7463:
1257 case emc6d100:
1258 case emc6d102:
1259 data->freq_map = adm1027_freq_map;
1260 break;
1261 default:
1262 data->freq_map = lm85_freq_map;
1263 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001264
1265 /* Set the VRM version */
Jean Delvare303760b2005-07-31 21:52:01 +02001266 data->vrm = vid_which_vrm();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001267
1268 /* Initialize the LM85 chip */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001269 lm85_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270
1271 /* Register sysfs hooks */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001272 err = sysfs_create_group(&client->dev.kobj, &lm85_group);
1273 if (err)
Jean Delvaref9080372008-10-17 17:51:14 +02001274 goto err_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001275
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001276 /* The ADT7463/68 have an optional VRM 10 mode where pin 21 is used
Jean Delvare9c516ef2005-11-26 20:07:54 +01001277 as a sixth digital VID input rather than an analog input. */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001278 data->vid = lm85_read_value(client, LM85_REG_VID);
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001279 if (!((data->type == adt7463 || data->type == adt7468) &&
1280 (data->vid & 0x80)))
Jean Delvaree89e22b2008-06-25 08:47:35 -04001281 if ((err = sysfs_create_group(&client->dev.kobj,
Jean Delvare6b9aad22007-07-05 20:37:21 +02001282 &lm85_group_in4)))
Jean Delvaref9080372008-10-17 17:51:14 +02001283 goto err_remove_files;
Jean Delvare6b9aad22007-07-05 20:37:21 +02001284
1285 /* The EMC6D100 has 3 additional voltage inputs */
Jean Delvare67712d02008-10-17 17:51:14 +02001286 if (data->type == emc6d100)
Jean Delvaree89e22b2008-06-25 08:47:35 -04001287 if ((err = sysfs_create_group(&client->dev.kobj,
Jean Delvare6b9aad22007-07-05 20:37:21 +02001288 &lm85_group_in567)))
Jean Delvaref9080372008-10-17 17:51:14 +02001289 goto err_remove_files;
Mark M. Hoffman0501a3812006-09-24 21:14:35 +02001290
Jean Delvaree89e22b2008-06-25 08:47:35 -04001291 data->hwmon_dev = hwmon_device_register(&client->dev);
Tony Jones1beeffe2007-08-20 13:46:20 -07001292 if (IS_ERR(data->hwmon_dev)) {
1293 err = PTR_ERR(data->hwmon_dev);
Jean Delvaref9080372008-10-17 17:51:14 +02001294 goto err_remove_files;
Jean Delvare9c516ef2005-11-26 20:07:54 +01001295 }
1296
Linus Torvalds1da177e2005-04-16 15:20:36 -07001297 return 0;
1298
1299 /* Error out and cleanup code */
Jean Delvaref9080372008-10-17 17:51:14 +02001300 err_remove_files:
Jean Delvaree89e22b2008-06-25 08:47:35 -04001301 sysfs_remove_group(&client->dev.kobj, &lm85_group);
1302 sysfs_remove_group(&client->dev.kobj, &lm85_group_in4);
Jean Delvare67712d02008-10-17 17:51:14 +02001303 if (data->type == emc6d100)
Jean Delvaree89e22b2008-06-25 08:47:35 -04001304 sysfs_remove_group(&client->dev.kobj, &lm85_group_in567);
Jean Delvaref9080372008-10-17 17:51:14 +02001305 err_kfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001306 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001307 return err;
1308}
1309
Jean Delvare67712d02008-10-17 17:51:14 +02001310static int lm85_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001311{
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001312 struct lm85_data *data = i2c_get_clientdata(client);
Tony Jones1beeffe2007-08-20 13:46:20 -07001313 hwmon_device_unregister(data->hwmon_dev);
Mark M. Hoffman0501a3812006-09-24 21:14:35 +02001314 sysfs_remove_group(&client->dev.kobj, &lm85_group);
Jean Delvare6b9aad22007-07-05 20:37:21 +02001315 sysfs_remove_group(&client->dev.kobj, &lm85_group_in4);
1316 if (data->type == emc6d100)
1317 sysfs_remove_group(&client->dev.kobj, &lm85_group_in567);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001318 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319 return 0;
1320}
1321
1322
Ben Dooksd8d20612005-10-26 21:05:46 +02001323static int lm85_read_value(struct i2c_client *client, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324{
1325 int res;
1326
1327 /* What size location is it? */
Jean Delvare1f448092008-04-29 14:03:37 +02001328 switch (reg) {
1329 case LM85_REG_FAN(0): /* Read WORD data */
1330 case LM85_REG_FAN(1):
1331 case LM85_REG_FAN(2):
1332 case LM85_REG_FAN(3):
1333 case LM85_REG_FAN_MIN(0):
1334 case LM85_REG_FAN_MIN(1):
1335 case LM85_REG_FAN_MIN(2):
1336 case LM85_REG_FAN_MIN(3):
1337 case LM85_REG_ALARM1: /* Read both bytes at once */
1338 res = i2c_smbus_read_byte_data(client, reg) & 0xff;
1339 res |= i2c_smbus_read_byte_data(client, reg + 1) << 8;
1340 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001341 default: /* Read BYTE data */
1342 res = i2c_smbus_read_byte_data(client, reg);
Jean Delvare1f448092008-04-29 14:03:37 +02001343 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001344 }
1345
Jean Delvare1f448092008-04-29 14:03:37 +02001346 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347}
1348
Jean Delvaree89e22b2008-06-25 08:47:35 -04001349static void lm85_write_value(struct i2c_client *client, u8 reg, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001350{
Jean Delvare1f448092008-04-29 14:03:37 +02001351 switch (reg) {
1352 case LM85_REG_FAN(0): /* Write WORD data */
1353 case LM85_REG_FAN(1):
1354 case LM85_REG_FAN(2):
1355 case LM85_REG_FAN(3):
1356 case LM85_REG_FAN_MIN(0):
1357 case LM85_REG_FAN_MIN(1):
1358 case LM85_REG_FAN_MIN(2):
1359 case LM85_REG_FAN_MIN(3):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 /* NOTE: ALARM is read only, so not included here */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001361 i2c_smbus_write_byte_data(client, reg, value & 0xff);
1362 i2c_smbus_write_byte_data(client, reg + 1, value >> 8);
Jean Delvare1f448092008-04-29 14:03:37 +02001363 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 default: /* Write BYTE data */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001365 i2c_smbus_write_byte_data(client, reg, value);
Jean Delvare1f448092008-04-29 14:03:37 +02001366 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001367 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368}
1369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370static struct lm85_data *lm85_update_device(struct device *dev)
1371{
1372 struct i2c_client *client = to_i2c_client(dev);
1373 struct lm85_data *data = i2c_get_clientdata(client);
1374 int i;
1375
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001376 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377
Jean Delvare1f448092008-04-29 14:03:37 +02001378 if (!data->valid ||
1379 time_after(jiffies, data->last_reading + LM85_DATA_INTERVAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 /* Things that change quickly */
1381 dev_dbg(&client->dev, "Reading sensor values\n");
Jean Delvare1f448092008-04-29 14:03:37 +02001382
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 /* Have to read extended bits first to "freeze" the
1384 * more significant bits that are read later.
Jean Delvare5a4d3ef2007-07-05 20:38:32 +02001385 * There are 2 additional resolution bits per channel and we
1386 * have room for 4, so we shift them to the left.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 */
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001388 if (data->type == adm1027 || data->type == adt7463 ||
1389 data->type == adt7468) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 int ext1 = lm85_read_value(client,
1391 ADM1027_REG_EXTEND_ADC1);
1392 int ext2 = lm85_read_value(client,
1393 ADM1027_REG_EXTEND_ADC2);
1394 int val = (ext1 << 8) + ext2;
1395
Jean Delvare1f448092008-04-29 14:03:37 +02001396 for (i = 0; i <= 4; i++)
1397 data->in_ext[i] =
1398 ((val >> (i * 2)) & 0x03) << 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001399
Jean Delvare1f448092008-04-29 14:03:37 +02001400 for (i = 0; i <= 2; i++)
1401 data->temp_ext[i] =
1402 (val >> ((i + 4) * 2)) & 0x0c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001403 }
1404
Jean Delvare9c516ef2005-11-26 20:07:54 +01001405 data->vid = lm85_read_value(client, LM85_REG_VID);
1406
1407 for (i = 0; i <= 3; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 data->in[i] =
1409 lm85_read_value(client, LM85_REG_IN(i));
Jean Delvaree89e22b2008-06-25 08:47:35 -04001410 data->fan[i] =
1411 lm85_read_value(client, LM85_REG_FAN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001412 }
1413
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001414 if (!((data->type == adt7463 || data->type == adt7468) &&
1415 (data->vid & 0x80))) {
Jean Delvare9c516ef2005-11-26 20:07:54 +01001416 data->in[4] = lm85_read_value(client,
1417 LM85_REG_IN(4));
1418 }
1419
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001420 if (data->type == adt7468)
1421 data->cfg5 = lm85_read_value(client, ADT7468_REG_CFG5);
1422
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423 for (i = 0; i <= 2; ++i) {
1424 data->temp[i] =
1425 lm85_read_value(client, LM85_REG_TEMP(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 data->pwm[i] =
1427 lm85_read_value(client, LM85_REG_PWM(i));
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001428
1429 if (IS_ADT7468_OFF64(data))
1430 data->temp[i] -= 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431 }
1432
1433 data->alarms = lm85_read_value(client, LM85_REG_ALARM1);
1434
Jean Delvaredd1ac532008-05-01 08:47:33 +02001435 if (data->type == emc6d100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 /* Three more voltage sensors */
1437 for (i = 5; i <= 7; ++i) {
Jean Delvare1f448092008-04-29 14:03:37 +02001438 data->in[i] = lm85_read_value(client,
1439 EMC6D100_REG_IN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001440 }
1441 /* More alarm bits */
Jean Delvare1f448092008-04-29 14:03:37 +02001442 data->alarms |= lm85_read_value(client,
1443 EMC6D100_REG_ALARM3) << 16;
1444 } else if (data->type == emc6d102) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 /* Have to read LSB bits after the MSB ones because
1446 the reading of the MSB bits has frozen the
1447 LSBs (backward from the ADM1027).
1448 */
1449 int ext1 = lm85_read_value(client,
1450 EMC6D102_REG_EXTEND_ADC1);
1451 int ext2 = lm85_read_value(client,
1452 EMC6D102_REG_EXTEND_ADC2);
1453 int ext3 = lm85_read_value(client,
1454 EMC6D102_REG_EXTEND_ADC3);
1455 int ext4 = lm85_read_value(client,
1456 EMC6D102_REG_EXTEND_ADC4);
1457 data->in_ext[0] = ext3 & 0x0f;
1458 data->in_ext[1] = ext4 & 0x0f;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001459 data->in_ext[2] = ext4 >> 4;
1460 data->in_ext[3] = ext3 >> 4;
1461 data->in_ext[4] = ext2 >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001462
1463 data->temp_ext[0] = ext1 & 0x0f;
1464 data->temp_ext[1] = ext2 & 0x0f;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001465 data->temp_ext[2] = ext1 >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 }
1467
Jean Delvare1f448092008-04-29 14:03:37 +02001468 data->last_reading = jiffies;
1469 } /* last_reading */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001470
Jean Delvare1f448092008-04-29 14:03:37 +02001471 if (!data->valid ||
1472 time_after(jiffies, data->last_config + LM85_CONFIG_INTERVAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 /* Things that don't change often */
1474 dev_dbg(&client->dev, "Reading config values\n");
1475
Jean Delvare9c516ef2005-11-26 20:07:54 +01001476 for (i = 0; i <= 3; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 data->in_min[i] =
1478 lm85_read_value(client, LM85_REG_IN_MIN(i));
1479 data->in_max[i] =
1480 lm85_read_value(client, LM85_REG_IN_MAX(i));
Jean Delvaree89e22b2008-06-25 08:47:35 -04001481 data->fan_min[i] =
1482 lm85_read_value(client, LM85_REG_FAN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 }
1484
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001485 if (!((data->type == adt7463 || data->type == adt7468) &&
1486 (data->vid & 0x80))) {
Jean Delvare9c516ef2005-11-26 20:07:54 +01001487 data->in_min[4] = lm85_read_value(client,
1488 LM85_REG_IN_MIN(4));
1489 data->in_max[4] = lm85_read_value(client,
1490 LM85_REG_IN_MAX(4));
1491 }
1492
Jean Delvare1f448092008-04-29 14:03:37 +02001493 if (data->type == emc6d100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 for (i = 5; i <= 7; ++i) {
Jean Delvare1f448092008-04-29 14:03:37 +02001495 data->in_min[i] = lm85_read_value(client,
1496 EMC6D100_REG_IN_MIN(i));
1497 data->in_max[i] = lm85_read_value(client,
1498 EMC6D100_REG_IN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001499 }
1500 }
1501
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 for (i = 0; i <= 2; ++i) {
Jean Delvaree89e22b2008-06-25 08:47:35 -04001503 int val;
1504
Linus Torvalds1da177e2005-04-16 15:20:36 -07001505 data->temp_min[i] =
1506 lm85_read_value(client, LM85_REG_TEMP_MIN(i));
1507 data->temp_max[i] =
1508 lm85_read_value(client, LM85_REG_TEMP_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001509
Linus Torvalds1da177e2005-04-16 15:20:36 -07001510 data->autofan[i].config =
1511 lm85_read_value(client, LM85_REG_AFAN_CONFIG(i));
1512 val = lm85_read_value(client, LM85_REG_AFAN_RANGE(i));
Jean Delvare34e7dc62008-10-17 17:51:13 +02001513 data->pwm_freq[i] = val & 0x07;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001514 data->zone[i].range = val >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 data->autofan[i].min_pwm =
1516 lm85_read_value(client, LM85_REG_AFAN_MINPWM(i));
1517 data->zone[i].limit =
1518 lm85_read_value(client, LM85_REG_AFAN_LIMIT(i));
1519 data->zone[i].critical =
1520 lm85_read_value(client, LM85_REG_AFAN_CRITICAL(i));
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001521
1522 if (IS_ADT7468_OFF64(data)) {
1523 data->temp_min[i] -= 64;
1524 data->temp_max[i] -= 64;
1525 data->zone[i].limit -= 64;
1526 data->zone[i].critical -= 64;
1527 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001528 }
1529
1530 i = lm85_read_value(client, LM85_REG_AFAN_SPIKE1);
Jean Delvare1f448092008-04-29 14:03:37 +02001531 data->autofan[0].min_off = (i & 0x20) != 0;
1532 data->autofan[1].min_off = (i & 0x40) != 0;
1533 data->autofan[2].min_off = (i & 0x80) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001534
1535 i = lm85_read_value(client, LM85_REG_AFAN_HYST1);
Jean Delvaree89e22b2008-06-25 08:47:35 -04001536 data->zone[0].hyst = i >> 4;
Jean Delvare1f448092008-04-29 14:03:37 +02001537 data->zone[1].hyst = i & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538
1539 i = lm85_read_value(client, LM85_REG_AFAN_HYST2);
Jean Delvaree89e22b2008-06-25 08:47:35 -04001540 data->zone[2].hyst = i >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001541
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 data->last_config = jiffies;
Jean Delvare1f448092008-04-29 14:03:37 +02001543 } /* last_config */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001544
1545 data->valid = 1;
1546
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001547 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548
1549 return data;
1550}
1551
1552
1553static int __init sm_lm85_init(void)
1554{
1555 return i2c_add_driver(&lm85_driver);
1556}
1557
Jean Delvare1f448092008-04-29 14:03:37 +02001558static void __exit sm_lm85_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559{
1560 i2c_del_driver(&lm85_driver);
1561}
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563MODULE_LICENSE("GPL");
Jean Delvare1f448092008-04-29 14:03:37 +02001564MODULE_AUTHOR("Philip Pokorny <ppokorny@penguincomputing.com>, "
1565 "Margit Schubert-While <margitsw@t-online.de>, "
Jean Delvaree89e22b2008-06-25 08:47:35 -04001566 "Justin Thiessen <jthiessen@penguincomputing.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567MODULE_DESCRIPTION("LM85-B, LM85-C driver");
1568
1569module_init(sm_lm85_init);
1570module_exit(sm_lm85_exit);