blob: cf47e6e476eddb35a5dbc98441ea6b533227f5ae [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,
Guenter Roeck06923f82011-02-19 08:27:47 -080044 emc6d100, emc6d102, emc6d103, emc6d103s
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 max_desired; /* Actual "max" temperature specified. Preserved
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287 * to prevent "drift" as other autofan control
288 * values change.
289 */
290};
291
292struct lm85_autofan {
293 u8 config; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294 u8 min_pwm; /* Minimum PWM value, encoded */
295 u8 min_off; /* Min PWM or OFF below "limit", flag */
296};
297
Jean Delvareed6bafb2007-02-14 21:15:03 +0100298/* For each registered chip, we need to keep some data in memory.
299 The structure is dynamically allocated. */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700300struct lm85_data {
Tony Jones1beeffe2007-08-20 13:46:20 -0700301 struct device *hwmon_dev;
Jean Delvare8a0795d2008-10-17 17:51:14 +0200302 const int *freq_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303 enum chips type;
304
Guenter Roeckde248802011-02-25 08:19:42 -0800305 bool has_vid5; /* true if VID5 is configured for ADT7463 or ADT7468 */
306
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100307 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700308 int valid; /* !=0 if following fields are valid */
309 unsigned long last_reading; /* In jiffies */
310 unsigned long last_config; /* In jiffies */
311
312 u8 in[8]; /* Register value */
313 u8 in_max[8]; /* Register value */
314 u8 in_min[8]; /* Register value */
315 s8 temp[3]; /* Register value */
316 s8 temp_min[3]; /* Register value */
317 s8 temp_max[3]; /* Register value */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700318 u16 fan[4]; /* Register value */
319 u16 fan_min[4]; /* Register value */
320 u8 pwm[3]; /* Register value */
Jean Delvare34e7dc62008-10-17 17:51:13 +0200321 u8 pwm_freq[3]; /* Register encoding */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 u8 temp_ext[3]; /* Decoded values */
323 u8 in_ext[8]; /* Decoded values */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 u8 vid; /* Register value */
325 u8 vrm; /* VRM version */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 u32 alarms; /* Register encoding, combined */
Darrick J. Wong79b92f22008-11-12 13:26:59 -0800327 u8 cfg5; /* Config Register 5 on ADT7468 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328 struct lm85_autofan autofan[3];
329 struct lm85_zone zone[3];
330};
331
Jean Delvare310ec792009-12-14 21:17:23 +0100332static int lm85_detect(struct i2c_client *client, struct i2c_board_info *info);
Jean Delvare67712d02008-10-17 17:51:14 +0200333static int lm85_probe(struct i2c_client *client,
334 const struct i2c_device_id *id);
335static int lm85_remove(struct i2c_client *client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336
Darren Jenkinsf6c27fc2006-02-27 23:14:58 +0100337static int lm85_read_value(struct i2c_client *client, u8 reg);
Jean Delvaree89e22b2008-06-25 08:47:35 -0400338static void lm85_write_value(struct i2c_client *client, u8 reg, int value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700339static struct lm85_data *lm85_update_device(struct device *dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340
341
Jean Delvare67712d02008-10-17 17:51:14 +0200342static const struct i2c_device_id lm85_id[] = {
343 { "adm1027", adm1027 },
344 { "adt7463", adt7463 },
Darrick J. Wongc15ade62009-03-10 12:55:47 -0700345 { "adt7468", adt7468 },
Jean Delvare67712d02008-10-17 17:51:14 +0200346 { "lm85", any_chip },
347 { "lm85b", lm85b },
348 { "lm85c", lm85c },
349 { "emc6d100", emc6d100 },
350 { "emc6d101", emc6d100 },
351 { "emc6d102", emc6d102 },
Jan Beulichf065a932011-02-18 03:18:26 -0500352 { "emc6d103", emc6d103 },
Guenter Roeck06923f82011-02-19 08:27:47 -0800353 { "emc6d103s", emc6d103s },
Jean Delvare67712d02008-10-17 17:51:14 +0200354 { }
355};
356MODULE_DEVICE_TABLE(i2c, lm85_id);
357
Linus Torvalds1da177e2005-04-16 15:20:36 -0700358static struct i2c_driver lm85_driver = {
Jean Delvare67712d02008-10-17 17:51:14 +0200359 .class = I2C_CLASS_HWMON,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100360 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100361 .name = "lm85",
362 },
Jean Delvare67712d02008-10-17 17:51:14 +0200363 .probe = lm85_probe,
364 .remove = lm85_remove,
365 .id_table = lm85_id,
366 .detect = lm85_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +0100367 .address_list = normal_i2c,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700368};
369
370
371/* 4 Fans */
Jean Delvareb353a482007-07-05 20:36:12 +0200372static ssize_t show_fan(struct device *dev, struct device_attribute *attr,
373 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374{
Jean Delvareb353a482007-07-05 20:36:12 +0200375 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200377 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378}
Jean Delvareb353a482007-07-05 20:36:12 +0200379
380static ssize_t show_fan_min(struct device *dev, struct device_attribute *attr,
381 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382{
Jean Delvareb353a482007-07-05 20:36:12 +0200383 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200385 return sprintf(buf, "%d\n", FAN_FROM_REG(data->fan_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700386}
Jean Delvareb353a482007-07-05 20:36:12 +0200387
388static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
389 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390{
Jean Delvareb353a482007-07-05 20:36:12 +0200391 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 struct i2c_client *client = to_i2c_client(dev);
393 struct lm85_data *data = i2c_get_clientdata(client);
Jean Delvare63f281a2007-07-05 20:39:40 +0200394 unsigned long val = simple_strtoul(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100396 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700397 data->fan_min[nr] = FAN_TO_REG(val);
398 lm85_write_value(client, LM85_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100399 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 return count;
401}
402
403#define show_fan_offset(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200404static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
405 show_fan, NULL, offset - 1); \
406static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
407 show_fan_min, set_fan_min, offset - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700408
409show_fan_offset(1);
410show_fan_offset(2);
411show_fan_offset(3);
412show_fan_offset(4);
413
414/* vid, vrm, alarms */
415
Jean Delvare1f448092008-04-29 14:03:37 +0200416static ssize_t show_vid_reg(struct device *dev, struct device_attribute *attr,
417 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
419 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare9c516ef2005-11-26 20:07:54 +0100420 int vid;
421
Guenter Roeckde248802011-02-25 08:19:42 -0800422 if (data->has_vid5) {
Jean Delvare9c516ef2005-11-26 20:07:54 +0100423 /* 6-pin VID (VRM 10) */
424 vid = vid_from_reg(data->vid & 0x3f, data->vrm);
425 } else {
426 /* 5-pin VID (VRM 9) */
427 vid = vid_from_reg(data->vid & 0x1f, data->vrm);
428 }
429
430 return sprintf(buf, "%d\n", vid);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700431}
432
433static DEVICE_ATTR(cpu0_vid, S_IRUGO, show_vid_reg, NULL);
434
Jean Delvare1f448092008-04-29 14:03:37 +0200435static ssize_t show_vrm_reg(struct device *dev, struct device_attribute *attr,
436 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437{
Jean Delvare90d66192007-10-08 18:24:35 +0200438 struct lm85_data *data = dev_get_drvdata(dev);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 return sprintf(buf, "%ld\n", (long) data->vrm);
440}
441
Jean Delvare1f448092008-04-29 14:03:37 +0200442static ssize_t store_vrm_reg(struct device *dev, struct device_attribute *attr,
443 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444{
Jean Delvare8f74efe2007-12-01 11:25:33 +0100445 struct lm85_data *data = dev_get_drvdata(dev);
446 data->vrm = simple_strtoul(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700447 return count;
448}
449
450static DEVICE_ATTR(vrm, S_IRUGO | S_IWUSR, show_vrm_reg, store_vrm_reg);
451
Jean Delvare1f448092008-04-29 14:03:37 +0200452static ssize_t show_alarms_reg(struct device *dev, struct device_attribute
453 *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700454{
455 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare68188ba2005-05-16 18:52:38 +0200456 return sprintf(buf, "%u\n", data->alarms);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700457}
458
459static DEVICE_ATTR(alarms, S_IRUGO, show_alarms_reg, NULL);
460
Jean Delvarebf76e9d2007-07-05 20:37:58 +0200461static ssize_t show_alarm(struct device *dev, struct device_attribute *attr,
462 char *buf)
463{
464 int nr = to_sensor_dev_attr(attr)->index;
465 struct lm85_data *data = lm85_update_device(dev);
466 return sprintf(buf, "%u\n", (data->alarms >> nr) & 1);
467}
468
469static SENSOR_DEVICE_ATTR(in0_alarm, S_IRUGO, show_alarm, NULL, 0);
470static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, 1);
471static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, 2);
472static SENSOR_DEVICE_ATTR(in3_alarm, S_IRUGO, show_alarm, NULL, 3);
473static SENSOR_DEVICE_ATTR(in4_alarm, S_IRUGO, show_alarm, NULL, 8);
474static SENSOR_DEVICE_ATTR(in5_alarm, S_IRUGO, show_alarm, NULL, 18);
475static SENSOR_DEVICE_ATTR(in6_alarm, S_IRUGO, show_alarm, NULL, 16);
476static SENSOR_DEVICE_ATTR(in7_alarm, S_IRUGO, show_alarm, NULL, 17);
477static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, 4);
478static SENSOR_DEVICE_ATTR(temp1_fault, S_IRUGO, show_alarm, NULL, 14);
479static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, 5);
480static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, 6);
481static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL, 15);
482static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 10);
483static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 11);
484static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, 12);
485static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, 13);
486
Linus Torvalds1da177e2005-04-16 15:20:36 -0700487/* pwm */
488
Jean Delvareb353a482007-07-05 20:36:12 +0200489static ssize_t show_pwm(struct device *dev, struct device_attribute *attr,
490 char *buf)
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 lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200494 return sprintf(buf, "%d\n", PWM_FROM_REG(data->pwm[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700495}
Jean Delvareb353a482007-07-05 20:36:12 +0200496
497static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
498 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499{
Jean Delvareb353a482007-07-05 20:36:12 +0200500 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501 struct i2c_client *client = to_i2c_client(dev);
502 struct lm85_data *data = i2c_get_clientdata(client);
503 long val = simple_strtol(buf, NULL, 10);
504
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100505 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700506 data->pwm[nr] = PWM_TO_REG(val);
507 lm85_write_value(client, LM85_REG_PWM(nr), data->pwm[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100508 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 return count;
510}
Jean Delvareb353a482007-07-05 20:36:12 +0200511
512static ssize_t show_pwm_enable(struct device *dev, struct device_attribute
513 *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Jean Delvareb353a482007-07-05 20:36:12 +0200515 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare4b4df952007-12-03 23:23:21 +0100517 int pwm_zone, enable;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518
519 pwm_zone = ZONE_FROM_REG(data->autofan[nr].config);
Jean Delvare4b4df952007-12-03 23:23:21 +0100520 switch (pwm_zone) {
521 case -1: /* PWM is always at 100% */
522 enable = 0;
523 break;
524 case 0: /* PWM is always at 0% */
525 case -2: /* PWM responds to manual control */
526 enable = 1;
527 break;
528 default: /* PWM in automatic mode */
529 enable = 2;
530 }
531 return sprintf(buf, "%d\n", enable);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700532}
533
Jean Delvare455f7912007-12-03 23:28:42 +0100534static ssize_t set_pwm_enable(struct device *dev, struct device_attribute
535 *attr, const char *buf, size_t count)
536{
537 int nr = to_sensor_dev_attr(attr)->index;
538 struct i2c_client *client = to_i2c_client(dev);
539 struct lm85_data *data = i2c_get_clientdata(client);
540 long val = simple_strtol(buf, NULL, 10);
541 u8 config;
542
543 switch (val) {
544 case 0:
545 config = 3;
546 break;
547 case 1:
548 config = 7;
549 break;
550 case 2:
551 /* Here we have to choose arbitrarily one of the 5 possible
552 configurations; I go for the safest */
553 config = 6;
554 break;
555 default:
556 return -EINVAL;
557 }
558
559 mutex_lock(&data->update_lock);
560 data->autofan[nr].config = lm85_read_value(client,
561 LM85_REG_AFAN_CONFIG(nr));
562 data->autofan[nr].config = (data->autofan[nr].config & ~0xe0)
563 | (config << 5);
564 lm85_write_value(client, LM85_REG_AFAN_CONFIG(nr),
565 data->autofan[nr].config);
566 mutex_unlock(&data->update_lock);
567 return count;
568}
569
Jean Delvare34e7dc62008-10-17 17:51:13 +0200570static ssize_t show_pwm_freq(struct device *dev,
571 struct device_attribute *attr, char *buf)
572{
573 int nr = to_sensor_dev_attr(attr)->index;
574 struct lm85_data *data = lm85_update_device(dev);
Jean Delvaref6c61cf2010-10-28 20:31:50 +0200575 int freq;
576
577 if (IS_ADT7468_HFPWM(data))
578 freq = 22500;
579 else
580 freq = FREQ_FROM_REG(data->freq_map, data->pwm_freq[nr]);
581
582 return sprintf(buf, "%d\n", freq);
Jean Delvare34e7dc62008-10-17 17:51:13 +0200583}
584
585static ssize_t set_pwm_freq(struct device *dev,
586 struct device_attribute *attr, const char *buf, size_t count)
587{
588 int nr = to_sensor_dev_attr(attr)->index;
589 struct i2c_client *client = to_i2c_client(dev);
590 struct lm85_data *data = i2c_get_clientdata(client);
591 long val = simple_strtol(buf, NULL, 10);
592
593 mutex_lock(&data->update_lock);
Jean Delvaref6c61cf2010-10-28 20:31:50 +0200594 /* The ADT7468 has a special high-frequency PWM output mode,
595 * where all PWM outputs are driven by a 22.5 kHz clock.
596 * This might confuse the user, but there's not much we can do. */
597 if (data->type == adt7468 && val >= 11300) { /* High freq. mode */
598 data->cfg5 &= ~ADT7468_HFPWM;
599 lm85_write_value(client, ADT7468_REG_CFG5, data->cfg5);
600 } else { /* Low freq. mode */
601 data->pwm_freq[nr] = FREQ_TO_REG(data->freq_map, val);
602 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
603 (data->zone[nr].range << 4)
604 | data->pwm_freq[nr]);
605 if (data->type == adt7468) {
606 data->cfg5 |= ADT7468_HFPWM;
607 lm85_write_value(client, ADT7468_REG_CFG5, data->cfg5);
608 }
609 }
Jean Delvare34e7dc62008-10-17 17:51:13 +0200610 mutex_unlock(&data->update_lock);
611 return count;
612}
613
Linus Torvalds1da177e2005-04-16 15:20:36 -0700614#define show_pwm_reg(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200615static SENSOR_DEVICE_ATTR(pwm##offset, S_IRUGO | S_IWUSR, \
616 show_pwm, set_pwm, offset - 1); \
Jean Delvare455f7912007-12-03 23:28:42 +0100617static SENSOR_DEVICE_ATTR(pwm##offset##_enable, S_IRUGO | S_IWUSR, \
Jean Delvare34e7dc62008-10-17 17:51:13 +0200618 show_pwm_enable, set_pwm_enable, offset - 1); \
619static SENSOR_DEVICE_ATTR(pwm##offset##_freq, S_IRUGO | S_IWUSR, \
620 show_pwm_freq, set_pwm_freq, offset - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700621
622show_pwm_reg(1);
623show_pwm_reg(2);
624show_pwm_reg(3);
625
626/* Voltages */
627
Jean Delvareb353a482007-07-05 20:36:12 +0200628static ssize_t show_in(struct device *dev, struct device_attribute *attr,
629 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700630{
Jean Delvareb353a482007-07-05 20:36:12 +0200631 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200633 return sprintf(buf, "%d\n", INSEXT_FROM_REG(nr, data->in[nr],
634 data->in_ext[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700635}
Jean Delvareb353a482007-07-05 20:36:12 +0200636
Jean Delvare1f448092008-04-29 14:03:37 +0200637static ssize_t show_in_min(struct device *dev, struct device_attribute *attr,
Jean Delvareb353a482007-07-05 20:36:12 +0200638 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Jean Delvareb353a482007-07-05 20:36:12 +0200640 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200642 return sprintf(buf, "%d\n", INS_FROM_REG(nr, data->in_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700643}
Jean Delvareb353a482007-07-05 20:36:12 +0200644
645static ssize_t set_in_min(struct device *dev, struct device_attribute *attr,
646 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
Jean Delvareb353a482007-07-05 20:36:12 +0200648 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 struct i2c_client *client = to_i2c_client(dev);
650 struct lm85_data *data = i2c_get_clientdata(client);
651 long val = simple_strtol(buf, NULL, 10);
652
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100653 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 data->in_min[nr] = INS_TO_REG(nr, val);
655 lm85_write_value(client, LM85_REG_IN_MIN(nr), data->in_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100656 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 return count;
658}
Jean Delvareb353a482007-07-05 20:36:12 +0200659
660static ssize_t show_in_max(struct device *dev, struct device_attribute *attr,
661 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662{
Jean Delvareb353a482007-07-05 20:36:12 +0200663 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200665 return sprintf(buf, "%d\n", INS_FROM_REG(nr, data->in_max[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700666}
Jean Delvareb353a482007-07-05 20:36:12 +0200667
668static ssize_t set_in_max(struct device *dev, struct device_attribute *attr,
669 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670{
Jean Delvareb353a482007-07-05 20:36:12 +0200671 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700672 struct i2c_client *client = to_i2c_client(dev);
673 struct lm85_data *data = i2c_get_clientdata(client);
674 long val = simple_strtol(buf, NULL, 10);
675
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100676 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 data->in_max[nr] = INS_TO_REG(nr, val);
678 lm85_write_value(client, LM85_REG_IN_MAX(nr), data->in_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100679 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680 return count;
681}
Jean Delvareb353a482007-07-05 20:36:12 +0200682
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683#define show_in_reg(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200684static SENSOR_DEVICE_ATTR(in##offset##_input, S_IRUGO, \
685 show_in, NULL, offset); \
686static SENSOR_DEVICE_ATTR(in##offset##_min, S_IRUGO | S_IWUSR, \
687 show_in_min, set_in_min, offset); \
688static SENSOR_DEVICE_ATTR(in##offset##_max, S_IRUGO | S_IWUSR, \
689 show_in_max, set_in_max, offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690
691show_in_reg(0);
692show_in_reg(1);
693show_in_reg(2);
694show_in_reg(3);
695show_in_reg(4);
Jean Delvare6b9aad22007-07-05 20:37:21 +0200696show_in_reg(5);
697show_in_reg(6);
698show_in_reg(7);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699
700/* Temps */
701
Jean Delvareb353a482007-07-05 20:36:12 +0200702static ssize_t show_temp(struct device *dev, struct device_attribute *attr,
703 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Jean Delvareb353a482007-07-05 20:36:12 +0200705 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700706 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200707 return sprintf(buf, "%d\n", TEMPEXT_FROM_REG(data->temp[nr],
708 data->temp_ext[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709}
Jean Delvareb353a482007-07-05 20:36:12 +0200710
711static ssize_t show_temp_min(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_min[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717}
Jean Delvareb353a482007-07-05 20:36:12 +0200718
719static ssize_t set_temp_min(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);
725 long val = simple_strtol(buf, NULL, 10);
726
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_min[nr] = TEMP_TO_REG(val);
732 lm85_write_value(client, LM85_REG_TEMP_MIN(nr), data->temp_min[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
737static ssize_t show_temp_max(struct device *dev, struct device_attribute *attr,
738 char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739{
Jean Delvareb353a482007-07-05 20:36:12 +0200740 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200742 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[nr]));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743}
Jean Delvareb353a482007-07-05 20:36:12 +0200744
745static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
746 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747{
Jean Delvareb353a482007-07-05 20:36:12 +0200748 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 struct i2c_client *client = to_i2c_client(dev);
750 struct lm85_data *data = i2c_get_clientdata(client);
Jean Delvare1f448092008-04-29 14:03:37 +0200751 long val = simple_strtol(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700752
Darrick J. Wong79b92f22008-11-12 13:26:59 -0800753 if (IS_ADT7468_OFF64(data))
754 val += 64;
755
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100756 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700757 data->temp_max[nr] = TEMP_TO_REG(val);
758 lm85_write_value(client, LM85_REG_TEMP_MAX(nr), data->temp_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100759 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700760 return count;
761}
Jean Delvareb353a482007-07-05 20:36:12 +0200762
Linus Torvalds1da177e2005-04-16 15:20:36 -0700763#define show_temp_reg(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200764static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
765 show_temp, NULL, offset - 1); \
766static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
767 show_temp_min, set_temp_min, offset - 1); \
768static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
769 show_temp_max, set_temp_max, offset - 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700770
771show_temp_reg(1);
772show_temp_reg(2);
773show_temp_reg(3);
774
775
776/* Automatic PWM control */
777
Jean Delvareb353a482007-07-05 20:36:12 +0200778static ssize_t show_pwm_auto_channels(struct device *dev,
779 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700780{
Jean Delvareb353a482007-07-05 20:36:12 +0200781 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700782 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200783 return sprintf(buf, "%d\n", ZONE_FROM_REG(data->autofan[nr].config));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
Jean Delvareb353a482007-07-05 20:36:12 +0200785
786static ssize_t set_pwm_auto_channels(struct device *dev,
787 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788{
Jean Delvareb353a482007-07-05 20:36:12 +0200789 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700790 struct i2c_client *client = to_i2c_client(dev);
791 struct lm85_data *data = i2c_get_clientdata(client);
Jean Delvare1f448092008-04-29 14:03:37 +0200792 long val = simple_strtol(buf, NULL, 10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700793
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100794 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795 data->autofan[nr].config = (data->autofan[nr].config & (~0xe0))
Jean Delvare1f448092008-04-29 14:03:37 +0200796 | ZONE_TO_REG(val);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700797 lm85_write_value(client, LM85_REG_AFAN_CONFIG(nr),
798 data->autofan[nr].config);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100799 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700800 return count;
801}
Jean Delvareb353a482007-07-05 20:36:12 +0200802
803static ssize_t show_pwm_auto_pwm_min(struct device *dev,
804 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700805{
Jean Delvareb353a482007-07-05 20:36:12 +0200806 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700807 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200808 return sprintf(buf, "%d\n", PWM_FROM_REG(data->autofan[nr].min_pwm));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700809}
Jean Delvareb353a482007-07-05 20:36:12 +0200810
811static ssize_t set_pwm_auto_pwm_min(struct device *dev,
812 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700813{
Jean Delvareb353a482007-07-05 20:36:12 +0200814 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700815 struct i2c_client *client = to_i2c_client(dev);
816 struct lm85_data *data = i2c_get_clientdata(client);
817 long val = simple_strtol(buf, NULL, 10);
818
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100819 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 data->autofan[nr].min_pwm = PWM_TO_REG(val);
821 lm85_write_value(client, LM85_REG_AFAN_MINPWM(nr),
822 data->autofan[nr].min_pwm);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100823 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700824 return count;
825}
Jean Delvareb353a482007-07-05 20:36:12 +0200826
827static ssize_t show_pwm_auto_pwm_minctl(struct device *dev,
828 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700829{
Jean Delvareb353a482007-07-05 20:36:12 +0200830 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700831 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200832 return sprintf(buf, "%d\n", data->autofan[nr].min_off);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700833}
Jean Delvareb353a482007-07-05 20:36:12 +0200834
835static ssize_t set_pwm_auto_pwm_minctl(struct device *dev,
836 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837{
Jean Delvareb353a482007-07-05 20:36:12 +0200838 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700839 struct i2c_client *client = to_i2c_client(dev);
840 struct lm85_data *data = i2c_get_clientdata(client);
841 long val = simple_strtol(buf, NULL, 10);
Jean Delvare7133e562008-04-12 19:56:35 +0200842 u8 tmp;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700843
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100844 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 data->autofan[nr].min_off = val;
Jean Delvare7133e562008-04-12 19:56:35 +0200846 tmp = lm85_read_value(client, LM85_REG_AFAN_SPIKE1);
847 tmp &= ~(0x20 << nr);
848 if (data->autofan[nr].min_off)
849 tmp |= 0x20 << nr;
850 lm85_write_value(client, LM85_REG_AFAN_SPIKE1, tmp);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100851 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852 return count;
853}
Jean Delvareb353a482007-07-05 20:36:12 +0200854
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855#define pwm_auto(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200856static SENSOR_DEVICE_ATTR(pwm##offset##_auto_channels, \
857 S_IRUGO | S_IWUSR, show_pwm_auto_channels, \
858 set_pwm_auto_channels, offset - 1); \
859static SENSOR_DEVICE_ATTR(pwm##offset##_auto_pwm_min, \
860 S_IRUGO | S_IWUSR, show_pwm_auto_pwm_min, \
861 set_pwm_auto_pwm_min, offset - 1); \
862static SENSOR_DEVICE_ATTR(pwm##offset##_auto_pwm_minctl, \
863 S_IRUGO | S_IWUSR, show_pwm_auto_pwm_minctl, \
Jean Delvare34e7dc62008-10-17 17:51:13 +0200864 set_pwm_auto_pwm_minctl, offset - 1)
Jean Delvareb353a482007-07-05 20:36:12 +0200865
Linus Torvalds1da177e2005-04-16 15:20:36 -0700866pwm_auto(1);
867pwm_auto(2);
868pwm_auto(3);
869
870/* Temperature settings for automatic PWM control */
871
Jean Delvareb353a482007-07-05 20:36:12 +0200872static ssize_t show_temp_auto_temp_off(struct device *dev,
873 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Jean Delvareb353a482007-07-05 20:36:12 +0200875 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200877 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit) -
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878 HYST_FROM_REG(data->zone[nr].hyst));
879}
Jean Delvareb353a482007-07-05 20:36:12 +0200880
881static ssize_t set_temp_auto_temp_off(struct device *dev,
882 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883{
Jean Delvareb353a482007-07-05 20:36:12 +0200884 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700885 struct i2c_client *client = to_i2c_client(dev);
886 struct lm85_data *data = i2c_get_clientdata(client);
887 int min;
888 long val = simple_strtol(buf, NULL, 10);
889
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100890 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700891 min = TEMP_FROM_REG(data->zone[nr].limit);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700892 data->zone[nr].hyst = HYST_TO_REG(min - val);
Jean Delvare1f448092008-04-29 14:03:37 +0200893 if (nr == 0 || nr == 1) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 lm85_write_value(client, LM85_REG_AFAN_HYST1,
895 (data->zone[0].hyst << 4)
Jean Delvare1f448092008-04-29 14:03:37 +0200896 | data->zone[1].hyst);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897 } else {
898 lm85_write_value(client, LM85_REG_AFAN_HYST2,
Jean Delvare1f448092008-04-29 14:03:37 +0200899 (data->zone[2].hyst << 4));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700900 }
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100901 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700902 return count;
903}
Jean Delvareb353a482007-07-05 20:36:12 +0200904
905static ssize_t show_temp_auto_temp_min(struct device *dev,
906 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700907{
Jean Delvareb353a482007-07-05 20:36:12 +0200908 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200910 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700911}
Jean Delvareb353a482007-07-05 20:36:12 +0200912
913static ssize_t set_temp_auto_temp_min(struct device *dev,
914 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915{
Jean Delvareb353a482007-07-05 20:36:12 +0200916 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917 struct i2c_client *client = to_i2c_client(dev);
918 struct lm85_data *data = i2c_get_clientdata(client);
919 long val = simple_strtol(buf, NULL, 10);
920
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100921 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700922 data->zone[nr].limit = TEMP_TO_REG(val);
923 lm85_write_value(client, LM85_REG_AFAN_LIMIT(nr),
924 data->zone[nr].limit);
925
926/* Update temp_auto_max and temp_auto_range */
927 data->zone[nr].range = RANGE_TO_REG(
928 TEMP_FROM_REG(data->zone[nr].max_desired) -
929 TEMP_FROM_REG(data->zone[nr].limit));
930 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
931 ((data->zone[nr].range & 0x0f) << 4)
Jean Delvare34e7dc62008-10-17 17:51:13 +0200932 | (data->pwm_freq[nr] & 0x07));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100934 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 return count;
936}
Jean Delvareb353a482007-07-05 20:36:12 +0200937
938static ssize_t show_temp_auto_temp_max(struct device *dev,
939 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700940{
Jean Delvareb353a482007-07-05 20:36:12 +0200941 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200943 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].limit) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700944 RANGE_FROM_REG(data->zone[nr].range));
945}
Jean Delvareb353a482007-07-05 20:36:12 +0200946
947static ssize_t set_temp_auto_temp_max(struct device *dev,
948 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949{
Jean Delvareb353a482007-07-05 20:36:12 +0200950 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700951 struct i2c_client *client = to_i2c_client(dev);
952 struct lm85_data *data = i2c_get_clientdata(client);
953 int min;
954 long val = simple_strtol(buf, NULL, 10);
955
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100956 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957 min = TEMP_FROM_REG(data->zone[nr].limit);
958 data->zone[nr].max_desired = TEMP_TO_REG(val);
959 data->zone[nr].range = RANGE_TO_REG(
960 val - min);
961 lm85_write_value(client, LM85_REG_AFAN_RANGE(nr),
962 ((data->zone[nr].range & 0x0f) << 4)
Jean Delvare34e7dc62008-10-17 17:51:13 +0200963 | (data->pwm_freq[nr] & 0x07));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100964 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965 return count;
966}
Jean Delvareb353a482007-07-05 20:36:12 +0200967
968static ssize_t show_temp_auto_temp_crit(struct device *dev,
969 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970{
Jean Delvareb353a482007-07-05 20:36:12 +0200971 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 struct lm85_data *data = lm85_update_device(dev);
Jean Delvare1f448092008-04-29 14:03:37 +0200973 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->zone[nr].critical));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700974}
Jean Delvareb353a482007-07-05 20:36:12 +0200975
976static ssize_t set_temp_auto_temp_crit(struct device *dev,
Jean Delvare1f448092008-04-29 14:03:37 +0200977 struct device_attribute *attr, const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978{
Jean Delvareb353a482007-07-05 20:36:12 +0200979 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 struct i2c_client *client = to_i2c_client(dev);
981 struct lm85_data *data = i2c_get_clientdata(client);
982 long val = simple_strtol(buf, NULL, 10);
983
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100984 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985 data->zone[nr].critical = TEMP_TO_REG(val);
986 lm85_write_value(client, LM85_REG_AFAN_CRITICAL(nr),
987 data->zone[nr].critical);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100988 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700989 return count;
990}
Jean Delvareb353a482007-07-05 20:36:12 +0200991
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992#define temp_auto(offset) \
Jean Delvareb353a482007-07-05 20:36:12 +0200993static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_off, \
994 S_IRUGO | S_IWUSR, show_temp_auto_temp_off, \
995 set_temp_auto_temp_off, offset - 1); \
996static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_min, \
997 S_IRUGO | S_IWUSR, show_temp_auto_temp_min, \
998 set_temp_auto_temp_min, offset - 1); \
999static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_max, \
1000 S_IRUGO | S_IWUSR, show_temp_auto_temp_max, \
1001 set_temp_auto_temp_max, offset - 1); \
1002static SENSOR_DEVICE_ATTR(temp##offset##_auto_temp_crit, \
1003 S_IRUGO | S_IWUSR, show_temp_auto_temp_crit, \
1004 set_temp_auto_temp_crit, offset - 1);
1005
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006temp_auto(1);
1007temp_auto(2);
1008temp_auto(3);
1009
Mark M. Hoffman0501a3812006-09-24 21:14:35 +02001010static struct attribute *lm85_attributes[] = {
Jean Delvareb353a482007-07-05 20:36:12 +02001011 &sensor_dev_attr_fan1_input.dev_attr.attr,
1012 &sensor_dev_attr_fan2_input.dev_attr.attr,
1013 &sensor_dev_attr_fan3_input.dev_attr.attr,
1014 &sensor_dev_attr_fan4_input.dev_attr.attr,
1015 &sensor_dev_attr_fan1_min.dev_attr.attr,
1016 &sensor_dev_attr_fan2_min.dev_attr.attr,
1017 &sensor_dev_attr_fan3_min.dev_attr.attr,
1018 &sensor_dev_attr_fan4_min.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001019 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
1020 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
1021 &sensor_dev_attr_fan3_alarm.dev_attr.attr,
1022 &sensor_dev_attr_fan4_alarm.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001023
1024 &sensor_dev_attr_pwm1.dev_attr.attr,
1025 &sensor_dev_attr_pwm2.dev_attr.attr,
1026 &sensor_dev_attr_pwm3.dev_attr.attr,
1027 &sensor_dev_attr_pwm1_enable.dev_attr.attr,
1028 &sensor_dev_attr_pwm2_enable.dev_attr.attr,
1029 &sensor_dev_attr_pwm3_enable.dev_attr.attr,
Jean Delvare34e7dc62008-10-17 17:51:13 +02001030 &sensor_dev_attr_pwm1_freq.dev_attr.attr,
1031 &sensor_dev_attr_pwm2_freq.dev_attr.attr,
1032 &sensor_dev_attr_pwm3_freq.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001033
1034 &sensor_dev_attr_in0_input.dev_attr.attr,
1035 &sensor_dev_attr_in1_input.dev_attr.attr,
1036 &sensor_dev_attr_in2_input.dev_attr.attr,
1037 &sensor_dev_attr_in3_input.dev_attr.attr,
1038 &sensor_dev_attr_in0_min.dev_attr.attr,
1039 &sensor_dev_attr_in1_min.dev_attr.attr,
1040 &sensor_dev_attr_in2_min.dev_attr.attr,
1041 &sensor_dev_attr_in3_min.dev_attr.attr,
1042 &sensor_dev_attr_in0_max.dev_attr.attr,
1043 &sensor_dev_attr_in1_max.dev_attr.attr,
1044 &sensor_dev_attr_in2_max.dev_attr.attr,
1045 &sensor_dev_attr_in3_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001046 &sensor_dev_attr_in0_alarm.dev_attr.attr,
1047 &sensor_dev_attr_in1_alarm.dev_attr.attr,
1048 &sensor_dev_attr_in2_alarm.dev_attr.attr,
1049 &sensor_dev_attr_in3_alarm.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001050
1051 &sensor_dev_attr_temp1_input.dev_attr.attr,
1052 &sensor_dev_attr_temp2_input.dev_attr.attr,
1053 &sensor_dev_attr_temp3_input.dev_attr.attr,
1054 &sensor_dev_attr_temp1_min.dev_attr.attr,
1055 &sensor_dev_attr_temp2_min.dev_attr.attr,
1056 &sensor_dev_attr_temp3_min.dev_attr.attr,
1057 &sensor_dev_attr_temp1_max.dev_attr.attr,
1058 &sensor_dev_attr_temp2_max.dev_attr.attr,
1059 &sensor_dev_attr_temp3_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001060 &sensor_dev_attr_temp1_alarm.dev_attr.attr,
1061 &sensor_dev_attr_temp2_alarm.dev_attr.attr,
1062 &sensor_dev_attr_temp3_alarm.dev_attr.attr,
1063 &sensor_dev_attr_temp1_fault.dev_attr.attr,
1064 &sensor_dev_attr_temp3_fault.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001065
1066 &sensor_dev_attr_pwm1_auto_channels.dev_attr.attr,
1067 &sensor_dev_attr_pwm2_auto_channels.dev_attr.attr,
1068 &sensor_dev_attr_pwm3_auto_channels.dev_attr.attr,
1069 &sensor_dev_attr_pwm1_auto_pwm_min.dev_attr.attr,
1070 &sensor_dev_attr_pwm2_auto_pwm_min.dev_attr.attr,
1071 &sensor_dev_attr_pwm3_auto_pwm_min.dev_attr.attr,
Jean Delvareb353a482007-07-05 20:36:12 +02001072
Jean Delvareb353a482007-07-05 20:36:12 +02001073 &sensor_dev_attr_temp1_auto_temp_min.dev_attr.attr,
1074 &sensor_dev_attr_temp2_auto_temp_min.dev_attr.attr,
1075 &sensor_dev_attr_temp3_auto_temp_min.dev_attr.attr,
1076 &sensor_dev_attr_temp1_auto_temp_max.dev_attr.attr,
1077 &sensor_dev_attr_temp2_auto_temp_max.dev_attr.attr,
1078 &sensor_dev_attr_temp3_auto_temp_max.dev_attr.attr,
1079 &sensor_dev_attr_temp1_auto_temp_crit.dev_attr.attr,
1080 &sensor_dev_attr_temp2_auto_temp_crit.dev_attr.attr,
1081 &sensor_dev_attr_temp3_auto_temp_crit.dev_attr.attr,
1082
Mark M. Hoffman0501a3812006-09-24 21:14:35 +02001083 &dev_attr_vrm.attr,
1084 &dev_attr_cpu0_vid.attr,
1085 &dev_attr_alarms.attr,
Mark M. Hoffman0501a3812006-09-24 21:14:35 +02001086 NULL
1087};
1088
1089static const struct attribute_group lm85_group = {
1090 .attrs = lm85_attributes,
1091};
1092
Guenter Roeck06923f82011-02-19 08:27:47 -08001093static struct attribute *lm85_attributes_minctl[] = {
1094 &sensor_dev_attr_pwm1_auto_pwm_minctl.dev_attr.attr,
1095 &sensor_dev_attr_pwm2_auto_pwm_minctl.dev_attr.attr,
1096 &sensor_dev_attr_pwm3_auto_pwm_minctl.dev_attr.attr,
1097};
1098
1099static const struct attribute_group lm85_group_minctl = {
1100 .attrs = lm85_attributes_minctl,
1101};
1102
1103static struct attribute *lm85_attributes_temp_off[] = {
1104 &sensor_dev_attr_temp1_auto_temp_off.dev_attr.attr,
1105 &sensor_dev_attr_temp2_auto_temp_off.dev_attr.attr,
1106 &sensor_dev_attr_temp3_auto_temp_off.dev_attr.attr,
1107};
1108
1109static const struct attribute_group lm85_group_temp_off = {
1110 .attrs = lm85_attributes_temp_off,
1111};
1112
Jean Delvare6b9aad22007-07-05 20:37:21 +02001113static struct attribute *lm85_attributes_in4[] = {
Jean Delvareb353a482007-07-05 20:36:12 +02001114 &sensor_dev_attr_in4_input.dev_attr.attr,
1115 &sensor_dev_attr_in4_min.dev_attr.attr,
1116 &sensor_dev_attr_in4_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001117 &sensor_dev_attr_in4_alarm.dev_attr.attr,
Mark M. Hoffman0501a3812006-09-24 21:14:35 +02001118 NULL
1119};
1120
Jean Delvare6b9aad22007-07-05 20:37:21 +02001121static const struct attribute_group lm85_group_in4 = {
1122 .attrs = lm85_attributes_in4,
1123};
1124
1125static struct attribute *lm85_attributes_in567[] = {
1126 &sensor_dev_attr_in5_input.dev_attr.attr,
1127 &sensor_dev_attr_in6_input.dev_attr.attr,
1128 &sensor_dev_attr_in7_input.dev_attr.attr,
1129 &sensor_dev_attr_in5_min.dev_attr.attr,
1130 &sensor_dev_attr_in6_min.dev_attr.attr,
1131 &sensor_dev_attr_in7_min.dev_attr.attr,
1132 &sensor_dev_attr_in5_max.dev_attr.attr,
1133 &sensor_dev_attr_in6_max.dev_attr.attr,
1134 &sensor_dev_attr_in7_max.dev_attr.attr,
Jean Delvarebf76e9d2007-07-05 20:37:58 +02001135 &sensor_dev_attr_in5_alarm.dev_attr.attr,
1136 &sensor_dev_attr_in6_alarm.dev_attr.attr,
1137 &sensor_dev_attr_in7_alarm.dev_attr.attr,
Jean Delvare6b9aad22007-07-05 20:37:21 +02001138 NULL
1139};
1140
1141static const struct attribute_group lm85_group_in567 = {
1142 .attrs = lm85_attributes_in567,
Mark M. Hoffman0501a3812006-09-24 21:14:35 +02001143};
1144
Jean Delvare5f44759472008-06-25 09:10:30 -04001145static void lm85_init_client(struct i2c_client *client)
1146{
1147 int value;
1148
1149 /* Start monitoring if needed */
1150 value = lm85_read_value(client, LM85_REG_CONFIG);
1151 if (!(value & 0x01)) {
1152 dev_info(&client->dev, "Starting monitoring\n");
1153 lm85_write_value(client, LM85_REG_CONFIG, value | 0x01);
1154 }
1155
1156 /* Warn about unusual configuration bits */
1157 if (value & 0x02)
1158 dev_warn(&client->dev, "Device configuration is locked\n");
1159 if (!(value & 0x04))
1160 dev_warn(&client->dev, "Device is not ready\n");
1161}
1162
Jean Delvare5cfaf332009-09-15 17:18:14 +02001163static int lm85_is_fake(struct i2c_client *client)
1164{
1165 /*
1166 * Differenciate between real LM96000 and Winbond WPCD377I. The latter
1167 * emulate the former except that it has no hardware monitoring function
1168 * so the readings are always 0.
1169 */
1170 int i;
1171 u8 in_temp, fan;
1172
1173 for (i = 0; i < 8; i++) {
1174 in_temp = i2c_smbus_read_byte_data(client, 0x20 + i);
1175 fan = i2c_smbus_read_byte_data(client, 0x28 + i);
1176 if (in_temp != 0x00 || fan != 0xff)
1177 return 0;
1178 }
1179
1180 return 1;
1181}
1182
Jean Delvare67712d02008-10-17 17:51:14 +02001183/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare310ec792009-12-14 21:17:23 +01001184static int lm85_detect(struct i2c_client *client, struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001185{
Jean Delvare67712d02008-10-17 17:51:14 +02001186 struct i2c_adapter *adapter = client->adapter;
1187 int address = client->addr;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001188 const char *type_name;
Jean Delvared42a2eb2009-12-09 20:35:53 +01001189 int company, verstep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190
Jean Delvaree89e22b2008-06-25 08:47:35 -04001191 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192 /* We need to be able to do byte I/O */
Jean Delvare67712d02008-10-17 17:51:14 +02001193 return -ENODEV;
Jean Delvare1f448092008-04-29 14:03:37 +02001194 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001195
Jean Delvared42a2eb2009-12-09 20:35:53 +01001196 /* Determine the chip type */
1197 company = lm85_read_value(client, LM85_REG_COMPANY);
1198 verstep = lm85_read_value(client, LM85_REG_VERSTEP);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001199
Jean Delvared42a2eb2009-12-09 20:35:53 +01001200 dev_dbg(&adapter->dev, "Detecting device at 0x%02x with "
1201 "COMPANY: 0x%02x and VERSTEP: 0x%02x\n",
1202 address, company, verstep);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203
Jean Delvared42a2eb2009-12-09 20:35:53 +01001204 /* All supported chips have the version in common */
1205 if ((verstep & LM85_VERSTEP_VMASK) != LM85_VERSTEP_GENERIC &&
1206 (verstep & LM85_VERSTEP_VMASK) != LM85_VERSTEP_GENERIC2) {
1207 dev_dbg(&adapter->dev,
1208 "Autodetection failed: unsupported version\n");
1209 return -ENODEV;
1210 }
1211 type_name = "lm85";
1212
1213 /* Now, refine the detection */
1214 if (company == LM85_COMPANY_NATIONAL) {
1215 switch (verstep) {
1216 case LM85_VERSTEP_LM85C:
1217 type_name = "lm85c";
1218 break;
1219 case LM85_VERSTEP_LM85B:
1220 type_name = "lm85b";
1221 break;
1222 case LM85_VERSTEP_LM96000_1:
1223 case LM85_VERSTEP_LM96000_2:
1224 /* Check for Winbond WPCD377I */
1225 if (lm85_is_fake(client)) {
1226 dev_dbg(&adapter->dev,
1227 "Found Winbond WPCD377I, ignoring\n");
1228 return -ENODEV;
1229 }
1230 break;
Jean Delvare69fc1fe2008-10-17 17:51:13 +02001231 }
Jean Delvared42a2eb2009-12-09 20:35:53 +01001232 } else if (company == LM85_COMPANY_ANALOG_DEV) {
1233 switch (verstep) {
1234 case LM85_VERSTEP_ADM1027:
1235 type_name = "adm1027";
1236 break;
1237 case LM85_VERSTEP_ADT7463:
1238 case LM85_VERSTEP_ADT7463C:
1239 type_name = "adt7463";
1240 break;
1241 case LM85_VERSTEP_ADT7468_1:
1242 case LM85_VERSTEP_ADT7468_2:
1243 type_name = "adt7468";
1244 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 }
Jean Delvared42a2eb2009-12-09 20:35:53 +01001246 } else if (company == LM85_COMPANY_SMSC) {
1247 switch (verstep) {
1248 case LM85_VERSTEP_EMC6D100_A0:
1249 case LM85_VERSTEP_EMC6D100_A1:
1250 /* Note: we can't tell a '100 from a '101 */
1251 type_name = "emc6d100";
1252 break;
1253 case LM85_VERSTEP_EMC6D102:
1254 type_name = "emc6d102";
1255 break;
Jan Beulichf065a932011-02-18 03:18:26 -05001256 case LM85_VERSTEP_EMC6D103_A0:
1257 case LM85_VERSTEP_EMC6D103_A1:
1258 type_name = "emc6d103";
1259 break;
Jan Beulichf065a932011-02-18 03:18:26 -05001260 case LM85_VERSTEP_EMC6D103S:
1261 type_name = "emc6d103s";
1262 break;
Jean Delvared42a2eb2009-12-09 20:35:53 +01001263 }
1264 } else {
1265 dev_dbg(&adapter->dev,
1266 "Autodetection failed: unknown vendor\n");
1267 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001268 }
1269
Jean Delvare67712d02008-10-17 17:51:14 +02001270 strlcpy(info->type, type_name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001271
Jean Delvare67712d02008-10-17 17:51:14 +02001272 return 0;
1273}
1274
Guenter Roeckbc6db2b2011-02-25 08:26:47 -08001275static void lm85_remove_files(struct i2c_client *client, struct lm85_data *data)
1276{
1277 sysfs_remove_group(&client->dev.kobj, &lm85_group);
Guenter Roeck06923f82011-02-19 08:27:47 -08001278 if (data->type != emc6d103s) {
1279 sysfs_remove_group(&client->dev.kobj, &lm85_group_minctl);
1280 sysfs_remove_group(&client->dev.kobj, &lm85_group_temp_off);
1281 }
Guenter Roeckbc6db2b2011-02-25 08:26:47 -08001282 if (!data->has_vid5)
1283 sysfs_remove_group(&client->dev.kobj, &lm85_group_in4);
1284 if (data->type == emc6d100)
1285 sysfs_remove_group(&client->dev.kobj, &lm85_group_in567);
1286}
1287
Jean Delvare67712d02008-10-17 17:51:14 +02001288static int lm85_probe(struct i2c_client *client,
1289 const struct i2c_device_id *id)
1290{
1291 struct lm85_data *data;
1292 int err;
1293
1294 data = kzalloc(sizeof(struct lm85_data), GFP_KERNEL);
1295 if (!data)
1296 return -ENOMEM;
1297
1298 i2c_set_clientdata(client, data);
1299 data->type = id->driver_data;
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001300 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001301
Jean Delvare67712d02008-10-17 17:51:14 +02001302 /* Fill in the chip specific driver values */
1303 switch (data->type) {
1304 case adm1027:
1305 case adt7463:
Jean Delvarefa7a5792010-10-28 20:31:50 +02001306 case adt7468:
Jean Delvare67712d02008-10-17 17:51:14 +02001307 case emc6d100:
1308 case emc6d102:
Jan Beulichf065a932011-02-18 03:18:26 -05001309 case emc6d103:
Guenter Roeck06923f82011-02-19 08:27:47 -08001310 case emc6d103s:
Jean Delvare67712d02008-10-17 17:51:14 +02001311 data->freq_map = adm1027_freq_map;
1312 break;
1313 default:
1314 data->freq_map = lm85_freq_map;
1315 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316
1317 /* Set the VRM version */
Jean Delvare303760b2005-07-31 21:52:01 +02001318 data->vrm = vid_which_vrm();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001319
1320 /* Initialize the LM85 chip */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001321 lm85_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001322
1323 /* Register sysfs hooks */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001324 err = sysfs_create_group(&client->dev.kobj, &lm85_group);
1325 if (err)
Jean Delvaref9080372008-10-17 17:51:14 +02001326 goto err_kfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001327
Guenter Roeck06923f82011-02-19 08:27:47 -08001328 /* minctl and temp_off exist on all chips except emc6d103s */
1329 if (data->type != emc6d103s) {
1330 err = sysfs_create_group(&client->dev.kobj, &lm85_group_minctl);
1331 if (err)
1332 goto err_kfree;
1333 err = sysfs_create_group(&client->dev.kobj,
1334 &lm85_group_temp_off);
1335 if (err)
1336 goto err_kfree;
1337 }
1338
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001339 /* The ADT7463/68 have an optional VRM 10 mode where pin 21 is used
Jean Delvare9c516ef2005-11-26 20:07:54 +01001340 as a sixth digital VID input rather than an analog input. */
Guenter Roeckde248802011-02-25 08:19:42 -08001341 if (data->type == adt7463 || data->type == adt7468) {
1342 u8 vid = lm85_read_value(client, LM85_REG_VID);
1343 if (vid & 0x80)
1344 data->has_vid5 = true;
1345 }
1346
1347 if (!data->has_vid5)
Jean Delvaree89e22b2008-06-25 08:47:35 -04001348 if ((err = sysfs_create_group(&client->dev.kobj,
Jean Delvare6b9aad22007-07-05 20:37:21 +02001349 &lm85_group_in4)))
Jean Delvaref9080372008-10-17 17:51:14 +02001350 goto err_remove_files;
Jean Delvare6b9aad22007-07-05 20:37:21 +02001351
1352 /* The EMC6D100 has 3 additional voltage inputs */
Jean Delvare67712d02008-10-17 17:51:14 +02001353 if (data->type == emc6d100)
Jean Delvaree89e22b2008-06-25 08:47:35 -04001354 if ((err = sysfs_create_group(&client->dev.kobj,
Jean Delvare6b9aad22007-07-05 20:37:21 +02001355 &lm85_group_in567)))
Jean Delvaref9080372008-10-17 17:51:14 +02001356 goto err_remove_files;
Mark M. Hoffman0501a3812006-09-24 21:14:35 +02001357
Jean Delvaree89e22b2008-06-25 08:47:35 -04001358 data->hwmon_dev = hwmon_device_register(&client->dev);
Tony Jones1beeffe2007-08-20 13:46:20 -07001359 if (IS_ERR(data->hwmon_dev)) {
1360 err = PTR_ERR(data->hwmon_dev);
Jean Delvaref9080372008-10-17 17:51:14 +02001361 goto err_remove_files;
Jean Delvare9c516ef2005-11-26 20:07:54 +01001362 }
1363
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 return 0;
1365
1366 /* Error out and cleanup code */
Jean Delvaref9080372008-10-17 17:51:14 +02001367 err_remove_files:
Guenter Roeckbc6db2b2011-02-25 08:26:47 -08001368 lm85_remove_files(client, data);
Jean Delvaref9080372008-10-17 17:51:14 +02001369 err_kfree:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001371 return err;
1372}
1373
Jean Delvare67712d02008-10-17 17:51:14 +02001374static int lm85_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375{
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001376 struct lm85_data *data = i2c_get_clientdata(client);
Tony Jones1beeffe2007-08-20 13:46:20 -07001377 hwmon_device_unregister(data->hwmon_dev);
Guenter Roeckbc6db2b2011-02-25 08:26:47 -08001378 lm85_remove_files(client, data);
Mark M. Hoffman943b0832005-07-15 21:39:18 -04001379 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001380 return 0;
1381}
1382
1383
Ben Dooksd8d20612005-10-26 21:05:46 +02001384static int lm85_read_value(struct i2c_client *client, u8 reg)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001385{
1386 int res;
1387
1388 /* What size location is it? */
Jean Delvare1f448092008-04-29 14:03:37 +02001389 switch (reg) {
1390 case LM85_REG_FAN(0): /* Read WORD data */
1391 case LM85_REG_FAN(1):
1392 case LM85_REG_FAN(2):
1393 case LM85_REG_FAN(3):
1394 case LM85_REG_FAN_MIN(0):
1395 case LM85_REG_FAN_MIN(1):
1396 case LM85_REG_FAN_MIN(2):
1397 case LM85_REG_FAN_MIN(3):
1398 case LM85_REG_ALARM1: /* Read both bytes at once */
1399 res = i2c_smbus_read_byte_data(client, reg) & 0xff;
1400 res |= i2c_smbus_read_byte_data(client, reg + 1) << 8;
1401 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001402 default: /* Read BYTE data */
1403 res = i2c_smbus_read_byte_data(client, reg);
Jean Delvare1f448092008-04-29 14:03:37 +02001404 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001405 }
1406
Jean Delvare1f448092008-04-29 14:03:37 +02001407 return res;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408}
1409
Jean Delvaree89e22b2008-06-25 08:47:35 -04001410static void lm85_write_value(struct i2c_client *client, u8 reg, int value)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001411{
Jean Delvare1f448092008-04-29 14:03:37 +02001412 switch (reg) {
1413 case LM85_REG_FAN(0): /* Write WORD data */
1414 case LM85_REG_FAN(1):
1415 case LM85_REG_FAN(2):
1416 case LM85_REG_FAN(3):
1417 case LM85_REG_FAN_MIN(0):
1418 case LM85_REG_FAN_MIN(1):
1419 case LM85_REG_FAN_MIN(2):
1420 case LM85_REG_FAN_MIN(3):
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 /* NOTE: ALARM is read only, so not included here */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001422 i2c_smbus_write_byte_data(client, reg, value & 0xff);
1423 i2c_smbus_write_byte_data(client, reg + 1, value >> 8);
Jean Delvare1f448092008-04-29 14:03:37 +02001424 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001425 default: /* Write BYTE data */
Jean Delvaree89e22b2008-06-25 08:47:35 -04001426 i2c_smbus_write_byte_data(client, reg, value);
Jean Delvare1f448092008-04-29 14:03:37 +02001427 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001428 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429}
1430
Linus Torvalds1da177e2005-04-16 15:20:36 -07001431static struct lm85_data *lm85_update_device(struct device *dev)
1432{
1433 struct i2c_client *client = to_i2c_client(dev);
1434 struct lm85_data *data = i2c_get_clientdata(client);
1435 int i;
1436
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001437 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001438
Jean Delvare1f448092008-04-29 14:03:37 +02001439 if (!data->valid ||
1440 time_after(jiffies, data->last_reading + LM85_DATA_INTERVAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001441 /* Things that change quickly */
1442 dev_dbg(&client->dev, "Reading sensor values\n");
Jean Delvare1f448092008-04-29 14:03:37 +02001443
Linus Torvalds1da177e2005-04-16 15:20:36 -07001444 /* Have to read extended bits first to "freeze" the
1445 * more significant bits that are read later.
Jean Delvare5a4d3ef2007-07-05 20:38:32 +02001446 * There are 2 additional resolution bits per channel and we
1447 * have room for 4, so we shift them to the left.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001448 */
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001449 if (data->type == adm1027 || data->type == adt7463 ||
1450 data->type == adt7468) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001451 int ext1 = lm85_read_value(client,
1452 ADM1027_REG_EXTEND_ADC1);
1453 int ext2 = lm85_read_value(client,
1454 ADM1027_REG_EXTEND_ADC2);
1455 int val = (ext1 << 8) + ext2;
1456
Jean Delvare1f448092008-04-29 14:03:37 +02001457 for (i = 0; i <= 4; i++)
1458 data->in_ext[i] =
1459 ((val >> (i * 2)) & 0x03) << 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001460
Jean Delvare1f448092008-04-29 14:03:37 +02001461 for (i = 0; i <= 2; i++)
1462 data->temp_ext[i] =
1463 (val >> ((i + 4) * 2)) & 0x0c;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001464 }
1465
Jean Delvare9c516ef2005-11-26 20:07:54 +01001466 data->vid = lm85_read_value(client, LM85_REG_VID);
1467
1468 for (i = 0; i <= 3; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001469 data->in[i] =
1470 lm85_read_value(client, LM85_REG_IN(i));
Jean Delvaree89e22b2008-06-25 08:47:35 -04001471 data->fan[i] =
1472 lm85_read_value(client, LM85_REG_FAN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
1474
Guenter Roeckde248802011-02-25 08:19:42 -08001475 if (!data->has_vid5)
1476 data->in[4] = lm85_read_value(client, LM85_REG_IN(4));
Jean Delvare9c516ef2005-11-26 20:07:54 +01001477
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001478 if (data->type == adt7468)
1479 data->cfg5 = lm85_read_value(client, ADT7468_REG_CFG5);
1480
Linus Torvalds1da177e2005-04-16 15:20:36 -07001481 for (i = 0; i <= 2; ++i) {
1482 data->temp[i] =
1483 lm85_read_value(client, LM85_REG_TEMP(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001484 data->pwm[i] =
1485 lm85_read_value(client, LM85_REG_PWM(i));
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001486
1487 if (IS_ADT7468_OFF64(data))
1488 data->temp[i] -= 64;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001489 }
1490
1491 data->alarms = lm85_read_value(client, LM85_REG_ALARM1);
1492
Jean Delvaredd1ac532008-05-01 08:47:33 +02001493 if (data->type == emc6d100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001494 /* Three more voltage sensors */
1495 for (i = 5; i <= 7; ++i) {
Jean Delvare1f448092008-04-29 14:03:37 +02001496 data->in[i] = lm85_read_value(client,
1497 EMC6D100_REG_IN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001498 }
1499 /* More alarm bits */
Jean Delvare1f448092008-04-29 14:03:37 +02001500 data->alarms |= lm85_read_value(client,
1501 EMC6D100_REG_ALARM3) << 16;
Guenter Roeck06923f82011-02-19 08:27:47 -08001502 } else if (data->type == emc6d102 || data->type == emc6d103 ||
1503 data->type == emc6d103s) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 /* Have to read LSB bits after the MSB ones because
1505 the reading of the MSB bits has frozen the
1506 LSBs (backward from the ADM1027).
1507 */
1508 int ext1 = lm85_read_value(client,
1509 EMC6D102_REG_EXTEND_ADC1);
1510 int ext2 = lm85_read_value(client,
1511 EMC6D102_REG_EXTEND_ADC2);
1512 int ext3 = lm85_read_value(client,
1513 EMC6D102_REG_EXTEND_ADC3);
1514 int ext4 = lm85_read_value(client,
1515 EMC6D102_REG_EXTEND_ADC4);
1516 data->in_ext[0] = ext3 & 0x0f;
1517 data->in_ext[1] = ext4 & 0x0f;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001518 data->in_ext[2] = ext4 >> 4;
1519 data->in_ext[3] = ext3 >> 4;
1520 data->in_ext[4] = ext2 >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001521
1522 data->temp_ext[0] = ext1 & 0x0f;
1523 data->temp_ext[1] = ext2 & 0x0f;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001524 data->temp_ext[2] = ext1 >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525 }
1526
Jean Delvare1f448092008-04-29 14:03:37 +02001527 data->last_reading = jiffies;
1528 } /* last_reading */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529
Jean Delvare1f448092008-04-29 14:03:37 +02001530 if (!data->valid ||
1531 time_after(jiffies, data->last_config + LM85_CONFIG_INTERVAL)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 /* Things that don't change often */
1533 dev_dbg(&client->dev, "Reading config values\n");
1534
Jean Delvare9c516ef2005-11-26 20:07:54 +01001535 for (i = 0; i <= 3; ++i) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001536 data->in_min[i] =
1537 lm85_read_value(client, LM85_REG_IN_MIN(i));
1538 data->in_max[i] =
1539 lm85_read_value(client, LM85_REG_IN_MAX(i));
Jean Delvaree89e22b2008-06-25 08:47:35 -04001540 data->fan_min[i] =
1541 lm85_read_value(client, LM85_REG_FAN_MIN(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 }
1543
Guenter Roeckde248802011-02-25 08:19:42 -08001544 if (!data->has_vid5) {
Jean Delvare9c516ef2005-11-26 20:07:54 +01001545 data->in_min[4] = lm85_read_value(client,
1546 LM85_REG_IN_MIN(4));
1547 data->in_max[4] = lm85_read_value(client,
1548 LM85_REG_IN_MAX(4));
1549 }
1550
Jean Delvare1f448092008-04-29 14:03:37 +02001551 if (data->type == emc6d100) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552 for (i = 5; i <= 7; ++i) {
Jean Delvare1f448092008-04-29 14:03:37 +02001553 data->in_min[i] = lm85_read_value(client,
1554 EMC6D100_REG_IN_MIN(i));
1555 data->in_max[i] = lm85_read_value(client,
1556 EMC6D100_REG_IN_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001557 }
1558 }
1559
Linus Torvalds1da177e2005-04-16 15:20:36 -07001560 for (i = 0; i <= 2; ++i) {
Jean Delvaree89e22b2008-06-25 08:47:35 -04001561 int val;
1562
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 data->temp_min[i] =
1564 lm85_read_value(client, LM85_REG_TEMP_MIN(i));
1565 data->temp_max[i] =
1566 lm85_read_value(client, LM85_REG_TEMP_MAX(i));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001567
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568 data->autofan[i].config =
1569 lm85_read_value(client, LM85_REG_AFAN_CONFIG(i));
1570 val = lm85_read_value(client, LM85_REG_AFAN_RANGE(i));
Jean Delvare34e7dc62008-10-17 17:51:13 +02001571 data->pwm_freq[i] = val & 0x07;
Jean Delvaree89e22b2008-06-25 08:47:35 -04001572 data->zone[i].range = val >> 4;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 data->autofan[i].min_pwm =
1574 lm85_read_value(client, LM85_REG_AFAN_MINPWM(i));
1575 data->zone[i].limit =
1576 lm85_read_value(client, LM85_REG_AFAN_LIMIT(i));
1577 data->zone[i].critical =
1578 lm85_read_value(client, LM85_REG_AFAN_CRITICAL(i));
Darrick J. Wong79b92f22008-11-12 13:26:59 -08001579
1580 if (IS_ADT7468_OFF64(data)) {
1581 data->temp_min[i] -= 64;
1582 data->temp_max[i] -= 64;
1583 data->zone[i].limit -= 64;
1584 data->zone[i].critical -= 64;
1585 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001586 }
1587
Guenter Roeck06923f82011-02-19 08:27:47 -08001588 if (data->type != emc6d103s) {
1589 i = lm85_read_value(client, LM85_REG_AFAN_SPIKE1);
1590 data->autofan[0].min_off = (i & 0x20) != 0;
1591 data->autofan[1].min_off = (i & 0x40) != 0;
1592 data->autofan[2].min_off = (i & 0x80) != 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Guenter Roeck06923f82011-02-19 08:27:47 -08001594 i = lm85_read_value(client, LM85_REG_AFAN_HYST1);
1595 data->zone[0].hyst = i >> 4;
1596 data->zone[1].hyst = i & 0x0f;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597
Guenter Roeck06923f82011-02-19 08:27:47 -08001598 i = lm85_read_value(client, LM85_REG_AFAN_HYST2);
1599 data->zone[2].hyst = i >> 4;
1600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001601
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 data->last_config = jiffies;
Jean Delvare1f448092008-04-29 14:03:37 +02001603 } /* last_config */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001604
1605 data->valid = 1;
1606
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001607 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608
1609 return data;
1610}
1611
1612
1613static int __init sm_lm85_init(void)
1614{
1615 return i2c_add_driver(&lm85_driver);
1616}
1617
Jean Delvare1f448092008-04-29 14:03:37 +02001618static void __exit sm_lm85_exit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001619{
1620 i2c_del_driver(&lm85_driver);
1621}
1622
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623MODULE_LICENSE("GPL");
Jean Delvare1f448092008-04-29 14:03:37 +02001624MODULE_AUTHOR("Philip Pokorny <ppokorny@penguincomputing.com>, "
1625 "Margit Schubert-While <margitsw@t-online.de>, "
Jean Delvaree89e22b2008-06-25 08:47:35 -04001626 "Justin Thiessen <jthiessen@penguincomputing.com>");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627MODULE_DESCRIPTION("LM85-B, LM85-C driver");
1628
1629module_init(sm_lm85_init);
1630module_exit(sm_lm85_exit);