2 * dme1737.c - driver for the SMSC DME1737 and Asus A8000 Super-I/O chips
3 * integrated hardware monitoring features.
4 * Copyright (c) 2007 Juerg Haefliger <juergh@gmail.com>
6 * This driver is based on the LM85 driver. The hardware monitoring
7 * capabilities of the DME1737 are very similar to the LM85 with some
8 * additional features. Even though the DME1737 is a Super-I/O chip, the
9 * hardware monitoring registers are only accessible via SMBus.
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/hwmon.h>
32 #include <linux/hwmon-sysfs.h>
33 #include <linux/hwmon-vid.h>
34 #include <linux/err.h>
35 #include <linux/mutex.h>
38 /* Module load parameters */
39 static int force_start
;
40 module_param(force_start
, bool, 0);
41 MODULE_PARM_DESC(force_start
, "Force the chip to start monitoring inputs");
43 /* Addresses to scan */
44 static unsigned short normal_i2c
[] = {0x2c, 0x2d, 0x2e, I2C_CLIENT_END
};
46 /* Insmod parameters */
47 I2C_CLIENT_INSMOD_1(dme1737
);
49 /* ---------------------------------------------------------------------
52 * The sensors are defined as follows:
54 * Voltages Temperatures
55 * -------- ------------
56 * in0 +5VTR (+5V stdby) temp1 Remote diode 1
57 * in1 Vccp (proc core) temp2 Internal temp
58 * in2 VCC (internal +3.3V) temp3 Remote diode 2
61 * in5 VTR (+3.3V stby)
64 * --------------------------------------------------------------------- */
66 /* Voltages (in) numbered 0-6 (ix) */
67 #define DME1737_REG_IN(ix) ((ix) < 5 ? 0x20 + (ix) \
69 #define DME1737_REG_IN_MIN(ix) ((ix) < 5 ? 0x44 + (ix) * 2 \
71 #define DME1737_REG_IN_MAX(ix) ((ix) < 5 ? 0x45 + (ix) * 2 \
74 /* Temperatures (temp) numbered 0-2 (ix) */
75 #define DME1737_REG_TEMP(ix) (0x25 + (ix))
76 #define DME1737_REG_TEMP_MIN(ix) (0x4e + (ix) * 2)
77 #define DME1737_REG_TEMP_MAX(ix) (0x4f + (ix) * 2)
78 #define DME1737_REG_TEMP_OFFSET(ix) ((ix) == 0 ? 0x1f \
81 /* Voltage and temperature LSBs
82 * The LSBs (4 bits each) are stored in 5 registers with the following layouts:
83 * IN_TEMP_LSB(0) = [in5, in6]
84 * IN_TEMP_LSB(1) = [temp3, temp1]
85 * IN_TEMP_LSB(2) = [in4, temp2]
86 * IN_TEMP_LSB(3) = [in3, in0]
87 * IN_TEMP_LSB(4) = [in2, in1] */
88 #define DME1737_REG_IN_TEMP_LSB(ix) (0x84 + (ix))
89 static const u8 DME1737_REG_IN_LSB
[] = {3, 4, 4, 3, 2, 0, 0};
90 static const u8 DME1737_REG_IN_LSB_SHL
[] = {4, 4, 0, 0, 0, 0, 4};
91 static const u8 DME1737_REG_TEMP_LSB
[] = {1, 2, 1};
92 static const u8 DME1737_REG_TEMP_LSB_SHL
[] = {4, 4, 0};
94 /* Fans numbered 0-5 (ix) */
95 #define DME1737_REG_FAN(ix) ((ix) < 4 ? 0x28 + (ix) * 2 \
97 #define DME1737_REG_FAN_MIN(ix) ((ix) < 4 ? 0x54 + (ix) * 2 \
99 #define DME1737_REG_FAN_OPT(ix) ((ix) < 4 ? 0x90 + (ix) \
101 #define DME1737_REG_FAN_MAX(ix) (0xb4 + (ix)) /* only for fan[4-5] */
103 /* PWMs numbered 0-2, 4-5 (ix) */
104 #define DME1737_REG_PWM(ix) ((ix) < 3 ? 0x30 + (ix) \
106 #define DME1737_REG_PWM_CONFIG(ix) (0x5c + (ix)) /* only for pwm[0-2] */
107 #define DME1737_REG_PWM_MIN(ix) (0x64 + (ix)) /* only for pwm[0-2] */
108 #define DME1737_REG_PWM_FREQ(ix) ((ix) < 3 ? 0x5f + (ix) \
110 /* The layout of the ramp rate registers is different from the other pwm
111 * registers. The bits for the 3 PWMs are stored in 2 registers:
112 * PWM_RR(0) = [OFF3, OFF2, OFF1, RES, RR1E, RR1-2, RR1-1, RR1-0]
113 * PWM_RR(1) = [RR2E, RR2-2, RR2-1, RR2-0, RR3E, RR3-2, RR3-1, RR3-0] */
114 #define DME1737_REG_PWM_RR(ix) (0x62 + (ix)) /* only for pwm[0-2] */
116 /* Thermal zones 0-2 */
117 #define DME1737_REG_ZONE_LOW(ix) (0x67 + (ix))
118 #define DME1737_REG_ZONE_ABS(ix) (0x6a + (ix))
119 /* The layout of the hysteresis registers is different from the other zone
120 * registers. The bits for the 3 zones are stored in 2 registers:
121 * ZONE_HYST(0) = [H1-3, H1-2, H1-1, H1-0, H2-3, H2-2, H2-1, H2-0]
122 * ZONE_HYST(1) = [H3-3, H3-2, H3-1, H3-0, RES, RES, RES, RES] */
123 #define DME1737_REG_ZONE_HYST(ix) (0x6d + (ix))
125 /* Alarm registers and bit mapping
126 * The 3 8-bit alarm registers will be concatenated to a single 32-bit
127 * alarm value [0, ALARM3, ALARM2, ALARM1]. */
128 #define DME1737_REG_ALARM1 0x41
129 #define DME1737_REG_ALARM2 0x42
130 #define DME1737_REG_ALARM3 0x83
131 static const u8 DME1737_BIT_ALARM_IN
[] = {0, 1, 2, 3, 8, 16, 17};
132 static const u8 DME1737_BIT_ALARM_TEMP
[] = {4, 5, 6};
133 static const u8 DME1737_BIT_ALARM_FAN
[] = {10, 11, 12, 13, 22, 23};
135 /* Miscellaneous registers */
136 #define DME1737_REG_COMPANY 0x3e
137 #define DME1737_REG_VERSTEP 0x3f
138 #define DME1737_REG_CONFIG 0x40
139 #define DME1737_REG_CONFIG2 0x7f
140 #define DME1737_REG_VID 0x43
141 #define DME1737_REG_TACH_PWM 0x81
143 /* ---------------------------------------------------------------------
145 * --------------------------------------------------------------------- */
147 /* Chip identification */
148 #define DME1737_COMPANY_SMSC 0x5c
149 #define DME1737_VERSTEP 0x88
150 #define DME1737_VERSTEP_MASK 0xf8
152 /* ---------------------------------------------------------------------
153 * Data structures and manipulation thereof
154 * --------------------------------------------------------------------- */
156 struct dme1737_data
{
157 struct i2c_client client
;
158 struct class_device
*class_dev
;
160 struct mutex update_lock
;
161 int valid
; /* !=0 if following fields are valid */
162 unsigned long last_update
; /* in jiffies */
163 unsigned long last_vbat
; /* in jiffies */
170 /* Register values */
197 /* Nominal voltage values */
198 static const int IN_NOMINAL
[] = {5000, 2250, 3300, 5000, 12000, 3300, 3300};
201 * Voltage inputs have 16 bits resolution, limit values have 8 bits
203 static inline int IN_FROM_REG(int reg
, int ix
, int res
)
205 return (reg
* IN_NOMINAL
[ix
] + (3 << (res
- 3))) / (3 << (res
- 2));
208 static inline int IN_TO_REG(int val
, int ix
)
210 return SENSORS_LIMIT((val
* 192 + IN_NOMINAL
[ix
] / 2) /
211 IN_NOMINAL
[ix
], 0, 255);
215 * The register values represent temperatures in 2's complement notation from
216 * -127 degrees C to +127 degrees C. Temp inputs have 16 bits resolution, limit
217 * values have 8 bits resolution. */
218 static inline int TEMP_FROM_REG(int reg
, int res
)
220 return (reg
* 1000) >> (res
- 8);
223 static inline int TEMP_TO_REG(int val
)
225 return SENSORS_LIMIT((val
< 0 ? val
- 500 : val
+ 500) / 1000,
229 /* Temperature range */
230 static const int TEMP_RANGE
[] = {2000, 2500, 3333, 4000, 5000, 6666, 8000,
231 10000, 13333, 16000, 20000, 26666, 32000,
232 40000, 53333, 80000};
234 static inline int TEMP_RANGE_FROM_REG(int reg
)
236 return TEMP_RANGE
[(reg
>> 4) & 0x0f];
239 static int TEMP_RANGE_TO_REG(int val
, int reg
)
243 for (i
= 15; i
> 0; i
--) {
244 if (val
> (TEMP_RANGE
[i
] + TEMP_RANGE
[i
- 1] + 1) / 2) {
249 return (reg
& 0x0f) | (i
<< 4);
252 /* Temperature hysteresis
254 * reg[0] = [H1-3, H1-2, H1-1, H1-0, H2-3, H2-2, H2-1, H2-0]
255 * reg[1] = [H3-3, H3-2, H3-1, H3-0, xxxx, xxxx, xxxx, xxxx] */
256 static inline int TEMP_HYST_FROM_REG(int reg
, int ix
)
258 return (((ix
== 1) ? reg
: reg
>> 4) & 0x0f) * 1000;
261 static inline int TEMP_HYST_TO_REG(int val
, int ix
, int reg
)
263 int hyst
= SENSORS_LIMIT((val
+ 500) / 1000, 0, 15);
265 return (ix
== 1) ? (reg
& 0xf0) | hyst
: (reg
& 0x0f) | (hyst
<< 4);
269 static inline int FAN_FROM_REG(int reg
, int tpc
)
271 return (reg
== 0 || reg
== 0xffff) ? 0 :
272 (tpc
== 0) ? 90000 * 60 / reg
: tpc
* reg
;
275 static inline int FAN_TO_REG(int val
, int tpc
)
277 return SENSORS_LIMIT((tpc
== 0) ? 90000 * 60 / val
: val
/ tpc
,
281 /* Fan TPC (tach pulse count)
282 * Converts a register value to a TPC multiplier or returns 0 if the tachometer
283 * is configured in legacy (non-tpc) mode */
284 static inline int FAN_TPC_FROM_REG(int reg
)
286 return (reg
& 0x20) ? 0 : 60 >> (reg
& 0x03);
290 * The type of a fan is expressed in number of pulses-per-revolution that it
292 static inline int FAN_TYPE_FROM_REG(int reg
)
294 int edge
= (reg
>> 1) & 0x03;
296 return (edge
> 0) ? 1 << (edge
- 1) : 0;
299 static inline int FAN_TYPE_TO_REG(int val
, int reg
)
301 int edge
= (val
== 4) ? 3 : val
;
303 return (reg
& 0xf9) | (edge
<< 1);
307 static const int FAN_MAX
[] = {0x54, 0x38, 0x2a, 0x21, 0x1c, 0x18, 0x15, 0x12,
310 static int FAN_MAX_FROM_REG(int reg
)
314 for (i
= 10; i
> 0; i
--) {
315 if (reg
== FAN_MAX
[i
]) {
320 return 1000 + i
* 500;
323 static int FAN_MAX_TO_REG(int val
)
327 for (i
= 10; i
> 0; i
--) {
328 if (val
> (1000 + (i
- 1) * 500)) {
337 * Register to enable mapping:
338 * 000: 2 fan on zone 1 auto
339 * 001: 2 fan on zone 2 auto
340 * 010: 2 fan on zone 3 auto
342 * 100: -1 fan disabled
343 * 101: 2 fan on hottest of zones 2,3 auto
344 * 110: 2 fan on hottest of zones 1,2,3 auto
345 * 111: 1 fan in manual mode */
346 static inline int PWM_EN_FROM_REG(int reg
)
348 static const int en
[] = {2, 2, 2, 0, -1, 2, 2, 1};
350 return en
[(reg
>> 5) & 0x07];
353 static inline int PWM_EN_TO_REG(int val
, int reg
)
355 int en
= (val
== 1) ? 7 : 3;
357 return (reg
& 0x1f) | ((en
& 0x07) << 5);
360 /* PWM auto channels zone
361 * Register to auto channels zone mapping (ACZ is a bitfield with bit x
362 * corresponding to zone x+1):
363 * 000: 001 fan on zone 1 auto
364 * 001: 010 fan on zone 2 auto
365 * 010: 100 fan on zone 3 auto
366 * 011: 000 fan full on
367 * 100: 000 fan disabled
368 * 101: 110 fan on hottest of zones 2,3 auto
369 * 110: 111 fan on hottest of zones 1,2,3 auto
370 * 111: 000 fan in manual mode */
371 static inline int PWM_ACZ_FROM_REG(int reg
)
373 static const int acz
[] = {1, 2, 4, 0, 0, 6, 7, 0};
375 return acz
[(reg
>> 5) & 0x07];
378 static inline int PWM_ACZ_TO_REG(int val
, int reg
)
380 int acz
= (val
== 4) ? 2 : val
- 1;
382 return (reg
& 0x1f) | ((acz
& 0x07) << 5);
386 static const int PWM_FREQ
[] = {11, 15, 22, 29, 35, 44, 59, 88,
387 15000, 20000, 30000, 25000, 0, 0, 0, 0};
389 static inline int PWM_FREQ_FROM_REG(int reg
)
391 return PWM_FREQ
[reg
& 0x0f];
394 static int PWM_FREQ_TO_REG(int val
, int reg
)
398 /* the first two cases are special - stupid chip design! */
401 } else if (val
> 22500) {
404 for (i
= 9; i
> 0; i
--) {
405 if (val
> (PWM_FREQ
[i
] + PWM_FREQ
[i
- 1] + 1) / 2) {
411 return (reg
& 0xf0) | i
;
416 * reg[0] = [OFF3, OFF2, OFF1, RES, RR1-E, RR1-2, RR1-1, RR1-0]
417 * reg[1] = [RR2-E, RR2-2, RR2-1, RR2-0, RR3-E, RR3-2, RR3-1, RR3-0] */
418 static const u8 PWM_RR
[] = {206, 104, 69, 41, 26, 18, 10, 5};
420 static inline int PWM_RR_FROM_REG(int reg
, int ix
)
422 int rr
= (ix
== 1) ? reg
>> 4 : reg
;
424 return (rr
& 0x08) ? PWM_RR
[rr
& 0x07] : 0;
427 static int PWM_RR_TO_REG(int val
, int ix
, int reg
)
431 for (i
= 0; i
< 7; i
++) {
432 if (val
> (PWM_RR
[i
] + PWM_RR
[i
+ 1] + 1) / 2) {
437 return (ix
== 1) ? (reg
& 0x8f) | (i
<< 4) : (reg
& 0xf8) | i
;
440 /* PWM ramp rate enable */
441 static inline int PWM_RR_EN_FROM_REG(int reg
, int ix
)
443 return PWM_RR_FROM_REG(reg
, ix
) ? 1 : 0;
446 static inline int PWM_RR_EN_TO_REG(int val
, int ix
, int reg
)
448 int en
= (ix
== 1) ? 0x80 : 0x08;
450 return val
? reg
| en
: reg
& ~en
;
454 * The PWM min/off bits are part of the PMW ramp rate register 0 (see above for
455 * the register layout). */
456 static inline int PWM_OFF_FROM_REG(int reg
, int ix
)
458 return (reg
>> (ix
+ 5)) & 0x01;
461 static inline int PWM_OFF_TO_REG(int val
, int ix
, int reg
)
463 return (reg
& ~(1 << (ix
+ 5))) | ((val
& 0x01) << (ix
+ 5));
466 /* ---------------------------------------------------------------------
468 * --------------------------------------------------------------------- */
470 static u8
dme1737_read(struct i2c_client
*client
, u8 reg
)
472 s32 val
= i2c_smbus_read_byte_data(client
, reg
);
475 dev_warn(&client
->dev
, "Read from register 0x%02x failed! "
476 "Please report to the driver maintainer.\n", reg
);
482 static s32
dme1737_write(struct i2c_client
*client
, u8 reg
, u8 value
)
484 s32 res
= i2c_smbus_write_byte_data(client
, reg
, value
);
487 dev_warn(&client
->dev
, "Write to register 0x%02x failed! "
488 "Please report to the driver maintainer.\n", reg
);
494 static struct dme1737_data
*dme1737_update_device(struct device
*dev
)
496 struct i2c_client
*client
= to_i2c_client(dev
);
497 struct dme1737_data
*data
= i2c_get_clientdata(client
);
501 mutex_lock(&data
->update_lock
);
503 /* Enable a Vbat monitoring cycle every 10 mins */
504 if (time_after(jiffies
, data
->last_vbat
+ 600 * HZ
) || !data
->valid
) {
505 dme1737_write(client
, DME1737_REG_CONFIG
, dme1737_read(client
,
506 DME1737_REG_CONFIG
) | 0x10);
507 data
->last_vbat
= jiffies
;
510 /* Sample register contents every 1 sec */
511 if (time_after(jiffies
, data
->last_update
+ HZ
) || !data
->valid
) {
512 data
->vid
= dme1737_read(client
, DME1737_REG_VID
) & 0x3f;
514 /* In (voltage) registers */
515 for (ix
= 0; ix
< ARRAY_SIZE(data
->in
); ix
++) {
516 /* Voltage inputs are stored as 16 bit values even
517 * though they have only 12 bits resolution. This is
518 * to make it consistent with the temp inputs. */
519 data
->in
[ix
] = dme1737_read(client
,
520 DME1737_REG_IN(ix
)) << 8;
521 data
->in_min
[ix
] = dme1737_read(client
,
522 DME1737_REG_IN_MIN(ix
));
523 data
->in_max
[ix
] = dme1737_read(client
,
524 DME1737_REG_IN_MAX(ix
));
528 for (ix
= 0; ix
< ARRAY_SIZE(data
->temp
); ix
++) {
529 /* Temp inputs are stored as 16 bit values even
530 * though they have only 12 bits resolution. This is
531 * to take advantage of implicit conversions between
532 * register values (2's complement) and temp values
533 * (signed decimal). */
534 data
->temp
[ix
] = dme1737_read(client
,
535 DME1737_REG_TEMP(ix
)) << 8;
536 data
->temp_min
[ix
] = dme1737_read(client
,
537 DME1737_REG_TEMP_MIN(ix
));
538 data
->temp_max
[ix
] = dme1737_read(client
,
539 DME1737_REG_TEMP_MAX(ix
));
540 data
->temp_offset
[ix
] = dme1737_read(client
,
541 DME1737_REG_TEMP_OFFSET(ix
));
544 /* In and temp LSB registers
545 * The LSBs are latched when the MSBs are read, so the order in
546 * which the registers are read (MSB first, then LSB) is
548 for (ix
= 0; ix
< ARRAY_SIZE(lsb
); ix
++) {
549 lsb
[ix
] = dme1737_read(client
,
550 DME1737_REG_IN_TEMP_LSB(ix
));
552 for (ix
= 0; ix
< ARRAY_SIZE(data
->in
); ix
++) {
553 data
->in
[ix
] |= (lsb
[DME1737_REG_IN_LSB
[ix
]] <<
554 DME1737_REG_IN_LSB_SHL
[ix
]) & 0xf0;
556 for (ix
= 0; ix
< ARRAY_SIZE(data
->temp
); ix
++) {
557 data
->temp
[ix
] |= (lsb
[DME1737_REG_TEMP_LSB
[ix
]] <<
558 DME1737_REG_TEMP_LSB_SHL
[ix
]) & 0xf0;
562 for (ix
= 0; ix
< ARRAY_SIZE(data
->fan
); ix
++) {
563 /* Skip reading registers if optional fans are not
565 if (!(data
->has_fan
& (1 << ix
))) {
568 data
->fan
[ix
] = dme1737_read(client
,
569 DME1737_REG_FAN(ix
));
570 data
->fan
[ix
] |= dme1737_read(client
,
571 DME1737_REG_FAN(ix
) + 1) << 8;
572 data
->fan_min
[ix
] = dme1737_read(client
,
573 DME1737_REG_FAN_MIN(ix
));
574 data
->fan_min
[ix
] |= dme1737_read(client
,
575 DME1737_REG_FAN_MIN(ix
) + 1) << 8;
576 data
->fan_opt
[ix
] = dme1737_read(client
,
577 DME1737_REG_FAN_OPT(ix
));
578 /* fan_max exists only for fan[5-6] */
580 data
->fan_max
[ix
- 4] = dme1737_read(client
,
581 DME1737_REG_FAN_MAX(ix
));
586 for (ix
= 0; ix
< ARRAY_SIZE(data
->pwm
); ix
++) {
587 /* Skip reading registers if optional PWMs are not
589 if (!(data
->has_pwm
& (1 << ix
))) {
592 data
->pwm
[ix
] = dme1737_read(client
,
593 DME1737_REG_PWM(ix
));
594 data
->pwm_freq
[ix
] = dme1737_read(client
,
595 DME1737_REG_PWM_FREQ(ix
));
596 /* pwm_config and pwm_min exist only for pwm[1-3] */
598 data
->pwm_config
[ix
] = dme1737_read(client
,
599 DME1737_REG_PWM_CONFIG(ix
));
600 data
->pwm_min
[ix
] = dme1737_read(client
,
601 DME1737_REG_PWM_MIN(ix
));
604 for (ix
= 0; ix
< ARRAY_SIZE(data
->pwm_rr
); ix
++) {
605 data
->pwm_rr
[ix
] = dme1737_read(client
,
606 DME1737_REG_PWM_RR(ix
));
609 /* Thermal zone registers */
610 for (ix
= 0; ix
< ARRAY_SIZE(data
->zone_low
); ix
++) {
611 data
->zone_low
[ix
] = dme1737_read(client
,
612 DME1737_REG_ZONE_LOW(ix
));
613 data
->zone_abs
[ix
] = dme1737_read(client
,
614 DME1737_REG_ZONE_ABS(ix
));
616 for (ix
= 0; ix
< ARRAY_SIZE(data
->zone_hyst
); ix
++) {
617 data
->zone_hyst
[ix
] = dme1737_read(client
,
618 DME1737_REG_ZONE_HYST(ix
));
621 /* Alarm registers */
622 data
->alarms
= dme1737_read(client
,
624 /* Bit 7 tells us if the other alarm registers are non-zero and
625 * therefore also need to be read */
626 if (data
->alarms
& 0x80) {
627 data
->alarms
|= dme1737_read(client
,
628 DME1737_REG_ALARM2
) << 8;
629 data
->alarms
|= dme1737_read(client
,
630 DME1737_REG_ALARM3
) << 16;
633 data
->last_update
= jiffies
;
637 mutex_unlock(&data
->update_lock
);
642 /* ---------------------------------------------------------------------
643 * Voltage sysfs attributes
645 * --------------------------------------------------------------------- */
647 #define SYS_IN_INPUT 0
650 #define SYS_IN_ALARM 3
652 static ssize_t
show_in(struct device
*dev
, struct device_attribute
*attr
,
655 struct dme1737_data
*data
= dme1737_update_device(dev
);
656 struct sensor_device_attribute_2
657 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
658 int ix
= sensor_attr_2
->index
;
659 int fn
= sensor_attr_2
->nr
;
664 res
= IN_FROM_REG(data
->in
[ix
], ix
, 16);
667 res
= IN_FROM_REG(data
->in_min
[ix
], ix
, 8);
670 res
= IN_FROM_REG(data
->in_max
[ix
], ix
, 8);
673 res
= (data
->alarms
>> DME1737_BIT_ALARM_IN
[ix
]) & 0x01;
677 dev_dbg(dev
, "Unknown attr fetch (%d)\n", fn
);
680 return sprintf(buf
, "%d\n", res
);
683 static ssize_t
set_in(struct device
*dev
, struct device_attribute
*attr
,
684 const char *buf
, size_t count
)
686 struct i2c_client
*client
= to_i2c_client(dev
);
687 struct dme1737_data
*data
= i2c_get_clientdata(client
);
688 struct sensor_device_attribute_2
689 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
690 int ix
= sensor_attr_2
->index
;
691 int fn
= sensor_attr_2
->nr
;
692 long val
= simple_strtol(buf
, NULL
, 10);
694 mutex_lock(&data
->update_lock
);
697 data
->in_min
[ix
] = IN_TO_REG(val
, ix
);
698 dme1737_write(client
, DME1737_REG_IN_MIN(ix
),
702 data
->in_max
[ix
] = IN_TO_REG(val
, ix
);
703 dme1737_write(client
, DME1737_REG_IN_MAX(ix
),
707 dev_dbg(dev
, "Unknown attr fetch (%d)\n", fn
);
709 mutex_unlock(&data
->update_lock
);
714 /* ---------------------------------------------------------------------
715 * Temperature sysfs attributes
717 * --------------------------------------------------------------------- */
719 #define SYS_TEMP_INPUT 0
720 #define SYS_TEMP_MIN 1
721 #define SYS_TEMP_MAX 2
722 #define SYS_TEMP_OFFSET 3
723 #define SYS_TEMP_ALARM 4
724 #define SYS_TEMP_FAULT 5
726 static ssize_t
show_temp(struct device
*dev
, struct device_attribute
*attr
,
729 struct dme1737_data
*data
= dme1737_update_device(dev
);
730 struct sensor_device_attribute_2
731 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
732 int ix
= sensor_attr_2
->index
;
733 int fn
= sensor_attr_2
->nr
;
738 res
= TEMP_FROM_REG(data
->temp
[ix
], 16);
741 res
= TEMP_FROM_REG(data
->temp_min
[ix
], 8);
744 res
= TEMP_FROM_REG(data
->temp_max
[ix
], 8);
746 case SYS_TEMP_OFFSET
:
747 res
= TEMP_FROM_REG(data
->temp_offset
[ix
], 8);
750 res
= (data
->alarms
>> DME1737_BIT_ALARM_TEMP
[ix
]) & 0x01;
753 res
= (((u16
)data
->temp
[ix
] & 0xff00) == 0x8000);
757 dev_dbg(dev
, "Unknown attr fetch (%d)\n", fn
);
760 return sprintf(buf
, "%d\n", res
);
763 static ssize_t
set_temp(struct device
*dev
, struct device_attribute
*attr
,
764 const char *buf
, size_t count
)
766 struct i2c_client
*client
= to_i2c_client(dev
);
767 struct dme1737_data
*data
= i2c_get_clientdata(client
);
768 struct sensor_device_attribute_2
769 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
770 int ix
= sensor_attr_2
->index
;
771 int fn
= sensor_attr_2
->nr
;
772 long val
= simple_strtol(buf
, NULL
, 10);
774 mutex_lock(&data
->update_lock
);
777 data
->temp_min
[ix
] = TEMP_TO_REG(val
);
778 dme1737_write(client
, DME1737_REG_TEMP_MIN(ix
),
782 data
->temp_max
[ix
] = TEMP_TO_REG(val
);
783 dme1737_write(client
, DME1737_REG_TEMP_MAX(ix
),
786 case SYS_TEMP_OFFSET
:
787 data
->temp_offset
[ix
] = TEMP_TO_REG(val
);
788 dme1737_write(client
, DME1737_REG_TEMP_OFFSET(ix
),
789 data
->temp_offset
[ix
]);
792 dev_dbg(dev
, "Unknown attr fetch (%d)\n", fn
);
794 mutex_unlock(&data
->update_lock
);
799 /* ---------------------------------------------------------------------
800 * Zone sysfs attributes
802 * --------------------------------------------------------------------- */
804 #define SYS_ZONE_AUTO_CHANNELS_TEMP 0
805 #define SYS_ZONE_AUTO_POINT1_TEMP_HYST 1
806 #define SYS_ZONE_AUTO_POINT1_TEMP 2
807 #define SYS_ZONE_AUTO_POINT2_TEMP 3
808 #define SYS_ZONE_AUTO_POINT3_TEMP 4
810 static ssize_t
show_zone(struct device
*dev
, struct device_attribute
*attr
,
813 struct dme1737_data
*data
= dme1737_update_device(dev
);
814 struct sensor_device_attribute_2
815 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
816 int ix
= sensor_attr_2
->index
;
817 int fn
= sensor_attr_2
->nr
;
821 case SYS_ZONE_AUTO_CHANNELS_TEMP
:
822 /* check config2 for non-standard temp-to-zone mapping */
823 if ((ix
== 1) && (data
->config2
& 0x02)) {
829 case SYS_ZONE_AUTO_POINT1_TEMP_HYST
:
830 res
= TEMP_FROM_REG(data
->zone_low
[ix
], 8) -
831 TEMP_HYST_FROM_REG(data
->zone_hyst
[ix
== 2], ix
);
833 case SYS_ZONE_AUTO_POINT1_TEMP
:
834 res
= TEMP_FROM_REG(data
->zone_low
[ix
], 8);
836 case SYS_ZONE_AUTO_POINT2_TEMP
:
837 /* pwm_freq holds the temp range bits in the upper nibble */
838 res
= TEMP_FROM_REG(data
->zone_low
[ix
], 8) +
839 TEMP_RANGE_FROM_REG(data
->pwm_freq
[ix
]);
841 case SYS_ZONE_AUTO_POINT3_TEMP
:
842 res
= TEMP_FROM_REG(data
->zone_abs
[ix
], 8);
846 dev_dbg(dev
, "Unknown attr fetch (%d)\n", fn
);
849 return sprintf(buf
, "%d\n", res
);
852 static ssize_t
set_zone(struct device
*dev
, struct device_attribute
*attr
,
853 const char *buf
, size_t count
)
855 struct i2c_client
*client
= to_i2c_client(dev
);
856 struct dme1737_data
*data
= i2c_get_clientdata(client
);
857 struct sensor_device_attribute_2
858 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
859 int ix
= sensor_attr_2
->index
;
860 int fn
= sensor_attr_2
->nr
;
861 long val
= simple_strtol(buf
, NULL
, 10);
863 mutex_lock(&data
->update_lock
);
865 case SYS_ZONE_AUTO_POINT1_TEMP_HYST
:
866 /* Refresh the cache */
867 data
->zone_low
[ix
] = dme1737_read(client
,
868 DME1737_REG_ZONE_LOW(ix
));
869 /* Modify the temp hyst value */
870 data
->zone_hyst
[ix
== 2] = TEMP_HYST_TO_REG(
871 TEMP_FROM_REG(data
->zone_low
[ix
], 8) -
872 val
, ix
, dme1737_read(client
,
873 DME1737_REG_ZONE_HYST(ix
== 2)));
874 dme1737_write(client
, DME1737_REG_ZONE_HYST(ix
== 2),
875 data
->zone_hyst
[ix
== 2]);
877 case SYS_ZONE_AUTO_POINT1_TEMP
:
878 data
->zone_low
[ix
] = TEMP_TO_REG(val
);
879 dme1737_write(client
, DME1737_REG_ZONE_LOW(ix
),
882 case SYS_ZONE_AUTO_POINT2_TEMP
:
883 /* Refresh the cache */
884 data
->zone_low
[ix
] = dme1737_read(client
,
885 DME1737_REG_ZONE_LOW(ix
));
886 /* Modify the temp range value (which is stored in the upper
887 * nibble of the pwm_freq register) */
888 data
->pwm_freq
[ix
] = TEMP_RANGE_TO_REG(val
-
889 TEMP_FROM_REG(data
->zone_low
[ix
], 8),
891 DME1737_REG_PWM_FREQ(ix
)));
892 dme1737_write(client
, DME1737_REG_PWM_FREQ(ix
),
895 case SYS_ZONE_AUTO_POINT3_TEMP
:
896 data
->zone_abs
[ix
] = TEMP_TO_REG(val
);
897 dme1737_write(client
, DME1737_REG_ZONE_ABS(ix
),
901 dev_dbg(dev
, "Unknown attr fetch (%d)\n", fn
);
903 mutex_unlock(&data
->update_lock
);
908 /* ---------------------------------------------------------------------
909 * Fan sysfs attributes
911 * --------------------------------------------------------------------- */
913 #define SYS_FAN_INPUT 0
914 #define SYS_FAN_MIN 1
915 #define SYS_FAN_MAX 2
916 #define SYS_FAN_ALARM 3
917 #define SYS_FAN_TYPE 4
919 static ssize_t
show_fan(struct device
*dev
, struct device_attribute
*attr
,
922 struct dme1737_data
*data
= dme1737_update_device(dev
);
923 struct sensor_device_attribute_2
924 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
925 int ix
= sensor_attr_2
->index
;
926 int fn
= sensor_attr_2
->nr
;
931 res
= FAN_FROM_REG(data
->fan
[ix
],
933 FAN_TPC_FROM_REG(data
->fan_opt
[ix
]));
936 res
= FAN_FROM_REG(data
->fan_min
[ix
],
938 FAN_TPC_FROM_REG(data
->fan_opt
[ix
]));
941 /* only valid for fan[5-6] */
942 res
= FAN_MAX_FROM_REG(data
->fan_max
[ix
- 4]);
945 res
= (data
->alarms
>> DME1737_BIT_ALARM_FAN
[ix
]) & 0x01;
948 /* only valid for fan[1-4] */
949 res
= FAN_TYPE_FROM_REG(data
->fan_opt
[ix
]);
953 dev_dbg(dev
, "Unknown attr fetch (%d)\n", fn
);
956 return sprintf(buf
, "%d\n", res
);
959 static ssize_t
set_fan(struct device
*dev
, struct device_attribute
*attr
,
960 const char *buf
, size_t count
)
962 struct i2c_client
*client
= to_i2c_client(dev
);
963 struct dme1737_data
*data
= i2c_get_clientdata(client
);
964 struct sensor_device_attribute_2
965 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
966 int ix
= sensor_attr_2
->index
;
967 int fn
= sensor_attr_2
->nr
;
968 long val
= simple_strtol(buf
, NULL
, 10);
970 mutex_lock(&data
->update_lock
);
974 data
->fan_min
[ix
] = FAN_TO_REG(val
, 0);
976 /* Refresh the cache */
977 data
->fan_opt
[ix
] = dme1737_read(client
,
978 DME1737_REG_FAN_OPT(ix
));
979 /* Modify the fan min value */
980 data
->fan_min
[ix
] = FAN_TO_REG(val
,
981 FAN_TPC_FROM_REG(data
->fan_opt
[ix
]));
983 dme1737_write(client
, DME1737_REG_FAN_MIN(ix
),
984 data
->fan_min
[ix
] & 0xff);
985 dme1737_write(client
, DME1737_REG_FAN_MIN(ix
) + 1,
986 data
->fan_min
[ix
] >> 8);
989 /* Only valid for fan[5-6] */
990 data
->fan_max
[ix
- 4] = FAN_MAX_TO_REG(val
);
991 dme1737_write(client
, DME1737_REG_FAN_MAX(ix
),
992 data
->fan_max
[ix
- 4]);
995 /* Only valid for fan[1-4] */
996 if (!(val
== 1 || val
== 2 || val
== 4)) {
998 dev_warn(&client
->dev
, "Fan type value %ld not "
999 "supported. Choose one of 1, 2, or 4.\n",
1003 data
->fan_opt
[ix
] = FAN_TYPE_TO_REG(val
, dme1737_read(client
,
1004 DME1737_REG_FAN_OPT(ix
)));
1005 dme1737_write(client
, DME1737_REG_FAN_OPT(ix
),
1009 dev_dbg(dev
, "Unknown attr fetch (%d)\n", fn
);
1012 mutex_unlock(&data
->update_lock
);
1017 /* ---------------------------------------------------------------------
1018 * PWM sysfs attributes
1020 * --------------------------------------------------------------------- */
1023 #define SYS_PWM_FREQ 1
1024 #define SYS_PWM_ENABLE 2
1025 #define SYS_PWM_RAMP_RATE 3
1026 #define SYS_PWM_AUTO_CHANNELS_ZONE 4
1027 #define SYS_PWM_AUTO_PWM_MIN 5
1028 #define SYS_PWM_AUTO_POINT1_PWM 6
1029 #define SYS_PWM_AUTO_POINT2_PWM 7
1031 static ssize_t
show_pwm(struct device
*dev
, struct device_attribute
*attr
,
1034 struct dme1737_data
*data
= dme1737_update_device(dev
);
1035 struct sensor_device_attribute_2
1036 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
1037 int ix
= sensor_attr_2
->index
;
1038 int fn
= sensor_attr_2
->nr
;
1043 if (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == 0) {
1046 res
= data
->pwm
[ix
];
1050 res
= PWM_FREQ_FROM_REG(data
->pwm_freq
[ix
]);
1052 case SYS_PWM_ENABLE
:
1054 res
= 1; /* pwm[5-6] hard-wired to manual mode */
1056 res
= PWM_EN_FROM_REG(data
->pwm_config
[ix
]);
1059 case SYS_PWM_RAMP_RATE
:
1060 /* Only valid for pwm[1-3] */
1061 res
= PWM_RR_FROM_REG(data
->pwm_rr
[ix
> 0], ix
);
1063 case SYS_PWM_AUTO_CHANNELS_ZONE
:
1064 /* Only valid for pwm[1-3] */
1065 if (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == 2) {
1066 res
= PWM_ACZ_FROM_REG(data
->pwm_config
[ix
]);
1068 res
= data
->pwm_acz
[ix
];
1071 case SYS_PWM_AUTO_PWM_MIN
:
1072 /* Only valid for pwm[1-3] */
1073 if (PWM_OFF_FROM_REG(data
->pwm_rr
[0], ix
)) {
1074 res
= data
->pwm_min
[ix
];
1079 case SYS_PWM_AUTO_POINT1_PWM
:
1080 /* Only valid for pwm[1-3] */
1081 res
= data
->pwm_min
[ix
];
1083 case SYS_PWM_AUTO_POINT2_PWM
:
1084 /* Only valid for pwm[1-3] */
1085 res
= 255; /* hard-wired */
1089 dev_dbg(dev
, "Unknown attr fetch (%d)\n", fn
);
1092 return sprintf(buf
, "%d\n", res
);
1095 static struct attribute
*dme1737_attr_pwm
[];
1096 static void dme1737_chmod_file(struct i2c_client
*, struct attribute
*, mode_t
);
1098 static ssize_t
set_pwm(struct device
*dev
, struct device_attribute
*attr
,
1099 const char *buf
, size_t count
)
1101 struct i2c_client
*client
= to_i2c_client(dev
);
1102 struct dme1737_data
*data
= i2c_get_clientdata(client
);
1103 struct sensor_device_attribute_2
1104 *sensor_attr_2
= to_sensor_dev_attr_2(attr
);
1105 int ix
= sensor_attr_2
->index
;
1106 int fn
= sensor_attr_2
->nr
;
1107 long val
= simple_strtol(buf
, NULL
, 10);
1109 mutex_lock(&data
->update_lock
);
1112 data
->pwm
[ix
] = SENSORS_LIMIT(val
, 0, 255);
1113 dme1737_write(client
, DME1737_REG_PWM(ix
), data
->pwm
[ix
]);
1116 data
->pwm_freq
[ix
] = PWM_FREQ_TO_REG(val
, dme1737_read(client
,
1117 DME1737_REG_PWM_FREQ(ix
)));
1118 dme1737_write(client
, DME1737_REG_PWM_FREQ(ix
),
1119 data
->pwm_freq
[ix
]);
1121 case SYS_PWM_ENABLE
:
1122 /* Only valid for pwm[1-3] */
1123 if (val
< 0 || val
> 2) {
1125 dev_warn(&client
->dev
, "PWM enable %ld not "
1126 "supported. Choose one of 0, 1, or 2.\n",
1130 /* Refresh the cache */
1131 data
->pwm_config
[ix
] = dme1737_read(client
,
1132 DME1737_REG_PWM_CONFIG(ix
));
1133 if (val
== PWM_EN_FROM_REG(data
->pwm_config
[ix
])) {
1134 /* Bail out if no change */
1137 /* Do some housekeeping if we are currently in auto mode */
1138 if (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == 2) {
1139 /* Save the current zone channel assignment */
1140 data
->pwm_acz
[ix
] = PWM_ACZ_FROM_REG(
1141 data
->pwm_config
[ix
]);
1142 /* Save the current ramp rate state and disable it */
1143 data
->pwm_rr
[ix
> 0] = dme1737_read(client
,
1144 DME1737_REG_PWM_RR(ix
> 0));
1145 data
->pwm_rr_en
&= ~(1 << ix
);
1146 if (PWM_RR_EN_FROM_REG(data
->pwm_rr
[ix
> 0], ix
)) {
1147 data
->pwm_rr_en
|= (1 << ix
);
1148 data
->pwm_rr
[ix
> 0] = PWM_RR_EN_TO_REG(0, ix
,
1149 data
->pwm_rr
[ix
> 0]);
1150 dme1737_write(client
,
1151 DME1737_REG_PWM_RR(ix
> 0),
1152 data
->pwm_rr
[ix
> 0]);
1155 /* Set the new PWM mode */
1158 /* Change permissions of pwm[ix] to read-only */
1159 dme1737_chmod_file(client
, dme1737_attr_pwm
[ix
],
1161 /* Turn fan fully on */
1162 data
->pwm_config
[ix
] = PWM_EN_TO_REG(0,
1163 data
->pwm_config
[ix
]);
1164 dme1737_write(client
, DME1737_REG_PWM_CONFIG(ix
),
1165 data
->pwm_config
[ix
]);
1168 /* Turn on manual mode */
1169 data
->pwm_config
[ix
] = PWM_EN_TO_REG(1,
1170 data
->pwm_config
[ix
]);
1171 dme1737_write(client
, DME1737_REG_PWM_CONFIG(ix
),
1172 data
->pwm_config
[ix
]);
1173 /* Change permissions of pwm[ix] to read-writeable */
1174 dme1737_chmod_file(client
, dme1737_attr_pwm
[ix
],
1178 /* Change permissions of pwm[ix] to read-only */
1179 dme1737_chmod_file(client
, dme1737_attr_pwm
[ix
],
1181 /* Turn on auto mode using the saved zone channel
1183 data
->pwm_config
[ix
] = PWM_ACZ_TO_REG(
1185 data
->pwm_config
[ix
]);
1186 dme1737_write(client
, DME1737_REG_PWM_CONFIG(ix
),
1187 data
->pwm_config
[ix
]);
1188 /* Enable PWM ramp rate if previously enabled */
1189 if (data
->pwm_rr_en
& (1 << ix
)) {
1190 data
->pwm_rr
[ix
> 0] = PWM_RR_EN_TO_REG(1, ix
,
1191 dme1737_read(client
,
1192 DME1737_REG_PWM_RR(ix
> 0)));
1193 dme1737_write(client
,
1194 DME1737_REG_PWM_RR(ix
> 0),
1195 data
->pwm_rr
[ix
> 0]);
1200 case SYS_PWM_RAMP_RATE
:
1201 /* Only valid for pwm[1-3] */
1202 /* Refresh the cache */
1203 data
->pwm_config
[ix
] = dme1737_read(client
,
1204 DME1737_REG_PWM_CONFIG(ix
));
1205 data
->pwm_rr
[ix
> 0] = dme1737_read(client
,
1206 DME1737_REG_PWM_RR(ix
> 0));
1207 /* Set the ramp rate value */
1209 data
->pwm_rr
[ix
> 0] = PWM_RR_TO_REG(val
, ix
,
1210 data
->pwm_rr
[ix
> 0]);
1212 /* Enable/disable the feature only if the associated PWM
1213 * output is in automatic mode. */
1214 if (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == 2) {
1215 data
->pwm_rr
[ix
> 0] = PWM_RR_EN_TO_REG(val
> 0, ix
,
1216 data
->pwm_rr
[ix
> 0]);
1218 dme1737_write(client
, DME1737_REG_PWM_RR(ix
> 0),
1219 data
->pwm_rr
[ix
> 0]);
1221 case SYS_PWM_AUTO_CHANNELS_ZONE
:
1222 /* Only valid for pwm[1-3] */
1223 if (!(val
== 1 || val
== 2 || val
== 4 ||
1224 val
== 6 || val
== 7)) {
1226 dev_warn(&client
->dev
, "PWM auto channels zone %ld "
1227 "not supported. Choose one of 1, 2, 4, 6, "
1231 /* Refresh the cache */
1232 data
->pwm_config
[ix
] = dme1737_read(client
,
1233 DME1737_REG_PWM_CONFIG(ix
));
1234 if (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == 2) {
1235 /* PWM is already in auto mode so update the temp
1236 * channel assignment */
1237 data
->pwm_config
[ix
] = PWM_ACZ_TO_REG(val
,
1238 data
->pwm_config
[ix
]);
1239 dme1737_write(client
, DME1737_REG_PWM_CONFIG(ix
),
1240 data
->pwm_config
[ix
]);
1242 /* PWM is not in auto mode so we save the temp
1243 * channel assignment for later use */
1244 data
->pwm_acz
[ix
] = val
;
1247 case SYS_PWM_AUTO_PWM_MIN
:
1248 /* Only valid for pwm[1-3] */
1249 /* Refresh the cache */
1250 data
->pwm_min
[ix
] = dme1737_read(client
,
1251 DME1737_REG_PWM_MIN(ix
));
1252 /* There are only 2 values supported for the auto_pwm_min
1253 * value: 0 or auto_point1_pwm. So if the temperature drops
1254 * below the auto_point1_temp_hyst value, the fan either turns
1255 * off or runs at auto_point1_pwm duty-cycle. */
1256 if (val
> ((data
->pwm_min
[ix
] + 1) / 2)) {
1257 data
->pwm_rr
[0] = PWM_OFF_TO_REG(1, ix
,
1258 dme1737_read(client
,
1259 DME1737_REG_PWM_RR(0)));
1262 data
->pwm_rr
[0] = PWM_OFF_TO_REG(0, ix
,
1263 dme1737_read(client
,
1264 DME1737_REG_PWM_RR(0)));
1267 dme1737_write(client
, DME1737_REG_PWM_RR(0),
1270 case SYS_PWM_AUTO_POINT1_PWM
:
1271 /* Only valid for pwm[1-3] */
1272 data
->pwm_min
[ix
] = SENSORS_LIMIT(val
, 0, 255);
1273 dme1737_write(client
, DME1737_REG_PWM_MIN(ix
),
1277 dev_dbg(dev
, "Unknown attr fetch (%d)\n", fn
);
1280 mutex_unlock(&data
->update_lock
);
1285 /* ---------------------------------------------------------------------
1286 * Miscellaneous sysfs attributes
1287 * --------------------------------------------------------------------- */
1289 static ssize_t
show_vrm(struct device
*dev
, struct device_attribute
*attr
,
1292 struct i2c_client
*client
= to_i2c_client(dev
);
1293 struct dme1737_data
*data
= i2c_get_clientdata(client
);
1295 return sprintf(buf
, "%d\n", data
->vrm
);
1298 static ssize_t
set_vrm(struct device
*dev
, struct device_attribute
*attr
,
1299 const char *buf
, size_t count
)
1301 struct i2c_client
*client
= to_i2c_client(dev
);
1302 struct dme1737_data
*data
= i2c_get_clientdata(client
);
1303 long val
= simple_strtol(buf
, NULL
, 10);
1309 static ssize_t
show_vid(struct device
*dev
, struct device_attribute
*attr
,
1312 struct dme1737_data
*data
= dme1737_update_device(dev
);
1314 return sprintf(buf
, "%d\n", vid_from_reg(data
->vid
, data
->vrm
));
1317 /* ---------------------------------------------------------------------
1318 * Sysfs device attribute defines and structs
1319 * --------------------------------------------------------------------- */
1323 #define SENSOR_DEVICE_ATTR_IN(ix) \
1324 static SENSOR_DEVICE_ATTR_2(in##ix##_input, S_IRUGO, \
1325 show_in, NULL, SYS_IN_INPUT, ix); \
1326 static SENSOR_DEVICE_ATTR_2(in##ix##_min, S_IRUGO | S_IWUSR, \
1327 show_in, set_in, SYS_IN_MIN, ix); \
1328 static SENSOR_DEVICE_ATTR_2(in##ix##_max, S_IRUGO | S_IWUSR, \
1329 show_in, set_in, SYS_IN_MAX, ix); \
1330 static SENSOR_DEVICE_ATTR_2(in##ix##_alarm, S_IRUGO, \
1331 show_in, NULL, SYS_IN_ALARM, ix)
1333 SENSOR_DEVICE_ATTR_IN(0);
1334 SENSOR_DEVICE_ATTR_IN(1);
1335 SENSOR_DEVICE_ATTR_IN(2);
1336 SENSOR_DEVICE_ATTR_IN(3);
1337 SENSOR_DEVICE_ATTR_IN(4);
1338 SENSOR_DEVICE_ATTR_IN(5);
1339 SENSOR_DEVICE_ATTR_IN(6);
1341 /* Temperatures 1-3 */
1343 #define SENSOR_DEVICE_ATTR_TEMP(ix) \
1344 static SENSOR_DEVICE_ATTR_2(temp##ix##_input, S_IRUGO, \
1345 show_temp, NULL, SYS_TEMP_INPUT, ix-1); \
1346 static SENSOR_DEVICE_ATTR_2(temp##ix##_min, S_IRUGO | S_IWUSR, \
1347 show_temp, set_temp, SYS_TEMP_MIN, ix-1); \
1348 static SENSOR_DEVICE_ATTR_2(temp##ix##_max, S_IRUGO | S_IWUSR, \
1349 show_temp, set_temp, SYS_TEMP_MAX, ix-1); \
1350 static SENSOR_DEVICE_ATTR_2(temp##ix##_offset, S_IRUGO, \
1351 show_temp, set_temp, SYS_TEMP_OFFSET, ix-1); \
1352 static SENSOR_DEVICE_ATTR_2(temp##ix##_alarm, S_IRUGO, \
1353 show_temp, NULL, SYS_TEMP_ALARM, ix-1); \
1354 static SENSOR_DEVICE_ATTR_2(temp##ix##_fault, S_IRUGO, \
1355 show_temp, NULL, SYS_TEMP_FAULT, ix-1)
1357 SENSOR_DEVICE_ATTR_TEMP(1);
1358 SENSOR_DEVICE_ATTR_TEMP(2);
1359 SENSOR_DEVICE_ATTR_TEMP(3);
1363 #define SENSOR_DEVICE_ATTR_ZONE(ix) \
1364 static SENSOR_DEVICE_ATTR_2(zone##ix##_auto_channels_temp, S_IRUGO, \
1365 show_zone, NULL, SYS_ZONE_AUTO_CHANNELS_TEMP, ix-1); \
1366 static SENSOR_DEVICE_ATTR_2(zone##ix##_auto_point1_temp_hyst, S_IRUGO, \
1367 show_zone, set_zone, SYS_ZONE_AUTO_POINT1_TEMP_HYST, ix-1); \
1368 static SENSOR_DEVICE_ATTR_2(zone##ix##_auto_point1_temp, S_IRUGO, \
1369 show_zone, set_zone, SYS_ZONE_AUTO_POINT1_TEMP, ix-1); \
1370 static SENSOR_DEVICE_ATTR_2(zone##ix##_auto_point2_temp, S_IRUGO, \
1371 show_zone, set_zone, SYS_ZONE_AUTO_POINT2_TEMP, ix-1); \
1372 static SENSOR_DEVICE_ATTR_2(zone##ix##_auto_point3_temp, S_IRUGO, \
1373 show_zone, set_zone, SYS_ZONE_AUTO_POINT3_TEMP, ix-1)
1375 SENSOR_DEVICE_ATTR_ZONE(1);
1376 SENSOR_DEVICE_ATTR_ZONE(2);
1377 SENSOR_DEVICE_ATTR_ZONE(3);
1381 #define SENSOR_DEVICE_ATTR_FAN_1TO4(ix) \
1382 static SENSOR_DEVICE_ATTR_2(fan##ix##_input, S_IRUGO, \
1383 show_fan, NULL, SYS_FAN_INPUT, ix-1); \
1384 static SENSOR_DEVICE_ATTR_2(fan##ix##_min, S_IRUGO | S_IWUSR, \
1385 show_fan, set_fan, SYS_FAN_MIN, ix-1); \
1386 static SENSOR_DEVICE_ATTR_2(fan##ix##_alarm, S_IRUGO, \
1387 show_fan, NULL, SYS_FAN_ALARM, ix-1); \
1388 static SENSOR_DEVICE_ATTR_2(fan##ix##_type, S_IRUGO | S_IWUSR, \
1389 show_fan, set_fan, SYS_FAN_TYPE, ix-1)
1391 SENSOR_DEVICE_ATTR_FAN_1TO4(1);
1392 SENSOR_DEVICE_ATTR_FAN_1TO4(2);
1393 SENSOR_DEVICE_ATTR_FAN_1TO4(3);
1394 SENSOR_DEVICE_ATTR_FAN_1TO4(4);
1398 #define SENSOR_DEVICE_ATTR_FAN_5TO6(ix) \
1399 static SENSOR_DEVICE_ATTR_2(fan##ix##_input, S_IRUGO, \
1400 show_fan, NULL, SYS_FAN_INPUT, ix-1); \
1401 static SENSOR_DEVICE_ATTR_2(fan##ix##_min, S_IRUGO | S_IWUSR, \
1402 show_fan, set_fan, SYS_FAN_MIN, ix-1); \
1403 static SENSOR_DEVICE_ATTR_2(fan##ix##_alarm, S_IRUGO, \
1404 show_fan, NULL, SYS_FAN_ALARM, ix-1); \
1405 static SENSOR_DEVICE_ATTR_2(fan##ix##_max, S_IRUGO | S_IWUSR, \
1406 show_fan, set_fan, SYS_FAN_MAX, ix-1)
1408 SENSOR_DEVICE_ATTR_FAN_5TO6(5);
1409 SENSOR_DEVICE_ATTR_FAN_5TO6(6);
1413 #define SENSOR_DEVICE_ATTR_PWM_1TO3(ix) \
1414 static SENSOR_DEVICE_ATTR_2(pwm##ix, S_IRUGO, \
1415 show_pwm, set_pwm, SYS_PWM, ix-1); \
1416 static SENSOR_DEVICE_ATTR_2(pwm##ix##_freq, S_IRUGO, \
1417 show_pwm, set_pwm, SYS_PWM_FREQ, ix-1); \
1418 static SENSOR_DEVICE_ATTR_2(pwm##ix##_enable, S_IRUGO, \
1419 show_pwm, set_pwm, SYS_PWM_ENABLE, ix-1); \
1420 static SENSOR_DEVICE_ATTR_2(pwm##ix##_ramp_rate, S_IRUGO, \
1421 show_pwm, set_pwm, SYS_PWM_RAMP_RATE, ix-1); \
1422 static SENSOR_DEVICE_ATTR_2(pwm##ix##_auto_channels_zone, S_IRUGO, \
1423 show_pwm, set_pwm, SYS_PWM_AUTO_CHANNELS_ZONE, ix-1); \
1424 static SENSOR_DEVICE_ATTR_2(pwm##ix##_auto_pwm_min, S_IRUGO, \
1425 show_pwm, set_pwm, SYS_PWM_AUTO_PWM_MIN, ix-1); \
1426 static SENSOR_DEVICE_ATTR_2(pwm##ix##_auto_point1_pwm, S_IRUGO, \
1427 show_pwm, set_pwm, SYS_PWM_AUTO_POINT1_PWM, ix-1); \
1428 static SENSOR_DEVICE_ATTR_2(pwm##ix##_auto_point2_pwm, S_IRUGO, \
1429 show_pwm, NULL, SYS_PWM_AUTO_POINT2_PWM, ix-1)
1431 SENSOR_DEVICE_ATTR_PWM_1TO3(1);
1432 SENSOR_DEVICE_ATTR_PWM_1TO3(2);
1433 SENSOR_DEVICE_ATTR_PWM_1TO3(3);
1437 #define SENSOR_DEVICE_ATTR_PWM_5TO6(ix) \
1438 static SENSOR_DEVICE_ATTR_2(pwm##ix, S_IRUGO | S_IWUSR, \
1439 show_pwm, set_pwm, SYS_PWM, ix-1); \
1440 static SENSOR_DEVICE_ATTR_2(pwm##ix##_freq, S_IRUGO | S_IWUSR, \
1441 show_pwm, set_pwm, SYS_PWM_FREQ, ix-1); \
1442 static SENSOR_DEVICE_ATTR_2(pwm##ix##_enable, S_IRUGO, \
1443 show_pwm, NULL, SYS_PWM_ENABLE, ix-1)
1445 SENSOR_DEVICE_ATTR_PWM_5TO6(5);
1446 SENSOR_DEVICE_ATTR_PWM_5TO6(6);
1450 static DEVICE_ATTR(vrm
, S_IRUGO
| S_IWUSR
, show_vrm
, set_vrm
);
1451 static DEVICE_ATTR(cpu0_vid
, S_IRUGO
, show_vid
, NULL
);
1453 #define SENSOR_DEV_ATTR_IN(ix) \
1454 &sensor_dev_attr_in##ix##_input.dev_attr.attr, \
1455 &sensor_dev_attr_in##ix##_min.dev_attr.attr, \
1456 &sensor_dev_attr_in##ix##_max.dev_attr.attr, \
1457 &sensor_dev_attr_in##ix##_alarm.dev_attr.attr
1459 /* These attributes are read-writeable only if the chip is *not* locked */
1460 #define SENSOR_DEV_ATTR_TEMP_LOCK(ix) \
1461 &sensor_dev_attr_temp##ix##_offset.dev_attr.attr
1463 #define SENSOR_DEV_ATTR_TEMP(ix) \
1464 SENSOR_DEV_ATTR_TEMP_LOCK(ix), \
1465 &sensor_dev_attr_temp##ix##_input.dev_attr.attr, \
1466 &sensor_dev_attr_temp##ix##_min.dev_attr.attr, \
1467 &sensor_dev_attr_temp##ix##_max.dev_attr.attr, \
1468 &sensor_dev_attr_temp##ix##_alarm.dev_attr.attr, \
1469 &sensor_dev_attr_temp##ix##_fault.dev_attr.attr
1471 /* These attributes are read-writeable only if the chip is *not* locked */
1472 #define SENSOR_DEV_ATTR_ZONE_LOCK(ix) \
1473 &sensor_dev_attr_zone##ix##_auto_point1_temp_hyst.dev_attr.attr, \
1474 &sensor_dev_attr_zone##ix##_auto_point1_temp.dev_attr.attr, \
1475 &sensor_dev_attr_zone##ix##_auto_point2_temp.dev_attr.attr, \
1476 &sensor_dev_attr_zone##ix##_auto_point3_temp.dev_attr.attr
1478 #define SENSOR_DEV_ATTR_ZONE(ix) \
1479 SENSOR_DEV_ATTR_ZONE_LOCK(ix), \
1480 &sensor_dev_attr_zone##ix##_auto_channels_temp.dev_attr.attr
1482 #define SENSOR_DEV_ATTR_FAN_1TO4(ix) \
1483 &sensor_dev_attr_fan##ix##_input.dev_attr.attr, \
1484 &sensor_dev_attr_fan##ix##_min.dev_attr.attr, \
1485 &sensor_dev_attr_fan##ix##_alarm.dev_attr.attr, \
1486 &sensor_dev_attr_fan##ix##_type.dev_attr.attr
1488 #define SENSOR_DEV_ATTR_FAN_5TO6(ix) \
1489 &sensor_dev_attr_fan##ix##_input.dev_attr.attr, \
1490 &sensor_dev_attr_fan##ix##_min.dev_attr.attr, \
1491 &sensor_dev_attr_fan##ix##_alarm.dev_attr.attr, \
1492 &sensor_dev_attr_fan##ix##_max.dev_attr.attr
1494 /* These attributes are read-writeable only if the chip is *not* locked */
1495 #define SENSOR_DEV_ATTR_PWM_1TO3_LOCK(ix) \
1496 &sensor_dev_attr_pwm##ix##_freq.dev_attr.attr, \
1497 &sensor_dev_attr_pwm##ix##_enable.dev_attr.attr, \
1498 &sensor_dev_attr_pwm##ix##_ramp_rate.dev_attr.attr, \
1499 &sensor_dev_attr_pwm##ix##_auto_channels_zone.dev_attr.attr, \
1500 &sensor_dev_attr_pwm##ix##_auto_pwm_min.dev_attr.attr, \
1501 &sensor_dev_attr_pwm##ix##_auto_point1_pwm.dev_attr.attr
1503 #define SENSOR_DEV_ATTR_PWM_1TO3(ix) \
1504 SENSOR_DEV_ATTR_PWM_1TO3_LOCK(ix), \
1505 &sensor_dev_attr_pwm##ix.dev_attr.attr, \
1506 &sensor_dev_attr_pwm##ix##_auto_point2_pwm.dev_attr.attr
1508 /* These attributes are read-writeable only if the chip is *not* locked */
1509 #define SENSOR_DEV_ATTR_PWM_5TO6_LOCK(ix) \
1510 &sensor_dev_attr_pwm##ix.dev_attr.attr, \
1511 &sensor_dev_attr_pwm##ix##_freq.dev_attr.attr
1513 #define SENSOR_DEV_ATTR_PWM_5TO6(ix) \
1514 SENSOR_DEV_ATTR_PWM_5TO6_LOCK(ix), \
1515 &sensor_dev_attr_pwm##ix##_enable.dev_attr.attr
1517 /* This struct holds all the attributes that are always present and need to be
1518 * created unconditionally. The attributes that need modification of their
1519 * permissions are created read-only and write permissions are added or removed
1520 * on the fly when required */
1521 static struct attribute
*dme1737_attr
[] ={
1523 SENSOR_DEV_ATTR_IN(0),
1524 SENSOR_DEV_ATTR_IN(1),
1525 SENSOR_DEV_ATTR_IN(2),
1526 SENSOR_DEV_ATTR_IN(3),
1527 SENSOR_DEV_ATTR_IN(4),
1528 SENSOR_DEV_ATTR_IN(5),
1529 SENSOR_DEV_ATTR_IN(6),
1531 SENSOR_DEV_ATTR_TEMP(1),
1532 SENSOR_DEV_ATTR_TEMP(2),
1533 SENSOR_DEV_ATTR_TEMP(3),
1535 SENSOR_DEV_ATTR_ZONE(1),
1536 SENSOR_DEV_ATTR_ZONE(2),
1537 SENSOR_DEV_ATTR_ZONE(3),
1540 &dev_attr_cpu0_vid
.attr
,
1544 static const struct attribute_group dme1737_group
= {
1545 .attrs
= dme1737_attr
,
1548 /* The following structs hold the PWM attributes, some of which are optional.
1549 * Their creation depends on the chip configuration which is determined during
1551 static struct attribute
*dme1737_attr_pwm1
[] = {
1552 SENSOR_DEV_ATTR_PWM_1TO3(1),
1555 static struct attribute
*dme1737_attr_pwm2
[] = {
1556 SENSOR_DEV_ATTR_PWM_1TO3(2),
1559 static struct attribute
*dme1737_attr_pwm3
[] = {
1560 SENSOR_DEV_ATTR_PWM_1TO3(3),
1563 static struct attribute
*dme1737_attr_pwm5
[] = {
1564 SENSOR_DEV_ATTR_PWM_5TO6(5),
1567 static struct attribute
*dme1737_attr_pwm6
[] = {
1568 SENSOR_DEV_ATTR_PWM_5TO6(6),
1572 static const struct attribute_group dme1737_pwm_group
[] = {
1573 { .attrs
= dme1737_attr_pwm1
},
1574 { .attrs
= dme1737_attr_pwm2
},
1575 { .attrs
= dme1737_attr_pwm3
},
1577 { .attrs
= dme1737_attr_pwm5
},
1578 { .attrs
= dme1737_attr_pwm6
},
1581 /* The following structs hold the fan attributes, some of which are optional.
1582 * Their creation depends on the chip configuration which is determined during
1584 static struct attribute
*dme1737_attr_fan1
[] = {
1585 SENSOR_DEV_ATTR_FAN_1TO4(1),
1588 static struct attribute
*dme1737_attr_fan2
[] = {
1589 SENSOR_DEV_ATTR_FAN_1TO4(2),
1592 static struct attribute
*dme1737_attr_fan3
[] = {
1593 SENSOR_DEV_ATTR_FAN_1TO4(3),
1596 static struct attribute
*dme1737_attr_fan4
[] = {
1597 SENSOR_DEV_ATTR_FAN_1TO4(4),
1600 static struct attribute
*dme1737_attr_fan5
[] = {
1601 SENSOR_DEV_ATTR_FAN_5TO6(5),
1604 static struct attribute
*dme1737_attr_fan6
[] = {
1605 SENSOR_DEV_ATTR_FAN_5TO6(6),
1609 static const struct attribute_group dme1737_fan_group
[] = {
1610 { .attrs
= dme1737_attr_fan1
},
1611 { .attrs
= dme1737_attr_fan2
},
1612 { .attrs
= dme1737_attr_fan3
},
1613 { .attrs
= dme1737_attr_fan4
},
1614 { .attrs
= dme1737_attr_fan5
},
1615 { .attrs
= dme1737_attr_fan6
},
1618 /* The permissions of all of the following attributes are changed to read-
1619 * writeable if the chip is *not* locked. Otherwise they stay read-only. */
1620 static struct attribute
*dme1737_attr_lock
[] = {
1622 SENSOR_DEV_ATTR_TEMP_LOCK(1),
1623 SENSOR_DEV_ATTR_TEMP_LOCK(2),
1624 SENSOR_DEV_ATTR_TEMP_LOCK(3),
1626 SENSOR_DEV_ATTR_ZONE_LOCK(1),
1627 SENSOR_DEV_ATTR_ZONE_LOCK(2),
1628 SENSOR_DEV_ATTR_ZONE_LOCK(3),
1632 static const struct attribute_group dme1737_lock_group
= {
1633 .attrs
= dme1737_attr_lock
,
1636 /* The permissions of the following PWM attributes are changed to read-
1637 * writeable if the chip is *not* locked and the respective PWM is available.
1638 * Otherwise they stay read-only. */
1639 static struct attribute
*dme1737_attr_pwm1_lock
[] = {
1640 SENSOR_DEV_ATTR_PWM_1TO3_LOCK(1),
1643 static struct attribute
*dme1737_attr_pwm2_lock
[] = {
1644 SENSOR_DEV_ATTR_PWM_1TO3_LOCK(2),
1647 static struct attribute
*dme1737_attr_pwm3_lock
[] = {
1648 SENSOR_DEV_ATTR_PWM_1TO3_LOCK(3),
1651 static struct attribute
*dme1737_attr_pwm5_lock
[] = {
1652 SENSOR_DEV_ATTR_PWM_5TO6_LOCK(5),
1655 static struct attribute
*dme1737_attr_pwm6_lock
[] = {
1656 SENSOR_DEV_ATTR_PWM_5TO6_LOCK(6),
1660 static const struct attribute_group dme1737_pwm_lock_group
[] = {
1661 { .attrs
= dme1737_attr_pwm1_lock
},
1662 { .attrs
= dme1737_attr_pwm2_lock
},
1663 { .attrs
= dme1737_attr_pwm3_lock
},
1665 { .attrs
= dme1737_attr_pwm5_lock
},
1666 { .attrs
= dme1737_attr_pwm6_lock
},
1669 /* Pwm[1-3] are read-writeable if the associated pwm is in manual mode and the
1670 * chip is not locked. Otherwise they are read-only. */
1671 static struct attribute
*dme1737_attr_pwm
[] = {
1672 &sensor_dev_attr_pwm1
.dev_attr
.attr
,
1673 &sensor_dev_attr_pwm2
.dev_attr
.attr
,
1674 &sensor_dev_attr_pwm3
.dev_attr
.attr
,
1677 /* ---------------------------------------------------------------------
1678 * Super-IO functions
1679 * --------------------------------------------------------------------- */
1681 static inline int dme1737_sio_inb(int sio_cip
, int reg
)
1684 return inb(sio_cip
+ 1);
1687 static inline void dme1737_sio_outb(int sio_cip
, int reg
, int val
)
1690 outb(val
, sio_cip
+ 1);
1693 static int dme1737_sio_get_features(int sio_cip
, struct i2c_client
*client
)
1695 struct dme1737_data
*data
= i2c_get_clientdata(client
);
1699 /* Enter configuration mode */
1700 outb(0x55, sio_cip
);
1703 * The DME1737 can return either 0x78 or 0x77 as its device ID. */
1704 reg
= dme1737_sio_inb(sio_cip
, 0x20);
1705 if (!(reg
== 0x77 || reg
== 0x78)) {
1710 /* Select logical device A (runtime registers) */
1711 dme1737_sio_outb(sio_cip
, 0x07, 0x0a);
1713 /* Get the base address of the runtime registers */
1714 if (!(addr
= (dme1737_sio_inb(sio_cip
, 0x60) << 8) |
1715 dme1737_sio_inb(sio_cip
, 0x61))) {
1720 /* Read the runtime registers to determine which optional features
1721 * are enabled and available. Bits [3:2] of registers 0x43-0x46 are set
1722 * to '10' if the respective feature is enabled. */
1723 if ((inb(addr
+ 0x43) & 0x0c) == 0x08) { /* fan6 */
1724 data
->has_fan
|= (1 << 5);
1726 if ((inb(addr
+ 0x44) & 0x0c) == 0x08) { /* pwm6 */
1727 data
->has_pwm
|= (1 << 5);
1729 if ((inb(addr
+ 0x45) & 0x0c) == 0x08) { /* fan5 */
1730 data
->has_fan
|= (1 << 4);
1732 if ((inb(addr
+ 0x46) & 0x0c) == 0x08) { /* pwm5 */
1733 data
->has_pwm
|= (1 << 4);
1737 /* Exit configuration mode */
1738 outb(0xaa, sio_cip
);
1743 /* ---------------------------------------------------------------------
1744 * Device detection, registration and initialization
1745 * --------------------------------------------------------------------- */
1747 static struct i2c_driver dme1737_driver
;
1749 static void dme1737_chmod_file(struct i2c_client
*client
,
1750 struct attribute
*attr
, mode_t mode
)
1752 if (sysfs_chmod_file(&client
->dev
.kobj
, attr
, mode
)) {
1753 dev_warn(&client
->dev
, "Failed to change permissions of %s.\n",
1758 static void dme1737_chmod_group(struct i2c_client
*client
,
1759 const struct attribute_group
*group
,
1762 struct attribute
**attr
;
1764 for (attr
= group
->attrs
; *attr
; attr
++) {
1765 dme1737_chmod_file(client
, *attr
, mode
);
1769 static int dme1737_init_client(struct i2c_client
*client
)
1771 struct dme1737_data
*data
= i2c_get_clientdata(client
);
1775 data
->config
= dme1737_read(client
, DME1737_REG_CONFIG
);
1776 /* Inform if part is not monitoring/started */
1777 if (!(data
->config
& 0x01)) {
1779 dev_err(&client
->dev
, "Device is not monitoring. "
1780 "Use the force_start load parameter to "
1785 /* Force monitoring */
1786 data
->config
|= 0x01;
1787 dme1737_write(client
, DME1737_REG_CONFIG
, data
->config
);
1789 /* Inform if part is not ready */
1790 if (!(data
->config
& 0x04)) {
1791 dev_err(&client
->dev
, "Device is not ready.\n");
1795 data
->config2
= dme1737_read(client
, DME1737_REG_CONFIG2
);
1796 /* Check if optional fan3 input is enabled */
1797 if (data
->config2
& 0x04) {
1798 data
->has_fan
|= (1 << 2);
1801 /* Fan4 and pwm3 are only available if the client's I2C address
1802 * is the default 0x2e. Otherwise the I/Os associated with these
1803 * functions are used for addr enable/select. */
1804 if (client
->addr
== 0x2e) {
1805 data
->has_fan
|= (1 << 3);
1806 data
->has_pwm
|= (1 << 2);
1809 /* Determine if the optional fan[5-6] and/or pwm[5-6] are enabled.
1810 * For this, we need to query the runtime registers through the
1811 * Super-IO LPC interface. Try both config ports 0x2e and 0x4e. */
1812 if (dme1737_sio_get_features(0x2e, client
) &&
1813 dme1737_sio_get_features(0x4e, client
)) {
1814 dev_warn(&client
->dev
, "Failed to query Super-IO for optional "
1818 /* Fan1, fan2, pwm1, and pwm2 are always present */
1819 data
->has_fan
|= 0x03;
1820 data
->has_pwm
|= 0x03;
1822 dev_info(&client
->dev
, "Optional features: pwm3=%s, pwm5=%s, pwm6=%s, "
1823 "fan3=%s, fan4=%s, fan5=%s, fan6=%s.\n",
1824 (data
->has_pwm
& (1 << 2)) ? "yes" : "no",
1825 (data
->has_pwm
& (1 << 4)) ? "yes" : "no",
1826 (data
->has_pwm
& (1 << 5)) ? "yes" : "no",
1827 (data
->has_fan
& (1 << 2)) ? "yes" : "no",
1828 (data
->has_fan
& (1 << 3)) ? "yes" : "no",
1829 (data
->has_fan
& (1 << 4)) ? "yes" : "no",
1830 (data
->has_fan
& (1 << 5)) ? "yes" : "no");
1832 reg
= dme1737_read(client
, DME1737_REG_TACH_PWM
);
1833 /* Inform if fan-to-pwm mapping differs from the default */
1835 dev_warn(&client
->dev
, "Non-standard fan to pwm mapping: "
1836 "fan1->pwm%d, fan2->pwm%d, fan3->pwm%d, "
1837 "fan4->pwm%d. Please report to the driver "
1839 (reg
& 0x03) + 1, ((reg
>> 2) & 0x03) + 1,
1840 ((reg
>> 4) & 0x03) + 1, ((reg
>> 6) & 0x03) + 1);
1843 /* Switch pwm[1-3] to manual mode if they are currently disabled and
1844 * set the duty-cycles to 0% (which is identical to the PWMs being
1846 if (!(data
->config
& 0x02)) {
1847 for (ix
= 0; ix
< 3; ix
++) {
1848 data
->pwm_config
[ix
] = dme1737_read(client
,
1849 DME1737_REG_PWM_CONFIG(ix
));
1850 if ((data
->has_pwm
& (1 << ix
)) &&
1851 (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == -1)) {
1852 dev_info(&client
->dev
, "Switching pwm%d to "
1853 "manual mode.\n", ix
+ 1);
1854 data
->pwm_config
[ix
] = PWM_EN_TO_REG(1,
1855 data
->pwm_config
[ix
]);
1856 dme1737_write(client
, DME1737_REG_PWM(ix
), 0);
1857 dme1737_write(client
,
1858 DME1737_REG_PWM_CONFIG(ix
),
1859 data
->pwm_config
[ix
]);
1864 /* Initialize the default PWM auto channels zone (acz) assignments */
1865 data
->pwm_acz
[0] = 1; /* pwm1 -> zone1 */
1866 data
->pwm_acz
[1] = 2; /* pwm2 -> zone2 */
1867 data
->pwm_acz
[2] = 4; /* pwm3 -> zone3 */
1870 data
->vrm
= vid_which_vrm();
1875 static int dme1737_detect(struct i2c_adapter
*adapter
, int address
,
1878 u8 company
, verstep
= 0;
1879 struct i2c_client
*client
;
1880 struct dme1737_data
*data
;
1884 if (!i2c_check_functionality(adapter
, I2C_FUNC_SMBUS_BYTE_DATA
)) {
1888 if (!(data
= kzalloc(sizeof(struct dme1737_data
), GFP_KERNEL
))) {
1893 client
= &data
->client
;
1894 i2c_set_clientdata(client
, data
);
1895 client
->addr
= address
;
1896 client
->adapter
= adapter
;
1897 client
->driver
= &dme1737_driver
;
1899 /* A negative kind means that the driver was loaded with no force
1900 * parameter (default), so we must identify the chip. */
1902 company
= dme1737_read(client
, DME1737_REG_COMPANY
);
1903 verstep
= dme1737_read(client
, DME1737_REG_VERSTEP
);
1905 if (!((company
== DME1737_COMPANY_SMSC
) &&
1906 ((verstep
& DME1737_VERSTEP_MASK
) == DME1737_VERSTEP
))) {
1915 /* Fill in the remaining client fields and put it into the global
1917 strlcpy(client
->name
, name
, I2C_NAME_SIZE
);
1918 mutex_init(&data
->update_lock
);
1920 /* Tell the I2C layer a new client has arrived */
1921 if ((err
= i2c_attach_client(client
))) {
1925 /* Initialize the DME1737 chip */
1926 if ((err
= dme1737_init_client(client
))) {
1930 /* Create standard sysfs attributes */
1931 if ((err
= sysfs_create_group(&client
->dev
.kobj
, &dme1737_group
))) {
1935 /* Create fan sysfs attributes */
1936 for (ix
= 0; ix
< ARRAY_SIZE(dme1737_fan_group
); ix
++) {
1937 if (data
->has_fan
& (1 << ix
)) {
1938 if ((err
= sysfs_create_group(&client
->dev
.kobj
,
1939 &dme1737_fan_group
[ix
]))) {
1945 /* Create PWM sysfs attributes */
1946 for (ix
= 0; ix
< ARRAY_SIZE(dme1737_pwm_group
); ix
++) {
1947 if (data
->has_pwm
& (1 << ix
)) {
1948 if ((err
= sysfs_create_group(&client
->dev
.kobj
,
1949 &dme1737_pwm_group
[ix
]))) {
1955 /* Inform if the device is locked. Otherwise change the permissions of
1956 * selected attributes from read-only to read-writeable. */
1957 if (data
->config
& 0x02) {
1958 dev_info(&client
->dev
, "Device is locked. Some attributes "
1959 "will be read-only.\n");
1961 /* Change permissions of standard attributes */
1962 dme1737_chmod_group(client
, &dme1737_lock_group
,
1965 /* Change permissions of PWM attributes */
1966 for (ix
= 0; ix
< ARRAY_SIZE(dme1737_pwm_lock_group
); ix
++) {
1967 if (data
->has_pwm
& (1 << ix
)) {
1968 dme1737_chmod_group(client
,
1969 &dme1737_pwm_lock_group
[ix
],
1974 /* Change permissions of pwm[1-3] if in manual mode */
1975 for (ix
= 0; ix
< 3; ix
++) {
1976 if ((data
->has_pwm
& (1 << ix
)) &&
1977 (PWM_EN_FROM_REG(data
->pwm_config
[ix
]) == 1)) {
1978 dme1737_chmod_file(client
,
1979 dme1737_attr_pwm
[ix
],
1985 /* Register device */
1986 data
->class_dev
= hwmon_device_register(&client
->dev
);
1987 if (IS_ERR(data
->class_dev
)) {
1988 err
= PTR_ERR(data
->class_dev
);
1992 dev_info(&adapter
->dev
, "Found a DME1737 chip at 0x%02x "
1993 "(rev 0x%02x)\n", client
->addr
, verstep
);
1998 for (ix
= 0; ix
< ARRAY_SIZE(dme1737_fan_group
); ix
++) {
1999 if (data
->has_fan
& (1 << ix
)) {
2000 sysfs_remove_group(&client
->dev
.kobj
,
2001 &dme1737_fan_group
[ix
]);
2004 for (ix
= 0; ix
< ARRAY_SIZE(dme1737_pwm_group
); ix
++) {
2005 if (data
->has_pwm
& (1 << ix
)) {
2006 sysfs_remove_group(&client
->dev
.kobj
,
2007 &dme1737_pwm_group
[ix
]);
2010 sysfs_remove_group(&client
->dev
.kobj
, &dme1737_group
);
2012 i2c_detach_client(client
);
2019 static int dme1737_attach_adapter(struct i2c_adapter
*adapter
)
2021 if (!(adapter
->class & I2C_CLASS_HWMON
)) {
2025 return i2c_probe(adapter
, &addr_data
, dme1737_detect
);
2028 static int dme1737_detach_client(struct i2c_client
*client
)
2030 struct dme1737_data
*data
= i2c_get_clientdata(client
);
2033 hwmon_device_unregister(data
->class_dev
);
2035 for (ix
= 0; ix
< ARRAY_SIZE(dme1737_fan_group
); ix
++) {
2036 if (data
->has_fan
& (1 << ix
)) {
2037 sysfs_remove_group(&client
->dev
.kobj
,
2038 &dme1737_fan_group
[ix
]);
2041 for (ix
= 0; ix
< ARRAY_SIZE(dme1737_pwm_group
); ix
++) {
2042 if (data
->has_pwm
& (1 << ix
)) {
2043 sysfs_remove_group(&client
->dev
.kobj
,
2044 &dme1737_pwm_group
[ix
]);
2047 sysfs_remove_group(&client
->dev
.kobj
, &dme1737_group
);
2049 if ((err
= i2c_detach_client(client
))) {
2057 static struct i2c_driver dme1737_driver
= {
2061 .attach_adapter
= dme1737_attach_adapter
,
2062 .detach_client
= dme1737_detach_client
,
2065 static int __init
dme1737_init(void)
2067 return i2c_add_driver(&dme1737_driver
);
2070 static void __exit
dme1737_exit(void)
2072 i2c_del_driver(&dme1737_driver
);
2075 MODULE_AUTHOR("Juerg Haefliger <juergh@gmail.com>");
2076 MODULE_DESCRIPTION("DME1737 sensors");
2077 MODULE_LICENSE("GPL");
2079 module_init(dme1737_init
);
2080 module_exit(dme1737_exit
);