blob: 15c1a9616af33ba13ae8a79823cb7d30729c42fe [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 adm1031.c - Part of lm_sensors, Linux kernel modules for hardware
3 monitoring
4 Based on lm75.c and lm85.c
5 Supports adm1030 / adm1031
6 Copyright (C) 2004 Alexandre d'Alton <alex@alexdalton.org>
7 Reworked by Jean Delvare <khali@linux-fr.org>
Jean Delvare6d6006b2007-12-02 23:33:57 +01008
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
13
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
18
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
22*/
23
24#include <linux/module.h>
25#include <linux/init.h>
26#include <linux/slab.h>
27#include <linux/jiffies.h>
28#include <linux/i2c.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040029#include <linux/hwmon.h>
Jean Delvarec8010822007-12-02 23:39:38 +010030#include <linux/hwmon-sysfs.h>
Mark M. Hoffman943b0832005-07-15 21:39:18 -040031#include <linux/err.h>
Ingo Molnar9a61bf62006-01-18 23:19:26 +010032#include <linux/mutex.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070033
34/* Following macros takes channel parameter starting from 0 to 2 */
35#define ADM1031_REG_FAN_SPEED(nr) (0x08 + (nr))
Jean Delvare6d6006b2007-12-02 23:33:57 +010036#define ADM1031_REG_FAN_DIV(nr) (0x20 + (nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070037#define ADM1031_REG_PWM (0x22)
38#define ADM1031_REG_FAN_MIN(nr) (0x10 + (nr))
Jean Delvare87c33da2010-05-27 19:58:46 +020039#define ADM1031_REG_FAN_FILTER (0x23)
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Ira Snyder49dc9ef2009-09-23 22:59:41 +020041#define ADM1031_REG_TEMP_OFFSET(nr) (0x0d + (nr))
Jean Delvare6d6006b2007-12-02 23:33:57 +010042#define ADM1031_REG_TEMP_MAX(nr) (0x14 + 4 * (nr))
43#define ADM1031_REG_TEMP_MIN(nr) (0x15 + 4 * (nr))
44#define ADM1031_REG_TEMP_CRIT(nr) (0x16 + 4 * (nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Jean Delvare6d6006b2007-12-02 23:33:57 +010046#define ADM1031_REG_TEMP(nr) (0x0a + (nr))
Linus Torvalds1da177e2005-04-16 15:20:36 -070047#define ADM1031_REG_AUTO_TEMP(nr) (0x24 + (nr))
48
49#define ADM1031_REG_STATUS(nr) (0x2 + (nr))
50
Jean Delvare6d6006b2007-12-02 23:33:57 +010051#define ADM1031_REG_CONF1 0x00
52#define ADM1031_REG_CONF2 0x01
53#define ADM1031_REG_EXT_TEMP 0x06
Linus Torvalds1da177e2005-04-16 15:20:36 -070054
55#define ADM1031_CONF1_MONITOR_ENABLE 0x01 /* Monitoring enable */
56#define ADM1031_CONF1_PWM_INVERT 0x08 /* PWM Invert */
57#define ADM1031_CONF1_AUTO_MODE 0x80 /* Auto FAN */
58
59#define ADM1031_CONF2_PWM1_ENABLE 0x01
60#define ADM1031_CONF2_PWM2_ENABLE 0x02
61#define ADM1031_CONF2_TACH1_ENABLE 0x04
62#define ADM1031_CONF2_TACH2_ENABLE 0x08
63#define ADM1031_CONF2_TEMP_ENABLE(chan) (0x10 << (chan))
64
Jean Delvare87c33da2010-05-27 19:58:46 +020065#define ADM1031_UPDATE_RATE_MASK 0x1c
66#define ADM1031_UPDATE_RATE_SHIFT 2
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/* Addresses to scan */
Mark M. Hoffman25e9c862008-02-17 22:28:03 -050069static const unsigned short normal_i2c[] = { 0x2c, 0x2d, 0x2e, I2C_CLIENT_END };
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
Jean Delvaree5e9f442009-12-14 21:17:27 +010071enum chips { adm1030, adm1031 };
Linus Torvalds1da177e2005-04-16 15:20:36 -070072
73typedef u8 auto_chan_table_t[8][2];
74
75/* Each client has this additional data */
76struct adm1031_data {
Tony Jones1beeffe2007-08-20 13:46:20 -070077 struct device *hwmon_dev;
Ingo Molnar9a61bf62006-01-18 23:19:26 +010078 struct mutex update_lock;
Linus Torvalds1da177e2005-04-16 15:20:36 -070079 int chip_type;
80 char valid; /* !=0 if following fields are valid */
81 unsigned long last_updated; /* In jiffies */
Jean Delvare87c33da2010-05-27 19:58:46 +020082 unsigned int update_rate; /* In milliseconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -070083 /* The chan_select_table contains the possible configurations for
84 * auto fan control.
85 */
Jean Delvare6d6006b2007-12-02 23:33:57 +010086 const auto_chan_table_t *chan_select_table;
Linus Torvalds1da177e2005-04-16 15:20:36 -070087 u16 alarm;
88 u8 conf1;
89 u8 conf2;
90 u8 fan[2];
91 u8 fan_div[2];
92 u8 fan_min[2];
93 u8 pwm[2];
94 u8 old_pwm[2];
95 s8 temp[3];
96 u8 ext_temp[3];
97 u8 auto_temp[3];
98 u8 auto_temp_min[3];
99 u8 auto_temp_off[3];
100 u8 auto_temp_max[3];
Ira Snyder49dc9ef2009-09-23 22:59:41 +0200101 s8 temp_offset[3];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 s8 temp_min[3];
103 s8 temp_max[3];
104 s8 temp_crit[3];
105};
106
Jean Delvareaf200f82008-07-16 19:30:09 +0200107static int adm1031_probe(struct i2c_client *client,
108 const struct i2c_device_id *id);
Jean Delvare310ec792009-12-14 21:17:23 +0100109static int adm1031_detect(struct i2c_client *client,
Jean Delvareaf200f82008-07-16 19:30:09 +0200110 struct i2c_board_info *info);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111static void adm1031_init_client(struct i2c_client *client);
Jean Delvareaf200f82008-07-16 19:30:09 +0200112static int adm1031_remove(struct i2c_client *client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113static struct adm1031_data *adm1031_update_device(struct device *dev);
114
Jean Delvareaf200f82008-07-16 19:30:09 +0200115static const struct i2c_device_id adm1031_id[] = {
116 { "adm1030", adm1030 },
117 { "adm1031", adm1031 },
118 { }
119};
120MODULE_DEVICE_TABLE(i2c, adm1031_id);
121
Linus Torvalds1da177e2005-04-16 15:20:36 -0700122/* This is the driver that will be inserted */
123static struct i2c_driver adm1031_driver = {
Jean Delvareaf200f82008-07-16 19:30:09 +0200124 .class = I2C_CLASS_HWMON,
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100125 .driver = {
Laurent Riffardcdaf7932005-11-26 20:37:41 +0100126 .name = "adm1031",
127 },
Jean Delvareaf200f82008-07-16 19:30:09 +0200128 .probe = adm1031_probe,
129 .remove = adm1031_remove,
130 .id_table = adm1031_id,
131 .detect = adm1031_detect,
Jean Delvarec3813d62009-12-14 21:17:25 +0100132 .address_list = normal_i2c,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133};
134
135static inline u8 adm1031_read_value(struct i2c_client *client, u8 reg)
136{
137 return i2c_smbus_read_byte_data(client, reg);
138}
139
140static inline int
141adm1031_write_value(struct i2c_client *client, u8 reg, unsigned int value)
142{
143 return i2c_smbus_write_byte_data(client, reg, value);
144}
145
146
147#define TEMP_TO_REG(val) (((val) < 0 ? ((val - 500) / 1000) : \
148 ((val + 500) / 1000)))
149
150#define TEMP_FROM_REG(val) ((val) * 1000)
151
152#define TEMP_FROM_REG_EXT(val, ext) (TEMP_FROM_REG(val) + (ext) * 125)
153
Ira Snyder49dc9ef2009-09-23 22:59:41 +0200154#define TEMP_OFFSET_TO_REG(val) (TEMP_TO_REG(val) & 0x8f)
155#define TEMP_OFFSET_FROM_REG(val) TEMP_FROM_REG((val) < 0 ? \
156 (val) | 0x70 : (val))
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158#define FAN_FROM_REG(reg, div) ((reg) ? (11250 * 60) / ((reg) * (div)) : 0)
159
160static int FAN_TO_REG(int reg, int div)
161{
162 int tmp;
163 tmp = FAN_FROM_REG(SENSORS_LIMIT(reg, 0, 65535), div);
164 return tmp > 255 ? 255 : tmp;
165}
166
167#define FAN_DIV_FROM_REG(reg) (1<<(((reg)&0xc0)>>6))
168
169#define PWM_TO_REG(val) (SENSORS_LIMIT((val), 0, 255) >> 4)
170#define PWM_FROM_REG(val) ((val) << 4)
171
172#define FAN_CHAN_FROM_REG(reg) (((reg) >> 5) & 7)
173#define FAN_CHAN_TO_REG(val, reg) \
174 (((reg) & 0x1F) | (((val) << 5) & 0xe0))
175
176#define AUTO_TEMP_MIN_TO_REG(val, reg) \
177 ((((val)/500) & 0xf8)|((reg) & 0x7))
178#define AUTO_TEMP_RANGE_FROM_REG(reg) (5000 * (1<< ((reg)&0x7)))
179#define AUTO_TEMP_MIN_FROM_REG(reg) (1000 * ((((reg) >> 3) & 0x1f) << 2))
180
181#define AUTO_TEMP_MIN_FROM_REG_DEG(reg) ((((reg) >> 3) & 0x1f) << 2)
182
183#define AUTO_TEMP_OFF_FROM_REG(reg) \
184 (AUTO_TEMP_MIN_FROM_REG(reg) - 5000)
185
186#define AUTO_TEMP_MAX_FROM_REG(reg) \
187 (AUTO_TEMP_RANGE_FROM_REG(reg) + \
188 AUTO_TEMP_MIN_FROM_REG(reg))
189
190static int AUTO_TEMP_MAX_TO_REG(int val, int reg, int pwm)
191{
192 int ret;
193 int range = val - AUTO_TEMP_MIN_FROM_REG(reg);
194
195 range = ((val - AUTO_TEMP_MIN_FROM_REG(reg))*10)/(16 - pwm);
196 ret = ((reg & 0xf8) |
197 (range < 10000 ? 0 :
198 range < 20000 ? 1 :
199 range < 40000 ? 2 : range < 80000 ? 3 : 4));
200 return ret;
201}
202
203/* FAN auto control */
204#define GET_FAN_AUTO_BITFIELD(data, idx) \
205 (*(data)->chan_select_table)[FAN_CHAN_FROM_REG((data)->conf1)][idx%2]
206
Jean Delvare6d6006b2007-12-02 23:33:57 +0100207/* The tables below contains the possible values for the auto fan
Linus Torvalds1da177e2005-04-16 15:20:36 -0700208 * control bitfields. the index in the table is the register value.
209 * MSb is the auto fan control enable bit, so the four first entries
210 * in the table disables auto fan control when both bitfields are zero.
211 */
Jean Delvare6d6006b2007-12-02 23:33:57 +0100212static const auto_chan_table_t auto_channel_select_table_adm1031 = {
213 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
214 { 2 /* 0b010 */ , 4 /* 0b100 */ },
215 { 2 /* 0b010 */ , 2 /* 0b010 */ },
216 { 4 /* 0b100 */ , 4 /* 0b100 */ },
217 { 7 /* 0b111 */ , 7 /* 0b111 */ },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700218};
219
Jean Delvare6d6006b2007-12-02 23:33:57 +0100220static const auto_chan_table_t auto_channel_select_table_adm1030 = {
221 { 0, 0 }, { 0, 0 }, { 0, 0 }, { 0, 0 },
222 { 2 /* 0b10 */ , 0 },
223 { 0xff /* invalid */ , 0 },
224 { 0xff /* invalid */ , 0 },
225 { 3 /* 0b11 */ , 0 },
Linus Torvalds1da177e2005-04-16 15:20:36 -0700226};
227
228/* That function checks if a bitfield is valid and returns the other bitfield
229 * nearest match if no exact match where found.
230 */
231static int
232get_fan_auto_nearest(struct adm1031_data *data,
233 int chan, u8 val, u8 reg, u8 * new_reg)
234{
235 int i;
236 int first_match = -1, exact_match = -1;
237 u8 other_reg_val =
238 (*data->chan_select_table)[FAN_CHAN_FROM_REG(reg)][chan ? 0 : 1];
239
240 if (val == 0) {
241 *new_reg = 0;
242 return 0;
243 }
244
245 for (i = 0; i < 8; i++) {
246 if ((val == (*data->chan_select_table)[i][chan]) &&
247 ((*data->chan_select_table)[i][chan ? 0 : 1] ==
248 other_reg_val)) {
249 /* We found an exact match */
250 exact_match = i;
251 break;
252 } else if (val == (*data->chan_select_table)[i][chan] &&
253 first_match == -1) {
Jean Delvare6d6006b2007-12-02 23:33:57 +0100254 /* Save the first match in case of an exact match has
255 * not been found
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256 */
257 first_match = i;
258 }
259 }
260
261 if (exact_match >= 0) {
262 *new_reg = exact_match;
263 } else if (first_match >= 0) {
264 *new_reg = first_match;
265 } else {
266 return -EINVAL;
267 }
268 return 0;
269}
270
Jean Delvarec8010822007-12-02 23:39:38 +0100271static ssize_t show_fan_auto_channel(struct device *dev,
272 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700273{
Jean Delvarec8010822007-12-02 23:39:38 +0100274 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 struct adm1031_data *data = adm1031_update_device(dev);
276 return sprintf(buf, "%d\n", GET_FAN_AUTO_BITFIELD(data, nr));
277}
278
279static ssize_t
Jean Delvarec8010822007-12-02 23:39:38 +0100280set_fan_auto_channel(struct device *dev, struct device_attribute *attr,
281 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
283 struct i2c_client *client = to_i2c_client(dev);
284 struct adm1031_data *data = i2c_get_clientdata(client);
Jean Delvarec8010822007-12-02 23:39:38 +0100285 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700286 int val = simple_strtol(buf, NULL, 10);
287 u8 reg;
288 int ret;
289 u8 old_fan_mode;
290
291 old_fan_mode = data->conf1;
292
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100293 mutex_lock(&data->update_lock);
Jean Delvare6d6006b2007-12-02 23:33:57 +0100294
Linus Torvalds1da177e2005-04-16 15:20:36 -0700295 if ((ret = get_fan_auto_nearest(data, nr, val, data->conf1, &reg))) {
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100296 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700297 return ret;
298 }
Jean Delvare6d6006b2007-12-02 23:33:57 +0100299 data->conf1 = FAN_CHAN_TO_REG(reg, data->conf1);
300 if ((data->conf1 & ADM1031_CONF1_AUTO_MODE) ^
Linus Torvalds1da177e2005-04-16 15:20:36 -0700301 (old_fan_mode & ADM1031_CONF1_AUTO_MODE)) {
302 if (data->conf1 & ADM1031_CONF1_AUTO_MODE){
Jean Delvare6d6006b2007-12-02 23:33:57 +0100303 /* Switch to Auto Fan Mode
304 * Save PWM registers
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 * Set PWM registers to 33% Both */
306 data->old_pwm[0] = data->pwm[0];
307 data->old_pwm[1] = data->pwm[1];
308 adm1031_write_value(client, ADM1031_REG_PWM, 0x55);
309 } else {
310 /* Switch to Manual Mode */
311 data->pwm[0] = data->old_pwm[0];
312 data->pwm[1] = data->old_pwm[1];
313 /* Restore PWM registers */
Jean Delvare6d6006b2007-12-02 23:33:57 +0100314 adm1031_write_value(client, ADM1031_REG_PWM,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 data->pwm[0] | (data->pwm[1] << 4));
316 }
317 }
318 data->conf1 = FAN_CHAN_TO_REG(reg, data->conf1);
319 adm1031_write_value(client, ADM1031_REG_CONF1, data->conf1);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100320 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700321 return count;
322}
323
Jean Delvarec8010822007-12-02 23:39:38 +0100324static SENSOR_DEVICE_ATTR(auto_fan1_channel, S_IRUGO | S_IWUSR,
325 show_fan_auto_channel, set_fan_auto_channel, 0);
326static SENSOR_DEVICE_ATTR(auto_fan2_channel, S_IRUGO | S_IWUSR,
327 show_fan_auto_channel, set_fan_auto_channel, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700328
329/* Auto Temps */
Jean Delvarec8010822007-12-02 23:39:38 +0100330static ssize_t show_auto_temp_off(struct device *dev,
331 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332{
Jean Delvarec8010822007-12-02 23:39:38 +0100333 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700334 struct adm1031_data *data = adm1031_update_device(dev);
Jean Delvare6d6006b2007-12-02 23:33:57 +0100335 return sprintf(buf, "%d\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700336 AUTO_TEMP_OFF_FROM_REG(data->auto_temp[nr]));
337}
Jean Delvarec8010822007-12-02 23:39:38 +0100338static ssize_t show_auto_temp_min(struct device *dev,
339 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700340{
Jean Delvarec8010822007-12-02 23:39:38 +0100341 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700342 struct adm1031_data *data = adm1031_update_device(dev);
343 return sprintf(buf, "%d\n",
344 AUTO_TEMP_MIN_FROM_REG(data->auto_temp[nr]));
345}
346static ssize_t
Jean Delvarec8010822007-12-02 23:39:38 +0100347set_auto_temp_min(struct device *dev, struct device_attribute *attr,
348 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700349{
350 struct i2c_client *client = to_i2c_client(dev);
351 struct adm1031_data *data = i2c_get_clientdata(client);
Jean Delvarec8010822007-12-02 23:39:38 +0100352 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700353 int val = simple_strtol(buf, NULL, 10);
354
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100355 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700356 data->auto_temp[nr] = AUTO_TEMP_MIN_TO_REG(val, data->auto_temp[nr]);
357 adm1031_write_value(client, ADM1031_REG_AUTO_TEMP(nr),
358 data->auto_temp[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100359 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700360 return count;
361}
Jean Delvarec8010822007-12-02 23:39:38 +0100362static ssize_t show_auto_temp_max(struct device *dev,
363 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364{
Jean Delvarec8010822007-12-02 23:39:38 +0100365 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366 struct adm1031_data *data = adm1031_update_device(dev);
367 return sprintf(buf, "%d\n",
368 AUTO_TEMP_MAX_FROM_REG(data->auto_temp[nr]));
369}
370static ssize_t
Jean Delvarec8010822007-12-02 23:39:38 +0100371set_auto_temp_max(struct device *dev, struct device_attribute *attr,
372 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373{
374 struct i2c_client *client = to_i2c_client(dev);
375 struct adm1031_data *data = i2c_get_clientdata(client);
Jean Delvarec8010822007-12-02 23:39:38 +0100376 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700377 int val = simple_strtol(buf, NULL, 10);
378
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100379 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700380 data->temp_max[nr] = AUTO_TEMP_MAX_TO_REG(val, data->auto_temp[nr], data->pwm[nr]);
381 adm1031_write_value(client, ADM1031_REG_AUTO_TEMP(nr),
382 data->temp_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100383 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384 return count;
385}
386
Jean Delvarec8010822007-12-02 23:39:38 +0100387#define auto_temp_reg(offset) \
388static SENSOR_DEVICE_ATTR(auto_temp##offset##_off, S_IRUGO, \
389 show_auto_temp_off, NULL, offset - 1); \
390static SENSOR_DEVICE_ATTR(auto_temp##offset##_min, S_IRUGO | S_IWUSR, \
391 show_auto_temp_min, set_auto_temp_min, offset - 1); \
392static SENSOR_DEVICE_ATTR(auto_temp##offset##_max, S_IRUGO | S_IWUSR, \
393 show_auto_temp_max, set_auto_temp_max, offset - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700394
395auto_temp_reg(1);
396auto_temp_reg(2);
397auto_temp_reg(3);
398
399/* pwm */
Jean Delvarec8010822007-12-02 23:39:38 +0100400static ssize_t show_pwm(struct device *dev,
401 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402{
Jean Delvarec8010822007-12-02 23:39:38 +0100403 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700404 struct adm1031_data *data = adm1031_update_device(dev);
405 return sprintf(buf, "%d\n", PWM_FROM_REG(data->pwm[nr]));
406}
Jean Delvarec8010822007-12-02 23:39:38 +0100407static ssize_t set_pwm(struct device *dev, struct device_attribute *attr,
408 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700409{
410 struct i2c_client *client = to_i2c_client(dev);
411 struct adm1031_data *data = i2c_get_clientdata(client);
Jean Delvarec8010822007-12-02 23:39:38 +0100412 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 int val = simple_strtol(buf, NULL, 10);
414 int reg;
415
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100416 mutex_lock(&data->update_lock);
Jean Delvare6d6006b2007-12-02 23:33:57 +0100417 if ((data->conf1 & ADM1031_CONF1_AUTO_MODE) &&
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418 (((val>>4) & 0xf) != 5)) {
419 /* In automatic mode, the only PWM accepted is 33% */
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100420 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421 return -EINVAL;
422 }
423 data->pwm[nr] = PWM_TO_REG(val);
424 reg = adm1031_read_value(client, ADM1031_REG_PWM);
425 adm1031_write_value(client, ADM1031_REG_PWM,
426 nr ? ((data->pwm[nr] << 4) & 0xf0) | (reg & 0xf)
427 : (data->pwm[nr] & 0xf) | (reg & 0xf0));
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100428 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700429 return count;
430}
431
Jean Delvarec8010822007-12-02 23:39:38 +0100432static SENSOR_DEVICE_ATTR(pwm1, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 0);
433static SENSOR_DEVICE_ATTR(pwm2, S_IRUGO | S_IWUSR, show_pwm, set_pwm, 1);
434static SENSOR_DEVICE_ATTR(auto_fan1_min_pwm, S_IRUGO | S_IWUSR,
435 show_pwm, set_pwm, 0);
436static SENSOR_DEVICE_ATTR(auto_fan2_min_pwm, S_IRUGO | S_IWUSR,
437 show_pwm, set_pwm, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439/* Fans */
440
441/*
442 * That function checks the cases where the fan reading is not
Steven Cole44bbe872005-05-03 18:21:25 -0600443 * relevant. It is used to provide 0 as fan reading when the fan is
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444 * not supposed to run
445 */
446static int trust_fan_readings(struct adm1031_data *data, int chan)
447{
448 int res = 0;
449
450 if (data->conf1 & ADM1031_CONF1_AUTO_MODE) {
451 switch (data->conf1 & 0x60) {
452 case 0x00: /* remote temp1 controls fan1 remote temp2 controls fan2 */
453 res = data->temp[chan+1] >=
454 AUTO_TEMP_MIN_FROM_REG_DEG(data->auto_temp[chan+1]);
455 break;
456 case 0x20: /* remote temp1 controls both fans */
457 res =
458 data->temp[1] >=
459 AUTO_TEMP_MIN_FROM_REG_DEG(data->auto_temp[1]);
460 break;
461 case 0x40: /* remote temp2 controls both fans */
462 res =
463 data->temp[2] >=
464 AUTO_TEMP_MIN_FROM_REG_DEG(data->auto_temp[2]);
465 break;
466 case 0x60: /* max controls both fans */
467 res =
468 data->temp[0] >=
469 AUTO_TEMP_MIN_FROM_REG_DEG(data->auto_temp[0])
470 || data->temp[1] >=
471 AUTO_TEMP_MIN_FROM_REG_DEG(data->auto_temp[1])
Jean Delvare6d6006b2007-12-02 23:33:57 +0100472 || (data->chip_type == adm1031
Linus Torvalds1da177e2005-04-16 15:20:36 -0700473 && data->temp[2] >=
474 AUTO_TEMP_MIN_FROM_REG_DEG(data->auto_temp[2]));
475 break;
476 }
477 } else {
478 res = data->pwm[chan] > 0;
479 }
480 return res;
481}
482
483
Jean Delvarec8010822007-12-02 23:39:38 +0100484static ssize_t show_fan(struct device *dev,
485 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700486{
Jean Delvarec8010822007-12-02 23:39:38 +0100487 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700488 struct adm1031_data *data = adm1031_update_device(dev);
489 int value;
490
491 value = trust_fan_readings(data, nr) ? FAN_FROM_REG(data->fan[nr],
492 FAN_DIV_FROM_REG(data->fan_div[nr])) : 0;
493 return sprintf(buf, "%d\n", value);
494}
495
Jean Delvarec8010822007-12-02 23:39:38 +0100496static ssize_t show_fan_div(struct device *dev,
497 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498{
Jean Delvarec8010822007-12-02 23:39:38 +0100499 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700500 struct adm1031_data *data = adm1031_update_device(dev);
501 return sprintf(buf, "%d\n", FAN_DIV_FROM_REG(data->fan_div[nr]));
502}
Jean Delvarec8010822007-12-02 23:39:38 +0100503static ssize_t show_fan_min(struct device *dev,
504 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505{
Jean Delvarec8010822007-12-02 23:39:38 +0100506 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 struct adm1031_data *data = adm1031_update_device(dev);
508 return sprintf(buf, "%d\n",
509 FAN_FROM_REG(data->fan_min[nr],
510 FAN_DIV_FROM_REG(data->fan_div[nr])));
511}
Jean Delvarec8010822007-12-02 23:39:38 +0100512static ssize_t set_fan_min(struct device *dev, struct device_attribute *attr,
513 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
515 struct i2c_client *client = to_i2c_client(dev);
516 struct adm1031_data *data = i2c_get_clientdata(client);
Jean Delvarec8010822007-12-02 23:39:38 +0100517 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 int val = simple_strtol(buf, NULL, 10);
519
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100520 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700521 if (val) {
Jean Delvare6d6006b2007-12-02 23:33:57 +0100522 data->fan_min[nr] =
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523 FAN_TO_REG(val, FAN_DIV_FROM_REG(data->fan_div[nr]));
524 } else {
525 data->fan_min[nr] = 0xff;
526 }
527 adm1031_write_value(client, ADM1031_REG_FAN_MIN(nr), data->fan_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100528 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 return count;
530}
Jean Delvarec8010822007-12-02 23:39:38 +0100531static ssize_t set_fan_div(struct device *dev, struct device_attribute *attr,
532 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533{
534 struct i2c_client *client = to_i2c_client(dev);
535 struct adm1031_data *data = i2c_get_clientdata(client);
Jean Delvarec8010822007-12-02 23:39:38 +0100536 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 int val = simple_strtol(buf, NULL, 10);
538 u8 tmp;
539 int old_div;
540 int new_min;
541
542 tmp = val == 8 ? 0xc0 :
543 val == 4 ? 0x80 :
Jean Delvare6d6006b2007-12-02 23:33:57 +0100544 val == 2 ? 0x40 :
545 val == 1 ? 0x00 :
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546 0xff;
547 if (tmp == 0xff)
548 return -EINVAL;
Jean Delvare6d6006b2007-12-02 23:33:57 +0100549
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100550 mutex_lock(&data->update_lock);
Jean Delvare38a1f0e2007-12-02 23:32:42 +0100551 /* Get fresh readings */
552 data->fan_div[nr] = adm1031_read_value(client,
553 ADM1031_REG_FAN_DIV(nr));
554 data->fan_min[nr] = adm1031_read_value(client,
555 ADM1031_REG_FAN_MIN(nr));
556
557 /* Write the new clock divider and fan min */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700558 old_div = FAN_DIV_FROM_REG(data->fan_div[nr]);
Jean Delvare6d6006b2007-12-02 23:33:57 +0100559 data->fan_div[nr] = tmp | (0x3f & data->fan_div[nr]);
560 new_min = data->fan_min[nr] * old_div / val;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700561 data->fan_min[nr] = new_min > 0xff ? 0xff : new_min;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562
Jean Delvare6d6006b2007-12-02 23:33:57 +0100563 adm1031_write_value(client, ADM1031_REG_FAN_DIV(nr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564 data->fan_div[nr]);
Jean Delvare6d6006b2007-12-02 23:33:57 +0100565 adm1031_write_value(client, ADM1031_REG_FAN_MIN(nr),
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 data->fan_min[nr]);
Jean Delvare38a1f0e2007-12-02 23:32:42 +0100567
568 /* Invalidate the cache: fan speed is no longer valid */
569 data->valid = 0;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100570 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 return count;
572}
573
574#define fan_offset(offset) \
Jean Delvarec8010822007-12-02 23:39:38 +0100575static SENSOR_DEVICE_ATTR(fan##offset##_input, S_IRUGO, \
576 show_fan, NULL, offset - 1); \
577static SENSOR_DEVICE_ATTR(fan##offset##_min, S_IRUGO | S_IWUSR, \
578 show_fan_min, set_fan_min, offset - 1); \
579static SENSOR_DEVICE_ATTR(fan##offset##_div, S_IRUGO | S_IWUSR, \
580 show_fan_div, set_fan_div, offset - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700581
582fan_offset(1);
583fan_offset(2);
584
585
586/* Temps */
Jean Delvarec8010822007-12-02 23:39:38 +0100587static ssize_t show_temp(struct device *dev,
588 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700589{
Jean Delvarec8010822007-12-02 23:39:38 +0100590 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591 struct adm1031_data *data = adm1031_update_device(dev);
592 int ext;
593 ext = nr == 0 ?
594 ((data->ext_temp[nr] >> 6) & 0x3) * 2 :
595 (((data->ext_temp[nr] >> ((nr - 1) * 3)) & 7));
596 return sprintf(buf, "%d\n", TEMP_FROM_REG_EXT(data->temp[nr], ext));
597}
Ira Snyder49dc9ef2009-09-23 22:59:41 +0200598static ssize_t show_temp_offset(struct device *dev,
599 struct device_attribute *attr, char *buf)
600{
601 int nr = to_sensor_dev_attr(attr)->index;
602 struct adm1031_data *data = adm1031_update_device(dev);
603 return sprintf(buf, "%d\n",
604 TEMP_OFFSET_FROM_REG(data->temp_offset[nr]));
605}
Jean Delvarec8010822007-12-02 23:39:38 +0100606static ssize_t show_temp_min(struct device *dev,
607 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608{
Jean Delvarec8010822007-12-02 23:39:38 +0100609 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700610 struct adm1031_data *data = adm1031_update_device(dev);
611 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_min[nr]));
612}
Jean Delvarec8010822007-12-02 23:39:38 +0100613static ssize_t show_temp_max(struct device *dev,
614 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700615{
Jean Delvarec8010822007-12-02 23:39:38 +0100616 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700617 struct adm1031_data *data = adm1031_update_device(dev);
618 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_max[nr]));
619}
Jean Delvarec8010822007-12-02 23:39:38 +0100620static ssize_t show_temp_crit(struct device *dev,
621 struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700622{
Jean Delvarec8010822007-12-02 23:39:38 +0100623 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 struct adm1031_data *data = adm1031_update_device(dev);
625 return sprintf(buf, "%d\n", TEMP_FROM_REG(data->temp_crit[nr]));
626}
Ira Snyder49dc9ef2009-09-23 22:59:41 +0200627static ssize_t set_temp_offset(struct device *dev,
628 struct device_attribute *attr, const char *buf,
629 size_t count)
630{
631 struct i2c_client *client = to_i2c_client(dev);
632 struct adm1031_data *data = i2c_get_clientdata(client);
633 int nr = to_sensor_dev_attr(attr)->index;
634 int val;
635
636 val = simple_strtol(buf, NULL, 10);
637 val = SENSORS_LIMIT(val, -15000, 15000);
638 mutex_lock(&data->update_lock);
639 data->temp_offset[nr] = TEMP_OFFSET_TO_REG(val);
640 adm1031_write_value(client, ADM1031_REG_TEMP_OFFSET(nr),
641 data->temp_offset[nr]);
642 mutex_unlock(&data->update_lock);
643 return count;
644}
Jean Delvarec8010822007-12-02 23:39:38 +0100645static ssize_t set_temp_min(struct device *dev, struct device_attribute *attr,
646 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700647{
648 struct i2c_client *client = to_i2c_client(dev);
649 struct adm1031_data *data = i2c_get_clientdata(client);
Jean Delvarec8010822007-12-02 23:39:38 +0100650 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651 int val;
652
653 val = simple_strtol(buf, NULL, 10);
654 val = SENSORS_LIMIT(val, -55000, nr == 0 ? 127750 : 127875);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100655 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700656 data->temp_min[nr] = TEMP_TO_REG(val);
657 adm1031_write_value(client, ADM1031_REG_TEMP_MIN(nr),
658 data->temp_min[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100659 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660 return count;
661}
Jean Delvarec8010822007-12-02 23:39:38 +0100662static ssize_t set_temp_max(struct device *dev, struct device_attribute *attr,
663 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700664{
665 struct i2c_client *client = to_i2c_client(dev);
666 struct adm1031_data *data = i2c_get_clientdata(client);
Jean Delvarec8010822007-12-02 23:39:38 +0100667 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668 int val;
669
670 val = simple_strtol(buf, NULL, 10);
671 val = SENSORS_LIMIT(val, -55000, nr == 0 ? 127750 : 127875);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100672 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673 data->temp_max[nr] = TEMP_TO_REG(val);
674 adm1031_write_value(client, ADM1031_REG_TEMP_MAX(nr),
675 data->temp_max[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100676 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700677 return count;
678}
Jean Delvarec8010822007-12-02 23:39:38 +0100679static ssize_t set_temp_crit(struct device *dev, struct device_attribute *attr,
680 const char *buf, size_t count)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
682 struct i2c_client *client = to_i2c_client(dev);
683 struct adm1031_data *data = i2c_get_clientdata(client);
Jean Delvarec8010822007-12-02 23:39:38 +0100684 int nr = to_sensor_dev_attr(attr)->index;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700685 int val;
686
687 val = simple_strtol(buf, NULL, 10);
688 val = SENSORS_LIMIT(val, -55000, nr == 0 ? 127750 : 127875);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100689 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700690 data->temp_crit[nr] = TEMP_TO_REG(val);
691 adm1031_write_value(client, ADM1031_REG_TEMP_CRIT(nr),
692 data->temp_crit[nr]);
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100693 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700694 return count;
695}
696
Jean Delvarec8010822007-12-02 23:39:38 +0100697#define temp_reg(offset) \
698static SENSOR_DEVICE_ATTR(temp##offset##_input, S_IRUGO, \
699 show_temp, NULL, offset - 1); \
Ira Snyder49dc9ef2009-09-23 22:59:41 +0200700static SENSOR_DEVICE_ATTR(temp##offset##_offset, S_IRUGO | S_IWUSR, \
701 show_temp_offset, set_temp_offset, offset - 1); \
Jean Delvarec8010822007-12-02 23:39:38 +0100702static SENSOR_DEVICE_ATTR(temp##offset##_min, S_IRUGO | S_IWUSR, \
703 show_temp_min, set_temp_min, offset - 1); \
704static SENSOR_DEVICE_ATTR(temp##offset##_max, S_IRUGO | S_IWUSR, \
705 show_temp_max, set_temp_max, offset - 1); \
706static SENSOR_DEVICE_ATTR(temp##offset##_crit, S_IRUGO | S_IWUSR, \
707 show_temp_crit, set_temp_crit, offset - 1)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700708
709temp_reg(1);
710temp_reg(2);
711temp_reg(3);
712
713/* Alarms */
Yani Ioannou30f74292005-05-17 06:41:35 -0400714static ssize_t show_alarms(struct device *dev, struct device_attribute *attr, char *buf)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715{
716 struct adm1031_data *data = adm1031_update_device(dev);
717 return sprintf(buf, "%d\n", data->alarm);
718}
719
720static DEVICE_ATTR(alarms, S_IRUGO, show_alarms, NULL);
721
Jean Delvare050ab872007-12-02 23:42:24 +0100722static ssize_t show_alarm(struct device *dev,
723 struct device_attribute *attr, char *buf)
724{
725 int bitnr = to_sensor_dev_attr(attr)->index;
726 struct adm1031_data *data = adm1031_update_device(dev);
727 return sprintf(buf, "%d\n", (data->alarm >> bitnr) & 1);
728}
729
730static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, 0);
731static SENSOR_DEVICE_ATTR(fan1_fault, S_IRUGO, show_alarm, NULL, 1);
732static SENSOR_DEVICE_ATTR(temp2_max_alarm, S_IRUGO, show_alarm, NULL, 2);
733static SENSOR_DEVICE_ATTR(temp2_min_alarm, S_IRUGO, show_alarm, NULL, 3);
734static SENSOR_DEVICE_ATTR(temp2_crit_alarm, S_IRUGO, show_alarm, NULL, 4);
735static SENSOR_DEVICE_ATTR(temp2_fault, S_IRUGO, show_alarm, NULL, 5);
736static SENSOR_DEVICE_ATTR(temp1_max_alarm, S_IRUGO, show_alarm, NULL, 6);
737static SENSOR_DEVICE_ATTR(temp1_min_alarm, S_IRUGO, show_alarm, NULL, 7);
738static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, 8);
739static SENSOR_DEVICE_ATTR(fan2_fault, S_IRUGO, show_alarm, NULL, 9);
740static SENSOR_DEVICE_ATTR(temp3_max_alarm, S_IRUGO, show_alarm, NULL, 10);
741static SENSOR_DEVICE_ATTR(temp3_min_alarm, S_IRUGO, show_alarm, NULL, 11);
742static SENSOR_DEVICE_ATTR(temp3_crit_alarm, S_IRUGO, show_alarm, NULL, 12);
743static SENSOR_DEVICE_ATTR(temp3_fault, S_IRUGO, show_alarm, NULL, 13);
744static SENSOR_DEVICE_ATTR(temp1_crit_alarm, S_IRUGO, show_alarm, NULL, 14);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745
Jean Delvare87c33da2010-05-27 19:58:46 +0200746/* Update Rate */
747static const unsigned int update_rates[] = {
748 16000, 8000, 4000, 2000, 1000, 500, 250, 125,
749};
750
751static ssize_t show_update_rate(struct device *dev,
752 struct device_attribute *attr, char *buf)
753{
754 struct i2c_client *client = to_i2c_client(dev);
755 struct adm1031_data *data = i2c_get_clientdata(client);
756
757 return sprintf(buf, "%u\n", data->update_rate);
758}
759
760static ssize_t set_update_rate(struct device *dev,
761 struct device_attribute *attr,
762 const char *buf, size_t count)
763{
764 struct i2c_client *client = to_i2c_client(dev);
765 struct adm1031_data *data = i2c_get_clientdata(client);
766 unsigned long val;
767 int i, err;
768 u8 reg;
769
770 err = strict_strtoul(buf, 10, &val);
771 if (err)
772 return err;
773
774 /* find the nearest update rate from the table */
775 for (i = 0; i < ARRAY_SIZE(update_rates) - 1; i++) {
776 if (val >= update_rates[i])
777 break;
778 }
779 /* if not found, we point to the last entry (lowest update rate) */
780
781 /* set the new update rate while preserving other settings */
782 reg = adm1031_read_value(client, ADM1031_REG_FAN_FILTER);
783 reg &= ~ADM1031_UPDATE_RATE_MASK;
784 reg |= i << ADM1031_UPDATE_RATE_SHIFT;
785 adm1031_write_value(client, ADM1031_REG_FAN_FILTER, reg);
786
787 mutex_lock(&data->update_lock);
788 data->update_rate = update_rates[i];
789 mutex_unlock(&data->update_lock);
790
791 return count;
792}
793
794static DEVICE_ATTR(update_rate, S_IRUGO | S_IWUSR, show_update_rate,
795 set_update_rate);
796
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200797static struct attribute *adm1031_attributes[] = {
Jean Delvarec8010822007-12-02 23:39:38 +0100798 &sensor_dev_attr_fan1_input.dev_attr.attr,
799 &sensor_dev_attr_fan1_div.dev_attr.attr,
800 &sensor_dev_attr_fan1_min.dev_attr.attr,
Jean Delvare050ab872007-12-02 23:42:24 +0100801 &sensor_dev_attr_fan1_alarm.dev_attr.attr,
802 &sensor_dev_attr_fan1_fault.dev_attr.attr,
Jean Delvarec8010822007-12-02 23:39:38 +0100803 &sensor_dev_attr_pwm1.dev_attr.attr,
804 &sensor_dev_attr_auto_fan1_channel.dev_attr.attr,
805 &sensor_dev_attr_temp1_input.dev_attr.attr,
Ira Snyder49dc9ef2009-09-23 22:59:41 +0200806 &sensor_dev_attr_temp1_offset.dev_attr.attr,
Jean Delvarec8010822007-12-02 23:39:38 +0100807 &sensor_dev_attr_temp1_min.dev_attr.attr,
Jean Delvare050ab872007-12-02 23:42:24 +0100808 &sensor_dev_attr_temp1_min_alarm.dev_attr.attr,
Jean Delvarec8010822007-12-02 23:39:38 +0100809 &sensor_dev_attr_temp1_max.dev_attr.attr,
Jean Delvare050ab872007-12-02 23:42:24 +0100810 &sensor_dev_attr_temp1_max_alarm.dev_attr.attr,
Jean Delvarec8010822007-12-02 23:39:38 +0100811 &sensor_dev_attr_temp1_crit.dev_attr.attr,
Jean Delvare050ab872007-12-02 23:42:24 +0100812 &sensor_dev_attr_temp1_crit_alarm.dev_attr.attr,
Jean Delvarec8010822007-12-02 23:39:38 +0100813 &sensor_dev_attr_temp2_input.dev_attr.attr,
Ira Snyder49dc9ef2009-09-23 22:59:41 +0200814 &sensor_dev_attr_temp2_offset.dev_attr.attr,
Jean Delvarec8010822007-12-02 23:39:38 +0100815 &sensor_dev_attr_temp2_min.dev_attr.attr,
Jean Delvare050ab872007-12-02 23:42:24 +0100816 &sensor_dev_attr_temp2_min_alarm.dev_attr.attr,
Jean Delvarec8010822007-12-02 23:39:38 +0100817 &sensor_dev_attr_temp2_max.dev_attr.attr,
Jean Delvare050ab872007-12-02 23:42:24 +0100818 &sensor_dev_attr_temp2_max_alarm.dev_attr.attr,
Jean Delvarec8010822007-12-02 23:39:38 +0100819 &sensor_dev_attr_temp2_crit.dev_attr.attr,
Jean Delvare050ab872007-12-02 23:42:24 +0100820 &sensor_dev_attr_temp2_crit_alarm.dev_attr.attr,
821 &sensor_dev_attr_temp2_fault.dev_attr.attr,
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200822
Jean Delvarec8010822007-12-02 23:39:38 +0100823 &sensor_dev_attr_auto_temp1_off.dev_attr.attr,
824 &sensor_dev_attr_auto_temp1_min.dev_attr.attr,
825 &sensor_dev_attr_auto_temp1_max.dev_attr.attr,
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200826
Jean Delvarec8010822007-12-02 23:39:38 +0100827 &sensor_dev_attr_auto_temp2_off.dev_attr.attr,
828 &sensor_dev_attr_auto_temp2_min.dev_attr.attr,
829 &sensor_dev_attr_auto_temp2_max.dev_attr.attr,
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200830
Jean Delvarec8010822007-12-02 23:39:38 +0100831 &sensor_dev_attr_auto_fan1_min_pwm.dev_attr.attr,
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200832
Jean Delvare87c33da2010-05-27 19:58:46 +0200833 &dev_attr_update_rate.attr,
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200834 &dev_attr_alarms.attr,
835
836 NULL
837};
838
839static const struct attribute_group adm1031_group = {
840 .attrs = adm1031_attributes,
841};
842
843static struct attribute *adm1031_attributes_opt[] = {
Jean Delvarec8010822007-12-02 23:39:38 +0100844 &sensor_dev_attr_fan2_input.dev_attr.attr,
845 &sensor_dev_attr_fan2_div.dev_attr.attr,
846 &sensor_dev_attr_fan2_min.dev_attr.attr,
Jean Delvare050ab872007-12-02 23:42:24 +0100847 &sensor_dev_attr_fan2_alarm.dev_attr.attr,
848 &sensor_dev_attr_fan2_fault.dev_attr.attr,
Jean Delvarec8010822007-12-02 23:39:38 +0100849 &sensor_dev_attr_pwm2.dev_attr.attr,
850 &sensor_dev_attr_auto_fan2_channel.dev_attr.attr,
851 &sensor_dev_attr_temp3_input.dev_attr.attr,
Ira Snyder49dc9ef2009-09-23 22:59:41 +0200852 &sensor_dev_attr_temp3_offset.dev_attr.attr,
Jean Delvarec8010822007-12-02 23:39:38 +0100853 &sensor_dev_attr_temp3_min.dev_attr.attr,
Jean Delvare050ab872007-12-02 23:42:24 +0100854 &sensor_dev_attr_temp3_min_alarm.dev_attr.attr,
Jean Delvarec8010822007-12-02 23:39:38 +0100855 &sensor_dev_attr_temp3_max.dev_attr.attr,
Jean Delvare050ab872007-12-02 23:42:24 +0100856 &sensor_dev_attr_temp3_max_alarm.dev_attr.attr,
Jean Delvarec8010822007-12-02 23:39:38 +0100857 &sensor_dev_attr_temp3_crit.dev_attr.attr,
Jean Delvare050ab872007-12-02 23:42:24 +0100858 &sensor_dev_attr_temp3_crit_alarm.dev_attr.attr,
859 &sensor_dev_attr_temp3_fault.dev_attr.attr,
Jean Delvarec8010822007-12-02 23:39:38 +0100860 &sensor_dev_attr_auto_temp3_off.dev_attr.attr,
861 &sensor_dev_attr_auto_temp3_min.dev_attr.attr,
862 &sensor_dev_attr_auto_temp3_max.dev_attr.attr,
863 &sensor_dev_attr_auto_fan2_min_pwm.dev_attr.attr,
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200864 NULL
865};
866
867static const struct attribute_group adm1031_group_opt = {
868 .attrs = adm1031_attributes_opt,
869};
870
Jean Delvareaf200f82008-07-16 19:30:09 +0200871/* Return 0 if detection is successful, -ENODEV otherwise */
Jean Delvare310ec792009-12-14 21:17:23 +0100872static int adm1031_detect(struct i2c_client *client,
Jean Delvareaf200f82008-07-16 19:30:09 +0200873 struct i2c_board_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Jean Delvareaf200f82008-07-16 19:30:09 +0200875 struct i2c_adapter *adapter = client->adapter;
Jean Delvare52df6442009-12-09 20:35:57 +0100876 const char *name;
877 int id, co;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878
879 if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA))
Jean Delvareaf200f82008-07-16 19:30:09 +0200880 return -ENODEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881
Jean Delvare52df6442009-12-09 20:35:57 +0100882 id = i2c_smbus_read_byte_data(client, 0x3d);
883 co = i2c_smbus_read_byte_data(client, 0x3e);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700884
Jean Delvare52df6442009-12-09 20:35:57 +0100885 if (!((id == 0x31 || id == 0x30) && co == 0x41))
886 return -ENODEV;
887 name = (id == 0x30) ? "adm1030" : "adm1031";
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888
Jean Delvareaf200f82008-07-16 19:30:09 +0200889 strlcpy(info->type, name, I2C_NAME_SIZE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700890
Jean Delvareaf200f82008-07-16 19:30:09 +0200891 return 0;
892}
893
894static int adm1031_probe(struct i2c_client *client,
895 const struct i2c_device_id *id)
896{
897 struct adm1031_data *data;
898 int err;
899
900 data = kzalloc(sizeof(struct adm1031_data), GFP_KERNEL);
901 if (!data) {
902 err = -ENOMEM;
903 goto exit;
904 }
905
906 i2c_set_clientdata(client, data);
907 data->chip_type = id->driver_data;
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100908 mutex_init(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700909
Jean Delvareaf200f82008-07-16 19:30:09 +0200910 if (data->chip_type == adm1030)
911 data->chan_select_table = &auto_channel_select_table_adm1030;
912 else
913 data->chan_select_table = &auto_channel_select_table_adm1031;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914
915 /* Initialize the ADM1031 chip */
Jean Delvare6d6006b2007-12-02 23:33:57 +0100916 adm1031_init_client(client);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 /* Register sysfs hooks */
Jean Delvare6d6006b2007-12-02 23:33:57 +0100919 if ((err = sysfs_create_group(&client->dev.kobj, &adm1031_group)))
Jean Delvareaf200f82008-07-16 19:30:09 +0200920 goto exit_free;
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200921
Jean Delvareaf200f82008-07-16 19:30:09 +0200922 if (data->chip_type == adm1031) {
Jean Delvare6d6006b2007-12-02 23:33:57 +0100923 if ((err = sysfs_create_group(&client->dev.kobj,
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200924 &adm1031_group_opt)))
925 goto exit_remove;
926 }
927
Jean Delvare6d6006b2007-12-02 23:33:57 +0100928 data->hwmon_dev = hwmon_device_register(&client->dev);
Tony Jones1beeffe2007-08-20 13:46:20 -0700929 if (IS_ERR(data->hwmon_dev)) {
930 err = PTR_ERR(data->hwmon_dev);
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200931 goto exit_remove;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 }
933
934 return 0;
935
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200936exit_remove:
Jean Delvare6d6006b2007-12-02 23:33:57 +0100937 sysfs_remove_group(&client->dev.kobj, &adm1031_group);
938 sysfs_remove_group(&client->dev.kobj, &adm1031_group_opt);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939exit_free:
Alexey Dobriyan1f57ff82005-08-26 01:49:14 +0400940 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941exit:
942 return err;
943}
944
Jean Delvareaf200f82008-07-16 19:30:09 +0200945static int adm1031_remove(struct i2c_client *client)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700946{
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400947 struct adm1031_data *data = i2c_get_clientdata(client);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400948
Tony Jones1beeffe2007-08-20 13:46:20 -0700949 hwmon_device_unregister(data->hwmon_dev);
Mark M. Hoffman681c6f72006-09-24 21:15:35 +0200950 sysfs_remove_group(&client->dev.kobj, &adm1031_group);
951 sysfs_remove_group(&client->dev.kobj, &adm1031_group_opt);
Mark M. Hoffman943b0832005-07-15 21:39:18 -0400952 kfree(data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700953 return 0;
954}
955
956static void adm1031_init_client(struct i2c_client *client)
957{
958 unsigned int read_val;
959 unsigned int mask;
Jean Delvare87c33da2010-05-27 19:58:46 +0200960 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 struct adm1031_data *data = i2c_get_clientdata(client);
962
963 mask = (ADM1031_CONF2_PWM1_ENABLE | ADM1031_CONF2_TACH1_ENABLE);
964 if (data->chip_type == adm1031) {
965 mask |= (ADM1031_CONF2_PWM2_ENABLE |
966 ADM1031_CONF2_TACH2_ENABLE);
Jean Delvare6d6006b2007-12-02 23:33:57 +0100967 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700968 /* Initialize the ADM1031 chip (enables fan speed reading ) */
969 read_val = adm1031_read_value(client, ADM1031_REG_CONF2);
970 if ((read_val | mask) != read_val) {
971 adm1031_write_value(client, ADM1031_REG_CONF2, read_val | mask);
972 }
973
974 read_val = adm1031_read_value(client, ADM1031_REG_CONF1);
975 if ((read_val | ADM1031_CONF1_MONITOR_ENABLE) != read_val) {
976 adm1031_write_value(client, ADM1031_REG_CONF1, read_val |
977 ADM1031_CONF1_MONITOR_ENABLE);
978 }
979
Jean Delvare87c33da2010-05-27 19:58:46 +0200980 /* Read the chip's update rate */
981 mask = ADM1031_UPDATE_RATE_MASK;
982 read_val = adm1031_read_value(client, ADM1031_REG_FAN_FILTER);
983 i = (read_val & mask) >> ADM1031_UPDATE_RATE_SHIFT;
984 data->update_rate = update_rates[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700985}
986
987static struct adm1031_data *adm1031_update_device(struct device *dev)
988{
989 struct i2c_client *client = to_i2c_client(dev);
990 struct adm1031_data *data = i2c_get_clientdata(client);
Jean Delvare87c33da2010-05-27 19:58:46 +0200991 unsigned long next_update;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 int chan;
993
Ingo Molnar9a61bf62006-01-18 23:19:26 +0100994 mutex_lock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700995
Jean Delvare87c33da2010-05-27 19:58:46 +0200996 next_update = data->last_updated + msecs_to_jiffies(data->update_rate);
997 if (time_after(jiffies, next_update) || !data->valid) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700998
999 dev_dbg(&client->dev, "Starting adm1031 update\n");
1000 for (chan = 0;
1001 chan < ((data->chip_type == adm1031) ? 3 : 2); chan++) {
1002 u8 oldh, newh;
1003
1004 oldh =
1005 adm1031_read_value(client, ADM1031_REG_TEMP(chan));
1006 data->ext_temp[chan] =
1007 adm1031_read_value(client, ADM1031_REG_EXT_TEMP);
1008 newh =
1009 adm1031_read_value(client, ADM1031_REG_TEMP(chan));
1010 if (newh != oldh) {
1011 data->ext_temp[chan] =
1012 adm1031_read_value(client,
1013 ADM1031_REG_EXT_TEMP);
1014#ifdef DEBUG
1015 oldh =
1016 adm1031_read_value(client,
1017 ADM1031_REG_TEMP(chan));
1018
1019 /* oldh is actually newer */
1020 if (newh != oldh)
1021 dev_warn(&client->dev,
1022 "Remote temperature may be "
1023 "wrong.\n");
1024#endif
1025 }
1026 data->temp[chan] = newh;
1027
Ira Snyder49dc9ef2009-09-23 22:59:41 +02001028 data->temp_offset[chan] =
1029 adm1031_read_value(client,
1030 ADM1031_REG_TEMP_OFFSET(chan));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031 data->temp_min[chan] =
1032 adm1031_read_value(client,
1033 ADM1031_REG_TEMP_MIN(chan));
1034 data->temp_max[chan] =
1035 adm1031_read_value(client,
1036 ADM1031_REG_TEMP_MAX(chan));
1037 data->temp_crit[chan] =
1038 adm1031_read_value(client,
1039 ADM1031_REG_TEMP_CRIT(chan));
1040 data->auto_temp[chan] =
1041 adm1031_read_value(client,
1042 ADM1031_REG_AUTO_TEMP(chan));
1043
1044 }
1045
1046 data->conf1 = adm1031_read_value(client, ADM1031_REG_CONF1);
1047 data->conf2 = adm1031_read_value(client, ADM1031_REG_CONF2);
1048
1049 data->alarm = adm1031_read_value(client, ADM1031_REG_STATUS(0))
1050 | (adm1031_read_value(client, ADM1031_REG_STATUS(1))
1051 << 8);
1052 if (data->chip_type == adm1030) {
1053 data->alarm &= 0xc0ff;
1054 }
Jean Delvare6d6006b2007-12-02 23:33:57 +01001055
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056 for (chan=0; chan<(data->chip_type == adm1030 ? 1 : 2); chan++) {
1057 data->fan_div[chan] =
1058 adm1031_read_value(client, ADM1031_REG_FAN_DIV(chan));
1059 data->fan_min[chan] =
1060 adm1031_read_value(client, ADM1031_REG_FAN_MIN(chan));
1061 data->fan[chan] =
1062 adm1031_read_value(client, ADM1031_REG_FAN_SPEED(chan));
1063 data->pwm[chan] =
Jean Delvare6d6006b2007-12-02 23:33:57 +01001064 0xf & (adm1031_read_value(client, ADM1031_REG_PWM) >>
Linus Torvalds1da177e2005-04-16 15:20:36 -07001065 (4*chan));
1066 }
1067 data->last_updated = jiffies;
1068 data->valid = 1;
1069 }
1070
Ingo Molnar9a61bf62006-01-18 23:19:26 +01001071 mutex_unlock(&data->update_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001072
1073 return data;
1074}
1075
1076static int __init sensors_adm1031_init(void)
1077{
1078 return i2c_add_driver(&adm1031_driver);
1079}
1080
1081static void __exit sensors_adm1031_exit(void)
1082{
1083 i2c_del_driver(&adm1031_driver);
1084}
1085
1086MODULE_AUTHOR("Alexandre d'Alton <alex@alexdalton.org>");
1087MODULE_DESCRIPTION("ADM1031/ADM1030 driver");
1088MODULE_LICENSE("GPL");
1089
1090module_init(sensors_adm1031_init);
1091module_exit(sensors_adm1031_exit);