blob: d2cc28660816623fc03f79445d825d7e95c5134a [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 Delvared42a2eb2009-12-09 20:35:53 +01008 Copyright (C) 2007--2009 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
Jean Delvaree5e9f442009-12-14 21:17:27 +010041enum chips {
42 any_chip, lm85b, lm85c,
43 adm1027, adt7463, adt7468,
Jan Beulichf065a932011-02-18 03:18:26 -050044 emc6d100, emc6d102, emc6d103
Jean Delvaree5e9f442009-12-14 21:17:27 +010045};
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
47/* The LM85 registers */
48
49#define LM85_REG_IN(nr) (0x20 + (nr))
50#define LM85_REG_IN_MIN(nr) (0x44 + (nr) * 2)
51#define LM85_REG_IN_MAX(nr) (0x45 + (nr) * 2)
52
53#define LM85_REG_TEMP(nr) (0x25 + (nr))
54#define LM85_REG_TEMP_MIN(nr) (0x4e + (nr) * 2)
55#define LM85_REG_TEMP_MAX(nr) (0x4f + (nr) * 2)
56
57/* Fan speeds are LSB, MSB (2 bytes) */
Jean Delvare1f448092008-04-29 14:03:37 +020058#define LM85_REG_FAN(nr) (0x28 + (nr) * 2)
59#define LM85_REG_FAN_MIN(nr) (0x54 + (nr) * 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -070060
61#define LM85_REG_PWM(nr) (0x30 + (nr))
62
Linus Torvalds1da177e2005-04-16 15:20:36 -070063#define LM85_REG_COMPANY 0x3e
64#define LM85_REG_VERSTEP 0x3f
Darrick J. Wong79b92f22008-11-12 13:26:59 -080065
66#define ADT7468_REG_CFG5 0x7c
Jean Delvaref6c61cf2010-10-28 20:31:50 +020067#define ADT7468_OFF64 (1 << 0)
68#define ADT7468_HFPWM (1 << 1)
Darrick J. Wong79b92f22008-11-12 13:26:59 -080069#define IS_ADT7468_OFF64(data) \
70 ((data)->type == adt7468 && !((data)->cfg5 & ADT7468_OFF64))
Jean Delvaref6c61cf2010-10-28 20:31:50 +020071#define IS_ADT7468_HFPWM(data) \
72 ((data)->type == adt7468 && !((data)->cfg5 & ADT7468_HFPWM))
Darrick J. Wong79b92f22008-11-12 13:26:59 -080073
Linus Torvalds1da177e2005-04-16 15:20:36 -070074/* These are the recognized values for the above regs */
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define LM85_COMPANY_NATIONAL 0x01
76#define LM85_COMPANY_ANALOG_DEV 0x41
Jean Delvare1f448092008-04-29 14:03:37 +020077#define LM85_COMPANY_SMSC 0x5c
Linus Torvalds1da177e2005-04-16 15:20:36 -070078#define LM85_VERSTEP_VMASK 0xf0
79#define LM85_VERSTEP_GENERIC 0x60
Darrick J. Wongc15ade62009-03-10 12:55:47 -070080#define LM85_VERSTEP_GENERIC2 0x70
Linus Torvalds1da177e2005-04-16 15:20:36 -070081#define LM85_VERSTEP_LM85C 0x60
82#define LM85_VERSTEP_LM85B 0x62
Jean Delvare5cfaf332009-09-15 17:18:14 +020083#define LM85_VERSTEP_LM96000_1 0x68
84#define LM85_VERSTEP_LM96000_2 0x69
Linus Torvalds1da177e2005-04-16 15:20:36 -070085#define LM85_VERSTEP_ADM1027 0x60
86#define LM85_VERSTEP_ADT7463 0x62
87#define LM85_VERSTEP_ADT7463C 0x6A
Darrick J. Wong79b92f22008-11-12 13:26:59 -080088#define LM85_VERSTEP_ADT7468_1 0x71
89#define LM85_VERSTEP_ADT7468_2 0x72
Linus Torvalds1da177e2005-04-16 15:20:36 -070090#define LM85_VERSTEP_EMC6D100_A0 0x60
91#define LM85_VERSTEP_EMC6D100_A1 0x61
92#define LM85_VERSTEP_EMC6D102 0x65
Jan Beulichf065a932011-02-18 03:18:26 -050093#define LM85_VERSTEP_EMC6D103_A0 0x68
94#define LM85_VERSTEP_EMC6D103_A1 0x69
95#define LM85_VERSTEP_EMC6D103S 0x6A /* Also known as EMC6D103:A2 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070096
97#define LM85_REG_CONFIG 0x40
98
99#define LM85_REG_ALARM1 0x41
100#define LM85_REG_ALARM2 0x42
101
102#define LM85_REG_VID 0x43
103
104/* Automated FAN control */
105#define LM85_REG_AFAN_CONFIG(nr) (0x5c + (nr))
106#define LM85_REG_AFAN_RANGE(nr) (0x5f + (nr))
107#define LM85_REG_AFAN_SPIKE1 0x62
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108#define LM85_REG_AFAN_MINPWM(nr) (0x64 + (nr))
109#define LM85_REG_AFAN_LIMIT(nr) (0x67 + (nr))
110#define LM85_REG_AFAN_CRITICAL(nr) (0x6a + (nr))
111#define LM85_REG_AFAN_HYST1 0x6d
112#define LM85_REG_AFAN_HYST2 0x6e
113
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114#define ADM1027_REG_EXTEND_ADC1 0x76
115#define ADM1027_REG_EXTEND_ADC2 0x77
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116
117#define EMC6D100_REG_ALARM3 0x7d
118/* IN5, IN6 and IN7 */
Jean Delvare1f448092008-04-29 14:03:37 +0200119#define EMC6D100_REG_IN(nr) (0x70 + ((nr) - 5))
120#define EMC6D100_REG_IN_MIN(nr) (0x73 + ((nr) - 5) * 2)
121#define EMC6D100_REG_IN_MAX(nr) (0x74 + ((nr) - 5) * 2)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122#define EMC6D102_REG_EXTEND_ADC1 0x85
123#define EMC6D102_REG_EXTEND_ADC2 0x86
124#define EMC6D102_REG_EXTEND_ADC3 0x87
125#define EMC6D102_REG_EXTEND_ADC4 0x88
126
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Jean Delvare1f448092008-04-29 14:03:37 +0200128/* Conversions. Rounding and limit checking is only done on the TO_REG
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 variants. Note that you should be a bit careful with which arguments
130 these macros are called: arguments may be evaluated more than once.
131 */
132
133/* IN are scaled acording to built-in resistors */
Jean Delvaree89e22b2008-06-25 08:47:35 -0400134static const int lm85_scaling[] = { /* .001 Volts */
Jean Delvare1f448092008-04-29 14:03:37 +0200135 2500, 2250, 3300, 5000, 12000,
136 3300, 1500, 1800 /*EMC6D100*/
137};
138#define SCALE(val, from, to) (((val) * (to) + ((from) / 2)) / (from))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139
Jean Delvare1f448092008-04-29 14:03:37 +0200140#define INS_TO_REG(n, val) \
141 SENSORS_LIMIT(SCALE(val, lm85_scaling[n], 192), 0, 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Jean Delvare1f448092008-04-29 14:03:37 +0200143#define INSEXT_FROM_REG(n, val, ext) \
Jean Delvare5a4d3ef2007-07-05 20:38:32 +0200144 SCALE(((val) << 4) + (ext), 192 << 4, lm85_scaling[n])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145
Jean Delvare1f448092008-04-29 14:03:37 +0200146#define INS_FROM_REG(n, val) SCALE((val), 192, lm85_scaling[n])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148/* FAN speed is measured using 90kHz clock */
Jean Delvare63f281a2007-07-05 20:39:40 +0200149static inline u16 FAN_TO_REG(unsigned long val)
150{
151 if (!val)
152 return 0xffff;
153 return SENSORS_LIMIT(5400000 / val, 1, 0xfffe);
154}
Jean Delvare1f448092008-04-29 14:03:37 +0200155#define FAN_FROM_REG(val) ((val) == 0 ? -1 : (val) == 0xffff ? 0 : \
156 5400000 / (val))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700157
158/* Temperature is reported in .001 degC increments */
159#define TEMP_TO_REG(val) \
Jean Delvare1f448092008-04-29 14:03:37 +0200160 SENSORS_LIMIT(SCALE(val, 1000, 1), -127, 127)
161#define TEMPEXT_FROM_REG(val, ext) \
Jean Delvare5a4d3ef2007-07-05 20:38:32 +0200162 SCALE(((val) << 4) + (ext), 16, 1000)
163#define TEMP_FROM_REG(val) ((val) * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700164
Jean Delvare1f448092008-04-29 14:03:37 +0200165#define PWM_TO_REG(val) SENSORS_LIMIT(val, 0, 255)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166#define PWM_FROM_REG(val) (val)
167
168
169/* ZONEs have the following parameters:
170 * Limit (low) temp, 1. degC
171 * Hysteresis (below limit), 1. degC (0-15)
172 * Range of speed control, .1 degC (2-80)
173 * Critical (high) temp, 1. degC
174 *
175 * FAN PWMs have the following parameters:
176 * Reference Zone, 1, 2, 3, etc.
177 * Spinup time, .05 sec
178 * PWM value at limit/low temp, 1 count
179 * PWM Frequency, 1. Hz
180 * PWM is Min or OFF below limit, flag
181 * Invert PWM output, flag
182 *
183 * Some chips filter the temp, others the fan.
184 * Filter constant (or disabled) .1 seconds
185 */
186
187/* These are the zone temperature range encodings in .001 degree C */
Jean Delvaree89e22b2008-06-25 08:47:35 -0400188static const int lm85_range_map[] = {
Jean Delvare1f448092008-04-29 14:03:37 +0200189 2000, 2500, 3300, 4000, 5000, 6600, 8000, 10000,
190 13300, 16000, 20000, 26600, 32000, 40000, 53300, 80000
191};
192
193static int RANGE_TO_REG(int range)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194{
195 int i;
196
Jean Delvared38b1492008-04-03 10:40:39 +0200197 /* Find the closest match */
Jean Delvare1b92ada2008-10-17 17:51:14 +0200198 for (i = 0; i < 15; ++i) {
199 if (range <= (lm85_range_map[i] + lm85_range_map[i + 1]) / 2)
200 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201 }
Jean Delvared38b1492008-04-03 10:40:39 +0200202
Jean Delvare1b92ada2008-10-17 17:51:14 +0200203 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204}
Jean Delvare1f448092008-04-29 14:03:37 +0200205#define RANGE_FROM_REG(val) lm85_range_map[(val) & 0x0f]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700206
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207/* These are the PWM frequency encodings */
Jean Delvare34e7dc62008-10-17 17:51:13 +0200208static const int lm85_freq_map[8] = { /* 1 Hz */
Jean Delvare8a0795d2008-10-17 17:51:14 +0200209 10, 15, 23, 30, 38, 47, 61, 94
210};
211static const int adm1027_freq_map[8] = { /* 1 Hz */
212 11, 15, 22, 29, 35, 44, 59, 88
Jean Delvare1f448092008-04-29 14:03:37 +0200213};
214
Jean Delvare8a0795d2008-10-17 17:51:14 +0200215static int FREQ_TO_REG(const int *map, int freq)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700216{
217 int i;
218
Jean Delvare86010c92008-10-17 17:51:13 +0200219 /* Find the closest match */
Jean Delvare1f448092008-04-29 14:03:37 +0200220 for (i = 0; i < 7; ++i)
Jean Delvare8a0795d2008-10-17 17:51:14 +0200221 if (freq <= (map[i] + map[i + 1]) / 2)
Jean Delvare1f448092008-04-29 14:03:37 +0200222 break;
Jean Delvaree89e22b2008-06-25 08:47:35 -0400223 return i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700224}
Jean Delvare8a0795d2008-10-17 17:51:14 +0200225
226static int FREQ_FROM_REG(const int *map, u8 reg)
227{
228 return map[reg & 0x07];
229}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
231/* Since we can't use strings, I'm abusing these numbers
232 * to stand in for the following meanings:
233 * 1 -- PWM responds to Zone 1
234 * 2 -- PWM responds to Zone 2
235 * 3 -- PWM responds to Zone 3
236 * 23 -- PWM responds to the higher temp of Zone 2 or 3
237 * 123 -- PWM responds to highest of Zone 1, 2, or 3
238 * 0 -- PWM is always at 0% (ie, off)
239 * -1 -- PWM is always at 100%
240 * -2 -- PWM responds to manual control
241 */
242
Jean Delvaree89e22b2008-06-25 08:47:35 -0400243static const int lm85_zone_map[] = { 1, 2, 3, -1, 0, 23, 123, -2 };
244#define ZONE_FROM_REG(val) lm85_zone_map[(val) >> 5]
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245
Jean Delvare1f448092008-04-29 14:03:37 +0200246static int ZONE_TO_REG(int zone)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247{
248 int i;
249
Jean Delvare1f448092008-04-29 14:03:37 +0200250 for (i = 0; i <= 7; ++i)
251 if (zone == lm85_zone_map[i])
252 break;
253 if (i > 7) /* Not found. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 i = 3; /* Always 100% */
Jean Delvaree89e22b2008-06-25 08:47:35 -0400255 return i << 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Jean Delvare1f448092008-04-29 14:03:37 +0200258#define HYST_TO_REG(val) SENSORS_LIMIT(((val) + 500) / 1000, 0, 15)
259#define HYST_FROM_REG(val) ((val) * 1000)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
Linus Torvalds1da177e2005-04-16 15:20:36 -0700261/* Chip sampling rates
262 *
263 * Some sensors are not updated more frequently than once per second
264 * so it doesn't make sense to read them more often than that.
265 * We cache the results and return the saved data if the driver
266 * is called again before a second has elapsed.
267 *
268 * Also, there is significant configuration data for this chip
269 * given the automatic PWM fan control that is possible. There
270 * are about 47 bytes of config data to only 22 bytes of actual
271 * readings. So, we keep the config data up to date in the cache
272 * when it is written and only sample it once every 1 *minute*
273 */
274#define LM85_DATA_INTERVAL (HZ + HZ / 2)
275#define LM85_CONFIG_INTERVAL (1 * 60 * HZ)
276
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277/* LM85 can automatically adjust fan speeds based on temperature
278 * This structure encapsulates an entire Zone config. There are
279 * three zones (one for each temperature input) on the lm85
280 */
281struct lm85_zone {
282 s8 limit; /* Low temp limit */
283 u8 hyst; /* Low limit hysteresis. (0-15) */
284 u8 range; /* Temp range, encoded */
285 s8 critical; /* "All fans ON" temp limit */
Jean Delvare1f448092008-04-29 14:03:37 +0200286 u8 off_desired; /* Actual "off" temperature specified. Preserved
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 * to prevent "drift" as other autofan control
288 * values change.
289 */
Jean Delvare1f448092008-04-29 14:03:37 +0200290 u8 max_desired; /* Actual "max" temperature specified. Preserved
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 * to prevent "drift" as other autofan control
292 * values change.
293 */
294};
295
296struct lm85_autofan {
297 u8 config; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700298 u8 min_pwm; /* Minimum PWM value, encoded */
299 u8 min_off; /* Min PWM or OFF below "limit", flag */
300};
301
Jean Delvareed6bafb2007-02-14 21:15:03 +0100302/* For each registered chip, we need to keep some data in memory.
303 The structure is dynamically allocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700304struct lm85_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700305 struct device *hwmon_dev;
Jean Delvare8a0795d2008-10-17 17:51:14 +0200306 const int *freq_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 enum chips type;
308
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100309 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700310 int valid; /* !=0 if following fields are valid */
311 unsigned long last_reading; /* In jiffies */
312 unsigned long last_config; /* In jiffies */
313
314 u8 in[8]; /* Register value */
315 u8 in_max[8]; /* Register value */
316 u8 in_min[8]; /* Register value */
317 s8 temp[3]; /* Register value */
318 s8 temp_min[3]; /* Register value */
319 s8 temp_max[3]; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320 u16 fan[4]; /* Register value */
321 u16 fan_min[4]; /* Register value */
322 u8 pwm[3]; /* Register value */
Jean Delvare34e7dc62008-10-17 17:51:13 +0200323 u8 pwm_freq[3]; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 u8 temp_ext[3]; /* Decoded values */
325 u8 in_ext[8]; /* Decoded values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 u8 vid; /* Register value */
327 u8 vrm; /* VRM version */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 u32 alarms; /* Register encoding, combined */
Darrick J. Wong79b92f22008-11-12 13:26:59 -0800329 u8 cfg5; /* Config Register 5 on ADT7468 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700330 struct lm85_autofan autofan[3];
331 struct lm85_zone zone[3];
332};
333
Jean Delvare310ec792009-12-14 21:17:23 +0100334static int lm85_detect(struct i2c_client *client, struct i2c_board_info *info);
Jean Delvare67712d02008-10-17 17:51:14 +0200335static int lm85_probe(struct i2c_client *client,
336 const struct i2c_device_id *id);
337static int lm85_remove(struct i2c_client *client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700338
Darren Jenkinsf6c27fc2006-02-27 23:14:58 +0100339static int lm85_read_value(struct i2c_client *client, u8 reg);
Jean Delvaree89e22b2008-06-25 08:47:35 -0400340static void lm85_write_value(struct i2c_client *client, u8 reg, int value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341static struct lm85_data *lm85_update_device(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342
343
Jean Delvare67712d02008-10-17 17:51:14 +0200344static const struct i2c_device_id lm85_id[] = {
345 { "adm1027", adm1027 },
346 { "adt7463", adt7463 },
Darrick J. Wongc15ade62009-03-10 12:55:47 -0700347 { "adt7468", adt7468 },
Jean Delvare67712d02008-10-17 17:51:14 +0200348 { "lm85", any_chip },
349 { "lm85b", lm85b },
350 { "lm85c", lm85c },
351 { "emc6d100", emc6d100 },
352 { "emc6d101", emc6d100 },
353 { "emc6d102", emc6d102 },
Jan Beulichf065a932011-02-18 03:18:26 -0500354 { "emc6d103", emc6d103 },
Jean Delvare67712d02008-10-17 17:51:14 +0200355 { }
356};
357MODULE_DEVICE_TABLE(i2c, lm85_id);
358
Linus Torvalds1da177e2005-04-16 15:20:36 -0700359static struct i2c_driver lm85_driver = {
Jean Delvare67712d02008-10-17 17:51:14 +0200360 .class = I2C_CLASS_HWMON,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100361 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100362 .name = "lm85",
363 },
Jean Delvare67712d02008-10-17 17:51:14 +0200364 .probe = lm85_probe,
365 .remove = lm85_remove,
366 .id_table = lm85_id,
367 .detect = lm85_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +0100368 .address_list = normal_i2c,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369};
370
371
372/* 4 Fans */
Jean Delvareb353a482007-07-05 20:36:12 +0200373static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
374 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700375{
Jean Delvareb353a482007-07-05 20:36:12 +0200376 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200378 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
Jean Delvareb353a482007-07-05 20:36:12 +0200380
381static ssize_t show_fan_min(struct device *dev, struct device_attribute *attr,
382 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700383{
Jean Delvareb353a482007-07-05 20:36:12 +0200384 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700385 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200386 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387}
Jean Delvareb353a482007-07-05 20:36:12 +0200388
389static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
390 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700391{
Jean Delvareb353a482007-07-05 20:36:12 +0200392 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 struct i2c_client *client = to_i2c_client(dev);
394 struct lm85_data *data = i2c_get_clientdata(client);
Jean Delvare63f281a2007-07-05 20:39:40 +0200395 unsigned long val = simple_strtoul(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700396
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100397 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 data->fan_min[nr] = FAN_TO_REG(val);
399 lm85_write_value(client, LM85_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100400 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700401 return count;
402}
403
404#define show_fan_offset(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200405static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
406 show_fan, NULL, offset - 1); \
407static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
408 show_fan_min, set_fan_min, offset - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409
410show_fan_offset(1);
411show_fan_offset(2);
412show_fan_offset(3);
413show_fan_offset(4);
414
415/* vid, vrm, alarms */
416
Jean Delvare1f448092008-04-29 14:03:37 +0200417static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
418 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700419{
420 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare9c516ef2005-11-26 20:07:54 +0100421 int vid;
422
Darrick J. Wong8ef1f022009-03-10 12:55:48 -0700423 if ((data->type == adt7463 || data->type == adt7468) &&
424 (data->vid & 0x80)) {
Jean Delvare9c516ef2005-11-26 20:07:54 +0100425 /* 6-pin VID (VRM 10) */
426 vid = vid_from_reg(data->vid & 0x3f, data->vrm);
427 } else {
428 /* 5-pin VID (VRM 9) */
429 vid = vid_from_reg(data->vid & 0x1f, data->vrm);
430 }
431
432 return sprintf(buf, "%d\n", vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700433}
434
435static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
436
Jean Delvare1f448092008-04-29 14:03:37 +0200437static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
438 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439{
Jean Delvare90d66192007-10-08 18:24:35 +0200440 struct lm85_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return sprintf(buf, "%ld\n", (long) data->vrm);
442}
443
Jean Delvare1f448092008-04-29 14:03:37 +0200444static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
445 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700446{
Jean Delvare8f74efe2007-12-01 11:25:33 +0100447 struct lm85_data *data = dev_get_drvdata(dev);
448 data->vrm = simple_strtoul(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449 return count;
450}
451
452static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
453
Jean Delvare1f448092008-04-29 14:03:37 +0200454static ssize_t show_alarms_reg(struct device *dev, struct device_attribute
455 *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700456{
457 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +0200458 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459}
460
461static DEVICE_ATTR(alarms, S_IRUGO, show_alarms_reg, NULL);
462
Jean Delvarebf76e9d2007-07-05 20:37:58 +0200463static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
464 char *buf)
465{
466 int nr = to_sensor_dev_attr(attr)->index;
467 struct lm85_data *data = lm85_update_device(dev);
468 return sprintf(buf, "%u\n", (data->alarms >> nr) & 1);
469}
470
471static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
472static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
473static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
474static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
475static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8);
476static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 18);
477static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 16);
478static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 17);
479static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4);
480static SENSOR_DEVICE_ATTR(temp1_fault, S_IRUGO, show_alarm, NULL, 14);
481static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5);
482static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 6);
483static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL, 15);
484static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 10);
485static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 11);
486static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 12);
487static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 13);
488
Linus Torvalds1da177e2005-04-16 15:20:36 -0700489/* pwm */
490
Jean Delvareb353a482007-07-05 20:36:12 +0200491static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
492 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700493{
Jean Delvareb353a482007-07-05 20:36:12 +0200494 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200496 return sprintf(buf, "%d\n", PWM_FROM_REG(data->pwm[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497}
Jean Delvareb353a482007-07-05 20:36:12 +0200498
499static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
500 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Jean Delvareb353a482007-07-05 20:36:12 +0200502 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 struct i2c_client *client = to_i2c_client(dev);
504 struct lm85_data *data = i2c_get_clientdata(client);
505 long val = simple_strtol(buf, NULL, 10);
506
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100507 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700508 data->pwm[nr] = PWM_TO_REG(val);
509 lm85_write_value(client, LM85_REG_PWM(nr), data->pwm[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100510 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 return count;
512}
Jean Delvareb353a482007-07-05 20:36:12 +0200513
514static ssize_t show_pwm_enable(struct device *dev, struct device_attribute
515 *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516{
Jean Delvareb353a482007-07-05 20:36:12 +0200517 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare4b4df952007-12-03 23:23:21 +0100519 int pwm_zone, enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700520
521 pwm_zone = ZONE_FROM_REG(data->autofan[nr].config);
Jean Delvare4b4df952007-12-03 23:23:21 +0100522 switch (pwm_zone) {
523 case -1: /* PWM is always at 100% */
524 enable = 0;
525 break;
526 case 0: /* PWM is always at 0% */
527 case -2: /* PWM responds to manual control */
528 enable = 1;
529 break;
530 default: /* PWM in automatic mode */
531 enable = 2;
532 }
533 return sprintf(buf, "%d\n", enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534}
535
Jean Delvare455f7912007-12-03 23:28:42 +0100536static ssize_t set_pwm_enable(struct device *dev, struct device_attribute
537 *attr, const char *buf, size_t count)
538{
539 int nr = to_sensor_dev_attr(attr)->index;
540 struct i2c_client *client = to_i2c_client(dev);
541 struct lm85_data *data = i2c_get_clientdata(client);
542 long val = simple_strtol(buf, NULL, 10);
543 u8 config;
544
545 switch (val) {
546 case 0:
547 config = 3;
548 break;
549 case 1:
550 config = 7;
551 break;
552 case 2:
553 /* Here we have to choose arbitrarily one of the 5 possible
554 configurations; I go for the safest */
555 config = 6;
556 break;
557 default:
558 return -EINVAL;
559 }
560
561 mutex_lock(&data->update_lock);
562 data->autofan[nr].config = lm85_read_value(client,
563 LM85_REG_AFAN_CONFIG(nr));
564 data->autofan[nr].config = (data->autofan[nr].config & ~0xe0)
565 | (config << 5);
566 lm85_write_value(client, LM85_REG_AFAN_CONFIG(nr),
567 data->autofan[nr].config);
568 mutex_unlock(&data->update_lock);
569 return count;
570}
571
Jean Delvare34e7dc62008-10-17 17:51:13 +0200572static ssize_t show_pwm_freq(struct device *dev,
573 struct device_attribute *attr, char *buf)
574{
575 int nr = to_sensor_dev_attr(attr)->index;
576 struct lm85_data *data = lm85_update_device(dev);
Jean Delvaref6c61cf2010-10-28 20:31:50 +0200577 int freq;
578
579 if (IS_ADT7468_HFPWM(data))
580 freq = 22500;
581 else
582 freq = FREQ_FROM_REG(data->freq_map, data->pwm_freq[nr]);
583
584 return sprintf(buf, "%d\n", freq);
Jean Delvare34e7dc62008-10-17 17:51:13 +0200585}
586
587static ssize_t set_pwm_freq(struct device *dev,
588 struct device_attribute *attr, const char *buf, size_t count)
589{
590 int nr = to_sensor_dev_attr(attr)->index;
591 struct i2c_client *client = to_i2c_client(dev);
592 struct lm85_data *data = i2c_get_clientdata(client);
593 long val = simple_strtol(buf, NULL, 10);
594
595 mutex_lock(&data->update_lock);
Jean Delvaref6c61cf2010-10-28 20:31:50 +0200596 /* The ADT7468 has a special high-frequency PWM output mode,
597 * where all PWM outputs are driven by a 22.5 kHz clock.
598 * This might confuse the user, but there's not much we can do. */
599 if (data->type == adt7468 && val >= 11300) { /* High freq. mode */
600 data->cfg5 &= ~ADT7468_HFPWM;
601 lm85_write_value(client, ADT7468_REG_CFG5, data->cfg5);
602 } else { /* Low freq. mode */
603 data->pwm_freq[nr] = FREQ_TO_REG(data->freq_map, val);
604 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
605 (data->zone[nr].range << 4)
606 | data->pwm_freq[nr]);
607 if (data->type == adt7468) {
608 data->cfg5 |= ADT7468_HFPWM;
609 lm85_write_value(client, ADT7468_REG_CFG5, data->cfg5);
610 }
611 }
Jean Delvare34e7dc62008-10-17 17:51:13 +0200612 mutex_unlock(&data->update_lock);
613 return count;
614}
615
Linus Torvalds1da177e2005-04-16 15:20:36 -0700616#define show_pwm_reg(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200617static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
618 show_pwm, set_pwm, offset - 1); \
Jean Delvare455f7912007-12-03 23:28:42 +0100619static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
Jean Delvare34e7dc62008-10-17 17:51:13 +0200620 show_pwm_enable, set_pwm_enable, offset - 1); \
621static SENSOR_DEVICE_ATTR(pwm##offset##_freq, S_IRUGO | S_IWUSR, \
622 show_pwm_freq, set_pwm_freq, offset - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700623
624show_pwm_reg(1);
625show_pwm_reg(2);
626show_pwm_reg(3);
627
628/* Voltages */
629
Jean Delvareb353a482007-07-05 20:36:12 +0200630static ssize_t show_in(struct device *dev, struct device_attribute *attr,
631 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632{
Jean Delvareb353a482007-07-05 20:36:12 +0200633 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700634 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200635 return sprintf(buf, "%d\n", INSEXT_FROM_REG(nr, data->in[nr],
636 data->in_ext[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637}
Jean Delvareb353a482007-07-05 20:36:12 +0200638
Jean Delvare1f448092008-04-29 14:03:37 +0200639static ssize_t show_in_min(struct device *dev, struct device_attribute *attr,
Jean Delvareb353a482007-07-05 20:36:12 +0200640 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641{
Jean Delvareb353a482007-07-05 20:36:12 +0200642 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200644 return sprintf(buf, "%d\n", INS_FROM_REG(nr, data->in_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645}
Jean Delvareb353a482007-07-05 20:36:12 +0200646
647static ssize_t set_in_min(struct device *dev, struct device_attribute *attr,
648 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649{
Jean Delvareb353a482007-07-05 20:36:12 +0200650 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 struct i2c_client *client = to_i2c_client(dev);
652 struct lm85_data *data = i2c_get_clientdata(client);
653 long val = simple_strtol(buf, NULL, 10);
654
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100655 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 data->in_min[nr] = INS_TO_REG(nr, val);
657 lm85_write_value(client, LM85_REG_IN_MIN(nr), data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100658 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659 return count;
660}
Jean Delvareb353a482007-07-05 20:36:12 +0200661
662static ssize_t show_in_max(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", INS_FROM_REG(nr, data->in_max[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668}
Jean Delvareb353a482007-07-05 20:36:12 +0200669
670static ssize_t set_in_max(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->in_max[nr] = INS_TO_REG(nr, val);
680 lm85_write_value(client, LM85_REG_IN_MAX(nr), data->in_max[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
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685#define show_in_reg(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200686static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
687 show_in, NULL, offset); \
688static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
689 show_in_min, set_in_min, offset); \
690static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
691 show_in_max, set_in_max, offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700692
693show_in_reg(0);
694show_in_reg(1);
695show_in_reg(2);
696show_in_reg(3);
697show_in_reg(4);
Jean Delvare6b9aad22007-07-05 20:37:21 +0200698show_in_reg(5);
699show_in_reg(6);
700show_in_reg(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701
702/* Temps */
703
Jean Delvareb353a482007-07-05 20:36:12 +0200704static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
705 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706{
Jean Delvareb353a482007-07-05 20:36:12 +0200707 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200709 return sprintf(buf, "%d\n", TEMPEXT_FROM_REG(data->temp[nr],
710 data->temp_ext[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700711}
Jean Delvareb353a482007-07-05 20:36:12 +0200712
713static ssize_t show_temp_min(struct device *dev, struct device_attribute *attr,
714 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
Jean Delvareb353a482007-07-05 20:36:12 +0200716 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200718 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719}
Jean Delvareb353a482007-07-05 20:36:12 +0200720
721static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr,
722 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700723{
Jean Delvareb353a482007-07-05 20:36:12 +0200724 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 struct i2c_client *client = to_i2c_client(dev);
726 struct lm85_data *data = i2c_get_clientdata(client);
727 long val = simple_strtol(buf, NULL, 10);
728
Darrick J. Wong79b92f22008-11-12 13:26:59 -0800729 if (IS_ADT7468_OFF64(data))
730 val += 64;
731
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100732 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700733 data->temp_min[nr] = TEMP_TO_REG(val);
734 lm85_write_value(client, LM85_REG_TEMP_MIN(nr), data->temp_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100735 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 return count;
737}
Jean Delvareb353a482007-07-05 20:36:12 +0200738
739static ssize_t show_temp_max(struct device *dev, struct device_attribute *attr,
740 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741{
Jean Delvareb353a482007-07-05 20:36:12 +0200742 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200744 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745}
Jean Delvareb353a482007-07-05 20:36:12 +0200746
747static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
748 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749{
Jean Delvareb353a482007-07-05 20:36:12 +0200750 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751 struct i2c_client *client = to_i2c_client(dev);
752 struct lm85_data *data = i2c_get_clientdata(client);
Jean Delvare1f448092008-04-29 14:03:37 +0200753 long val = simple_strtol(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
Darrick J. Wong79b92f22008-11-12 13:26:59 -0800755 if (IS_ADT7468_OFF64(data))
756 val += 64;
757
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100758 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 data->temp_max[nr] = TEMP_TO_REG(val);
760 lm85_write_value(client, LM85_REG_TEMP_MAX(nr), data->temp_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100761 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700762 return count;
763}
Jean Delvareb353a482007-07-05 20:36:12 +0200764
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765#define show_temp_reg(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200766static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
767 show_temp, NULL, offset - 1); \
768static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
769 show_temp_min, set_temp_min, offset - 1); \
770static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
771 show_temp_max, set_temp_max, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772
773show_temp_reg(1);
774show_temp_reg(2);
775show_temp_reg(3);
776
777
778/* Automatic PWM control */
779
Jean Delvareb353a482007-07-05 20:36:12 +0200780static ssize_t show_pwm_auto_channels(struct device *dev,
781 struct device_attribute *attr, char *buf)
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 lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200785 return sprintf(buf, "%d\n", ZONE_FROM_REG(data->autofan[nr].config));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786}
Jean Delvareb353a482007-07-05 20:36:12 +0200787
788static ssize_t set_pwm_auto_channels(struct device *dev,
789 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790{
Jean Delvareb353a482007-07-05 20:36:12 +0200791 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792 struct i2c_client *client = to_i2c_client(dev);
793 struct lm85_data *data = i2c_get_clientdata(client);
Jean Delvare1f448092008-04-29 14:03:37 +0200794 long val = simple_strtol(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100796 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 data->autofan[nr].config = (data->autofan[nr].config & (~0xe0))
Jean Delvare1f448092008-04-29 14:03:37 +0200798 | ZONE_TO_REG(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700799 lm85_write_value(client, LM85_REG_AFAN_CONFIG(nr),
800 data->autofan[nr].config);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100801 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700802 return count;
803}
Jean Delvareb353a482007-07-05 20:36:12 +0200804
805static ssize_t show_pwm_auto_pwm_min(struct device *dev,
806 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807{
Jean Delvareb353a482007-07-05 20:36:12 +0200808 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200810 return sprintf(buf, "%d\n", PWM_FROM_REG(data->autofan[nr].min_pwm));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700811}
Jean Delvareb353a482007-07-05 20:36:12 +0200812
813static ssize_t set_pwm_auto_pwm_min(struct device *dev,
814 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815{
Jean Delvareb353a482007-07-05 20:36:12 +0200816 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 struct i2c_client *client = to_i2c_client(dev);
818 struct lm85_data *data = i2c_get_clientdata(client);
819 long val = simple_strtol(buf, NULL, 10);
820
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100821 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700822 data->autofan[nr].min_pwm = PWM_TO_REG(val);
823 lm85_write_value(client, LM85_REG_AFAN_MINPWM(nr),
824 data->autofan[nr].min_pwm);
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
829static ssize_t show_pwm_auto_pwm_minctl(struct device *dev,
830 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831{
Jean Delvareb353a482007-07-05 20:36:12 +0200832 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200834 return sprintf(buf, "%d\n", data->autofan[nr].min_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700835}
Jean Delvareb353a482007-07-05 20:36:12 +0200836
837static ssize_t set_pwm_auto_pwm_minctl(struct device *dev,
838 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839{
Jean Delvareb353a482007-07-05 20:36:12 +0200840 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700841 struct i2c_client *client = to_i2c_client(dev);
842 struct lm85_data *data = i2c_get_clientdata(client);
843 long val = simple_strtol(buf, NULL, 10);
Jean Delvare7133e562008-04-12 19:56:35 +0200844 u8 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100846 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700847 data->autofan[nr].min_off = val;
Jean Delvare7133e562008-04-12 19:56:35 +0200848 tmp = lm85_read_value(client, LM85_REG_AFAN_SPIKE1);
849 tmp &= ~(0x20 << nr);
850 if (data->autofan[nr].min_off)
851 tmp |= 0x20 << nr;
852 lm85_write_value(client, LM85_REG_AFAN_SPIKE1, tmp);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100853 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700854 return count;
855}
Jean Delvareb353a482007-07-05 20:36:12 +0200856
Linus Torvalds1da177e2005-04-16 15:20:36 -0700857#define pwm_auto(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200858static SENSOR_DEVICE_ATTR(pwm##offset##_auto_channels, \
859 S_IRUGO | S_IWUSR, show_pwm_auto_channels, \
860 set_pwm_auto_channels, offset - 1); \
861static SENSOR_DEVICE_ATTR(pwm##offset##_auto_pwm_min, \
862 S_IRUGO | S_IWUSR, show_pwm_auto_pwm_min, \
863 set_pwm_auto_pwm_min, offset - 1); \
864static SENSOR_DEVICE_ATTR(pwm##offset##_auto_pwm_minctl, \
865 S_IRUGO | S_IWUSR, show_pwm_auto_pwm_minctl, \
Jean Delvare34e7dc62008-10-17 17:51:13 +0200866 set_pwm_auto_pwm_minctl, offset - 1)
Jean Delvareb353a482007-07-05 20:36:12 +0200867
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868pwm_auto(1);
869pwm_auto(2);
870pwm_auto(3);
871
872/* Temperature settings for automatic PWM control */
873
Jean Delvareb353a482007-07-05 20:36:12 +0200874static ssize_t show_temp_auto_temp_off(struct device *dev,
875 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876{
Jean Delvareb353a482007-07-05 20:36:12 +0200877 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200879 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880 HYST_FROM_REG(data->zone[nr].hyst));
881}
Jean Delvareb353a482007-07-05 20:36:12 +0200882
883static ssize_t set_temp_auto_temp_off(struct device *dev,
884 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885{
Jean Delvareb353a482007-07-05 20:36:12 +0200886 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700887 struct i2c_client *client = to_i2c_client(dev);
888 struct lm85_data *data = i2c_get_clientdata(client);
889 int min;
890 long val = simple_strtol(buf, NULL, 10);
891
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100892 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700893 min = TEMP_FROM_REG(data->zone[nr].limit);
894 data->zone[nr].off_desired = TEMP_TO_REG(val);
895 data->zone[nr].hyst = HYST_TO_REG(min - val);
Jean Delvare1f448092008-04-29 14:03:37 +0200896 if (nr == 0 || nr == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 lm85_write_value(client, LM85_REG_AFAN_HYST1,
898 (data->zone[0].hyst << 4)
Jean Delvare1f448092008-04-29 14:03:37 +0200899 | data->zone[1].hyst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 } else {
901 lm85_write_value(client, LM85_REG_AFAN_HYST2,
Jean Delvare1f448092008-04-29 14:03:37 +0200902 (data->zone[2].hyst << 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100904 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905 return count;
906}
Jean Delvareb353a482007-07-05 20:36:12 +0200907
908static ssize_t show_temp_auto_temp_min(struct device *dev,
909 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700910{
Jean Delvareb353a482007-07-05 20:36:12 +0200911 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700912 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200913 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914}
Jean Delvareb353a482007-07-05 20:36:12 +0200915
916static ssize_t set_temp_auto_temp_min(struct device *dev,
917 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918{
Jean Delvareb353a482007-07-05 20:36:12 +0200919 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700920 struct i2c_client *client = to_i2c_client(dev);
921 struct lm85_data *data = i2c_get_clientdata(client);
922 long val = simple_strtol(buf, NULL, 10);
923
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100924 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700925 data->zone[nr].limit = TEMP_TO_REG(val);
926 lm85_write_value(client, LM85_REG_AFAN_LIMIT(nr),
927 data->zone[nr].limit);
928
929/* Update temp_auto_max and temp_auto_range */
930 data->zone[nr].range = RANGE_TO_REG(
931 TEMP_FROM_REG(data->zone[nr].max_desired) -
932 TEMP_FROM_REG(data->zone[nr].limit));
933 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
934 ((data->zone[nr].range & 0x0f) << 4)
Jean Delvare34e7dc62008-10-17 17:51:13 +0200935 | (data->pwm_freq[nr] & 0x07));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937/* Update temp_auto_hyst and temp_auto_off */
938 data->zone[nr].hyst = HYST_TO_REG(TEMP_FROM_REG(
939 data->zone[nr].limit) - TEMP_FROM_REG(
940 data->zone[nr].off_desired));
Jean Delvare1f448092008-04-29 14:03:37 +0200941 if (nr == 0 || nr == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 lm85_write_value(client, LM85_REG_AFAN_HYST1,
943 (data->zone[0].hyst << 4)
Jean Delvare1f448092008-04-29 14:03:37 +0200944 | data->zone[1].hyst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 } else {
946 lm85_write_value(client, LM85_REG_AFAN_HYST2,
Jean Delvare1f448092008-04-29 14:03:37 +0200947 (data->zone[2].hyst << 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700948 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100949 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700950 return count;
951}
Jean Delvareb353a482007-07-05 20:36:12 +0200952
953static ssize_t show_temp_auto_temp_max(struct device *dev,
954 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700955{
Jean Delvareb353a482007-07-05 20:36:12 +0200956 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200958 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700959 RANGE_FROM_REG(data->zone[nr].range));
960}
Jean Delvareb353a482007-07-05 20:36:12 +0200961
962static ssize_t set_temp_auto_temp_max(struct device *dev,
963 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700964{
Jean Delvareb353a482007-07-05 20:36:12 +0200965 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700966 struct i2c_client *client = to_i2c_client(dev);
967 struct lm85_data *data = i2c_get_clientdata(client);
968 int min;
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 min = TEMP_FROM_REG(data->zone[nr].limit);
973 data->zone[nr].max_desired = TEMP_TO_REG(val);
974 data->zone[nr].range = RANGE_TO_REG(
975 val - min);
976 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
977 ((data->zone[nr].range & 0x0f) << 4)
Jean Delvare34e7dc62008-10-17 17:51:13 +0200978 | (data->pwm_freq[nr] & 0x07));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100979 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 return count;
981}
Jean Delvareb353a482007-07-05 20:36:12 +0200982
983static ssize_t show_temp_auto_temp_crit(struct device *dev,
984 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985{
Jean Delvareb353a482007-07-05 20:36:12 +0200986 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700987 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200988 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].critical));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989}
Jean Delvareb353a482007-07-05 20:36:12 +0200990
991static ssize_t set_temp_auto_temp_crit(struct device *dev,
Jean Delvare1f448092008-04-29 14:03:37 +0200992 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993{
Jean Delvareb353a482007-07-05 20:36:12 +0200994 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995 struct i2c_client *client = to_i2c_client(dev);
996 struct lm85_data *data = i2c_get_clientdata(client);
997 long val = simple_strtol(buf, NULL, 10);
998
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100999 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 data->zone[nr].critical = TEMP_TO_REG(val);
1001 lm85_write_value(client, LM85_REG_AFAN_CRITICAL(nr),
1002 data->zone[nr].critical);
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001003 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 return count;
1005}
Jean Delvareb353a482007-07-05 20:36:12 +02001006
Linus Torvalds1da177e2005-04-16 15:20:36 -07001007#define temp_auto(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +02001008static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_off, \
1009 S_IRUGO | S_IWUSR, show_temp_auto_temp_off, \
1010 set_temp_auto_temp_off, offset - 1); \
1011static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_min, \
1012 S_IRUGO | S_IWUSR, show_temp_auto_temp_min, \
1013 set_temp_auto_temp_min, offset - 1); \
1014static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_max, \
1015 S_IRUGO | S_IWUSR, show_temp_auto_temp_max, \
1016 set_temp_auto_temp_max, offset - 1); \
1017static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_crit, \
1018 S_IRUGO | S_IWUSR, show_temp_auto_temp_crit, \
1019 set_temp_auto_temp_crit, offset - 1);
1020
Linus Torvalds1da177e2005-04-16 15:20:36 -07001021temp_auto(1);
1022temp_auto(2);
1023temp_auto(3);
1024
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001025static struct attribute *lm85_attributes[] = {
Jean Delvareb353a482007-07-05 20:36:12 +02001026 &sensor_dev_attr_fan1_input.dev_attr.attr,
1027 &sensor_dev_attr_fan2_input.dev_attr.attr,
1028 &sensor_dev_attr_fan3_input.dev_attr.attr,
1029 &sensor_dev_attr_fan4_input.dev_attr.attr,
1030 &sensor_dev_attr_fan1_min.dev_attr.attr,
1031 &sensor_dev_attr_fan2_min.dev_attr.attr,
1032 &sensor_dev_attr_fan3_min.dev_attr.attr,
1033 &sensor_dev_attr_fan4_min.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001034 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1035 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1036 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
1037 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001038
1039 &sensor_dev_attr_pwm1.dev_attr.attr,
1040 &sensor_dev_attr_pwm2.dev_attr.attr,
1041 &sensor_dev_attr_pwm3.dev_attr.attr,
1042 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
1043 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
1044 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
Jean Delvare34e7dc62008-10-17 17:51:13 +02001045 &sensor_dev_attr_pwm1_freq.dev_attr.attr,
1046 &sensor_dev_attr_pwm2_freq.dev_attr.attr,
1047 &sensor_dev_attr_pwm3_freq.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001048
1049 &sensor_dev_attr_in0_input.dev_attr.attr,
1050 &sensor_dev_attr_in1_input.dev_attr.attr,
1051 &sensor_dev_attr_in2_input.dev_attr.attr,
1052 &sensor_dev_attr_in3_input.dev_attr.attr,
1053 &sensor_dev_attr_in0_min.dev_attr.attr,
1054 &sensor_dev_attr_in1_min.dev_attr.attr,
1055 &sensor_dev_attr_in2_min.dev_attr.attr,
1056 &sensor_dev_attr_in3_min.dev_attr.attr,
1057 &sensor_dev_attr_in0_max.dev_attr.attr,
1058 &sensor_dev_attr_in1_max.dev_attr.attr,
1059 &sensor_dev_attr_in2_max.dev_attr.attr,
1060 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001061 &sensor_dev_attr_in0_alarm.dev_attr.attr,
1062 &sensor_dev_attr_in1_alarm.dev_attr.attr,
1063 &sensor_dev_attr_in2_alarm.dev_attr.attr,
1064 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001065
1066 &sensor_dev_attr_temp1_input.dev_attr.attr,
1067 &sensor_dev_attr_temp2_input.dev_attr.attr,
1068 &sensor_dev_attr_temp3_input.dev_attr.attr,
1069 &sensor_dev_attr_temp1_min.dev_attr.attr,
1070 &sensor_dev_attr_temp2_min.dev_attr.attr,
1071 &sensor_dev_attr_temp3_min.dev_attr.attr,
1072 &sensor_dev_attr_temp1_max.dev_attr.attr,
1073 &sensor_dev_attr_temp2_max.dev_attr.attr,
1074 &sensor_dev_attr_temp3_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001075 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
1076 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
1077 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
1078 &sensor_dev_attr_temp1_fault.dev_attr.attr,
1079 &sensor_dev_attr_temp3_fault.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001080
1081 &sensor_dev_attr_pwm1_auto_channels.dev_attr.attr,
1082 &sensor_dev_attr_pwm2_auto_channels.dev_attr.attr,
1083 &sensor_dev_attr_pwm3_auto_channels.dev_attr.attr,
1084 &sensor_dev_attr_pwm1_auto_pwm_min.dev_attr.attr,
1085 &sensor_dev_attr_pwm2_auto_pwm_min.dev_attr.attr,
1086 &sensor_dev_attr_pwm3_auto_pwm_min.dev_attr.attr,
1087 &sensor_dev_attr_pwm1_auto_pwm_minctl.dev_attr.attr,
1088 &sensor_dev_attr_pwm2_auto_pwm_minctl.dev_attr.attr,
1089 &sensor_dev_attr_pwm3_auto_pwm_minctl.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001090
1091 &sensor_dev_attr_temp1_auto_temp_off.dev_attr.attr,
1092 &sensor_dev_attr_temp2_auto_temp_off.dev_attr.attr,
1093 &sensor_dev_attr_temp3_auto_temp_off.dev_attr.attr,
1094 &sensor_dev_attr_temp1_auto_temp_min.dev_attr.attr,
1095 &sensor_dev_attr_temp2_auto_temp_min.dev_attr.attr,
1096 &sensor_dev_attr_temp3_auto_temp_min.dev_attr.attr,
1097 &sensor_dev_attr_temp1_auto_temp_max.dev_attr.attr,
1098 &sensor_dev_attr_temp2_auto_temp_max.dev_attr.attr,
1099 &sensor_dev_attr_temp3_auto_temp_max.dev_attr.attr,
1100 &sensor_dev_attr_temp1_auto_temp_crit.dev_attr.attr,
1101 &sensor_dev_attr_temp2_auto_temp_crit.dev_attr.attr,
1102 &sensor_dev_attr_temp3_auto_temp_crit.dev_attr.attr,
1103
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001104 &dev_attr_vrm.attr,
1105 &dev_attr_cpu0_vid.attr,
1106 &dev_attr_alarms.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001107 NULL
1108};
1109
1110static const struct attribute_group lm85_group = {
1111 .attrs = lm85_attributes,
1112};
1113
Jean Delvare6b9aad22007-07-05 20:37:21 +02001114static struct attribute *lm85_attributes_in4[] = {
Jean Delvareb353a482007-07-05 20:36:12 +02001115 &sensor_dev_attr_in4_input.dev_attr.attr,
1116 &sensor_dev_attr_in4_min.dev_attr.attr,
1117 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001118 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001119 NULL
1120};
1121
Jean Delvare6b9aad22007-07-05 20:37:21 +02001122static const struct attribute_group lm85_group_in4 = {
1123 .attrs = lm85_attributes_in4,
1124};
1125
1126static struct attribute *lm85_attributes_in567[] = {
1127 &sensor_dev_attr_in5_input.dev_attr.attr,
1128 &sensor_dev_attr_in6_input.dev_attr.attr,
1129 &sensor_dev_attr_in7_input.dev_attr.attr,
1130 &sensor_dev_attr_in5_min.dev_attr.attr,
1131 &sensor_dev_attr_in6_min.dev_attr.attr,
1132 &sensor_dev_attr_in7_min.dev_attr.attr,
1133 &sensor_dev_attr_in5_max.dev_attr.attr,
1134 &sensor_dev_attr_in6_max.dev_attr.attr,
1135 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001136 &sensor_dev_attr_in5_alarm.dev_attr.attr,
1137 &sensor_dev_attr_in6_alarm.dev_attr.attr,
1138 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Jean Delvare6b9aad22007-07-05 20:37:21 +02001139 NULL
1140};
1141
1142static const struct attribute_group lm85_group_in567 = {
1143 .attrs = lm85_attributes_in567,
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001144};
1145
Jean Delvare5f44759472008-06-25 09:10:30 -04001146static void lm85_init_client(struct i2c_client *client)
1147{
1148 int value;
1149
1150 /* Start monitoring if needed */
1151 value = lm85_read_value(client, LM85_REG_CONFIG);
1152 if (!(value & 0x01)) {
1153 dev_info(&client->dev, "Starting monitoring\n");
1154 lm85_write_value(client, LM85_REG_CONFIG, value | 0x01);
1155 }
1156
1157 /* Warn about unusual configuration bits */
1158 if (value & 0x02)
1159 dev_warn(&client->dev, "Device configuration is locked\n");
1160 if (!(value & 0x04))
1161 dev_warn(&client->dev, "Device is not ready\n");
1162}
1163
Jean Delvare5cfaf332009-09-15 17:18:14 +02001164static int lm85_is_fake(struct i2c_client *client)
1165{
1166 /*
1167 * Differenciate between real LM96000 and Winbond WPCD377I. The latter
1168 * emulate the former except that it has no hardware monitoring function
1169 * so the readings are always 0.
1170 */
1171 int i;
1172 u8 in_temp, fan;
1173
1174 for (i = 0; i < 8; i++) {
1175 in_temp = i2c_smbus_read_byte_data(client, 0x20 + i);
1176 fan = i2c_smbus_read_byte_data(client, 0x28 + i);
1177 if (in_temp != 0x00 || fan != 0xff)
1178 return 0;
1179 }
1180
1181 return 1;
1182}
1183
Jean Delvare67712d02008-10-17 17:51:14 +02001184/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare310ec792009-12-14 21:17:23 +01001185static int lm85_detect(struct i2c_client *client, struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186{
Jean Delvare67712d02008-10-17 17:51:14 +02001187 struct i2c_adapter *adapter = client->adapter;
1188 int address = client->addr;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001189 const char *type_name;
Jean Delvared42a2eb2009-12-09 20:35:53 +01001190 int company, verstep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191
Jean Delvaree89e22b2008-06-25 08:47:35 -04001192 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193 /* We need to be able to do byte I/O */
Jean Delvare67712d02008-10-17 17:51:14 +02001194 return -ENODEV;
Jean Delvare1f448092008-04-29 14:03:37 +02001195 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001196
Jean Delvared42a2eb2009-12-09 20:35:53 +01001197 /* Determine the chip type */
1198 company = lm85_read_value(client, LM85_REG_COMPANY);
1199 verstep = lm85_read_value(client, LM85_REG_VERSTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001200
Jean Delvared42a2eb2009-12-09 20:35:53 +01001201 dev_dbg(&adapter->dev, "Detecting device at 0x%02x with "
1202 "COMPANY: 0x%02x and VERSTEP: 0x%02x\n",
1203 address, company, verstep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204
Jean Delvared42a2eb2009-12-09 20:35:53 +01001205 /* All supported chips have the version in common */
1206 if ((verstep & LM85_VERSTEP_VMASK) != LM85_VERSTEP_GENERIC &&
1207 (verstep & LM85_VERSTEP_VMASK) != LM85_VERSTEP_GENERIC2) {
1208 dev_dbg(&adapter->dev,
1209 "Autodetection failed: unsupported version\n");
1210 return -ENODEV;
1211 }
1212 type_name = "lm85";
1213
1214 /* Now, refine the detection */
1215 if (company == LM85_COMPANY_NATIONAL) {
1216 switch (verstep) {
1217 case LM85_VERSTEP_LM85C:
1218 type_name = "lm85c";
1219 break;
1220 case LM85_VERSTEP_LM85B:
1221 type_name = "lm85b";
1222 break;
1223 case LM85_VERSTEP_LM96000_1:
1224 case LM85_VERSTEP_LM96000_2:
1225 /* Check for Winbond WPCD377I */
1226 if (lm85_is_fake(client)) {
1227 dev_dbg(&adapter->dev,
1228 "Found Winbond WPCD377I, ignoring\n");
1229 return -ENODEV;
1230 }
1231 break;
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001232 }
Jean Delvared42a2eb2009-12-09 20:35:53 +01001233 } else if (company == LM85_COMPANY_ANALOG_DEV) {
1234 switch (verstep) {
1235 case LM85_VERSTEP_ADM1027:
1236 type_name = "adm1027";
1237 break;
1238 case LM85_VERSTEP_ADT7463:
1239 case LM85_VERSTEP_ADT7463C:
1240 type_name = "adt7463";
1241 break;
1242 case LM85_VERSTEP_ADT7468_1:
1243 case LM85_VERSTEP_ADT7468_2:
1244 type_name = "adt7468";
1245 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001246 }
Jean Delvared42a2eb2009-12-09 20:35:53 +01001247 } else if (company == LM85_COMPANY_SMSC) {
1248 switch (verstep) {
1249 case LM85_VERSTEP_EMC6D100_A0:
1250 case LM85_VERSTEP_EMC6D100_A1:
1251 /* Note: we can't tell a '100 from a '101 */
1252 type_name = "emc6d100";
1253 break;
1254 case LM85_VERSTEP_EMC6D102:
1255 type_name = "emc6d102";
1256 break;
Jan Beulichf065a932011-02-18 03:18:26 -05001257 case LM85_VERSTEP_EMC6D103_A0:
1258 case LM85_VERSTEP_EMC6D103_A1:
1259 type_name = "emc6d103";
1260 break;
1261 /*
1262 * Registers apparently missing in EMC6D103S/EMC6D103:A2
1263 * compared to EMC6D103:A0, EMC6D103:A1, and EMC6D102
1264 * (according to the data sheets), but used unconditionally
1265 * in the driver: 62[5:7], 6D[0:7], and 6E[0:7].
1266 * So skip EMC6D103S for now.
1267 case LM85_VERSTEP_EMC6D103S:
1268 type_name = "emc6d103s";
1269 break;
1270 */
Jean Delvared42a2eb2009-12-09 20:35:53 +01001271 }
1272 } else {
1273 dev_dbg(&adapter->dev,
1274 "Autodetection failed: unknown vendor\n");
1275 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276 }
1277
Jean Delvare67712d02008-10-17 17:51:14 +02001278 strlcpy(info->type, type_name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279
Jean Delvare67712d02008-10-17 17:51:14 +02001280 return 0;
1281}
1282
1283static int lm85_probe(struct i2c_client *client,
1284 const struct i2c_device_id *id)
1285{
1286 struct lm85_data *data;
1287 int err;
1288
1289 data = kzalloc(sizeof(struct lm85_data), GFP_KERNEL);
1290 if (!data)
1291 return -ENOMEM;
1292
1293 i2c_set_clientdata(client, data);
1294 data->type = id->driver_data;
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001295 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296
Jean Delvare67712d02008-10-17 17:51:14 +02001297 /* Fill in the chip specific driver values */
1298 switch (data->type) {
1299 case adm1027:
1300 case adt7463:
Jean Delvarefa7a5792010-10-28 20:31:50 +02001301 case adt7468:
Jean Delvare67712d02008-10-17 17:51:14 +02001302 case emc6d100:
1303 case emc6d102:
Jan Beulichf065a932011-02-18 03:18:26 -05001304 case emc6d103:
Jean Delvare67712d02008-10-17 17:51:14 +02001305 data->freq_map = adm1027_freq_map;
1306 break;
1307 default:
1308 data->freq_map = lm85_freq_map;
1309 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001310
1311 /* Set the VRM version */
Jean Delvare303760b2005-07-31 21:52:01 +02001312 data->vrm = vid_which_vrm();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313
1314 /* Initialize the LM85 chip */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001315 lm85_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 /* Register sysfs hooks */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001318 err = sysfs_create_group(&client->dev.kobj, &lm85_group);
1319 if (err)
Jean Delvaref9080372008-10-17 17:51:14 +02001320 goto err_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001321
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001322 /* The ADT7463/68 have an optional VRM 10 mode where pin 21 is used
Jean Delvare9c516ef2005-11-26 20:07:54 +01001323 as a sixth digital VID input rather than an analog input. */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001324 data->vid = lm85_read_value(client, LM85_REG_VID);
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001325 if (!((data->type == adt7463 || data->type == adt7468) &&
1326 (data->vid & 0x80)))
Jean Delvaree89e22b2008-06-25 08:47:35 -04001327 if ((err = sysfs_create_group(&client->dev.kobj,
Jean Delvare6b9aad22007-07-05 20:37:21 +02001328 &lm85_group_in4)))
Jean Delvaref9080372008-10-17 17:51:14 +02001329 goto err_remove_files;
Jean Delvare6b9aad22007-07-05 20:37:21 +02001330
1331 /* The EMC6D100 has 3 additional voltage inputs */
Jean Delvare67712d02008-10-17 17:51:14 +02001332 if (data->type == emc6d100)
Jean Delvaree89e22b2008-06-25 08:47:35 -04001333 if ((err = sysfs_create_group(&client->dev.kobj,
Jean Delvare6b9aad22007-07-05 20:37:21 +02001334 &lm85_group_in567)))
Jean Delvaref9080372008-10-17 17:51:14 +02001335 goto err_remove_files;
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001336
Jean Delvaree89e22b2008-06-25 08:47:35 -04001337 data->hwmon_dev = hwmon_device_register(&client->dev);
Tony Jones1beeffe2007-08-20 13:46:20 -07001338 if (IS_ERR(data->hwmon_dev)) {
1339 err = PTR_ERR(data->hwmon_dev);
Jean Delvaref9080372008-10-17 17:51:14 +02001340 goto err_remove_files;
Jean Delvare9c516ef2005-11-26 20:07:54 +01001341 }
1342
Linus Torvalds1da177e2005-04-16 15:20:36 -07001343 return 0;
1344
1345 /* Error out and cleanup code */
Jean Delvaref9080372008-10-17 17:51:14 +02001346 err_remove_files:
Jean Delvaree89e22b2008-06-25 08:47:35 -04001347 sysfs_remove_group(&client->dev.kobj, &lm85_group);
1348 sysfs_remove_group(&client->dev.kobj, &lm85_group_in4);
Jean Delvare67712d02008-10-17 17:51:14 +02001349 if (data->type == emc6d100)
Jean Delvaree89e22b2008-06-25 08:47:35 -04001350 sysfs_remove_group(&client->dev.kobj, &lm85_group_in567);
Jean Delvaref9080372008-10-17 17:51:14 +02001351 err_kfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001352 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001353 return err;
1354}
1355
Jean Delvare67712d02008-10-17 17:51:14 +02001356static int lm85_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357{
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001358 struct lm85_data *data = i2c_get_clientdata(client);
Tony Jones1beeffe2007-08-20 13:46:20 -07001359 hwmon_device_unregister(data->hwmon_dev);
Mark M. Hoffman0501a382006-09-24 21:14:35 +02001360 sysfs_remove_group(&client->dev.kobj, &lm85_group);
Jean Delvare6b9aad22007-07-05 20:37:21 +02001361 sysfs_remove_group(&client->dev.kobj, &lm85_group_in4);
1362 if (data->type == emc6d100)
1363 sysfs_remove_group(&client->dev.kobj, &lm85_group_in567);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001364 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001365 return 0;
1366}
1367
1368
Ben Dooksd8d20612005-10-26 21:05:46 +02001369static int lm85_read_value(struct i2c_client *client, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370{
1371 int res;
1372
1373 /* What size location is it? */
Jean Delvare1f448092008-04-29 14:03:37 +02001374 switch (reg) {
1375 case LM85_REG_FAN(0): /* Read WORD data */
1376 case LM85_REG_FAN(1):
1377 case LM85_REG_FAN(2):
1378 case LM85_REG_FAN(3):
1379 case LM85_REG_FAN_MIN(0):
1380 case LM85_REG_FAN_MIN(1):
1381 case LM85_REG_FAN_MIN(2):
1382 case LM85_REG_FAN_MIN(3):
1383 case LM85_REG_ALARM1: /* Read both bytes at once */
1384 res = i2c_smbus_read_byte_data(client, reg) & 0xff;
1385 res |= i2c_smbus_read_byte_data(client, reg + 1) << 8;
1386 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001387 default: /* Read BYTE data */
1388 res = i2c_smbus_read_byte_data(client, reg);
Jean Delvare1f448092008-04-29 14:03:37 +02001389 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390 }
1391
Jean Delvare1f448092008-04-29 14:03:37 +02001392 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001393}
1394
Jean Delvaree89e22b2008-06-25 08:47:35 -04001395static void lm85_write_value(struct i2c_client *client, u8 reg, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001396{
Jean Delvare1f448092008-04-29 14:03:37 +02001397 switch (reg) {
1398 case LM85_REG_FAN(0): /* Write WORD data */
1399 case LM85_REG_FAN(1):
1400 case LM85_REG_FAN(2):
1401 case LM85_REG_FAN(3):
1402 case LM85_REG_FAN_MIN(0):
1403 case LM85_REG_FAN_MIN(1):
1404 case LM85_REG_FAN_MIN(2):
1405 case LM85_REG_FAN_MIN(3):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 /* NOTE: ALARM is read only, so not included here */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001407 i2c_smbus_write_byte_data(client, reg, value & 0xff);
1408 i2c_smbus_write_byte_data(client, reg + 1, value >> 8);
Jean Delvare1f448092008-04-29 14:03:37 +02001409 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001410 default: /* Write BYTE data */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001411 i2c_smbus_write_byte_data(client, reg, value);
Jean Delvare1f448092008-04-29 14:03:37 +02001412 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001413 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001414}
1415
Linus Torvalds1da177e2005-04-16 15:20:36 -07001416static struct lm85_data *lm85_update_device(struct device *dev)
1417{
1418 struct i2c_client *client = to_i2c_client(dev);
1419 struct lm85_data *data = i2c_get_clientdata(client);
1420 int i;
1421
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001422 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001423
Jean Delvare1f448092008-04-29 14:03:37 +02001424 if (!data->valid ||
1425 time_after(jiffies, data->last_reading + LM85_DATA_INTERVAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001426 /* Things that change quickly */
1427 dev_dbg(&client->dev, "Reading sensor values\n");
Jean Delvare1f448092008-04-29 14:03:37 +02001428
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429 /* Have to read extended bits first to "freeze" the
1430 * more significant bits that are read later.
Jean Delvare5a4d3ef2007-07-05 20:38:32 +02001431 * There are 2 additional resolution bits per channel and we
1432 * have room for 4, so we shift them to the left.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 */
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001434 if (data->type == adm1027 || data->type == adt7463 ||
1435 data->type == adt7468) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001436 int ext1 = lm85_read_value(client,
1437 ADM1027_REG_EXTEND_ADC1);
1438 int ext2 = lm85_read_value(client,
1439 ADM1027_REG_EXTEND_ADC2);
1440 int val = (ext1 << 8) + ext2;
1441
Jean Delvare1f448092008-04-29 14:03:37 +02001442 for (i = 0; i <= 4; i++)
1443 data->in_ext[i] =
1444 ((val >> (i * 2)) & 0x03) << 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445
Jean Delvare1f448092008-04-29 14:03:37 +02001446 for (i = 0; i <= 2; i++)
1447 data->temp_ext[i] =
1448 (val >> ((i + 4) * 2)) & 0x0c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001449 }
1450
Jean Delvare9c516ef2005-11-26 20:07:54 +01001451 data->vid = lm85_read_value(client, LM85_REG_VID);
1452
1453 for (i = 0; i <= 3; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001454 data->in[i] =
1455 lm85_read_value(client, LM85_REG_IN(i));
Jean Delvaree89e22b2008-06-25 08:47:35 -04001456 data->fan[i] =
1457 lm85_read_value(client, LM85_REG_FAN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001458 }
1459
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001460 if (!((data->type == adt7463 || data->type == adt7468) &&
1461 (data->vid & 0x80))) {
Jean Delvare9c516ef2005-11-26 20:07:54 +01001462 data->in[4] = lm85_read_value(client,
1463 LM85_REG_IN(4));
1464 }
1465
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001466 if (data->type == adt7468)
1467 data->cfg5 = lm85_read_value(client, ADT7468_REG_CFG5);
1468
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 for (i = 0; i <= 2; ++i) {
1470 data->temp[i] =
1471 lm85_read_value(client, LM85_REG_TEMP(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472 data->pwm[i] =
1473 lm85_read_value(client, LM85_REG_PWM(i));
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001474
1475 if (IS_ADT7468_OFF64(data))
1476 data->temp[i] -= 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
1478
1479 data->alarms = lm85_read_value(client, LM85_REG_ALARM1);
1480
Jean Delvaredd1ac532008-05-01 08:47:33 +02001481 if (data->type == emc6d100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001482 /* Three more voltage sensors */
1483 for (i = 5; i <= 7; ++i) {
Jean Delvare1f448092008-04-29 14:03:37 +02001484 data->in[i] = lm85_read_value(client,
1485 EMC6D100_REG_IN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001486 }
1487 /* More alarm bits */
Jean Delvare1f448092008-04-29 14:03:37 +02001488 data->alarms |= lm85_read_value(client,
1489 EMC6D100_REG_ALARM3) << 16;
Jan Beulichf065a932011-02-18 03:18:26 -05001490 } else if (data->type == emc6d102 || data->type == emc6d103) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001491 /* Have to read LSB bits after the MSB ones because
1492 the reading of the MSB bits has frozen the
1493 LSBs (backward from the ADM1027).
1494 */
1495 int ext1 = lm85_read_value(client,
1496 EMC6D102_REG_EXTEND_ADC1);
1497 int ext2 = lm85_read_value(client,
1498 EMC6D102_REG_EXTEND_ADC2);
1499 int ext3 = lm85_read_value(client,
1500 EMC6D102_REG_EXTEND_ADC3);
1501 int ext4 = lm85_read_value(client,
1502 EMC6D102_REG_EXTEND_ADC4);
1503 data->in_ext[0] = ext3 & 0x0f;
1504 data->in_ext[1] = ext4 & 0x0f;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001505 data->in_ext[2] = ext4 >> 4;
1506 data->in_ext[3] = ext3 >> 4;
1507 data->in_ext[4] = ext2 >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001508
1509 data->temp_ext[0] = ext1 & 0x0f;
1510 data->temp_ext[1] = ext2 & 0x0f;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001511 data->temp_ext[2] = ext1 >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001512 }
1513
Jean Delvare1f448092008-04-29 14:03:37 +02001514 data->last_reading = jiffies;
1515 } /* last_reading */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001516
Jean Delvare1f448092008-04-29 14:03:37 +02001517 if (!data->valid ||
1518 time_after(jiffies, data->last_config + LM85_CONFIG_INTERVAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001519 /* Things that don't change often */
1520 dev_dbg(&client->dev, "Reading config values\n");
1521
Jean Delvare9c516ef2005-11-26 20:07:54 +01001522 for (i = 0; i <= 3; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001523 data->in_min[i] =
1524 lm85_read_value(client, LM85_REG_IN_MIN(i));
1525 data->in_max[i] =
1526 lm85_read_value(client, LM85_REG_IN_MAX(i));
Jean Delvaree89e22b2008-06-25 08:47:35 -04001527 data->fan_min[i] =
1528 lm85_read_value(client, LM85_REG_FAN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 }
1530
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001531 if (!((data->type == adt7463 || data->type == adt7468) &&
1532 (data->vid & 0x80))) {
Jean Delvare9c516ef2005-11-26 20:07:54 +01001533 data->in_min[4] = lm85_read_value(client,
1534 LM85_REG_IN_MIN(4));
1535 data->in_max[4] = lm85_read_value(client,
1536 LM85_REG_IN_MAX(4));
1537 }
1538
Jean Delvare1f448092008-04-29 14:03:37 +02001539 if (data->type == emc6d100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 for (i = 5; i <= 7; ++i) {
Jean Delvare1f448092008-04-29 14:03:37 +02001541 data->in_min[i] = lm85_read_value(client,
1542 EMC6D100_REG_IN_MIN(i));
1543 data->in_max[i] = lm85_read_value(client,
1544 EMC6D100_REG_IN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545 }
1546 }
1547
Linus Torvalds1da177e2005-04-16 15:20:36 -07001548 for (i = 0; i <= 2; ++i) {
Jean Delvaree89e22b2008-06-25 08:47:35 -04001549 int val;
1550
Linus Torvalds1da177e2005-04-16 15:20:36 -07001551 data->temp_min[i] =
1552 lm85_read_value(client, LM85_REG_TEMP_MIN(i));
1553 data->temp_max[i] =
1554 lm85_read_value(client, LM85_REG_TEMP_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555
Linus Torvalds1da177e2005-04-16 15:20:36 -07001556 data->autofan[i].config =
1557 lm85_read_value(client, LM85_REG_AFAN_CONFIG(i));
1558 val = lm85_read_value(client, LM85_REG_AFAN_RANGE(i));
Jean Delvare34e7dc62008-10-17 17:51:13 +02001559 data->pwm_freq[i] = val & 0x07;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001560 data->zone[i].range = val >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001561 data->autofan[i].min_pwm =
1562 lm85_read_value(client, LM85_REG_AFAN_MINPWM(i));
1563 data->zone[i].limit =
1564 lm85_read_value(client, LM85_REG_AFAN_LIMIT(i));
1565 data->zone[i].critical =
1566 lm85_read_value(client, LM85_REG_AFAN_CRITICAL(i));
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001567
1568 if (IS_ADT7468_OFF64(data)) {
1569 data->temp_min[i] -= 64;
1570 data->temp_max[i] -= 64;
1571 data->zone[i].limit -= 64;
1572 data->zone[i].critical -= 64;
1573 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001574 }
1575
1576 i = lm85_read_value(client, LM85_REG_AFAN_SPIKE1);
Jean Delvare1f448092008-04-29 14:03:37 +02001577 data->autofan[0].min_off = (i & 0x20) != 0;
1578 data->autofan[1].min_off = (i & 0x40) != 0;
1579 data->autofan[2].min_off = (i & 0x80) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001580
1581 i = lm85_read_value(client, LM85_REG_AFAN_HYST1);
Jean Delvaree89e22b2008-06-25 08:47:35 -04001582 data->zone[0].hyst = i >> 4;
Jean Delvare1f448092008-04-29 14:03:37 +02001583 data->zone[1].hyst = i & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001584
1585 i = lm85_read_value(client, LM85_REG_AFAN_HYST2);
Jean Delvaree89e22b2008-06-25 08:47:35 -04001586 data->zone[2].hyst = i >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001587
Linus Torvalds1da177e2005-04-16 15:20:36 -07001588 data->last_config = jiffies;
Jean Delvare1f448092008-04-29 14:03:37 +02001589 } /* last_config */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590
1591 data->valid = 1;
1592
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001593 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594
1595 return data;
1596}
1597
1598
1599static int __init sm_lm85_init(void)
1600{
1601 return i2c_add_driver(&lm85_driver);
1602}
1603
Jean Delvare1f448092008-04-29 14:03:37 +02001604static void __exit sm_lm85_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605{
1606 i2c_del_driver(&lm85_driver);
1607}
1608
Linus Torvalds1da177e2005-04-16 15:20:36 -07001609MODULE_LICENSE("GPL");
Jean Delvare1f448092008-04-29 14:03:37 +02001610MODULE_AUTHOR("Philip Pokorny <ppokorny@penguincomputing.com>, "
1611 "Margit Schubert-While <margitsw@t-online.de>, "
Jean Delvaree89e22b2008-06-25 08:47:35 -04001612 "Justin Thiessen <jthiessen@penguincomputing.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001613MODULE_DESCRIPTION("LM85-B, LM85-C driver");
1614
1615module_init(sm_lm85_init);
1616module_exit(sm_lm85_exit);