2 * nct6775 - Driver for the hardware monitoring functionality of
3 * Nuvoton NCT677x Super-I/O chips
5 * Copyright (C) 2012 Guenter Roeck <linux@roeck-us.net>
7 * Derived from w83627ehf driver
8 * Copyright (C) 2005-2012 Jean Delvare <jdelvare@suse.de>
9 * Copyright (C) 2006 Yuan Mu (Winbond),
10 * Rudolf Marek <r.marek@assembler.cz>
11 * David Hubbard <david.c.hubbard@gmail.com>
12 * Daniel J Blueman <daniel.blueman@gmail.com>
13 * Copyright (C) 2010 Sheng-Yuan Huang (Nuvoton) (PS00)
15 * Shamelessly ripped from the w83627hf driver
16 * Copyright (C) 2003 Mark Studebaker
18 * This program is free software; you can redistribute it and/or modify
19 * it under the terms of the GNU General Public License as published by
20 * the Free Software Foundation; either version 2 of the License, or
21 * (at your option) any later version.
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
33 * Supports the following chips:
35 * Chip #vin #fan #pwm #temp chip IDs man ID
36 * nct6106d 9 3 3 6+3 0xc450 0xc1 0x5ca3
37 * nct6775f 9 4 3 6+3 0xb470 0xc1 0x5ca3
38 * nct6776f 9 5 3 6+3 0xc330 0xc1 0x5ca3
39 * nct6779d 15 5 5 2+6 0xc560 0xc1 0x5ca3
40 * nct6791d 15 6 6 2+6 0xc800 0xc1 0x5ca3
42 * #temp lists the number of monitored temperature sources (first value) plus
43 * the number of directly connectable temperature sensors (second value).
46 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
48 #include <linux/module.h>
49 #include <linux/init.h>
50 #include <linux/slab.h>
51 #include <linux/jiffies.h>
52 #include <linux/platform_device.h>
53 #include <linux/hwmon.h>
54 #include <linux/hwmon-sysfs.h>
55 #include <linux/hwmon-vid.h>
56 #include <linux/err.h>
57 #include <linux/mutex.h>
58 #include <linux/acpi.h>
64 enum kinds
{ nct6106
, nct6775
, nct6776
, nct6779
, nct6791
};
66 /* used to set data->name = nct6775_device_names[data->sio_kind] */
67 static const char * const nct6775_device_names
[] = {
75 static unsigned short force_id
;
76 module_param(force_id
, ushort
, 0);
77 MODULE_PARM_DESC(force_id
, "Override the detected device ID");
79 static unsigned short fan_debounce
;
80 module_param(fan_debounce
, ushort
, 0);
81 MODULE_PARM_DESC(fan_debounce
, "Enable debouncing for fan RPM signal");
83 #define DRVNAME "nct6775"
86 * Super-I/O constants and functions
89 #define NCT6775_LD_ACPI 0x0a
90 #define NCT6775_LD_HWM 0x0b
91 #define NCT6775_LD_VID 0x0d
93 #define SIO_REG_LDSEL 0x07 /* Logical device select */
94 #define SIO_REG_DEVID 0x20 /* Device ID (2 bytes) */
95 #define SIO_REG_ENABLE 0x30 /* Logical device enable */
96 #define SIO_REG_ADDR 0x60 /* Logical device address (2 bytes) */
98 #define SIO_NCT6106_ID 0xc450
99 #define SIO_NCT6775_ID 0xb470
100 #define SIO_NCT6776_ID 0xc330
101 #define SIO_NCT6779_ID 0xc560
102 #define SIO_NCT6791_ID 0xc800
103 #define SIO_ID_MASK 0xFFF0
105 enum pwm_enable
{ off
, manual
, thermal_cruise
, speed_cruise
, sf3
, sf4
};
108 superio_outb(int ioreg
, int reg
, int val
)
111 outb(val
, ioreg
+ 1);
115 superio_inb(int ioreg
, int reg
)
118 return inb(ioreg
+ 1);
122 superio_select(int ioreg
, int ld
)
124 outb(SIO_REG_LDSEL
, ioreg
);
129 superio_enter(int ioreg
)
132 * Try to reserve <ioreg> and <ioreg + 1> for exclusive access.
134 if (!request_muxed_region(ioreg
, 2, DRVNAME
))
144 superio_exit(int ioreg
)
148 outb(0x02, ioreg
+ 1);
149 release_region(ioreg
, 2);
156 #define IOREGION_ALIGNMENT (~7)
157 #define IOREGION_OFFSET 5
158 #define IOREGION_LENGTH 2
159 #define ADDR_REG_OFFSET 0
160 #define DATA_REG_OFFSET 1
162 #define NCT6775_REG_BANK 0x4E
163 #define NCT6775_REG_CONFIG 0x40
166 * Not currently used:
167 * REG_MAN_ID has the value 0x5ca3 for all supported chips.
168 * REG_CHIP_ID == 0x88/0xa1/0xc1 depending on chip model.
169 * REG_MAN_ID is at port 0x4f
170 * REG_CHIP_ID is at port 0x58
173 #define NUM_TEMP 10 /* Max number of temp attribute sets w/ limits*/
174 #define NUM_TEMP_FIXED 6 /* Max number of fixed temp attribute sets */
176 #define NUM_REG_ALARM 7 /* Max number of alarm registers */
177 #define NUM_REG_BEEP 5 /* Max number of beep registers */
181 /* Common and NCT6775 specific data */
183 /* Voltage min/max registers for nr=7..14 are in bank 5 */
185 static const u16 NCT6775_REG_IN_MAX
[] = {
186 0x2b, 0x2d, 0x2f, 0x31, 0x33, 0x35, 0x37, 0x554, 0x556, 0x558, 0x55a,
187 0x55c, 0x55e, 0x560, 0x562 };
188 static const u16 NCT6775_REG_IN_MIN
[] = {
189 0x2c, 0x2e, 0x30, 0x32, 0x34, 0x36, 0x38, 0x555, 0x557, 0x559, 0x55b,
190 0x55d, 0x55f, 0x561, 0x563 };
191 static const u16 NCT6775_REG_IN
[] = {
192 0x20, 0x21, 0x22, 0x23, 0x24, 0x25, 0x26, 0x550, 0x551, 0x552
195 #define NCT6775_REG_VBAT 0x5D
196 #define NCT6775_REG_DIODE 0x5E
197 #define NCT6775_DIODE_MASK 0x02
199 #define NCT6775_REG_FANDIV1 0x506
200 #define NCT6775_REG_FANDIV2 0x507
202 #define NCT6775_REG_CR_FAN_DEBOUNCE 0xf0
204 static const u16 NCT6775_REG_ALARM
[NUM_REG_ALARM
] = { 0x459, 0x45A, 0x45B };
206 /* 0..15 voltages, 16..23 fans, 24..29 temperatures, 30..31 intrusion */
208 static const s8 NCT6775_ALARM_BITS
[] = {
209 0, 1, 2, 3, 8, 21, 20, 16, /* in0.. in7 */
210 17, -1, -1, -1, -1, -1, -1, /* in8..in14 */
212 6, 7, 11, -1, -1, /* fan1..fan5 */
213 -1, -1, -1, /* unused */
214 4, 5, 13, -1, -1, -1, /* temp1..temp6 */
215 12, -1 }; /* intrusion0, intrusion1 */
217 #define FAN_ALARM_BASE 16
218 #define TEMP_ALARM_BASE 24
219 #define INTRUSION_ALARM_BASE 30
221 static const u16 NCT6775_REG_BEEP
[NUM_REG_BEEP
] = { 0x56, 0x57, 0x453, 0x4e };
224 * 0..14 voltages, 15 global beep enable, 16..23 fans, 24..29 temperatures,
227 static const s8 NCT6775_BEEP_BITS
[] = {
228 0, 1, 2, 3, 8, 9, 10, 16, /* in0.. in7 */
229 17, -1, -1, -1, -1, -1, -1, /* in8..in14 */
230 21, /* global beep enable */
231 6, 7, 11, 28, -1, /* fan1..fan5 */
232 -1, -1, -1, /* unused */
233 4, 5, 13, -1, -1, -1, /* temp1..temp6 */
234 12, -1 }; /* intrusion0, intrusion1 */
236 #define BEEP_ENABLE_BASE 15
238 static const u8 NCT6775_REG_CR_CASEOPEN_CLR
[] = { 0xe6, 0xee };
239 static const u8 NCT6775_CR_CASEOPEN_CLR_MASK
[] = { 0x20, 0x01 };
241 /* DC or PWM output fan configuration */
242 static const u8 NCT6775_REG_PWM_MODE
[] = { 0x04, 0x04, 0x12 };
243 static const u8 NCT6775_PWM_MODE_MASK
[] = { 0x01, 0x02, 0x01 };
245 /* Advanced Fan control, some values are common for all fans */
247 static const u16 NCT6775_REG_TARGET
[] = {
248 0x101, 0x201, 0x301, 0x801, 0x901, 0xa01 };
249 static const u16 NCT6775_REG_FAN_MODE
[] = {
250 0x102, 0x202, 0x302, 0x802, 0x902, 0xa02 };
251 static const u16 NCT6775_REG_FAN_STEP_DOWN_TIME
[] = {
252 0x103, 0x203, 0x303, 0x803, 0x903, 0xa03 };
253 static const u16 NCT6775_REG_FAN_STEP_UP_TIME
[] = {
254 0x104, 0x204, 0x304, 0x804, 0x904, 0xa04 };
255 static const u16 NCT6775_REG_FAN_STOP_OUTPUT
[] = {
256 0x105, 0x205, 0x305, 0x805, 0x905, 0xa05 };
257 static const u16 NCT6775_REG_FAN_START_OUTPUT
[] = {
258 0x106, 0x206, 0x306, 0x806, 0x906, 0xa06 };
259 static const u16 NCT6775_REG_FAN_MAX_OUTPUT
[] = { 0x10a, 0x20a, 0x30a };
260 static const u16 NCT6775_REG_FAN_STEP_OUTPUT
[] = { 0x10b, 0x20b, 0x30b };
262 static const u16 NCT6775_REG_FAN_STOP_TIME
[] = {
263 0x107, 0x207, 0x307, 0x807, 0x907, 0xa07 };
264 static const u16 NCT6775_REG_PWM
[] = {
265 0x109, 0x209, 0x309, 0x809, 0x909, 0xa09 };
266 static const u16 NCT6775_REG_PWM_READ
[] = {
267 0x01, 0x03, 0x11, 0x13, 0x15, 0xa09 };
269 static const u16 NCT6775_REG_FAN
[] = { 0x630, 0x632, 0x634, 0x636, 0x638 };
270 static const u16 NCT6775_REG_FAN_MIN
[] = { 0x3b, 0x3c, 0x3d };
271 static const u16 NCT6775_REG_FAN_PULSES
[] = { 0x641, 0x642, 0x643, 0x644, 0 };
272 static const u16 NCT6775_FAN_PULSE_SHIFT
[] = { 0, 0, 0, 0, 0, 0 };
274 static const u16 NCT6775_REG_TEMP
[] = {
275 0x27, 0x150, 0x250, 0x62b, 0x62c, 0x62d };
277 static const u16 NCT6775_REG_TEMP_MON
[] = { 0x73, 0x75, 0x77 };
279 static const u16 NCT6775_REG_TEMP_CONFIG
[ARRAY_SIZE(NCT6775_REG_TEMP
)] = {
280 0, 0x152, 0x252, 0x628, 0x629, 0x62A };
281 static const u16 NCT6775_REG_TEMP_HYST
[ARRAY_SIZE(NCT6775_REG_TEMP
)] = {
282 0x3a, 0x153, 0x253, 0x673, 0x678, 0x67D };
283 static const u16 NCT6775_REG_TEMP_OVER
[ARRAY_SIZE(NCT6775_REG_TEMP
)] = {
284 0x39, 0x155, 0x255, 0x672, 0x677, 0x67C };
286 static const u16 NCT6775_REG_TEMP_SOURCE
[ARRAY_SIZE(NCT6775_REG_TEMP
)] = {
287 0x621, 0x622, 0x623, 0x624, 0x625, 0x626 };
289 static const u16 NCT6775_REG_TEMP_SEL
[] = {
290 0x100, 0x200, 0x300, 0x800, 0x900, 0xa00 };
292 static const u16 NCT6775_REG_WEIGHT_TEMP_SEL
[] = {
293 0x139, 0x239, 0x339, 0x839, 0x939, 0xa39 };
294 static const u16 NCT6775_REG_WEIGHT_TEMP_STEP
[] = {
295 0x13a, 0x23a, 0x33a, 0x83a, 0x93a, 0xa3a };
296 static const u16 NCT6775_REG_WEIGHT_TEMP_STEP_TOL
[] = {
297 0x13b, 0x23b, 0x33b, 0x83b, 0x93b, 0xa3b };
298 static const u16 NCT6775_REG_WEIGHT_DUTY_STEP
[] = {
299 0x13c, 0x23c, 0x33c, 0x83c, 0x93c, 0xa3c };
300 static const u16 NCT6775_REG_WEIGHT_TEMP_BASE
[] = {
301 0x13d, 0x23d, 0x33d, 0x83d, 0x93d, 0xa3d };
303 static const u16 NCT6775_REG_TEMP_OFFSET
[] = { 0x454, 0x455, 0x456 };
305 static const u16 NCT6775_REG_AUTO_TEMP
[] = {
306 0x121, 0x221, 0x321, 0x821, 0x921, 0xa21 };
307 static const u16 NCT6775_REG_AUTO_PWM
[] = {
308 0x127, 0x227, 0x327, 0x827, 0x927, 0xa27 };
310 #define NCT6775_AUTO_TEMP(data, nr, p) ((data)->REG_AUTO_TEMP[nr] + (p))
311 #define NCT6775_AUTO_PWM(data, nr, p) ((data)->REG_AUTO_PWM[nr] + (p))
313 static const u16 NCT6775_REG_CRITICAL_ENAB
[] = { 0x134, 0x234, 0x334 };
315 static const u16 NCT6775_REG_CRITICAL_TEMP
[] = {
316 0x135, 0x235, 0x335, 0x835, 0x935, 0xa35 };
317 static const u16 NCT6775_REG_CRITICAL_TEMP_TOLERANCE
[] = {
318 0x138, 0x238, 0x338, 0x838, 0x938, 0xa38 };
320 static const char *const nct6775_temp_label
[] = {
334 "PCH_CHIP_CPU_MAX_TEMP",
344 static const u16 NCT6775_REG_TEMP_ALTERNATE
[ARRAY_SIZE(nct6775_temp_label
) - 1]
345 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x661, 0x662, 0x664 };
347 static const u16 NCT6775_REG_TEMP_CRIT
[ARRAY_SIZE(nct6775_temp_label
) - 1]
348 = { 0, 0, 0, 0, 0xa00, 0xa01, 0xa02, 0xa03, 0xa04, 0xa05, 0xa06,
351 /* NCT6776 specific data */
353 static const s8 NCT6776_ALARM_BITS
[] = {
354 0, 1, 2, 3, 8, 21, 20, 16, /* in0.. in7 */
355 17, -1, -1, -1, -1, -1, -1, /* in8..in14 */
357 6, 7, 11, 10, 23, /* fan1..fan5 */
358 -1, -1, -1, /* unused */
359 4, 5, 13, -1, -1, -1, /* temp1..temp6 */
360 12, 9 }; /* intrusion0, intrusion1 */
362 static const u16 NCT6776_REG_BEEP
[NUM_REG_BEEP
] = { 0xb2, 0xb3, 0xb4, 0xb5 };
364 static const s8 NCT6776_BEEP_BITS
[] = {
365 0, 1, 2, 3, 4, 5, 6, 7, /* in0.. in7 */
366 8, -1, -1, -1, -1, -1, -1, /* in8..in14 */
367 24, /* global beep enable */
368 25, 26, 27, 28, 29, /* fan1..fan5 */
369 -1, -1, -1, /* unused */
370 16, 17, 18, 19, 20, 21, /* temp1..temp6 */
371 30, 31 }; /* intrusion0, intrusion1 */
373 static const u16 NCT6776_REG_TOLERANCE_H
[] = {
374 0x10c, 0x20c, 0x30c, 0x80c, 0x90c, 0xa0c };
376 static const u8 NCT6776_REG_PWM_MODE
[] = { 0x04, 0, 0, 0, 0, 0 };
377 static const u8 NCT6776_PWM_MODE_MASK
[] = { 0x01, 0, 0, 0, 0, 0 };
379 static const u16 NCT6776_REG_FAN_MIN
[] = { 0x63a, 0x63c, 0x63e, 0x640, 0x642 };
380 static const u16 NCT6776_REG_FAN_PULSES
[] = { 0x644, 0x645, 0x646, 0, 0 };
382 static const u16 NCT6776_REG_WEIGHT_DUTY_BASE
[] = {
383 0x13e, 0x23e, 0x33e, 0x83e, 0x93e, 0xa3e };
385 static const u16 NCT6776_REG_TEMP_CONFIG
[ARRAY_SIZE(NCT6775_REG_TEMP
)] = {
386 0x18, 0x152, 0x252, 0x628, 0x629, 0x62A };
388 static const char *const nct6776_temp_label
[] = {
403 "PCH_CHIP_CPU_MAX_TEMP",
414 static const u16 NCT6776_REG_TEMP_ALTERNATE
[ARRAY_SIZE(nct6776_temp_label
) - 1]
415 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x401, 0x402, 0x404 };
417 static const u16 NCT6776_REG_TEMP_CRIT
[ARRAY_SIZE(nct6776_temp_label
) - 1]
418 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x709, 0x70a };
420 /* NCT6779 specific data */
422 static const u16 NCT6779_REG_IN
[] = {
423 0x480, 0x481, 0x482, 0x483, 0x484, 0x485, 0x486, 0x487,
424 0x488, 0x489, 0x48a, 0x48b, 0x48c, 0x48d, 0x48e };
426 static const u16 NCT6779_REG_ALARM
[NUM_REG_ALARM
] = {
427 0x459, 0x45A, 0x45B, 0x568 };
429 static const s8 NCT6779_ALARM_BITS
[] = {
430 0, 1, 2, 3, 8, 21, 20, 16, /* in0.. in7 */
431 17, 24, 25, 26, 27, 28, 29, /* in8..in14 */
433 6, 7, 11, 10, 23, /* fan1..fan5 */
434 -1, -1, -1, /* unused */
435 4, 5, 13, -1, -1, -1, /* temp1..temp6 */
436 12, 9 }; /* intrusion0, intrusion1 */
438 static const s8 NCT6779_BEEP_BITS
[] = {
439 0, 1, 2, 3, 4, 5, 6, 7, /* in0.. in7 */
440 8, 9, 10, 11, 12, 13, 14, /* in8..in14 */
441 24, /* global beep enable */
442 25, 26, 27, 28, 29, /* fan1..fan5 */
443 -1, -1, -1, /* unused */
444 16, 17, -1, -1, -1, -1, /* temp1..temp6 */
445 30, 31 }; /* intrusion0, intrusion1 */
447 static const u16 NCT6779_REG_FAN
[] = {
448 0x4b0, 0x4b2, 0x4b4, 0x4b6, 0x4b8, 0x4ba };
449 static const u16 NCT6779_REG_FAN_PULSES
[] = {
450 0x644, 0x645, 0x646, 0x647, 0x648, 0x649 };
452 static const u16 NCT6779_REG_CRITICAL_PWM_ENABLE
[] = {
453 0x136, 0x236, 0x336, 0x836, 0x936, 0xa36 };
454 #define NCT6779_CRITICAL_PWM_ENABLE_MASK 0x01
455 static const u16 NCT6779_REG_CRITICAL_PWM
[] = {
456 0x137, 0x237, 0x337, 0x837, 0x937, 0xa37 };
458 static const u16 NCT6779_REG_TEMP
[] = { 0x27, 0x150 };
459 static const u16 NCT6779_REG_TEMP_MON
[] = { 0x73, 0x75, 0x77, 0x79, 0x7b };
460 static const u16 NCT6779_REG_TEMP_CONFIG
[ARRAY_SIZE(NCT6779_REG_TEMP
)] = {
462 static const u16 NCT6779_REG_TEMP_HYST
[ARRAY_SIZE(NCT6779_REG_TEMP
)] = {
464 static const u16 NCT6779_REG_TEMP_OVER
[ARRAY_SIZE(NCT6779_REG_TEMP
)] = {
467 static const u16 NCT6779_REG_TEMP_OFFSET
[] = {
468 0x454, 0x455, 0x456, 0x44a, 0x44b, 0x44c };
470 static const char *const nct6779_temp_label
[] = {
489 "PCH_CHIP_CPU_MAX_TEMP",
500 static const u16 NCT6779_REG_TEMP_ALTERNATE
[ARRAY_SIZE(nct6779_temp_label
) - 1]
501 = { 0x490, 0x491, 0x492, 0x493, 0x494, 0x495, 0, 0,
502 0, 0, 0, 0, 0, 0, 0, 0,
503 0, 0x400, 0x401, 0x402, 0x404, 0x405, 0x406, 0x407,
506 static const u16 NCT6779_REG_TEMP_CRIT
[ARRAY_SIZE(nct6779_temp_label
) - 1]
507 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x709, 0x70a };
509 /* NCT6791 specific data */
511 #define NCT6791_REG_HM_IO_SPACE_LOCK_ENABLE 0x28
513 static const u16 NCT6791_REG_WEIGHT_TEMP_SEL
[6] = { 0, 0x239 };
514 static const u16 NCT6791_REG_WEIGHT_TEMP_STEP
[6] = { 0, 0x23a };
515 static const u16 NCT6791_REG_WEIGHT_TEMP_STEP_TOL
[6] = { 0, 0x23b };
516 static const u16 NCT6791_REG_WEIGHT_DUTY_STEP
[6] = { 0, 0x23c };
517 static const u16 NCT6791_REG_WEIGHT_TEMP_BASE
[6] = { 0, 0x23d };
518 static const u16 NCT6791_REG_WEIGHT_DUTY_BASE
[6] = { 0, 0x23e };
520 static const u16 NCT6791_REG_ALARM
[NUM_REG_ALARM
] = {
521 0x459, 0x45A, 0x45B, 0x568, 0x45D };
523 static const s8 NCT6791_ALARM_BITS
[] = {
524 0, 1, 2, 3, 8, 21, 20, 16, /* in0.. in7 */
525 17, 24, 25, 26, 27, 28, 29, /* in8..in14 */
527 6, 7, 11, 10, 23, 33, /* fan1..fan6 */
529 4, 5, 13, -1, -1, -1, /* temp1..temp6 */
530 12, 9 }; /* intrusion0, intrusion1 */
533 /* NCT6102D/NCT6106D specific data */
535 #define NCT6106_REG_VBAT 0x318
536 #define NCT6106_REG_DIODE 0x319
537 #define NCT6106_DIODE_MASK 0x01
539 static const u16 NCT6106_REG_IN_MAX
[] = {
540 0x90, 0x92, 0x94, 0x96, 0x98, 0x9a, 0x9e, 0xa0, 0xa2 };
541 static const u16 NCT6106_REG_IN_MIN
[] = {
542 0x91, 0x93, 0x95, 0x97, 0x99, 0x9b, 0x9f, 0xa1, 0xa3 };
543 static const u16 NCT6106_REG_IN
[] = {
544 0x00, 0x01, 0x02, 0x03, 0x04, 0x05, 0x07, 0x08, 0x09 };
546 static const u16 NCT6106_REG_TEMP
[] = { 0x10, 0x11, 0x12, 0x13, 0x14, 0x15 };
547 static const u16 NCT6106_REG_TEMP_MON
[] = { 0x18, 0x19, 0x1a };
548 static const u16 NCT6106_REG_TEMP_HYST
[] = {
549 0xc3, 0xc7, 0xcb, 0xcf, 0xd3, 0xd7 };
550 static const u16 NCT6106_REG_TEMP_OVER
[] = {
551 0xc2, 0xc6, 0xca, 0xce, 0xd2, 0xd6 };
552 static const u16 NCT6106_REG_TEMP_CRIT_L
[] = {
553 0xc0, 0xc4, 0xc8, 0xcc, 0xd0, 0xd4 };
554 static const u16 NCT6106_REG_TEMP_CRIT_H
[] = {
555 0xc1, 0xc5, 0xc9, 0xcf, 0xd1, 0xd5 };
556 static const u16 NCT6106_REG_TEMP_OFFSET
[] = { 0x311, 0x312, 0x313 };
557 static const u16 NCT6106_REG_TEMP_CONFIG
[] = {
558 0xb7, 0xb8, 0xb9, 0xba, 0xbb, 0xbc };
560 static const u16 NCT6106_REG_FAN
[] = { 0x20, 0x22, 0x24 };
561 static const u16 NCT6106_REG_FAN_MIN
[] = { 0xe0, 0xe2, 0xe4 };
562 static const u16 NCT6106_REG_FAN_PULSES
[] = { 0xf6, 0xf6, 0xf6, 0, 0 };
563 static const u16 NCT6106_FAN_PULSE_SHIFT
[] = { 0, 2, 4, 0, 0 };
565 static const u8 NCT6106_REG_PWM_MODE
[] = { 0xf3, 0xf3, 0xf3 };
566 static const u8 NCT6106_PWM_MODE_MASK
[] = { 0x01, 0x02, 0x04 };
567 static const u16 NCT6106_REG_PWM
[] = { 0x119, 0x129, 0x139 };
568 static const u16 NCT6106_REG_PWM_READ
[] = { 0x4a, 0x4b, 0x4c };
569 static const u16 NCT6106_REG_FAN_MODE
[] = { 0x113, 0x123, 0x133 };
570 static const u16 NCT6106_REG_TEMP_SEL
[] = { 0x110, 0x120, 0x130 };
571 static const u16 NCT6106_REG_TEMP_SOURCE
[] = {
572 0xb0, 0xb1, 0xb2, 0xb3, 0xb4, 0xb5 };
574 static const u16 NCT6106_REG_CRITICAL_TEMP
[] = { 0x11a, 0x12a, 0x13a };
575 static const u16 NCT6106_REG_CRITICAL_TEMP_TOLERANCE
[] = {
576 0x11b, 0x12b, 0x13b };
578 static const u16 NCT6106_REG_CRITICAL_PWM_ENABLE
[] = { 0x11c, 0x12c, 0x13c };
579 #define NCT6106_CRITICAL_PWM_ENABLE_MASK 0x10
580 static const u16 NCT6106_REG_CRITICAL_PWM
[] = { 0x11d, 0x12d, 0x13d };
582 static const u16 NCT6106_REG_FAN_STEP_UP_TIME
[] = { 0x114, 0x124, 0x134 };
583 static const u16 NCT6106_REG_FAN_STEP_DOWN_TIME
[] = { 0x115, 0x125, 0x135 };
584 static const u16 NCT6106_REG_FAN_STOP_OUTPUT
[] = { 0x116, 0x126, 0x136 };
585 static const u16 NCT6106_REG_FAN_START_OUTPUT
[] = { 0x117, 0x127, 0x137 };
586 static const u16 NCT6106_REG_FAN_STOP_TIME
[] = { 0x118, 0x128, 0x138 };
587 static const u16 NCT6106_REG_TOLERANCE_H
[] = { 0x112, 0x122, 0x132 };
589 static const u16 NCT6106_REG_TARGET
[] = { 0x111, 0x121, 0x131 };
591 static const u16 NCT6106_REG_WEIGHT_TEMP_SEL
[] = { 0x168, 0x178, 0x188 };
592 static const u16 NCT6106_REG_WEIGHT_TEMP_STEP
[] = { 0x169, 0x179, 0x189 };
593 static const u16 NCT6106_REG_WEIGHT_TEMP_STEP_TOL
[] = { 0x16a, 0x17a, 0x18a };
594 static const u16 NCT6106_REG_WEIGHT_DUTY_STEP
[] = { 0x16b, 0x17b, 0x17c };
595 static const u16 NCT6106_REG_WEIGHT_TEMP_BASE
[] = { 0x16c, 0x17c, 0x18c };
596 static const u16 NCT6106_REG_WEIGHT_DUTY_BASE
[] = { 0x16d, 0x17d, 0x18d };
598 static const u16 NCT6106_REG_AUTO_TEMP
[] = { 0x160, 0x170, 0x180 };
599 static const u16 NCT6106_REG_AUTO_PWM
[] = { 0x164, 0x174, 0x184 };
601 static const u16 NCT6106_REG_ALARM
[NUM_REG_ALARM
] = {
602 0x77, 0x78, 0x79, 0x7a, 0x7b, 0x7c, 0x7d };
604 static const s8 NCT6106_ALARM_BITS
[] = {
605 0, 1, 2, 3, 4, 5, 7, 8, /* in0.. in7 */
606 9, -1, -1, -1, -1, -1, -1, /* in8..in14 */
608 32, 33, 34, -1, -1, /* fan1..fan5 */
609 -1, -1, -1, /* unused */
610 16, 17, 18, 19, 20, 21, /* temp1..temp6 */
611 48, -1 /* intrusion0, intrusion1 */
614 static const u16 NCT6106_REG_BEEP
[NUM_REG_BEEP
] = {
615 0x3c0, 0x3c1, 0x3c2, 0x3c3, 0x3c4 };
617 static const s8 NCT6106_BEEP_BITS
[] = {
618 0, 1, 2, 3, 4, 5, 7, 8, /* in0.. in7 */
619 9, 10, 11, 12, -1, -1, -1, /* in8..in14 */
620 32, /* global beep enable */
621 24, 25, 26, 27, 28, /* fan1..fan5 */
622 -1, -1, -1, /* unused */
623 16, 17, 18, 19, 20, 21, /* temp1..temp6 */
624 34, -1 /* intrusion0, intrusion1 */
627 static const u16 NCT6106_REG_TEMP_ALTERNATE
[ARRAY_SIZE(nct6776_temp_label
) - 1]
628 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x51, 0x52, 0x54 };
630 static const u16 NCT6106_REG_TEMP_CRIT
[ARRAY_SIZE(nct6776_temp_label
) - 1]
631 = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0x204, 0x205 };
633 static enum pwm_enable
reg_to_pwm_enable(int pwm
, int mode
)
635 if (mode
== 0 && pwm
== 255)
640 static int pwm_enable_to_reg(enum pwm_enable mode
)
651 /* 1 is DC mode, output in ms */
652 static unsigned int step_time_from_reg(u8 reg
, u8 mode
)
654 return mode
? 400 * reg
: 100 * reg
;
657 static u8
step_time_to_reg(unsigned int msec
, u8 mode
)
659 return clamp_val((mode
? (msec
+ 200) / 400 :
660 (msec
+ 50) / 100), 1, 255);
663 static unsigned int fan_from_reg8(u16 reg
, unsigned int divreg
)
665 if (reg
== 0 || reg
== 255)
667 return 1350000U / (reg
<< divreg
);
670 static unsigned int fan_from_reg13(u16 reg
, unsigned int divreg
)
672 if ((reg
& 0xff1f) == 0xff1f)
675 reg
= (reg
& 0x1f) | ((reg
& 0xff00) >> 3);
680 return 1350000U / reg
;
683 static unsigned int fan_from_reg16(u16 reg
, unsigned int divreg
)
685 if (reg
== 0 || reg
== 0xffff)
689 * Even though the registers are 16 bit wide, the fan divisor
692 return 1350000U / (reg
<< divreg
);
695 static u16
fan_to_reg(u32 fan
, unsigned int divreg
)
700 return (1350000U / fan
) >> divreg
;
703 static inline unsigned int
710 * Some of the voltage inputs have internal scaling, the tables below
711 * contain 8 (the ADC LSB in mV) * scaling factor * 100
713 static const u16 scale_in
[15] = {
714 800, 800, 1600, 1600, 800, 800, 800, 1600, 1600, 800, 800, 800, 800,
718 static inline long in_from_reg(u8 reg
, u8 nr
)
720 return DIV_ROUND_CLOSEST(reg
* scale_in
[nr
], 100);
723 static inline u8
in_to_reg(u32 val
, u8 nr
)
725 return clamp_val(DIV_ROUND_CLOSEST(val
* 100, scale_in
[nr
]), 0, 255);
729 * Data structures and manipulation thereof
732 struct nct6775_data
{
733 int addr
; /* IO base of hw monitor block */
734 int sioreg
; /* SIO register address */
738 const struct attribute_group
*groups
[6];
740 u16 reg_temp
[5][NUM_TEMP
]; /* 0=temp, 1=temp_over, 2=temp_hyst,
741 * 3=temp_crit, 4=temp_lcrit
743 u8 temp_src
[NUM_TEMP
];
744 u16 reg_temp_config
[NUM_TEMP
];
745 const char * const *temp_label
;
753 const s8
*ALARM_BITS
;
757 const u16
*REG_IN_MINMAX
[2];
759 const u16
*REG_TARGET
;
761 const u16
*REG_FAN_MODE
;
762 const u16
*REG_FAN_MIN
;
763 const u16
*REG_FAN_PULSES
;
764 const u16
*FAN_PULSE_SHIFT
;
765 const u16
*REG_FAN_TIME
[3];
767 const u16
*REG_TOLERANCE_H
;
769 const u8
*REG_PWM_MODE
;
770 const u8
*PWM_MODE_MASK
;
772 const u16
*REG_PWM
[7]; /* [0]=pwm, [1]=pwm_start, [2]=pwm_floor,
773 * [3]=pwm_max, [4]=pwm_step,
774 * [5]=weight_duty_step, [6]=weight_duty_base
776 const u16
*REG_PWM_READ
;
778 const u16
*REG_CRITICAL_PWM_ENABLE
;
779 u8 CRITICAL_PWM_ENABLE_MASK
;
780 const u16
*REG_CRITICAL_PWM
;
782 const u16
*REG_AUTO_TEMP
;
783 const u16
*REG_AUTO_PWM
;
785 const u16
*REG_CRITICAL_TEMP
;
786 const u16
*REG_CRITICAL_TEMP_TOLERANCE
;
788 const u16
*REG_TEMP_SOURCE
; /* temp register sources */
789 const u16
*REG_TEMP_SEL
;
790 const u16
*REG_WEIGHT_TEMP_SEL
;
791 const u16
*REG_WEIGHT_TEMP
[3]; /* 0=base, 1=tolerance, 2=step */
793 const u16
*REG_TEMP_OFFSET
;
795 const u16
*REG_ALARM
;
798 unsigned int (*fan_from_reg
)(u16 reg
, unsigned int divreg
);
799 unsigned int (*fan_from_reg_min
)(u16 reg
, unsigned int divreg
);
801 struct mutex update_lock
;
802 bool valid
; /* true if following fields are valid */
803 unsigned long last_updated
; /* In jiffies */
805 /* Register values */
806 u8 bank
; /* current register bank */
807 u8 in_num
; /* number of in inputs we have */
808 u8 in
[15][3]; /* [0]=in, [1]=in_max, [2]=in_min */
809 unsigned int rpm
[NUM_FAN
];
810 u16 fan_min
[NUM_FAN
];
811 u8 fan_pulses
[NUM_FAN
];
814 u8 has_fan
; /* some fan inputs can be disabled */
815 u8 has_fan_min
; /* some fans don't have min register */
818 u8 num_temp_alarms
; /* 2, 3, or 6 */
819 u8 num_temp_beeps
; /* 2, 3, or 6 */
820 u8 temp_fixed_num
; /* 3 or 6 */
821 u8 temp_type
[NUM_TEMP_FIXED
];
822 s8 temp_offset
[NUM_TEMP_FIXED
];
823 s16 temp
[5][NUM_TEMP
]; /* 0=temp, 1=temp_over, 2=temp_hyst,
824 * 3=temp_crit, 4=temp_lcrit */
828 u8 pwm_num
; /* number of pwm */
829 u8 pwm_mode
[NUM_FAN
]; /* 1->DC variable voltage,
830 * 0->PWM variable duty cycle
832 enum pwm_enable pwm_enable
[NUM_FAN
];
835 * 2->thermal cruise mode (also called SmartFan I)
836 * 3->fan speed cruise mode
838 * 5->enhanced variable thermal cruise (SmartFan IV)
840 u8 pwm
[7][NUM_FAN
]; /* [0]=pwm, [1]=pwm_start, [2]=pwm_floor,
841 * [3]=pwm_max, [4]=pwm_step,
842 * [5]=weight_duty_step, [6]=weight_duty_base
845 u8 target_temp
[NUM_FAN
];
847 u32 target_speed
[NUM_FAN
];
848 u32 target_speed_tolerance
[NUM_FAN
];
849 u8 speed_tolerance_limit
;
851 u8 temp_tolerance
[2][NUM_FAN
];
854 u8 fan_time
[3][NUM_FAN
]; /* 0 = stop_time, 1 = step_up, 2 = step_down */
856 /* Automatic fan speed control registers */
858 u8 auto_pwm
[NUM_FAN
][7];
859 u8 auto_temp
[NUM_FAN
][7];
860 u8 pwm_temp_sel
[NUM_FAN
];
861 u8 pwm_weight_temp_sel
[NUM_FAN
];
862 u8 weight_temp
[3][NUM_FAN
]; /* 0->temp_step, 1->temp_step_tol,
875 /* Remember extra register values over suspend/resume */
882 struct nct6775_sio_data
{
887 struct sensor_device_template
{
888 struct device_attribute dev_attr
;
896 bool s2
; /* true if both index and nr are used */
899 struct sensor_device_attr_u
{
901 struct sensor_device_attribute a1
;
902 struct sensor_device_attribute_2 a2
;
907 #define __TEMPLATE_ATTR(_template, _mode, _show, _store) { \
908 .attr = {.name = _template, .mode = _mode }, \
913 #define SENSOR_DEVICE_TEMPLATE(_template, _mode, _show, _store, _index) \
914 { .dev_attr = __TEMPLATE_ATTR(_template, _mode, _show, _store), \
918 #define SENSOR_DEVICE_TEMPLATE_2(_template, _mode, _show, _store, \
920 { .dev_attr = __TEMPLATE_ATTR(_template, _mode, _show, _store), \
921 .u.s.index = _index, \
925 #define SENSOR_TEMPLATE(_name, _template, _mode, _show, _store, _index) \
926 static struct sensor_device_template sensor_dev_template_##_name \
927 = SENSOR_DEVICE_TEMPLATE(_template, _mode, _show, _store, \
930 #define SENSOR_TEMPLATE_2(_name, _template, _mode, _show, _store, \
932 static struct sensor_device_template sensor_dev_template_##_name \
933 = SENSOR_DEVICE_TEMPLATE_2(_template, _mode, _show, _store, \
936 struct sensor_template_group
{
937 struct sensor_device_template
**templates
;
938 umode_t (*is_visible
)(struct kobject
*, struct attribute
*, int);
942 static struct attribute_group
*
943 nct6775_create_attr_group(struct device
*dev
, struct sensor_template_group
*tg
,
946 struct attribute_group
*group
;
947 struct sensor_device_attr_u
*su
;
948 struct sensor_device_attribute
*a
;
949 struct sensor_device_attribute_2
*a2
;
950 struct attribute
**attrs
;
951 struct sensor_device_template
**t
;
955 return ERR_PTR(-EINVAL
);
958 for (count
= 0; *t
; t
++, count
++)
962 return ERR_PTR(-EINVAL
);
964 group
= devm_kzalloc(dev
, sizeof(*group
), GFP_KERNEL
);
966 return ERR_PTR(-ENOMEM
);
968 attrs
= devm_kzalloc(dev
, sizeof(*attrs
) * (repeat
* count
+ 1),
971 return ERR_PTR(-ENOMEM
);
973 su
= devm_kzalloc(dev
, sizeof(*su
) * repeat
* count
,
976 return ERR_PTR(-ENOMEM
);
978 group
->attrs
= attrs
;
979 group
->is_visible
= tg
->is_visible
;
981 for (i
= 0; i
< repeat
; i
++) {
984 snprintf(su
->name
, sizeof(su
->name
),
985 (*t
)->dev_attr
.attr
.name
, tg
->base
+ i
);
988 a2
->dev_attr
.attr
.name
= su
->name
;
989 a2
->nr
= (*t
)->u
.s
.nr
+ i
;
990 a2
->index
= (*t
)->u
.s
.index
;
991 a2
->dev_attr
.attr
.mode
=
992 (*t
)->dev_attr
.attr
.mode
;
993 a2
->dev_attr
.show
= (*t
)->dev_attr
.show
;
994 a2
->dev_attr
.store
= (*t
)->dev_attr
.store
;
995 *attrs
= &a2
->dev_attr
.attr
;
998 a
->dev_attr
.attr
.name
= su
->name
;
999 a
->index
= (*t
)->u
.index
+ i
;
1000 a
->dev_attr
.attr
.mode
=
1001 (*t
)->dev_attr
.attr
.mode
;
1002 a
->dev_attr
.show
= (*t
)->dev_attr
.show
;
1003 a
->dev_attr
.store
= (*t
)->dev_attr
.store
;
1004 *attrs
= &a
->dev_attr
.attr
;
1015 static bool is_word_sized(struct nct6775_data
*data
, u16 reg
)
1017 switch (data
->kind
) {
1019 return reg
== 0x20 || reg
== 0x22 || reg
== 0x24 ||
1020 reg
== 0xe0 || reg
== 0xe2 || reg
== 0xe4 ||
1021 reg
== 0x111 || reg
== 0x121 || reg
== 0x131;
1023 return (((reg
& 0xff00) == 0x100 ||
1024 (reg
& 0xff00) == 0x200) &&
1025 ((reg
& 0x00ff) == 0x50 ||
1026 (reg
& 0x00ff) == 0x53 ||
1027 (reg
& 0x00ff) == 0x55)) ||
1028 (reg
& 0xfff0) == 0x630 ||
1029 reg
== 0x640 || reg
== 0x642 ||
1031 ((reg
& 0xfff0) == 0x650 && (reg
& 0x000f) >= 0x06) ||
1032 reg
== 0x73 || reg
== 0x75 || reg
== 0x77;
1034 return (((reg
& 0xff00) == 0x100 ||
1035 (reg
& 0xff00) == 0x200) &&
1036 ((reg
& 0x00ff) == 0x50 ||
1037 (reg
& 0x00ff) == 0x53 ||
1038 (reg
& 0x00ff) == 0x55)) ||
1039 (reg
& 0xfff0) == 0x630 ||
1041 reg
== 0x640 || reg
== 0x642 ||
1042 ((reg
& 0xfff0) == 0x650 && (reg
& 0x000f) >= 0x06) ||
1043 reg
== 0x73 || reg
== 0x75 || reg
== 0x77;
1046 return reg
== 0x150 || reg
== 0x153 || reg
== 0x155 ||
1047 ((reg
& 0xfff0) == 0x4b0 && (reg
& 0x000f) < 0x0b) ||
1049 reg
== 0x63a || reg
== 0x63c || reg
== 0x63e ||
1050 reg
== 0x640 || reg
== 0x642 ||
1051 reg
== 0x73 || reg
== 0x75 || reg
== 0x77 || reg
== 0x79 ||
1058 * On older chips, only registers 0x50-0x5f are banked.
1059 * On more recent chips, all registers are banked.
1060 * Assume that is the case and set the bank number for each access.
1061 * Cache the bank number so it only needs to be set if it changes.
1063 static inline void nct6775_set_bank(struct nct6775_data
*data
, u16 reg
)
1066 if (data
->bank
!= bank
) {
1067 outb_p(NCT6775_REG_BANK
, data
->addr
+ ADDR_REG_OFFSET
);
1068 outb_p(bank
, data
->addr
+ DATA_REG_OFFSET
);
1073 static u16
nct6775_read_value(struct nct6775_data
*data
, u16 reg
)
1075 int res
, word_sized
= is_word_sized(data
, reg
);
1077 nct6775_set_bank(data
, reg
);
1078 outb_p(reg
& 0xff, data
->addr
+ ADDR_REG_OFFSET
);
1079 res
= inb_p(data
->addr
+ DATA_REG_OFFSET
);
1081 outb_p((reg
& 0xff) + 1,
1082 data
->addr
+ ADDR_REG_OFFSET
);
1083 res
= (res
<< 8) + inb_p(data
->addr
+ DATA_REG_OFFSET
);
1088 static int nct6775_write_value(struct nct6775_data
*data
, u16 reg
, u16 value
)
1090 int word_sized
= is_word_sized(data
, reg
);
1092 nct6775_set_bank(data
, reg
);
1093 outb_p(reg
& 0xff, data
->addr
+ ADDR_REG_OFFSET
);
1095 outb_p(value
>> 8, data
->addr
+ DATA_REG_OFFSET
);
1096 outb_p((reg
& 0xff) + 1,
1097 data
->addr
+ ADDR_REG_OFFSET
);
1099 outb_p(value
& 0xff, data
->addr
+ DATA_REG_OFFSET
);
1103 /* We left-align 8-bit temperature values to make the code simpler */
1104 static u16
nct6775_read_temp(struct nct6775_data
*data
, u16 reg
)
1108 res
= nct6775_read_value(data
, reg
);
1109 if (!is_word_sized(data
, reg
))
1115 static int nct6775_write_temp(struct nct6775_data
*data
, u16 reg
, u16 value
)
1117 if (!is_word_sized(data
, reg
))
1119 return nct6775_write_value(data
, reg
, value
);
1122 /* This function assumes that the caller holds data->update_lock */
1123 static void nct6775_write_fan_div(struct nct6775_data
*data
, int nr
)
1129 reg
= (nct6775_read_value(data
, NCT6775_REG_FANDIV1
) & 0x70)
1130 | (data
->fan_div
[0] & 0x7);
1131 nct6775_write_value(data
, NCT6775_REG_FANDIV1
, reg
);
1134 reg
= (nct6775_read_value(data
, NCT6775_REG_FANDIV1
) & 0x7)
1135 | ((data
->fan_div
[1] << 4) & 0x70);
1136 nct6775_write_value(data
, NCT6775_REG_FANDIV1
, reg
);
1139 reg
= (nct6775_read_value(data
, NCT6775_REG_FANDIV2
) & 0x70)
1140 | (data
->fan_div
[2] & 0x7);
1141 nct6775_write_value(data
, NCT6775_REG_FANDIV2
, reg
);
1144 reg
= (nct6775_read_value(data
, NCT6775_REG_FANDIV2
) & 0x7)
1145 | ((data
->fan_div
[3] << 4) & 0x70);
1146 nct6775_write_value(data
, NCT6775_REG_FANDIV2
, reg
);
1151 static void nct6775_write_fan_div_common(struct nct6775_data
*data
, int nr
)
1153 if (data
->kind
== nct6775
)
1154 nct6775_write_fan_div(data
, nr
);
1157 static void nct6775_update_fan_div(struct nct6775_data
*data
)
1161 i
= nct6775_read_value(data
, NCT6775_REG_FANDIV1
);
1162 data
->fan_div
[0] = i
& 0x7;
1163 data
->fan_div
[1] = (i
& 0x70) >> 4;
1164 i
= nct6775_read_value(data
, NCT6775_REG_FANDIV2
);
1165 data
->fan_div
[2] = i
& 0x7;
1166 if (data
->has_fan
& (1 << 3))
1167 data
->fan_div
[3] = (i
& 0x70) >> 4;
1170 static void nct6775_update_fan_div_common(struct nct6775_data
*data
)
1172 if (data
->kind
== nct6775
)
1173 nct6775_update_fan_div(data
);
1176 static void nct6775_init_fan_div(struct nct6775_data
*data
)
1180 nct6775_update_fan_div_common(data
);
1182 * For all fans, start with highest divider value if the divider
1183 * register is not initialized. This ensures that we get a
1184 * reading from the fan count register, even if it is not optimal.
1185 * We'll compute a better divider later on.
1187 for (i
= 0; i
< ARRAY_SIZE(data
->fan_div
); i
++) {
1188 if (!(data
->has_fan
& (1 << i
)))
1190 if (data
->fan_div
[i
] == 0) {
1191 data
->fan_div
[i
] = 7;
1192 nct6775_write_fan_div_common(data
, i
);
1197 static void nct6775_init_fan_common(struct device
*dev
,
1198 struct nct6775_data
*data
)
1203 if (data
->has_fan_div
)
1204 nct6775_init_fan_div(data
);
1207 * If fan_min is not set (0), set it to 0xff to disable it. This
1208 * prevents the unnecessary warning when fanX_min is reported as 0.
1210 for (i
= 0; i
< ARRAY_SIZE(data
->fan_min
); i
++) {
1211 if (data
->has_fan_min
& (1 << i
)) {
1212 reg
= nct6775_read_value(data
, data
->REG_FAN_MIN
[i
]);
1214 nct6775_write_value(data
, data
->REG_FAN_MIN
[i
],
1215 data
->has_fan_div
? 0xff
1221 static void nct6775_select_fan_div(struct device
*dev
,
1222 struct nct6775_data
*data
, int nr
, u16 reg
)
1224 u8 fan_div
= data
->fan_div
[nr
];
1227 if (!data
->has_fan_div
)
1231 * If we failed to measure the fan speed, or the reported value is not
1232 * in the optimal range, and the clock divider can be modified,
1233 * let's try that for next time.
1235 if (reg
== 0x00 && fan_div
< 0x07)
1237 else if (reg
!= 0x00 && reg
< 0x30 && fan_div
> 0)
1240 if (fan_div
!= data
->fan_div
[nr
]) {
1241 dev_dbg(dev
, "Modifying fan%d clock divider from %u to %u\n",
1242 nr
+ 1, div_from_reg(data
->fan_div
[nr
]),
1243 div_from_reg(fan_div
));
1245 /* Preserve min limit if possible */
1246 if (data
->has_fan_min
& (1 << nr
)) {
1247 fan_min
= data
->fan_min
[nr
];
1248 if (fan_div
> data
->fan_div
[nr
]) {
1249 if (fan_min
!= 255 && fan_min
> 1)
1252 if (fan_min
!= 255) {
1258 if (fan_min
!= data
->fan_min
[nr
]) {
1259 data
->fan_min
[nr
] = fan_min
;
1260 nct6775_write_value(data
, data
->REG_FAN_MIN
[nr
],
1264 data
->fan_div
[nr
] = fan_div
;
1265 nct6775_write_fan_div_common(data
, nr
);
1269 static void nct6775_update_pwm(struct device
*dev
)
1271 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1273 int fanmodecfg
, reg
;
1276 for (i
= 0; i
< data
->pwm_num
; i
++) {
1277 if (!(data
->has_pwm
& (1 << i
)))
1280 duty_is_dc
= data
->REG_PWM_MODE
[i
] &&
1281 (nct6775_read_value(data
, data
->REG_PWM_MODE
[i
])
1282 & data
->PWM_MODE_MASK
[i
]);
1283 data
->pwm_mode
[i
] = duty_is_dc
;
1285 fanmodecfg
= nct6775_read_value(data
, data
->REG_FAN_MODE
[i
]);
1286 for (j
= 0; j
< ARRAY_SIZE(data
->REG_PWM
); j
++) {
1287 if (data
->REG_PWM
[j
] && data
->REG_PWM
[j
][i
]) {
1289 = nct6775_read_value(data
,
1290 data
->REG_PWM
[j
][i
]);
1294 data
->pwm_enable
[i
] = reg_to_pwm_enable(data
->pwm
[0][i
],
1295 (fanmodecfg
>> 4) & 7);
1297 if (!data
->temp_tolerance
[0][i
] ||
1298 data
->pwm_enable
[i
] != speed_cruise
)
1299 data
->temp_tolerance
[0][i
] = fanmodecfg
& 0x0f;
1300 if (!data
->target_speed_tolerance
[i
] ||
1301 data
->pwm_enable
[i
] == speed_cruise
) {
1302 u8 t
= fanmodecfg
& 0x0f;
1303 if (data
->REG_TOLERANCE_H
) {
1304 t
|= (nct6775_read_value(data
,
1305 data
->REG_TOLERANCE_H
[i
]) & 0x70) >> 1;
1307 data
->target_speed_tolerance
[i
] = t
;
1310 data
->temp_tolerance
[1][i
] =
1311 nct6775_read_value(data
,
1312 data
->REG_CRITICAL_TEMP_TOLERANCE
[i
]);
1314 reg
= nct6775_read_value(data
, data
->REG_TEMP_SEL
[i
]);
1315 data
->pwm_temp_sel
[i
] = reg
& 0x1f;
1316 /* If fan can stop, report floor as 0 */
1318 data
->pwm
[2][i
] = 0;
1320 if (!data
->REG_WEIGHT_TEMP_SEL
[i
])
1323 reg
= nct6775_read_value(data
, data
->REG_WEIGHT_TEMP_SEL
[i
]);
1324 data
->pwm_weight_temp_sel
[i
] = reg
& 0x1f;
1325 /* If weight is disabled, report weight source as 0 */
1326 if (j
== 1 && !(reg
& 0x80))
1327 data
->pwm_weight_temp_sel
[i
] = 0;
1329 /* Weight temp data */
1330 for (j
= 0; j
< ARRAY_SIZE(data
->weight_temp
); j
++) {
1331 data
->weight_temp
[j
][i
]
1332 = nct6775_read_value(data
,
1333 data
->REG_WEIGHT_TEMP
[j
][i
]);
1338 static void nct6775_update_pwm_limits(struct device
*dev
)
1340 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1345 for (i
= 0; i
< data
->pwm_num
; i
++) {
1346 if (!(data
->has_pwm
& (1 << i
)))
1349 for (j
= 0; j
< ARRAY_SIZE(data
->fan_time
); j
++) {
1350 data
->fan_time
[j
][i
] =
1351 nct6775_read_value(data
, data
->REG_FAN_TIME
[j
][i
]);
1354 reg_t
= nct6775_read_value(data
, data
->REG_TARGET
[i
]);
1355 /* Update only in matching mode or if never updated */
1356 if (!data
->target_temp
[i
] ||
1357 data
->pwm_enable
[i
] == thermal_cruise
)
1358 data
->target_temp
[i
] = reg_t
& data
->target_temp_mask
;
1359 if (!data
->target_speed
[i
] ||
1360 data
->pwm_enable
[i
] == speed_cruise
) {
1361 if (data
->REG_TOLERANCE_H
) {
1362 reg_t
|= (nct6775_read_value(data
,
1363 data
->REG_TOLERANCE_H
[i
]) & 0x0f) << 8;
1365 data
->target_speed
[i
] = reg_t
;
1368 for (j
= 0; j
< data
->auto_pwm_num
; j
++) {
1369 data
->auto_pwm
[i
][j
] =
1370 nct6775_read_value(data
,
1371 NCT6775_AUTO_PWM(data
, i
, j
));
1372 data
->auto_temp
[i
][j
] =
1373 nct6775_read_value(data
,
1374 NCT6775_AUTO_TEMP(data
, i
, j
));
1377 /* critical auto_pwm temperature data */
1378 data
->auto_temp
[i
][data
->auto_pwm_num
] =
1379 nct6775_read_value(data
, data
->REG_CRITICAL_TEMP
[i
]);
1381 switch (data
->kind
) {
1383 reg
= nct6775_read_value(data
,
1384 NCT6775_REG_CRITICAL_ENAB
[i
]);
1385 data
->auto_pwm
[i
][data
->auto_pwm_num
] =
1386 (reg
& 0x02) ? 0xff : 0x00;
1389 data
->auto_pwm
[i
][data
->auto_pwm_num
] = 0xff;
1394 reg
= nct6775_read_value(data
,
1395 data
->REG_CRITICAL_PWM_ENABLE
[i
]);
1396 if (reg
& data
->CRITICAL_PWM_ENABLE_MASK
)
1397 reg
= nct6775_read_value(data
,
1398 data
->REG_CRITICAL_PWM
[i
]);
1401 data
->auto_pwm
[i
][data
->auto_pwm_num
] = reg
;
1407 static struct nct6775_data
*nct6775_update_device(struct device
*dev
)
1409 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1412 mutex_lock(&data
->update_lock
);
1414 if (time_after(jiffies
, data
->last_updated
+ HZ
+ HZ
/ 2)
1416 /* Fan clock dividers */
1417 nct6775_update_fan_div_common(data
);
1419 /* Measured voltages and limits */
1420 for (i
= 0; i
< data
->in_num
; i
++) {
1421 if (!(data
->have_in
& (1 << i
)))
1424 data
->in
[i
][0] = nct6775_read_value(data
,
1426 data
->in
[i
][1] = nct6775_read_value(data
,
1427 data
->REG_IN_MINMAX
[0][i
]);
1428 data
->in
[i
][2] = nct6775_read_value(data
,
1429 data
->REG_IN_MINMAX
[1][i
]);
1432 /* Measured fan speeds and limits */
1433 for (i
= 0; i
< ARRAY_SIZE(data
->rpm
); i
++) {
1436 if (!(data
->has_fan
& (1 << i
)))
1439 reg
= nct6775_read_value(data
, data
->REG_FAN
[i
]);
1440 data
->rpm
[i
] = data
->fan_from_reg(reg
,
1443 if (data
->has_fan_min
& (1 << i
))
1444 data
->fan_min
[i
] = nct6775_read_value(data
,
1445 data
->REG_FAN_MIN
[i
]);
1446 data
->fan_pulses
[i
] =
1447 (nct6775_read_value(data
, data
->REG_FAN_PULSES
[i
])
1448 >> data
->FAN_PULSE_SHIFT
[i
]) & 0x03;
1450 nct6775_select_fan_div(dev
, data
, i
, reg
);
1453 nct6775_update_pwm(dev
);
1454 nct6775_update_pwm_limits(dev
);
1456 /* Measured temperatures and limits */
1457 for (i
= 0; i
< NUM_TEMP
; i
++) {
1458 if (!(data
->have_temp
& (1 << i
)))
1460 for (j
= 0; j
< ARRAY_SIZE(data
->reg_temp
); j
++) {
1461 if (data
->reg_temp
[j
][i
])
1463 = nct6775_read_temp(data
,
1464 data
->reg_temp
[j
][i
]);
1466 if (i
>= NUM_TEMP_FIXED
||
1467 !(data
->have_temp_fixed
& (1 << i
)))
1469 data
->temp_offset
[i
]
1470 = nct6775_read_value(data
, data
->REG_TEMP_OFFSET
[i
]);
1474 for (i
= 0; i
< NUM_REG_ALARM
; i
++) {
1476 if (!data
->REG_ALARM
[i
])
1478 alarm
= nct6775_read_value(data
, data
->REG_ALARM
[i
]);
1479 data
->alarms
|= ((u64
)alarm
) << (i
<< 3);
1483 for (i
= 0; i
< NUM_REG_BEEP
; i
++) {
1485 if (!data
->REG_BEEP
[i
])
1487 beep
= nct6775_read_value(data
, data
->REG_BEEP
[i
]);
1488 data
->beeps
|= ((u64
)beep
) << (i
<< 3);
1491 data
->last_updated
= jiffies
;
1495 mutex_unlock(&data
->update_lock
);
1500 * Sysfs callback functions
1503 show_in_reg(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1505 struct nct6775_data
*data
= nct6775_update_device(dev
);
1506 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
1508 int index
= sattr
->index
;
1509 return sprintf(buf
, "%ld\n", in_from_reg(data
->in
[nr
][index
], nr
));
1513 store_in_reg(struct device
*dev
, struct device_attribute
*attr
, const char *buf
,
1516 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1517 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
1519 int index
= sattr
->index
;
1521 int err
= kstrtoul(buf
, 10, &val
);
1524 mutex_lock(&data
->update_lock
);
1525 data
->in
[nr
][index
] = in_to_reg(val
, nr
);
1526 nct6775_write_value(data
, data
->REG_IN_MINMAX
[index
- 1][nr
],
1527 data
->in
[nr
][index
]);
1528 mutex_unlock(&data
->update_lock
);
1533 show_alarm(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1535 struct nct6775_data
*data
= nct6775_update_device(dev
);
1536 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1537 int nr
= data
->ALARM_BITS
[sattr
->index
];
1538 return sprintf(buf
, "%u\n",
1539 (unsigned int)((data
->alarms
>> nr
) & 0x01));
1542 static int find_temp_source(struct nct6775_data
*data
, int index
, int count
)
1544 int source
= data
->temp_src
[index
];
1547 for (nr
= 0; nr
< count
; nr
++) {
1550 src
= nct6775_read_value(data
,
1551 data
->REG_TEMP_SOURCE
[nr
]) & 0x1f;
1559 show_temp_alarm(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1561 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1562 struct nct6775_data
*data
= nct6775_update_device(dev
);
1563 unsigned int alarm
= 0;
1567 * For temperatures, there is no fixed mapping from registers to alarm
1568 * bits. Alarm bits are determined by the temperature source mapping.
1570 nr
= find_temp_source(data
, sattr
->index
, data
->num_temp_alarms
);
1572 int bit
= data
->ALARM_BITS
[nr
+ TEMP_ALARM_BASE
];
1573 alarm
= (data
->alarms
>> bit
) & 0x01;
1575 return sprintf(buf
, "%u\n", alarm
);
1579 show_beep(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1581 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1582 struct nct6775_data
*data
= nct6775_update_device(dev
);
1583 int nr
= data
->BEEP_BITS
[sattr
->index
];
1585 return sprintf(buf
, "%u\n",
1586 (unsigned int)((data
->beeps
>> nr
) & 0x01));
1590 store_beep(struct device
*dev
, struct device_attribute
*attr
, const char *buf
,
1593 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
1594 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1595 int nr
= data
->BEEP_BITS
[sattr
->index
];
1596 int regindex
= nr
>> 3;
1599 int err
= kstrtoul(buf
, 10, &val
);
1605 mutex_lock(&data
->update_lock
);
1607 data
->beeps
|= (1ULL << nr
);
1609 data
->beeps
&= ~(1ULL << nr
);
1610 nct6775_write_value(data
, data
->REG_BEEP
[regindex
],
1611 (data
->beeps
>> (regindex
<< 3)) & 0xff);
1612 mutex_unlock(&data
->update_lock
);
1617 show_temp_beep(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1619 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1620 struct nct6775_data
*data
= nct6775_update_device(dev
);
1621 unsigned int beep
= 0;
1625 * For temperatures, there is no fixed mapping from registers to beep
1626 * enable bits. Beep enable bits are determined by the temperature
1629 nr
= find_temp_source(data
, sattr
->index
, data
->num_temp_beeps
);
1631 int bit
= data
->BEEP_BITS
[nr
+ TEMP_ALARM_BASE
];
1632 beep
= (data
->beeps
>> bit
) & 0x01;
1634 return sprintf(buf
, "%u\n", beep
);
1638 store_temp_beep(struct device
*dev
, struct device_attribute
*attr
,
1639 const char *buf
, size_t count
)
1641 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
1642 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1643 int nr
, bit
, regindex
;
1646 int err
= kstrtoul(buf
, 10, &val
);
1652 nr
= find_temp_source(data
, sattr
->index
, data
->num_temp_beeps
);
1656 bit
= data
->BEEP_BITS
[nr
+ TEMP_ALARM_BASE
];
1657 regindex
= bit
>> 3;
1659 mutex_lock(&data
->update_lock
);
1661 data
->beeps
|= (1ULL << bit
);
1663 data
->beeps
&= ~(1ULL << bit
);
1664 nct6775_write_value(data
, data
->REG_BEEP
[regindex
],
1665 (data
->beeps
>> (regindex
<< 3)) & 0xff);
1666 mutex_unlock(&data
->update_lock
);
1671 static umode_t
nct6775_in_is_visible(struct kobject
*kobj
,
1672 struct attribute
*attr
, int index
)
1674 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
1675 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1676 int in
= index
/ 5; /* voltage index */
1678 if (!(data
->have_in
& (1 << in
)))
1684 SENSOR_TEMPLATE_2(in_input
, "in%d_input", S_IRUGO
, show_in_reg
, NULL
, 0, 0);
1685 SENSOR_TEMPLATE(in_alarm
, "in%d_alarm", S_IRUGO
, show_alarm
, NULL
, 0);
1686 SENSOR_TEMPLATE(in_beep
, "in%d_beep", S_IWUSR
| S_IRUGO
, show_beep
, store_beep
,
1688 SENSOR_TEMPLATE_2(in_min
, "in%d_min", S_IWUSR
| S_IRUGO
, show_in_reg
,
1689 store_in_reg
, 0, 1);
1690 SENSOR_TEMPLATE_2(in_max
, "in%d_max", S_IWUSR
| S_IRUGO
, show_in_reg
,
1691 store_in_reg
, 0, 2);
1694 * nct6775_in_is_visible uses the index into the following array
1695 * to determine if attributes should be created or not.
1696 * Any change in order or content must be matched.
1698 static struct sensor_device_template
*nct6775_attributes_in_template
[] = {
1699 &sensor_dev_template_in_input
,
1700 &sensor_dev_template_in_alarm
,
1701 &sensor_dev_template_in_beep
,
1702 &sensor_dev_template_in_min
,
1703 &sensor_dev_template_in_max
,
1707 static struct sensor_template_group nct6775_in_template_group
= {
1708 .templates
= nct6775_attributes_in_template
,
1709 .is_visible
= nct6775_in_is_visible
,
1713 show_fan(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1715 struct nct6775_data
*data
= nct6775_update_device(dev
);
1716 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1717 int nr
= sattr
->index
;
1718 return sprintf(buf
, "%d\n", data
->rpm
[nr
]);
1722 show_fan_min(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1724 struct nct6775_data
*data
= nct6775_update_device(dev
);
1725 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1726 int nr
= sattr
->index
;
1727 return sprintf(buf
, "%d\n",
1728 data
->fan_from_reg_min(data
->fan_min
[nr
],
1729 data
->fan_div
[nr
]));
1733 show_fan_div(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1735 struct nct6775_data
*data
= nct6775_update_device(dev
);
1736 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1737 int nr
= sattr
->index
;
1738 return sprintf(buf
, "%u\n", div_from_reg(data
->fan_div
[nr
]));
1742 store_fan_min(struct device
*dev
, struct device_attribute
*attr
,
1743 const char *buf
, size_t count
)
1745 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1746 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1747 int nr
= sattr
->index
;
1753 err
= kstrtoul(buf
, 10, &val
);
1757 mutex_lock(&data
->update_lock
);
1758 if (!data
->has_fan_div
) {
1759 /* NCT6776F or NCT6779D; we know this is a 13 bit register */
1765 val
= 1350000U / val
;
1766 val
= (val
& 0x1f) | ((val
<< 3) & 0xff00);
1768 data
->fan_min
[nr
] = val
;
1769 goto write_min
; /* Leave fan divider alone */
1772 /* No min limit, alarm disabled */
1773 data
->fan_min
[nr
] = 255;
1774 new_div
= data
->fan_div
[nr
]; /* No change */
1775 dev_info(dev
, "fan%u low limit and alarm disabled\n", nr
+ 1);
1778 reg
= 1350000U / val
;
1779 if (reg
>= 128 * 255) {
1781 * Speed below this value cannot possibly be represented,
1782 * even with the highest divider (128)
1784 data
->fan_min
[nr
] = 254;
1785 new_div
= 7; /* 128 == (1 << 7) */
1787 "fan%u low limit %lu below minimum %u, set to minimum\n",
1788 nr
+ 1, val
, data
->fan_from_reg_min(254, 7));
1791 * Speed above this value cannot possibly be represented,
1792 * even with the lowest divider (1)
1794 data
->fan_min
[nr
] = 1;
1795 new_div
= 0; /* 1 == (1 << 0) */
1797 "fan%u low limit %lu above maximum %u, set to maximum\n",
1798 nr
+ 1, val
, data
->fan_from_reg_min(1, 0));
1801 * Automatically pick the best divider, i.e. the one such
1802 * that the min limit will correspond to a register value
1803 * in the 96..192 range
1806 while (reg
> 192 && new_div
< 7) {
1810 data
->fan_min
[nr
] = reg
;
1815 * Write both the fan clock divider (if it changed) and the new
1816 * fan min (unconditionally)
1818 if (new_div
!= data
->fan_div
[nr
]) {
1819 dev_dbg(dev
, "fan%u clock divider changed from %u to %u\n",
1820 nr
+ 1, div_from_reg(data
->fan_div
[nr
]),
1821 div_from_reg(new_div
));
1822 data
->fan_div
[nr
] = new_div
;
1823 nct6775_write_fan_div_common(data
, nr
);
1824 /* Give the chip time to sample a new speed value */
1825 data
->last_updated
= jiffies
;
1829 nct6775_write_value(data
, data
->REG_FAN_MIN
[nr
], data
->fan_min
[nr
]);
1830 mutex_unlock(&data
->update_lock
);
1836 show_fan_pulses(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1838 struct nct6775_data
*data
= nct6775_update_device(dev
);
1839 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1840 int p
= data
->fan_pulses
[sattr
->index
];
1842 return sprintf(buf
, "%d\n", p
? : 4);
1846 store_fan_pulses(struct device
*dev
, struct device_attribute
*attr
,
1847 const char *buf
, size_t count
)
1849 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1850 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1851 int nr
= sattr
->index
;
1856 err
= kstrtoul(buf
, 10, &val
);
1863 mutex_lock(&data
->update_lock
);
1864 data
->fan_pulses
[nr
] = val
& 3;
1865 reg
= nct6775_read_value(data
, data
->REG_FAN_PULSES
[nr
]);
1866 reg
&= ~(0x03 << data
->FAN_PULSE_SHIFT
[nr
]);
1867 reg
|= (val
& 3) << data
->FAN_PULSE_SHIFT
[nr
];
1868 nct6775_write_value(data
, data
->REG_FAN_PULSES
[nr
], reg
);
1869 mutex_unlock(&data
->update_lock
);
1874 static umode_t
nct6775_fan_is_visible(struct kobject
*kobj
,
1875 struct attribute
*attr
, int index
)
1877 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
1878 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1879 int fan
= index
/ 6; /* fan index */
1880 int nr
= index
% 6; /* attribute index */
1882 if (!(data
->has_fan
& (1 << fan
)))
1885 if (nr
== 1 && data
->ALARM_BITS
[FAN_ALARM_BASE
+ fan
] == -1)
1887 if (nr
== 2 && data
->BEEP_BITS
[FAN_ALARM_BASE
+ fan
] == -1)
1889 if (nr
== 4 && !(data
->has_fan_min
& (1 << fan
)))
1891 if (nr
== 5 && data
->kind
!= nct6775
)
1897 SENSOR_TEMPLATE(fan_input
, "fan%d_input", S_IRUGO
, show_fan
, NULL
, 0);
1898 SENSOR_TEMPLATE(fan_alarm
, "fan%d_alarm", S_IRUGO
, show_alarm
, NULL
,
1900 SENSOR_TEMPLATE(fan_beep
, "fan%d_beep", S_IWUSR
| S_IRUGO
, show_beep
,
1901 store_beep
, FAN_ALARM_BASE
);
1902 SENSOR_TEMPLATE(fan_pulses
, "fan%d_pulses", S_IWUSR
| S_IRUGO
, show_fan_pulses
,
1903 store_fan_pulses
, 0);
1904 SENSOR_TEMPLATE(fan_min
, "fan%d_min", S_IWUSR
| S_IRUGO
, show_fan_min
,
1906 SENSOR_TEMPLATE(fan_div
, "fan%d_div", S_IRUGO
, show_fan_div
, NULL
, 0);
1909 * nct6775_fan_is_visible uses the index into the following array
1910 * to determine if attributes should be created or not.
1911 * Any change in order or content must be matched.
1913 static struct sensor_device_template
*nct6775_attributes_fan_template
[] = {
1914 &sensor_dev_template_fan_input
,
1915 &sensor_dev_template_fan_alarm
, /* 1 */
1916 &sensor_dev_template_fan_beep
, /* 2 */
1917 &sensor_dev_template_fan_pulses
,
1918 &sensor_dev_template_fan_min
, /* 4 */
1919 &sensor_dev_template_fan_div
, /* 5 */
1923 static struct sensor_template_group nct6775_fan_template_group
= {
1924 .templates
= nct6775_attributes_fan_template
,
1925 .is_visible
= nct6775_fan_is_visible
,
1930 show_temp_label(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1932 struct nct6775_data
*data
= nct6775_update_device(dev
);
1933 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1934 int nr
= sattr
->index
;
1935 return sprintf(buf
, "%s\n", data
->temp_label
[data
->temp_src
[nr
]]);
1939 show_temp(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1941 struct nct6775_data
*data
= nct6775_update_device(dev
);
1942 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
1944 int index
= sattr
->index
;
1946 return sprintf(buf
, "%d\n", LM75_TEMP_FROM_REG(data
->temp
[index
][nr
]));
1950 store_temp(struct device
*dev
, struct device_attribute
*attr
, const char *buf
,
1953 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1954 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
1956 int index
= sattr
->index
;
1960 err
= kstrtol(buf
, 10, &val
);
1964 mutex_lock(&data
->update_lock
);
1965 data
->temp
[index
][nr
] = LM75_TEMP_TO_REG(val
);
1966 nct6775_write_temp(data
, data
->reg_temp
[index
][nr
],
1967 data
->temp
[index
][nr
]);
1968 mutex_unlock(&data
->update_lock
);
1973 show_temp_offset(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
1975 struct nct6775_data
*data
= nct6775_update_device(dev
);
1976 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1978 return sprintf(buf
, "%d\n", data
->temp_offset
[sattr
->index
] * 1000);
1982 store_temp_offset(struct device
*dev
, struct device_attribute
*attr
,
1983 const char *buf
, size_t count
)
1985 struct nct6775_data
*data
= dev_get_drvdata(dev
);
1986 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
1987 int nr
= sattr
->index
;
1991 err
= kstrtol(buf
, 10, &val
);
1995 val
= clamp_val(DIV_ROUND_CLOSEST(val
, 1000), -128, 127);
1997 mutex_lock(&data
->update_lock
);
1998 data
->temp_offset
[nr
] = val
;
1999 nct6775_write_value(data
, data
->REG_TEMP_OFFSET
[nr
], val
);
2000 mutex_unlock(&data
->update_lock
);
2006 show_temp_type(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2008 struct nct6775_data
*data
= nct6775_update_device(dev
);
2009 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2010 int nr
= sattr
->index
;
2011 return sprintf(buf
, "%d\n", (int)data
->temp_type
[nr
]);
2015 store_temp_type(struct device
*dev
, struct device_attribute
*attr
,
2016 const char *buf
, size_t count
)
2018 struct nct6775_data
*data
= nct6775_update_device(dev
);
2019 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2020 int nr
= sattr
->index
;
2023 u8 vbat
, diode
, vbit
, dbit
;
2025 err
= kstrtoul(buf
, 10, &val
);
2029 if (val
!= 1 && val
!= 3 && val
!= 4)
2032 mutex_lock(&data
->update_lock
);
2034 data
->temp_type
[nr
] = val
;
2036 dbit
= data
->DIODE_MASK
<< nr
;
2037 vbat
= nct6775_read_value(data
, data
->REG_VBAT
) & ~vbit
;
2038 diode
= nct6775_read_value(data
, data
->REG_DIODE
) & ~dbit
;
2040 case 1: /* CPU diode (diode, current mode) */
2044 case 3: /* diode, voltage mode */
2047 case 4: /* thermistor */
2050 nct6775_write_value(data
, data
->REG_VBAT
, vbat
);
2051 nct6775_write_value(data
, data
->REG_DIODE
, diode
);
2053 mutex_unlock(&data
->update_lock
);
2057 static umode_t
nct6775_temp_is_visible(struct kobject
*kobj
,
2058 struct attribute
*attr
, int index
)
2060 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
2061 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2062 int temp
= index
/ 10; /* temp index */
2063 int nr
= index
% 10; /* attribute index */
2065 if (!(data
->have_temp
& (1 << temp
)))
2068 if (nr
== 2 && find_temp_source(data
, temp
, data
->num_temp_alarms
) < 0)
2069 return 0; /* alarm */
2071 if (nr
== 3 && find_temp_source(data
, temp
, data
->num_temp_beeps
) < 0)
2072 return 0; /* beep */
2074 if (nr
== 4 && !data
->reg_temp
[1][temp
]) /* max */
2077 if (nr
== 5 && !data
->reg_temp
[2][temp
]) /* max_hyst */
2080 if (nr
== 6 && !data
->reg_temp
[3][temp
]) /* crit */
2083 if (nr
== 7 && !data
->reg_temp
[4][temp
]) /* lcrit */
2086 /* offset and type only apply to fixed sensors */
2087 if (nr
> 7 && !(data
->have_temp_fixed
& (1 << temp
)))
2093 SENSOR_TEMPLATE_2(temp_input
, "temp%d_input", S_IRUGO
, show_temp
, NULL
, 0, 0);
2094 SENSOR_TEMPLATE(temp_label
, "temp%d_label", S_IRUGO
, show_temp_label
, NULL
, 0);
2095 SENSOR_TEMPLATE_2(temp_max
, "temp%d_max", S_IRUGO
| S_IWUSR
, show_temp
,
2097 SENSOR_TEMPLATE_2(temp_max_hyst
, "temp%d_max_hyst", S_IRUGO
| S_IWUSR
,
2098 show_temp
, store_temp
, 0, 2);
2099 SENSOR_TEMPLATE_2(temp_crit
, "temp%d_crit", S_IRUGO
| S_IWUSR
, show_temp
,
2101 SENSOR_TEMPLATE_2(temp_lcrit
, "temp%d_lcrit", S_IRUGO
| S_IWUSR
, show_temp
,
2103 SENSOR_TEMPLATE(temp_offset
, "temp%d_offset", S_IRUGO
| S_IWUSR
,
2104 show_temp_offset
, store_temp_offset
, 0);
2105 SENSOR_TEMPLATE(temp_type
, "temp%d_type", S_IRUGO
| S_IWUSR
, show_temp_type
,
2106 store_temp_type
, 0);
2107 SENSOR_TEMPLATE(temp_alarm
, "temp%d_alarm", S_IRUGO
, show_temp_alarm
, NULL
, 0);
2108 SENSOR_TEMPLATE(temp_beep
, "temp%d_beep", S_IRUGO
| S_IWUSR
, show_temp_beep
,
2109 store_temp_beep
, 0);
2112 * nct6775_temp_is_visible uses the index into the following array
2113 * to determine if attributes should be created or not.
2114 * Any change in order or content must be matched.
2116 static struct sensor_device_template
*nct6775_attributes_temp_template
[] = {
2117 &sensor_dev_template_temp_input
,
2118 &sensor_dev_template_temp_label
,
2119 &sensor_dev_template_temp_alarm
, /* 2 */
2120 &sensor_dev_template_temp_beep
, /* 3 */
2121 &sensor_dev_template_temp_max
, /* 4 */
2122 &sensor_dev_template_temp_max_hyst
, /* 5 */
2123 &sensor_dev_template_temp_crit
, /* 6 */
2124 &sensor_dev_template_temp_lcrit
, /* 7 */
2125 &sensor_dev_template_temp_offset
, /* 8 */
2126 &sensor_dev_template_temp_type
, /* 9 */
2130 static struct sensor_template_group nct6775_temp_template_group
= {
2131 .templates
= nct6775_attributes_temp_template
,
2132 .is_visible
= nct6775_temp_is_visible
,
2137 show_pwm_mode(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2139 struct nct6775_data
*data
= nct6775_update_device(dev
);
2140 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2142 return sprintf(buf
, "%d\n", !data
->pwm_mode
[sattr
->index
]);
2146 store_pwm_mode(struct device
*dev
, struct device_attribute
*attr
,
2147 const char *buf
, size_t count
)
2149 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2150 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2151 int nr
= sattr
->index
;
2156 err
= kstrtoul(buf
, 10, &val
);
2163 /* Setting DC mode is not supported for all chips/channels */
2164 if (data
->REG_PWM_MODE
[nr
] == 0) {
2170 mutex_lock(&data
->update_lock
);
2171 data
->pwm_mode
[nr
] = val
;
2172 reg
= nct6775_read_value(data
, data
->REG_PWM_MODE
[nr
]);
2173 reg
&= ~data
->PWM_MODE_MASK
[nr
];
2175 reg
|= data
->PWM_MODE_MASK
[nr
];
2176 nct6775_write_value(data
, data
->REG_PWM_MODE
[nr
], reg
);
2177 mutex_unlock(&data
->update_lock
);
2182 show_pwm(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2184 struct nct6775_data
*data
= nct6775_update_device(dev
);
2185 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2187 int index
= sattr
->index
;
2191 * For automatic fan control modes, show current pwm readings.
2192 * Otherwise, show the configured value.
2194 if (index
== 0 && data
->pwm_enable
[nr
] > manual
)
2195 pwm
= nct6775_read_value(data
, data
->REG_PWM_READ
[nr
]);
2197 pwm
= data
->pwm
[index
][nr
];
2199 return sprintf(buf
, "%d\n", pwm
);
2203 store_pwm(struct device
*dev
, struct device_attribute
*attr
, const char *buf
,
2206 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2207 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2209 int index
= sattr
->index
;
2211 int minval
[7] = { 0, 1, 1, data
->pwm
[2][nr
], 0, 0, 0 };
2213 = { 255, 255, data
->pwm
[3][nr
] ? : 255, 255, 255, 255, 255 };
2217 err
= kstrtoul(buf
, 10, &val
);
2220 val
= clamp_val(val
, minval
[index
], maxval
[index
]);
2222 mutex_lock(&data
->update_lock
);
2223 data
->pwm
[index
][nr
] = val
;
2224 nct6775_write_value(data
, data
->REG_PWM
[index
][nr
], val
);
2225 if (index
== 2) { /* floor: disable if val == 0 */
2226 reg
= nct6775_read_value(data
, data
->REG_TEMP_SEL
[nr
]);
2230 nct6775_write_value(data
, data
->REG_TEMP_SEL
[nr
], reg
);
2232 mutex_unlock(&data
->update_lock
);
2236 /* Returns 0 if OK, -EINVAL otherwise */
2237 static int check_trip_points(struct nct6775_data
*data
, int nr
)
2241 for (i
= 0; i
< data
->auto_pwm_num
- 1; i
++) {
2242 if (data
->auto_temp
[nr
][i
] > data
->auto_temp
[nr
][i
+ 1])
2245 for (i
= 0; i
< data
->auto_pwm_num
- 1; i
++) {
2246 if (data
->auto_pwm
[nr
][i
] > data
->auto_pwm
[nr
][i
+ 1])
2249 /* validate critical temperature and pwm if enabled (pwm > 0) */
2250 if (data
->auto_pwm
[nr
][data
->auto_pwm_num
]) {
2251 if (data
->auto_temp
[nr
][data
->auto_pwm_num
- 1] >
2252 data
->auto_temp
[nr
][data
->auto_pwm_num
] ||
2253 data
->auto_pwm
[nr
][data
->auto_pwm_num
- 1] >
2254 data
->auto_pwm
[nr
][data
->auto_pwm_num
])
2260 static void pwm_update_registers(struct nct6775_data
*data
, int nr
)
2264 switch (data
->pwm_enable
[nr
]) {
2269 reg
= nct6775_read_value(data
, data
->REG_FAN_MODE
[nr
]);
2270 reg
= (reg
& ~data
->tolerance_mask
) |
2271 (data
->target_speed_tolerance
[nr
] & data
->tolerance_mask
);
2272 nct6775_write_value(data
, data
->REG_FAN_MODE
[nr
], reg
);
2273 nct6775_write_value(data
, data
->REG_TARGET
[nr
],
2274 data
->target_speed
[nr
] & 0xff);
2275 if (data
->REG_TOLERANCE_H
) {
2276 reg
= (data
->target_speed
[nr
] >> 8) & 0x0f;
2277 reg
|= (data
->target_speed_tolerance
[nr
] & 0x38) << 1;
2278 nct6775_write_value(data
,
2279 data
->REG_TOLERANCE_H
[nr
],
2283 case thermal_cruise
:
2284 nct6775_write_value(data
, data
->REG_TARGET
[nr
],
2285 data
->target_temp
[nr
]);
2288 reg
= nct6775_read_value(data
, data
->REG_FAN_MODE
[nr
]);
2289 reg
= (reg
& ~data
->tolerance_mask
) |
2290 data
->temp_tolerance
[0][nr
];
2291 nct6775_write_value(data
, data
->REG_FAN_MODE
[nr
], reg
);
2297 show_pwm_enable(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2299 struct nct6775_data
*data
= nct6775_update_device(dev
);
2300 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2302 return sprintf(buf
, "%d\n", data
->pwm_enable
[sattr
->index
]);
2306 store_pwm_enable(struct device
*dev
, struct device_attribute
*attr
,
2307 const char *buf
, size_t count
)
2309 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2310 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2311 int nr
= sattr
->index
;
2316 err
= kstrtoul(buf
, 10, &val
);
2323 if (val
== sf3
&& data
->kind
!= nct6775
)
2326 if (val
== sf4
&& check_trip_points(data
, nr
)) {
2327 dev_err(dev
, "Inconsistent trip points, not switching to SmartFan IV mode\n");
2328 dev_err(dev
, "Adjust trip points and try again\n");
2332 mutex_lock(&data
->update_lock
);
2333 data
->pwm_enable
[nr
] = val
;
2336 * turn off pwm control: select manual mode, set pwm to maximum
2338 data
->pwm
[0][nr
] = 255;
2339 nct6775_write_value(data
, data
->REG_PWM
[0][nr
], 255);
2341 pwm_update_registers(data
, nr
);
2342 reg
= nct6775_read_value(data
, data
->REG_FAN_MODE
[nr
]);
2344 reg
|= pwm_enable_to_reg(val
) << 4;
2345 nct6775_write_value(data
, data
->REG_FAN_MODE
[nr
], reg
);
2346 mutex_unlock(&data
->update_lock
);
2351 show_pwm_temp_sel_common(struct nct6775_data
*data
, char *buf
, int src
)
2355 for (i
= 0; i
< NUM_TEMP
; i
++) {
2356 if (!(data
->have_temp
& (1 << i
)))
2358 if (src
== data
->temp_src
[i
]) {
2364 return sprintf(buf
, "%d\n", sel
);
2368 show_pwm_temp_sel(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2370 struct nct6775_data
*data
= nct6775_update_device(dev
);
2371 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2372 int index
= sattr
->index
;
2374 return show_pwm_temp_sel_common(data
, buf
, data
->pwm_temp_sel
[index
]);
2378 store_pwm_temp_sel(struct device
*dev
, struct device_attribute
*attr
,
2379 const char *buf
, size_t count
)
2381 struct nct6775_data
*data
= nct6775_update_device(dev
);
2382 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2383 int nr
= sattr
->index
;
2387 err
= kstrtoul(buf
, 10, &val
);
2390 if (val
== 0 || val
> NUM_TEMP
)
2392 if (!(data
->have_temp
& (1 << (val
- 1))) || !data
->temp_src
[val
- 1])
2395 mutex_lock(&data
->update_lock
);
2396 src
= data
->temp_src
[val
- 1];
2397 data
->pwm_temp_sel
[nr
] = src
;
2398 reg
= nct6775_read_value(data
, data
->REG_TEMP_SEL
[nr
]);
2401 nct6775_write_value(data
, data
->REG_TEMP_SEL
[nr
], reg
);
2402 mutex_unlock(&data
->update_lock
);
2408 show_pwm_weight_temp_sel(struct device
*dev
, struct device_attribute
*attr
,
2411 struct nct6775_data
*data
= nct6775_update_device(dev
);
2412 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2413 int index
= sattr
->index
;
2415 return show_pwm_temp_sel_common(data
, buf
,
2416 data
->pwm_weight_temp_sel
[index
]);
2420 store_pwm_weight_temp_sel(struct device
*dev
, struct device_attribute
*attr
,
2421 const char *buf
, size_t count
)
2423 struct nct6775_data
*data
= nct6775_update_device(dev
);
2424 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2425 int nr
= sattr
->index
;
2429 err
= kstrtoul(buf
, 10, &val
);
2434 if (val
&& (!(data
->have_temp
& (1 << (val
- 1))) ||
2435 !data
->temp_src
[val
- 1]))
2438 mutex_lock(&data
->update_lock
);
2440 src
= data
->temp_src
[val
- 1];
2441 data
->pwm_weight_temp_sel
[nr
] = src
;
2442 reg
= nct6775_read_value(data
, data
->REG_WEIGHT_TEMP_SEL
[nr
]);
2444 reg
|= (src
| 0x80);
2445 nct6775_write_value(data
, data
->REG_WEIGHT_TEMP_SEL
[nr
], reg
);
2447 data
->pwm_weight_temp_sel
[nr
] = 0;
2448 reg
= nct6775_read_value(data
, data
->REG_WEIGHT_TEMP_SEL
[nr
]);
2450 nct6775_write_value(data
, data
->REG_WEIGHT_TEMP_SEL
[nr
], reg
);
2452 mutex_unlock(&data
->update_lock
);
2458 show_target_temp(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2460 struct nct6775_data
*data
= nct6775_update_device(dev
);
2461 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2463 return sprintf(buf
, "%d\n", data
->target_temp
[sattr
->index
] * 1000);
2467 store_target_temp(struct device
*dev
, struct device_attribute
*attr
,
2468 const char *buf
, size_t count
)
2470 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2471 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2472 int nr
= sattr
->index
;
2476 err
= kstrtoul(buf
, 10, &val
);
2480 val
= clamp_val(DIV_ROUND_CLOSEST(val
, 1000), 0,
2481 data
->target_temp_mask
);
2483 mutex_lock(&data
->update_lock
);
2484 data
->target_temp
[nr
] = val
;
2485 pwm_update_registers(data
, nr
);
2486 mutex_unlock(&data
->update_lock
);
2491 show_target_speed(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2493 struct nct6775_data
*data
= nct6775_update_device(dev
);
2494 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2495 int nr
= sattr
->index
;
2497 return sprintf(buf
, "%d\n",
2498 fan_from_reg16(data
->target_speed
[nr
],
2499 data
->fan_div
[nr
]));
2503 store_target_speed(struct device
*dev
, struct device_attribute
*attr
,
2504 const char *buf
, size_t count
)
2506 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2507 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2508 int nr
= sattr
->index
;
2513 err
= kstrtoul(buf
, 10, &val
);
2517 val
= clamp_val(val
, 0, 1350000U);
2518 speed
= fan_to_reg(val
, data
->fan_div
[nr
]);
2520 mutex_lock(&data
->update_lock
);
2521 data
->target_speed
[nr
] = speed
;
2522 pwm_update_registers(data
, nr
);
2523 mutex_unlock(&data
->update_lock
);
2528 show_temp_tolerance(struct device
*dev
, struct device_attribute
*attr
,
2531 struct nct6775_data
*data
= nct6775_update_device(dev
);
2532 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2534 int index
= sattr
->index
;
2536 return sprintf(buf
, "%d\n", data
->temp_tolerance
[index
][nr
] * 1000);
2540 store_temp_tolerance(struct device
*dev
, struct device_attribute
*attr
,
2541 const char *buf
, size_t count
)
2543 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2544 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2546 int index
= sattr
->index
;
2550 err
= kstrtoul(buf
, 10, &val
);
2554 /* Limit tolerance as needed */
2555 val
= clamp_val(DIV_ROUND_CLOSEST(val
, 1000), 0, data
->tolerance_mask
);
2557 mutex_lock(&data
->update_lock
);
2558 data
->temp_tolerance
[index
][nr
] = val
;
2560 pwm_update_registers(data
, nr
);
2562 nct6775_write_value(data
,
2563 data
->REG_CRITICAL_TEMP_TOLERANCE
[nr
],
2565 mutex_unlock(&data
->update_lock
);
2570 * Fan speed tolerance is a tricky beast, since the associated register is
2571 * a tick counter, but the value is reported and configured as rpm.
2572 * Compute resulting low and high rpm values and report the difference.
2575 show_speed_tolerance(struct device
*dev
, struct device_attribute
*attr
,
2578 struct nct6775_data
*data
= nct6775_update_device(dev
);
2579 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2580 int nr
= sattr
->index
;
2581 int low
= data
->target_speed
[nr
] - data
->target_speed_tolerance
[nr
];
2582 int high
= data
->target_speed
[nr
] + data
->target_speed_tolerance
[nr
];
2592 tolerance
= (fan_from_reg16(low
, data
->fan_div
[nr
])
2593 - fan_from_reg16(high
, data
->fan_div
[nr
])) / 2;
2595 return sprintf(buf
, "%d\n", tolerance
);
2599 store_speed_tolerance(struct device
*dev
, struct device_attribute
*attr
,
2600 const char *buf
, size_t count
)
2602 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2603 struct sensor_device_attribute
*sattr
= to_sensor_dev_attr(attr
);
2604 int nr
= sattr
->index
;
2609 err
= kstrtoul(buf
, 10, &val
);
2613 high
= fan_from_reg16(data
->target_speed
[nr
],
2614 data
->fan_div
[nr
]) + val
;
2615 low
= fan_from_reg16(data
->target_speed
[nr
],
2616 data
->fan_div
[nr
]) - val
;
2622 val
= (fan_to_reg(low
, data
->fan_div
[nr
]) -
2623 fan_to_reg(high
, data
->fan_div
[nr
])) / 2;
2625 /* Limit tolerance as needed */
2626 val
= clamp_val(val
, 0, data
->speed_tolerance_limit
);
2628 mutex_lock(&data
->update_lock
);
2629 data
->target_speed_tolerance
[nr
] = val
;
2630 pwm_update_registers(data
, nr
);
2631 mutex_unlock(&data
->update_lock
);
2635 SENSOR_TEMPLATE_2(pwm
, "pwm%d", S_IWUSR
| S_IRUGO
, show_pwm
, store_pwm
, 0, 0);
2636 SENSOR_TEMPLATE(pwm_mode
, "pwm%d_mode", S_IWUSR
| S_IRUGO
, show_pwm_mode
,
2638 SENSOR_TEMPLATE(pwm_enable
, "pwm%d_enable", S_IWUSR
| S_IRUGO
, show_pwm_enable
,
2639 store_pwm_enable
, 0);
2640 SENSOR_TEMPLATE(pwm_temp_sel
, "pwm%d_temp_sel", S_IWUSR
| S_IRUGO
,
2641 show_pwm_temp_sel
, store_pwm_temp_sel
, 0);
2642 SENSOR_TEMPLATE(pwm_target_temp
, "pwm%d_target_temp", S_IWUSR
| S_IRUGO
,
2643 show_target_temp
, store_target_temp
, 0);
2644 SENSOR_TEMPLATE(fan_target
, "fan%d_target", S_IWUSR
| S_IRUGO
,
2645 show_target_speed
, store_target_speed
, 0);
2646 SENSOR_TEMPLATE(fan_tolerance
, "fan%d_tolerance", S_IWUSR
| S_IRUGO
,
2647 show_speed_tolerance
, store_speed_tolerance
, 0);
2649 /* Smart Fan registers */
2652 show_weight_temp(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2654 struct nct6775_data
*data
= nct6775_update_device(dev
);
2655 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2657 int index
= sattr
->index
;
2659 return sprintf(buf
, "%d\n", data
->weight_temp
[index
][nr
] * 1000);
2663 store_weight_temp(struct device
*dev
, struct device_attribute
*attr
,
2664 const char *buf
, size_t count
)
2666 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2667 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2669 int index
= sattr
->index
;
2673 err
= kstrtoul(buf
, 10, &val
);
2677 val
= clamp_val(DIV_ROUND_CLOSEST(val
, 1000), 0, 255);
2679 mutex_lock(&data
->update_lock
);
2680 data
->weight_temp
[index
][nr
] = val
;
2681 nct6775_write_value(data
, data
->REG_WEIGHT_TEMP
[index
][nr
], val
);
2682 mutex_unlock(&data
->update_lock
);
2686 SENSOR_TEMPLATE(pwm_weight_temp_sel
, "pwm%d_weight_temp_sel", S_IWUSR
| S_IRUGO
,
2687 show_pwm_weight_temp_sel
, store_pwm_weight_temp_sel
, 0);
2688 SENSOR_TEMPLATE_2(pwm_weight_temp_step
, "pwm%d_weight_temp_step",
2689 S_IWUSR
| S_IRUGO
, show_weight_temp
, store_weight_temp
, 0, 0);
2690 SENSOR_TEMPLATE_2(pwm_weight_temp_step_tol
, "pwm%d_weight_temp_step_tol",
2691 S_IWUSR
| S_IRUGO
, show_weight_temp
, store_weight_temp
, 0, 1);
2692 SENSOR_TEMPLATE_2(pwm_weight_temp_step_base
, "pwm%d_weight_temp_step_base",
2693 S_IWUSR
| S_IRUGO
, show_weight_temp
, store_weight_temp
, 0, 2);
2694 SENSOR_TEMPLATE_2(pwm_weight_duty_step
, "pwm%d_weight_duty_step",
2695 S_IWUSR
| S_IRUGO
, show_pwm
, store_pwm
, 0, 5);
2696 SENSOR_TEMPLATE_2(pwm_weight_duty_base
, "pwm%d_weight_duty_base",
2697 S_IWUSR
| S_IRUGO
, show_pwm
, store_pwm
, 0, 6);
2700 show_fan_time(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2702 struct nct6775_data
*data
= nct6775_update_device(dev
);
2703 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2705 int index
= sattr
->index
;
2707 return sprintf(buf
, "%d\n",
2708 step_time_from_reg(data
->fan_time
[index
][nr
],
2709 data
->pwm_mode
[nr
]));
2713 store_fan_time(struct device
*dev
, struct device_attribute
*attr
,
2714 const char *buf
, size_t count
)
2716 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2717 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2719 int index
= sattr
->index
;
2723 err
= kstrtoul(buf
, 10, &val
);
2727 val
= step_time_to_reg(val
, data
->pwm_mode
[nr
]);
2728 mutex_lock(&data
->update_lock
);
2729 data
->fan_time
[index
][nr
] = val
;
2730 nct6775_write_value(data
, data
->REG_FAN_TIME
[index
][nr
], val
);
2731 mutex_unlock(&data
->update_lock
);
2736 show_auto_pwm(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2738 struct nct6775_data
*data
= nct6775_update_device(dev
);
2739 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2741 return sprintf(buf
, "%d\n", data
->auto_pwm
[sattr
->nr
][sattr
->index
]);
2745 store_auto_pwm(struct device
*dev
, struct device_attribute
*attr
,
2746 const char *buf
, size_t count
)
2748 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2749 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2751 int point
= sattr
->index
;
2756 err
= kstrtoul(buf
, 10, &val
);
2762 if (point
== data
->auto_pwm_num
) {
2763 if (data
->kind
!= nct6775
&& !val
)
2765 if (data
->kind
!= nct6779
&& val
)
2769 mutex_lock(&data
->update_lock
);
2770 data
->auto_pwm
[nr
][point
] = val
;
2771 if (point
< data
->auto_pwm_num
) {
2772 nct6775_write_value(data
,
2773 NCT6775_AUTO_PWM(data
, nr
, point
),
2774 data
->auto_pwm
[nr
][point
]);
2776 switch (data
->kind
) {
2778 /* disable if needed (pwm == 0) */
2779 reg
= nct6775_read_value(data
,
2780 NCT6775_REG_CRITICAL_ENAB
[nr
]);
2785 nct6775_write_value(data
, NCT6775_REG_CRITICAL_ENAB
[nr
],
2789 break; /* always enabled, nothing to do */
2793 nct6775_write_value(data
, data
->REG_CRITICAL_PWM
[nr
],
2795 reg
= nct6775_read_value(data
,
2796 data
->REG_CRITICAL_PWM_ENABLE
[nr
]);
2798 reg
&= ~data
->CRITICAL_PWM_ENABLE_MASK
;
2800 reg
|= data
->CRITICAL_PWM_ENABLE_MASK
;
2801 nct6775_write_value(data
,
2802 data
->REG_CRITICAL_PWM_ENABLE
[nr
],
2807 mutex_unlock(&data
->update_lock
);
2812 show_auto_temp(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2814 struct nct6775_data
*data
= nct6775_update_device(dev
);
2815 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2817 int point
= sattr
->index
;
2820 * We don't know for sure if the temperature is signed or unsigned.
2821 * Assume it is unsigned.
2823 return sprintf(buf
, "%d\n", data
->auto_temp
[nr
][point
] * 1000);
2827 store_auto_temp(struct device
*dev
, struct device_attribute
*attr
,
2828 const char *buf
, size_t count
)
2830 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2831 struct sensor_device_attribute_2
*sattr
= to_sensor_dev_attr_2(attr
);
2833 int point
= sattr
->index
;
2837 err
= kstrtoul(buf
, 10, &val
);
2843 mutex_lock(&data
->update_lock
);
2844 data
->auto_temp
[nr
][point
] = DIV_ROUND_CLOSEST(val
, 1000);
2845 if (point
< data
->auto_pwm_num
) {
2846 nct6775_write_value(data
,
2847 NCT6775_AUTO_TEMP(data
, nr
, point
),
2848 data
->auto_temp
[nr
][point
]);
2850 nct6775_write_value(data
, data
->REG_CRITICAL_TEMP
[nr
],
2851 data
->auto_temp
[nr
][point
]);
2853 mutex_unlock(&data
->update_lock
);
2857 static umode_t
nct6775_pwm_is_visible(struct kobject
*kobj
,
2858 struct attribute
*attr
, int index
)
2860 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
2861 struct nct6775_data
*data
= dev_get_drvdata(dev
);
2862 int pwm
= index
/ 36; /* pwm index */
2863 int nr
= index
% 36; /* attribute index */
2865 if (!(data
->has_pwm
& (1 << pwm
)))
2868 if ((nr
>= 14 && nr
<= 18) || nr
== 21) /* weight */
2869 if (!data
->REG_WEIGHT_TEMP_SEL
[pwm
])
2871 if (nr
== 19 && data
->REG_PWM
[3] == NULL
) /* pwm_max */
2873 if (nr
== 20 && data
->REG_PWM
[4] == NULL
) /* pwm_step */
2875 if (nr
== 21 && data
->REG_PWM
[6] == NULL
) /* weight_duty_base */
2878 if (nr
>= 22 && nr
<= 35) { /* auto point */
2879 int api
= (nr
- 22) / 2; /* auto point index */
2881 if (api
> data
->auto_pwm_num
)
2887 SENSOR_TEMPLATE_2(pwm_stop_time
, "pwm%d_stop_time", S_IWUSR
| S_IRUGO
,
2888 show_fan_time
, store_fan_time
, 0, 0);
2889 SENSOR_TEMPLATE_2(pwm_step_up_time
, "pwm%d_step_up_time", S_IWUSR
| S_IRUGO
,
2890 show_fan_time
, store_fan_time
, 0, 1);
2891 SENSOR_TEMPLATE_2(pwm_step_down_time
, "pwm%d_step_down_time", S_IWUSR
| S_IRUGO
,
2892 show_fan_time
, store_fan_time
, 0, 2);
2893 SENSOR_TEMPLATE_2(pwm_start
, "pwm%d_start", S_IWUSR
| S_IRUGO
, show_pwm
,
2895 SENSOR_TEMPLATE_2(pwm_floor
, "pwm%d_floor", S_IWUSR
| S_IRUGO
, show_pwm
,
2897 SENSOR_TEMPLATE_2(pwm_temp_tolerance
, "pwm%d_temp_tolerance", S_IWUSR
| S_IRUGO
,
2898 show_temp_tolerance
, store_temp_tolerance
, 0, 0);
2899 SENSOR_TEMPLATE_2(pwm_crit_temp_tolerance
, "pwm%d_crit_temp_tolerance",
2900 S_IWUSR
| S_IRUGO
, show_temp_tolerance
, store_temp_tolerance
,
2903 SENSOR_TEMPLATE_2(pwm_max
, "pwm%d_max", S_IWUSR
| S_IRUGO
, show_pwm
, store_pwm
,
2906 SENSOR_TEMPLATE_2(pwm_step
, "pwm%d_step", S_IWUSR
| S_IRUGO
, show_pwm
,
2909 SENSOR_TEMPLATE_2(pwm_auto_point1_pwm
, "pwm%d_auto_point1_pwm",
2910 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 0);
2911 SENSOR_TEMPLATE_2(pwm_auto_point1_temp
, "pwm%d_auto_point1_temp",
2912 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 0);
2914 SENSOR_TEMPLATE_2(pwm_auto_point2_pwm
, "pwm%d_auto_point2_pwm",
2915 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 1);
2916 SENSOR_TEMPLATE_2(pwm_auto_point2_temp
, "pwm%d_auto_point2_temp",
2917 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 1);
2919 SENSOR_TEMPLATE_2(pwm_auto_point3_pwm
, "pwm%d_auto_point3_pwm",
2920 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 2);
2921 SENSOR_TEMPLATE_2(pwm_auto_point3_temp
, "pwm%d_auto_point3_temp",
2922 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 2);
2924 SENSOR_TEMPLATE_2(pwm_auto_point4_pwm
, "pwm%d_auto_point4_pwm",
2925 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 3);
2926 SENSOR_TEMPLATE_2(pwm_auto_point4_temp
, "pwm%d_auto_point4_temp",
2927 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 3);
2929 SENSOR_TEMPLATE_2(pwm_auto_point5_pwm
, "pwm%d_auto_point5_pwm",
2930 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 4);
2931 SENSOR_TEMPLATE_2(pwm_auto_point5_temp
, "pwm%d_auto_point5_temp",
2932 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 4);
2934 SENSOR_TEMPLATE_2(pwm_auto_point6_pwm
, "pwm%d_auto_point6_pwm",
2935 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 5);
2936 SENSOR_TEMPLATE_2(pwm_auto_point6_temp
, "pwm%d_auto_point6_temp",
2937 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 5);
2939 SENSOR_TEMPLATE_2(pwm_auto_point7_pwm
, "pwm%d_auto_point7_pwm",
2940 S_IWUSR
| S_IRUGO
, show_auto_pwm
, store_auto_pwm
, 0, 6);
2941 SENSOR_TEMPLATE_2(pwm_auto_point7_temp
, "pwm%d_auto_point7_temp",
2942 S_IWUSR
| S_IRUGO
, show_auto_temp
, store_auto_temp
, 0, 6);
2945 * nct6775_pwm_is_visible uses the index into the following array
2946 * to determine if attributes should be created or not.
2947 * Any change in order or content must be matched.
2949 static struct sensor_device_template
*nct6775_attributes_pwm_template
[] = {
2950 &sensor_dev_template_pwm
,
2951 &sensor_dev_template_pwm_mode
,
2952 &sensor_dev_template_pwm_enable
,
2953 &sensor_dev_template_pwm_temp_sel
,
2954 &sensor_dev_template_pwm_temp_tolerance
,
2955 &sensor_dev_template_pwm_crit_temp_tolerance
,
2956 &sensor_dev_template_pwm_target_temp
,
2957 &sensor_dev_template_fan_target
,
2958 &sensor_dev_template_fan_tolerance
,
2959 &sensor_dev_template_pwm_stop_time
,
2960 &sensor_dev_template_pwm_step_up_time
,
2961 &sensor_dev_template_pwm_step_down_time
,
2962 &sensor_dev_template_pwm_start
,
2963 &sensor_dev_template_pwm_floor
,
2964 &sensor_dev_template_pwm_weight_temp_sel
, /* 14 */
2965 &sensor_dev_template_pwm_weight_temp_step
,
2966 &sensor_dev_template_pwm_weight_temp_step_tol
,
2967 &sensor_dev_template_pwm_weight_temp_step_base
,
2968 &sensor_dev_template_pwm_weight_duty_step
, /* 18 */
2969 &sensor_dev_template_pwm_max
, /* 19 */
2970 &sensor_dev_template_pwm_step
, /* 20 */
2971 &sensor_dev_template_pwm_weight_duty_base
, /* 21 */
2972 &sensor_dev_template_pwm_auto_point1_pwm
, /* 22 */
2973 &sensor_dev_template_pwm_auto_point1_temp
,
2974 &sensor_dev_template_pwm_auto_point2_pwm
,
2975 &sensor_dev_template_pwm_auto_point2_temp
,
2976 &sensor_dev_template_pwm_auto_point3_pwm
,
2977 &sensor_dev_template_pwm_auto_point3_temp
,
2978 &sensor_dev_template_pwm_auto_point4_pwm
,
2979 &sensor_dev_template_pwm_auto_point4_temp
,
2980 &sensor_dev_template_pwm_auto_point5_pwm
,
2981 &sensor_dev_template_pwm_auto_point5_temp
,
2982 &sensor_dev_template_pwm_auto_point6_pwm
,
2983 &sensor_dev_template_pwm_auto_point6_temp
,
2984 &sensor_dev_template_pwm_auto_point7_pwm
,
2985 &sensor_dev_template_pwm_auto_point7_temp
, /* 35 */
2990 static struct sensor_template_group nct6775_pwm_template_group
= {
2991 .templates
= nct6775_attributes_pwm_template
,
2992 .is_visible
= nct6775_pwm_is_visible
,
2997 show_vid(struct device
*dev
, struct device_attribute
*attr
, char *buf
)
2999 struct nct6775_data
*data
= dev_get_drvdata(dev
);
3000 return sprintf(buf
, "%d\n", vid_from_reg(data
->vid
, data
->vrm
));
3003 static DEVICE_ATTR(cpu0_vid
, S_IRUGO
, show_vid
, NULL
);
3005 /* Case open detection */
3008 clear_caseopen(struct device
*dev
, struct device_attribute
*attr
,
3009 const char *buf
, size_t count
)
3011 struct nct6775_data
*data
= dev_get_drvdata(dev
);
3012 int nr
= to_sensor_dev_attr(attr
)->index
- INTRUSION_ALARM_BASE
;
3017 if (kstrtoul(buf
, 10, &val
) || val
!= 0)
3020 mutex_lock(&data
->update_lock
);
3023 * Use CR registers to clear caseopen status.
3024 * The CR registers are the same for all chips, and not all chips
3025 * support clearing the caseopen status through "regular" registers.
3027 ret
= superio_enter(data
->sioreg
);
3033 superio_select(data
->sioreg
, NCT6775_LD_ACPI
);
3034 reg
= superio_inb(data
->sioreg
, NCT6775_REG_CR_CASEOPEN_CLR
[nr
]);
3035 reg
|= NCT6775_CR_CASEOPEN_CLR_MASK
[nr
];
3036 superio_outb(data
->sioreg
, NCT6775_REG_CR_CASEOPEN_CLR
[nr
], reg
);
3037 reg
&= ~NCT6775_CR_CASEOPEN_CLR_MASK
[nr
];
3038 superio_outb(data
->sioreg
, NCT6775_REG_CR_CASEOPEN_CLR
[nr
], reg
);
3039 superio_exit(data
->sioreg
);
3041 data
->valid
= false; /* Force cache refresh */
3043 mutex_unlock(&data
->update_lock
);
3047 static SENSOR_DEVICE_ATTR(intrusion0_alarm
, S_IWUSR
| S_IRUGO
, show_alarm
,
3048 clear_caseopen
, INTRUSION_ALARM_BASE
);
3049 static SENSOR_DEVICE_ATTR(intrusion1_alarm
, S_IWUSR
| S_IRUGO
, show_alarm
,
3050 clear_caseopen
, INTRUSION_ALARM_BASE
+ 1);
3051 static SENSOR_DEVICE_ATTR(intrusion0_beep
, S_IWUSR
| S_IRUGO
, show_beep
,
3052 store_beep
, INTRUSION_ALARM_BASE
);
3053 static SENSOR_DEVICE_ATTR(intrusion1_beep
, S_IWUSR
| S_IRUGO
, show_beep
,
3054 store_beep
, INTRUSION_ALARM_BASE
+ 1);
3055 static SENSOR_DEVICE_ATTR(beep_enable
, S_IWUSR
| S_IRUGO
, show_beep
,
3056 store_beep
, BEEP_ENABLE_BASE
);
3058 static umode_t
nct6775_other_is_visible(struct kobject
*kobj
,
3059 struct attribute
*attr
, int index
)
3061 struct device
*dev
= container_of(kobj
, struct device
, kobj
);
3062 struct nct6775_data
*data
= dev_get_drvdata(dev
);
3064 if (index
== 0 && !data
->have_vid
)
3067 if (index
== 1 || index
== 2) {
3068 if (data
->ALARM_BITS
[INTRUSION_ALARM_BASE
+ index
- 1] < 0)
3072 if (index
== 3 || index
== 4) {
3073 if (data
->BEEP_BITS
[INTRUSION_ALARM_BASE
+ index
- 3] < 0)
3081 * nct6775_other_is_visible uses the index into the following array
3082 * to determine if attributes should be created or not.
3083 * Any change in order or content must be matched.
3085 static struct attribute
*nct6775_attributes_other
[] = {
3086 &dev_attr_cpu0_vid
.attr
, /* 0 */
3087 &sensor_dev_attr_intrusion0_alarm
.dev_attr
.attr
, /* 1 */
3088 &sensor_dev_attr_intrusion1_alarm
.dev_attr
.attr
, /* 2 */
3089 &sensor_dev_attr_intrusion0_beep
.dev_attr
.attr
, /* 3 */
3090 &sensor_dev_attr_intrusion1_beep
.dev_attr
.attr
, /* 4 */
3091 &sensor_dev_attr_beep_enable
.dev_attr
.attr
, /* 5 */
3096 static const struct attribute_group nct6775_group_other
= {
3097 .attrs
= nct6775_attributes_other
,
3098 .is_visible
= nct6775_other_is_visible
,
3101 static inline void nct6775_init_device(struct nct6775_data
*data
)
3106 /* Start monitoring if needed */
3107 if (data
->REG_CONFIG
) {
3108 tmp
= nct6775_read_value(data
, data
->REG_CONFIG
);
3110 nct6775_write_value(data
, data
->REG_CONFIG
, tmp
| 0x01);
3113 /* Enable temperature sensors if needed */
3114 for (i
= 0; i
< NUM_TEMP
; i
++) {
3115 if (!(data
->have_temp
& (1 << i
)))
3117 if (!data
->reg_temp_config
[i
])
3119 tmp
= nct6775_read_value(data
, data
->reg_temp_config
[i
]);
3121 nct6775_write_value(data
, data
->reg_temp_config
[i
],
3125 /* Enable VBAT monitoring if needed */
3126 tmp
= nct6775_read_value(data
, data
->REG_VBAT
);
3128 nct6775_write_value(data
, data
->REG_VBAT
, tmp
| 0x01);
3130 diode
= nct6775_read_value(data
, data
->REG_DIODE
);
3132 for (i
= 0; i
< data
->temp_fixed_num
; i
++) {
3133 if (!(data
->have_temp_fixed
& (1 << i
)))
3135 if ((tmp
& (data
->DIODE_MASK
<< i
))) /* diode */
3137 = 3 - ((diode
>> i
) & data
->DIODE_MASK
);
3138 else /* thermistor */
3139 data
->temp_type
[i
] = 4;
3144 nct6775_check_fan_inputs(struct nct6775_data
*data
)
3146 bool fan3pin
, fan4pin
, fan4min
, fan5pin
, fan6pin
;
3147 bool pwm3pin
, pwm4pin
, pwm5pin
, pwm6pin
;
3148 int sioreg
= data
->sioreg
;
3151 /* fan4 and fan5 share some pins with the GPIO and serial flash */
3152 if (data
->kind
== nct6775
) {
3153 regval
= superio_inb(sioreg
, 0x2c);
3155 fan3pin
= regval
& (1 << 6);
3156 pwm3pin
= regval
& (1 << 7);
3158 /* On NCT6775, fan4 shares pins with the fdc interface */
3159 fan4pin
= !(superio_inb(sioreg
, 0x2A) & 0x80);
3166 } else if (data
->kind
== nct6776
) {
3167 bool gpok
= superio_inb(sioreg
, 0x27) & 0x80;
3169 superio_select(sioreg
, NCT6775_LD_HWM
);
3170 regval
= superio_inb(sioreg
, SIO_REG_ENABLE
);
3175 fan3pin
= !(superio_inb(sioreg
, 0x24) & 0x40);
3180 fan4pin
= superio_inb(sioreg
, 0x1C) & 0x01;
3185 fan5pin
= superio_inb(sioreg
, 0x1C) & 0x02;
3193 } else if (data
->kind
== nct6106
) {
3194 regval
= superio_inb(sioreg
, 0x24);
3195 fan3pin
= !(regval
& 0x80);
3196 pwm3pin
= regval
& 0x08;
3205 } else { /* NCT6779D or NCT6791D */
3206 regval
= superio_inb(sioreg
, 0x1c);
3208 fan3pin
= !(regval
& (1 << 5));
3209 fan4pin
= !(regval
& (1 << 6));
3210 fan5pin
= !(regval
& (1 << 7));
3212 pwm3pin
= !(regval
& (1 << 0));
3213 pwm4pin
= !(regval
& (1 << 1));
3214 pwm5pin
= !(regval
& (1 << 2));
3218 if (data
->kind
== nct6791
) {
3219 regval
= superio_inb(sioreg
, 0x2d);
3220 fan6pin
= (regval
& (1 << 1));
3221 pwm6pin
= (regval
& (1 << 0));
3222 } else { /* NCT6779D */
3228 /* fan 1 and 2 (0x03) are always present */
3229 data
->has_fan
= 0x03 | (fan3pin
<< 2) | (fan4pin
<< 3) |
3230 (fan5pin
<< 4) | (fan6pin
<< 5);
3231 data
->has_fan_min
= 0x03 | (fan3pin
<< 2) | (fan4min
<< 3) |
3233 data
->has_pwm
= 0x03 | (pwm3pin
<< 2) | (pwm4pin
<< 3) |
3234 (pwm5pin
<< 4) | (pwm6pin
<< 5);
3237 static void add_temp_sensors(struct nct6775_data
*data
, const u16
*regp
,
3238 int *available
, int *mask
)
3243 for (i
= 0; i
< data
->pwm_num
&& *available
; i
++) {
3248 src
= nct6775_read_value(data
, regp
[i
]);
3250 if (!src
|| (*mask
& (1 << src
)))
3252 if (src
>= data
->temp_label_num
||
3253 !strlen(data
->temp_label
[src
]))
3256 index
= __ffs(*available
);
3257 nct6775_write_value(data
, data
->REG_TEMP_SOURCE
[index
], src
);
3258 *available
&= ~(1 << index
);
3263 static int nct6775_probe(struct platform_device
*pdev
)
3265 struct device
*dev
= &pdev
->dev
;
3266 struct nct6775_sio_data
*sio_data
= dev_get_platdata(dev
);
3267 struct nct6775_data
*data
;
3268 struct resource
*res
;
3270 int src
, mask
, available
;
3271 const u16
*reg_temp
, *reg_temp_over
, *reg_temp_hyst
, *reg_temp_config
;
3272 const u16
*reg_temp_mon
, *reg_temp_alternate
, *reg_temp_crit
;
3273 const u16
*reg_temp_crit_l
= NULL
, *reg_temp_crit_h
= NULL
;
3274 int num_reg_temp
, num_reg_temp_mon
;
3276 struct attribute_group
*group
;
3277 struct device
*hwmon_dev
;
3278 int num_attr_groups
= 0;
3280 res
= platform_get_resource(pdev
, IORESOURCE_IO
, 0);
3281 if (!devm_request_region(&pdev
->dev
, res
->start
, IOREGION_LENGTH
,
3285 data
= devm_kzalloc(&pdev
->dev
, sizeof(struct nct6775_data
),
3290 data
->kind
= sio_data
->kind
;
3291 data
->sioreg
= sio_data
->sioreg
;
3292 data
->addr
= res
->start
;
3293 mutex_init(&data
->update_lock
);
3294 data
->name
= nct6775_device_names
[data
->kind
];
3295 data
->bank
= 0xff; /* Force initial bank selection */
3296 platform_set_drvdata(pdev
, data
);
3298 switch (data
->kind
) {
3302 data
->auto_pwm_num
= 4;
3303 data
->temp_fixed_num
= 3;
3304 data
->num_temp_alarms
= 6;
3305 data
->num_temp_beeps
= 6;
3307 data
->fan_from_reg
= fan_from_reg13
;
3308 data
->fan_from_reg_min
= fan_from_reg13
;
3310 data
->temp_label
= nct6776_temp_label
;
3311 data
->temp_label_num
= ARRAY_SIZE(nct6776_temp_label
);
3313 data
->REG_VBAT
= NCT6106_REG_VBAT
;
3314 data
->REG_DIODE
= NCT6106_REG_DIODE
;
3315 data
->DIODE_MASK
= NCT6106_DIODE_MASK
;
3316 data
->REG_VIN
= NCT6106_REG_IN
;
3317 data
->REG_IN_MINMAX
[0] = NCT6106_REG_IN_MIN
;
3318 data
->REG_IN_MINMAX
[1] = NCT6106_REG_IN_MAX
;
3319 data
->REG_TARGET
= NCT6106_REG_TARGET
;
3320 data
->REG_FAN
= NCT6106_REG_FAN
;
3321 data
->REG_FAN_MODE
= NCT6106_REG_FAN_MODE
;
3322 data
->REG_FAN_MIN
= NCT6106_REG_FAN_MIN
;
3323 data
->REG_FAN_PULSES
= NCT6106_REG_FAN_PULSES
;
3324 data
->FAN_PULSE_SHIFT
= NCT6106_FAN_PULSE_SHIFT
;
3325 data
->REG_FAN_TIME
[0] = NCT6106_REG_FAN_STOP_TIME
;
3326 data
->REG_FAN_TIME
[1] = NCT6106_REG_FAN_STEP_UP_TIME
;
3327 data
->REG_FAN_TIME
[2] = NCT6106_REG_FAN_STEP_DOWN_TIME
;
3328 data
->REG_PWM
[0] = NCT6106_REG_PWM
;
3329 data
->REG_PWM
[1] = NCT6106_REG_FAN_START_OUTPUT
;
3330 data
->REG_PWM
[2] = NCT6106_REG_FAN_STOP_OUTPUT
;
3331 data
->REG_PWM
[5] = NCT6106_REG_WEIGHT_DUTY_STEP
;
3332 data
->REG_PWM
[6] = NCT6106_REG_WEIGHT_DUTY_BASE
;
3333 data
->REG_PWM_READ
= NCT6106_REG_PWM_READ
;
3334 data
->REG_PWM_MODE
= NCT6106_REG_PWM_MODE
;
3335 data
->PWM_MODE_MASK
= NCT6106_PWM_MODE_MASK
;
3336 data
->REG_AUTO_TEMP
= NCT6106_REG_AUTO_TEMP
;
3337 data
->REG_AUTO_PWM
= NCT6106_REG_AUTO_PWM
;
3338 data
->REG_CRITICAL_TEMP
= NCT6106_REG_CRITICAL_TEMP
;
3339 data
->REG_CRITICAL_TEMP_TOLERANCE
3340 = NCT6106_REG_CRITICAL_TEMP_TOLERANCE
;
3341 data
->REG_CRITICAL_PWM_ENABLE
= NCT6106_REG_CRITICAL_PWM_ENABLE
;
3342 data
->CRITICAL_PWM_ENABLE_MASK
3343 = NCT6106_CRITICAL_PWM_ENABLE_MASK
;
3344 data
->REG_CRITICAL_PWM
= NCT6106_REG_CRITICAL_PWM
;
3345 data
->REG_TEMP_OFFSET
= NCT6106_REG_TEMP_OFFSET
;
3346 data
->REG_TEMP_SOURCE
= NCT6106_REG_TEMP_SOURCE
;
3347 data
->REG_TEMP_SEL
= NCT6106_REG_TEMP_SEL
;
3348 data
->REG_WEIGHT_TEMP_SEL
= NCT6106_REG_WEIGHT_TEMP_SEL
;
3349 data
->REG_WEIGHT_TEMP
[0] = NCT6106_REG_WEIGHT_TEMP_STEP
;
3350 data
->REG_WEIGHT_TEMP
[1] = NCT6106_REG_WEIGHT_TEMP_STEP_TOL
;
3351 data
->REG_WEIGHT_TEMP
[2] = NCT6106_REG_WEIGHT_TEMP_BASE
;
3352 data
->REG_ALARM
= NCT6106_REG_ALARM
;
3353 data
->ALARM_BITS
= NCT6106_ALARM_BITS
;
3354 data
->REG_BEEP
= NCT6106_REG_BEEP
;
3355 data
->BEEP_BITS
= NCT6106_BEEP_BITS
;
3357 reg_temp
= NCT6106_REG_TEMP
;
3358 reg_temp_mon
= NCT6106_REG_TEMP_MON
;
3359 num_reg_temp
= ARRAY_SIZE(NCT6106_REG_TEMP
);
3360 num_reg_temp_mon
= ARRAY_SIZE(NCT6106_REG_TEMP_MON
);
3361 reg_temp_over
= NCT6106_REG_TEMP_OVER
;
3362 reg_temp_hyst
= NCT6106_REG_TEMP_HYST
;
3363 reg_temp_config
= NCT6106_REG_TEMP_CONFIG
;
3364 reg_temp_alternate
= NCT6106_REG_TEMP_ALTERNATE
;
3365 reg_temp_crit
= NCT6106_REG_TEMP_CRIT
;
3366 reg_temp_crit_l
= NCT6106_REG_TEMP_CRIT_L
;
3367 reg_temp_crit_h
= NCT6106_REG_TEMP_CRIT_H
;
3373 data
->auto_pwm_num
= 6;
3374 data
->has_fan_div
= true;
3375 data
->temp_fixed_num
= 3;
3376 data
->num_temp_alarms
= 3;
3377 data
->num_temp_beeps
= 3;
3379 data
->ALARM_BITS
= NCT6775_ALARM_BITS
;
3380 data
->BEEP_BITS
= NCT6775_BEEP_BITS
;
3382 data
->fan_from_reg
= fan_from_reg16
;
3383 data
->fan_from_reg_min
= fan_from_reg8
;
3384 data
->target_temp_mask
= 0x7f;
3385 data
->tolerance_mask
= 0x0f;
3386 data
->speed_tolerance_limit
= 15;
3388 data
->temp_label
= nct6775_temp_label
;
3389 data
->temp_label_num
= ARRAY_SIZE(nct6775_temp_label
);
3391 data
->REG_CONFIG
= NCT6775_REG_CONFIG
;
3392 data
->REG_VBAT
= NCT6775_REG_VBAT
;
3393 data
->REG_DIODE
= NCT6775_REG_DIODE
;
3394 data
->DIODE_MASK
= NCT6775_DIODE_MASK
;
3395 data
->REG_VIN
= NCT6775_REG_IN
;
3396 data
->REG_IN_MINMAX
[0] = NCT6775_REG_IN_MIN
;
3397 data
->REG_IN_MINMAX
[1] = NCT6775_REG_IN_MAX
;
3398 data
->REG_TARGET
= NCT6775_REG_TARGET
;
3399 data
->REG_FAN
= NCT6775_REG_FAN
;
3400 data
->REG_FAN_MODE
= NCT6775_REG_FAN_MODE
;
3401 data
->REG_FAN_MIN
= NCT6775_REG_FAN_MIN
;
3402 data
->REG_FAN_PULSES
= NCT6775_REG_FAN_PULSES
;
3403 data
->FAN_PULSE_SHIFT
= NCT6775_FAN_PULSE_SHIFT
;
3404 data
->REG_FAN_TIME
[0] = NCT6775_REG_FAN_STOP_TIME
;
3405 data
->REG_FAN_TIME
[1] = NCT6775_REG_FAN_STEP_UP_TIME
;
3406 data
->REG_FAN_TIME
[2] = NCT6775_REG_FAN_STEP_DOWN_TIME
;
3407 data
->REG_PWM
[0] = NCT6775_REG_PWM
;
3408 data
->REG_PWM
[1] = NCT6775_REG_FAN_START_OUTPUT
;
3409 data
->REG_PWM
[2] = NCT6775_REG_FAN_STOP_OUTPUT
;
3410 data
->REG_PWM
[3] = NCT6775_REG_FAN_MAX_OUTPUT
;
3411 data
->REG_PWM
[4] = NCT6775_REG_FAN_STEP_OUTPUT
;
3412 data
->REG_PWM
[5] = NCT6775_REG_WEIGHT_DUTY_STEP
;
3413 data
->REG_PWM_READ
= NCT6775_REG_PWM_READ
;
3414 data
->REG_PWM_MODE
= NCT6775_REG_PWM_MODE
;
3415 data
->PWM_MODE_MASK
= NCT6775_PWM_MODE_MASK
;
3416 data
->REG_AUTO_TEMP
= NCT6775_REG_AUTO_TEMP
;
3417 data
->REG_AUTO_PWM
= NCT6775_REG_AUTO_PWM
;
3418 data
->REG_CRITICAL_TEMP
= NCT6775_REG_CRITICAL_TEMP
;
3419 data
->REG_CRITICAL_TEMP_TOLERANCE
3420 = NCT6775_REG_CRITICAL_TEMP_TOLERANCE
;
3421 data
->REG_TEMP_OFFSET
= NCT6775_REG_TEMP_OFFSET
;
3422 data
->REG_TEMP_SOURCE
= NCT6775_REG_TEMP_SOURCE
;
3423 data
->REG_TEMP_SEL
= NCT6775_REG_TEMP_SEL
;
3424 data
->REG_WEIGHT_TEMP_SEL
= NCT6775_REG_WEIGHT_TEMP_SEL
;
3425 data
->REG_WEIGHT_TEMP
[0] = NCT6775_REG_WEIGHT_TEMP_STEP
;
3426 data
->REG_WEIGHT_TEMP
[1] = NCT6775_REG_WEIGHT_TEMP_STEP_TOL
;
3427 data
->REG_WEIGHT_TEMP
[2] = NCT6775_REG_WEIGHT_TEMP_BASE
;
3428 data
->REG_ALARM
= NCT6775_REG_ALARM
;
3429 data
->REG_BEEP
= NCT6775_REG_BEEP
;
3431 reg_temp
= NCT6775_REG_TEMP
;
3432 reg_temp_mon
= NCT6775_REG_TEMP_MON
;
3433 num_reg_temp
= ARRAY_SIZE(NCT6775_REG_TEMP
);
3434 num_reg_temp_mon
= ARRAY_SIZE(NCT6775_REG_TEMP_MON
);
3435 reg_temp_over
= NCT6775_REG_TEMP_OVER
;
3436 reg_temp_hyst
= NCT6775_REG_TEMP_HYST
;
3437 reg_temp_config
= NCT6775_REG_TEMP_CONFIG
;
3438 reg_temp_alternate
= NCT6775_REG_TEMP_ALTERNATE
;
3439 reg_temp_crit
= NCT6775_REG_TEMP_CRIT
;
3445 data
->auto_pwm_num
= 4;
3446 data
->has_fan_div
= false;
3447 data
->temp_fixed_num
= 3;
3448 data
->num_temp_alarms
= 3;
3449 data
->num_temp_beeps
= 6;
3451 data
->ALARM_BITS
= NCT6776_ALARM_BITS
;
3452 data
->BEEP_BITS
= NCT6776_BEEP_BITS
;
3454 data
->fan_from_reg
= fan_from_reg13
;
3455 data
->fan_from_reg_min
= fan_from_reg13
;
3456 data
->target_temp_mask
= 0xff;
3457 data
->tolerance_mask
= 0x07;
3458 data
->speed_tolerance_limit
= 63;
3460 data
->temp_label
= nct6776_temp_label
;
3461 data
->temp_label_num
= ARRAY_SIZE(nct6776_temp_label
);
3463 data
->REG_CONFIG
= NCT6775_REG_CONFIG
;
3464 data
->REG_VBAT
= NCT6775_REG_VBAT
;
3465 data
->REG_DIODE
= NCT6775_REG_DIODE
;
3466 data
->DIODE_MASK
= NCT6775_DIODE_MASK
;
3467 data
->REG_VIN
= NCT6775_REG_IN
;
3468 data
->REG_IN_MINMAX
[0] = NCT6775_REG_IN_MIN
;
3469 data
->REG_IN_MINMAX
[1] = NCT6775_REG_IN_MAX
;
3470 data
->REG_TARGET
= NCT6775_REG_TARGET
;
3471 data
->REG_FAN
= NCT6775_REG_FAN
;
3472 data
->REG_FAN_MODE
= NCT6775_REG_FAN_MODE
;
3473 data
->REG_FAN_MIN
= NCT6776_REG_FAN_MIN
;
3474 data
->REG_FAN_PULSES
= NCT6776_REG_FAN_PULSES
;
3475 data
->FAN_PULSE_SHIFT
= NCT6775_FAN_PULSE_SHIFT
;
3476 data
->REG_FAN_TIME
[0] = NCT6775_REG_FAN_STOP_TIME
;
3477 data
->REG_FAN_TIME
[1] = NCT6775_REG_FAN_STEP_UP_TIME
;
3478 data
->REG_FAN_TIME
[2] = NCT6775_REG_FAN_STEP_DOWN_TIME
;
3479 data
->REG_TOLERANCE_H
= NCT6776_REG_TOLERANCE_H
;
3480 data
->REG_PWM
[0] = NCT6775_REG_PWM
;
3481 data
->REG_PWM
[1] = NCT6775_REG_FAN_START_OUTPUT
;
3482 data
->REG_PWM
[2] = NCT6775_REG_FAN_STOP_OUTPUT
;
3483 data
->REG_PWM
[5] = NCT6775_REG_WEIGHT_DUTY_STEP
;
3484 data
->REG_PWM
[6] = NCT6776_REG_WEIGHT_DUTY_BASE
;
3485 data
->REG_PWM_READ
= NCT6775_REG_PWM_READ
;
3486 data
->REG_PWM_MODE
= NCT6776_REG_PWM_MODE
;
3487 data
->PWM_MODE_MASK
= NCT6776_PWM_MODE_MASK
;
3488 data
->REG_AUTO_TEMP
= NCT6775_REG_AUTO_TEMP
;
3489 data
->REG_AUTO_PWM
= NCT6775_REG_AUTO_PWM
;
3490 data
->REG_CRITICAL_TEMP
= NCT6775_REG_CRITICAL_TEMP
;
3491 data
->REG_CRITICAL_TEMP_TOLERANCE
3492 = NCT6775_REG_CRITICAL_TEMP_TOLERANCE
;
3493 data
->REG_TEMP_OFFSET
= NCT6775_REG_TEMP_OFFSET
;
3494 data
->REG_TEMP_SOURCE
= NCT6775_REG_TEMP_SOURCE
;
3495 data
->REG_TEMP_SEL
= NCT6775_REG_TEMP_SEL
;
3496 data
->REG_WEIGHT_TEMP_SEL
= NCT6775_REG_WEIGHT_TEMP_SEL
;
3497 data
->REG_WEIGHT_TEMP
[0] = NCT6775_REG_WEIGHT_TEMP_STEP
;
3498 data
->REG_WEIGHT_TEMP
[1] = NCT6775_REG_WEIGHT_TEMP_STEP_TOL
;
3499 data
->REG_WEIGHT_TEMP
[2] = NCT6775_REG_WEIGHT_TEMP_BASE
;
3500 data
->REG_ALARM
= NCT6775_REG_ALARM
;
3501 data
->REG_BEEP
= NCT6776_REG_BEEP
;
3503 reg_temp
= NCT6775_REG_TEMP
;
3504 reg_temp_mon
= NCT6775_REG_TEMP_MON
;
3505 num_reg_temp
= ARRAY_SIZE(NCT6775_REG_TEMP
);
3506 num_reg_temp_mon
= ARRAY_SIZE(NCT6775_REG_TEMP_MON
);
3507 reg_temp_over
= NCT6775_REG_TEMP_OVER
;
3508 reg_temp_hyst
= NCT6775_REG_TEMP_HYST
;
3509 reg_temp_config
= NCT6776_REG_TEMP_CONFIG
;
3510 reg_temp_alternate
= NCT6776_REG_TEMP_ALTERNATE
;
3511 reg_temp_crit
= NCT6776_REG_TEMP_CRIT
;
3517 data
->auto_pwm_num
= 4;
3518 data
->has_fan_div
= false;
3519 data
->temp_fixed_num
= 6;
3520 data
->num_temp_alarms
= 2;
3521 data
->num_temp_beeps
= 2;
3523 data
->ALARM_BITS
= NCT6779_ALARM_BITS
;
3524 data
->BEEP_BITS
= NCT6779_BEEP_BITS
;
3526 data
->fan_from_reg
= fan_from_reg13
;
3527 data
->fan_from_reg_min
= fan_from_reg13
;
3528 data
->target_temp_mask
= 0xff;
3529 data
->tolerance_mask
= 0x07;
3530 data
->speed_tolerance_limit
= 63;
3532 data
->temp_label
= nct6779_temp_label
;
3533 data
->temp_label_num
= ARRAY_SIZE(nct6779_temp_label
);
3535 data
->REG_CONFIG
= NCT6775_REG_CONFIG
;
3536 data
->REG_VBAT
= NCT6775_REG_VBAT
;
3537 data
->REG_DIODE
= NCT6775_REG_DIODE
;
3538 data
->DIODE_MASK
= NCT6775_DIODE_MASK
;
3539 data
->REG_VIN
= NCT6779_REG_IN
;
3540 data
->REG_IN_MINMAX
[0] = NCT6775_REG_IN_MIN
;
3541 data
->REG_IN_MINMAX
[1] = NCT6775_REG_IN_MAX
;
3542 data
->REG_TARGET
= NCT6775_REG_TARGET
;
3543 data
->REG_FAN
= NCT6779_REG_FAN
;
3544 data
->REG_FAN_MODE
= NCT6775_REG_FAN_MODE
;
3545 data
->REG_FAN_MIN
= NCT6776_REG_FAN_MIN
;
3546 data
->REG_FAN_PULSES
= NCT6779_REG_FAN_PULSES
;
3547 data
->FAN_PULSE_SHIFT
= NCT6775_FAN_PULSE_SHIFT
;
3548 data
->REG_FAN_TIME
[0] = NCT6775_REG_FAN_STOP_TIME
;
3549 data
->REG_FAN_TIME
[1] = NCT6775_REG_FAN_STEP_UP_TIME
;
3550 data
->REG_FAN_TIME
[2] = NCT6775_REG_FAN_STEP_DOWN_TIME
;
3551 data
->REG_TOLERANCE_H
= NCT6776_REG_TOLERANCE_H
;
3552 data
->REG_PWM
[0] = NCT6775_REG_PWM
;
3553 data
->REG_PWM
[1] = NCT6775_REG_FAN_START_OUTPUT
;
3554 data
->REG_PWM
[2] = NCT6775_REG_FAN_STOP_OUTPUT
;
3555 data
->REG_PWM
[5] = NCT6775_REG_WEIGHT_DUTY_STEP
;
3556 data
->REG_PWM
[6] = NCT6776_REG_WEIGHT_DUTY_BASE
;
3557 data
->REG_PWM_READ
= NCT6775_REG_PWM_READ
;
3558 data
->REG_PWM_MODE
= NCT6776_REG_PWM_MODE
;
3559 data
->PWM_MODE_MASK
= NCT6776_PWM_MODE_MASK
;
3560 data
->REG_AUTO_TEMP
= NCT6775_REG_AUTO_TEMP
;
3561 data
->REG_AUTO_PWM
= NCT6775_REG_AUTO_PWM
;
3562 data
->REG_CRITICAL_TEMP
= NCT6775_REG_CRITICAL_TEMP
;
3563 data
->REG_CRITICAL_TEMP_TOLERANCE
3564 = NCT6775_REG_CRITICAL_TEMP_TOLERANCE
;
3565 data
->REG_CRITICAL_PWM_ENABLE
= NCT6779_REG_CRITICAL_PWM_ENABLE
;
3566 data
->CRITICAL_PWM_ENABLE_MASK
3567 = NCT6779_CRITICAL_PWM_ENABLE_MASK
;
3568 data
->REG_CRITICAL_PWM
= NCT6779_REG_CRITICAL_PWM
;
3569 data
->REG_TEMP_OFFSET
= NCT6779_REG_TEMP_OFFSET
;
3570 data
->REG_TEMP_SOURCE
= NCT6775_REG_TEMP_SOURCE
;
3571 data
->REG_TEMP_SEL
= NCT6775_REG_TEMP_SEL
;
3572 data
->REG_WEIGHT_TEMP_SEL
= NCT6775_REG_WEIGHT_TEMP_SEL
;
3573 data
->REG_WEIGHT_TEMP
[0] = NCT6775_REG_WEIGHT_TEMP_STEP
;
3574 data
->REG_WEIGHT_TEMP
[1] = NCT6775_REG_WEIGHT_TEMP_STEP_TOL
;
3575 data
->REG_WEIGHT_TEMP
[2] = NCT6775_REG_WEIGHT_TEMP_BASE
;
3576 data
->REG_ALARM
= NCT6779_REG_ALARM
;
3577 data
->REG_BEEP
= NCT6776_REG_BEEP
;
3579 reg_temp
= NCT6779_REG_TEMP
;
3580 reg_temp_mon
= NCT6779_REG_TEMP_MON
;
3581 num_reg_temp
= ARRAY_SIZE(NCT6779_REG_TEMP
);
3582 num_reg_temp_mon
= ARRAY_SIZE(NCT6779_REG_TEMP_MON
);
3583 reg_temp_over
= NCT6779_REG_TEMP_OVER
;
3584 reg_temp_hyst
= NCT6779_REG_TEMP_HYST
;
3585 reg_temp_config
= NCT6779_REG_TEMP_CONFIG
;
3586 reg_temp_alternate
= NCT6779_REG_TEMP_ALTERNATE
;
3587 reg_temp_crit
= NCT6779_REG_TEMP_CRIT
;
3593 data
->auto_pwm_num
= 4;
3594 data
->has_fan_div
= false;
3595 data
->temp_fixed_num
= 6;
3596 data
->num_temp_alarms
= 2;
3597 data
->num_temp_beeps
= 2;
3599 data
->ALARM_BITS
= NCT6791_ALARM_BITS
;
3600 data
->BEEP_BITS
= NCT6779_BEEP_BITS
;
3602 data
->fan_from_reg
= fan_from_reg13
;
3603 data
->fan_from_reg_min
= fan_from_reg13
;
3604 data
->target_temp_mask
= 0xff;
3605 data
->tolerance_mask
= 0x07;
3606 data
->speed_tolerance_limit
= 63;
3608 data
->temp_label
= nct6779_temp_label
;
3609 data
->temp_label_num
= ARRAY_SIZE(nct6779_temp_label
);
3611 data
->REG_CONFIG
= NCT6775_REG_CONFIG
;
3612 data
->REG_VBAT
= NCT6775_REG_VBAT
;
3613 data
->REG_DIODE
= NCT6775_REG_DIODE
;
3614 data
->DIODE_MASK
= NCT6775_DIODE_MASK
;
3615 data
->REG_VIN
= NCT6779_REG_IN
;
3616 data
->REG_IN_MINMAX
[0] = NCT6775_REG_IN_MIN
;
3617 data
->REG_IN_MINMAX
[1] = NCT6775_REG_IN_MAX
;
3618 data
->REG_TARGET
= NCT6775_REG_TARGET
;
3619 data
->REG_FAN
= NCT6779_REG_FAN
;
3620 data
->REG_FAN_MODE
= NCT6775_REG_FAN_MODE
;
3621 data
->REG_FAN_MIN
= NCT6776_REG_FAN_MIN
;
3622 data
->REG_FAN_PULSES
= NCT6779_REG_FAN_PULSES
;
3623 data
->FAN_PULSE_SHIFT
= NCT6775_FAN_PULSE_SHIFT
;
3624 data
->REG_FAN_TIME
[0] = NCT6775_REG_FAN_STOP_TIME
;
3625 data
->REG_FAN_TIME
[1] = NCT6775_REG_FAN_STEP_UP_TIME
;
3626 data
->REG_FAN_TIME
[2] = NCT6775_REG_FAN_STEP_DOWN_TIME
;
3627 data
->REG_TOLERANCE_H
= NCT6776_REG_TOLERANCE_H
;
3628 data
->REG_PWM
[0] = NCT6775_REG_PWM
;
3629 data
->REG_PWM
[1] = NCT6775_REG_FAN_START_OUTPUT
;
3630 data
->REG_PWM
[2] = NCT6775_REG_FAN_STOP_OUTPUT
;
3631 data
->REG_PWM
[5] = NCT6791_REG_WEIGHT_DUTY_STEP
;
3632 data
->REG_PWM
[6] = NCT6791_REG_WEIGHT_DUTY_BASE
;
3633 data
->REG_PWM_READ
= NCT6775_REG_PWM_READ
;
3634 data
->REG_PWM_MODE
= NCT6776_REG_PWM_MODE
;
3635 data
->PWM_MODE_MASK
= NCT6776_PWM_MODE_MASK
;
3636 data
->REG_AUTO_TEMP
= NCT6775_REG_AUTO_TEMP
;
3637 data
->REG_AUTO_PWM
= NCT6775_REG_AUTO_PWM
;
3638 data
->REG_CRITICAL_TEMP
= NCT6775_REG_CRITICAL_TEMP
;
3639 data
->REG_CRITICAL_TEMP_TOLERANCE
3640 = NCT6775_REG_CRITICAL_TEMP_TOLERANCE
;
3641 data
->REG_CRITICAL_PWM_ENABLE
= NCT6779_REG_CRITICAL_PWM_ENABLE
;
3642 data
->CRITICAL_PWM_ENABLE_MASK
3643 = NCT6779_CRITICAL_PWM_ENABLE_MASK
;
3644 data
->REG_CRITICAL_PWM
= NCT6779_REG_CRITICAL_PWM
;
3645 data
->REG_TEMP_OFFSET
= NCT6779_REG_TEMP_OFFSET
;
3646 data
->REG_TEMP_SOURCE
= NCT6775_REG_TEMP_SOURCE
;
3647 data
->REG_TEMP_SEL
= NCT6775_REG_TEMP_SEL
;
3648 data
->REG_WEIGHT_TEMP_SEL
= NCT6791_REG_WEIGHT_TEMP_SEL
;
3649 data
->REG_WEIGHT_TEMP
[0] = NCT6791_REG_WEIGHT_TEMP_STEP
;
3650 data
->REG_WEIGHT_TEMP
[1] = NCT6791_REG_WEIGHT_TEMP_STEP_TOL
;
3651 data
->REG_WEIGHT_TEMP
[2] = NCT6791_REG_WEIGHT_TEMP_BASE
;
3652 data
->REG_ALARM
= NCT6791_REG_ALARM
;
3653 data
->REG_BEEP
= NCT6776_REG_BEEP
;
3655 reg_temp
= NCT6779_REG_TEMP
;
3656 reg_temp_mon
= NCT6779_REG_TEMP_MON
;
3657 num_reg_temp
= ARRAY_SIZE(NCT6779_REG_TEMP
);
3658 num_reg_temp_mon
= ARRAY_SIZE(NCT6779_REG_TEMP_MON
);
3659 reg_temp_over
= NCT6779_REG_TEMP_OVER
;
3660 reg_temp_hyst
= NCT6779_REG_TEMP_HYST
;
3661 reg_temp_config
= NCT6779_REG_TEMP_CONFIG
;
3662 reg_temp_alternate
= NCT6779_REG_TEMP_ALTERNATE
;
3663 reg_temp_crit
= NCT6779_REG_TEMP_CRIT
;
3669 data
->have_in
= (1 << data
->in_num
) - 1;
3670 data
->have_temp
= 0;
3673 * On some boards, not all available temperature sources are monitored,
3674 * even though some of the monitoring registers are unused.
3675 * Get list of unused monitoring registers, then detect if any fan
3676 * controls are configured to use unmonitored temperature sources.
3677 * If so, assign the unmonitored temperature sources to available
3678 * monitoring registers.
3682 for (i
= 0; i
< num_reg_temp
; i
++) {
3683 if (reg_temp
[i
] == 0)
3686 src
= nct6775_read_value(data
, data
->REG_TEMP_SOURCE
[i
]) & 0x1f;
3687 if (!src
|| (mask
& (1 << src
)))
3688 available
|= 1 << i
;
3694 * Now find unmonitored temperature registers and enable monitoring
3695 * if additional monitoring registers are available.
3697 add_temp_sensors(data
, data
->REG_TEMP_SEL
, &available
, &mask
);
3698 add_temp_sensors(data
, data
->REG_WEIGHT_TEMP_SEL
, &available
, &mask
);
3701 s
= NUM_TEMP_FIXED
; /* First dynamic temperature attribute */
3702 for (i
= 0; i
< num_reg_temp
; i
++) {
3703 if (reg_temp
[i
] == 0)
3706 src
= nct6775_read_value(data
, data
->REG_TEMP_SOURCE
[i
]) & 0x1f;
3707 if (!src
|| (mask
& (1 << src
)))
3710 if (src
>= data
->temp_label_num
||
3711 !strlen(data
->temp_label
[src
])) {
3713 "Invalid temperature source %d at index %d, source register 0x%x, temp register 0x%x\n",
3714 src
, i
, data
->REG_TEMP_SOURCE
[i
], reg_temp
[i
]);
3720 /* Use fixed index for SYSTIN(1), CPUTIN(2), AUXTIN(3) */
3721 if (src
<= data
->temp_fixed_num
) {
3722 data
->have_temp
|= 1 << (src
- 1);
3723 data
->have_temp_fixed
|= 1 << (src
- 1);
3724 data
->reg_temp
[0][src
- 1] = reg_temp
[i
];
3725 data
->reg_temp
[1][src
- 1] = reg_temp_over
[i
];
3726 data
->reg_temp
[2][src
- 1] = reg_temp_hyst
[i
];
3727 if (reg_temp_crit_h
&& reg_temp_crit_h
[i
])
3728 data
->reg_temp
[3][src
- 1] = reg_temp_crit_h
[i
];
3729 else if (reg_temp_crit
[src
- 1])
3730 data
->reg_temp
[3][src
- 1]
3731 = reg_temp_crit
[src
- 1];
3732 if (reg_temp_crit_l
&& reg_temp_crit_l
[i
])
3733 data
->reg_temp
[4][src
- 1] = reg_temp_crit_l
[i
];
3734 data
->reg_temp_config
[src
- 1] = reg_temp_config
[i
];
3735 data
->temp_src
[src
- 1] = src
;
3742 /* Use dynamic index for other sources */
3743 data
->have_temp
|= 1 << s
;
3744 data
->reg_temp
[0][s
] = reg_temp
[i
];
3745 data
->reg_temp
[1][s
] = reg_temp_over
[i
];
3746 data
->reg_temp
[2][s
] = reg_temp_hyst
[i
];
3747 data
->reg_temp_config
[s
] = reg_temp_config
[i
];
3748 if (reg_temp_crit_h
&& reg_temp_crit_h
[i
])
3749 data
->reg_temp
[3][s
] = reg_temp_crit_h
[i
];
3750 else if (reg_temp_crit
[src
- 1])
3751 data
->reg_temp
[3][s
] = reg_temp_crit
[src
- 1];
3752 if (reg_temp_crit_l
&& reg_temp_crit_l
[i
])
3753 data
->reg_temp
[4][s
] = reg_temp_crit_l
[i
];
3755 data
->temp_src
[s
] = src
;
3760 * Repeat with temperatures used for fan control.
3761 * This set of registers does not support limits.
3763 for (i
= 0; i
< num_reg_temp_mon
; i
++) {
3764 if (reg_temp_mon
[i
] == 0)
3767 src
= nct6775_read_value(data
, data
->REG_TEMP_SEL
[i
]) & 0x1f;
3768 if (!src
|| (mask
& (1 << src
)))
3771 if (src
>= data
->temp_label_num
||
3772 !strlen(data
->temp_label
[src
])) {
3774 "Invalid temperature source %d at index %d, source register 0x%x, temp register 0x%x\n",
3775 src
, i
, data
->REG_TEMP_SEL
[i
],
3782 /* Use fixed index for SYSTIN(1), CPUTIN(2), AUXTIN(3) */
3783 if (src
<= data
->temp_fixed_num
) {
3784 if (data
->have_temp
& (1 << (src
- 1)))
3786 data
->have_temp
|= 1 << (src
- 1);
3787 data
->have_temp_fixed
|= 1 << (src
- 1);
3788 data
->reg_temp
[0][src
- 1] = reg_temp_mon
[i
];
3789 data
->temp_src
[src
- 1] = src
;
3796 /* Use dynamic index for other sources */
3797 data
->have_temp
|= 1 << s
;
3798 data
->reg_temp
[0][s
] = reg_temp_mon
[i
];
3799 data
->temp_src
[s
] = src
;
3803 #ifdef USE_ALTERNATE
3805 * Go through the list of alternate temp registers and enable
3807 * The temperature is already monitored if the respective bit in <mask>
3810 for (i
= 0; i
< data
->temp_label_num
- 1; i
++) {
3811 if (!reg_temp_alternate
[i
])
3813 if (mask
& (1 << (i
+ 1)))
3815 if (i
< data
->temp_fixed_num
) {
3816 if (data
->have_temp
& (1 << i
))
3818 data
->have_temp
|= 1 << i
;
3819 data
->have_temp_fixed
|= 1 << i
;
3820 data
->reg_temp
[0][i
] = reg_temp_alternate
[i
];
3821 if (i
< num_reg_temp
) {
3822 data
->reg_temp
[1][i
] = reg_temp_over
[i
];
3823 data
->reg_temp
[2][i
] = reg_temp_hyst
[i
];
3825 data
->temp_src
[i
] = i
+ 1;
3829 if (s
>= NUM_TEMP
) /* Abort if no more space */
3832 data
->have_temp
|= 1 << s
;
3833 data
->reg_temp
[0][s
] = reg_temp_alternate
[i
];
3834 data
->temp_src
[s
] = i
+ 1;
3837 #endif /* USE_ALTERNATE */
3839 /* Initialize the chip */
3840 nct6775_init_device(data
);
3842 err
= superio_enter(sio_data
->sioreg
);
3846 cr2a
= superio_inb(sio_data
->sioreg
, 0x2a);
3847 switch (data
->kind
) {
3849 data
->have_vid
= (cr2a
& 0x40);
3852 data
->have_vid
= (cr2a
& 0x60) == 0x40;
3862 * We can get the VID input values directly at logical device D 0xe3.
3864 if (data
->have_vid
) {
3865 superio_select(sio_data
->sioreg
, NCT6775_LD_VID
);
3866 data
->vid
= superio_inb(sio_data
->sioreg
, 0xe3);
3867 data
->vrm
= vid_which_vrm();
3873 superio_select(sio_data
->sioreg
, NCT6775_LD_HWM
);
3874 tmp
= superio_inb(sio_data
->sioreg
,
3875 NCT6775_REG_CR_FAN_DEBOUNCE
);
3876 switch (data
->kind
) {
3891 superio_outb(sio_data
->sioreg
, NCT6775_REG_CR_FAN_DEBOUNCE
,
3893 dev_info(&pdev
->dev
, "Enabled fan debounce for chip %s\n",
3897 nct6775_check_fan_inputs(data
);
3899 superio_exit(sio_data
->sioreg
);
3901 /* Read fan clock dividers immediately */
3902 nct6775_init_fan_common(dev
, data
);
3904 /* Register sysfs hooks */
3905 group
= nct6775_create_attr_group(dev
, &nct6775_pwm_template_group
,
3908 return PTR_ERR(group
);
3910 data
->groups
[num_attr_groups
++] = group
;
3912 group
= nct6775_create_attr_group(dev
, &nct6775_in_template_group
,
3913 fls(data
->have_in
));
3915 return PTR_ERR(group
);
3917 data
->groups
[num_attr_groups
++] = group
;
3919 group
= nct6775_create_attr_group(dev
, &nct6775_fan_template_group
,
3920 fls(data
->has_fan
));
3922 return PTR_ERR(group
);
3924 data
->groups
[num_attr_groups
++] = group
;
3926 group
= nct6775_create_attr_group(dev
, &nct6775_temp_template_group
,
3927 fls(data
->have_temp
));
3929 return PTR_ERR(group
);
3931 data
->groups
[num_attr_groups
++] = group
;
3932 data
->groups
[num_attr_groups
++] = &nct6775_group_other
;
3934 hwmon_dev
= devm_hwmon_device_register_with_groups(dev
, data
->name
,
3935 data
, data
->groups
);
3936 return PTR_ERR_OR_ZERO(hwmon_dev
);
3939 static void nct6791_enable_io_mapping(int sioaddr
)
3943 val
= superio_inb(sioaddr
, NCT6791_REG_HM_IO_SPACE_LOCK_ENABLE
);
3945 pr_info("Enabling hardware monitor logical device mappings.\n");
3946 superio_outb(sioaddr
, NCT6791_REG_HM_IO_SPACE_LOCK_ENABLE
,
3952 static int nct6775_suspend(struct device
*dev
)
3954 struct nct6775_data
*data
= nct6775_update_device(dev
);
3956 mutex_lock(&data
->update_lock
);
3957 data
->vbat
= nct6775_read_value(data
, data
->REG_VBAT
);
3958 if (data
->kind
== nct6775
) {
3959 data
->fandiv1
= nct6775_read_value(data
, NCT6775_REG_FANDIV1
);
3960 data
->fandiv2
= nct6775_read_value(data
, NCT6775_REG_FANDIV2
);
3962 mutex_unlock(&data
->update_lock
);
3967 static int nct6775_resume(struct device
*dev
)
3969 struct nct6775_data
*data
= dev_get_drvdata(dev
);
3972 mutex_lock(&data
->update_lock
);
3973 data
->bank
= 0xff; /* Force initial bank selection */
3975 if (data
->kind
== nct6791
) {
3976 err
= superio_enter(data
->sioreg
);
3980 nct6791_enable_io_mapping(data
->sioreg
);
3981 superio_exit(data
->sioreg
);
3984 /* Restore limits */
3985 for (i
= 0; i
< data
->in_num
; i
++) {
3986 if (!(data
->have_in
& (1 << i
)))
3989 nct6775_write_value(data
, data
->REG_IN_MINMAX
[0][i
],
3991 nct6775_write_value(data
, data
->REG_IN_MINMAX
[1][i
],
3995 for (i
= 0; i
< ARRAY_SIZE(data
->fan_min
); i
++) {
3996 if (!(data
->has_fan_min
& (1 << i
)))
3999 nct6775_write_value(data
, data
->REG_FAN_MIN
[i
],
4003 for (i
= 0; i
< NUM_TEMP
; i
++) {
4004 if (!(data
->have_temp
& (1 << i
)))
4007 for (j
= 1; j
< ARRAY_SIZE(data
->reg_temp
); j
++)
4008 if (data
->reg_temp
[j
][i
])
4009 nct6775_write_temp(data
, data
->reg_temp
[j
][i
],
4013 /* Restore other settings */
4014 nct6775_write_value(data
, data
->REG_VBAT
, data
->vbat
);
4015 if (data
->kind
== nct6775
) {
4016 nct6775_write_value(data
, NCT6775_REG_FANDIV1
, data
->fandiv1
);
4017 nct6775_write_value(data
, NCT6775_REG_FANDIV2
, data
->fandiv2
);
4021 /* Force re-reading all values */
4022 data
->valid
= false;
4023 mutex_unlock(&data
->update_lock
);
4028 static const struct dev_pm_ops nct6775_dev_pm_ops
= {
4029 .suspend
= nct6775_suspend
,
4030 .resume
= nct6775_resume
,
4031 .freeze
= nct6775_suspend
,
4032 .restore
= nct6775_resume
,
4035 #define NCT6775_DEV_PM_OPS (&nct6775_dev_pm_ops)
4037 #define NCT6775_DEV_PM_OPS NULL
4038 #endif /* CONFIG_PM */
4040 static struct platform_driver nct6775_driver
= {
4042 .owner
= THIS_MODULE
,
4044 .pm
= NCT6775_DEV_PM_OPS
,
4046 .probe
= nct6775_probe
,
4049 static const char * const nct6775_sio_names
[] __initconst
= {
4057 /* nct6775_find() looks for a '627 in the Super-I/O config space */
4058 static int __init
nct6775_find(int sioaddr
, struct nct6775_sio_data
*sio_data
)
4064 err
= superio_enter(sioaddr
);
4071 val
= (superio_inb(sioaddr
, SIO_REG_DEVID
) << 8)
4072 | superio_inb(sioaddr
, SIO_REG_DEVID
+ 1);
4073 switch (val
& SIO_ID_MASK
) {
4074 case SIO_NCT6106_ID
:
4075 sio_data
->kind
= nct6106
;
4077 case SIO_NCT6775_ID
:
4078 sio_data
->kind
= nct6775
;
4080 case SIO_NCT6776_ID
:
4081 sio_data
->kind
= nct6776
;
4083 case SIO_NCT6779_ID
:
4084 sio_data
->kind
= nct6779
;
4086 case SIO_NCT6791_ID
:
4087 sio_data
->kind
= nct6791
;
4091 pr_debug("unsupported chip ID: 0x%04x\n", val
);
4092 superio_exit(sioaddr
);
4096 /* We have a known chip, find the HWM I/O address */
4097 superio_select(sioaddr
, NCT6775_LD_HWM
);
4098 val
= (superio_inb(sioaddr
, SIO_REG_ADDR
) << 8)
4099 | superio_inb(sioaddr
, SIO_REG_ADDR
+ 1);
4100 addr
= val
& IOREGION_ALIGNMENT
;
4102 pr_err("Refusing to enable a Super-I/O device with a base I/O port 0\n");
4103 superio_exit(sioaddr
);
4107 /* Activate logical device if needed */
4108 val
= superio_inb(sioaddr
, SIO_REG_ENABLE
);
4109 if (!(val
& 0x01)) {
4110 pr_warn("Forcibly enabling Super-I/O. Sensor is probably unusable.\n");
4111 superio_outb(sioaddr
, SIO_REG_ENABLE
, val
| 0x01);
4114 if (sio_data
->kind
== nct6791
)
4115 nct6791_enable_io_mapping(sioaddr
);
4117 superio_exit(sioaddr
);
4118 pr_info("Found %s or compatible chip at %#x:%#x\n",
4119 nct6775_sio_names
[sio_data
->kind
], sioaddr
, addr
);
4120 sio_data
->sioreg
= sioaddr
;
4126 * when Super-I/O functions move to a separate file, the Super-I/O
4127 * bus will manage the lifetime of the device and this module will only keep
4128 * track of the nct6775 driver. But since we use platform_device_alloc(), we
4129 * must keep track of the device
4131 static struct platform_device
*pdev
[2];
4133 static int __init
sensors_nct6775_init(void)
4138 struct resource res
;
4139 struct nct6775_sio_data sio_data
;
4140 int sioaddr
[2] = { 0x2e, 0x4e };
4142 err
= platform_driver_register(&nct6775_driver
);
4147 * initialize sio_data->kind and sio_data->sioreg.
4149 * when Super-I/O functions move to a separate file, the Super-I/O
4150 * driver will probe 0x2e and 0x4e and auto-detect the presence of a
4151 * nct6775 hardware monitor, and call probe()
4153 for (i
= 0; i
< ARRAY_SIZE(pdev
); i
++) {
4154 address
= nct6775_find(sioaddr
[i
], &sio_data
);
4160 pdev
[i
] = platform_device_alloc(DRVNAME
, address
);
4163 goto exit_device_unregister
;
4166 err
= platform_device_add_data(pdev
[i
], &sio_data
,
4167 sizeof(struct nct6775_sio_data
));
4169 goto exit_device_put
;
4171 memset(&res
, 0, sizeof(res
));
4173 res
.start
= address
+ IOREGION_OFFSET
;
4174 res
.end
= address
+ IOREGION_OFFSET
+ IOREGION_LENGTH
- 1;
4175 res
.flags
= IORESOURCE_IO
;
4177 err
= acpi_check_resource_conflict(&res
);
4179 platform_device_put(pdev
[i
]);
4184 err
= platform_device_add_resources(pdev
[i
], &res
, 1);
4186 goto exit_device_put
;
4188 /* platform_device_add calls probe() */
4189 err
= platform_device_add(pdev
[i
]);
4191 goto exit_device_put
;
4195 goto exit_unregister
;
4201 platform_device_put(pdev
[i
]);
4202 exit_device_unregister
:
4205 platform_device_unregister(pdev
[i
]);
4208 platform_driver_unregister(&nct6775_driver
);
4212 static void __exit
sensors_nct6775_exit(void)
4216 for (i
= 0; i
< ARRAY_SIZE(pdev
); i
++) {
4218 platform_device_unregister(pdev
[i
]);
4220 platform_driver_unregister(&nct6775_driver
);
4223 MODULE_AUTHOR("Guenter Roeck <linux@roeck-us.net>");
4224 MODULE_DESCRIPTION("NCT6106D/NCT6775F/NCT6776F/NCT6779D/NCT6791D driver");
4225 MODULE_LICENSE("GPL");
4227 module_init(sensors_nct6775_init
);
4228 module_exit(sensors_nct6775_exit
);