diff options
Diffstat (limited to 'drivers/hwmon/adt7473.c')
-rw-r--r-- | drivers/hwmon/adt7473.c | 1187 |
1 files changed, 0 insertions, 1187 deletions
diff --git a/drivers/hwmon/adt7473.c b/drivers/hwmon/adt7473.c deleted file mode 100644 index 0a6ce2367b42..000000000000 --- a/drivers/hwmon/adt7473.c +++ /dev/null | |||
@@ -1,1187 +0,0 @@ | |||
1 | /* | ||
2 | * A hwmon driver for the Analog Devices ADT7473 | ||
3 | * Copyright (C) 2007 IBM | ||
4 | * | ||
5 | * Author: Darrick J. Wong <djwong@us.ibm.com> | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify | ||
8 | * it under the terms of the GNU General Public License as published by | ||
9 | * the Free Software Foundation; either version 2 of the License, or | ||
10 | * (at your option) any later version. | ||
11 | * | ||
12 | * This program is distributed in the hope that it will be useful, | ||
13 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
15 | * GNU General Public License for more details. | ||
16 | * | ||
17 | * You should have received a copy of the GNU General Public License | ||
18 | * along with this program; if not, write to the Free Software | ||
19 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA | ||
20 | */ | ||
21 | |||
22 | #include <linux/module.h> | ||
23 | #include <linux/jiffies.h> | ||
24 | #include <linux/i2c.h> | ||
25 | #include <linux/hwmon.h> | ||
26 | #include <linux/hwmon-sysfs.h> | ||
27 | #include <linux/err.h> | ||
28 | #include <linux/mutex.h> | ||
29 | #include <linux/delay.h> | ||
30 | #include <linux/log2.h> | ||
31 | |||
32 | /* Addresses to scan */ | ||
33 | static const unsigned short normal_i2c[] = { 0x2C, 0x2D, 0x2E, I2C_CLIENT_END }; | ||
34 | |||
35 | /* Insmod parameters */ | ||
36 | I2C_CLIENT_INSMOD_1(adt7473); | ||
37 | |||
38 | /* ADT7473 registers */ | ||
39 | #define ADT7473_REG_BASE_ADDR 0x20 | ||
40 | |||
41 | #define ADT7473_REG_VOLT_BASE_ADDR 0x21 | ||
42 | #define ADT7473_REG_VOLT_MIN_BASE_ADDR 0x46 | ||
43 | |||
44 | #define ADT7473_REG_TEMP_BASE_ADDR 0x25 | ||
45 | #define ADT7473_REG_TEMP_LIMITS_BASE_ADDR 0x4E | ||
46 | #define ADT7473_REG_TEMP_TMIN_BASE_ADDR 0x67 | ||
47 | #define ADT7473_REG_TEMP_TMAX_BASE_ADDR 0x6A | ||
48 | |||
49 | #define ADT7473_REG_FAN_BASE_ADDR 0x28 | ||
50 | #define ADT7473_REG_FAN_MIN_BASE_ADDR 0x54 | ||
51 | |||
52 | #define ADT7473_REG_PWM_BASE_ADDR 0x30 | ||
53 | #define ADT7473_REG_PWM_MIN_BASE_ADDR 0x64 | ||
54 | #define ADT7473_REG_PWM_MAX_BASE_ADDR 0x38 | ||
55 | #define ADT7473_REG_PWM_BHVR_BASE_ADDR 0x5C | ||
56 | #define ADT7473_PWM_BHVR_MASK 0xE0 | ||
57 | #define ADT7473_PWM_BHVR_SHIFT 5 | ||
58 | |||
59 | #define ADT7473_REG_CFG1 0x40 | ||
60 | #define ADT7473_CFG1_START 0x01 | ||
61 | #define ADT7473_CFG1_READY 0x04 | ||
62 | #define ADT7473_REG_CFG2 0x73 | ||
63 | #define ADT7473_REG_CFG3 0x78 | ||
64 | #define ADT7473_REG_CFG4 0x7D | ||
65 | #define ADT7473_CFG4_MAX_DUTY_AT_OVT 0x08 | ||
66 | #define ADT7473_REG_CFG5 0x7C | ||
67 | #define ADT7473_CFG5_TEMP_TWOS 0x01 | ||
68 | #define ADT7473_CFG5_TEMP_OFFSET 0x02 | ||
69 | |||
70 | #define ADT7473_REG_DEVICE 0x3D | ||
71 | #define ADT7473_VENDOR 0x41 | ||
72 | #define ADT7473_REG_VENDOR 0x3E | ||
73 | #define ADT7473_DEVICE 0x73 | ||
74 | #define ADT7473_REG_REVISION 0x3F | ||
75 | #define ADT7473_REV_68 0x68 | ||
76 | #define ADT7473_REV_69 0x69 | ||
77 | |||
78 | #define ADT7473_REG_ALARM1 0x41 | ||
79 | #define ADT7473_VCCP_ALARM 0x02 | ||
80 | #define ADT7473_VCC_ALARM 0x04 | ||
81 | #define ADT7473_R1T_ALARM 0x10 | ||
82 | #define ADT7473_LT_ALARM 0x20 | ||
83 | #define ADT7473_R2T_ALARM 0x40 | ||
84 | #define ADT7473_OOL 0x80 | ||
85 | #define ADT7473_REG_ALARM2 0x42 | ||
86 | #define ADT7473_OVT_ALARM 0x02 | ||
87 | #define ADT7473_FAN1_ALARM 0x04 | ||
88 | #define ADT7473_FAN2_ALARM 0x08 | ||
89 | #define ADT7473_FAN3_ALARM 0x10 | ||
90 | #define ADT7473_FAN4_ALARM 0x20 | ||
91 | #define ADT7473_R1T_SHORT 0x40 | ||
92 | #define ADT7473_R2T_SHORT 0x80 | ||
93 | |||
94 | #define ALARM2(x) ((x) << 8) | ||
95 | |||
96 | #define ADT7473_VOLT_COUNT 2 | ||
97 | #define ADT7473_REG_VOLT(x) (ADT7473_REG_VOLT_BASE_ADDR + (x)) | ||
98 | #define ADT7473_REG_VOLT_MIN(x) (ADT7473_REG_VOLT_MIN_BASE_ADDR + ((x) * 2)) | ||
99 | #define ADT7473_REG_VOLT_MAX(x) (ADT7473_REG_VOLT_MIN_BASE_ADDR + \ | ||
100 | ((x) * 2) + 1) | ||
101 | |||
102 | #define ADT7473_TEMP_COUNT 3 | ||
103 | #define ADT7473_REG_TEMP(x) (ADT7473_REG_TEMP_BASE_ADDR + (x)) | ||
104 | #define ADT7473_REG_TEMP_MIN(x) (ADT7473_REG_TEMP_LIMITS_BASE_ADDR + ((x) * 2)) | ||
105 | #define ADT7473_REG_TEMP_MAX(x) (ADT7473_REG_TEMP_LIMITS_BASE_ADDR + \ | ||
106 | ((x) * 2) + 1) | ||
107 | #define ADT7473_REG_TEMP_TMIN(x) (ADT7473_REG_TEMP_TMIN_BASE_ADDR + (x)) | ||
108 | #define ADT7473_REG_TEMP_TMAX(x) (ADT7473_REG_TEMP_TMAX_BASE_ADDR + (x)) | ||
109 | |||
110 | #define ADT7473_FAN_COUNT 4 | ||
111 | #define ADT7473_REG_FAN(x) (ADT7473_REG_FAN_BASE_ADDR + ((x) * 2)) | ||
112 | #define ADT7473_REG_FAN_MIN(x) (ADT7473_REG_FAN_MIN_BASE_ADDR + ((x) * 2)) | ||
113 | |||
114 | #define ADT7473_PWM_COUNT 3 | ||
115 | #define ADT7473_REG_PWM(x) (ADT7473_REG_PWM_BASE_ADDR + (x)) | ||
116 | #define ADT7473_REG_PWM_MAX(x) (ADT7473_REG_PWM_MAX_BASE_ADDR + (x)) | ||
117 | #define ADT7473_REG_PWM_MIN(x) (ADT7473_REG_PWM_MIN_BASE_ADDR + (x)) | ||
118 | #define ADT7473_REG_PWM_BHVR(x) (ADT7473_REG_PWM_BHVR_BASE_ADDR + (x)) | ||
119 | |||
120 | /* How often do we reread sensors values? (In jiffies) */ | ||
121 | #define SENSOR_REFRESH_INTERVAL (2 * HZ) | ||
122 | |||
123 | /* How often do we reread sensor limit values? (In jiffies) */ | ||
124 | #define LIMIT_REFRESH_INTERVAL (60 * HZ) | ||
125 | |||
126 | /* datasheet says to divide this number by the fan reading to get fan rpm */ | ||
127 | #define FAN_PERIOD_TO_RPM(x) ((90000 * 60) / (x)) | ||
128 | #define FAN_RPM_TO_PERIOD FAN_PERIOD_TO_RPM | ||
129 | #define FAN_PERIOD_INVALID 65535 | ||
130 | #define FAN_DATA_VALID(x) ((x) && (x) != FAN_PERIOD_INVALID) | ||
131 | |||
132 | struct adt7473_data { | ||
133 | struct device *hwmon_dev; | ||
134 | struct attribute_group attrs; | ||
135 | struct mutex lock; | ||
136 | char sensors_valid; | ||
137 | char limits_valid; | ||
138 | unsigned long sensors_last_updated; /* In jiffies */ | ||
139 | unsigned long limits_last_updated; /* In jiffies */ | ||
140 | |||
141 | u8 volt[ADT7473_VOLT_COUNT]; | ||
142 | s8 volt_min[ADT7473_VOLT_COUNT]; | ||
143 | s8 volt_max[ADT7473_VOLT_COUNT]; | ||
144 | |||
145 | s8 temp[ADT7473_TEMP_COUNT]; | ||
146 | s8 temp_min[ADT7473_TEMP_COUNT]; | ||
147 | s8 temp_max[ADT7473_TEMP_COUNT]; | ||
148 | s8 temp_tmin[ADT7473_TEMP_COUNT]; | ||
149 | /* This is called the !THERM limit in the datasheet */ | ||
150 | s8 temp_tmax[ADT7473_TEMP_COUNT]; | ||
151 | |||
152 | u16 fan[ADT7473_FAN_COUNT]; | ||
153 | u16 fan_min[ADT7473_FAN_COUNT]; | ||
154 | |||
155 | u8 pwm[ADT7473_PWM_COUNT]; | ||
156 | u8 pwm_max[ADT7473_PWM_COUNT]; | ||
157 | u8 pwm_min[ADT7473_PWM_COUNT]; | ||
158 | u8 pwm_behavior[ADT7473_PWM_COUNT]; | ||
159 | |||
160 | u8 temp_twos_complement; | ||
161 | u8 temp_offset; | ||
162 | |||
163 | u16 alarm; | ||
164 | u8 max_duty_at_overheat; | ||
165 | }; | ||
166 | |||
167 | static int adt7473_probe(struct i2c_client *client, | ||
168 | const struct i2c_device_id *id); | ||
169 | static int adt7473_detect(struct i2c_client *client, int kind, | ||
170 | struct i2c_board_info *info); | ||
171 | static int adt7473_remove(struct i2c_client *client); | ||
172 | |||
173 | static const struct i2c_device_id adt7473_id[] = { | ||
174 | { "adt7473", adt7473 }, | ||
175 | { } | ||
176 | }; | ||
177 | MODULE_DEVICE_TABLE(i2c, adt7473_id); | ||
178 | |||
179 | static struct i2c_driver adt7473_driver = { | ||
180 | .class = I2C_CLASS_HWMON, | ||
181 | .driver = { | ||
182 | .name = "adt7473", | ||
183 | }, | ||
184 | .probe = adt7473_probe, | ||
185 | .remove = adt7473_remove, | ||
186 | .id_table = adt7473_id, | ||
187 | .detect = adt7473_detect, | ||
188 | .address_data = &addr_data, | ||
189 | }; | ||
190 | |||
191 | /* | ||
192 | * 16-bit registers on the ADT7473 are low-byte first. The data sheet says | ||
193 | * that the low byte must be read before the high byte. | ||
194 | */ | ||
195 | static inline int adt7473_read_word_data(struct i2c_client *client, u8 reg) | ||
196 | { | ||
197 | u16 foo; | ||
198 | foo = i2c_smbus_read_byte_data(client, reg); | ||
199 | foo |= ((u16)i2c_smbus_read_byte_data(client, reg + 1) << 8); | ||
200 | return foo; | ||
201 | } | ||
202 | |||
203 | static inline int adt7473_write_word_data(struct i2c_client *client, u8 reg, | ||
204 | u16 value) | ||
205 | { | ||
206 | return i2c_smbus_write_byte_data(client, reg, value & 0xFF) | ||
207 | && i2c_smbus_write_byte_data(client, reg + 1, value >> 8); | ||
208 | } | ||
209 | |||
210 | static void adt7473_init_client(struct i2c_client *client) | ||
211 | { | ||
212 | int reg = i2c_smbus_read_byte_data(client, ADT7473_REG_CFG1); | ||
213 | |||
214 | if (!(reg & ADT7473_CFG1_READY)) { | ||
215 | dev_err(&client->dev, "Chip not ready.\n"); | ||
216 | } else { | ||
217 | /* start monitoring */ | ||
218 | i2c_smbus_write_byte_data(client, ADT7473_REG_CFG1, | ||
219 | reg | ADT7473_CFG1_START); | ||
220 | } | ||
221 | } | ||
222 | |||
223 | static struct adt7473_data *adt7473_update_device(struct device *dev) | ||
224 | { | ||
225 | struct i2c_client *client = to_i2c_client(dev); | ||
226 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
227 | unsigned long local_jiffies = jiffies; | ||
228 | u8 cfg; | ||
229 | int i; | ||
230 | |||
231 | mutex_lock(&data->lock); | ||
232 | if (time_before(local_jiffies, data->sensors_last_updated + | ||
233 | SENSOR_REFRESH_INTERVAL) | ||
234 | && data->sensors_valid) | ||
235 | goto no_sensor_update; | ||
236 | |||
237 | for (i = 0; i < ADT7473_VOLT_COUNT; i++) | ||
238 | data->volt[i] = i2c_smbus_read_byte_data(client, | ||
239 | ADT7473_REG_VOLT(i)); | ||
240 | |||
241 | /* Determine temperature encoding */ | ||
242 | cfg = i2c_smbus_read_byte_data(client, ADT7473_REG_CFG5); | ||
243 | data->temp_twos_complement = (cfg & ADT7473_CFG5_TEMP_TWOS); | ||
244 | |||
245 | /* | ||
246 | * What does this do? it implies a variable temperature sensor | ||
247 | * offset, but the datasheet doesn't say anything about this bit | ||
248 | * and other parts of the datasheet imply that "offset64" mode | ||
249 | * means that you shift temp values by -64 if the above bit was set. | ||
250 | */ | ||
251 | data->temp_offset = (cfg & ADT7473_CFG5_TEMP_OFFSET); | ||
252 | |||
253 | for (i = 0; i < ADT7473_TEMP_COUNT; i++) | ||
254 | data->temp[i] = i2c_smbus_read_byte_data(client, | ||
255 | ADT7473_REG_TEMP(i)); | ||
256 | |||
257 | for (i = 0; i < ADT7473_FAN_COUNT; i++) | ||
258 | data->fan[i] = adt7473_read_word_data(client, | ||
259 | ADT7473_REG_FAN(i)); | ||
260 | |||
261 | for (i = 0; i < ADT7473_PWM_COUNT; i++) | ||
262 | data->pwm[i] = i2c_smbus_read_byte_data(client, | ||
263 | ADT7473_REG_PWM(i)); | ||
264 | |||
265 | data->alarm = i2c_smbus_read_byte_data(client, ADT7473_REG_ALARM1); | ||
266 | if (data->alarm & ADT7473_OOL) | ||
267 | data->alarm |= ALARM2(i2c_smbus_read_byte_data(client, | ||
268 | ADT7473_REG_ALARM2)); | ||
269 | |||
270 | data->sensors_last_updated = local_jiffies; | ||
271 | data->sensors_valid = 1; | ||
272 | |||
273 | no_sensor_update: | ||
274 | if (time_before(local_jiffies, data->limits_last_updated + | ||
275 | LIMIT_REFRESH_INTERVAL) | ||
276 | && data->limits_valid) | ||
277 | goto out; | ||
278 | |||
279 | for (i = 0; i < ADT7473_VOLT_COUNT; i++) { | ||
280 | data->volt_min[i] = i2c_smbus_read_byte_data(client, | ||
281 | ADT7473_REG_VOLT_MIN(i)); | ||
282 | data->volt_max[i] = i2c_smbus_read_byte_data(client, | ||
283 | ADT7473_REG_VOLT_MAX(i)); | ||
284 | } | ||
285 | |||
286 | for (i = 0; i < ADT7473_TEMP_COUNT; i++) { | ||
287 | data->temp_min[i] = i2c_smbus_read_byte_data(client, | ||
288 | ADT7473_REG_TEMP_MIN(i)); | ||
289 | data->temp_max[i] = i2c_smbus_read_byte_data(client, | ||
290 | ADT7473_REG_TEMP_MAX(i)); | ||
291 | data->temp_tmin[i] = i2c_smbus_read_byte_data(client, | ||
292 | ADT7473_REG_TEMP_TMIN(i)); | ||
293 | data->temp_tmax[i] = i2c_smbus_read_byte_data(client, | ||
294 | ADT7473_REG_TEMP_TMAX(i)); | ||
295 | } | ||
296 | |||
297 | for (i = 0; i < ADT7473_FAN_COUNT; i++) | ||
298 | data->fan_min[i] = adt7473_read_word_data(client, | ||
299 | ADT7473_REG_FAN_MIN(i)); | ||
300 | |||
301 | for (i = 0; i < ADT7473_PWM_COUNT; i++) { | ||
302 | data->pwm_max[i] = i2c_smbus_read_byte_data(client, | ||
303 | ADT7473_REG_PWM_MAX(i)); | ||
304 | data->pwm_min[i] = i2c_smbus_read_byte_data(client, | ||
305 | ADT7473_REG_PWM_MIN(i)); | ||
306 | data->pwm_behavior[i] = i2c_smbus_read_byte_data(client, | ||
307 | ADT7473_REG_PWM_BHVR(i)); | ||
308 | } | ||
309 | |||
310 | i = i2c_smbus_read_byte_data(client, ADT7473_REG_CFG4); | ||
311 | data->max_duty_at_overheat = !!(i & ADT7473_CFG4_MAX_DUTY_AT_OVT); | ||
312 | |||
313 | data->limits_last_updated = local_jiffies; | ||
314 | data->limits_valid = 1; | ||
315 | |||
316 | out: | ||
317 | mutex_unlock(&data->lock); | ||
318 | return data; | ||
319 | } | ||
320 | |||
321 | /* | ||
322 | * Conversions | ||
323 | */ | ||
324 | |||
325 | /* IN are scaled acording to built-in resistors */ | ||
326 | static const int adt7473_scaling[] = { /* .001 Volts */ | ||
327 | 2250, 3300 | ||
328 | }; | ||
329 | #define SCALE(val, from, to) (((val) * (to) + ((from) / 2)) / (from)) | ||
330 | |||
331 | static int decode_volt(int volt_index, u8 raw) | ||
332 | { | ||
333 | return SCALE(raw, 192, adt7473_scaling[volt_index]); | ||
334 | } | ||
335 | |||
336 | static u8 encode_volt(int volt_index, int cooked) | ||
337 | { | ||
338 | int raw = SCALE(cooked, adt7473_scaling[volt_index], 192); | ||
339 | return SENSORS_LIMIT(raw, 0, 255); | ||
340 | } | ||
341 | |||
342 | static ssize_t show_volt_min(struct device *dev, | ||
343 | struct device_attribute *devattr, | ||
344 | char *buf) | ||
345 | { | ||
346 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
347 | struct adt7473_data *data = adt7473_update_device(dev); | ||
348 | return sprintf(buf, "%d\n", | ||
349 | decode_volt(attr->index, data->volt_min[attr->index])); | ||
350 | } | ||
351 | |||
352 | static ssize_t set_volt_min(struct device *dev, | ||
353 | struct device_attribute *devattr, | ||
354 | const char *buf, | ||
355 | size_t count) | ||
356 | { | ||
357 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
358 | struct i2c_client *client = to_i2c_client(dev); | ||
359 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
360 | long volt; | ||
361 | |||
362 | if (strict_strtol(buf, 10, &volt)) | ||
363 | return -EINVAL; | ||
364 | |||
365 | volt = encode_volt(attr->index, volt); | ||
366 | |||
367 | mutex_lock(&data->lock); | ||
368 | data->volt_min[attr->index] = volt; | ||
369 | i2c_smbus_write_byte_data(client, ADT7473_REG_VOLT_MIN(attr->index), | ||
370 | volt); | ||
371 | mutex_unlock(&data->lock); | ||
372 | |||
373 | return count; | ||
374 | } | ||
375 | |||
376 | static ssize_t show_volt_max(struct device *dev, | ||
377 | struct device_attribute *devattr, | ||
378 | char *buf) | ||
379 | { | ||
380 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
381 | struct adt7473_data *data = adt7473_update_device(dev); | ||
382 | return sprintf(buf, "%d\n", | ||
383 | decode_volt(attr->index, data->volt_max[attr->index])); | ||
384 | } | ||
385 | |||
386 | static ssize_t set_volt_max(struct device *dev, | ||
387 | struct device_attribute *devattr, | ||
388 | const char *buf, | ||
389 | size_t count) | ||
390 | { | ||
391 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
392 | struct i2c_client *client = to_i2c_client(dev); | ||
393 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
394 | long volt; | ||
395 | |||
396 | if (strict_strtol(buf, 10, &volt)) | ||
397 | return -EINVAL; | ||
398 | |||
399 | volt = encode_volt(attr->index, volt); | ||
400 | |||
401 | mutex_lock(&data->lock); | ||
402 | data->volt_max[attr->index] = volt; | ||
403 | i2c_smbus_write_byte_data(client, ADT7473_REG_VOLT_MAX(attr->index), | ||
404 | volt); | ||
405 | mutex_unlock(&data->lock); | ||
406 | |||
407 | return count; | ||
408 | } | ||
409 | |||
410 | static ssize_t show_volt(struct device *dev, struct device_attribute *devattr, | ||
411 | char *buf) | ||
412 | { | ||
413 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
414 | struct adt7473_data *data = adt7473_update_device(dev); | ||
415 | |||
416 | return sprintf(buf, "%d\n", | ||
417 | decode_volt(attr->index, data->volt[attr->index])); | ||
418 | } | ||
419 | |||
420 | /* | ||
421 | * This chip can report temperature data either as a two's complement | ||
422 | * number in the range -128 to 127, or as an unsigned number that must | ||
423 | * be offset by 64. | ||
424 | */ | ||
425 | static int decode_temp(u8 twos_complement, u8 raw) | ||
426 | { | ||
427 | return twos_complement ? (s8)raw : raw - 64; | ||
428 | } | ||
429 | |||
430 | static u8 encode_temp(u8 twos_complement, int cooked) | ||
431 | { | ||
432 | u8 ret = twos_complement ? cooked & 0xFF : cooked + 64; | ||
433 | return SENSORS_LIMIT(ret, 0, 255); | ||
434 | } | ||
435 | |||
436 | static ssize_t show_temp_min(struct device *dev, | ||
437 | struct device_attribute *devattr, | ||
438 | char *buf) | ||
439 | { | ||
440 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
441 | struct adt7473_data *data = adt7473_update_device(dev); | ||
442 | return sprintf(buf, "%d\n", 1000 * decode_temp( | ||
443 | data->temp_twos_complement, | ||
444 | data->temp_min[attr->index])); | ||
445 | } | ||
446 | |||
447 | static ssize_t set_temp_min(struct device *dev, | ||
448 | struct device_attribute *devattr, | ||
449 | const char *buf, | ||
450 | size_t count) | ||
451 | { | ||
452 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
453 | struct i2c_client *client = to_i2c_client(dev); | ||
454 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
455 | long temp; | ||
456 | |||
457 | if (strict_strtol(buf, 10, &temp)) | ||
458 | return -EINVAL; | ||
459 | |||
460 | temp = DIV_ROUND_CLOSEST(temp, 1000); | ||
461 | temp = encode_temp(data->temp_twos_complement, temp); | ||
462 | |||
463 | mutex_lock(&data->lock); | ||
464 | data->temp_min[attr->index] = temp; | ||
465 | i2c_smbus_write_byte_data(client, ADT7473_REG_TEMP_MIN(attr->index), | ||
466 | temp); | ||
467 | mutex_unlock(&data->lock); | ||
468 | |||
469 | return count; | ||
470 | } | ||
471 | |||
472 | static ssize_t show_temp_max(struct device *dev, | ||
473 | struct device_attribute *devattr, | ||
474 | char *buf) | ||
475 | { | ||
476 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
477 | struct adt7473_data *data = adt7473_update_device(dev); | ||
478 | return sprintf(buf, "%d\n", 1000 * decode_temp( | ||
479 | data->temp_twos_complement, | ||
480 | data->temp_max[attr->index])); | ||
481 | } | ||
482 | |||
483 | static ssize_t set_temp_max(struct device *dev, | ||
484 | struct device_attribute *devattr, | ||
485 | const char *buf, | ||
486 | size_t count) | ||
487 | { | ||
488 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
489 | struct i2c_client *client = to_i2c_client(dev); | ||
490 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
491 | long temp; | ||
492 | |||
493 | if (strict_strtol(buf, 10, &temp)) | ||
494 | return -EINVAL; | ||
495 | |||
496 | temp = DIV_ROUND_CLOSEST(temp, 1000); | ||
497 | temp = encode_temp(data->temp_twos_complement, temp); | ||
498 | |||
499 | mutex_lock(&data->lock); | ||
500 | data->temp_max[attr->index] = temp; | ||
501 | i2c_smbus_write_byte_data(client, ADT7473_REG_TEMP_MAX(attr->index), | ||
502 | temp); | ||
503 | mutex_unlock(&data->lock); | ||
504 | |||
505 | return count; | ||
506 | } | ||
507 | |||
508 | static ssize_t show_temp(struct device *dev, struct device_attribute *devattr, | ||
509 | char *buf) | ||
510 | { | ||
511 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
512 | struct adt7473_data *data = adt7473_update_device(dev); | ||
513 | return sprintf(buf, "%d\n", 1000 * decode_temp( | ||
514 | data->temp_twos_complement, | ||
515 | data->temp[attr->index])); | ||
516 | } | ||
517 | |||
518 | static ssize_t show_fan_min(struct device *dev, | ||
519 | struct device_attribute *devattr, | ||
520 | char *buf) | ||
521 | { | ||
522 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
523 | struct adt7473_data *data = adt7473_update_device(dev); | ||
524 | |||
525 | if (FAN_DATA_VALID(data->fan_min[attr->index])) | ||
526 | return sprintf(buf, "%d\n", | ||
527 | FAN_PERIOD_TO_RPM(data->fan_min[attr->index])); | ||
528 | else | ||
529 | return sprintf(buf, "0\n"); | ||
530 | } | ||
531 | |||
532 | static ssize_t set_fan_min(struct device *dev, | ||
533 | struct device_attribute *devattr, | ||
534 | const char *buf, size_t count) | ||
535 | { | ||
536 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
537 | struct i2c_client *client = to_i2c_client(dev); | ||
538 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
539 | long temp; | ||
540 | |||
541 | if (strict_strtol(buf, 10, &temp) || !temp) | ||
542 | return -EINVAL; | ||
543 | |||
544 | temp = FAN_RPM_TO_PERIOD(temp); | ||
545 | temp = SENSORS_LIMIT(temp, 1, 65534); | ||
546 | |||
547 | mutex_lock(&data->lock); | ||
548 | data->fan_min[attr->index] = temp; | ||
549 | adt7473_write_word_data(client, ADT7473_REG_FAN_MIN(attr->index), temp); | ||
550 | mutex_unlock(&data->lock); | ||
551 | |||
552 | return count; | ||
553 | } | ||
554 | |||
555 | static ssize_t show_fan(struct device *dev, struct device_attribute *devattr, | ||
556 | char *buf) | ||
557 | { | ||
558 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
559 | struct adt7473_data *data = adt7473_update_device(dev); | ||
560 | |||
561 | if (FAN_DATA_VALID(data->fan[attr->index])) | ||
562 | return sprintf(buf, "%d\n", | ||
563 | FAN_PERIOD_TO_RPM(data->fan[attr->index])); | ||
564 | else | ||
565 | return sprintf(buf, "0\n"); | ||
566 | } | ||
567 | |||
568 | static ssize_t show_max_duty_at_crit(struct device *dev, | ||
569 | struct device_attribute *devattr, | ||
570 | char *buf) | ||
571 | { | ||
572 | struct adt7473_data *data = adt7473_update_device(dev); | ||
573 | return sprintf(buf, "%d\n", data->max_duty_at_overheat); | ||
574 | } | ||
575 | |||
576 | static ssize_t set_max_duty_at_crit(struct device *dev, | ||
577 | struct device_attribute *devattr, | ||
578 | const char *buf, | ||
579 | size_t count) | ||
580 | { | ||
581 | u8 reg; | ||
582 | struct i2c_client *client = to_i2c_client(dev); | ||
583 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
584 | long temp; | ||
585 | |||
586 | if (strict_strtol(buf, 10, &temp)) | ||
587 | return -EINVAL; | ||
588 | |||
589 | mutex_lock(&data->lock); | ||
590 | data->max_duty_at_overheat = !!temp; | ||
591 | reg = i2c_smbus_read_byte_data(client, ADT7473_REG_CFG4); | ||
592 | if (temp) | ||
593 | reg |= ADT7473_CFG4_MAX_DUTY_AT_OVT; | ||
594 | else | ||
595 | reg &= ~ADT7473_CFG4_MAX_DUTY_AT_OVT; | ||
596 | i2c_smbus_write_byte_data(client, ADT7473_REG_CFG4, reg); | ||
597 | mutex_unlock(&data->lock); | ||
598 | |||
599 | return count; | ||
600 | } | ||
601 | |||
602 | static ssize_t show_pwm(struct device *dev, struct device_attribute *devattr, | ||
603 | char *buf) | ||
604 | { | ||
605 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
606 | struct adt7473_data *data = adt7473_update_device(dev); | ||
607 | return sprintf(buf, "%d\n", data->pwm[attr->index]); | ||
608 | } | ||
609 | |||
610 | static ssize_t set_pwm(struct device *dev, struct device_attribute *devattr, | ||
611 | const char *buf, size_t count) | ||
612 | { | ||
613 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
614 | struct i2c_client *client = to_i2c_client(dev); | ||
615 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
616 | long temp; | ||
617 | |||
618 | if (strict_strtol(buf, 10, &temp)) | ||
619 | return -EINVAL; | ||
620 | |||
621 | temp = SENSORS_LIMIT(temp, 0, 255); | ||
622 | |||
623 | mutex_lock(&data->lock); | ||
624 | data->pwm[attr->index] = temp; | ||
625 | i2c_smbus_write_byte_data(client, ADT7473_REG_PWM(attr->index), temp); | ||
626 | mutex_unlock(&data->lock); | ||
627 | |||
628 | return count; | ||
629 | } | ||
630 | |||
631 | static ssize_t show_pwm_max(struct device *dev, | ||
632 | struct device_attribute *devattr, | ||
633 | char *buf) | ||
634 | { | ||
635 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
636 | struct adt7473_data *data = adt7473_update_device(dev); | ||
637 | return sprintf(buf, "%d\n", data->pwm_max[attr->index]); | ||
638 | } | ||
639 | |||
640 | static ssize_t set_pwm_max(struct device *dev, | ||
641 | struct device_attribute *devattr, | ||
642 | const char *buf, | ||
643 | size_t count) | ||
644 | { | ||
645 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
646 | struct i2c_client *client = to_i2c_client(dev); | ||
647 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
648 | long temp; | ||
649 | |||
650 | if (strict_strtol(buf, 10, &temp)) | ||
651 | return -EINVAL; | ||
652 | |||
653 | temp = SENSORS_LIMIT(temp, 0, 255); | ||
654 | |||
655 | mutex_lock(&data->lock); | ||
656 | data->pwm_max[attr->index] = temp; | ||
657 | i2c_smbus_write_byte_data(client, ADT7473_REG_PWM_MAX(attr->index), | ||
658 | temp); | ||
659 | mutex_unlock(&data->lock); | ||
660 | |||
661 | return count; | ||
662 | } | ||
663 | |||
664 | static ssize_t show_pwm_min(struct device *dev, | ||
665 | struct device_attribute *devattr, | ||
666 | char *buf) | ||
667 | { | ||
668 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
669 | struct adt7473_data *data = adt7473_update_device(dev); | ||
670 | return sprintf(buf, "%d\n", data->pwm_min[attr->index]); | ||
671 | } | ||
672 | |||
673 | static ssize_t set_pwm_min(struct device *dev, | ||
674 | struct device_attribute *devattr, | ||
675 | const char *buf, | ||
676 | size_t count) | ||
677 | { | ||
678 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
679 | struct i2c_client *client = to_i2c_client(dev); | ||
680 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
681 | long temp; | ||
682 | |||
683 | if (strict_strtol(buf, 10, &temp)) | ||
684 | return -EINVAL; | ||
685 | |||
686 | temp = SENSORS_LIMIT(temp, 0, 255); | ||
687 | |||
688 | mutex_lock(&data->lock); | ||
689 | data->pwm_min[attr->index] = temp; | ||
690 | i2c_smbus_write_byte_data(client, ADT7473_REG_PWM_MIN(attr->index), | ||
691 | temp); | ||
692 | mutex_unlock(&data->lock); | ||
693 | |||
694 | return count; | ||
695 | } | ||
696 | |||
697 | static ssize_t show_temp_tmax(struct device *dev, | ||
698 | struct device_attribute *devattr, | ||
699 | char *buf) | ||
700 | { | ||
701 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
702 | struct adt7473_data *data = adt7473_update_device(dev); | ||
703 | return sprintf(buf, "%d\n", 1000 * decode_temp( | ||
704 | data->temp_twos_complement, | ||
705 | data->temp_tmax[attr->index])); | ||
706 | } | ||
707 | |||
708 | static ssize_t set_temp_tmax(struct device *dev, | ||
709 | struct device_attribute *devattr, | ||
710 | const char *buf, | ||
711 | size_t count) | ||
712 | { | ||
713 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
714 | struct i2c_client *client = to_i2c_client(dev); | ||
715 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
716 | long temp; | ||
717 | |||
718 | if (strict_strtol(buf, 10, &temp)) | ||
719 | return -EINVAL; | ||
720 | |||
721 | temp = DIV_ROUND_CLOSEST(temp, 1000); | ||
722 | temp = encode_temp(data->temp_twos_complement, temp); | ||
723 | |||
724 | mutex_lock(&data->lock); | ||
725 | data->temp_tmax[attr->index] = temp; | ||
726 | i2c_smbus_write_byte_data(client, ADT7473_REG_TEMP_TMAX(attr->index), | ||
727 | temp); | ||
728 | mutex_unlock(&data->lock); | ||
729 | |||
730 | return count; | ||
731 | } | ||
732 | |||
733 | static ssize_t show_temp_tmin(struct device *dev, | ||
734 | struct device_attribute *devattr, | ||
735 | char *buf) | ||
736 | { | ||
737 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
738 | struct adt7473_data *data = adt7473_update_device(dev); | ||
739 | return sprintf(buf, "%d\n", 1000 * decode_temp( | ||
740 | data->temp_twos_complement, | ||
741 | data->temp_tmin[attr->index])); | ||
742 | } | ||
743 | |||
744 | static ssize_t set_temp_tmin(struct device *dev, | ||
745 | struct device_attribute *devattr, | ||
746 | const char *buf, | ||
747 | size_t count) | ||
748 | { | ||
749 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
750 | struct i2c_client *client = to_i2c_client(dev); | ||
751 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
752 | long temp; | ||
753 | |||
754 | if (strict_strtol(buf, 10, &temp)) | ||
755 | return -EINVAL; | ||
756 | |||
757 | temp = DIV_ROUND_CLOSEST(temp, 1000); | ||
758 | temp = encode_temp(data->temp_twos_complement, temp); | ||
759 | |||
760 | mutex_lock(&data->lock); | ||
761 | data->temp_tmin[attr->index] = temp; | ||
762 | i2c_smbus_write_byte_data(client, ADT7473_REG_TEMP_TMIN(attr->index), | ||
763 | temp); | ||
764 | mutex_unlock(&data->lock); | ||
765 | |||
766 | return count; | ||
767 | } | ||
768 | |||
769 | static ssize_t show_pwm_enable(struct device *dev, | ||
770 | struct device_attribute *devattr, | ||
771 | char *buf) | ||
772 | { | ||
773 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
774 | struct adt7473_data *data = adt7473_update_device(dev); | ||
775 | |||
776 | switch (data->pwm_behavior[attr->index] >> ADT7473_PWM_BHVR_SHIFT) { | ||
777 | case 3: | ||
778 | return sprintf(buf, "0\n"); | ||
779 | case 7: | ||
780 | return sprintf(buf, "1\n"); | ||
781 | default: | ||
782 | return sprintf(buf, "2\n"); | ||
783 | } | ||
784 | } | ||
785 | |||
786 | static ssize_t set_pwm_enable(struct device *dev, | ||
787 | struct device_attribute *devattr, | ||
788 | const char *buf, | ||
789 | size_t count) | ||
790 | { | ||
791 | u8 reg; | ||
792 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
793 | struct i2c_client *client = to_i2c_client(dev); | ||
794 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
795 | long temp; | ||
796 | |||
797 | if (strict_strtol(buf, 10, &temp)) | ||
798 | return -EINVAL; | ||
799 | |||
800 | switch (temp) { | ||
801 | case 0: | ||
802 | temp = 3; | ||
803 | break; | ||
804 | case 1: | ||
805 | temp = 7; | ||
806 | break; | ||
807 | case 2: | ||
808 | /* Enter automatic mode with fans off */ | ||
809 | temp = 4; | ||
810 | break; | ||
811 | default: | ||
812 | return -EINVAL; | ||
813 | } | ||
814 | |||
815 | mutex_lock(&data->lock); | ||
816 | reg = i2c_smbus_read_byte_data(client, | ||
817 | ADT7473_REG_PWM_BHVR(attr->index)); | ||
818 | reg = (temp << ADT7473_PWM_BHVR_SHIFT) | | ||
819 | (reg & ~ADT7473_PWM_BHVR_MASK); | ||
820 | i2c_smbus_write_byte_data(client, ADT7473_REG_PWM_BHVR(attr->index), | ||
821 | reg); | ||
822 | data->pwm_behavior[attr->index] = reg; | ||
823 | mutex_unlock(&data->lock); | ||
824 | |||
825 | return count; | ||
826 | } | ||
827 | |||
828 | static ssize_t show_pwm_auto_temp(struct device *dev, | ||
829 | struct device_attribute *devattr, | ||
830 | char *buf) | ||
831 | { | ||
832 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
833 | struct adt7473_data *data = adt7473_update_device(dev); | ||
834 | int bhvr = data->pwm_behavior[attr->index] >> ADT7473_PWM_BHVR_SHIFT; | ||
835 | |||
836 | switch (bhvr) { | ||
837 | case 3: | ||
838 | case 4: | ||
839 | case 7: | ||
840 | return sprintf(buf, "0\n"); | ||
841 | case 0: | ||
842 | case 1: | ||
843 | case 5: | ||
844 | case 6: | ||
845 | return sprintf(buf, "%d\n", bhvr + 1); | ||
846 | case 2: | ||
847 | return sprintf(buf, "4\n"); | ||
848 | } | ||
849 | /* shouldn't ever get here */ | ||
850 | BUG(); | ||
851 | } | ||
852 | |||
853 | static ssize_t set_pwm_auto_temp(struct device *dev, | ||
854 | struct device_attribute *devattr, | ||
855 | const char *buf, | ||
856 | size_t count) | ||
857 | { | ||
858 | u8 reg; | ||
859 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
860 | struct i2c_client *client = to_i2c_client(dev); | ||
861 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
862 | long temp; | ||
863 | |||
864 | if (strict_strtol(buf, 10, &temp)) | ||
865 | return -EINVAL; | ||
866 | |||
867 | switch (temp) { | ||
868 | case 1: | ||
869 | case 2: | ||
870 | case 6: | ||
871 | case 7: | ||
872 | temp--; | ||
873 | break; | ||
874 | case 0: | ||
875 | temp = 4; | ||
876 | break; | ||
877 | default: | ||
878 | return -EINVAL; | ||
879 | } | ||
880 | |||
881 | mutex_lock(&data->lock); | ||
882 | reg = i2c_smbus_read_byte_data(client, | ||
883 | ADT7473_REG_PWM_BHVR(attr->index)); | ||
884 | reg = (temp << ADT7473_PWM_BHVR_SHIFT) | | ||
885 | (reg & ~ADT7473_PWM_BHVR_MASK); | ||
886 | i2c_smbus_write_byte_data(client, ADT7473_REG_PWM_BHVR(attr->index), | ||
887 | reg); | ||
888 | data->pwm_behavior[attr->index] = reg; | ||
889 | mutex_unlock(&data->lock); | ||
890 | |||
891 | return count; | ||
892 | } | ||
893 | |||
894 | static ssize_t show_alarm(struct device *dev, | ||
895 | struct device_attribute *devattr, | ||
896 | char *buf) | ||
897 | { | ||
898 | struct sensor_device_attribute *attr = to_sensor_dev_attr(devattr); | ||
899 | struct adt7473_data *data = adt7473_update_device(dev); | ||
900 | |||
901 | if (data->alarm & attr->index) | ||
902 | return sprintf(buf, "1\n"); | ||
903 | else | ||
904 | return sprintf(buf, "0\n"); | ||
905 | } | ||
906 | |||
907 | |||
908 | static SENSOR_DEVICE_ATTR(in1_max, S_IWUSR | S_IRUGO, show_volt_max, | ||
909 | set_volt_max, 0); | ||
910 | static SENSOR_DEVICE_ATTR(in2_max, S_IWUSR | S_IRUGO, show_volt_max, | ||
911 | set_volt_max, 1); | ||
912 | |||
913 | static SENSOR_DEVICE_ATTR(in1_min, S_IWUSR | S_IRUGO, show_volt_min, | ||
914 | set_volt_min, 0); | ||
915 | static SENSOR_DEVICE_ATTR(in2_min, S_IWUSR | S_IRUGO, show_volt_min, | ||
916 | set_volt_min, 1); | ||
917 | |||
918 | static SENSOR_DEVICE_ATTR(in1_input, S_IRUGO, show_volt, NULL, 0); | ||
919 | static SENSOR_DEVICE_ATTR(in2_input, S_IRUGO, show_volt, NULL, 1); | ||
920 | |||
921 | static SENSOR_DEVICE_ATTR(in1_alarm, S_IRUGO, show_alarm, NULL, | ||
922 | ADT7473_VCCP_ALARM); | ||
923 | static SENSOR_DEVICE_ATTR(in2_alarm, S_IRUGO, show_alarm, NULL, | ||
924 | ADT7473_VCC_ALARM); | ||
925 | |||
926 | static SENSOR_DEVICE_ATTR(temp1_max, S_IWUSR | S_IRUGO, show_temp_max, | ||
927 | set_temp_max, 0); | ||
928 | static SENSOR_DEVICE_ATTR(temp2_max, S_IWUSR | S_IRUGO, show_temp_max, | ||
929 | set_temp_max, 1); | ||
930 | static SENSOR_DEVICE_ATTR(temp3_max, S_IWUSR | S_IRUGO, show_temp_max, | ||
931 | set_temp_max, 2); | ||
932 | |||
933 | static SENSOR_DEVICE_ATTR(temp1_min, S_IWUSR | S_IRUGO, show_temp_min, | ||
934 | set_temp_min, 0); | ||
935 | static SENSOR_DEVICE_ATTR(temp2_min, S_IWUSR | S_IRUGO, show_temp_min, | ||
936 | set_temp_min, 1); | ||
937 | static SENSOR_DEVICE_ATTR(temp3_min, S_IWUSR | S_IRUGO, show_temp_min, | ||
938 | set_temp_min, 2); | ||
939 | |||
940 | static SENSOR_DEVICE_ATTR(temp1_input, S_IRUGO, show_temp, NULL, 0); | ||
941 | static SENSOR_DEVICE_ATTR(temp2_input, S_IRUGO, show_temp, NULL, 1); | ||
942 | static SENSOR_DEVICE_ATTR(temp3_input, S_IRUGO, show_temp, NULL, 2); | ||
943 | |||
944 | static SENSOR_DEVICE_ATTR(temp1_alarm, S_IRUGO, show_alarm, NULL, | ||
945 | ADT7473_R1T_ALARM | ALARM2(ADT7473_R1T_SHORT)); | ||
946 | static SENSOR_DEVICE_ATTR(temp2_alarm, S_IRUGO, show_alarm, NULL, | ||
947 | ADT7473_LT_ALARM); | ||
948 | static SENSOR_DEVICE_ATTR(temp3_alarm, S_IRUGO, show_alarm, NULL, | ||
949 | ADT7473_R2T_ALARM | ALARM2(ADT7473_R2T_SHORT)); | ||
950 | |||
951 | static SENSOR_DEVICE_ATTR(fan1_min, S_IWUSR | S_IRUGO, show_fan_min, | ||
952 | set_fan_min, 0); | ||
953 | static SENSOR_DEVICE_ATTR(fan2_min, S_IWUSR | S_IRUGO, show_fan_min, | ||
954 | set_fan_min, 1); | ||
955 | static SENSOR_DEVICE_ATTR(fan3_min, S_IWUSR | S_IRUGO, show_fan_min, | ||
956 | set_fan_min, 2); | ||
957 | static SENSOR_DEVICE_ATTR(fan4_min, S_IWUSR | S_IRUGO, show_fan_min, | ||
958 | set_fan_min, 3); | ||
959 | |||
960 | static SENSOR_DEVICE_ATTR(fan1_input, S_IRUGO, show_fan, NULL, 0); | ||
961 | static SENSOR_DEVICE_ATTR(fan2_input, S_IRUGO, show_fan, NULL, 1); | ||
962 | static SENSOR_DEVICE_ATTR(fan3_input, S_IRUGO, show_fan, NULL, 2); | ||
963 | static SENSOR_DEVICE_ATTR(fan4_input, S_IRUGO, show_fan, NULL, 3); | ||
964 | |||
965 | static SENSOR_DEVICE_ATTR(fan1_alarm, S_IRUGO, show_alarm, NULL, | ||
966 | ALARM2(ADT7473_FAN1_ALARM)); | ||
967 | static SENSOR_DEVICE_ATTR(fan2_alarm, S_IRUGO, show_alarm, NULL, | ||
968 | ALARM2(ADT7473_FAN2_ALARM)); | ||
969 | static SENSOR_DEVICE_ATTR(fan3_alarm, S_IRUGO, show_alarm, NULL, | ||
970 | ALARM2(ADT7473_FAN3_ALARM)); | ||
971 | static SENSOR_DEVICE_ATTR(fan4_alarm, S_IRUGO, show_alarm, NULL, | ||
972 | ALARM2(ADT7473_FAN4_ALARM)); | ||
973 | |||
974 | static SENSOR_DEVICE_ATTR(pwm_use_point2_pwm_at_crit, S_IWUSR | S_IRUGO, | ||
975 | show_max_duty_at_crit, set_max_duty_at_crit, 0); | ||
976 | |||
977 | static SENSOR_DEVICE_ATTR(pwm1, S_IWUSR | S_IRUGO, show_pwm, set_pwm, 0); | ||
978 | static SENSOR_DEVICE_ATTR(pwm2, S_IWUSR | S_IRUGO, show_pwm, set_pwm, 1); | ||
979 | static SENSOR_DEVICE_ATTR(pwm3, S_IWUSR | S_IRUGO, show_pwm, set_pwm, 2); | ||
980 | |||
981 | static SENSOR_DEVICE_ATTR(pwm1_auto_point1_pwm, S_IWUSR | S_IRUGO, | ||
982 | show_pwm_min, set_pwm_min, 0); | ||
983 | static SENSOR_DEVICE_ATTR(pwm2_auto_point1_pwm, S_IWUSR | S_IRUGO, | ||
984 | show_pwm_min, set_pwm_min, 1); | ||
985 | static SENSOR_DEVICE_ATTR(pwm3_auto_point1_pwm, S_IWUSR | S_IRUGO, | ||
986 | show_pwm_min, set_pwm_min, 2); | ||
987 | |||
988 | static SENSOR_DEVICE_ATTR(pwm1_auto_point2_pwm, S_IWUSR | S_IRUGO, | ||
989 | show_pwm_max, set_pwm_max, 0); | ||
990 | static SENSOR_DEVICE_ATTR(pwm2_auto_point2_pwm, S_IWUSR | S_IRUGO, | ||
991 | show_pwm_max, set_pwm_max, 1); | ||
992 | static SENSOR_DEVICE_ATTR(pwm3_auto_point2_pwm, S_IWUSR | S_IRUGO, | ||
993 | show_pwm_max, set_pwm_max, 2); | ||
994 | |||
995 | static SENSOR_DEVICE_ATTR(temp1_auto_point1_temp, S_IWUSR | S_IRUGO, | ||
996 | show_temp_tmin, set_temp_tmin, 0); | ||
997 | static SENSOR_DEVICE_ATTR(temp2_auto_point1_temp, S_IWUSR | S_IRUGO, | ||
998 | show_temp_tmin, set_temp_tmin, 1); | ||
999 | static SENSOR_DEVICE_ATTR(temp3_auto_point1_temp, S_IWUSR | S_IRUGO, | ||
1000 | show_temp_tmin, set_temp_tmin, 2); | ||
1001 | |||
1002 | static SENSOR_DEVICE_ATTR(temp1_auto_point2_temp, S_IWUSR | S_IRUGO, | ||
1003 | show_temp_tmax, set_temp_tmax, 0); | ||
1004 | static SENSOR_DEVICE_ATTR(temp2_auto_point2_temp, S_IWUSR | S_IRUGO, | ||
1005 | show_temp_tmax, set_temp_tmax, 1); | ||
1006 | static SENSOR_DEVICE_ATTR(temp3_auto_point2_temp, S_IWUSR | S_IRUGO, | ||
1007 | show_temp_tmax, set_temp_tmax, 2); | ||
1008 | |||
1009 | static SENSOR_DEVICE_ATTR(pwm1_enable, S_IWUSR | S_IRUGO, show_pwm_enable, | ||
1010 | set_pwm_enable, 0); | ||
1011 | static SENSOR_DEVICE_ATTR(pwm2_enable, S_IWUSR | S_IRUGO, show_pwm_enable, | ||
1012 | set_pwm_enable, 1); | ||
1013 | static SENSOR_DEVICE_ATTR(pwm3_enable, S_IWUSR | S_IRUGO, show_pwm_enable, | ||
1014 | set_pwm_enable, 2); | ||
1015 | |||
1016 | static SENSOR_DEVICE_ATTR(pwm1_auto_channels_temp, S_IWUSR | S_IRUGO, | ||
1017 | show_pwm_auto_temp, set_pwm_auto_temp, 0); | ||
1018 | static SENSOR_DEVICE_ATTR(pwm2_auto_channels_temp, S_IWUSR | S_IRUGO, | ||
1019 | show_pwm_auto_temp, set_pwm_auto_temp, 1); | ||
1020 | static SENSOR_DEVICE_ATTR(pwm3_auto_channels_temp, S_IWUSR | S_IRUGO, | ||
1021 | show_pwm_auto_temp, set_pwm_auto_temp, 2); | ||
1022 | |||
1023 | static struct attribute *adt7473_attr[] = | ||
1024 | { | ||
1025 | &sensor_dev_attr_in1_max.dev_attr.attr, | ||
1026 | &sensor_dev_attr_in2_max.dev_attr.attr, | ||
1027 | &sensor_dev_attr_in1_min.dev_attr.attr, | ||
1028 | &sensor_dev_attr_in2_min.dev_attr.attr, | ||
1029 | &sensor_dev_attr_in1_input.dev_attr.attr, | ||
1030 | &sensor_dev_attr_in2_input.dev_attr.attr, | ||
1031 | &sensor_dev_attr_in1_alarm.dev_attr.attr, | ||
1032 | &sensor_dev_attr_in2_alarm.dev_attr.attr, | ||
1033 | |||
1034 | &sensor_dev_attr_temp1_max.dev_attr.attr, | ||
1035 | &sensor_dev_attr_temp2_max.dev_attr.attr, | ||
1036 | &sensor_dev_attr_temp3_max.dev_attr.attr, | ||
1037 | &sensor_dev_attr_temp1_min.dev_attr.attr, | ||
1038 | &sensor_dev_attr_temp2_min.dev_attr.attr, | ||
1039 | &sensor_dev_attr_temp3_min.dev_attr.attr, | ||
1040 | &sensor_dev_attr_temp1_input.dev_attr.attr, | ||
1041 | &sensor_dev_attr_temp2_input.dev_attr.attr, | ||
1042 | &sensor_dev_attr_temp3_input.dev_attr.attr, | ||
1043 | &sensor_dev_attr_temp1_alarm.dev_attr.attr, | ||
1044 | &sensor_dev_attr_temp2_alarm.dev_attr.attr, | ||
1045 | &sensor_dev_attr_temp3_alarm.dev_attr.attr, | ||
1046 | &sensor_dev_attr_temp1_auto_point1_temp.dev_attr.attr, | ||
1047 | &sensor_dev_attr_temp2_auto_point1_temp.dev_attr.attr, | ||
1048 | &sensor_dev_attr_temp3_auto_point1_temp.dev_attr.attr, | ||
1049 | &sensor_dev_attr_temp1_auto_point2_temp.dev_attr.attr, | ||
1050 | &sensor_dev_attr_temp2_auto_point2_temp.dev_attr.attr, | ||
1051 | &sensor_dev_attr_temp3_auto_point2_temp.dev_attr.attr, | ||
1052 | |||
1053 | &sensor_dev_attr_fan1_min.dev_attr.attr, | ||
1054 | &sensor_dev_attr_fan2_min.dev_attr.attr, | ||
1055 | &sensor_dev_attr_fan3_min.dev_attr.attr, | ||
1056 | &sensor_dev_attr_fan4_min.dev_attr.attr, | ||
1057 | &sensor_dev_attr_fan1_input.dev_attr.attr, | ||
1058 | &sensor_dev_attr_fan2_input.dev_attr.attr, | ||
1059 | &sensor_dev_attr_fan3_input.dev_attr.attr, | ||
1060 | &sensor_dev_attr_fan4_input.dev_attr.attr, | ||
1061 | &sensor_dev_attr_fan1_alarm.dev_attr.attr, | ||
1062 | &sensor_dev_attr_fan2_alarm.dev_attr.attr, | ||
1063 | &sensor_dev_attr_fan3_alarm.dev_attr.attr, | ||
1064 | &sensor_dev_attr_fan4_alarm.dev_attr.attr, | ||
1065 | |||
1066 | &sensor_dev_attr_pwm_use_point2_pwm_at_crit.dev_attr.attr, | ||
1067 | |||
1068 | &sensor_dev_attr_pwm1.dev_attr.attr, | ||
1069 | &sensor_dev_attr_pwm2.dev_attr.attr, | ||
1070 | &sensor_dev_attr_pwm3.dev_attr.attr, | ||
1071 | &sensor_dev_attr_pwm1_auto_point1_pwm.dev_attr.attr, | ||
1072 | &sensor_dev_attr_pwm2_auto_point1_pwm.dev_attr.attr, | ||
1073 | &sensor_dev_attr_pwm3_auto_point1_pwm.dev_attr.attr, | ||
1074 | &sensor_dev_attr_pwm1_auto_point2_pwm.dev_attr.attr, | ||
1075 | &sensor_dev_attr_pwm2_auto_point2_pwm.dev_attr.attr, | ||
1076 | &sensor_dev_attr_pwm3_auto_point2_pwm.dev_attr.attr, | ||
1077 | |||
1078 | &sensor_dev_attr_pwm1_enable.dev_attr.attr, | ||
1079 | &sensor_dev_attr_pwm2_enable.dev_attr.attr, | ||
1080 | &sensor_dev_attr_pwm3_enable.dev_attr.attr, | ||
1081 | &sensor_dev_attr_pwm1_auto_channels_temp.dev_attr.attr, | ||
1082 | &sensor_dev_attr_pwm2_auto_channels_temp.dev_attr.attr, | ||
1083 | &sensor_dev_attr_pwm3_auto_channels_temp.dev_attr.attr, | ||
1084 | |||
1085 | NULL | ||
1086 | }; | ||
1087 | |||
1088 | /* Return 0 if detection is successful, -ENODEV otherwise */ | ||
1089 | static int adt7473_detect(struct i2c_client *client, int kind, | ||
1090 | struct i2c_board_info *info) | ||
1091 | { | ||
1092 | struct i2c_adapter *adapter = client->adapter; | ||
1093 | |||
1094 | if (!i2c_check_functionality(adapter, I2C_FUNC_SMBUS_BYTE_DATA)) | ||
1095 | return -ENODEV; | ||
1096 | |||
1097 | if (kind <= 0) { | ||
1098 | int vendor, device, revision; | ||
1099 | |||
1100 | vendor = i2c_smbus_read_byte_data(client, ADT7473_REG_VENDOR); | ||
1101 | if (vendor != ADT7473_VENDOR) | ||
1102 | return -ENODEV; | ||
1103 | |||
1104 | device = i2c_smbus_read_byte_data(client, ADT7473_REG_DEVICE); | ||
1105 | if (device != ADT7473_DEVICE) | ||
1106 | return -ENODEV; | ||
1107 | |||
1108 | revision = i2c_smbus_read_byte_data(client, | ||
1109 | ADT7473_REG_REVISION); | ||
1110 | if (revision != ADT7473_REV_68 && revision != ADT7473_REV_69) | ||
1111 | return -ENODEV; | ||
1112 | } else | ||
1113 | dev_dbg(&adapter->dev, "detection forced\n"); | ||
1114 | |||
1115 | strlcpy(info->type, "adt7473", I2C_NAME_SIZE); | ||
1116 | |||
1117 | return 0; | ||
1118 | } | ||
1119 | |||
1120 | static int adt7473_probe(struct i2c_client *client, | ||
1121 | const struct i2c_device_id *id) | ||
1122 | { | ||
1123 | struct adt7473_data *data; | ||
1124 | int err; | ||
1125 | |||
1126 | data = kzalloc(sizeof(struct adt7473_data), GFP_KERNEL); | ||
1127 | if (!data) { | ||
1128 | err = -ENOMEM; | ||
1129 | goto exit; | ||
1130 | } | ||
1131 | |||
1132 | i2c_set_clientdata(client, data); | ||
1133 | mutex_init(&data->lock); | ||
1134 | |||
1135 | dev_info(&client->dev, "%s chip found\n", client->name); | ||
1136 | |||
1137 | /* Initialize the ADT7473 chip */ | ||
1138 | adt7473_init_client(client); | ||
1139 | |||
1140 | /* Register sysfs hooks */ | ||
1141 | data->attrs.attrs = adt7473_attr; | ||
1142 | err = sysfs_create_group(&client->dev.kobj, &data->attrs); | ||
1143 | if (err) | ||
1144 | goto exit_free; | ||
1145 | |||
1146 | data->hwmon_dev = hwmon_device_register(&client->dev); | ||
1147 | if (IS_ERR(data->hwmon_dev)) { | ||
1148 | err = PTR_ERR(data->hwmon_dev); | ||
1149 | goto exit_remove; | ||
1150 | } | ||
1151 | |||
1152 | return 0; | ||
1153 | |||
1154 | exit_remove: | ||
1155 | sysfs_remove_group(&client->dev.kobj, &data->attrs); | ||
1156 | exit_free: | ||
1157 | kfree(data); | ||
1158 | exit: | ||
1159 | return err; | ||
1160 | } | ||
1161 | |||
1162 | static int adt7473_remove(struct i2c_client *client) | ||
1163 | { | ||
1164 | struct adt7473_data *data = i2c_get_clientdata(client); | ||
1165 | |||
1166 | hwmon_device_unregister(data->hwmon_dev); | ||
1167 | sysfs_remove_group(&client->dev.kobj, &data->attrs); | ||
1168 | kfree(data); | ||
1169 | return 0; | ||
1170 | } | ||
1171 | |||
1172 | static int __init adt7473_init(void) | ||
1173 | { | ||
1174 | return i2c_add_driver(&adt7473_driver); | ||
1175 | } | ||
1176 | |||
1177 | static void __exit adt7473_exit(void) | ||
1178 | { | ||
1179 | i2c_del_driver(&adt7473_driver); | ||
1180 | } | ||
1181 | |||
1182 | MODULE_AUTHOR("Darrick J. Wong <djwong@us.ibm.com>"); | ||
1183 | MODULE_DESCRIPTION("ADT7473 driver"); | ||
1184 | MODULE_LICENSE("GPL"); | ||
1185 | |||
1186 | module_init(adt7473_init); | ||
1187 | module_exit(adt7473_exit); | ||