1 /***************************************************************************
2 * Copyright (C) 2006 by Hans Edgington <hans@edgington.nl> *
3 * Copyright (C) 2007 by Hans de Goede <j.w.r.degoede@hhs.nl> *
5 * This program is free software; you can redistribute it and/or modify *
6 * it under the terms of the GNU General Public License as published by *
7 * the Free Software Foundation; either version 2 of the License, or *
8 * (at your option) any later version. *
10 * This program is distributed in the hope that it will be useful, *
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of *
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the *
13 * GNU General Public License for more details. *
15 * You should have received a copy of the GNU General Public License *
16 * along with this program; if not, write to the *
17 * Free Software Foundation, Inc., *
18 * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
19 ***************************************************************************/
21 #include <linux/module.h>
22 #include <linux/init.h>
23 #include <linux/slab.h>
24 #include <linux/jiffies.h>
25 #include <linux/platform_device.h>
26 #include <linux/hwmon.h>
27 #include <linux/hwmon-sysfs.h>
28 #include <linux/err.h>
29 #include <linux/mutex.h>
32 #define DRVNAME "f71882fg"
34 #define SIO_F71882FG_LD_HWM 0x04 /* Hardware monitor logical device*/
35 #define SIO_UNLOCK_KEY 0x87 /* Key to enable Super-I/O */
36 #define SIO_LOCK_KEY 0xAA /* Key to diasble Super-I/O */
38 #define SIO_REG_LDSEL 0x07 /* Logical device select */
39 #define SIO_REG_DEVID 0x20 /* Device ID (2 bytes) */
40 #define SIO_REG_DEVREV 0x22 /* Device revision */
41 #define SIO_REG_MANID 0x23 /* Fintek ID (2 bytes) */
42 #define SIO_REG_ENABLE 0x30 /* Logical device enable */
43 #define SIO_REG_ADDR 0x60 /* Logical device address (2 bytes) */
45 #define SIO_FINTEK_ID 0x1934 /* Manufacturers ID */
46 #define SIO_F71882_ID 0x0541 /* Chipset ID */
48 #define REGION_LENGTH 8
49 #define ADDR_REG_OFFSET 5
50 #define DATA_REG_OFFSET 6
52 #define F71882FG_REG_PECI 0x0A
54 #define F71882FG_REG_IN_STATUS 0x12
55 #define F71882FG_REG_IN_BEEP 0x13
56 #define F71882FG_REG_IN(nr) (0x20 + (nr))
57 #define F71882FG_REG_IN1_HIGH 0x32
59 #define F71882FG_REG_FAN(nr) (0xA0 + (16 * (nr)))
60 #define F71882FG_REG_FAN_STATUS 0x92
61 #define F71882FG_REG_FAN_BEEP 0x93
63 #define F71882FG_REG_TEMP(nr) (0x72 + 2 * (nr))
64 #define F71882FG_REG_TEMP_OVT(nr) (0x82 + 2 * (nr))
65 #define F71882FG_REG_TEMP_HIGH(nr) (0x83 + 2 * (nr))
66 #define F71882FG_REG_TEMP_STATUS 0x62
67 #define F71882FG_REG_TEMP_BEEP 0x63
68 #define F71882FG_REG_TEMP_HYST1 0x6C
69 #define F71882FG_REG_TEMP_HYST23 0x6D
70 #define F71882FG_REG_TEMP_TYPE 0x6B
71 #define F71882FG_REG_TEMP_DIODE_OPEN 0x6F
73 #define F71882FG_REG_START 0x01
75 #define FAN_MIN_DETECT 366 /* Lowest detectable fanspeed */
77 static unsigned short force_id
;
78 module_param(force_id
, ushort
, 0);
79 MODULE_PARM_DESC(force_id
, "Override the detected device ID");
81 static struct platform_device
*f71882fg_pdev
= NULL
;
83 /* Super-I/O Function prototypes */
84 static inline int superio_inb(int base
, int reg
);
85 static inline int superio_inw(int base
, int reg
);
86 static inline void superio_enter(int base
);
87 static inline void superio_select(int base
, int ld
);
88 static inline void superio_exit(int base
);
90 struct f71882fg_data
{
92 struct device
*hwmon_dev
;
94 struct mutex update_lock
;
95 char valid
; /* !=0 if following fields are valid */
96 unsigned long last_updated
; /* In jiffies */
97 unsigned long last_limits
; /* In jiffies */
118 static ssize_t
show_in(struct device
*dev
, struct device_attribute
*devattr
,
120 static ssize_t
show_in_max(struct device
*dev
, struct device_attribute
121 *devattr
, char *buf
);
122 static ssize_t
store_in_max(struct device
*dev
, struct device_attribute
123 *devattr
, const char *buf
, size_t count
);
124 static ssize_t
show_in_beep(struct device
*dev
, struct device_attribute
125 *devattr
, char *buf
);
126 static ssize_t
store_in_beep(struct device
*dev
, struct device_attribute
127 *devattr
, const char *buf
, size_t count
);
128 static ssize_t
show_in_alarm(struct device
*dev
, struct device_attribute
129 *devattr
, char *buf
);
131 static ssize_t
show_fan(struct device
*dev
, struct device_attribute
*devattr
,
133 static ssize_t
show_fan_beep(struct device
*dev
, struct device_attribute
134 *devattr
, char *buf
);
135 static ssize_t
store_fan_beep(struct device
*dev
, struct device_attribute
136 *devattr
, const char *buf
, size_t count
);
137 static ssize_t
show_fan_alarm(struct device
*dev
, struct device_attribute
138 *devattr
, char *buf
);
140 static ssize_t
show_temp(struct device
*dev
, struct device_attribute
141 *devattr
, char *buf
);
142 static ssize_t
show_temp_max(struct device
*dev
, struct device_attribute
143 *devattr
, char *buf
);
144 static ssize_t
store_temp_max(struct device
*dev
, struct device_attribute
145 *devattr
, const char *buf
, size_t count
);
146 static ssize_t
show_temp_max_hyst(struct device
*dev
, struct device_attribute
147 *devattr
, char *buf
);
148 static ssize_t
store_temp_max_hyst(struct device
*dev
, struct device_attribute
149 *devattr
, const char *buf
, size_t count
);
150 static ssize_t
show_temp_crit(struct device
*dev
, struct device_attribute
151 *devattr
, char *buf
);
152 static ssize_t
store_temp_crit(struct device
*dev
, struct device_attribute
153 *devattr
, const char *buf
, size_t count
);
154 static ssize_t
show_temp_crit_hyst(struct device
*dev
, struct device_attribute
155 *devattr
, char *buf
);
156 static ssize_t
show_temp_type(struct device
*dev
, struct device_attribute
157 *devattr
, char *buf
);
158 static ssize_t
show_temp_beep(struct device
*dev
, struct device_attribute
159 *devattr
, char *buf
);
160 static ssize_t
store_temp_beep(struct device
*dev
, struct device_attribute
161 *devattr
, const char *buf
, size_t count
);
162 static ssize_t
show_temp_alarm(struct device
*dev
, struct device_attribute
163 *devattr
, char *buf
);
164 static ssize_t
show_temp_fault(struct device
*dev
, struct device_attribute
165 *devattr
, char *buf
);
167 static ssize_t
show_name(struct device
*dev
, struct device_attribute
*devattr
,
170 static int __devinit
f71882fg_probe(struct platform_device
* pdev
);
171 static int __devexit
f71882fg_remove(struct platform_device
*pdev
);
172 static int __init
f71882fg_init(void);
173 static int __init
f71882fg_find(int sioaddr
, unsigned short *address
);
174 static int __init
f71882fg_device_add(unsigned short address
);
175 static void __exit
f71882fg_exit(void);
177 static struct platform_driver f71882fg_driver
= {
179 .owner
= THIS_MODULE
,
182 .probe
= f71882fg_probe
,
183 .remove
= __devexit_p(f71882fg_remove
),
186 static struct device_attribute f71882fg_dev_attr
[] =
188 __ATTR( name
, S_IRUGO
, show_name
, NULL
),
191 static struct sensor_device_attribute f71882fg_in_temp_attr
[] =
193 SENSOR_ATTR(in0_input
, S_IRUGO
, show_in
, NULL
, 0),
194 SENSOR_ATTR(in1_input
, S_IRUGO
, show_in
, NULL
, 1),
195 SENSOR_ATTR(in1_max
, S_IRUGO
|S_IWUSR
, show_in_max
, store_in_max
, 1),
196 SENSOR_ATTR(in1_beep
, S_IRUGO
|S_IWUSR
, show_in_beep
, store_in_beep
, 1),
197 SENSOR_ATTR(in1_alarm
, S_IRUGO
, show_in_alarm
, NULL
, 1),
198 SENSOR_ATTR(in2_input
, S_IRUGO
, show_in
, NULL
, 2),
199 SENSOR_ATTR(in3_input
, S_IRUGO
, show_in
, NULL
, 3),
200 SENSOR_ATTR(in4_input
, S_IRUGO
, show_in
, NULL
, 4),
201 SENSOR_ATTR(in5_input
, S_IRUGO
, show_in
, NULL
, 5),
202 SENSOR_ATTR(in6_input
, S_IRUGO
, show_in
, NULL
, 6),
203 SENSOR_ATTR(in7_input
, S_IRUGO
, show_in
, NULL
, 7),
204 SENSOR_ATTR(in8_input
, S_IRUGO
, show_in
, NULL
, 8),
205 SENSOR_ATTR(temp1_input
, S_IRUGO
, show_temp
, NULL
, 0),
206 SENSOR_ATTR(temp1_max
, S_IRUGO
|S_IWUSR
, show_temp_max
,
208 SENSOR_ATTR(temp1_max_hyst
, S_IRUGO
|S_IWUSR
, show_temp_max_hyst
,
209 store_temp_max_hyst
, 0),
210 SENSOR_ATTR(temp1_crit
, S_IRUGO
|S_IWUSR
, show_temp_crit
,
212 SENSOR_ATTR(temp1_crit_hyst
, S_IRUGO
, show_temp_crit_hyst
, NULL
, 0),
213 SENSOR_ATTR(temp1_type
, S_IRUGO
, show_temp_type
, NULL
, 0),
214 SENSOR_ATTR(temp1_beep
, S_IRUGO
|S_IWUSR
, show_temp_beep
,
216 SENSOR_ATTR(temp1_alarm
, S_IRUGO
, show_temp_alarm
, NULL
, 0),
217 SENSOR_ATTR(temp1_fault
, S_IRUGO
, show_temp_fault
, NULL
, 0),
218 SENSOR_ATTR(temp2_input
, S_IRUGO
, show_temp
, NULL
, 1),
219 SENSOR_ATTR(temp2_max
, S_IRUGO
|S_IWUSR
, show_temp_max
,
221 SENSOR_ATTR(temp2_max_hyst
, S_IRUGO
|S_IWUSR
, show_temp_max_hyst
,
222 store_temp_max_hyst
, 1),
223 SENSOR_ATTR(temp2_crit
, S_IRUGO
|S_IWUSR
, show_temp_crit
,
225 SENSOR_ATTR(temp2_crit_hyst
, S_IRUGO
, show_temp_crit_hyst
, NULL
, 1),
226 SENSOR_ATTR(temp2_type
, S_IRUGO
, show_temp_type
, NULL
, 1),
227 SENSOR_ATTR(temp2_beep
, S_IRUGO
|S_IWUSR
, show_temp_beep
,
229 SENSOR_ATTR(temp2_alarm
, S_IRUGO
, show_temp_alarm
, NULL
, 1),
230 SENSOR_ATTR(temp2_fault
, S_IRUGO
, show_temp_fault
, NULL
, 1),
231 SENSOR_ATTR(temp3_input
, S_IRUGO
, show_temp
, NULL
, 2),
232 SENSOR_ATTR(temp3_max
, S_IRUGO
|S_IWUSR
, show_temp_max
,
234 SENSOR_ATTR(temp3_max_hyst
, S_IRUGO
|S_IWUSR
, show_temp_max_hyst
,
235 store_temp_max_hyst
, 2),
236 SENSOR_ATTR(temp3_crit
, S_IRUGO
|S_IWUSR
, show_temp_crit
,
238 SENSOR_ATTR(temp3_crit_hyst
, S_IRUGO
, show_temp_crit_hyst
, NULL
, 2),
239 SENSOR_ATTR(temp3_type
, S_IRUGO
, show_temp_type
, NULL
, 2),
240 SENSOR_ATTR(temp3_beep
, S_IRUGO
|S_IWUSR
, show_temp_beep
,
242 SENSOR_ATTR(temp3_alarm
, S_IRUGO
, show_temp_alarm
, NULL
, 2),
243 SENSOR_ATTR(temp3_fault
, S_IRUGO
, show_temp_fault
, NULL
, 2)
246 static struct sensor_device_attribute f71882fg_fan_attr
[] =
248 SENSOR_ATTR(fan1_input
, S_IRUGO
, show_fan
, NULL
, 0),
249 SENSOR_ATTR(fan1_beep
, S_IRUGO
|S_IWUSR
, show_fan_beep
,
251 SENSOR_ATTR(fan1_alarm
, S_IRUGO
, show_fan_alarm
, NULL
, 0),
252 SENSOR_ATTR(fan2_input
, S_IRUGO
, show_fan
, NULL
, 1),
253 SENSOR_ATTR(fan2_beep
, S_IRUGO
|S_IWUSR
, show_fan_beep
,
255 SENSOR_ATTR(fan2_alarm
, S_IRUGO
, show_fan_alarm
, NULL
, 1),
256 SENSOR_ATTR(fan3_input
, S_IRUGO
, show_fan
, NULL
, 2),
257 SENSOR_ATTR(fan3_beep
, S_IRUGO
|S_IWUSR
, show_fan_beep
,
259 SENSOR_ATTR(fan3_alarm
, S_IRUGO
, show_fan_alarm
, NULL
, 2),
260 SENSOR_ATTR(fan4_input
, S_IRUGO
, show_fan
, NULL
, 3),
261 SENSOR_ATTR(fan4_beep
, S_IRUGO
|S_IWUSR
, show_fan_beep
,
263 SENSOR_ATTR(fan4_alarm
, S_IRUGO
, show_fan_alarm
, NULL
, 3)
267 /* Super I/O functions */
268 static inline int superio_inb(int base
, int reg
)
271 return inb(base
+ 1);
274 static int superio_inw(int base
, int reg
)
278 val
= inb(base
+ 1) << 8;
280 val
|= inb(base
+ 1);
284 static inline void superio_enter(int base
)
286 /* according to the datasheet the key must be send twice! */
287 outb( SIO_UNLOCK_KEY
, base
);
288 outb( SIO_UNLOCK_KEY
, base
);
291 static inline void superio_select( int base
, int ld
)
293 outb(SIO_REG_LDSEL
, base
);
297 static inline void superio_exit(int base
)
299 outb(SIO_LOCK_KEY
, base
);
302 static inline u16
fan_from_reg(u16 reg
)
304 return reg
? (1500000 / reg
) : 0;
307 static u8
f71882fg_read8(struct f71882fg_data
*data
, u8 reg
)
311 outb(reg
, data
->addr
+ ADDR_REG_OFFSET
);
312 val
= inb(data
->addr
+ DATA_REG_OFFSET
);
317 static u16
f71882fg_read16(struct f71882fg_data
*data
, u8 reg
)
321 outb(reg
++, data
->addr
+ ADDR_REG_OFFSET
);
322 val
= inb(data
->addr
+ DATA_REG_OFFSET
) << 8;
323 outb(reg
, data
->addr
+ ADDR_REG_OFFSET
);
324 val
|= inb(data
->addr
+ DATA_REG_OFFSET
);
329 static void f71882fg_write8(struct f71882fg_data
*data
, u8 reg
, u8 val
)
331 outb(reg
, data
->addr
+ ADDR_REG_OFFSET
);
332 outb(val
, data
->addr
+ DATA_REG_OFFSET
);
335 static struct f71882fg_data
*f71882fg_update_device(struct device
* dev
)
337 struct f71882fg_data
*data
= dev_get_drvdata(dev
);
340 mutex_lock(&data
->update_lock
);
342 /* Update once every 60 seconds */
343 if ( time_after(jiffies
, data
->last_limits
+ 60 * HZ
) ||
345 data
->in1_max
= f71882fg_read8(data
, F71882FG_REG_IN1_HIGH
);
346 data
->in_beep
= f71882fg_read8(data
, F71882FG_REG_IN_BEEP
);
348 /* Get High & boundary temps*/
349 for (nr
= 0; nr
< 3; nr
++) {
350 data
->temp_ovt
[nr
] = f71882fg_read8(data
,
351 F71882FG_REG_TEMP_OVT(nr
));
352 data
->temp_high
[nr
] = f71882fg_read8(data
,
353 F71882FG_REG_TEMP_HIGH(nr
));
356 /* Have to hardcode hyst*/
357 data
->temp_hyst
[0] = f71882fg_read8(data
,
358 F71882FG_REG_TEMP_HYST1
) >> 4;
359 /* Hyst temps 2 & 3 stored in same register */
360 reg
= f71882fg_read8(data
, F71882FG_REG_TEMP_HYST23
);
361 data
->temp_hyst
[1] = reg
& 0x0F;
362 data
->temp_hyst
[2] = reg
>> 4;
364 /* Have to hardcode type, because temp1 is special */
365 reg
= f71882fg_read8(data
, F71882FG_REG_TEMP_TYPE
);
366 reg2
= f71882fg_read8(data
, F71882FG_REG_PECI
);
367 if ((reg2
& 0x03) == 0x01)
368 data
->temp_type
[0] = 6 /* PECI */;
369 else if ((reg2
& 0x03) == 0x02)
370 data
->temp_type
[0] = 5 /* AMDSI */;
372 data
->temp_type
[0] = (reg
& 0x02) ? 2 : 4;
374 data
->temp_type
[1] = (reg
& 0x04) ? 2 : 4;
375 data
->temp_type
[2] = (reg
& 0x08) ? 2 : 4;
377 data
->temp_beep
= f71882fg_read8(data
, F71882FG_REG_TEMP_BEEP
);
379 data
->fan_beep
= f71882fg_read8(data
, F71882FG_REG_FAN_BEEP
);
381 data
->last_limits
= jiffies
;
384 /* Update every second */
385 if (time_after(jiffies
, data
->last_updated
+ HZ
) || !data
->valid
) {
386 data
->temp_status
= f71882fg_read8(data
,
387 F71882FG_REG_TEMP_STATUS
);
388 data
->temp_diode_open
= f71882fg_read8(data
,
389 F71882FG_REG_TEMP_DIODE_OPEN
);
390 for (nr
= 0; nr
< 3; nr
++)
391 data
->temp
[nr
] = f71882fg_read8(data
,
392 F71882FG_REG_TEMP(nr
));
394 data
->fan_status
= f71882fg_read8(data
,
395 F71882FG_REG_FAN_STATUS
);
396 for (nr
= 0; nr
< 4; nr
++)
397 data
->fan
[nr
] = f71882fg_read16(data
,
398 F71882FG_REG_FAN(nr
));
400 data
->in_status
= f71882fg_read8(data
,
401 F71882FG_REG_IN_STATUS
);
402 for (nr
= 0; nr
< 9; nr
++)
403 data
->in
[nr
] = f71882fg_read8(data
,
404 F71882FG_REG_IN(nr
));
406 data
->last_updated
= jiffies
;
410 mutex_unlock(&data
->update_lock
);
415 /* Sysfs Interface */
416 static ssize_t
show_fan(struct device
*dev
, struct device_attribute
*devattr
,
419 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
420 int nr
= to_sensor_dev_attr(devattr
)->index
;
421 int speed
= fan_from_reg(data
->fan
[nr
]);
423 if (speed
== FAN_MIN_DETECT
)
426 return sprintf(buf
, "%d\n", speed
);
429 static ssize_t
show_fan_beep(struct device
*dev
, struct device_attribute
432 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
433 int nr
= to_sensor_dev_attr(devattr
)->index
;
435 if (data
->fan_beep
& (1 << nr
))
436 return sprintf(buf
, "1\n");
438 return sprintf(buf
, "0\n");
441 static ssize_t
store_fan_beep(struct device
*dev
, struct device_attribute
442 *devattr
, const char *buf
, size_t count
)
444 struct f71882fg_data
*data
= dev_get_drvdata(dev
);
445 int nr
= to_sensor_dev_attr(devattr
)->index
;
446 int val
= simple_strtoul(buf
, NULL
, 10);
448 mutex_lock(&data
->update_lock
);
450 data
->fan_beep
|= 1 << nr
;
452 data
->fan_beep
&= ~(1 << nr
);
454 f71882fg_write8(data
, F71882FG_REG_FAN_BEEP
, data
->fan_beep
);
455 mutex_unlock(&data
->update_lock
);
460 static ssize_t
show_fan_alarm(struct device
*dev
, struct device_attribute
463 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
464 int nr
= to_sensor_dev_attr(devattr
)->index
;
466 if (data
->fan_status
& (1 << nr
))
467 return sprintf(buf
, "1\n");
469 return sprintf(buf
, "0\n");
472 static ssize_t
show_in(struct device
*dev
, struct device_attribute
*devattr
,
475 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
476 int nr
= to_sensor_dev_attr(devattr
)->index
;
478 return sprintf(buf
, "%d\n", data
->in
[nr
] * 8);
481 static ssize_t
show_in_max(struct device
*dev
, struct device_attribute
484 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
486 return sprintf(buf
, "%d\n", data
->in1_max
* 8);
489 static ssize_t
store_in_max(struct device
*dev
, struct device_attribute
490 *devattr
, const char *buf
, size_t count
)
492 struct f71882fg_data
*data
= dev_get_drvdata(dev
);
493 int val
= simple_strtoul(buf
, NULL
, 10) / 8;
498 mutex_lock(&data
->update_lock
);
499 f71882fg_write8(data
, F71882FG_REG_IN1_HIGH
, val
);
501 mutex_unlock(&data
->update_lock
);
506 static ssize_t
show_in_beep(struct device
*dev
, struct device_attribute
509 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
510 int nr
= to_sensor_dev_attr(devattr
)->index
;
512 if (data
->in_beep
& (1 << nr
))
513 return sprintf(buf
, "1\n");
515 return sprintf(buf
, "0\n");
518 static ssize_t
store_in_beep(struct device
*dev
, struct device_attribute
519 *devattr
, const char *buf
, size_t count
)
521 struct f71882fg_data
*data
= dev_get_drvdata(dev
);
522 int nr
= to_sensor_dev_attr(devattr
)->index
;
523 int val
= simple_strtoul(buf
, NULL
, 10);
525 mutex_lock(&data
->update_lock
);
527 data
->in_beep
|= 1 << nr
;
529 data
->in_beep
&= ~(1 << nr
);
531 f71882fg_write8(data
, F71882FG_REG_IN_BEEP
, data
->in_beep
);
532 mutex_unlock(&data
->update_lock
);
537 static ssize_t
show_in_alarm(struct device
*dev
, struct device_attribute
540 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
541 int nr
= to_sensor_dev_attr(devattr
)->index
;
543 if (data
->in_status
& (1 << nr
))
544 return sprintf(buf
, "1\n");
546 return sprintf(buf
, "0\n");
549 static ssize_t
show_temp(struct device
*dev
, struct device_attribute
*devattr
,
552 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
553 int nr
= to_sensor_dev_attr(devattr
)->index
;
555 return sprintf(buf
, "%d\n", data
->temp
[nr
] * 1000);
558 static ssize_t
show_temp_max(struct device
*dev
, struct device_attribute
561 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
562 int nr
= to_sensor_dev_attr(devattr
)->index
;
564 return sprintf(buf
, "%d\n", data
->temp_high
[nr
] * 1000);
567 static ssize_t
store_temp_max(struct device
*dev
, struct device_attribute
568 *devattr
, const char *buf
, size_t count
)
570 struct f71882fg_data
*data
= dev_get_drvdata(dev
);
571 int nr
= to_sensor_dev_attr(devattr
)->index
;
572 int val
= simple_strtoul(buf
, NULL
, 10) / 1000;
577 mutex_lock(&data
->update_lock
);
578 f71882fg_write8(data
, F71882FG_REG_TEMP_HIGH(nr
), val
);
579 data
->temp_high
[nr
] = val
;
580 mutex_unlock(&data
->update_lock
);
585 static ssize_t
show_temp_max_hyst(struct device
*dev
, struct device_attribute
588 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
589 int nr
= to_sensor_dev_attr(devattr
)->index
;
591 return sprintf(buf
, "%d\n",
592 (data
->temp_high
[nr
] - data
->temp_hyst
[nr
]) * 1000);
595 static ssize_t
store_temp_max_hyst(struct device
*dev
, struct device_attribute
596 *devattr
, const char *buf
, size_t count
)
598 struct f71882fg_data
*data
= dev_get_drvdata(dev
);
599 int nr
= to_sensor_dev_attr(devattr
)->index
;
600 int val
= simple_strtoul(buf
, NULL
, 10) / 1000;
603 mutex_lock(&data
->update_lock
);
605 /* convert abs to relative and check */
606 val
= data
->temp_high
[nr
] - val
;
607 if (val
< 0 || val
> 15) {
609 goto store_temp_max_hyst_exit
;
612 data
->temp_hyst
[nr
] = val
;
614 /* convert value to register contents */
620 val
= val
| (data
->temp_hyst
[2] << 4);
623 val
= data
->temp_hyst
[1] | (val
<< 4);
627 f71882fg_write8(data
, nr
? F71882FG_REG_TEMP_HYST23
:
628 F71882FG_REG_TEMP_HYST1
, val
);
630 store_temp_max_hyst_exit
:
631 mutex_unlock(&data
->update_lock
);
635 static ssize_t
show_temp_crit(struct device
*dev
, struct device_attribute
638 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
639 int nr
= to_sensor_dev_attr(devattr
)->index
;
641 return sprintf(buf
, "%d\n", data
->temp_ovt
[nr
] * 1000);
644 static ssize_t
store_temp_crit(struct device
*dev
, struct device_attribute
645 *devattr
, const char *buf
, size_t count
)
647 struct f71882fg_data
*data
= dev_get_drvdata(dev
);
648 int nr
= to_sensor_dev_attr(devattr
)->index
;
649 int val
= simple_strtoul(buf
, NULL
, 10) / 1000;
654 mutex_lock(&data
->update_lock
);
655 f71882fg_write8(data
, F71882FG_REG_TEMP_OVT(nr
), val
);
656 data
->temp_ovt
[nr
] = val
;
657 mutex_unlock(&data
->update_lock
);
662 static ssize_t
show_temp_crit_hyst(struct device
*dev
, struct device_attribute
665 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
666 int nr
= to_sensor_dev_attr(devattr
)->index
;
668 return sprintf(buf
, "%d\n",
669 (data
->temp_ovt
[nr
] - data
->temp_hyst
[nr
]) * 1000);
672 static ssize_t
show_temp_type(struct device
*dev
, struct device_attribute
675 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
676 int nr
= to_sensor_dev_attr(devattr
)->index
;
678 return sprintf(buf
, "%d\n", data
->temp_type
[nr
]);
681 static ssize_t
show_temp_beep(struct device
*dev
, struct device_attribute
684 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
685 int nr
= to_sensor_dev_attr(devattr
)->index
;
687 if (data
->temp_beep
& (1 << (nr
+ 1)))
688 return sprintf(buf
, "1\n");
690 return sprintf(buf
, "0\n");
693 static ssize_t
store_temp_beep(struct device
*dev
, struct device_attribute
694 *devattr
, const char *buf
, size_t count
)
696 struct f71882fg_data
*data
= dev_get_drvdata(dev
);
697 int nr
= to_sensor_dev_attr(devattr
)->index
;
698 int val
= simple_strtoul(buf
, NULL
, 10);
700 mutex_lock(&data
->update_lock
);
702 data
->temp_beep
|= 1 << (nr
+ 1);
704 data
->temp_beep
&= ~(1 << (nr
+ 1));
706 f71882fg_write8(data
, F71882FG_REG_TEMP_BEEP
, data
->temp_beep
);
707 mutex_unlock(&data
->update_lock
);
712 static ssize_t
show_temp_alarm(struct device
*dev
, struct device_attribute
715 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
716 int nr
= to_sensor_dev_attr(devattr
)->index
;
718 if (data
->temp_status
& (1 << (nr
+ 1)))
719 return sprintf(buf
, "1\n");
721 return sprintf(buf
, "0\n");
724 static ssize_t
show_temp_fault(struct device
*dev
, struct device_attribute
727 struct f71882fg_data
*data
= f71882fg_update_device(dev
);
728 int nr
= to_sensor_dev_attr(devattr
)->index
;
730 if (data
->temp_diode_open
& (1 << (nr
+ 1)))
731 return sprintf(buf
, "1\n");
733 return sprintf(buf
, "0\n");
736 static ssize_t
show_name(struct device
*dev
, struct device_attribute
*devattr
,
739 return sprintf(buf
, DRVNAME
"\n");
743 static int __devinit
f71882fg_probe(struct platform_device
* pdev
)
745 struct f71882fg_data
*data
;
749 if (!(data
= kzalloc(sizeof(struct f71882fg_data
), GFP_KERNEL
)))
752 data
->addr
= platform_get_resource(pdev
, IORESOURCE_IO
, 0)->start
;
753 mutex_init(&data
->update_lock
);
754 platform_set_drvdata(pdev
, data
);
756 /* Register sysfs interface files */
757 for (i
= 0; i
< ARRAY_SIZE(f71882fg_dev_attr
); i
++) {
758 err
= device_create_file(&pdev
->dev
, &f71882fg_dev_attr
[i
]);
760 goto exit_unregister_sysfs
;
763 start_reg
= f71882fg_read8(data
, F71882FG_REG_START
);
764 if (start_reg
& 0x01) {
765 for (i
= 0; i
< ARRAY_SIZE(f71882fg_in_temp_attr
); i
++) {
766 err
= device_create_file(&pdev
->dev
,
767 &f71882fg_in_temp_attr
[i
].dev_attr
);
769 goto exit_unregister_sysfs
;
773 if (start_reg
& 0x02) {
774 for (i
= 0; i
< ARRAY_SIZE(f71882fg_fan_attr
); i
++) {
775 err
= device_create_file(&pdev
->dev
,
776 &f71882fg_fan_attr
[i
].dev_attr
);
778 goto exit_unregister_sysfs
;
782 data
->hwmon_dev
= hwmon_device_register(&pdev
->dev
);
783 if (IS_ERR(data
->hwmon_dev
)) {
784 err
= PTR_ERR(data
->hwmon_dev
);
785 goto exit_unregister_sysfs
;
790 exit_unregister_sysfs
:
791 for (i
= 0; i
< ARRAY_SIZE(f71882fg_dev_attr
); i
++)
792 device_remove_file(&pdev
->dev
, &f71882fg_dev_attr
[i
]);
794 for (i
= 0; i
< ARRAY_SIZE(f71882fg_in_temp_attr
); i
++)
795 device_remove_file(&pdev
->dev
,
796 &f71882fg_in_temp_attr
[i
].dev_attr
);
798 for (i
= 0; i
< ARRAY_SIZE(f71882fg_fan_attr
); i
++)
799 device_remove_file(&pdev
->dev
, &f71882fg_fan_attr
[i
].dev_attr
);
806 static int __devexit
f71882fg_remove(struct platform_device
*pdev
)
809 struct f71882fg_data
*data
= platform_get_drvdata(pdev
);
811 platform_set_drvdata(pdev
, NULL
);
812 hwmon_device_unregister(data
->hwmon_dev
);
814 for (i
= 0; i
< ARRAY_SIZE(f71882fg_dev_attr
); i
++)
815 device_remove_file(&pdev
->dev
, &f71882fg_dev_attr
[i
]);
817 for (i
= 0; i
< ARRAY_SIZE(f71882fg_in_temp_attr
); i
++)
818 device_remove_file(&pdev
->dev
,
819 &f71882fg_in_temp_attr
[i
].dev_attr
);
821 for (i
= 0; i
< ARRAY_SIZE(f71882fg_fan_attr
); i
++)
822 device_remove_file(&pdev
->dev
, &f71882fg_fan_attr
[i
].dev_attr
);
829 static int __init
f71882fg_find(int sioaddr
, unsigned short *address
)
834 struct f71882fg_data data
;
836 superio_enter(sioaddr
);
838 devid
= superio_inw(sioaddr
, SIO_REG_MANID
);
839 if (devid
!= SIO_FINTEK_ID
) {
840 printk(KERN_INFO DRVNAME
": Not a Fintek device\n");
844 devid
= force_id
? force_id
: superio_inw(sioaddr
, SIO_REG_DEVID
);
845 if (devid
!= SIO_F71882_ID
) {
846 printk(KERN_INFO DRVNAME
": Unsupported Fintek device\n");
850 superio_select(sioaddr
, SIO_F71882FG_LD_HWM
);
851 if (!(superio_inb(sioaddr
, SIO_REG_ENABLE
) & 0x01)) {
852 printk(KERN_WARNING DRVNAME
": Device not activated\n");
856 *address
= superio_inw(sioaddr
, SIO_REG_ADDR
);
859 printk(KERN_WARNING DRVNAME
": Base address not set\n");
862 *address
&= ~(REGION_LENGTH
- 1); /* Ignore 3 LSB */
864 data
.addr
= *address
;
865 start_reg
= f71882fg_read8(&data
, F71882FG_REG_START
);
866 if (!(start_reg
& 0x03)) {
867 printk(KERN_WARNING DRVNAME
868 ": Hardware monitoring not activated\n");
873 printk(KERN_INFO DRVNAME
": Found F71882FG chip at %#x, revision %d\n",
874 (unsigned int)*address
,
875 (int)superio_inb(sioaddr
, SIO_REG_DEVREV
));
877 superio_exit(sioaddr
);
881 static int __init
f71882fg_device_add(unsigned short address
)
883 struct resource res
= {
885 .end
= address
+ REGION_LENGTH
- 1,
886 .flags
= IORESOURCE_IO
,
890 f71882fg_pdev
= platform_device_alloc(DRVNAME
, address
);
894 res
.name
= f71882fg_pdev
->name
;
895 err
= platform_device_add_resources(f71882fg_pdev
, &res
, 1);
897 printk(KERN_ERR DRVNAME
": Device resource addition failed\n");
898 goto exit_device_put
;
901 err
= platform_device_add(f71882fg_pdev
);
903 printk(KERN_ERR DRVNAME
": Device addition failed\n");
904 goto exit_device_put
;
910 platform_device_put(f71882fg_pdev
);
915 static int __init
f71882fg_init(void)
918 unsigned short address
;
920 if (f71882fg_find(0x2e, &address
) && f71882fg_find(0x4e, &address
))
923 if ((err
= platform_driver_register(&f71882fg_driver
)))
926 if ((err
= f71882fg_device_add(address
)))
932 platform_driver_unregister(&f71882fg_driver
);
937 static void __exit
f71882fg_exit(void)
939 platform_device_unregister(f71882fg_pdev
);
940 platform_driver_unregister(&f71882fg_driver
);
943 MODULE_DESCRIPTION("F71882FG Hardware Monitoring Driver");
944 MODULE_AUTHOR("Hans Edgington (hans@edgington.nl)");
945 MODULE_LICENSE("GPL");
947 module_init(f71882fg_init
);
948 module_exit(f71882fg_exit
);