2 * dme1737.c - Driver for the SMSC DME1737, Asus A8000, SMSC SCH311x and
3 * SCH5027 Super-I/O chips integrated hardware monitoring features.
4 * Copyright (c) 2007, 2008 Juerg Haefliger <juergh@gmail.com>
6 * This driver is an I2C/ISA hybrid, meaning that it uses the I2C bus to access
7 * the chip registers if a DME1737, A8000, or SCH5027 is found and the ISA bus
8 * if a SCH311x chip is found. Both types of chips have very similar hardware
9 * monitoring capabilities but differ in the way they can be accessed.
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
21 * You should have received a copy of the GNU General Public License
22 * along with this program; if not, write to the Free Software
23 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
26 #include <linux/module.h>
27 #include <linux/init.h>
28 #include <linux/slab.h>
29 #include <linux/jiffies.h>
30 #include <linux/i2c.h>
31 #include <linux/platform_device.h>
32 #include <linux/hwmon.h>
33 #include <linux/hwmon-sysfs.h>
34 #include <linux/hwmon-vid.h>
35 #include <linux/err.h>
36 #include <linux/mutex.h>
37 #include <linux/acpi.h>
40 /* ISA device, if found */
41 static struct platform_device
*pdev
;
43 /* Module load parameters */
44 static int force_start
;
45 module_param(force_start
, bool, 0);
46 MODULE_PARM_DESC(force_start
, "Force the chip to start monitoring inputs");
48 static unsigned short force_id
;
49 module_param(force_id
, ushort
, 0);
50 MODULE_PARM_DESC(force_id
, "Override the detected device ID");
52 static int probe_all_addr
;
53 module_param(probe_all_addr
, bool, 0);
54 MODULE_PARM_DESC(probe_all_addr
, "Include probing of non-standard LPC "
57 /* Addresses to scan */
58 static const unsigned short normal_i2c
[] = {0x2c, 0x2d, 0x2e, I2C_CLIENT_END
};
60 /* Insmod parameters */
61 I2C_CLIENT_INSMOD_2(dme1737
, sch5027
);
64 enum isa_chips
{ sch311x
= sch5027
+ 1 };
66 /* ---------------------------------------------------------------------
69 * The sensors are defined as follows:
71 * Voltages Temperatures
72 * -------- ------------
73 * in0 +5VTR (+5V stdby) temp1 Remote diode 1
74 * in1 Vccp (proc core) temp2 Internal temp
75 * in2 VCC (internal +3.3V) temp3 Remote diode 2
78 * in5 VTR (+3.3V stby)
81 * --------------------------------------------------------------------- */
83 /* Voltages (in) numbered 0-6 (ix) */
84 #define DME1737_REG_IN(ix) ((ix) < 5 ? 0x20 + (ix) \
86 #define DME1737_REG_IN_MIN(ix) ((ix) < 5 ? 0x44 + (ix) * 2 \
88 #define DME1737_REG_IN_MAX(ix) ((ix) < 5 ? 0x45 + (ix) * 2 \
91 /* Temperatures (temp) numbered 0-2 (ix) */
92 #define DME1737_REG_TEMP(ix) (0x25 + (ix))
93 #define DME1737_REG_TEMP_MIN(ix) (0x4e + (ix) * 2)
94 #define DME1737_REG_TEMP_MAX(ix) (0x4f + (ix) * 2)
95 #define DME1737_REG_TEMP_OFFSET(ix) ((ix) == 0 ? 0x1f \
98 /* Voltage and temperature LSBs
99 * The LSBs (4 bits each) are stored in 5 registers with the following layouts:
100 * IN_TEMP_LSB(0) = [in5, in6]
101 * IN_TEMP_LSB(1) = [temp3, temp1]
102 * IN_TEMP_LSB(2) = [in4, temp2]
103 * IN_TEMP_LSB(3) = [in3, in0]
104 * IN_TEMP_LSB(4) = [in2, in1] */
105 #define DME1737_REG_IN_TEMP_LSB(ix) (0x84 + (ix))
106 static const u8 DME1737_REG_IN_LSB
[] = {3, 4, 4, 3, 2, 0, 0};
107 static const u8 DME1737_REG_IN_LSB_SHL
[] = {4, 4, 0, 0, 0, 0, 4};
108 static const u8 DME1737_REG_TEMP_LSB
[] = {1, 2, 1};
109 static const u8 DME1737_REG_TEMP_LSB_SHL
[] = {4, 4, 0};
111 /* Fans numbered 0-5 (ix) */
112 #define DME1737_REG_FAN(ix) ((ix) < 4 ? 0x28 + (ix) * 2 \
114 #define DME1737_REG_FAN_MIN(ix) ((ix) < 4 ? 0x54 + (ix) * 2 \
116 #define DME1737_REG_FAN_OPT(ix) ((ix) < 4 ? 0x90 + (ix) \
118 #define DME1737_REG_FAN_MAX(ix) (0xb4 + (ix)) /* only for fan[4-5] */
120 /* PWMs numbered 0-2, 4-5 (ix) */
121 #define DME1737_REG_PWM(ix) ((ix) < 3 ? 0x30 + (ix) \
123 #define DME1737_REG_PWM_CONFIG(ix) (0x5c + (ix)) /* only for pwm[0-2] */
124 #define DME1737_REG_PWM_MIN(ix) (0x64 + (ix)) /* only for pwm[0-2] */
125 #define DME1737_REG_PWM_FREQ(ix) ((ix) < 3 ? 0x5f + (ix) \
127 /* The layout of the ramp rate registers is different from the other pwm
128 * registers. The bits for the 3 PWMs are stored in 2 registers:
129 * PWM_RR(0) = [OFF3, OFF2, OFF1, RES, RR1E, RR1-2, RR1-1, RR1-0]
130 * PWM_RR(1) = [RR2E, RR2-2, RR2-1, RR2-0, RR3E, RR3-2, RR3-1, RR3-0] */
131 #define DME1737_REG_PWM_RR(ix) (0x62 + (ix)) /* only for pwm[0-2] */
133 /* Thermal zones 0-2 */
134 #define DME1737_REG_ZONE_LOW(ix) (0x67 + (ix))
135 #define DME1737_REG_ZONE_ABS(ix) (0x6a + (ix))
136 /* The layout of the hysteresis registers is different from the other zone
137 * registers. The bits for the 3 zones are stored in 2 registers:
138 * ZONE_HYST(0) = [H1-3, H1-2, H1-1, H1-0, H2-3, H2-2, H2-1, H2-0]
139 * ZONE_HYST(1) = [H3-3, H3-2, H3-1, H3-0, RES, RES, RES, RES] */
140 #define DME1737_REG_ZONE_HYST(ix) (0x6d + (ix))
142 /* Alarm registers and bit mapping
143 * The 3 8-bit alarm registers will be concatenated to a single 32-bit
144 * alarm value [0, ALARM3, ALARM2, ALARM1]. */
145 #define DME1737_REG_ALARM1 0x41
146 #define DME1737_REG_ALARM2 0x42
147 #define DME1737_REG_ALARM3 0x83
148 static const u8 DME1737_BIT_ALARM_IN
[] = {0, 1, 2, 3, 8, 16, 17};
149 static const u8 DME1737_BIT_ALARM_TEMP
[] = {4, 5, 6};
150 static const u8 DME1737_BIT_ALARM_FAN
[] = {10, 11, 12, 13, 22, 23};
152 /* Miscellaneous registers */
153 #define DME1737_REG_DEVICE 0x3d
154 #define DME1737_REG_COMPANY 0x3e
155 #define DME1737_REG_VERSTEP 0x3f
156 #define DME1737_REG_CONFIG 0x40
157 #define DME1737_REG_CONFIG2 0x7f
158 #define DME1737_REG_VID 0x43
159 #define DME1737_REG_TACH_PWM 0x81
161 /* ---------------------------------------------------------------------
163 * --------------------------------------------------------------------- */
165 /* Chip identification */
166 #define DME1737_COMPANY_SMSC 0x5c
167 #define DME1737_VERSTEP 0x88
168 #define DME1737_VERSTEP_MASK 0xf8
169 #define SCH311X_DEVICE 0x8c
170 #define SCH5027_VERSTEP 0x69
172 /* Length of ISA address segment */
173 #define DME1737_EXTENT 2
175 /* ---------------------------------------------------------------------
176 * Data structures and manipulation thereof
177 * --------------------------------------------------------------------- */
179 struct dme1737_data
{
180 struct i2c_client
*client
; /* for I2C devices only */
181 struct device
*hwmon_dev
;
183 unsigned int addr
; /* for ISA devices only */
185 struct mutex update_lock
;
186 int valid
; /* !=0 if following fields are valid */
187 unsigned long last_update
; /* in jiffies */
188 unsigned long last_vbat
; /* in jiffies */
190 const int *in_nominal
; /* pointer to IN_NOMINAL array */
197 /* Register values */
224 /* Nominal voltage values */
225 static const int IN_NOMINAL_DME1737
[] = {5000, 2250, 3300, 5000, 12000, 3300,
227 static const int IN_NOMINAL_SCH311x
[] = {2500, 1500, 3300, 5000, 12000, 3300,
229 static const int IN_NOMINAL_SCH5027
[] = {5000, 2250, 3300, 1125, 1125, 3300,
231 #define IN_NOMINAL(type) ((type) == sch311x ? IN_NOMINAL_SCH311x : \
232 (type) == sch5027 ? IN_NOMINAL_SCH5027 : \
236 * Voltage inputs have 16 bits resolution, limit values have 8 bits
238 static inline int IN_FROM_REG(int reg
, int nominal
, int res
)
240 return (reg
* nominal
+ (3 << (res
- 3))) / (3 << (res
- 2));
243 static inline int IN_TO_REG(int val
, int nominal
)
245 return SENSORS_LIMIT((val
* 192 + nominal
/ 2) / nominal
, 0, 255);
249 * The register values represent temperatures in 2's complement notation from
250 * -127 degrees C to +127 degrees C. Temp inputs have 16 bits resolution, limit
251 * values have 8 bits resolution. */
252 static inline int TEMP_FROM_REG(int reg
, int res
)
254 return (reg
* 1000) >> (res
- 8);
257 static inline int TEMP_TO_REG(int val
)
259 return SENSORS_LIMIT((val
< 0 ? val
- 500 : val
+ 500) / 1000,
263 /* Temperature range */
264 static const int TEMP_RANGE
[] = {2000, 2500, 3333, 4000, 5000, 6666, 8000,
265 10000, 13333, 16000, 20000, 26666, 32000,
266 40000, 53333, 80000};
268 static inline int TEMP_RANGE_FROM_REG(int reg
)
270 return TEMP_RANGE
[(reg
>> 4) & 0x0f];
273 static int TEMP_RANGE_TO_REG(int val
, int reg
)
277 for (i
= 15; i
> 0; i
--) {
278 if (val
> (TEMP_RANGE
[i
] + TEMP_RANGE
[i
- 1] + 1) / 2) {
283 return (reg
& 0x0f) | (i
<< 4);
286 /* Temperature hysteresis
288 * reg[0] = [H1-3, H1-2, H1-1, H1-0, H2-3, H2-2, H2-1, H2-0]
289 * reg[1] = [H3-3, H3-2, H3-1, H3-0, xxxx, xxxx, xxxx, xxxx] */
290 static inline int TEMP_HYST_FROM_REG(int reg
, int ix
)
292 return (((ix
== 1) ? reg
: reg
>> 4) & 0x0f) * 1000;
295 static inline int TEMP_HYST_TO_REG(int val
, int ix
, int reg
)
297 int hyst
= SENSORS_LIMIT((val
+ 500) / 1000, 0, 15);
299 return (ix
== 1) ? (reg
& 0xf0) | hyst
: (reg
& 0x0f) | (hyst
<< 4);
303 static inline int FAN_FROM_REG(int reg
, int tpc
)
308 return (reg
== 0 || reg
== 0xffff) ? 0 : 90000 * 60 / reg
;
312 static inline int FAN_TO_REG(int val
, int tpc
)
315 return SENSORS_LIMIT(val
/ tpc
, 0, 0xffff);
317 return (val
<= 0) ? 0xffff :
318 SENSORS_LIMIT(90000 * 60 / val
, 0, 0xfffe);
322 /* Fan TPC (tach pulse count)
323 * Converts a register value to a TPC multiplier or returns 0 if the tachometer
324 * is configured in legacy (non-tpc) mode */
325 static inline int FAN_TPC_FROM_REG(int reg
)
327 return (reg
& 0x20) ? 0 : 60 >> (reg
& 0x03);
331 * The type of a fan is expressed in number of pulses-per-revolution that it
333 static inline int FAN_TYPE_FROM_REG(int reg
)
335 int edge
= (reg
>> 1) & 0x03;
337 return (edge
> 0) ? 1 << (edge
- 1) : 0;
340 static inline int FAN_TYPE_TO_REG(int val
, int reg
)
342 int edge
= (val
== 4) ? 3 : val
;
344 return (reg
& 0xf9) | (edge
<< 1);
348 static const int FAN_MAX
[] = {0x54, 0x38, 0x2a, 0x21, 0x1c, 0x18, 0x15, 0x12,
351 static int FAN_MAX_FROM_REG(int reg
)
355 for (i
= 10; i
> 0; i
--) {
356 if (reg
== FAN_MAX
[i
]) {
361 return 1000 + i
* 500;
364 static int FAN_MAX_TO_REG(int val
)
368 for (i
= 10; i
> 0; i
--) {
369 if (val
> (1000 + (i
- 1) * 500)) {
378 * Register to enable mapping:
379 * 000: 2 fan on zone 1 auto
380 * 001: 2 fan on zone 2 auto
381 * 010: 2 fan on zone 3 auto
383 * 100: -1 fan disabled
384 * 101: 2 fan on hottest of zones 2,3 auto
385 * 110: 2 fan on hottest of zones 1,2,3 auto
386 * 111: 1 fan in manual mode */
387 static inline int PWM_EN_FROM_REG(int reg
)
389 static const int en
[] = {2, 2, 2, 0, -1, 2, 2, 1};
391 return en
[(reg
>> 5) & 0x07];
394 static inline int PWM_EN_TO_REG(int val
, int reg
)
396 int en
= (val
== 1) ? 7 : 3;
398 return (reg
& 0x1f) | ((en
& 0x07) << 5);
401 /* PWM auto channels zone
402 * Register to auto channels zone mapping (ACZ is a bitfield with bit x
403 * corresponding to zone x+1):
404 * 000: 001 fan on zone 1 auto
405 * 001: 010 fan on zone 2 auto
406 * 010: 100 fan on zone 3 auto
407 * 011: 000 fan full on
408 * 100: 000 fan disabled
409 * 101: 110 fan on hottest of zones 2,3 auto
410 * 110: 111 fan on hottest of zones 1,2,3 auto
411 * 111: 000 fan in manual mode */
412 static inline int PWM_ACZ_FROM_REG(int reg
)
414 static const int acz
[] = {1, 2, 4, 0, 0, 6, 7, 0};
416 return acz
[(reg
>> 5) & 0x07];
419 static inline int PWM_ACZ_TO_REG(int val
, int reg
)
421 int acz
= (val
== 4) ? 2 : val
- 1;
423 return (reg
& 0x1f) | ((acz
& 0x07) << 5);
427 static const int PWM_FREQ
[] = {11, 15, 22, 29, 35, 44, 59, 88,
428 15000, 20000, 30000, 25000, 0, 0, 0, 0};
430 static inline int PWM_FREQ_FROM_REG(int reg
)
432 return PWM_FREQ
[reg
& 0x0f];
435 static int PWM_FREQ_TO_REG(int val
, int reg
)
439 /* the first two cases are special - stupid chip design! */
442 } else if (val
> 22500) {
445 for (i
= 9; i
> 0; i
--) {
446 if (val
> (PWM_FREQ
[i
] + PWM_FREQ
[i
- 1] + 1) / 2) {
452 return (reg
& 0xf0) | i
;
457 * reg[0] = [OFF3, OFF2, OFF1, RES, RR1-E, RR1-2, RR1-1, RR1-0]
458 * reg[1] = [RR2-E, RR2-2, RR2-1, RR2-0, RR3-E, RR3-2, RR3-1, RR3-0] */
459 static const u8 PWM_RR
[] = {206, 104, 69, 41, 26, 18, 10, 5};
461 static inline int PWM_RR_FROM_REG(int reg
, int ix
)
463 int rr
= (ix
== 1) ? reg
>> 4 : reg
;
465 return (rr
& 0x08) ? PWM_RR
[rr
& 0x07] : 0;
468 static int PWM_RR_TO_REG(int val
, int ix
, int reg
)
472 for (i
= 0; i
< 7; i
++) {
473 if (val
> (PWM_RR
[i
] + PWM_RR
[i
+ 1] + 1) / 2) {
478 return (ix
== 1) ? (reg
& 0x8f) | (i
<< 4) : (reg
& 0xf8) | i
;
481 /* PWM ramp rate enable */
482 static inline int PWM_RR_EN_FROM_REG(int reg
, int ix
)
484 return PWM_RR_FROM_REG(reg
, ix
) ? 1 : 0;
487 static inline int PWM_RR_EN_TO_REG(int val
, int ix
, int reg
)
489 int en
= (ix
== 1) ? 0x80 : 0x08;
491 return val
? reg
| en
: reg
& ~en
;
495 * The PWM min/off bits are part of the PMW ramp rate register 0 (see above for
496 * the register layout). */
497 static inline int PWM_OFF_FROM_REG(int reg
, int ix
)
499 return (reg
>> (ix
+ 5)) & 0x01;
502 static inline int PWM_OFF_TO_REG(int val
, int ix
, int reg
)
504 return (reg
& ~(1 << (ix
+ 5))) | ((val
& 0x01) << (ix
+ 5));
507 /* ---------------------------------------------------------------------
510 * ISA access is performed through an index/data register pair and needs to
511 * be protected by a mutex during runtime (not required for initialization).
512 * We use data->update_lock for this and need to ensure that we acquire it
513 * before calling dme1737_read or dme1737_write.
514 * --------------------------------------------------------------------- */
516 static u8
dme1737_read(const struct dme1737_data
*data
, u8 reg
)
518 struct i2c_client
*client
= data
->client
;
521 if (client
) { /* I2C device */
522 val
= i2c_smbus_read_byte_data(client
, reg
);
525 dev_warn(&client
->dev
, "Read from register "
526 "0x%02x failed! Please report to the driver "
527 "maintainer.\n", reg
);
529 } else { /* ISA device */
530 outb(reg
, data
->addr
);
531 val
= inb(data
->addr
+ 1);
537 static s32
dme1737_write(const struct dme1737_data
*data
, u8 reg
, u8 val
)
539 struct i2c_client
*client
= data
->client
;
542 if (client
) { /* I2C device */
543 res
= i2c_smbus_write_byte_data(client
, reg
, val
);
546 dev_warn(&client
->dev
, "Write to register "
547 "0x%02x failed! Please report to the driver "
548 "maintainer.\n", reg
);
550 } else { /* ISA device */
551 outb(reg
, data
->addr
);
552 outb(val
, data
->addr
+ 1);
558 static struct dme1737_data
*dme1737_update_device(struct device
*dev
)
560 struct dme1737_data
*data
= dev_get_drvdata(dev
);
564 mutex_lock(&data
->update_lock
);
566 /* Enable a Vbat monitoring cycle every 10 mins */
567 if (time_after(jiffies
, data
->last_vbat
+ 600 * HZ
) || !data
->valid
) {
568 dme1737_write(data
, DME1737_REG_CONFIG
, dme1737_read(data
,
569 DME1737_REG_CONFIG
) | 0x10);
570 data
->last_vbat
= jiffies
;
573 /* Sample register contents every 1 sec */
574 if (time_after(jiffies
, data
->last_update
+ HZ
) || !data
->valid
) {
575 if (data
->type
!= sch5027
) {
576 data
->vid
= dme1737_read(data
, DME1737_REG_VID
) &
580 /* In (voltage) registers */
581 for (ix
= 0; ix
< ARRAY_SIZE(data
->in
); ix
++) {
582 /* Voltage inputs are stored as 16 bit values even
583 * though they have only 12 bits resolution. This is
584 * to make it consistent with the temp inputs. */
585 data
->in
[ix
] = dme1737_read(data
,
586 DME1737_REG_IN(ix
)) << 8;
587 data
->in_min
[ix
] = dme1737_read(data
,
588 DME1737_REG_IN_MIN(ix
));
589 data
->in_max
[ix
] = dme1737_read(data
,
590 DME1737_REG_IN_MAX(ix
));
594 for (ix
= 0; ix
< ARRAY_SIZE(data
->temp
); ix
++) {
595 /* Temp inputs are stored as 16 bit values even
596 * though they have only 12 bits resolution. This is
597 * to take advantage of implicit conversions between
598 * register values (2's complement) and temp values
599 * (signed decimal). */
600 data
->temp
[ix
] = dme1737_read(data
,
601 DME1737_REG_TEMP(ix
)) << 8;
602 data
->temp_min
[ix
] = dme1737_read(data
,
603 DME1737_REG_TEMP_MIN(ix
));
604 data
->temp_max
[ix
] = dme1737_read(data
,
605 DME1737_REG_TEMP_MAX(ix
));
606 if (data
->type
!= sch5027
) {
607 data
->temp_offset
[ix
] = dme1737_read(data
,
608 DME1737_REG_TEMP_OFFSET(ix
));
612 /* In and temp LSB registers
613 * The LSBs are latched when the MSBs are read, so the order in
614 * which the registers are read (MSB first, then LSB) is
616 for (ix
= 0; ix
< ARRAY_SIZE(lsb
); ix
++) {
617 lsb
[ix
] = dme1737_read(data
,
618 DME1737_REG_IN_TEMP_LSB(ix
));
620 for (ix
= 0; ix
< ARRAY_SIZE(data
->in
); ix
++) {
621 data
->in
[ix
] |= (lsb
[DME1737_REG_IN_LSB
[ix
]] <<
622 DME1737_REG_IN_LSB_SHL
[ix
]) & 0xf0;
624 for (ix
= 0; ix
< ARRAY_SIZE(data
->temp
); ix
++) {
625 data
->temp
[ix
] |= (lsb
[DME1737_REG_TEMP_LSB
[ix
]] <<
626 DME1737_REG_TEMP_LSB_SHL
[ix
]) & 0xf0;
630 for (ix
= 0; ix
< ARRAY_SIZE(data
->fan
); ix
++) {
631 /* Skip reading registers if optional fans are not
633 if (!(data
->has_fan
& (1 << ix
))) {
636 data
->fan
[ix
] = dme1737_read(data
,
637 DME1737_REG_FAN(ix
));
638 data
->fan
[ix
] |= dme1737_read(data
,
639 DME1737_REG_FAN(ix
) + 1) << 8;
640 data
->fan_min
[ix
] = dme1737_read(data
,
641 DME1737_REG_FAN_MIN(ix
));
642 data
->fan_min
[ix
] |= dme1737_read(data
,
643 DME1737_REG_FAN_MIN(ix
) + 1) << 8;
644 data
->fan_opt
[ix
] = dme1737_read(data
,
645 DME1737_REG_FAN_OPT(ix
));
646 /* fan_max exists only for fan[5-6] */
648 data
->fan_max
[ix
- 4] = dme1737_read(data
,
649 DME1737_REG_FAN_MAX(ix
));
654 for (ix
= 0; ix
< ARRAY_SIZE(data
->pwm
); ix
++) {
655 /* Skip reading registers if optional PWMs are not
657 if (!(data
->has_pwm
& (1 << ix
))) {
660 data
->pwm
[ix
] = dme1737_read(data
,
661 DME1737_REG_PWM(ix
));
662 data
->pwm_freq
[ix
] = dme1737_read(data
,
663 DME1737_REG_PWM_FREQ(ix
));
664 /* pwm_config and pwm_min exist only for pwm[1-3] */
666 data
->pwm_config
[ix
] = dme1737_read(data
,
667 DME1737_REG_PWM_CONFIG(ix
));
668 data
->pwm_min
[ix
] = dme1737_read(data
,
669 DME1737_REG_PWM_MIN(ix
));
672 for (ix
= 0; ix
< ARRAY_SIZE(data
->pwm_rr
); ix
++) {
673 data
->pwm_rr
[ix
] = dme1737_read(data
,
674 DME1737_REG_PWM_RR(ix
));
677 /* Thermal zone registers */
678 for (ix
= 0; ix
< ARRAY_SIZE(data
->zone_low
); ix
++) {
679 data
->zone_low
[ix
] = dme1737_read(data
,
680 DME1737_REG_ZONE_LOW(ix
));
681 data
->zone_abs
[ix
] = dme1737_read(data
,
682 DME1737_REG_ZONE_ABS(ix
));
684 if (data
->type
!= sch5027
) {
685 for (ix
= 0; ix
< ARRAY_SIZE(data
->zone_hyst
); ix
++) {
686 data
->zone_hyst
[ix
] = dme1737_read(data
,
687 DME1737_REG_ZONE_HYST(ix
));
691 /* Alarm registers */
692 data
->alarms
= dme1737_read(data
,
694 /* Bit 7 tells us if the other alarm registers are non-zero and
695 * therefore also need to be read */
696 if (data
->alarms
& 0x80) {
697 data
->alarms
|= dme1737_read(data
,
698 DME1737_REG_ALARM2
) << 8;
699 data
->alarms
|= dme1737_read(data
,
700 DME1737_REG_ALARM3
) << 16;
703 /* The ISA chips require explicit clearing of alarm bits.
704 * Don't worry, an alarm will come back if the condition
705 * that causes it still exists */
707 if (data
->alarms
& 0xff0000) {
708 dme1737_write(data
, DME1737_REG_ALARM3
,
711 if (data
->alarms
& 0xff00) {
712 dme1737_write(data
, DME1737_REG_ALARM2
,
715 if (data
->alarms
& 0xff) {
716 dme1737_write(data
, DME1737_REG_ALARM1
,
721 data
->last_update
= jiffies
;
725 mutex_unlock(&data
->update_lock
);
730 /* ---------------------------------------------------------------------
731 * Voltage sysfs attributes
733 * --------------------------------------------------------------------- */
735 #define SYS_IN_INPUT 0
738 #define SYS_IN_ALARM 3
740 static ssize_t
show_in(struct device
*dev
, struct device_attribute
*attr
,
743 struct dme1737_data
*data
= dme1737_update_device(dev
);
744 struct sensor_device_attribute_2
745 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
746 int ix
= sensor_attr_2
->index
;
747 int fn
= sensor_attr_2
->nr
;
752 res
= IN_FROM_REG(data
->in
[ix
], data
->in_nominal
[ix
], 16);
755 res
= IN_FROM_REG(data
->in_min
[ix
], data
->in_nominal
[ix
], 8);
758 res
= IN_FROM_REG(data
->in_max
[ix
], data
->in_nominal
[ix
], 8);
761 res
= (data
->alarms
>> DME1737_BIT_ALARM_IN
[ix
]) & 0x01;
765 dev_dbg(dev
, "Unknown function %d.\n", fn
);
768 return sprintf(buf
, "%d\n", res
);
771 static ssize_t
set_in(struct device
*dev
, struct device_attribute
*attr
,
772 const char *buf
, size_t count
)
774 struct dme1737_data
*data
= dev_get_drvdata(dev
);
775 struct sensor_device_attribute_2
776 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
777 int ix
= sensor_attr_2
->index
;
778 int fn
= sensor_attr_2
->nr
;
779 long val
= simple_strtol(buf
, NULL
, 10);
781 mutex_lock(&data
->update_lock
);
784 data
->in_min
[ix
] = IN_TO_REG(val
, data
->in_nominal
[ix
]);
785 dme1737_write(data
, DME1737_REG_IN_MIN(ix
),
789 data
->in_max
[ix
] = IN_TO_REG(val
, data
->in_nominal
[ix
]);
790 dme1737_write(data
, DME1737_REG_IN_MAX(ix
),
794 dev_dbg(dev
, "Unknown function %d.\n", fn
);
796 mutex_unlock(&data
->update_lock
);
801 /* ---------------------------------------------------------------------
802 * Temperature sysfs attributes
804 * --------------------------------------------------------------------- */
806 #define SYS_TEMP_INPUT 0
807 #define SYS_TEMP_MIN 1
808 #define SYS_TEMP_MAX 2
809 #define SYS_TEMP_OFFSET 3
810 #define SYS_TEMP_ALARM 4
811 #define SYS_TEMP_FAULT 5
813 static ssize_t
show_temp(struct device
*dev
, struct device_attribute
*attr
,
816 struct dme1737_data
*data
= dme1737_update_device(dev
);
817 struct sensor_device_attribute_2
818 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
819 int ix
= sensor_attr_2
->index
;
820 int fn
= sensor_attr_2
->nr
;
825 res
= TEMP_FROM_REG(data
->temp
[ix
], 16);
828 res
= TEMP_FROM_REG(data
->temp_min
[ix
], 8);
831 res
= TEMP_FROM_REG(data
->temp_max
[ix
], 8);
833 case SYS_TEMP_OFFSET
:
834 res
= TEMP_FROM_REG(data
->temp_offset
[ix
], 8);
837 res
= (data
->alarms
>> DME1737_BIT_ALARM_TEMP
[ix
]) & 0x01;
840 res
= (((u16
)data
->temp
[ix
] & 0xff00) == 0x8000);
844 dev_dbg(dev
, "Unknown function %d.\n", fn
);
847 return sprintf(buf
, "%d\n", res
);
850 static ssize_t
set_temp(struct device
*dev
, struct device_attribute
*attr
,
851 const char *buf
, size_t count
)
853 struct dme1737_data
*data
= dev_get_drvdata(dev
);
854 struct sensor_device_attribute_2
855 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
856 int ix
= sensor_attr_2
->index
;
857 int fn
= sensor_attr_2
->nr
;
858 long val
= simple_strtol(buf
, NULL
, 10);
860 mutex_lock(&data
->update_lock
);
863 data
->temp_min
[ix
] = TEMP_TO_REG(val
);
864 dme1737_write(data
, DME1737_REG_TEMP_MIN(ix
),
868 data
->temp_max
[ix
] = TEMP_TO_REG(val
);
869 dme1737_write(data
, DME1737_REG_TEMP_MAX(ix
),
872 case SYS_TEMP_OFFSET
:
873 data
->temp_offset
[ix
] = TEMP_TO_REG(val
);
874 dme1737_write(data
, DME1737_REG_TEMP_OFFSET(ix
),
875 data
->temp_offset
[ix
]);
878 dev_dbg(dev
, "Unknown function %d.\n", fn
);
880 mutex_unlock(&data
->update_lock
);
885 /* ---------------------------------------------------------------------
886 * Zone sysfs attributes
888 * --------------------------------------------------------------------- */
890 #define SYS_ZONE_AUTO_CHANNELS_TEMP 0
891 #define SYS_ZONE_AUTO_POINT1_TEMP_HYST 1
892 #define SYS_ZONE_AUTO_POINT1_TEMP 2
893 #define SYS_ZONE_AUTO_POINT2_TEMP 3
894 #define SYS_ZONE_AUTO_POINT3_TEMP 4
896 static ssize_t
show_zone(struct device
*dev
, struct device_attribute
*attr
,
899 struct dme1737_data
*data
= dme1737_update_device(dev
);
900 struct sensor_device_attribute_2
901 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
902 int ix
= sensor_attr_2
->index
;
903 int fn
= sensor_attr_2
->nr
;
907 case SYS_ZONE_AUTO_CHANNELS_TEMP
:
908 /* check config2 for non-standard temp-to-zone mapping */
909 if ((ix
== 1) && (data
->config2
& 0x02)) {
915 case SYS_ZONE_AUTO_POINT1_TEMP_HYST
:
916 res
= TEMP_FROM_REG(data
->zone_low
[ix
], 8) -
917 TEMP_HYST_FROM_REG(data
->zone_hyst
[ix
== 2], ix
);
919 case SYS_ZONE_AUTO_POINT1_TEMP
:
920 res
= TEMP_FROM_REG(data
->zone_low
[ix
], 8);
922 case SYS_ZONE_AUTO_POINT2_TEMP
:
923 /* pwm_freq holds the temp range bits in the upper nibble */
924 res
= TEMP_FROM_REG(data
->zone_low
[ix
], 8) +
925 TEMP_RANGE_FROM_REG(data
->pwm_freq
[ix
]);
927 case SYS_ZONE_AUTO_POINT3_TEMP
:
928 res
= TEMP_FROM_REG(data
->zone_abs
[ix
], 8);
932 dev_dbg(dev
, "Unknown function %d.\n", fn
);
935 return sprintf(buf
, "%d\n", res
);
938 static ssize_t
set_zone(struct device
*dev
, struct device_attribute
*attr
,
939 const char *buf
, size_t count
)
941 struct dme1737_data
*data
= dev_get_drvdata(dev
);
942 struct sensor_device_attribute_2
943 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
944 int ix
= sensor_attr_2
->index
;
945 int fn
= sensor_attr_2
->nr
;
946 long val
= simple_strtol(buf
, NULL
, 10);
948 mutex_lock(&data
->update_lock
);
950 case SYS_ZONE_AUTO_POINT1_TEMP_HYST
:
951 /* Refresh the cache */
952 data
->zone_low
[ix
] = dme1737_read(data
,
953 DME1737_REG_ZONE_LOW(ix
));
954 /* Modify the temp hyst value */
955 data
->zone_hyst
[ix
== 2] = TEMP_HYST_TO_REG(
956 TEMP_FROM_REG(data
->zone_low
[ix
], 8) -
957 val
, ix
, dme1737_read(data
,
958 DME1737_REG_ZONE_HYST(ix
== 2)));
959 dme1737_write(data
, DME1737_REG_ZONE_HYST(ix
== 2),
960 data
->zone_hyst
[ix
== 2]);
962 case SYS_ZONE_AUTO_POINT1_TEMP
:
963 data
->zone_low
[ix
] = TEMP_TO_REG(val
);
964 dme1737_write(data
, DME1737_REG_ZONE_LOW(ix
),
967 case SYS_ZONE_AUTO_POINT2_TEMP
:
968 /* Refresh the cache */
969 data
->zone_low
[ix
] = dme1737_read(data
,
970 DME1737_REG_ZONE_LOW(ix
));
971 /* Modify the temp range value (which is stored in the upper
972 * nibble of the pwm_freq register) */
973 data
->pwm_freq
[ix
] = TEMP_RANGE_TO_REG(val
-
974 TEMP_FROM_REG(data
->zone_low
[ix
], 8),
976 DME1737_REG_PWM_FREQ(ix
)));
977 dme1737_write(data
, DME1737_REG_PWM_FREQ(ix
),
980 case SYS_ZONE_AUTO_POINT3_TEMP
:
981 data
->zone_abs
[ix
] = TEMP_TO_REG(val
);
982 dme1737_write(data
, DME1737_REG_ZONE_ABS(ix
),
986 dev_dbg(dev
, "Unknown function %d.\n", fn
);
988 mutex_unlock(&data
->update_lock
);
993 /* ---------------------------------------------------------------------
994 * Fan sysfs attributes
996 * --------------------------------------------------------------------- */
998 #define SYS_FAN_INPUT 0
999 #define SYS_FAN_MIN 1
1000 #define SYS_FAN_MAX 2
1001 #define SYS_FAN_ALARM 3
1002 #define SYS_FAN_TYPE 4
1004 static ssize_t
show_fan(struct device
*dev
, struct device_attribute
*attr
,
1007 struct dme1737_data
*data
= dme1737_update_device(dev
);
1008 struct sensor_device_attribute_2
1009 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
1010 int ix
= sensor_attr_2
->index
;
1011 int fn
= sensor_attr_2
->nr
;
1016 res
= FAN_FROM_REG(data
->fan
[ix
],
1018 FAN_TPC_FROM_REG(data
->fan_opt
[ix
]));
1021 res
= FAN_FROM_REG(data
->fan_min
[ix
],
1023 FAN_TPC_FROM_REG(data
->fan_opt
[ix
]));
1026 /* only valid for fan[5-6] */
1027 res
= FAN_MAX_FROM_REG(data
->fan_max
[ix
- 4]);
1030 res
= (data
->alarms
>> DME1737_BIT_ALARM_FAN
[ix
]) & 0x01;
1033 /* only valid for fan[1-4] */
1034 res
= FAN_TYPE_FROM_REG(data
->fan_opt
[ix
]);
1038 dev_dbg(dev
, "Unknown function %d.\n", fn
);
1041 return sprintf(buf
, "%d\n", res
);
1044 static ssize_t
set_fan(struct device
*dev
, struct device_attribute
*attr
,
1045 const char *buf
, size_t count
)
1047 struct dme1737_data
*data
= dev_get_drvdata(dev
);
1048 struct sensor_device_attribute_2
1049 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
1050 int ix
= sensor_attr_2
->index
;
1051 int fn
= sensor_attr_2
->nr
;
1052 long val
= simple_strtol(buf
, NULL
, 10);
1054 mutex_lock(&data
->update_lock
);
1058 data
->fan_min
[ix
] = FAN_TO_REG(val
, 0);
1060 /* Refresh the cache */
1061 data
->fan_opt
[ix
] = dme1737_read(data
,
1062 DME1737_REG_FAN_OPT(ix
));
1063 /* Modify the fan min value */
1064 data
->fan_min
[ix
] = FAN_TO_REG(val
,
1065 FAN_TPC_FROM_REG(data
->fan_opt
[ix
]));
1067 dme1737_write(data
, DME1737_REG_FAN_MIN(ix
),
1068 data
->fan_min
[ix
] & 0xff);
1069 dme1737_write(data
, DME1737_REG_FAN_MIN(ix
) + 1,
1070 data
->fan_min
[ix
] >> 8);
1073 /* Only valid for fan[5-6] */
1074 data
->fan_max
[ix
- 4] = FAN_MAX_TO_REG(val
);
1075 dme1737_write(data
, DME1737_REG_FAN_MAX(ix
),
1076 data
->fan_max
[ix
- 4]);
1079 /* Only valid for fan[1-4] */
1080 if (!(val
== 1 || val
== 2 || val
== 4)) {
1082 dev_warn(dev
, "Fan type value %ld not "
1083 "supported. Choose one of 1, 2, or 4.\n",
1087 data
->fan_opt
[ix
] = FAN_TYPE_TO_REG(val
, dme1737_read(data
,
1088 DME1737_REG_FAN_OPT(ix
)));
1089 dme1737_write(data
, DME1737_REG_FAN_OPT(ix
),
1093 dev_dbg(dev
, "Unknown function %d.\n", fn
);
1096 mutex_unlock(&data
->update_lock
);
1101 /* ---------------------------------------------------------------------
1102 * PWM sysfs attributes
1104 * --------------------------------------------------------------------- */
1107 #define SYS_PWM_FREQ 1
1108 #define SYS_PWM_ENABLE 2
1109 #define SYS_PWM_RAMP_RATE 3
1110 #define SYS_PWM_AUTO_CHANNELS_ZONE 4
1111 #define SYS_PWM_AUTO_PWM_MIN 5
1112 #define SYS_PWM_AUTO_POINT1_PWM 6
1113 #define SYS_PWM_AUTO_POINT2_PWM 7
1115 static ssize_t
show_pwm(struct device
*dev
, struct device_attribute
*attr
,
1118 struct dme1737_data
*data
= dme1737_update_device(dev
);
1119 struct sensor_device_attribute_2
1120 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
1121 int ix
= sensor_attr_2
->index
;
1122 int fn
= sensor_attr_2
->nr
;
1127 if (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == 0) {
1130 res
= data
->pwm
[ix
];
1134 res
= PWM_FREQ_FROM_REG(data
->pwm_freq
[ix
]);
1136 case SYS_PWM_ENABLE
:
1138 res
= 1; /* pwm[5-6] hard-wired to manual mode */
1140 res
= PWM_EN_FROM_REG(data
->pwm_config
[ix
]);
1143 case SYS_PWM_RAMP_RATE
:
1144 /* Only valid for pwm[1-3] */
1145 res
= PWM_RR_FROM_REG(data
->pwm_rr
[ix
> 0], ix
);
1147 case SYS_PWM_AUTO_CHANNELS_ZONE
:
1148 /* Only valid for pwm[1-3] */
1149 if (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == 2) {
1150 res
= PWM_ACZ_FROM_REG(data
->pwm_config
[ix
]);
1152 res
= data
->pwm_acz
[ix
];
1155 case SYS_PWM_AUTO_PWM_MIN
:
1156 /* Only valid for pwm[1-3] */
1157 if (PWM_OFF_FROM_REG(data
->pwm_rr
[0], ix
)) {
1158 res
= data
->pwm_min
[ix
];
1163 case SYS_PWM_AUTO_POINT1_PWM
:
1164 /* Only valid for pwm[1-3] */
1165 res
= data
->pwm_min
[ix
];
1167 case SYS_PWM_AUTO_POINT2_PWM
:
1168 /* Only valid for pwm[1-3] */
1169 res
= 255; /* hard-wired */
1173 dev_dbg(dev
, "Unknown function %d.\n", fn
);
1176 return sprintf(buf
, "%d\n", res
);
1179 static struct attribute
*dme1737_pwm_chmod_attr
[];
1180 static void dme1737_chmod_file(struct device
*, struct attribute
*, mode_t
);
1182 static ssize_t
set_pwm(struct device
*dev
, struct device_attribute
*attr
,
1183 const char *buf
, size_t count
)
1185 struct dme1737_data
*data
= dev_get_drvdata(dev
);
1186 struct sensor_device_attribute_2
1187 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
1188 int ix
= sensor_attr_2
->index
;
1189 int fn
= sensor_attr_2
->nr
;
1190 long val
= simple_strtol(buf
, NULL
, 10);
1192 mutex_lock(&data
->update_lock
);
1195 data
->pwm
[ix
] = SENSORS_LIMIT(val
, 0, 255);
1196 dme1737_write(data
, DME1737_REG_PWM(ix
), data
->pwm
[ix
]);
1199 data
->pwm_freq
[ix
] = PWM_FREQ_TO_REG(val
, dme1737_read(data
,
1200 DME1737_REG_PWM_FREQ(ix
)));
1201 dme1737_write(data
, DME1737_REG_PWM_FREQ(ix
),
1202 data
->pwm_freq
[ix
]);
1204 case SYS_PWM_ENABLE
:
1205 /* Only valid for pwm[1-3] */
1206 if (val
< 0 || val
> 2) {
1208 dev_warn(dev
, "PWM enable %ld not "
1209 "supported. Choose one of 0, 1, or 2.\n",
1213 /* Refresh the cache */
1214 data
->pwm_config
[ix
] = dme1737_read(data
,
1215 DME1737_REG_PWM_CONFIG(ix
));
1216 if (val
== PWM_EN_FROM_REG(data
->pwm_config
[ix
])) {
1217 /* Bail out if no change */
1220 /* Do some housekeeping if we are currently in auto mode */
1221 if (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == 2) {
1222 /* Save the current zone channel assignment */
1223 data
->pwm_acz
[ix
] = PWM_ACZ_FROM_REG(
1224 data
->pwm_config
[ix
]);
1225 /* Save the current ramp rate state and disable it */
1226 data
->pwm_rr
[ix
> 0] = dme1737_read(data
,
1227 DME1737_REG_PWM_RR(ix
> 0));
1228 data
->pwm_rr_en
&= ~(1 << ix
);
1229 if (PWM_RR_EN_FROM_REG(data
->pwm_rr
[ix
> 0], ix
)) {
1230 data
->pwm_rr_en
|= (1 << ix
);
1231 data
->pwm_rr
[ix
> 0] = PWM_RR_EN_TO_REG(0, ix
,
1232 data
->pwm_rr
[ix
> 0]);
1234 DME1737_REG_PWM_RR(ix
> 0),
1235 data
->pwm_rr
[ix
> 0]);
1238 /* Set the new PWM mode */
1241 /* Change permissions of pwm[ix] to read-only */
1242 dme1737_chmod_file(dev
, dme1737_pwm_chmod_attr
[ix
],
1244 /* Turn fan fully on */
1245 data
->pwm_config
[ix
] = PWM_EN_TO_REG(0,
1246 data
->pwm_config
[ix
]);
1247 dme1737_write(data
, DME1737_REG_PWM_CONFIG(ix
),
1248 data
->pwm_config
[ix
]);
1251 /* Turn on manual mode */
1252 data
->pwm_config
[ix
] = PWM_EN_TO_REG(1,
1253 data
->pwm_config
[ix
]);
1254 dme1737_write(data
, DME1737_REG_PWM_CONFIG(ix
),
1255 data
->pwm_config
[ix
]);
1256 /* Change permissions of pwm[ix] to read-writeable */
1257 dme1737_chmod_file(dev
, dme1737_pwm_chmod_attr
[ix
],
1261 /* Change permissions of pwm[ix] to read-only */
1262 dme1737_chmod_file(dev
, dme1737_pwm_chmod_attr
[ix
],
1264 /* Turn on auto mode using the saved zone channel
1266 data
->pwm_config
[ix
] = PWM_ACZ_TO_REG(
1268 data
->pwm_config
[ix
]);
1269 dme1737_write(data
, DME1737_REG_PWM_CONFIG(ix
),
1270 data
->pwm_config
[ix
]);
1271 /* Enable PWM ramp rate if previously enabled */
1272 if (data
->pwm_rr_en
& (1 << ix
)) {
1273 data
->pwm_rr
[ix
> 0] = PWM_RR_EN_TO_REG(1, ix
,
1275 DME1737_REG_PWM_RR(ix
> 0)));
1277 DME1737_REG_PWM_RR(ix
> 0),
1278 data
->pwm_rr
[ix
> 0]);
1283 case SYS_PWM_RAMP_RATE
:
1284 /* Only valid for pwm[1-3] */
1285 /* Refresh the cache */
1286 data
->pwm_config
[ix
] = dme1737_read(data
,
1287 DME1737_REG_PWM_CONFIG(ix
));
1288 data
->pwm_rr
[ix
> 0] = dme1737_read(data
,
1289 DME1737_REG_PWM_RR(ix
> 0));
1290 /* Set the ramp rate value */
1292 data
->pwm_rr
[ix
> 0] = PWM_RR_TO_REG(val
, ix
,
1293 data
->pwm_rr
[ix
> 0]);
1295 /* Enable/disable the feature only if the associated PWM
1296 * output is in automatic mode. */
1297 if (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == 2) {
1298 data
->pwm_rr
[ix
> 0] = PWM_RR_EN_TO_REG(val
> 0, ix
,
1299 data
->pwm_rr
[ix
> 0]);
1301 dme1737_write(data
, DME1737_REG_PWM_RR(ix
> 0),
1302 data
->pwm_rr
[ix
> 0]);
1304 case SYS_PWM_AUTO_CHANNELS_ZONE
:
1305 /* Only valid for pwm[1-3] */
1306 if (!(val
== 1 || val
== 2 || val
== 4 ||
1307 val
== 6 || val
== 7)) {
1309 dev_warn(dev
, "PWM auto channels zone %ld "
1310 "not supported. Choose one of 1, 2, 4, 6, "
1314 /* Refresh the cache */
1315 data
->pwm_config
[ix
] = dme1737_read(data
,
1316 DME1737_REG_PWM_CONFIG(ix
));
1317 if (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == 2) {
1318 /* PWM is already in auto mode so update the temp
1319 * channel assignment */
1320 data
->pwm_config
[ix
] = PWM_ACZ_TO_REG(val
,
1321 data
->pwm_config
[ix
]);
1322 dme1737_write(data
, DME1737_REG_PWM_CONFIG(ix
),
1323 data
->pwm_config
[ix
]);
1325 /* PWM is not in auto mode so we save the temp
1326 * channel assignment for later use */
1327 data
->pwm_acz
[ix
] = val
;
1330 case SYS_PWM_AUTO_PWM_MIN
:
1331 /* Only valid for pwm[1-3] */
1332 /* Refresh the cache */
1333 data
->pwm_min
[ix
] = dme1737_read(data
,
1334 DME1737_REG_PWM_MIN(ix
));
1335 /* There are only 2 values supported for the auto_pwm_min
1336 * value: 0 or auto_point1_pwm. So if the temperature drops
1337 * below the auto_point1_temp_hyst value, the fan either turns
1338 * off or runs at auto_point1_pwm duty-cycle. */
1339 if (val
> ((data
->pwm_min
[ix
] + 1) / 2)) {
1340 data
->pwm_rr
[0] = PWM_OFF_TO_REG(1, ix
,
1342 DME1737_REG_PWM_RR(0)));
1344 data
->pwm_rr
[0] = PWM_OFF_TO_REG(0, ix
,
1346 DME1737_REG_PWM_RR(0)));
1348 dme1737_write(data
, DME1737_REG_PWM_RR(0),
1351 case SYS_PWM_AUTO_POINT1_PWM
:
1352 /* Only valid for pwm[1-3] */
1353 data
->pwm_min
[ix
] = SENSORS_LIMIT(val
, 0, 255);
1354 dme1737_write(data
, DME1737_REG_PWM_MIN(ix
),
1358 dev_dbg(dev
, "Unknown function %d.\n", fn
);
1361 mutex_unlock(&data
->update_lock
);
1366 /* ---------------------------------------------------------------------
1367 * Miscellaneous sysfs attributes
1368 * --------------------------------------------------------------------- */
1370 static ssize_t
show_vrm(struct device
*dev
, struct device_attribute
*attr
,
1373 struct i2c_client
*client
= to_i2c_client(dev
);
1374 struct dme1737_data
*data
= i2c_get_clientdata(client
);
1376 return sprintf(buf
, "%d\n", data
->vrm
);
1379 static ssize_t
set_vrm(struct device
*dev
, struct device_attribute
*attr
,
1380 const char *buf
, size_t count
)
1382 struct dme1737_data
*data
= dev_get_drvdata(dev
);
1383 long val
= simple_strtol(buf
, NULL
, 10);
1389 static ssize_t
show_vid(struct device
*dev
, struct device_attribute
*attr
,
1392 struct dme1737_data
*data
= dme1737_update_device(dev
);
1394 return sprintf(buf
, "%d\n", vid_from_reg(data
->vid
, data
->vrm
));
1397 static ssize_t
show_name(struct device
*dev
, struct device_attribute
*attr
,
1400 struct dme1737_data
*data
= dev_get_drvdata(dev
);
1402 return sprintf(buf
, "%s\n", data
->name
);
1405 /* ---------------------------------------------------------------------
1406 * Sysfs device attribute defines and structs
1407 * --------------------------------------------------------------------- */
1411 #define SENSOR_DEVICE_ATTR_IN(ix) \
1412 static SENSOR_DEVICE_ATTR_2(in##ix##_input, S_IRUGO, \
1413 show_in, NULL, SYS_IN_INPUT, ix); \
1414 static SENSOR_DEVICE_ATTR_2(in##ix##_min, S_IRUGO | S_IWUSR, \
1415 show_in, set_in, SYS_IN_MIN, ix); \
1416 static SENSOR_DEVICE_ATTR_2(in##ix##_max, S_IRUGO | S_IWUSR, \
1417 show_in, set_in, SYS_IN_MAX, ix); \
1418 static SENSOR_DEVICE_ATTR_2(in##ix##_alarm, S_IRUGO, \
1419 show_in, NULL, SYS_IN_ALARM, ix)
1421 SENSOR_DEVICE_ATTR_IN(0);
1422 SENSOR_DEVICE_ATTR_IN(1);
1423 SENSOR_DEVICE_ATTR_IN(2);
1424 SENSOR_DEVICE_ATTR_IN(3);
1425 SENSOR_DEVICE_ATTR_IN(4);
1426 SENSOR_DEVICE_ATTR_IN(5);
1427 SENSOR_DEVICE_ATTR_IN(6);
1429 /* Temperatures 1-3 */
1431 #define SENSOR_DEVICE_ATTR_TEMP(ix) \
1432 static SENSOR_DEVICE_ATTR_2(temp##ix##_input, S_IRUGO, \
1433 show_temp, NULL, SYS_TEMP_INPUT, ix-1); \
1434 static SENSOR_DEVICE_ATTR_2(temp##ix##_min, S_IRUGO | S_IWUSR, \
1435 show_temp, set_temp, SYS_TEMP_MIN, ix-1); \
1436 static SENSOR_DEVICE_ATTR_2(temp##ix##_max, S_IRUGO | S_IWUSR, \
1437 show_temp, set_temp, SYS_TEMP_MAX, ix-1); \
1438 static SENSOR_DEVICE_ATTR_2(temp##ix##_offset, S_IRUGO, \
1439 show_temp, set_temp, SYS_TEMP_OFFSET, ix-1); \
1440 static SENSOR_DEVICE_ATTR_2(temp##ix##_alarm, S_IRUGO, \
1441 show_temp, NULL, SYS_TEMP_ALARM, ix-1); \
1442 static SENSOR_DEVICE_ATTR_2(temp##ix##_fault, S_IRUGO, \
1443 show_temp, NULL, SYS_TEMP_FAULT, ix-1)
1445 SENSOR_DEVICE_ATTR_TEMP(1);
1446 SENSOR_DEVICE_ATTR_TEMP(2);
1447 SENSOR_DEVICE_ATTR_TEMP(3);
1451 #define SENSOR_DEVICE_ATTR_ZONE(ix) \
1452 static SENSOR_DEVICE_ATTR_2(zone##ix##_auto_channels_temp, S_IRUGO, \
1453 show_zone, NULL, SYS_ZONE_AUTO_CHANNELS_TEMP, ix-1); \
1454 static SENSOR_DEVICE_ATTR_2(zone##ix##_auto_point1_temp_hyst, S_IRUGO, \
1455 show_zone, set_zone, SYS_ZONE_AUTO_POINT1_TEMP_HYST, ix-1); \
1456 static SENSOR_DEVICE_ATTR_2(zone##ix##_auto_point1_temp, S_IRUGO, \
1457 show_zone, set_zone, SYS_ZONE_AUTO_POINT1_TEMP, ix-1); \
1458 static SENSOR_DEVICE_ATTR_2(zone##ix##_auto_point2_temp, S_IRUGO, \
1459 show_zone, set_zone, SYS_ZONE_AUTO_POINT2_TEMP, ix-1); \
1460 static SENSOR_DEVICE_ATTR_2(zone##ix##_auto_point3_temp, S_IRUGO, \
1461 show_zone, set_zone, SYS_ZONE_AUTO_POINT3_TEMP, ix-1)
1463 SENSOR_DEVICE_ATTR_ZONE(1);
1464 SENSOR_DEVICE_ATTR_ZONE(2);
1465 SENSOR_DEVICE_ATTR_ZONE(3);
1469 #define SENSOR_DEVICE_ATTR_FAN_1TO4(ix) \
1470 static SENSOR_DEVICE_ATTR_2(fan##ix##_input, S_IRUGO, \
1471 show_fan, NULL, SYS_FAN_INPUT, ix-1); \
1472 static SENSOR_DEVICE_ATTR_2(fan##ix##_min, S_IRUGO | S_IWUSR, \
1473 show_fan, set_fan, SYS_FAN_MIN, ix-1); \
1474 static SENSOR_DEVICE_ATTR_2(fan##ix##_alarm, S_IRUGO, \
1475 show_fan, NULL, SYS_FAN_ALARM, ix-1); \
1476 static SENSOR_DEVICE_ATTR_2(fan##ix##_type, S_IRUGO | S_IWUSR, \
1477 show_fan, set_fan, SYS_FAN_TYPE, ix-1)
1479 SENSOR_DEVICE_ATTR_FAN_1TO4(1);
1480 SENSOR_DEVICE_ATTR_FAN_1TO4(2);
1481 SENSOR_DEVICE_ATTR_FAN_1TO4(3);
1482 SENSOR_DEVICE_ATTR_FAN_1TO4(4);
1486 #define SENSOR_DEVICE_ATTR_FAN_5TO6(ix) \
1487 static SENSOR_DEVICE_ATTR_2(fan##ix##_input, S_IRUGO, \
1488 show_fan, NULL, SYS_FAN_INPUT, ix-1); \
1489 static SENSOR_DEVICE_ATTR_2(fan##ix##_min, S_IRUGO | S_IWUSR, \
1490 show_fan, set_fan, SYS_FAN_MIN, ix-1); \
1491 static SENSOR_DEVICE_ATTR_2(fan##ix##_alarm, S_IRUGO, \
1492 show_fan, NULL, SYS_FAN_ALARM, ix-1); \
1493 static SENSOR_DEVICE_ATTR_2(fan##ix##_max, S_IRUGO | S_IWUSR, \
1494 show_fan, set_fan, SYS_FAN_MAX, ix-1)
1496 SENSOR_DEVICE_ATTR_FAN_5TO6(5);
1497 SENSOR_DEVICE_ATTR_FAN_5TO6(6);
1501 #define SENSOR_DEVICE_ATTR_PWM_1TO3(ix) \
1502 static SENSOR_DEVICE_ATTR_2(pwm##ix, S_IRUGO, \
1503 show_pwm, set_pwm, SYS_PWM, ix-1); \
1504 static SENSOR_DEVICE_ATTR_2(pwm##ix##_freq, S_IRUGO, \
1505 show_pwm, set_pwm, SYS_PWM_FREQ, ix-1); \
1506 static SENSOR_DEVICE_ATTR_2(pwm##ix##_enable, S_IRUGO, \
1507 show_pwm, set_pwm, SYS_PWM_ENABLE, ix-1); \
1508 static SENSOR_DEVICE_ATTR_2(pwm##ix##_ramp_rate, S_IRUGO, \
1509 show_pwm, set_pwm, SYS_PWM_RAMP_RATE, ix-1); \
1510 static SENSOR_DEVICE_ATTR_2(pwm##ix##_auto_channels_zone, S_IRUGO, \
1511 show_pwm, set_pwm, SYS_PWM_AUTO_CHANNELS_ZONE, ix-1); \
1512 static SENSOR_DEVICE_ATTR_2(pwm##ix##_auto_pwm_min, S_IRUGO, \
1513 show_pwm, set_pwm, SYS_PWM_AUTO_PWM_MIN, ix-1); \
1514 static SENSOR_DEVICE_ATTR_2(pwm##ix##_auto_point1_pwm, S_IRUGO, \
1515 show_pwm, set_pwm, SYS_PWM_AUTO_POINT1_PWM, ix-1); \
1516 static SENSOR_DEVICE_ATTR_2(pwm##ix##_auto_point2_pwm, S_IRUGO, \
1517 show_pwm, NULL, SYS_PWM_AUTO_POINT2_PWM, ix-1)
1519 SENSOR_DEVICE_ATTR_PWM_1TO3(1);
1520 SENSOR_DEVICE_ATTR_PWM_1TO3(2);
1521 SENSOR_DEVICE_ATTR_PWM_1TO3(3);
1525 #define SENSOR_DEVICE_ATTR_PWM_5TO6(ix) \
1526 static SENSOR_DEVICE_ATTR_2(pwm##ix, S_IRUGO, \
1527 show_pwm, set_pwm, SYS_PWM, ix-1); \
1528 static SENSOR_DEVICE_ATTR_2(pwm##ix##_freq, S_IRUGO, \
1529 show_pwm, set_pwm, SYS_PWM_FREQ, ix-1); \
1530 static SENSOR_DEVICE_ATTR_2(pwm##ix##_enable, S_IRUGO, \
1531 show_pwm, NULL, SYS_PWM_ENABLE, ix-1)
1533 SENSOR_DEVICE_ATTR_PWM_5TO6(5);
1534 SENSOR_DEVICE_ATTR_PWM_5TO6(6);
1538 static DEVICE_ATTR(vrm
, S_IRUGO
| S_IWUSR
, show_vrm
, set_vrm
);
1539 static DEVICE_ATTR(cpu0_vid
, S_IRUGO
, show_vid
, NULL
);
1540 static DEVICE_ATTR(name
, S_IRUGO
, show_name
, NULL
); /* for ISA devices */
1542 /* This struct holds all the attributes that are always present and need to be
1543 * created unconditionally. The attributes that need modification of their
1544 * permissions are created read-only and write permissions are added or removed
1545 * on the fly when required */
1546 static struct attribute
*dme1737_attr
[] ={
1548 &sensor_dev_attr_in0_input
.dev_attr
.attr
,
1549 &sensor_dev_attr_in0_min
.dev_attr
.attr
,
1550 &sensor_dev_attr_in0_max
.dev_attr
.attr
,
1551 &sensor_dev_attr_in0_alarm
.dev_attr
.attr
,
1552 &sensor_dev_attr_in1_input
.dev_attr
.attr
,
1553 &sensor_dev_attr_in1_min
.dev_attr
.attr
,
1554 &sensor_dev_attr_in1_max
.dev_attr
.attr
,
1555 &sensor_dev_attr_in1_alarm
.dev_attr
.attr
,
1556 &sensor_dev_attr_in2_input
.dev_attr
.attr
,
1557 &sensor_dev_attr_in2_min
.dev_attr
.attr
,
1558 &sensor_dev_attr_in2_max
.dev_attr
.attr
,
1559 &sensor_dev_attr_in2_alarm
.dev_attr
.attr
,
1560 &sensor_dev_attr_in3_input
.dev_attr
.attr
,
1561 &sensor_dev_attr_in3_min
.dev_attr
.attr
,
1562 &sensor_dev_attr_in3_max
.dev_attr
.attr
,
1563 &sensor_dev_attr_in3_alarm
.dev_attr
.attr
,
1564 &sensor_dev_attr_in4_input
.dev_attr
.attr
,
1565 &sensor_dev_attr_in4_min
.dev_attr
.attr
,
1566 &sensor_dev_attr_in4_max
.dev_attr
.attr
,
1567 &sensor_dev_attr_in4_alarm
.dev_attr
.attr
,
1568 &sensor_dev_attr_in5_input
.dev_attr
.attr
,
1569 &sensor_dev_attr_in5_min
.dev_attr
.attr
,
1570 &sensor_dev_attr_in5_max
.dev_attr
.attr
,
1571 &sensor_dev_attr_in5_alarm
.dev_attr
.attr
,
1572 &sensor_dev_attr_in6_input
.dev_attr
.attr
,
1573 &sensor_dev_attr_in6_min
.dev_attr
.attr
,
1574 &sensor_dev_attr_in6_max
.dev_attr
.attr
,
1575 &sensor_dev_attr_in6_alarm
.dev_attr
.attr
,
1577 &sensor_dev_attr_temp1_input
.dev_attr
.attr
,
1578 &sensor_dev_attr_temp1_min
.dev_attr
.attr
,
1579 &sensor_dev_attr_temp1_max
.dev_attr
.attr
,
1580 &sensor_dev_attr_temp1_alarm
.dev_attr
.attr
,
1581 &sensor_dev_attr_temp1_fault
.dev_attr
.attr
,
1582 &sensor_dev_attr_temp2_input
.dev_attr
.attr
,
1583 &sensor_dev_attr_temp2_min
.dev_attr
.attr
,
1584 &sensor_dev_attr_temp2_max
.dev_attr
.attr
,
1585 &sensor_dev_attr_temp2_alarm
.dev_attr
.attr
,
1586 &sensor_dev_attr_temp2_fault
.dev_attr
.attr
,
1587 &sensor_dev_attr_temp3_input
.dev_attr
.attr
,
1588 &sensor_dev_attr_temp3_min
.dev_attr
.attr
,
1589 &sensor_dev_attr_temp3_max
.dev_attr
.attr
,
1590 &sensor_dev_attr_temp3_alarm
.dev_attr
.attr
,
1591 &sensor_dev_attr_temp3_fault
.dev_attr
.attr
,
1593 &sensor_dev_attr_zone1_auto_point1_temp
.dev_attr
.attr
,
1594 &sensor_dev_attr_zone1_auto_point2_temp
.dev_attr
.attr
,
1595 &sensor_dev_attr_zone1_auto_point3_temp
.dev_attr
.attr
,
1596 &sensor_dev_attr_zone1_auto_channels_temp
.dev_attr
.attr
,
1597 &sensor_dev_attr_zone2_auto_point1_temp
.dev_attr
.attr
,
1598 &sensor_dev_attr_zone2_auto_point2_temp
.dev_attr
.attr
,
1599 &sensor_dev_attr_zone2_auto_point3_temp
.dev_attr
.attr
,
1600 &sensor_dev_attr_zone2_auto_channels_temp
.dev_attr
.attr
,
1601 &sensor_dev_attr_zone3_auto_point1_temp
.dev_attr
.attr
,
1602 &sensor_dev_attr_zone3_auto_point2_temp
.dev_attr
.attr
,
1603 &sensor_dev_attr_zone3_auto_point3_temp
.dev_attr
.attr
,
1604 &sensor_dev_attr_zone3_auto_channels_temp
.dev_attr
.attr
,
1608 static const struct attribute_group dme1737_group
= {
1609 .attrs
= dme1737_attr
,
1612 /* The following struct holds misc attributes, which are not available in all
1613 * chips. Their creation depends on the chip type which is determined during
1615 static struct attribute
*dme1737_misc_attr
[] = {
1617 &sensor_dev_attr_temp1_offset
.dev_attr
.attr
,
1618 &sensor_dev_attr_temp2_offset
.dev_attr
.attr
,
1619 &sensor_dev_attr_temp3_offset
.dev_attr
.attr
,
1621 &sensor_dev_attr_zone1_auto_point1_temp_hyst
.dev_attr
.attr
,
1622 &sensor_dev_attr_zone2_auto_point1_temp_hyst
.dev_attr
.attr
,
1623 &sensor_dev_attr_zone3_auto_point1_temp_hyst
.dev_attr
.attr
,
1626 &dev_attr_cpu0_vid
.attr
,
1630 static const struct attribute_group dme1737_misc_group
= {
1631 .attrs
= dme1737_misc_attr
,
1634 /* The following structs hold the PWM attributes, some of which are optional.
1635 * Their creation depends on the chip configuration which is determined during
1637 static struct attribute
*dme1737_pwm1_attr
[] = {
1638 &sensor_dev_attr_pwm1
.dev_attr
.attr
,
1639 &sensor_dev_attr_pwm1_freq
.dev_attr
.attr
,
1640 &sensor_dev_attr_pwm1_enable
.dev_attr
.attr
,
1641 &sensor_dev_attr_pwm1_ramp_rate
.dev_attr
.attr
,
1642 &sensor_dev_attr_pwm1_auto_channels_zone
.dev_attr
.attr
,
1643 &sensor_dev_attr_pwm1_auto_point1_pwm
.dev_attr
.attr
,
1644 &sensor_dev_attr_pwm1_auto_point2_pwm
.dev_attr
.attr
,
1647 static struct attribute
*dme1737_pwm2_attr
[] = {
1648 &sensor_dev_attr_pwm2
.dev_attr
.attr
,
1649 &sensor_dev_attr_pwm2_freq
.dev_attr
.attr
,
1650 &sensor_dev_attr_pwm2_enable
.dev_attr
.attr
,
1651 &sensor_dev_attr_pwm2_ramp_rate
.dev_attr
.attr
,
1652 &sensor_dev_attr_pwm2_auto_channels_zone
.dev_attr
.attr
,
1653 &sensor_dev_attr_pwm2_auto_point1_pwm
.dev_attr
.attr
,
1654 &sensor_dev_attr_pwm2_auto_point2_pwm
.dev_attr
.attr
,
1657 static struct attribute
*dme1737_pwm3_attr
[] = {
1658 &sensor_dev_attr_pwm3
.dev_attr
.attr
,
1659 &sensor_dev_attr_pwm3_freq
.dev_attr
.attr
,
1660 &sensor_dev_attr_pwm3_enable
.dev_attr
.attr
,
1661 &sensor_dev_attr_pwm3_ramp_rate
.dev_attr
.attr
,
1662 &sensor_dev_attr_pwm3_auto_channels_zone
.dev_attr
.attr
,
1663 &sensor_dev_attr_pwm3_auto_point1_pwm
.dev_attr
.attr
,
1664 &sensor_dev_attr_pwm3_auto_point2_pwm
.dev_attr
.attr
,
1667 static struct attribute
*dme1737_pwm5_attr
[] = {
1668 &sensor_dev_attr_pwm5
.dev_attr
.attr
,
1669 &sensor_dev_attr_pwm5_freq
.dev_attr
.attr
,
1670 &sensor_dev_attr_pwm5_enable
.dev_attr
.attr
,
1673 static struct attribute
*dme1737_pwm6_attr
[] = {
1674 &sensor_dev_attr_pwm6
.dev_attr
.attr
,
1675 &sensor_dev_attr_pwm6_freq
.dev_attr
.attr
,
1676 &sensor_dev_attr_pwm6_enable
.dev_attr
.attr
,
1680 static const struct attribute_group dme1737_pwm_group
[] = {
1681 { .attrs
= dme1737_pwm1_attr
},
1682 { .attrs
= dme1737_pwm2_attr
},
1683 { .attrs
= dme1737_pwm3_attr
},
1685 { .attrs
= dme1737_pwm5_attr
},
1686 { .attrs
= dme1737_pwm6_attr
},
1689 /* The following struct holds misc PWM attributes, which are not available in
1690 * all chips. Their creation depends on the chip type which is determined
1691 * during module load. */
1692 static struct attribute
*dme1737_pwm_misc_attr
[] = {
1693 &sensor_dev_attr_pwm1_auto_pwm_min
.dev_attr
.attr
,
1694 &sensor_dev_attr_pwm2_auto_pwm_min
.dev_attr
.attr
,
1695 &sensor_dev_attr_pwm3_auto_pwm_min
.dev_attr
.attr
,
1698 /* The following structs hold the fan attributes, some of which are optional.
1699 * Their creation depends on the chip configuration which is determined during
1701 static struct attribute
*dme1737_fan1_attr
[] = {
1702 &sensor_dev_attr_fan1_input
.dev_attr
.attr
,
1703 &sensor_dev_attr_fan1_min
.dev_attr
.attr
,
1704 &sensor_dev_attr_fan1_alarm
.dev_attr
.attr
,
1705 &sensor_dev_attr_fan1_type
.dev_attr
.attr
,
1708 static struct attribute
*dme1737_fan2_attr
[] = {
1709 &sensor_dev_attr_fan2_input
.dev_attr
.attr
,
1710 &sensor_dev_attr_fan2_min
.dev_attr
.attr
,
1711 &sensor_dev_attr_fan2_alarm
.dev_attr
.attr
,
1712 &sensor_dev_attr_fan2_type
.dev_attr
.attr
,
1715 static struct attribute
*dme1737_fan3_attr
[] = {
1716 &sensor_dev_attr_fan3_input
.dev_attr
.attr
,
1717 &sensor_dev_attr_fan3_min
.dev_attr
.attr
,
1718 &sensor_dev_attr_fan3_alarm
.dev_attr
.attr
,
1719 &sensor_dev_attr_fan3_type
.dev_attr
.attr
,
1722 static struct attribute
*dme1737_fan4_attr
[] = {
1723 &sensor_dev_attr_fan4_input
.dev_attr
.attr
,
1724 &sensor_dev_attr_fan4_min
.dev_attr
.attr
,
1725 &sensor_dev_attr_fan4_alarm
.dev_attr
.attr
,
1726 &sensor_dev_attr_fan4_type
.dev_attr
.attr
,
1729 static struct attribute
*dme1737_fan5_attr
[] = {
1730 &sensor_dev_attr_fan5_input
.dev_attr
.attr
,
1731 &sensor_dev_attr_fan5_min
.dev_attr
.attr
,
1732 &sensor_dev_attr_fan5_alarm
.dev_attr
.attr
,
1733 &sensor_dev_attr_fan5_max
.dev_attr
.attr
,
1736 static struct attribute
*dme1737_fan6_attr
[] = {
1737 &sensor_dev_attr_fan6_input
.dev_attr
.attr
,
1738 &sensor_dev_attr_fan6_min
.dev_attr
.attr
,
1739 &sensor_dev_attr_fan6_alarm
.dev_attr
.attr
,
1740 &sensor_dev_attr_fan6_max
.dev_attr
.attr
,
1744 static const struct attribute_group dme1737_fan_group
[] = {
1745 { .attrs
= dme1737_fan1_attr
},
1746 { .attrs
= dme1737_fan2_attr
},
1747 { .attrs
= dme1737_fan3_attr
},
1748 { .attrs
= dme1737_fan4_attr
},
1749 { .attrs
= dme1737_fan5_attr
},
1750 { .attrs
= dme1737_fan6_attr
},
1753 /* The permissions of the following zone attributes are changed to read-
1754 * writeable if the chip is *not* locked. Otherwise they stay read-only. */
1755 static struct attribute
*dme1737_zone_chmod_attr
[] = {
1756 &sensor_dev_attr_zone1_auto_point1_temp
.dev_attr
.attr
,
1757 &sensor_dev_attr_zone1_auto_point2_temp
.dev_attr
.attr
,
1758 &sensor_dev_attr_zone1_auto_point3_temp
.dev_attr
.attr
,
1759 &sensor_dev_attr_zone2_auto_point1_temp
.dev_attr
.attr
,
1760 &sensor_dev_attr_zone2_auto_point2_temp
.dev_attr
.attr
,
1761 &sensor_dev_attr_zone2_auto_point3_temp
.dev_attr
.attr
,
1762 &sensor_dev_attr_zone3_auto_point1_temp
.dev_attr
.attr
,
1763 &sensor_dev_attr_zone3_auto_point2_temp
.dev_attr
.attr
,
1764 &sensor_dev_attr_zone3_auto_point3_temp
.dev_attr
.attr
,
1768 static const struct attribute_group dme1737_zone_chmod_group
= {
1769 .attrs
= dme1737_zone_chmod_attr
,
1772 /* The permissions of the following PWM attributes are changed to read-
1773 * writeable if the chip is *not* locked and the respective PWM is available.
1774 * Otherwise they stay read-only. */
1775 static struct attribute
*dme1737_pwm1_chmod_attr
[] = {
1776 &sensor_dev_attr_pwm1_freq
.dev_attr
.attr
,
1777 &sensor_dev_attr_pwm1_enable
.dev_attr
.attr
,
1778 &sensor_dev_attr_pwm1_ramp_rate
.dev_attr
.attr
,
1779 &sensor_dev_attr_pwm1_auto_channels_zone
.dev_attr
.attr
,
1780 &sensor_dev_attr_pwm1_auto_point1_pwm
.dev_attr
.attr
,
1783 static struct attribute
*dme1737_pwm2_chmod_attr
[] = {
1784 &sensor_dev_attr_pwm2_freq
.dev_attr
.attr
,
1785 &sensor_dev_attr_pwm2_enable
.dev_attr
.attr
,
1786 &sensor_dev_attr_pwm2_ramp_rate
.dev_attr
.attr
,
1787 &sensor_dev_attr_pwm2_auto_channels_zone
.dev_attr
.attr
,
1788 &sensor_dev_attr_pwm2_auto_point1_pwm
.dev_attr
.attr
,
1791 static struct attribute
*dme1737_pwm3_chmod_attr
[] = {
1792 &sensor_dev_attr_pwm3_freq
.dev_attr
.attr
,
1793 &sensor_dev_attr_pwm3_enable
.dev_attr
.attr
,
1794 &sensor_dev_attr_pwm3_ramp_rate
.dev_attr
.attr
,
1795 &sensor_dev_attr_pwm3_auto_channels_zone
.dev_attr
.attr
,
1796 &sensor_dev_attr_pwm3_auto_point1_pwm
.dev_attr
.attr
,
1799 static struct attribute
*dme1737_pwm5_chmod_attr
[] = {
1800 &sensor_dev_attr_pwm5
.dev_attr
.attr
,
1801 &sensor_dev_attr_pwm5_freq
.dev_attr
.attr
,
1804 static struct attribute
*dme1737_pwm6_chmod_attr
[] = {
1805 &sensor_dev_attr_pwm6
.dev_attr
.attr
,
1806 &sensor_dev_attr_pwm6_freq
.dev_attr
.attr
,
1810 static const struct attribute_group dme1737_pwm_chmod_group
[] = {
1811 { .attrs
= dme1737_pwm1_chmod_attr
},
1812 { .attrs
= dme1737_pwm2_chmod_attr
},
1813 { .attrs
= dme1737_pwm3_chmod_attr
},
1815 { .attrs
= dme1737_pwm5_chmod_attr
},
1816 { .attrs
= dme1737_pwm6_chmod_attr
},
1819 /* Pwm[1-3] are read-writeable if the associated pwm is in manual mode and the
1820 * chip is not locked. Otherwise they are read-only. */
1821 static struct attribute
*dme1737_pwm_chmod_attr
[] = {
1822 &sensor_dev_attr_pwm1
.dev_attr
.attr
,
1823 &sensor_dev_attr_pwm2
.dev_attr
.attr
,
1824 &sensor_dev_attr_pwm3
.dev_attr
.attr
,
1827 /* ---------------------------------------------------------------------
1828 * Super-IO functions
1829 * --------------------------------------------------------------------- */
1831 static inline void dme1737_sio_enter(int sio_cip
)
1833 outb(0x55, sio_cip
);
1836 static inline void dme1737_sio_exit(int sio_cip
)
1838 outb(0xaa, sio_cip
);
1841 static inline int dme1737_sio_inb(int sio_cip
, int reg
)
1844 return inb(sio_cip
+ 1);
1847 static inline void dme1737_sio_outb(int sio_cip
, int reg
, int val
)
1850 outb(val
, sio_cip
+ 1);
1853 /* ---------------------------------------------------------------------
1854 * Device initialization
1855 * --------------------------------------------------------------------- */
1857 static int dme1737_i2c_get_features(int, struct dme1737_data
*);
1859 static void dme1737_chmod_file(struct device
*dev
,
1860 struct attribute
*attr
, mode_t mode
)
1862 if (sysfs_chmod_file(&dev
->kobj
, attr
, mode
)) {
1863 dev_warn(dev
, "Failed to change permissions of %s.\n",
1868 static void dme1737_chmod_group(struct device
*dev
,
1869 const struct attribute_group
*group
,
1872 struct attribute
**attr
;
1874 for (attr
= group
->attrs
; *attr
; attr
++) {
1875 dme1737_chmod_file(dev
, *attr
, mode
);
1879 static void dme1737_remove_files(struct device
*dev
)
1881 struct dme1737_data
*data
= dev_get_drvdata(dev
);
1884 for (ix
= 0; ix
< ARRAY_SIZE(dme1737_fan_group
); ix
++) {
1885 if (data
->has_fan
& (1 << ix
)) {
1886 sysfs_remove_group(&dev
->kobj
,
1887 &dme1737_fan_group
[ix
]);
1891 for (ix
= 0; ix
< ARRAY_SIZE(dme1737_pwm_group
); ix
++) {
1892 if (data
->has_pwm
& (1 << ix
)) {
1893 sysfs_remove_group(&dev
->kobj
,
1894 &dme1737_pwm_group
[ix
]);
1895 if (data
->type
!= sch5027
&& ix
< 3) {
1896 sysfs_remove_file(&dev
->kobj
,
1897 dme1737_pwm_misc_attr
[ix
]);
1902 if (data
->type
!= sch5027
) {
1903 sysfs_remove_group(&dev
->kobj
, &dme1737_misc_group
);
1906 sysfs_remove_group(&dev
->kobj
, &dme1737_group
);
1908 if (!data
->client
) {
1909 sysfs_remove_file(&dev
->kobj
, &dev_attr_name
.attr
);
1913 static int dme1737_create_files(struct device
*dev
)
1915 struct dme1737_data
*data
= dev_get_drvdata(dev
);
1918 /* Create a name attribute for ISA devices */
1919 if (!data
->client
&&
1920 (err
= sysfs_create_file(&dev
->kobj
, &dev_attr_name
.attr
))) {
1924 /* Create standard sysfs attributes */
1925 if ((err
= sysfs_create_group(&dev
->kobj
, &dme1737_group
))) {
1929 /* Create misc sysfs attributes */
1930 if ((data
->type
!= sch5027
) &&
1931 (err
= sysfs_create_group(&dev
->kobj
,
1932 &dme1737_misc_group
))) {
1936 /* Create fan sysfs attributes */
1937 for (ix
= 0; ix
< ARRAY_SIZE(dme1737_fan_group
); ix
++) {
1938 if (data
->has_fan
& (1 << ix
)) {
1939 if ((err
= sysfs_create_group(&dev
->kobj
,
1940 &dme1737_fan_group
[ix
]))) {
1946 /* Create PWM sysfs attributes */
1947 for (ix
= 0; ix
< ARRAY_SIZE(dme1737_pwm_group
); ix
++) {
1948 if (data
->has_pwm
& (1 << ix
)) {
1949 if ((err
= sysfs_create_group(&dev
->kobj
,
1950 &dme1737_pwm_group
[ix
]))) {
1953 if (data
->type
!= sch5027
&& ix
< 3 &&
1954 (err
= sysfs_create_file(&dev
->kobj
,
1955 dme1737_pwm_misc_attr
[ix
]))) {
1961 /* Inform if the device is locked. Otherwise change the permissions of
1962 * selected attributes from read-only to read-writeable. */
1963 if (data
->config
& 0x02) {
1964 dev_info(dev
, "Device is locked. Some attributes "
1965 "will be read-only.\n");
1967 /* Change permissions of zone sysfs attributes */
1968 dme1737_chmod_group(dev
, &dme1737_zone_chmod_group
,
1971 /* Change permissions of misc sysfs attributes */
1972 if (data
->type
!= sch5027
) {
1973 dme1737_chmod_group(dev
, &dme1737_misc_group
,
1977 /* Change permissions of PWM sysfs attributes */
1978 for (ix
= 0; ix
< ARRAY_SIZE(dme1737_pwm_chmod_group
); ix
++) {
1979 if (data
->has_pwm
& (1 << ix
)) {
1980 dme1737_chmod_group(dev
,
1981 &dme1737_pwm_chmod_group
[ix
],
1983 if (data
->type
!= sch5027
&& ix
< 3) {
1984 dme1737_chmod_file(dev
,
1985 dme1737_pwm_misc_attr
[ix
],
1991 /* Change permissions of pwm[1-3] if in manual mode */
1992 for (ix
= 0; ix
< 3; ix
++) {
1993 if ((data
->has_pwm
& (1 << ix
)) &&
1994 (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == 1)) {
1995 dme1737_chmod_file(dev
,
1996 dme1737_pwm_chmod_attr
[ix
],
2005 dme1737_remove_files(dev
);
2010 static int dme1737_init_device(struct device
*dev
)
2012 struct dme1737_data
*data
= dev_get_drvdata(dev
);
2013 struct i2c_client
*client
= data
->client
;
2017 /* Point to the right nominal voltages array */
2018 data
->in_nominal
= IN_NOMINAL(data
->type
);
2020 data
->config
= dme1737_read(data
, DME1737_REG_CONFIG
);
2021 /* Inform if part is not monitoring/started */
2022 if (!(data
->config
& 0x01)) {
2024 dev_err(dev
, "Device is not monitoring. "
2025 "Use the force_start load parameter to "
2030 /* Force monitoring */
2031 data
->config
|= 0x01;
2032 dme1737_write(data
, DME1737_REG_CONFIG
, data
->config
);
2034 /* Inform if part is not ready */
2035 if (!(data
->config
& 0x04)) {
2036 dev_err(dev
, "Device is not ready.\n");
2040 /* Determine which optional fan and pwm features are enabled/present */
2041 if (client
) { /* I2C chip */
2042 data
->config2
= dme1737_read(data
, DME1737_REG_CONFIG2
);
2043 /* Check if optional fan3 input is enabled */
2044 if (data
->config2
& 0x04) {
2045 data
->has_fan
|= (1 << 2);
2048 /* Fan4 and pwm3 are only available if the client's I2C address
2049 * is the default 0x2e. Otherwise the I/Os associated with
2050 * these functions are used for addr enable/select. */
2051 if (client
->addr
== 0x2e) {
2052 data
->has_fan
|= (1 << 3);
2053 data
->has_pwm
|= (1 << 2);
2056 /* Determine which of the optional fan[5-6] and pwm[5-6]
2057 * features are enabled. For this, we need to query the runtime
2058 * registers through the Super-IO LPC interface. Try both
2059 * config ports 0x2e and 0x4e. */
2060 if (dme1737_i2c_get_features(0x2e, data
) &&
2061 dme1737_i2c_get_features(0x4e, data
)) {
2062 dev_warn(dev
, "Failed to query Super-IO for optional "
2065 } else { /* ISA chip */
2066 /* Fan3 and pwm3 are always available. Fan[4-5] and pwm[5-6]
2067 * don't exist in the ISA chip. */
2068 data
->has_fan
|= (1 << 2);
2069 data
->has_pwm
|= (1 << 2);
2072 /* Fan1, fan2, pwm1, and pwm2 are always present */
2073 data
->has_fan
|= 0x03;
2074 data
->has_pwm
|= 0x03;
2076 dev_info(dev
, "Optional features: pwm3=%s, pwm5=%s, pwm6=%s, "
2077 "fan3=%s, fan4=%s, fan5=%s, fan6=%s.\n",
2078 (data
->has_pwm
& (1 << 2)) ? "yes" : "no",
2079 (data
->has_pwm
& (1 << 4)) ? "yes" : "no",
2080 (data
->has_pwm
& (1 << 5)) ? "yes" : "no",
2081 (data
->has_fan
& (1 << 2)) ? "yes" : "no",
2082 (data
->has_fan
& (1 << 3)) ? "yes" : "no",
2083 (data
->has_fan
& (1 << 4)) ? "yes" : "no",
2084 (data
->has_fan
& (1 << 5)) ? "yes" : "no");
2086 reg
= dme1737_read(data
, DME1737_REG_TACH_PWM
);
2087 /* Inform if fan-to-pwm mapping differs from the default */
2088 if (client
&& reg
!= 0xa4) { /* I2C chip */
2089 dev_warn(dev
, "Non-standard fan to pwm mapping: "
2090 "fan1->pwm%d, fan2->pwm%d, fan3->pwm%d, "
2091 "fan4->pwm%d. Please report to the driver "
2093 (reg
& 0x03) + 1, ((reg
>> 2) & 0x03) + 1,
2094 ((reg
>> 4) & 0x03) + 1, ((reg
>> 6) & 0x03) + 1);
2095 } else if (!client
&& reg
!= 0x24) { /* ISA chip */
2096 dev_warn(dev
, "Non-standard fan to pwm mapping: "
2097 "fan1->pwm%d, fan2->pwm%d, fan3->pwm%d. "
2098 "Please report to the driver maintainer.\n",
2099 (reg
& 0x03) + 1, ((reg
>> 2) & 0x03) + 1,
2100 ((reg
>> 4) & 0x03) + 1);
2103 /* Switch pwm[1-3] to manual mode if they are currently disabled and
2104 * set the duty-cycles to 0% (which is identical to the PWMs being
2106 if (!(data
->config
& 0x02)) {
2107 for (ix
= 0; ix
< 3; ix
++) {
2108 data
->pwm_config
[ix
] = dme1737_read(data
,
2109 DME1737_REG_PWM_CONFIG(ix
));
2110 if ((data
->has_pwm
& (1 << ix
)) &&
2111 (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == -1)) {
2112 dev_info(dev
, "Switching pwm%d to "
2113 "manual mode.\n", ix
+ 1);
2114 data
->pwm_config
[ix
] = PWM_EN_TO_REG(1,
2115 data
->pwm_config
[ix
]);
2116 dme1737_write(data
, DME1737_REG_PWM(ix
), 0);
2118 DME1737_REG_PWM_CONFIG(ix
),
2119 data
->pwm_config
[ix
]);
2124 /* Initialize the default PWM auto channels zone (acz) assignments */
2125 data
->pwm_acz
[0] = 1; /* pwm1 -> zone1 */
2126 data
->pwm_acz
[1] = 2; /* pwm2 -> zone2 */
2127 data
->pwm_acz
[2] = 4; /* pwm3 -> zone3 */
2130 if (data
->type
!= sch5027
) {
2131 data
->vrm
= vid_which_vrm();
2137 /* ---------------------------------------------------------------------
2138 * I2C device detection and registration
2139 * --------------------------------------------------------------------- */
2141 static struct i2c_driver dme1737_i2c_driver
;
2143 static int dme1737_i2c_get_features(int sio_cip
, struct dme1737_data
*data
)
2148 dme1737_sio_enter(sio_cip
);
2151 * The DME1737 can return either 0x78 or 0x77 as its device ID.
2152 * The SCH5027 returns 0x89 as its device ID. */
2153 reg
= force_id
? force_id
: dme1737_sio_inb(sio_cip
, 0x20);
2154 if (!(reg
== 0x77 || reg
== 0x78 || reg
== 0x89)) {
2159 /* Select logical device A (runtime registers) */
2160 dme1737_sio_outb(sio_cip
, 0x07, 0x0a);
2162 /* Get the base address of the runtime registers */
2163 if (!(addr
= (dme1737_sio_inb(sio_cip
, 0x60) << 8) |
2164 dme1737_sio_inb(sio_cip
, 0x61))) {
2169 /* Read the runtime registers to determine which optional features
2170 * are enabled and available. Bits [3:2] of registers 0x43-0x46 are set
2171 * to '10' if the respective feature is enabled. */
2172 if ((inb(addr
+ 0x43) & 0x0c) == 0x08) { /* fan6 */
2173 data
->has_fan
|= (1 << 5);
2175 if ((inb(addr
+ 0x44) & 0x0c) == 0x08) { /* pwm6 */
2176 data
->has_pwm
|= (1 << 5);
2178 if ((inb(addr
+ 0x45) & 0x0c) == 0x08) { /* fan5 */
2179 data
->has_fan
|= (1 << 4);
2181 if ((inb(addr
+ 0x46) & 0x0c) == 0x08) { /* pwm5 */
2182 data
->has_pwm
|= (1 << 4);
2186 dme1737_sio_exit(sio_cip
);
2191 /* Return 0 if detection is successful, -ENODEV otherwise */
2192 static int dme1737_i2c_detect(struct i2c_client
*client
, int kind
,
2193 struct i2c_board_info
*info
)
2195 struct i2c_adapter
*adapter
= client
->adapter
;
2196 struct device
*dev
= &adapter
->dev
;
2197 u8 company
, verstep
= 0;
2200 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_BYTE_DATA
)) {
2204 /* A negative kind means that the driver was loaded with no force
2205 * parameter (default), so we must identify the chip. */
2207 company
= i2c_smbus_read_byte_data(client
, DME1737_REG_COMPANY
);
2208 verstep
= i2c_smbus_read_byte_data(client
, DME1737_REG_VERSTEP
);
2210 if (company
== DME1737_COMPANY_SMSC
&&
2211 (verstep
& DME1737_VERSTEP_MASK
) == DME1737_VERSTEP
) {
2213 } else if (company
== DME1737_COMPANY_SMSC
&&
2214 verstep
== SCH5027_VERSTEP
) {
2221 if (kind
== sch5027
) {
2228 dev_info(dev
, "Found a %s chip at 0x%02x (rev 0x%02x).\n",
2229 kind
== sch5027
? "SCH5027" : "DME1737", client
->addr
,
2231 strlcpy(info
->type
, name
, I2C_NAME_SIZE
);
2236 static int dme1737_i2c_probe(struct i2c_client
*client
,
2237 const struct i2c_device_id
*id
)
2239 struct dme1737_data
*data
;
2240 struct device
*dev
= &client
->dev
;
2243 data
= kzalloc(sizeof(struct dme1737_data
), GFP_KERNEL
);
2249 i2c_set_clientdata(client
, data
);
2250 data
->type
= id
->driver_data
;
2251 data
->client
= client
;
2252 data
->name
= client
->name
;
2253 mutex_init(&data
->update_lock
);
2255 /* Initialize the DME1737 chip */
2256 if ((err
= dme1737_init_device(dev
))) {
2257 dev_err(dev
, "Failed to initialize device.\n");
2261 /* Create sysfs files */
2262 if ((err
= dme1737_create_files(dev
))) {
2263 dev_err(dev
, "Failed to create sysfs files.\n");
2267 /* Register device */
2268 data
->hwmon_dev
= hwmon_device_register(dev
);
2269 if (IS_ERR(data
->hwmon_dev
)) {
2270 dev_err(dev
, "Failed to register device.\n");
2271 err
= PTR_ERR(data
->hwmon_dev
);
2278 dme1737_remove_files(dev
);
2285 static int dme1737_i2c_remove(struct i2c_client
*client
)
2287 struct dme1737_data
*data
= i2c_get_clientdata(client
);
2289 hwmon_device_unregister(data
->hwmon_dev
);
2290 dme1737_remove_files(&client
->dev
);
2296 static const struct i2c_device_id dme1737_id
[] = {
2297 { "dme1737", dme1737
},
2298 { "sch5027", sch5027
},
2301 MODULE_DEVICE_TABLE(i2c
, dme1737_id
);
2303 static struct i2c_driver dme1737_i2c_driver
= {
2304 .class = I2C_CLASS_HWMON
,
2308 .probe
= dme1737_i2c_probe
,
2309 .remove
= dme1737_i2c_remove
,
2310 .id_table
= dme1737_id
,
2311 .detect
= dme1737_i2c_detect
,
2312 .address_data
= &addr_data
,
2315 /* ---------------------------------------------------------------------
2316 * ISA device detection and registration
2317 * --------------------------------------------------------------------- */
2319 static int __init
dme1737_isa_detect(int sio_cip
, unsigned short *addr
)
2322 unsigned short base_addr
;
2324 dme1737_sio_enter(sio_cip
);
2327 * We currently know about SCH3112 (0x7c), SCH3114 (0x7d), and
2328 * SCH3116 (0x7f). */
2329 reg
= force_id
? force_id
: dme1737_sio_inb(sio_cip
, 0x20);
2330 if (!(reg
== 0x7c || reg
== 0x7d || reg
== 0x7f)) {
2335 /* Select logical device A (runtime registers) */
2336 dme1737_sio_outb(sio_cip
, 0x07, 0x0a);
2338 /* Get the base address of the runtime registers */
2339 if (!(base_addr
= (dme1737_sio_inb(sio_cip
, 0x60) << 8) |
2340 dme1737_sio_inb(sio_cip
, 0x61))) {
2341 printk(KERN_ERR
"dme1737: Base address not set.\n");
2346 /* Access to the hwmon registers is through an index/data register
2347 * pair located at offset 0x70/0x71. */
2348 *addr
= base_addr
+ 0x70;
2351 dme1737_sio_exit(sio_cip
);
2355 static int __init
dme1737_isa_device_add(unsigned short addr
)
2357 struct resource res
= {
2359 .end
= addr
+ DME1737_EXTENT
- 1,
2361 .flags
= IORESOURCE_IO
,
2365 err
= acpi_check_resource_conflict(&res
);
2369 if (!(pdev
= platform_device_alloc("dme1737", addr
))) {
2370 printk(KERN_ERR
"dme1737: Failed to allocate device.\n");
2375 if ((err
= platform_device_add_resources(pdev
, &res
, 1))) {
2376 printk(KERN_ERR
"dme1737: Failed to add device resource "
2377 "(err = %d).\n", err
);
2378 goto exit_device_put
;
2381 if ((err
= platform_device_add(pdev
))) {
2382 printk(KERN_ERR
"dme1737: Failed to add device (err = %d).\n",
2384 goto exit_device_put
;
2390 platform_device_put(pdev
);
2396 static int __devinit
dme1737_isa_probe(struct platform_device
*pdev
)
2399 struct resource
*res
;
2400 struct dme1737_data
*data
;
2401 struct device
*dev
= &pdev
->dev
;
2404 res
= platform_get_resource(pdev
, IORESOURCE_IO
, 0);
2405 if (!request_region(res
->start
, DME1737_EXTENT
, "dme1737")) {
2406 dev_err(dev
, "Failed to request region 0x%04x-0x%04x.\n",
2407 (unsigned short)res
->start
,
2408 (unsigned short)res
->start
+ DME1737_EXTENT
- 1);
2413 if (!(data
= kzalloc(sizeof(struct dme1737_data
), GFP_KERNEL
))) {
2415 goto exit_release_region
;
2418 data
->addr
= res
->start
;
2419 platform_set_drvdata(pdev
, data
);
2421 /* Skip chip detection if module is loaded with force_id parameter */
2423 company
= dme1737_read(data
, DME1737_REG_COMPANY
);
2424 device
= dme1737_read(data
, DME1737_REG_DEVICE
);
2426 if (!((company
== DME1737_COMPANY_SMSC
) &&
2427 (device
== SCH311X_DEVICE
))) {
2432 data
->type
= sch311x
;
2434 /* Fill in the remaining client fields and initialize the mutex */
2435 data
->name
= "sch311x";
2436 mutex_init(&data
->update_lock
);
2438 dev_info(dev
, "Found a SCH311x chip at 0x%04x\n", data
->addr
);
2440 /* Initialize the chip */
2441 if ((err
= dme1737_init_device(dev
))) {
2442 dev_err(dev
, "Failed to initialize device.\n");
2446 /* Create sysfs files */
2447 if ((err
= dme1737_create_files(dev
))) {
2448 dev_err(dev
, "Failed to create sysfs files.\n");
2452 /* Register device */
2453 data
->hwmon_dev
= hwmon_device_register(dev
);
2454 if (IS_ERR(data
->hwmon_dev
)) {
2455 dev_err(dev
, "Failed to register device.\n");
2456 err
= PTR_ERR(data
->hwmon_dev
);
2457 goto exit_remove_files
;
2463 dme1737_remove_files(dev
);
2465 platform_set_drvdata(pdev
, NULL
);
2467 exit_release_region
:
2468 release_region(res
->start
, DME1737_EXTENT
);
2473 static int __devexit
dme1737_isa_remove(struct platform_device
*pdev
)
2475 struct dme1737_data
*data
= platform_get_drvdata(pdev
);
2477 hwmon_device_unregister(data
->hwmon_dev
);
2478 dme1737_remove_files(&pdev
->dev
);
2479 release_region(data
->addr
, DME1737_EXTENT
);
2480 platform_set_drvdata(pdev
, NULL
);
2486 static struct platform_driver dme1737_isa_driver
= {
2488 .owner
= THIS_MODULE
,
2491 .probe
= dme1737_isa_probe
,
2492 .remove
= __devexit_p(dme1737_isa_remove
),
2495 /* ---------------------------------------------------------------------
2496 * Module initialization and cleanup
2497 * --------------------------------------------------------------------- */
2499 static int __init
dme1737_init(void)
2502 unsigned short addr
;
2504 if ((err
= i2c_add_driver(&dme1737_i2c_driver
))) {
2508 if (dme1737_isa_detect(0x2e, &addr
) &&
2509 dme1737_isa_detect(0x4e, &addr
) &&
2511 (dme1737_isa_detect(0x162e, &addr
) &&
2512 dme1737_isa_detect(0x164e, &addr
)))) {
2513 /* Return 0 if we didn't find an ISA device */
2517 if ((err
= platform_driver_register(&dme1737_isa_driver
))) {
2518 goto exit_del_i2c_driver
;
2521 /* Sets global pdev as a side effect */
2522 if ((err
= dme1737_isa_device_add(addr
))) {
2523 goto exit_del_isa_driver
;
2528 exit_del_isa_driver
:
2529 platform_driver_unregister(&dme1737_isa_driver
);
2530 exit_del_i2c_driver
:
2531 i2c_del_driver(&dme1737_i2c_driver
);
2536 static void __exit
dme1737_exit(void)
2539 platform_device_unregister(pdev
);
2540 platform_driver_unregister(&dme1737_isa_driver
);
2543 i2c_del_driver(&dme1737_i2c_driver
);
2546 MODULE_AUTHOR("Juerg Haefliger <juergh@gmail.com>");
2547 MODULE_DESCRIPTION("DME1737 sensors");
2548 MODULE_LICENSE("GPL");
2550 module_init(dme1737_init
);
2551 module_exit(dme1737_exit
);